aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
blob: b4677a9bff2acd7d9cfd672fc02c7bfbf4afd292 (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
#include <engine.hpp>

#include <config.hpp>
#include <world.hpp>
#include <ui.hpp>
#include <inventory.hpp>
#include <entities.hpp>
#include <window.hpp>

extern World *currentWorld;

Engine::Engine(void)
    : gameRunning(true), systems(game::entities, game::events)
{
}

void Engine::init(void) {
    game::config::read();
    game::events.subscribe<GameEndEvent>(*this);

    systems.add<WindowSystem>();
    systems.add<InputSystem>();
    systems.add<InventorySystem>();
    systems.add<WorldSystem>();
    systems.add<PlayerSystem>(&player);

    systems.configure();
}

void Engine::render(entityx::TimeDelta dt)
{
    systems.update<WindowSystem>(dt);
}

void Engine::update(entityx::TimeDelta dt)
{
    systems.update<InputSystem>(dt);
    systems.update<InventorySystem>(dt);
    systems.update<PlayerSystem>(dt);

    currentWorld->update(player, dt);
    currentWorld->detect(player);
}


namespace game {
	entityx::EventManager events;
	entityx::EntityManager entities (events);

    Engine engine;
}