]> git.localhorst.tv Git - blank.git/blob - src/client/InteractiveState.hpp
ac8f87b054bf4bf98fc382b5924f1ec57a33b8f8
[blank.git] / src / client / InteractiveState.hpp
1 #ifndef BLANK_CLIENT_INTERACTIVESTATE_HPP_
2 #define BLANK_CLIENT_INTERACTIVESTATE_HPP_
3
4 #include "../app/State.hpp"
5 #include "../ui/ClientController.hpp"
6
7 #include "ChunkReceiver.hpp"
8 #include "NetworkedInput.hpp"
9 #include "../app/IntervalTimer.hpp"
10 #include "../audio/SoundBank.hpp"
11 #include "../graphics/SkyBox.hpp"
12 #include "../io/WorldSave.hpp"
13 #include "../net/Packet.hpp"
14 #include "../shared/ChatState.hpp"
15 #include "../shared/WorldResources.hpp"
16 #include "../ui/HUD.hpp"
17 #include "../ui/InteractiveManipulator.hpp"
18 #include "../ui/Interface.hpp"
19 #include "../world/ChunkRenderer.hpp"
20 #include "../world/EntityState.hpp"
21 #include "../world/Player.hpp"
22 #include "../world/World.hpp"
23
24
25 namespace blank {
26
27 class Environment;
28
29 namespace client {
30
31 class MasterState;
32
33 class InteractiveState
34 : public State
35 , public ClientController
36 , public ChatState::Responder {
37
38 public:
39         explicit InteractiveState(MasterState &, std::uint32_t player_id);
40
41         World &GetWorld() noexcept { return world; }
42         Player &GetPlayer() noexcept { return player; }
43         PlayerController &GetPlayerController() noexcept { return input; }
44         ChunkReceiver &GetChunkReceiver() noexcept { return chunk_receiver; }
45
46         void OnResume() override;
47         void OnPause() override;
48
49         void OnFocus() override;
50         void OnBlur() override;
51
52         void Handle(const SDL_Event &) override;
53         void Update(int dt) override;
54         void Render(Viewport &) override;
55
56         void Handle(const Packet::SpawnEntity &);
57         void Handle(const Packet::DespawnEntity &);
58         void Handle(const Packet::EntityUpdate &);
59         void Handle(const Packet::PlayerCorrection &);
60         void Handle(const Packet::BlockUpdate &);
61         void Handle(const Packet::Message &);
62
63         void SetAudio(bool) override;
64         void SetVideo(bool) override;
65         void SetHUD(bool) override;
66         void SetDebug(bool) override;
67         void Exit() override;
68
69         void OnLineSubmit(const std::string &) override;
70
71 private:
72         /// flag entity as updated by given packet
73         /// returns false if the update should be ignored
74         bool UpdateEntity(std::uint32_t id, std::uint16_t seq);
75         /// drop update information or given entity
76         void ClearEntity(std::uint32_t id);
77
78 private:
79         MasterState &master;
80         WorldResources res;
81         SoundBank sounds;
82         WorldSave save;
83         World world;
84         Player &player;
85         HUD hud;
86         InteractiveManipulator manip;
87         NetworkedInput input;
88         Interface interface;
89         ChunkReceiver chunk_receiver;
90         ChunkRenderer chunk_renderer;
91         CoarseTimer loop_timer;
92         CoarseTimer stat_timer;
93
94         SkyBox sky;
95
96         struct UpdateStatus {
97                 std::uint16_t last_packet;
98                 int last_update;
99         };
100         std::map<std::uint32_t, UpdateStatus> update_status;
101
102         ChatState chat;
103
104         int time_skipped;
105         unsigned int packets_skipped;
106
107 };
108
109 }
110 }
111
112 #endif