|
@@ -1,69 +1,86 @@
|
|
|
#include "Game.h"
|
|
|
+#include "gaming-core/utils/Utils.h"
|
|
|
#include "rendering/Renderer.h"
|
|
|
#include "utils/StringBuffer.h"
|
|
|
|
|
|
-float x = 0.0f;
|
|
|
-float y = 0.0f;
|
|
|
-float lastX = 0.0f;
|
|
|
-float lastY = 0.0f;
|
|
|
-float playerWidth = 80.0f;
|
|
|
-float playerHeight = 80.0f;
|
|
|
-
|
|
|
-float width = 800.0f;
|
|
|
-float height = 480.0f;
|
|
|
-
|
|
|
-float motionY = 0.0f;
|
|
|
-bool onGround = false;
|
|
|
-
|
|
|
-Game::Game(Controller& c, const Clock& fps, const Clock& tps) : controller(c), fps(fps), tps(tps) {
|
|
|
+Game::Game(Controller& c, const Clock& fps, const Clock& tps, const Size& size)
|
|
|
+ : controller(c), fps(fps), tps(tps), size(size), physicsToggle(true),
|
|
|
+ player(Vector2(50.0f, 50.0f), 5.0f) {
|
|
|
}
|
|
|
|
|
|
void Game::tick() {
|
|
|
- lastX = x;
|
|
|
- lastY = y;
|
|
|
- if(controller.left.isDown()) {
|
|
|
- x -= 7;
|
|
|
- }
|
|
|
- if(controller.right.isDown()) {
|
|
|
- x += 7;
|
|
|
+ if(controller.start.wasReleased()) {
|
|
|
+ physicsToggle = !physicsToggle;
|
|
|
}
|
|
|
- if(controller.a.isDown() && onGround) {
|
|
|
- motionY = -15.0f;
|
|
|
- onGround = false;
|
|
|
+ player.preTick();
|
|
|
+ if(physicsToggle) {
|
|
|
+
|
|
|
+ if(controller.a.isDown() && player.onGround) {
|
|
|
+ player.addForce(Vector2(0.0f, 70.0f));
|
|
|
+ player.onGround = false;
|
|
|
+ }
|
|
|
+ if(controller.right.isDown()) {
|
|
|
+ player.addForce(Vector2(2.5f, 0.0f));
|
|
|
+ }
|
|
|
+ if(controller.left.isDown()) {
|
|
|
+ player.addForce(Vector2(-2.5f, 0.0f));
|
|
|
+ }
|
|
|
+
|
|
|
+ player.addForce(Vector2(-player.velocity[0] * 0.5f, 0.0f));
|
|
|
+ } else {
|
|
|
+ player.velocity[0] = 0.0f;
|
|
|
+ if(controller.a.isDown() && player.onGround) {
|
|
|
+ player.velocity[1] = 15.0f;
|
|
|
+ player.onGround = false;
|
|
|
+ }
|
|
|
+ if(controller.right.isDown()) {
|
|
|
+ player.velocity[0] = 5.0f;
|
|
|
+ }
|
|
|
+ if(controller.left.isDown()) {
|
|
|
+ player.velocity[0] = -5.0f;
|
|
|
+ }
|
|
|
}
|
|
|
+ player.tick();
|
|
|
|
|
|
- motionY += 0.5f;
|
|
|
- y += motionY;
|
|
|
-
|
|
|
- if(y > height - playerHeight) {
|
|
|
- y = height - playerHeight;
|
|
|
- motionY = 0.0f;
|
|
|
- onGround = true;
|
|
|
+
|
|
|
+
|
|
|
+ if(player.position[1] < 0.0f) {
|
|
|
+ player.position[1] = 0.0f;
|
|
|
+ player.velocity[1] = 0.0f;
|
|
|
+ player.onGround = true;
|
|
|
}
|
|
|
- while(x > width) {
|
|
|
- x -= width + playerWidth;
|
|
|
- lastX -= width + playerWidth;
|
|
|
+
|
|
|
+ if(player.position[0] + player.size[0] > size.width) {
|
|
|
+ player.position[0] = size.width - player.size[0];
|
|
|
+
|
|
|
}
|
|
|
- while(x < -playerWidth) {
|
|
|
- x += width + playerWidth;
|
|
|
- lastX += width + playerWidth;
|
|
|
+
|
|
|
+ if(player.position[0] < 0.0f) {
|
|
|
+ player.position[0] = 0.0f;
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void Game::render(float lag, Renderer& renderer) const {
|
|
|
- renderer.translateTo(0.0f, 0.0f).update();
|
|
|
- renderer.drawRectangle(lastX + (x - lastX) * lag, lastY + (y - lastY) * lag, playerWidth, playerHeight,
|
|
|
- Color4(255, 0, 0, 255));
|
|
|
- renderer.translateTo(0.0f, 0.0f).update();
|
|
|
- StringBuffer<100> s;
|
|
|
- s.append("FPS: ").append(fps.getUpdatesPerSecond());
|
|
|
- float y = 0.0f;
|
|
|
- renderer.setStringSize(2);
|
|
|
- y = renderer.drawString(0.0f, y, s);
|
|
|
- for(const Button& b : controller.list) {
|
|
|
- s.clear().append(b.getName()).append(": ").append(b.getDownTime()).append(" ").append(b.wasReleased());
|
|
|
- y = renderer.drawString(0.0f, y, s);
|
|
|
- }
|
|
|
+void Game::render(float lag, Renderer& r) const {
|
|
|
+ r.translateTo(0.0f, 0.0f)
|
|
|
+ .scale(1.0f, -1.0f)
|
|
|
+ .translateY(size.height)
|
|
|
+ .update();
|
|
|
+
|
|
|
+ Vector2 pos = Utils::interpolate(player.lastPosition, player.position, lag);
|
|
|
+ r.drawRectangle(pos, player.size, Color4(0xFF, 0x00, 0x00, 0xFF));
|
|
|
+
|
|
|
+ r.translateTo(0.0f, 0.0f).update();
|
|
|
+ r.setStringSize(2);
|
|
|
+ StringBuffer<100> s("FPS: ");
|
|
|
+ s.append(fps.getUpdatesPerSecond()).append(" ");
|
|
|
+ s.append(physicsToggle ? "Force Physics" : "Velocity Physics");
|
|
|
+ float y = 10.0f;
|
|
|
+ y = r.drawString(10.0f, y, s);
|
|
|
+ s.clear().append("a = ").append(player.acceleration);
|
|
|
+ y = r.drawString(10.0f, y, s);
|
|
|
+ s.clear().append("v = ").append(player.velocity);
|
|
|
+ y = r.drawString(10.0f, y, s);
|
|
|
}
|
|
|
|
|
|
bool Game::isRunning() const {
|