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 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
|
/****************************************************
* Pacman For Console V1.3 *
* By: Mike Billars (michael@gmail.com) *
* Date: 2014-04-26 *
* *
* Please see file COPYING for details on licensing *
* and redistribution of this program *
* *
****************************************************/
/***********
* INCLUDES *
***********/
#include <stdio.h>
#include <curses.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <sys/timeb.h>
#include "pacman.h"
#define EXIT_MSG "Good bye!"
#define END_MSG "Game Over"
#define QUIT_MSG "Bye"
#define LEVEL_ERR "Cannot find level file: "
#define LEVEL_WIDTH 28
#define LEVEL_HEIGHT 29
/*************
* PROTOTYPES *
*************/
void IntroScreen(); //Show introduction screen and menu
int CheckCollision(); //See if Pacman and Ghosts collided
void CheckScreenSize(); //Make sure resolution is at least 32x29
void CreateWindows(int y, int x, int y0, int x0); //Make ncurses windows
void Delay(); //Slow down game for better control
void DrawWindow(); //Refresh display
void ExitProgram(const char *message); //Exit and display something
void GetInput(); //Get user input
void InitCurses(); //Start up ncurses
void LoadLevel(char *levelfile); //Load level into memory
int MainLoop(); //Main program function
void MoveGhosts(); //Update Ghosts' location
void MovePacman(); //Update Pacman's location
void PauseGame(); //Pause
void PrintHelp(char* name); //Print help and exit
int GameOverScreen();
/*******************
* GLOBAL VARIABLES *
*******************/
//I know global variables are bad, but it's just sooo easy!
//Windows used by ncurses
WINDOW * win;
WINDOW * status;
//For colors
enum { Wall = 1, Normal, Pellet, PowerUp, GhostWall, Ghost1, Ghost2, Ghost3, Ghost4, BlueGhost, Pacman };
int Loc[5][2] = { 0 }; //Location of Ghosts and Pacman
int Dir[5][2] = { 0 }; //Direction of Ghosts and Pacman
int StartingPoints[5][2] = { 0 }; //Default location in case Pacman/Ghosts die
int Invincible = 0; //Check for invincibility
int Food = 0; //Number of pellets left in level
int Level[29][28] = { 0 }; //Main level array
int LevelNumber = 0; //What level number are we on?
int GhostsInARow = 0; //Keep track of how many points to give for eating ghosts
int tleft = 0; //How long left for invincibility
/****************************************************************
* Function: main() *
* Parameters: argc, argv (passed from command line) *
* Returns: Success *
* Description: Initiate the program and call the subfunctions *
****************************************************************/
int main(int argc, char *argv[100]) {
int loop = 1; //loop program? 0 = no, 1 = yes
char* level = NULL; //level to load
int j = 1;
int i;
for(i = 1; i < argc; ++i) {
if(strcmp(argv[i], "--help") == 0 || strcmp(argv[i], "-h") == 0) {
PrintHelp(argv[0]);
return 0;
}
else if(strncmp(argv[i], "--level=", 8) == 0) {
level = argv[i];
level += 8;
int len = strlen(level);
if(len == 0) {
level = NULL;
}
else if(len == 1) {
for(LevelNumber = '1'; LevelNumber <= '9'; LevelNumber++) {
if(LevelNumber == level[0]) {
j = LevelNumber - '0';
level = NULL;
break;
}
}
}
}
else {
PrintHelp(argv[0]);
return 0;
}
}
srand( (unsigned)time( NULL ) );
InitCurses(); //Must be called to start ncurses
CheckScreenSize(); //Make sure screen is big enough
CreateWindows(29, 28, 1, 1); //Create the main and status windows
IntroScreen(); //Show intro "movie"
int start_lives = Lives;
int start_points = Points;
do {
Lives = start_lives;
Points = start_points;
if(level == NULL) {
//j = 1;
//Load levels, 1 by 1, if you can beat all 9 levels in a row, you're awesome
for(LevelNumber = j; LevelNumber < 10; LevelNumber++) {
LevelFile[strlen(LevelFile) - 6] = '0';
LevelFile[strlen(LevelFile) - 5] = LevelNumber + '0';
LoadLevel(LevelFile);
Invincible = 0; //Reset invincibility
if(MainLoop() == 1) break;
}
}
else {
//Load special non-standard level
LoadLevel(level);
Invincible = 0; //Reset invincibility
MainLoop();
}
if(GameOverScreen() == 1) loop = 0;
} while(loop == 1);
//Game has ended, deactivate and end program
ExitProgram(EXIT_MSG);
//This doesn't need to be here, but just to be proper
return(0);
}
/****************************************************************
* Function: CheckCollision() *
* Parameters: none *
* Returns: none *
* Description: Check and handle if Pacman collided with a ghost *
****************************************************************/
int CheckCollision() {
//Temporary variable
int a = 0;
//Check each ghost, one at a time for collision
for(a = 0; a < 4; a++) {
//Ghost X and Y location is equal to Pacman X and Y location (collision)
if((Loc[a][0] == Loc[4][0]) && (Loc[a][1] == Loc[4][1])) {
//Pacman is invincible, ghost dies
if(Invincible == 1) {
Points = Points + GhostsInARow * 20; //Increase points by an increasing value
//Display the points earned for eating the ghost
mvwprintw(win, Loc[4][0], Loc[4][1] - 1, "%d", (GhostsInARow * 20));
GhostsInARow *= 2;
wrefresh(win); //Update display
usleep(1000000); //and pause for a second
//Reset the ghost's position to the starting location
Loc[a][0] = StartingPoints[a][0]; Loc[a][1] = StartingPoints[a][1];
}
//Pacman is vulnerable, Pacman dies
else {
//Display an X in position
wattron(win, COLOR_PAIR(Pacman));
mvwprintw(win, Loc[4][0], Loc[4][1], "X");
wrefresh(win);
//Subtract one life and pause for 1 second
Lives--;
usleep(1000000);
//If no more lives, game over
if(Lives == -1) return 1;
//If NOT game over...
//Reset Pacman's and ghosts' positions
for(a = 0; a < 5; a++) {
Loc[a][0] = StartingPoints[a][0];
Loc[a][1] = StartingPoints[a][1];
}
//Reset directions
Dir[0][0] = 1; Dir[0][1] = 0;
Dir[1][0] = -1; Dir[1][1] = 0;
Dir[2][0] = 0; Dir[2][1] = -1;
Dir[3][0] = 0; Dir[3][1] = 1;
Dir[4][0] = 0; Dir[4][1] = -1;
DrawWindow(); //Redraw window
usleep(1000000); //Pause for 1 second before continuing game
}
}
}
return 0;
}
/****************************************************************
* Function: CheckScreenSize() *
* Parameters: none *
* Returns: none *
* Description: Make sure the virtual console is big enough *
****************************************************************/
void CheckScreenSize() {
//Make sure the window is big enough
int h, w; getmaxyx(stdscr, h, w);
if((h < 32) || (w < 29)) {
endwin();
fprintf(stderr, "\nSorry.\n");
fprintf(stderr, "To play Pacman for Console, your console window must be at least 29x32\n");
fprintf(stderr, "Please resize your window/resolution and re-run the game.\n\n");
exit(0);
}
}
int GameOverScreen() {
char chr = ' ';
int a, b;
for(a = 0; a < 29; a++) for(b = 0; b < 28; b++) {
mvwaddch(win, a, b, chr);
}
wattron(win, COLOR_PAIR(Pacman));
mvwprintw(win, 8, 11, "Game Over");
wattron(win, COLOR_PAIR(Normal));
mvwprintw(win, 14, 2, "Press q to quit ...");
mvwprintw(win, 16, 2, "... or any other key");
mvwprintw(win, 17, 6, "to play again");
wrefresh(win);
//And wait
int chtmp;
do {
chtmp = getch();
} while (chtmp == ERR);
if(chtmp == 'q' || chtmp == 'Q')
return 1;
return 0;
}
/****************************************************************
* Function: CreateWindows() *
* Parameters: y, x, y0, x0 (coords and size of window) *
* Returns: none *
* Description: Create the main game windows *
****************************************************************/
void CreateWindows(int y, int x, int y0, int x0) {
//Create two new windows, for status bar and for main level
win = newwin(y, x, y0, x0);
status = newwin(3, 27, 29, 1);
}
/****************************************************************
* Function: Delay() *
* Parameters: none *
* Returns: none *
* Description: Pause the game and still get keyboard input *
****************************************************************/
void Delay() {
//Needed to get time
struct timeb t_start, t_current;
ftime(&t_start);
//Slow down the game a little bit
do {
GetInput(); //Still get the input from keyboard
ftime(&t_current); //Update time and check if enough time has overlapped
} while (abs(t_start.millitm - t_current.millitm) < SpeedOfGame);
}
/****************************************************************
* Function: DrawWindow() *
* Parameters: none *
* Returns: none *
* Description: Redraw each window to update the screen *
****************************************************************/
void DrawWindow() {
//Temporary variables
int a = 0; int b = 0;
char chr = ' '; //Variable used to display certain characters
int attr; //Variable that displays normal/bold character
//Display level array
for(a = 0; a < 29; a++) for(b = 0; b < 28; b++) {
//Determine which character is in location and display it
switch(Level[a][b]) {
case 0: chr = ' '; attr = A_NORMAL; wattron(win, COLOR_PAIR(Normal)); break;
case 1: chr = ' '; attr = A_NORMAL; wattron(win, COLOR_PAIR(Wall)); break;
case 2: chr = '.'; attr = A_NORMAL; wattron(win, COLOR_PAIR(Pellet)); break;
case 3: chr = '*'; attr = A_BOLD; wattron(win, COLOR_PAIR(PowerUp)); break;
case 4: chr = ' '; attr = A_NORMAL; wattron(win, COLOR_PAIR(GhostWall)); break;
}
//Display character. "attr" is ORed with chr as documented for mvwaddch,
// this will make the character bold/normal
mvwaddch(win, a, b, chr | attr);
}
//Display number of lives, score, and level
attr = A_NORMAL; //Reset attribute in case it's set to "BOLD"
//Switch window to status, and change color
wmove(status, 1, 1);
wattron(status, COLOR_PAIR(Pacman));
//Display number of lives
for(a = 0; a < Lives; a++)
wprintw(status, "C ");
wprintw(status, " ");
//Display level number and score
wattron(status, COLOR_PAIR(Normal));
mvwprintw(status, 2, 2, "Level: %d Score: %d ", LevelNumber, Points);
wrefresh(status); //Update status window
//Display ghosts if Pacman is not invincible
if(Invincible == 0) {
wattron(win, COLOR_PAIR(Ghost1)); mvwaddch(win, Loc[0][0], Loc[0][1], '&');
wattron(win, COLOR_PAIR(Ghost2)); mvwaddch(win, Loc[1][0], Loc[1][1], '&');
wattron(win, COLOR_PAIR(Ghost3)); mvwaddch(win, Loc[2][0], Loc[2][1], '&');
wattron(win, COLOR_PAIR(Ghost4)); mvwaddch(win, Loc[3][0], Loc[3][1], '&');
}
//OR display vulnerable ghosts
else {
wattron(win, COLOR_PAIR(BlueGhost));
mvwaddch(win, Loc[0][0], Loc[0][1], tleft + '0');
mvwaddch(win, Loc[1][0], Loc[1][1], tleft + '0');
mvwaddch(win, Loc[2][0], Loc[2][1], tleft + '0');
mvwaddch(win, Loc[3][0], Loc[3][1], tleft + '0');
}
//Display Pacman
wattron(win, COLOR_PAIR(Pacman)); mvwaddch(win, Loc[4][0], Loc[4][1], 'C');
wrefresh(win); //Update main window
}
/****************************************************************
* Function: ExitProgram() *
* Parameters: message: text to display before exiting *
* Returns: none *
* Description: Gracefully end program *
****************************************************************/
void ExitProgram(const char *message) {
endwin(); //Uninitialize ncurses and destroy windows
printf("%s\n", message); //Display message
exit(0); //End program, return 0
}
/****************************************************************
* Function: GetInput() *
* Parameters: none *
* Returns: none *
* Description: Get input from user and take appropriate action *
****************************************************************/
void GetInput() {
int ch; //Key pushed
static int chtmp; //Buffered key
int tmp;
ch = getch(); //Figure out which key is pressed
//If they are not pressing something, use previous input
if(ch == ERR) ch = chtmp;
chtmp = ch;
//Determine which button is pushed
switch (ch) {
case KEY_UP: case 'w': case 'W': //Move pacman up
if(Loc[4][0] <= 0) tmp = LEVEL_HEIGHT - 1;
else tmp = Loc[4][0] - 1;
if((Level[tmp][Loc[4][1]] != 1)
&& (Level[tmp][Loc[4][1]] != 4))
{ Dir[4][0] = -1; Dir[4][1] = 0; }
break;
case KEY_DOWN: case 's': case 'S': //Move pacman down
if(Loc[4][0] >= 28) tmp = 0;
else tmp = Loc[4][0] + 1;
if((Level[tmp][Loc[4][1]] != 1)
&& (Level[tmp][Loc[4][1]] != 4))
{ Dir[4][0] = 1; Dir[4][1] = 0; }
break;
case KEY_LEFT: case 'a': case 'A': //Move pacman left
if(Loc[4][1] <= 0) tmp = LEVEL_WIDTH - 1;
else tmp = Loc[4][1] - 1;
if((Level[Loc[4][0]][tmp] != 1)
&& (Level[Loc[4][0]][tmp] != 4))
{ Dir[4][0] = 0; Dir[4][1] = -1; }
break;
case KEY_RIGHT: case 'd': case 'D': //Move pacman right
if(Loc[4][1] >= 27) tmp = 0;
else tmp = Loc[4][1] + 1;
if((Level[Loc[4][0]][tmp] != 1)
&& (Level[Loc[4][0]][tmp] != 4))
{ Dir[4][0] = 0; Dir[4][1] = 1; }
break;
case 'p': case 'P': //Pause game
PauseGame();
chtmp = getch(); //Update buffered input
break;
case 'q': case 'Q': //End program
ExitProgram(QUIT_MSG);
break;
}
}
/****************************************************************
* Function: InitCurses() *
* Parameters: none *
* Returns: none *
* Description: Initialize ncurses and set defined colors *
****************************************************************/
void InitCurses() {
initscr(); //Needed for ncurses windows
start_color(); //Activate colors in console
curs_set(0); // Don't remember
keypad(stdscr, TRUE); //Activate arrow keys
nodelay(stdscr, TRUE); //Allow getch to work without pausing
nonl(); // Don't remember
cbreak(); // Don't remember
noecho(); //Don't display input key
//Make custom text colors
init_pair(Normal, COLOR_WHITE, COLOR_BLACK);
init_pair(Wall, COLOR_WHITE, COLOR_WHITE);
init_pair(Pellet, COLOR_WHITE, COLOR_BLACK);
init_pair(PowerUp, COLOR_BLUE, COLOR_BLACK);
init_pair(GhostWall, COLOR_WHITE, COLOR_CYAN);
init_pair(Ghost1, COLOR_RED, COLOR_BLACK);
init_pair(Ghost2, COLOR_CYAN, COLOR_BLACK);
init_pair(Ghost3, COLOR_MAGENTA, COLOR_BLACK);
init_pair(Ghost4, COLOR_YELLOW, COLOR_BLACK);
init_pair(BlueGhost, COLOR_BLUE, COLOR_RED);
init_pair(Pacman, COLOR_YELLOW, COLOR_BLACK);
}
/****************************************************************
* Function: IntroScreen() *
* Parameters: none *
* Returns: none *
* Description: Display the introduction animation *
****************************************************************/
void IntroScreen() {
int a = 0;
int b = 23;
a=getch(); a=getch(); a=getch();//Clear the buffer
mvwprintw(win, 20, 8, "Press any key...");
//Scroll Pacman to middle of screen
for(a = 0; a < 13; a++) {
if(getch()!=ERR) return;
wattron(win, COLOR_PAIR(Pacman));
mvwprintw(win, 8, a, " C");
wrefresh(win);
usleep(100000);
}
//Show "Pacman"
wattron(win, COLOR_PAIR(Pacman));
mvwprintw(win, 8, 12, "PACMAN");
wrefresh(win);
usleep(1000000);
//Ghosts chase Pacman
for(a = 0; a < 23; a++) {
if(getch()!=ERR) return;
wattron(win, COLOR_PAIR(Pellet)); mvwprintw(win, 13, 23, "*");
wattron(win, COLOR_PAIR(Pacman)); mvwprintw(win, 13, a, " C");
wattron(win, COLOR_PAIR(Ghost1)); mvwprintw(win, 13, a-3, " &");
wattron(win, COLOR_PAIR(Ghost3)); mvwprintw(win, 13, a-5, " &");
wattron(win, COLOR_PAIR(Ghost2)); mvwprintw(win, 13, a-7, " &");
wattron(win, COLOR_PAIR(Ghost4)); mvwprintw(win, 13, a-9, " &");
wrefresh(win);
usleep(100000);
}
usleep(150000);
//Pacman eats powerup and chases Ghosts
for(a = 25; a > 2; a--) {
if(getch()!=ERR) return;
wattron(win, COLOR_PAIR(Pellet)); mvwprintw(win, 13, 23, " ");
//Make ghosts half as fast so Pacman can catch them
if(a%2) b--;
wattron(win, COLOR_PAIR(BlueGhost)); mvwprintw(win, 13, b-9, "& & & &");
//Erase the old positions of ghosts
wattron(win, COLOR_PAIR(Pacman)); mvwprintw(win, 13, b-9+1, " ");
wattron(win, COLOR_PAIR(Pacman)); mvwprintw(win, 13, b-9+3, " ");
wattron(win, COLOR_PAIR(Pacman)); mvwprintw(win, 13, b-9+5, " ");
wattron(win, COLOR_PAIR(Pacman)); mvwprintw(win, 13, b-9+7, " ");
wattron(win, COLOR_PAIR(Pacman)); mvwprintw(win, 13, a-3, "C ");
wattron(win, COLOR_PAIR(Pellet)); mvwprintw(win, 13, 23, " ");
wrefresh(win);
usleep(100000);
}
}
/****************************************************************
* Function: LoadLevel() *
* Parameters: levelfile: name of file to load *
* Returns: none *
* Description: Open level file and load it into memory *
****************************************************************/
void LoadLevel(char* levelfile) {
int a = 0; int b = 0;
size_t l;
char error[sizeof(LEVEL_ERR)+255] = LEVEL_ERR; //Let's assume an error
FILE *fin; //New file variable
Food = 0; //Used to count how many food pellets must be eaten
//Reset defaults
Dir[0][0] = 1; Dir[0][1] = 0;
Dir[1][0] = -1; Dir[1][1] = 0;
Dir[2][0] = 0; Dir[2][1] = -1;
Dir[3][0] = 0; Dir[3][1] = 1;
Dir[4][0] = 0; Dir[4][1] = -1;
//Open file
fin = fopen(levelfile, "r");
//Make sure it didn't fail
if(!(fin)) {
l = sizeof(error)-strlen(error)-1;
strncat(error, levelfile, l);
if(strlen(levelfile) > l) {
error[sizeof(error)-2] = '.';
error[sizeof(error)-3] = '.';
error[sizeof(error)-4] = '.';
}
ExitProgram(error);
}
//Open file and load the level into the array
for(a = 0; a < 29; a++) {
for(b = 0; b < 28; b++) {
fscanf(fin, "%d", &Level[a][b]); //Get character from file
if(Level[a][b] == 2) { Food++; } //If it's a pellet, increase the pellet count
//Store ghosts' and Pacman's locations
if(Level[a][b] == 5) { Loc[0][0] = a; Loc[0][1] = b; Level[a][b] = 0;}
if(Level[a][b] == 6) { Loc[1][0] = a; Loc[1][1] = b; Level[a][b] = 0;}
if(Level[a][b] == 7) { Loc[2][0] = a; Loc[2][1] = b; Level[a][b] = 0;}
if(Level[a][b] == 8) { Loc[3][0] = a; Loc[3][1] = b; Level[a][b] = 0;}
if(Level[a][b] == 9) { Loc[4][0] = a; Loc[4][1] = b; Level[a][b] = 0;}
}
}
//All done, now get the difficulty level (AKA level number)
fscanf(fin, "%d", &LevelNumber);
//Save initial character positions in case Pacman or Ghosts die
for(a = 0; a < 5; a++) {
StartingPoints[a][0] = Loc[a][0]; StartingPoints[a][1] = Loc[a][1];
}
}
/****************************************************************
* Function: MainLoop() *
* Parameters: none *
* Returns: none *
* Description: Control the main execution of the game *
****************************************************************/
int MainLoop() {
DrawWindow(); //Draw the screen
wrefresh(win); wrefresh(status); //Refresh it just to make sure
usleep(1000000); //Pause for a second so they know they're about to play
/* Move Pacman. Move ghosts. Check for extra life awarded
from points. Pause for a brief moment. Repeat until all pellets are eaten */
do {
MovePacman(); DrawWindow(); if (CheckCollision() == 1) return 1;
MoveGhosts(); DrawWindow(); if (CheckCollision() == 1) return 1;
if(Points > FreeLife) { Lives++; FreeLife *= 2;}
Delay();
} while (Food > 0);
DrawWindow(); //Redraw window and...
usleep(1000000); //Pause, level complete
return 0;
}
/****************************************************************
* Function: MoveGhosts() *
* Parameters: none *
* Returns: none *
* Description: Move all ghosts and check for wall collisions *
****************************************************************/
void MoveGhosts() {
//Set up some temporary variables
int a = 0; int b = 0; int c = 0;
int checksides[] = { 0, 0, 0, 0, 0, 0 };
static int SlowerGhosts = 0;
int tmp;
/* Move ghosts slower when they are vulnerable. This will allow
the ghosts to move only x times for every y times Pacman moves */
if(Invincible == 1) {
SlowerGhosts++;
if(SlowerGhosts > HowSlow)
SlowerGhosts = 0;
}
//If ghosts are not vulnerable OR the ghosts can move now
if((Invincible == 0) || SlowerGhosts < HowSlow)
//Loop through each ghost, one at a time
for(a = 0; a < 4; a++) {
//Switch sides? (Transport to other side of screen)
if((Loc[a][0] == 0) && (Dir[a][0] == -1)) Loc[a][0] = 28;
else if((Loc[a][0] == 28) && (Dir[a][0] == 1)) Loc[a][0] = 0;
else if((Loc[a][1] == 0) && (Dir[a][1] == -1)) Loc[a][1] = 27;
else if((Loc[a][1] == 27) && (Dir[a][1] == 1)) Loc[a][1] = 0;
else {
//Determine which directions we can go
for(b = 0; b < 4; b++) checksides[b] = 0;
if(Loc[a][0] == 28) tmp = 0;
else tmp = Loc[a][0] + 1;
if(Level[tmp][Loc[a][1]] != 1) checksides[0] = 1;
if(Loc[a][0] == 0) tmp = 28;
else tmp = Loc[a][0] - 1;
if(Level[tmp][Loc[a][1]] != 1) checksides[1] = 1;
if(Loc[a][1] == 27) tmp = 0;
else tmp = Loc[a][1] + 1;
if(Level[Loc[a][0]][tmp] != 1) checksides[2] = 1;
if(Loc[a][1] == 0) tmp = 27;
else tmp = Loc[a][1] - 1;
if(Level[Loc[a][0]][tmp] != 1) checksides[3] = 1;
//Don't do 180 unless we have to
c = 0; for(b = 0; b < 4; b++) if(checksides[b] == 1) c++;
if(c > 1) {
if(Dir[a][0] == 1) checksides[1] = 0;
else if(Dir[a][0] == -1) checksides[0] = 0;
else if(Dir[a][1] == 1) checksides[3] = 0;
else if(Dir[a][1] == -1) checksides[2] = 0;
}
c = 0;
do {
//Decide direction, based somewhat-randomly
b = (int)(rand() / (1625000000 / 4));
/* Tend to mostly chase Pacman if he is vulnerable
or run away when he is invincible */
if(checksides[b] == 1) {
if(b == 0) { Dir[a][0] = 1; Dir[a][1] = 0; }
else if(b == 1) { Dir[a][0] = -1; Dir[a][1] = 0; }
else if(b == 2) { Dir[a][0] = 0; Dir[a][1] = 1; }
else if(b == 3) { Dir[a][0] = 0; Dir[a][1] = -1; }
}
else {
if(Invincible == 0) {
//Chase Pacman
if((Loc[4][0] > Loc[a][0]) && (checksides[0] == 1)) { Dir[a][0] = 1; Dir[a][1] = 0; c = 1; }
else if((Loc[4][0] < Loc[a][0]) && (checksides[1] == 1)) { Dir[a][0] = -1; Dir[a][1] = 0; c = 1; }
else if((Loc[4][1] > Loc[a][1]) && (checksides[2] == 1)) { Dir[a][0] = 0; Dir[a][1] = 1; c = 1; }
else if((Loc[4][1] < Loc[a][1]) && (checksides[3] == 1)) { Dir[a][0] = 0; Dir[a][1] = -1; c = 1; }
}
else {
//Run away from Pacman
if((Loc[4][0] > Loc[a][0]) && (checksides[1] == 1)) { Dir[a][0] = -1; Dir[a][1] = 0; c = 1; }
else if((Loc[4][0] < Loc[a][0]) && (checksides[0] == 1)) { Dir[a][0] = 1; Dir[a][1] = 0; c = 1; }
else if((Loc[4][1] > Loc[a][1]) && (checksides[3] == 1)) { Dir[a][0] = 0; Dir[a][1] = -1; c = 1; }
else if((Loc[4][1] < Loc[a][1]) && (checksides[2] == 1)) { Dir[a][0] = 0; Dir[a][1] = 1; c = 1; }
}
}
} while ((checksides[b] == 0) && (c == 0));
//Move Ghost
Loc[a][0] += Dir[a][0];
Loc[a][1] += Dir[a][1];
}
}
}
/****************************************************************
* Function: MovePacman() *
* Parameters: none *
* Returns: none *
* Description: Move Pacman and check for wall collisions *
****************************************************************/
void MovePacman() {
static int itime = 0;
//Switch sides? (Transport to other side of screen)
if((Loc[4][0] == 0) && (Dir[4][0] == -1)) Loc[4][0] = 28;
else if((Loc[4][0] == 28) && (Dir[4][0] == 1)) Loc[4][0] = 0;
else if((Loc[4][1] == 0) && (Dir[4][1] == -1)) Loc[4][1] = 27;
else if((Loc[4][1] == 27) && (Dir[4][1] == 1)) Loc[4][1] = 0;
//Or
else {
//Move Pacman
Loc[4][0] += Dir[4][0];
Loc[4][1] += Dir[4][1];
//If he hit a wall, move back
if((Level[Loc[4][0]][Loc[4][1]] == 1) || (Level[Loc[4][0]][Loc[4][1]] == 4)) {
Loc[4][0] -= Dir[4][0]; Loc[4][1] -= Dir[4][1];
}
}
//What is Pacman eating?
switch (Level[Loc[4][0]][Loc[4][1]]) {
case 2: //Pellet
Level[Loc[4][0]][Loc[4][1]] = 0;
Points++;
Food--;
break;
case 3: //PowerUp
Level[Loc[4][0]][Loc[4][1]] = 0;
Invincible = 1;
if(GhostsInARow == 0) GhostsInARow = 1;
itime = time(0);
break;
}
//Is he invincible?
if(Invincible == 1) tleft = (11 - LevelNumber - time(0) + itime);
//Is invincibility up yet?
if(tleft < 0) { Invincible = 0; GhostsInARow = 0; tleft = 0; }
}
/****************************************************************
* Function: PauseGame() *
* Parameters: none *
* Returns: none *
* Description: Pause game until user presses a button *
****************************************************************/
void PauseGame() {
int chtmp;
//Display pause dialog
wattron(win, COLOR_PAIR(Pacman));
mvwprintw(win, 12, 10, "********");
mvwprintw(win, 13, 10, "*PAUSED*");
mvwprintw(win, 14, 10, "********");
wrefresh(win);
//And wait until key is pressed
do {
chtmp = getch(); //Get input
} while (chtmp == ERR);
}
void PrintHelp(char* name) {
printf("Usage: %s [OPTION]\n\n", name);
printf("Options:\n");
printf(" -h, --help print help\n");
printf(" --level=[1..9] start at specified standard level\n");
printf(" --level=LEVEL play specified non-standard LEVEL\n");
}
|