2021-04-03 19:14:31 +02:00
|
|
|
#include "application.h"
|
2021-06-07 20:19:58 +02:00
|
|
|
#include "classicgame/classicgame.h"
|
2021-04-03 19:14:31 +02:00
|
|
|
#include <SFML/Graphics/Color.hpp>
|
|
|
|
#include <SFML/Window/Event.hpp>
|
2021-04-04 22:43:12 +02:00
|
|
|
|
|
|
|
const sf::Time TIME_PER_FRAME = sf::seconds(1.f / 60.f);
|
2021-04-03 19:14:31 +02:00
|
|
|
|
|
|
|
Application::Application() :
|
2021-04-05 16:17:57 +02:00
|
|
|
_game_window({1280, 720}, "Test"),
|
2021-06-07 20:19:58 +02:00
|
|
|
_debug(true),
|
|
|
|
_game(std::make_unique<ClassicGame>())
|
2021-04-03 19:14:31 +02:00
|
|
|
{
|
2021-04-08 18:08:01 +02:00
|
|
|
_font.loadFromFile("/usr/share/qtcreator/fonts/SourceCodePro-Regular.ttf");
|
2021-04-05 16:17:57 +02:00
|
|
|
_grade.setFont(_font);
|
|
|
|
_grade.setPosition(160, 160);
|
2021-04-08 21:51:59 +02:00
|
|
|
_grade.setFillColor(sf::Color(255, 0, 0));
|
2021-04-05 16:17:57 +02:00
|
|
|
_grade.setCharacterSize(35);
|
2021-04-08 18:08:01 +02:00
|
|
|
_grade.setString("NOT INIT");
|
2021-04-03 19:14:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::run()
|
|
|
|
{
|
2021-04-05 16:17:57 +02:00
|
|
|
_game_window.display();
|
|
|
|
|
|
|
|
startGameLoop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::startGameLoop()
|
|
|
|
{
|
2021-04-04 22:43:12 +02:00
|
|
|
sf::Clock timer;
|
|
|
|
sf::Time time_since_last_update = sf::Time::Zero;
|
|
|
|
|
2021-04-05 16:17:57 +02:00
|
|
|
while (_game_window.isOpen())
|
|
|
|
{
|
|
|
|
input();
|
2021-04-03 19:14:31 +02:00
|
|
|
|
2021-04-04 22:43:12 +02:00
|
|
|
time_since_last_update += timer.restart();
|
2021-04-15 17:03:35 +02:00
|
|
|
|
|
|
|
bool isOneFramePassed = time_since_last_update >= TIME_PER_FRAME;
|
|
|
|
if (isOneFramePassed)
|
2021-04-04 22:43:12 +02:00
|
|
|
{
|
|
|
|
time_since_last_update -= TIME_PER_FRAME;
|
|
|
|
update();
|
|
|
|
draw();
|
|
|
|
}
|
2021-04-03 19:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-05 16:17:57 +02:00
|
|
|
void Application::input()
|
|
|
|
{
|
|
|
|
sf::Event event;
|
|
|
|
while (_game_window.pollEvent(event))
|
2021-04-03 19:14:31 +02:00
|
|
|
{
|
2021-06-07 20:19:58 +02:00
|
|
|
_game->input(event);
|
2021-04-05 16:17:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::update()
|
|
|
|
{
|
2021-06-08 20:32:36 +02:00
|
|
|
_game->update();
|
2021-04-03 19:14:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::draw()
|
|
|
|
{
|
2021-06-08 20:32:36 +02:00
|
|
|
// _game->draw();
|
2021-04-03 19:14:31 +02:00
|
|
|
}
|