directories needed: * build - for cmake output * deps - stuff needed to compile McRogueface (headers) libtcod -> ../modules/libtcod/src/libtcod sfml -> ../modules/SFML/include/SFML python -> ../modules/cpython/Include * lib - stuff needed to link McRogueFace (shared objects); also required at runtime libtcod -> `../modules/libtcod/buildsys/autotools/.libs/libtcod.so.1.0.24` sfml -> `../modules/SFML/build/lib/*` python -> `../modules/cpython/libpython3.12.so`; standard lib at ../modules/cpython/build/lib.linux-x86_64-3.12 & ../modules/cpython/Lib You can get dependencies by: - Build from source (i.e. all submodules) - Go download them from each project's website - install packages from your distro and symlink them to deps/lib directories
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "Common.h"
|
|
#include "Entity.h"
|
|
#include "EntityManager.h"
|
|
#include "Scene.h"
|
|
#include "McRFPy_API.h"
|
|
#include "IndexTexture.h"
|
|
|
|
class GameEngine
|
|
{
|
|
sf::RenderWindow window;
|
|
sf::Font font;
|
|
std::string scene;
|
|
std::map<std::string, Scene*> scenes;
|
|
bool running = true;
|
|
bool paused = false;
|
|
int currentFrame = 0;
|
|
sf::View visible;
|
|
sf::Clock clock;
|
|
float frameTime;
|
|
std::string window_title;
|
|
|
|
public:
|
|
GameEngine();
|
|
Scene* currentScene();
|
|
void changeScene(std::string);
|
|
void quit();
|
|
void setPause(bool);
|
|
sf::Font & getFont();
|
|
sf::RenderWindow & getWindow();
|
|
void run();
|
|
void sUserInput();
|
|
int getFrame() { return currentFrame; }
|
|
float getFrameTime() { return frameTime; }
|
|
sf::View getView() { return visible; }
|
|
|
|
// global textures for scripts to access
|
|
std::vector<IndexTexture> textures;
|
|
|
|
// global audio storage
|
|
std::vector<sf::SoundBuffer> sfxbuffers;
|
|
sf::Music music;
|
|
sf::Sound sfx;
|
|
std::shared_ptr<std::vector<std::shared_ptr<UIDrawable>>> scene_ui(std::string scene);
|
|
|
|
};
|