You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.1 KiB

9 years ago
#pragma once
#include <SFML/Graphics.hpp>
#include "Map.h"
#include "Explorer.h"
class App {
public:
// Constants
static const int WINDOW_HEIGHT = 766;
static const int WINDOW_WIDTH = 1596;
const double PI = 3.141592653589793238462643383279;
App();
~App();
// Start the app
void Run();
private:
Map map;
sf::Uint8* _pixelArray;
sf::Sprite pixel_array_sprite;
sf::Texture pixel_array_texture;
9 years ago
9 years ago
Explorer* explorer;
// Art assets
sf::Texture* background_texture;
sf::Sprite backgroundSprite;
void Init();
void Input();
void Update(double step_size);
void Render();
// The main render window, probably should think about supporting multiple of these
sf::RenderWindow* window;
// The events for the event handler
sf::Event event;
// Loop management data, black magic, need to redo
float time();
// Size of the physics steps to take
float step_size = 0.005f;
double current_time = 0.0;
double frame_time = 0.0;
double instant_fps = 0.0;
double accumulator_time = 0.0;
int render_frame_count = 0;
double render_fps = 0;
int physics_frame_count = 0;
double physics_fps = 0;
double elapsed_time = 0;
double delta_time = 0;
};