-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.cpp
73 lines (68 loc) · 1.34 KB
/
Game.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
#include "Game.hpp"
#include "raylib.h"
#include "Snake.hpp"
Game::Game()
{
InitAudioDevice();
eatSound = LoadSound("Sounds/eat.mp3");
wallSound = LoadSound("Sounds/wall.mp3");
}
void Game::Draw()
{
food.Draw();
snake.Draw();
}
void Game::Update()
{
if (running)
{
snake.Update();
CheckCollisionWithFood();
CheckCollisionWithEdges();
CheckCollisionWithTail();
}
}
void Game::CheckCollisionWithFood()
{
if (Vector2Equals(snake.body[0], food.position))
{
food.position = food.GenerateRandomPos(snake.body);
PlaySound(eatSound);
snake.addSegment = true;
score++;
}
}
void Game::CheckCollisionWithEdges()
{
if (snake.body[0].x == cellCount || snake.body[0].x == -1)
{
GameOver();
}
if (snake.body[0].y == cellCount || snake.body[0].y == -1)
{
GameOver();
}
}
void Game::CheckCollisionWithTail()
{
std::deque<Vector2> headlessBody = snake.body;
headlessBody.pop_front();
if (ElementInDeque(snake.body[0], headlessBody))
{
GameOver();
}
}
void Game::GameOver()
{
PlaySound(wallSound);
snake.Reset();
food.position = food.GenerateRandomPos(snake.body);
running = false;
score = 0;
}
Game::~Game()
{
UnloadSound(eatSound);
UnloadSound(wallSound);
CloseAudioDevice();
}