-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameState.cpp
47 lines (36 loc) · 931 Bytes
/
GameState.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
#include "GameState.h"
#include "Modules/Boid/BoidsSystem.h"
#include "Modules/Boid/BoidSystemEvents.h"
//#include <Logging/Logger.h>
GameState::GameState(unsigned int duration) : duration(duration) {
timer.Start();
numberOfDeadBoids = 0;
}
GameState::~GameState() {}
void GameState::Handle(ProcessEventArg arg) {
}
void GameState::Handle(BoidSystemEventArg arg) {
if (arg.boidEvent == BOID_DIED) numberOfDeadBoids++;
}
/** returns time in seconds */
unsigned int GameState::GetTime() {
return timer.GetElapsedIntervals(1000000);
}
/** returns time left in seconds */
unsigned int GameState::GetTimeLeft() {
if(duration<=GetTime()) return 0;
return duration -GetTime();
}
unsigned int GameState::GetScore() {
return numberOfDeadBoids;
}
void GameState::Pause() {
timer.Stop();
}
void GameState::Unpause() {
timer.Start();
}
void GameState::Reset() {
timer.Reset();
numberOfDeadBoids = 0;
}