forked from tiltedphoques/TiltedEvolution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorld.h
53 lines (40 loc) · 1.92 KB
/
World.h
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
#pragma once
#include <Services/RunnerService.h>
#include <Services/TransportService.h>
#include <Services/PartyService.h>
#include <Services/CharacterService.h>
#include <Services/OverlayService.h>
#include <Services/CharacterService.h>
#include <Services/DebugService.h>
#include <Systems/ModSystem.h>
#include <Structs/ServerSettings.h>
struct World : entt::registry
{
World();
~World();
void Update() noexcept;
RunnerService& GetRunner() noexcept;
TransportService& GetTransport() noexcept;
ModSystem& GetModSystem() noexcept;
PartyService& GetPartyService() noexcept { return ctx().at<PartyService>(); }
const PartyService& GetPartyService() const noexcept { return ctx().at<const PartyService>(); }
CharacterService& GetCharacterService() noexcept { return ctx().at<CharacterService>(); }
const CharacterService& GetCharacterService() const noexcept { return ctx().at<const CharacterService>(); }
OverlayService& GetOverlayService() noexcept { return ctx().at<OverlayService>(); }
const OverlayService& GetOverlayService() const noexcept { return ctx().at<const OverlayService>(); }
DebugService& GetDebugService() noexcept { return ctx().at<DebugService>(); }
const DebugService& GetDebugService() const noexcept { return ctx().at<const DebugService>(); }
auto& GetDispatcher() noexcept { return m_dispatcher; }
const ServerSettings& GetServerSettings() const noexcept { return m_serverSettings; }
void SetServerSettings(ServerSettings aServerSettings) noexcept { m_serverSettings = aServerSettings; }
[[nodiscard]] uint64_t GetTick() const noexcept;
static void Create() noexcept;
[[nodiscard]] static World& Get() noexcept;
private:
entt::dispatcher m_dispatcher;
RunnerService m_runner;
TransportService m_transport;
ModSystem m_modSystem;
ServerSettings m_serverSettings{};
std::chrono::high_resolution_clock::time_point m_lastFrameTime;
};