-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRollDiceAction.cpp
60 lines (44 loc) · 1.68 KB
/
RollDiceAction.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
#include "RollDiceAction.h"
#include "Grid.h"
#include "Player.h"
#include <time.h> // used to in srand to generate random numbers with different seed
RollDiceAction::RollDiceAction(ApplicationManager* pApp) : Action(pApp)
{
}
void RollDiceAction::ReadActionParameters()
{
// no parameters to read from user
}
void RollDiceAction::Execute()
{
///TODO: Implement this function as mentioned in the guideline steps (numbered below) below
// == Here are some guideline steps (numbered below) to implement this function ==
// 1- Check if the Game is ended (Use the GetEndGame() function of pGrid), if yes, make the appropriate action
Grid* pGrid = pManager->GetGrid();
Input* pIn = pGrid->GetInput();
Output* pOut = pGrid->GetOutput();
bool gameEnded = pGrid->GetEndGame();
// -- If not ended, do the following --:
if (!gameEnded)
{
int x, y;
// 2- Generate a random number from 1 to 6 --> This step is done for you
srand((int)time(NULL)); // time is for different seed each run
int diceNumber = 1 + rand() % 6; // from 1 to 6 --> should change seed
// 3- Get the "current" player from pGrid
Player* currentPlayer = pGrid->GetCurrentPlayer();
if (!currentPlayer->IsPrevented()) {
pOut->PrintMessage("The dice number is " + to_string(diceNumber) + ", Click to continue...");
pIn->GetPointClicked(x, y);
pOut->ClearStatusBar();
}
// 4- Move the currentPlayer using function Move of class player
currentPlayer->Move(pGrid, diceNumber);
// 5- Advance the current player number of pGrid
pGrid->AdvanceCurrentPlayer();
}
// NOTE: the above guidelines are the main ones but not a complete set (You may need to add more steps).
}
RollDiceAction::~RollDiceAction()
{
}