X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fui%2FHUD.hpp;h=32a167b865d2979209f763a1e12341280f3b2f28;hb=3542823a1af7f5063d7cc8da84efa248eb889b8a;hp=4b60127e685d7eb45462a9b3453b4c43a3251a44;hpb=5d2da8a07411ad6417d6ed8d1be997189cf5ce89;p=blank.git diff --git a/src/ui/HUD.hpp b/src/ui/HUD.hpp index 4b60127..32a167b 100644 --- a/src/ui/HUD.hpp +++ b/src/ui/HUD.hpp @@ -1,10 +1,10 @@ #ifndef BLANK_UI_HUD_H_ #define BLANK_UI_HUD_H_ -#include "../graphics/Texture.hpp" -#include "../model/Model.hpp" -#include "../model/OutlineModel.hpp" -#include "../model/SpriteModel.hpp" +#include "FixedText.hpp" +#include "MessageBox.hpp" +#include "../graphics/EntityMesh.hpp" +#include "../graphics/OutlineMesh.hpp" #include @@ -13,37 +13,76 @@ namespace blank { class Block; class BlockTypeRegistry; +class Config; +class Environment; class Font; +class Player; class Viewport; class HUD { public: - HUD(const BlockTypeRegistry &, const Font &); + explicit HUD(Environment &, Config &, const Player &); HUD(const HUD &) = delete; HUD &operator =(const HUD &) = delete; - void Display(const Block &); + // focus + void FocusBlock(const Chunk &, int); + void FocusEntity(const Entity &); + void FocusNone(); - void Render(Viewport &) noexcept; + // "inventory" + void DisplayNone(); + void Display(const BlockType &); -private: - const BlockTypeRegistry &types; - const Font &font; + // debug overlay + void UpdateDebug(); + void UpdateCounter(); + void UpdatePosition(); + void UpdateOrientation(); - Model block; - Model::Buffer block_buf; - glm::mat4 block_transform; + // message box + void PostMessage(const char *); + void PostMessage(const std::string &msg) { + PostMessage(msg.c_str()); + } - Texture block_label; - SpriteModel label_sprite; - glm::mat4 label_transform; - SDL_Color label_color; + void Update(int dt); + void Render(Viewport &) noexcept; +private: + Environment &env; + Config &config; + const Player &player; + + // block focus + OutlineMesh outline; + glm::mat4 outline_transform; + bool outline_visible; + + // "inventory" + EntityMesh block; + EntityMesh::Buffer block_buf; + glm::mat4 block_transform; + FixedText block_label; bool block_visible; - OutlineModel crosshair; + // debug overlay + FixedText counter_text; + FixedText position_text; + FixedText orientation_text; + FixedText block_text; + FixedText entity_text; + bool show_block; + bool show_entity; + + // message box + MessageBox messages; + IntervalTimer msg_timer; + + // crosshair + OutlineMesh crosshair; };