-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMovingObject.hpp
58 lines (45 loc) · 1.03 KB
/
MovingObject.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* Rhythm Run for Nintendo 3DS
* Lauren Kelly, 2021
*/
#pragma once
#include "Geometry.hpp"
class MovingObject {
public:
MovingObject()
: accel({ 0, 0 })
, oldSpeed({ 0, 0 })
, speed({ 0, 0 })
, pushedRightWall(false)
, pushesRightWall(false)
, pushedLeftWall(false)
, pushesLeftWall(false)
, wasOnGround(false)
, isOnGround(false)
, wasAtCeiling(false)
, isAtCeiling(false) {};
// positions
Vec2D oldPosition;
Vec2D position;
// acceleration
Vec2D accel;
// speeds
Vec2D oldSpeed;
Vec2D speed;
// object scale
// Vec2D scale;
// Axis-Aligned BBox and offset
AABB myAABB;
Vec2D aabbOffset;
// Walls logic
bool pushedRightWall;
bool pushesRightWall;
bool pushedLeftWall;
bool pushesLeftWall;
bool wasOnGround;
bool isOnGround;
bool wasAtCeiling;
bool isAtCeiling;
virtual void update(float a_timeDelta) = 0;
void updatePhysics(float a_timeDelta);
};