aboutsummaryrefslogtreecommitdiff
path: root/game/coins/CoinSystemScript.cpp
blob: 573c8250b29efbe9d970e1f6ee478280104ce00c (plain)
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#include "CoinSystemScript.h"
#include "CoinPool.h"
#include "api/CircleCollider.h"
#include "api/Metadata.h"
#include "api/Sprite.h"
#include "api/Transform.h"
#include <random>

using namespace crepe;
using namespace std;



void CoinSystemScript::init() {
	engine.seed(rd());
}

void CoinSystemScript::add_location(const crepe::vec2& location){
	coin_locations.push_back(CoinData(location));
}

float CoinSystemScript::preset_1(const vec2 & begin_position){
	vec2 top = {begin_position.x, begin_position.y - (this->ROW_OFFSET_1)};
	vec2 bottom = {begin_position.x, begin_position.y + (this->ROW_OFFSET_1)};

	// Add locations for the top row
	for (int i = 0; i < COLUM_AMOUNT_1; ++i) {
		add_location(top);
		top.x += this->COLUM_OFFSET_1;
	}

	// Add locations for the bottom row
	bottom.x +=this->COLUM_OFFSET_1 * COLUM_AMOUNT_1;
	for (int i = 0; i < COLUM_AMOUNT_1; ++i) {
		add_location(bottom);
		bottom.x += this->COLUM_OFFSET_1;
	}

	// Add locations for the next set of the top row
	top.x += this->COLUM_OFFSET_1 * COLUM_AMOUNT_1;
	for (int i = 0; i < COLUM_AMOUNT_1; ++i) {
		add_location(top);
		top.x += this->COLUM_OFFSET_1;
	}

	// Add locations for the next set of the bottom row
	bottom.x +=this->COLUM_OFFSET_1 * COLUM_AMOUNT_1;
	for (int i = 0; i < COLUM_AMOUNT_1; ++i) {
		add_location(bottom);
		bottom.x += this->COLUM_OFFSET_1;
	}

	return bottom.x-begin_position.x;
}

float CoinSystemScript::preset_2(const vec2 & begin_position){
	vec2 top = {begin_position.x+this->COLUM_OFFSET_2, begin_position.y - this->ROW_OFFSET_2};
	vec2 middle = begin_position;
	vec2 bottom = {begin_position.x+this->COLUM_OFFSET_2, begin_position.y + this->ROW_OFFSET_2};

	// Add locations for the next set of the bottom row
	for (int i = 0; i < COLUM_AMOUNT_2-2; ++i) {
		add_location(bottom);
		bottom.x += this->COLUM_OFFSET_2;
	}

	// Add locations for the next set of the middle row
	for (int i = 0; i < COLUM_AMOUNT_2; ++i) {
		add_location(middle);
		middle.x += this->COLUM_OFFSET_2;
	}

	// Add locations for the next set of the top row
	for (int i = 0; i < COLUM_AMOUNT_2-2; ++i) {
		add_location(top);
		top.x += this->COLUM_OFFSET_2;
	}

	return middle.x-begin_position.x;
}

float CoinSystemScript::preset_3(const vec2 & begin_position){
	vec2 location = {begin_position.x, begin_position.y - (this->ROW_OFFSET_3)};


	// Add locations for the top row
	for (int i = 0; i < COLUM_AMOUNT_3; ++i) {
		add_location(location);
		location.x += this->COLUM_OFFSET_3;
	}

	// Add locations for the bottom row
	location.y +=this->ROW_OFFSET_3;
	location.x += this->COLUM_OFFSET_3;
	for (int i = 0; i < COLUM_AMOUNT_3; ++i) {
		add_location(location);
		location.x += this->COLUM_OFFSET_3;
	}

	// Add locations for the next set of the top row
	location.y +=this->ROW_OFFSET_3;
	location.x += this->COLUM_OFFSET_3;
	for (int i = 0; i < COLUM_AMOUNT_3; ++i) {
		add_location(location);
		location.x += this->COLUM_OFFSET_3;
	}

	return location.x-begin_position.x;
}

float CoinSystemScript::preset_4(const vec2 & begin_position){
	vec2 location = {begin_position.x, begin_position.y + (this->ROW_OFFSET_4)};


	// Add locations for the top row
	for (int i = 0; i < COLUM_AMOUNT_4; ++i) {
		add_location(location);
		location.x += this->COLUM_OFFSET_4;
	}

	// Add locations for the bottom row
	location.y -=this->ROW_OFFSET_4;
	location.x += this->COLUM_OFFSET_4;
	for (int i = 0; i < COLUM_AMOUNT_4; ++i) {
		add_location(location);
		location.x += this->COLUM_OFFSET_4;
	}

	// Add locations for the next set of the top row
	location.y -=this->ROW_OFFSET_4;
	location.x += this->COLUM_OFFSET_4;
	for (int i = 0; i < COLUM_AMOUNT_4; ++i) {
		add_location(location);
		location.x += this->COLUM_OFFSET_4;
	}

	return location.x-begin_position.x;
}

float CoinSystemScript::preset_5(const vec2 & begin_position){
	vec2 location = {begin_position.x, begin_position.y-ROW_OFFSET_5/2};
	for (int i = 0; i < COLUM_AMOUNT_5; ++i){
		add_location(location);
		location.x += this->COLUM_OFFSET_5;
	}
	return location.x-begin_position.x;
}



void CoinSystemScript::frame_update(crepe::duration_t dt)
{
	this->despawn_coins();
	this->generate_locations();
	this->spawn_coins();	
}

void CoinSystemScript::despawn_coins() {
	// Get the current x-position of the CoinSystem's Transform component
	float position = this->get_component<Transform>().position.x;

	// Retrieve all active coin sprites tagged as "coin"
	RefVector<Sprite> coin_sprites = this->get_components_by_tag<Sprite>("coin");

	for (Sprite& coin_sprite : coin_sprites) {
		if (!coin_sprite.active) continue; // Skip inactive sprites

		// Retrieve the corresponding Transform, Metadata, and CircleCollider components
		Transform& coin_transform = this->get_components_by_id<Transform>(coin_sprite.game_object_id).front().get();
		Metadata& coin_metadata = this->get_components_by_id<Metadata>(coin_sprite.game_object_id).front().get();
		CircleCollider& coin_collider = this->get_components_by_id<CircleCollider>(coin_sprite.game_object_id).front().get();

		// Check if the coin is out of bounds based on DESPAWN_DISTANCE
		if (coin_transform.position.x < position - this->DESPAWN_DISTANCE) {
			// Find the coin in the coin_locations vector using its name
			auto it = std::find_if(
				coin_locations.begin(),
				coin_locations.end(),
				[&coin_metadata](const CoinData& data) {
						return data.name == coin_metadata.name;
				}
			);

			// If a match is found, erase it from coin_locations
			if (it != coin_locations.end()) {
				coin_locations.erase(it);
				coin_sprite.active = false;
				coin_collider.active = false;
			}
		}
	}
}

void CoinSystemScript::spawn_coins(){
	// Get the current x-position of the CoinSystem's Transform component
	float position = this->get_component<Transform>().position.x;

	// Iterate through the list of coin locations
	for (auto& coin : coin_locations) {
		// Skip this coin if it is already active
		if (coin.active)continue;
		// Skip this coin if it is not within the defined spawn area
		if (coin.start_location.x < this->SPAWN_DISTANCE + position || coin.start_location.x > this->SPAWN_AREA + this->SPAWN_DISTANCE + position) continue;
		
		// Retrieve all sprites tagged as "coin"
		RefVector<Sprite> coin_sprites = this->get_components_by_tag<Sprite>("coin");

		// Check for an available (inactive) coin sprite
		for (Sprite& coin_sprite : coin_sprites) {
			// Skip this sprite if it is already active
			if (coin_sprite.active) continue;

			// Found an available (inactive) coin sprite
			// Retrieve its associated components
			Transform & coin_transform = this->get_components_by_id<Transform>(coin_sprite.game_object_id).front().get();
			Metadata & coin_metadata = this->get_components_by_id<Metadata>(coin_sprite.game_object_id).front().get();
			CircleCollider & coin_collider = this->get_components_by_id<CircleCollider>(coin_sprite.game_object_id).front().get();
			
			// Assign data and set active
			coin.name = coin_metadata.name;
			coin.active = true;
			coin_sprite.active = true;
			coin_collider.active = true;
			coin_transform.position = coin.start_location;

			// Break out of the inner loop since we've assigned this coin to an available sprite	
			break;
		}
	}
}

void CoinSystemScript::generate_locations(){
	float position = this->get_component<Transform>().position.x;
	if(position + SPAWN_DISTANCE + SYSTEM_POSITION_OFFSET < this->system_position) return;

	std::discrete_distribution<int> dist(weights.begin(), weights.end());
	int selected_index = dist(engine);

	std::uniform_real_distribution<float> space_dist(SPAWN_SPACING_MIN, SPAWN_SPACING_MAX);
	float spacing = space_dist(engine);
	
	// Call the corresponding function and return the new x position
	this->system_position += functions[selected_index]({this->system_position,0});
	this->system_position += spacing;
}