-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBall.cpp
185 lines (155 loc) · 5.57 KB
/
Ball.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#include "Ball.h"
#include "input.h"
#include "surface.h"
#include "game.h"
// Handle mouse input to shoot the ball
void Ball::HandleInput(Tmpl8::Surface* screen) {
mousePosition = Input::GetMousePosition();
ballMoving = v.length() > 0.03f;
if (!ballMoving) {
if (Input::GetMouseButtonDown(SDL_BUTTON_LEFT)) {
mouseStart = mousePosition;
startedAiming = true;
}
else if (Input::GetMouseButton(SDL_BUTTON_LEFT) && startedAiming) {
mouseEnd = mousePosition;
direction = mouseEnd - mouseStart;
if (direction.length() > 300) direction = direction.normalized() * 300;
}
else if (Input::GetMouseButtonUp(SDL_BUTTON_LEFT) && startedAiming) {
if (direction.length() > radius + 6) {
direction *= -0.009f * (1 / (1 + 0.07f * (frictionFactor - 1)));
v.x = direction.x;
v.y = direction.y;
startedAiming = false;
strokes++;
totalStrokes++;
ballMoving = true;
bounceCollisionCount = 0;
}
else {
direction = Tmpl8::vec2(0, 0);
startedAiming = false;
}
}
}
}
void Ball::Update(float deltaTime) {
// Acceleration/Friction
a.x = -v.x * friction * frictionFactor;
a.y = -v.y * friction * frictionFactor + gravity;
// Velocity
v.x += a.x * deltaTime;
v.y += a.y * deltaTime;
// Position
pos.x += v.x * deltaTime;
pos.y += v.y * deltaTime;
// Reset ball if it falls off the screen
if (pos.x > ScreenWidth + radius || pos.x < -radius) Reset();
// Handle collisions
activeGroundId = -1;
for (VerticalGround& vg : Terrain::verticalSegments) {
VerticalCollisions(vg);
}
// Only check current, previous and next segment for ground collisions
activeSegment = (int)floorf(pos.x / (ScreenWidth / Terrain::segmentCount));
GroundCollisions(Terrain::groundSegments[Tmpl8::Min<int>(Terrain::segmentCount - 1, Tmpl8::Max<int>(0, activeSegment - 1))]);
GroundCollisions(Terrain::groundSegments[Tmpl8::Min<int>(Terrain::segmentCount - 1, Tmpl8::Max<int>(0, activeSegment))]);
GroundCollisions(Terrain::groundSegments[Tmpl8::Min<int>(Terrain::segmentCount - 1, Tmpl8::Max<int>(0, activeSegment + 1))]);
// Ground-specific interactions
if (activeGroundId == 2) { // Sand
frictionFactor = 6;
}
else {
frictionFactor = 1;
}
}
// Now unused, basic screen collisions
void Ball::ScreenCollisions() {
if (pos.x < radius) {
pos.x = radius;
v.x = -v.x * bounciness * bounceFactor;
}
if (pos.x > ScreenWidth - radius) {
pos.x = ScreenWidth - radius;
v.x = -v.x * bounciness * bounceFactor;
}
if (pos.y < radius) {
pos.y = radius;
v.y = -v.y * bounciness * bounceFactor;
}
if (pos.y > ScreenHeight - radius) {
pos.y = ScreenHeight - radius;
v.y = -v.y * bounciness * bounceFactor;
}
}
/// <summary>
/// Collisions with ground segments at angles.
/// Rotates the reference system to make the ground segment horizontal, simplyfying the calculations.
/// </summary>
/// <remarks>Adapted from Keith Peters' HTML5 Animation with JavaScript</remarks>
/// <param name="g">Ground segment to check for collisions</param>
void Ball::GroundCollisions(Ground g) {
//if(pos.x - radius > g.end.x || pos.x + radius < g.start.x) return; // Not needed anymore as we only check the current, previous and next segment
float upperY = Tmpl8::Min<float>(g.start.y, g.end.y);
float lowerY = Tmpl8::Max<float>(g.start.y, g.end.y);
if (abs(g.angle) > Tmpl8::PI * .1f && (pos.y + radius - 6 < upperY || pos.y - radius + 6 > lowerY)) return; // Crude fix for faulty collisions
float dx = pos.x - g.middle.x;
float dy = pos.y - g.middle.y;
float cosine = static_cast<float>(cos(g.angle));
float sine = static_cast<float>(sin(g.angle));
float dx_ = cosine * dx + sine * dy;
float dy_ = cosine * dy - sine * dx;
if (dy_ > -radius && pos.x + radius >= g.start.x && pos.x - radius < g.end.x) {
float velx_ = cosine * v.x + sine * v.y;
float vely_ = -sine * v.x + cosine * v.y;
activeGroundId = g.id;
dy_ = -radius;
if (activeGroundId == 2) { // Sand
bounceFactor = 0.6f;
}
else if (activeGroundId == 3) { // Gel
bounceCollisionCount++;
bounceFactor = 2 * (1 / (1 + 0.1f * (bounceCollisionCount - 1))); // Prevent infinite bounces
}
else {
bounceFactor = 1;
}
vely_ *= -bounciness * bounceFactor;
dx = cosine * dx_ - sine * dy_;
dy = cosine * dy_ + sine * dx_;
v.x = cosine * velx_ - sine * vely_;
v.y = cosine * vely_ + sine * velx_;
pos.x = g.middle.x + dx;
pos.y = g.middle.y + dy;
}
}
// Vertical line collisions
void Ball::VerticalCollisions(VerticalGround g) {
if(pos.x + radius < g.start.x || pos.x - radius > g.end.x) return;
float upperY = Tmpl8::Min<float>(g.start.y, g.end.y);
float lowerY = Tmpl8::Max<float>(g.start.y, g.end.y);
if (pos.y + radius < upperY || pos.y - radius > lowerY) return;
if (v.x > 0 && !g.left) {
activeGroundId = g.id;
pos.x = g.start.x - radius;
v.x = -v.x * bounciness * bounceFactor;
} else if (v.x < 0 && g.left) {
activeGroundId = g.id;
pos.x = g.end.x + radius;
v.x = -v.x * bounciness * bounceFactor;
}
}
void Ball::Reset() {
pos.x = startX;
pos.y = 350;
v.x = .05, v.y = 0;
a.x = -.02, a.y = gravity;
activeGroundId = 0;
}
void Ball::Draw(Tmpl8::Surface* screen) {
//SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), { 0, 2 });
//printf("Ball:\nx: %f, y: %f\nvx: %f, vy: %f\nax: %f, ay: %f\np: %f\n\n\nStrokes: %i", pos.x, pos.y, v.x, v.y, a.x, a.y, abs((pos - previous).length()), strokes);
if (startedAiming) screen->Line(pos.x, pos.y, pos.x - direction.x, pos.y - direction.y, 0xffffff);
ballSprite.DrawScaled(static_cast<int>(pos.x - radius - Terrain::surfaceOffset), static_cast<int>(pos.y - radius), static_cast<int>(radius * 2), static_cast<int>(radius * 2), screen);
}