File size: 2,894 Bytes
0ef7a64 |
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 |
/*
Name:Wong Pui Shan
Sdutent ID:52611804
program: AScISD
Name: HAR Chiu Kwong Samson
Sdutent ID:52629360
program: AScISD
Name: LAM Cheuk Man
Sdutent ID:52621140
program: AScISD
Name:KO Jeffrey KO
Sdutent ID:525 695 30
program: AScISD
*/
#include <iostream>
using namespace std;
#include <fstream>
#include <string>
#include "Utilities.h"
#include "Game.h"
#include "Ghost.h"
#include "Maze.h"
#include "Pacman.h"
#include "AnotherGhost.h"
#include "Fruit.h"
#include "FileIO.h"
#include <climits>
#include <ctime>
int main()
{
srand( (unsigned int) time(NULL) );
Game g;
g.setReplayBool(true);
//Start the game
while(true)
{
int gameLevel = g.getGameLevel();
Maze m;
FileIO fileIO;
m.printMaze(gameLevel);
m.checkTotalDot();
Utilities u;
Utilities a;
Utilities b;
Utilities c;
Utilities d;
Utilities z;
Utilities f;
int dot = 0;
int x = 10;
int y = 9;
Pacman p;
//initilize ghosts.
Fruit fruit1('!');
Ghost A(8, 7, "A");
Ghost B(9, 7, "B");
Ghost C(10, 7, "C");
Ghost D(11, 7, "D");
//int life;
while (g.getLoopGameBool() && g.getReplayBool() == true)
{
//_sleep(80);
g.checkForUpLevel(m);
p.Move(g, m, u, dot, A, B, C, D, a, b, c, d, z, fruit1, f);
A.showGhost(a);
A.increaseSpeed(dot);
A.Move(m, a);
B.showGhost(b);
B.increaseSpeed(dot);
B.Move(m, b);
C.showGhost(c);
C.Move(m, c);
D.showGhost(d);
D.Move(m, d);
g.Move(m,z);
A.EatPacman(p, g, a, u, b, c, d, B, C, D);
B.EatPacman(p, g, a, u, a, c, d, A, C, D);
C.EatPacman(p, g, a, u, a, b, d, A, B, D);
D.EatPacman(p, g, a, u, a, c, b, A, C, B);
fruit1.showFruit(g, dot, m, f);
if( g.GetLife() == 0)
{
int GameOverChoice;
do{
u.gotoXY(0,21);
cout << " \n ";
u.gotoXY(0,21);
u.changeColour(FOREGROUND_WHITE);
cout << "Game Over" << endl;
cout << "1: RePlay 2: Quit: ";
cin >> GameOverChoice;
}while(GameOverChoice!=1 && GameOverChoice != 2);
if (GameOverChoice ==2)
{
g.setLoopGameBool(false);
g.setReplayBool(false);
}
else if (GameOverChoice ==1)
{
g.gameReset();
int gameLevelReset = g.getGameLevel();
m.mazeReset(gameLevelReset);
g.setLoopGameBool(false);
}
}
fileIO.SaveGame(m, u, g);
}
m.killArray();
g.setLoopGameBool(true);
std::system ("cls");
if (g.getGameLevel() ==4 || g.getReplayBool() == false || fileIO.getQuitAfterSave()==true)
{
if(g.getGameLevel() ==4)
{
char EnterToStop;
cout << "Your are Win the Game! Thank you :D \nInput Any 'Char' or 'Number', and Press 'Enter' key to Exit" <<endl;
cin >> EnterToStop;
}
break;
}
}
std::system("pause");
return 0;
}
|