blob: c842b599333d9cce38e0c68e64d9dbd994f20083 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef ENGINE_HPP_
#define ENGINE_HPP_
#include <entityx/entityx.h>
#include "entityx/deps/Dependencies.h"
#include <texture.hpp>
#include <components.hpp>
#include <events.hpp>
//game::engine::Systems->add<entityx::deps::Dependency<Visible, Sprite>>();
class Engine : public entityx::Receiver<Engine> {
public:
bool shouldRun;
entityx::SystemManager systems;
explicit Engine(void);
void init(void);
void render(entityx::TimeDelta dt);
void update(entityx::TimeDelta dt);
template<typename T>
inline T* getSystem(void) {
return dynamic_cast<T*>(systems.system<T>().get());
}
/*void configure(entityx::EventManager &ev) {
(void)ev;
}*/
inline void receive(const GameEndEvent &gee) {
shouldRun = !(gee.really);
}
};
namespace game {
extern entityx::EventManager events;
extern entityx::EntityManager entities;
extern Engine engine;
inline void endGame(void) {
events.emit<GameEndEvent>();
}
extern SpriteLoader sprite_l;
}
#endif // ENGINE_HPP_
|