summaryrefslogtreecommitdiffhomepage
path: root/GameScreen.cpp
blob: f813a605db192d36e94beaaa557191c249beaa45 (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
#include "GameScreen.h"

#include <memory>
#include <utility>

#include <raylib.h>

#include "Stage.h"


GameScreen::GameScreen(std::unique_ptr<Stage> stage) :
    m_stage {std::move(stage)},
    m_stats {std::make_shared<Stats>()}
{
    m_stage->m_stats = m_stats;
}


void
GameScreen::update(const float dt)
{
    m_stage->update(dt);
}


void
GameScreen::draw()
{
    m_stage->draw();
    DrawText(TextFormat("%d", m_stats->total_bullets), 5, 25, 20, DARKGRAY);
    DrawText(TextFormat("%d", m_stats->lifes), 5, 45, 20, DARKGREEN);
    DrawText(TextFormat("%d", m_stats->points), 5, 65, 20, GOLD);
    DrawFPS(5, 5);
}