This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/Game.h

69 lines
1.1 KiB
C++

/*
* Game.h
*
* Created on: 05.07.2012
* Author: Felix
*/
#ifndef DG_GAME_H_
#define DG_GAME_H_
#include <string>
#include <SFML/System.hpp>
#include <SFML/Graphics.hpp>
#include <Thor/Resources.hpp>
#include "sprites/TileManager.h"
#include "sprites/Player.h"
#include "World.h"
#include "util/Pathfinder.h"
class Player;
class World;
/*
* Use vertex for tiles.
*/
class Game : private sf::NonCopyable {
// Public functions.
public:
Game(sf::RenderWindow& window);
~Game();
void loop();
// Private functions.
private:
void input();
void render();
void keyDown(const sf::Event& event);
void keyUp(const sf::Event& event);
void mouseDown(const sf::Event& event);
void mouseUp(const sf::Event& event);
void generate();
sf::Vector2<float> convertCoordinates(int x, int y);
// Private variables.
private:
static const int FPS_GOAL;
sf::RenderWindow& mWindow;
sf::Clock mClock;
sf::View mView;
World mWorld;
TileManager mTileManager;
Pathfinder mPathfinder;
std::shared_ptr<Player> mPlayer;
bool mQuit;
bool mPaused;
};
#endif /* DG_GAME_H_ */