-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSource.cpp
547 lines (481 loc) · 12 KB
/
Source.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
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
#include <allegro.h>
#include <pthread.h>
#include "mappyal.h"
#define MODE GFX_AUTODETECT_WINDOWED
#define WIDTH 640
#define HEIGHT 480
#define WHITE makecol(255,255,255)
#define JUMPIT 800
//define the sprite structure
typedef struct SPRITE
{
int dir, alive;
int x, y;
int width, height;
int xspeed, yspeed;
int xdelay, ydelay;
int xcount, ycount;
int curFrm, maxFrm;
int frmCount, frmDelay;
}SPRITE;
//declare the bitmaps and sprites
BITMAP *player_image[3];
BITMAP *ai_image[3];
SPRITE *player;
SPRITE *ai;
BITMAP *buffer;
BITMAP *temp;
BITMAP *temp2;
SPRITE *ai2;
//set up variables
bool instruct = false;
bool next = false;
bool contin = false;
bool aileft = false;
bool airight = false;
bool ai2left = false;
bool ai2right = false;
SAMPLE *sample;
//player
int height, width;
int n = 3;
int x, y;
int x1, y1;
int jump = 800;
int dir = 0;
int m;
int oldpy, oldpx;
int life = 5;
int mapxoff, mapyoff;
int score = 0;
//AI
int aix, aiy;
int ai2x, ai2y;
int aimove = 1;
//difficulty increase variable
int j = 0;
////thread
//int done;
//pthread_mutex_t threadsafe = PTHREAD_MUTEX_INITIALIZER;
//tile grabber
BITMAP *grabframe(BITMAP *source,
int width, int height,
int startx, int starty,
int columns, int frame)
{
BITMAP *temp = create_bitmap(width, height);
int x = startx + (frame % columns) * width;
int y = starty + (frame / columns) * height;
blit(source, temp, x, y, 0, 0, width, height);
return temp;
}
BITMAP *grabframe2(BITMAP *source,
int width, int height,
int startx, int starty,
int columns, int frame)
{
BITMAP *temp2 = create_bitmap(width, height);
int x1 = startx + (frame % columns) * width;
int y1 = starty + (frame / columns) * height;
blit(source, temp2, x1, y1, 0, 0, width, height);
return temp2;
}
int collided(int x, int y)
{
BLKSTR *blockdata;
blockdata = MapGetBlock(x / mapblockwidth, y / mapblockheight);
return blockdata->tl;
}
//functions
//exit program
volatile int exit_program;
void progexit()
{
exit_program = TRUE;
}
END_OF_FUNCTION(exit_program);
//void* thread0(void*data)
//{
// int my_tread_id = *((int*)data);
// while (!done)
// {
// if (pthread_mutex_lock(&threadsafe))
// textout_ex(buffer, font, "ERROR: thread mutex was locked", 0, 0, 255, 0);
//
// draw_sprite(buffer, ai_image[ai->curFrm], (ai->x - mapxoff), (ai->y - mapyoff));
//
// if (pthread_mutex_unlock(&threadsafe))
// textout_ex(buffer, font, "ERROR: thread mutex unlock error", 0, 0, WHITE, 0);
//
// }
// pthread_exit(NULL);
//
// return NULL;
//}
//
//void* thread1(void*data)
//{
// int my_tread_id = *((int*)data);
// while (!done)
// {
// if (pthread_mutex_lock(&threadsafe))
// textout_ex(buffer, font, "ERROR: thread mutex was locked", 0, 0, 255, 0);
//
// draw_sprite(buffer, ai_image[ai2->curFrm], (ai2->x - mapxoff), (ai2->y - mapyoff));
//
// if (pthread_mutex_unlock(&threadsafe))
// textout_ex(buffer, font, "ERROR: thread mutex unlock error", 0, 0, WHITE, 0);
// }
// pthread_exit(NULL);
//
// return NULL;
//}
void setupmusic()
{
//set up music
int volume = 64;
int pan = 128;
int pitch = 1000;
install_sound(DIGI_AUTODETECT, MIDI_AUTODETECT, "A");
//load some music
sample = load_sample("downtown.wav");
play_sample(sample, volume, pan, pitch, true);
}
/////////////////////////////////////////////////////////////////////////
//Set up screen, set resolution
/////////////////////////////////////////////////////////////////////////
void setupscreen()
{
int ret = set_gfx_mode(MODE, WIDTH, HEIGHT, 0, 0);
if (ret != 0)
{
allegro_message(allegro_error);
}
textprintf_ex(screen, font, 5, 2, 15, -1,
" JumpBlock - %dx%d - Press ESC to quit ",
SCREEN_W, SCREEN_H);
set_window_title("Assignment 3");
}
bool instruction(){
instruct = true;
return instruct;
}
int main(void)
{
/*int id;
pthread_t pthread0;
pthread_t pthread1;
int threadid0 = 0;
int threadid1 = 1;*/
//Game instruction
//initialize program
allegro_init();
install_keyboard();
setupscreen();
////create the thread for Ai 1
//id = pthread_create(&pthread0, NULL, thread0, (void*)&threadid0);
////create the thread for AI 2
//id = pthread_create(&pthread1, NULL, thread1, (void*)&threadid1);
//Screen Menu
while (!contin)
{
textprintf(screen, font, 25, 25, 10, "Welcome to Jump block, Press Space bar to continue.");
textprintf(screen, font, 25, 45, 15, "Press Enter for instruction.");
//Game Instruction if enter is pressed
if (key[KEY_ENTER]) {
instruction();
}
if (instruct == true){
rectfill(screen, 25, 25, SCREEN_H, SCREEN_W, 0);
textprintf(screen, font, 25, 25, 15, "Help Bob to reach for the sky, ");
textprintf(screen, font, 25, 45, 15, "by helping Bob get into the doors safely.");
textprintf(screen, font, 25, 65, 15, "Press Space bar to jump");
textprintf(screen, font, 25, 85, 15, "Press Left and Right to move left and right");
rest(7000);
rectfill(screen, 25, 25, SCREEN_H, SCREEN_W, 0);
instruct = false;
}
if (key[KEY_ESC])
{
progexit();
contin = true;
}
if (key[KEY_SPACE])
{
contin = true;
}
}
/////////////////////////////////////////////////////////////////////////
//Game loop
/////////////////////////////////////////////////////////////////////////
set_color_depth(16);
setupmusic();
set_gfx_mode(MODE, WIDTH, HEIGHT, 0, 0);
//pthread_mutex_lock(&threadsafe);
//Load Bob
temp = load_bitmap("blocks.bmp", NULL);
for (m = 0; m < 3; m++)
player_image[m] = grabframe(temp, 32, 32, 32, 0, 3, m);
destroy_bitmap(temp);
temp2 = load_bitmap("ai.bmp", NULL);
for (m = 0; m < 3; m++)
ai_image[m] = grabframe2(temp2, 32, 32, 32, 0, 3, m);
destroy_bitmap(temp2);
//Set character values
player = (SPRITE*)malloc(sizeof(SPRITE));
player->x = 10;
player->y = 400;
player->curFrm = 2;
player->frmCount = 0;
player->frmDelay = 3;
player->maxFrm = 1;
player->width = player_image[0]->w;
player->height = player_image[0]->h;
//first AI
ai = (SPRITE*)malloc(sizeof(SPRITE));
ai->x = 288;
ai->y = 320;
ai->curFrm = 1;
ai->frmCount = 0;
ai->frmDelay = 3;
ai->maxFrm = 1;
ai->width = ai_image[0]->w;
ai->height = ai_image[0]->h;
height = ai->height;
width = ai->width;
//2nd AI
ai2 = (SPRITE*)malloc(sizeof(SPRITE));
ai2->x = 300;
ai2->y = 64;
ai2->curFrm = 1;
ai2->frmCount = 0;
ai2->frmDelay = 3;
ai2->maxFrm = 1;
ai2->width = ai_image[0]->w;
ai2->height = ai_image[0]->h;
//load the Mappy file
if (MapLoad("bgImg.fmp") != 0)
{
allegro_message("Can't find bgImg.fmp");
return 1;
}
buffer = create_bitmap(WIDTH, HEIGHT);
clear(buffer);
while (!exit_program)
{
if (key[KEY_ESC])
{
progexit();
}
textprintf_ex(buffer, font, 10, 10, WHITE, -1, "Keys: Left, Right, Space bar");
textprintf_ex(buffer, font, 10, 20, WHITE, -1, "Press Esc to quit the game");
textprintf_ex(buffer, font, 10, 40, WHITE, -1, "Level: %d, life %d", score, life);
//Testing purpose
//textprintf_ex(buffer, font, 10, 10, WHITE, -1, "mapxoff= %d, mapyoff= %d, oldpy= %d, oldpx= %d, currentFrame= %d, direction= %d ", mapxoff, mapyoff, oldpy, oldpx, player->curFrm, dir);
//textprintf_ex(buffer, font, 10, 20, WHITE, -1, "frameCount= %d, frameDelay= %d, x= %d, y= %d, ai->x %d", player->frmCount, player->frmDelay, x, y, ai->x);
//textprintf_ex(buffer, font, 10, 30, WHITE, -1, "ai->curFrm %d, ai->x %d, ai->width %d, ai->y %d, ai->height %d", ai->curFrm, ai->x, ai->width, ai->y, ai->height);
//textprintf_ex(buffer, font, 10, 50, WHITE, -1, "player->x %d, player->x + width %d, player->y %d, player->y + height %d", player->x, player->x + width, player->y, player->y + width);
blit(buffer, screen, 0, 0, 0, 0, SCREEN_W - 1, SCREEN_H - 1);
oldpy = player->y;
oldpx = player->x;
//1st ai x, y value
aix = ai->x;
aiy = ai->y;
//2nd ai x, y value
ai2x = ai2->x;
ai2y = ai2->y;
if (key[KEY_RIGHT])
{
if (oldpx < (SCREEN_W - 31))
{
dir = 2;
player->x += 3;
if (++player->frmCount > player->frmDelay)
{
player->frmCount = 0;
if (++player->curFrm > player->maxFrm)
player->curFrm = 1;
}
}
}
else if (key[KEY_LEFT])
{
if (oldpx > 1)
{
dir = 1;
player->x -= 3;
if (++player->frmCount > player->frmDelay)
{
player->frmCount = 0;
player->curFrm = 0;
}
}
}
else player->curFrm = 2;
//handle jumping
if (jump == JUMPIT)
{
if (!collided(player->x + player->width / 2,
player->y + player->height + 5))
jump = 0;
if (key[KEY_SPACE])
jump = 22 - j;
}
else
{
player->y -= jump / 3;
jump--;
}
if (jump < 0)
{
if (collided(player->x + player->width / 2,
player->y + player->height))
{
jump = JUMPIT;
while (collided(player->x + player->width / 2,
player->y + player->height))
player->y -= 2;
}
}
//check for collided with foreground tiles
if (!dir)
{
if (collided(player->x, player->y + player->height))
player->x = oldpx;
}
else
{
if (collided(player->x + player->width,
player->y + player->height))
player->x = oldpx;
}
//if sprite walks into door game loops
if (oldpy > 61 && oldpy < 64 && (oldpx > 598 && oldpx < 620))
{
//TODO: implement loop
player->x = 10;
player->y = 574;
oldpx -= 5;
score += 1;
if (score == 2 || score == 3)
{
//increase difficulty
j += 1;
}
}
//update the map scroll position
mapxoff = player->x + player->width / 2 - WIDTH / 2 + 10;
mapyoff = player->y + player->height / 2 - HEIGHT / 2 + 10;
//avoid moving beyond the map edge
if (mapxoff < 30) mapxoff = 0;
if (mapxoff >(mapwidth * mapblockwidth - WIDTH))
mapxoff = mapwidth * mapblockwidth - WIDTH;
if (mapyoff < 30)
mapyoff = 0;
if (mapyoff >(mapheight * mapblockheight - HEIGHT))
mapyoff = (mapheight * mapblockheight - HEIGHT);
//draw the background tiles
MapDrawBG(buffer, mapxoff, mapyoff, 0, 0, WIDTH, HEIGHT);
//draw foreground tiles
MapDrawFG(buffer, mapxoff, mapyoff, 0, 0, WIDTH, HEIGHT, 0);
//draw first ai sprite
if (ai->x >= 288)
{
aileft = true;
airight = false;
ai->curFrm = 0;
}
if (ai->x <= 158)
{
airight = true;
aileft = false;
ai->curFrm = 2;
}
if (aileft == true)
{
ai->x -= 1 + j;
}
else if (airight == true)
{
ai->x += 1 + j;
}
//draw 2nd ai sprite
if (ai2->x >= 260)
{
ai2left = true;
ai2right = false;
ai2->curFrm = 0;
}
if (ai2->x <= 164 && aileft == true)
{
ai2right = true;
ai2left = false;
ai2->curFrm = 2;
}
if (ai2left == true)
{
ai2->x -= 1 + j;
}
else if (airight == true)
{
ai2->x += 1 + j;
}
draw_sprite(buffer, ai_image[ai->curFrm], (ai->x - mapxoff), (ai->y - mapyoff));
draw_sprite(buffer, ai_image[ai2->curFrm], (ai2->x - mapxoff), (ai2->y - mapyoff));
//detect player vs ai collision
//1st AI
if (ai->x - 3 < (player->x) && player->x < (ai->x + width) + 3)
{
if (ai->y - 4 < (player->y) && player->y < (ai->y + height) + 4)
{
player->x = 10;
player->y = 574;
life -= 1;
}
}
//2nd AI
if (ai2->x - 3 < (player->x) && player->x < (ai2->x + width) + 3)
{
if (ai2->y - 4 < (player->y) && player->y < (ai2->y + height) + 4)
{
player->x = 10;
player->y = 574;
life -= 1;
}
}
//testing purpose
//rectfill(buffer, ai->x - mapxoff, ai->y - mapyoff, ai->x + ai->width - mapxoff, ai->y + ai->height - mapyoff, 0);
//draw the player's sprite
if (dir)
draw_sprite(buffer, player_image[player->curFrm],
(player->x - mapxoff), (player->y - mapyoff + 1));
else
draw_sprite_h_flip(buffer, player_image[player->curFrm],
(player->x - mapxoff), (player->y - mapyoff));
//blit the double buffer
vsync();
acquire_screen();
blit(buffer, screen, 0, 0, 0, 0, WIDTH - 1, HEIGHT - 1);
release_screen();
//pthread_mutex_unlock(&threadsafe);
//while
}
for (m = 0; m < 3; m++)
destroy_bitmap(player_image[m]);
free(player);
for (m = 0; m < 3; m++)
destroy_bitmap(ai_image[m]);
free(ai);
free(ai2);
//delete double buffer
destroy_bitmap(buffer);
destroy_sample(sample);
//kill thread
//done++;
//pthread_mutex_destroy(&threadsafe);
//delete the Mappy level
MapFreeMem();
allegro_exit();
return 0;
}
END_OF_MAIN()