blob: 260ddde0abc0a89ac17a08e416d17a27fc0acd15 (
plain)
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
|
#include "gameplay.hpp"
#include <iostream>
Game::~Game()
{
delete enemies;
delete player;
}
Game::Game(void)
{
nEnemies = GetRandomValue(5, 15);
enemies = new std::vector<Entity>(nEnemies);
player = new Entity;
}
void Game::start() const
{
std::cout << "----- Gameplay: Start -----" << std::endl;
std::cout << "Gameplay: " << nEnemies << "enemies need to be spawned" << std::endl;
}
void Game::draw() const
{
for (auto & en : *enemies)
{
DrawCircleV((Vector2){en.posX, en.posY}, 10, RED);
}
}
void Game::tick() const
{
for (auto & en : *enemies)
{
if (en.posX >= SCREENWIDTH || en.posX <= 0)
{
en.direction.x = -en.direction.x;
}
if (en.posY >= SCREENHEIGHT || en.posY <= 0)
{
en.direction.y = -en.direction.y;
}
en.posX += en.direction.x;
en.posY += en.direction.y;
}
}
void Game::getKeys() const
{
}
|