File: trains.cpp

package info (click to toggle)
blobwars 2.00-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 77,988 kB
  • sloc: cpp: 19,023; makefile: 130; ansic: 87
file content (392 lines) | stat: -rw-r--r-- 8,968 bytes parent folder | download | duplicates (4)
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/*
Copyright (C) 2004-2011 Parallel Realities
Copyright (C) 2011-2015 Perpendicular Dimensions

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

*/

#include "trains.h"

/**
* Opens a door and converts it into a normal door (TR_DOOR)
* at the same time. Uses up keys if needed
* @param train The door to open.
*/
void openDoor(Train *train)
{
	if (train->active)
	{
		return;
	}

	switch (train->type)
	{
		case TR_GOLD_DOOR:
		case TR_GOLD_SLIDEDOOR:
			engine.setInfoMessage("Used Gold Key", 1, INFO_NORMAL);
			break;
		case TR_SILVER_DOOR:
		case TR_SILVER_SLIDEDOOR:
			engine.setInfoMessage("Used Silver Key", 1, INFO_NORMAL);
			break;
		case TR_BRONZE_DOOR:
		case TR_BRONZE_SLIDEDOOR:
			engine.setInfoMessage("Used Bronze Key", 1, INFO_NORMAL);
			break;
	}

	if ((train->type != TR_LOCKED_DOOR) && (train->type != TR_LOCKED_SLIDEDOOR))
	{
		if (train->type < TR_SLIDEDOOR)
		{
			train->type = TR_DOOR;
		}
		else
		{
			train->type = TR_SLIDEDOOR;
		}
	}

	train->active = true;

	audio.playSound(SND_OPENDOOR, CH_TOUCH, train->x);
}

/**
* Blocks an entity from moving any further and shows
* a message for the reason the door would not open
* @param ent The entity to block
* @param message The message to show when blocking the Player
* @param train The door that performs the blocking
* @param dir The direction the entity was moving in (required for clipping)
*/
void trainBlockEntity(Entity *ent, const char *message, Train *train, int dir)
{
	if (ent == &player)
	{
		if ((train->isReady()) && (!train->active))
		{
			engine.setInfoMessage(message, 1, INFO_NORMAL);
			audio.playSound(SND_LOCKEDDOOR, CH_TOUCH, train->x);
		}
	}
	
	if ((ent->flags & ENT_BULLET) && (!(ent->flags & ENT_BOUNCES)))
	{
		if (dir & DIR_X)
		{
			if (ent->dx < 0) ent->x = train->x + train->sprite->image[0]->w;
			if (ent->dx > 0) ent->x = train->x - ent->width;
		}
	}

	if (dir & DIR_Y)
	{
		if ((ent->dy >= 0) && (train->type >= TR_SLIDEDOOR))
		{
			ent->dy = 0;
			ent->falling = false;
		}
	}
}

void getTrainMotion(Entity *ent, int &dx, int &dy)
{
	dx = 0;
	dy = 0;
	Train *train = (Train*)map.trainList.getHead();
	while (train->next != NULL) {
		train = (Train*)train->next;
		bool collision = (Collision::collision(ent->x, ent->y + ent->dy, ent->width, ent->height - 1, train->x, train->y, train->width, train->height));
		if(collision) {
			dx = train->getDX();
			dy = train->getDY();
			break;
		}
	}
}

/**
* Checks to see if an entity has touched this train. Depending on
* the trains status certain other functions will be invoked
* @param ent The entity to test
* @param dir The direction the entity was moving in
* @return Whether a collision took place
*/
bool checkTrainContact(Entity *ent, int dir)
{
	Train *train = (Train*)map.trainList.getHead();

	bool collision = false;
	int x, y, mapAttribute;

	while (train->next != NULL)
	{
		train = (Train*)train->next;

		if (dir == DIR_X)
		{
			collision = (Collision::collision(ent->x + ent->dx, ent->y, ent->width, ent->height - 1, train->x, train->y, train->width, train->height));
		}
		else if (dir == DIR_Y)
		{
			collision = (Collision::collision(ent->x, ent->y + ent->dy, ent->width, ent->height - 1, train->x, train->y, train->width, train->height));
		}
		else
		{
			collision = (Collision::collision(ent->x + ent->dx, ent->y + ent->dy, ent->width, ent->height - 1, train->x, train->y, train->width, train->height));
		}

		if (collision)
		{
			switch (train->type)
			{
				case TR_TRAIN:
					if (ent->flags & ENT_BULLET)
					{
						return true;
					}
					
					if (ent->flags & ENT_FLIES)
					{
						return false;
					}

					if ((ent == &player) && (train->waitsForPlayer()))
					{
						train->active = true;
					}

					x = (int)(ent->x + ent->dx) >> BRICKSHIFT;
					y = (int)(ent->y + ent->height - 1) >> BRICKSHIFT;

					mapAttribute = map.data[x][y];

					evaluateMapAttribute(ent, mapAttribute);

					if (ent->dy >= 0)
					{
						if (train->active)
						{
							if (!map.isIceLevel)
							{
								ent->x -= train->getDX();
							}
						}

						ent->dy = 1;

						ent->y = train->y;
						ent->y -= ent->height;

						ent->falling = false;
					}

					break;

				case TR_DOOR:
				case TR_SLIDEDOOR:
					if (!(ent->flags & ENT_BULLET))
					{
						openDoor(train);
					}
					
					if (dir & DIR_Y)
					{
						ent->dy = 0;
						ent->falling = false;
					}
					return true;
					break;

				case TR_LOCKED_DOOR:
				case TR_LOCKED_SLIDEDOOR:
					trainBlockEntity(ent, "Door is locked", train, dir);
					return true;
					break;

				case TR_GOLD_DOOR:
				case TR_GOLD_SLIDEDOOR:
					if ((ent == &player) && (carryingItem("Gold Key")))
					{
						openDoor(train);
					}
					else
					{
						trainBlockEntity(ent, "Gold Key Required", train, dir);
					}
					return true;
					break;

				case TR_SILVER_DOOR:
				case TR_SILVER_SLIDEDOOR:
					if ((ent == &player) && (carryingItem("Silver Key")))
					{
						openDoor(train);
					}
					else
					{
						trainBlockEntity(ent, "Silver Key Required", train, dir);
					}
					return true;
					break;

				case TR_BRONZE_DOOR:
				case TR_BRONZE_SLIDEDOOR:
					if ((ent == &player) && (carryingItem("Bronze Key")))
					{
						openDoor(train);
					}
					else
					{
						trainBlockEntity(ent, "Bronze Key Required", train, dir);
					}
					return true;
					break;
			}
		}
	}

	return false;
}

/**
* Lazy way of setting the sprite for the train
* @param train The train to set the Sprite for
*/
void setTrainSprite(Train *train)
{
	switch (train->type)
	{
		case TR_TRAIN:
			train->sprite = graphics.getSprite("Platform", true);
			break;
		case TR_DOOR:
		case TR_LOCKED_DOOR:
			train->sprite = graphics.getSprite("NormalDoor", true);
			break;
		case TR_GOLD_DOOR:
			train->sprite = graphics.getSprite("GoldDoor", true);
			break;
		case TR_SILVER_DOOR:
			train->sprite = graphics.getSprite("SilverDoor", true);
			break;
		case TR_BRONZE_DOOR:
			train->sprite = graphics.getSprite("BronzeDoor", true);
			break;
		case TR_SLIDEDOOR:
		case TR_LOCKED_SLIDEDOOR:
			train->sprite = graphics.getSprite("SlideDoor", true);
			break;
		case TR_GOLD_SLIDEDOOR:
			train->sprite = graphics.getSprite("GoldSlideDoor", true);
			break;
		case TR_SILVER_SLIDEDOOR:
			train->sprite = graphics.getSprite("SilverSlideDoor", true);
			break;
		case TR_BRONZE_SLIDEDOOR:
			train->sprite = graphics.getSprite("BronzeSlideDoor", true);
			break;
	}
}

/**
* Checks to see if a door has attempted to open or close on the Player
* or an enemy
* @param train The door to perform the check on
* @return Whether an entity was in the path of the door
*/
bool doorClosedOnEntity(Train *train)
{
	// allow entities to stand on an horizontal moving door without blocking its movement.
	int y = (train->type < TR_SLIDEDOOR) ? (int)train->y : (int)train->y + 1;
	
	if (Collision::collision(player.x, player.y, player.width, player.height, train->x, y, train->width, train->height))
	{
		return true;
	}
	
	Entity *enemy = (Entity*)map.enemyList.getHead();

	while (enemy->next != NULL)
	{
		enemy = (Entity*)enemy->next;
		
		if (Collision::collision(enemy->x, enemy->y, enemy->width, enemy->height, train->x, y, train->width, train->height))
		{
			return true;
		}
	}
	
	return false;
}

/**
* Peforms actions for all the trains on the level. Moves them, etc.
*/
void doTrains()
{
	Train *train = (Train*)map.trainList.getHead();

	int x, y, oldX, oldY;
	int playSound = false;

	while (train->next != NULL)
	{
		train = (Train*)train->next;

		x = (int)(train->x - engine.playerPosX);
		y = (int)(train->y - engine.playerPosY);

		if ((train->type == TR_TRAIN) && (train->active))
		{
			train->move();
		}

		if (train->type != TR_TRAIN)
		{
			oldX = (int)train->x;
			oldY = (int)train->y;
			
			playSound = train->openClose();
			
			// only check if the door actually moved(!)
			if ((oldX != (int)train->x) || (oldY != (int)train->y))
			{
				if (doorClosedOnEntity(train))
				{
					train->x = oldX;
					train->y = oldY;
				}
				else if (playSound)
				{
					audio.playSound(SND_DOOROPENED, CH_TOUCH, train->x);
				}
			}
		}

		if (train->sprite == NULL)
		{
			setTrainSprite(train);
		}

		if (train->sprite && (abs(x) <= 800) && (abs(y) <= 600))
		{
			graphics.blit(train->sprite->getCurrentFrame(), x, y, graphics.screen, false);
		}
	}
}