]> git.localhorst.tv Git - blank.git/blobdiff - src/ui/HUD.hpp
try to cleanly destruct world
[blank.git] / src / ui / HUD.hpp
index cab8f93e0bf13c26cccb69a6a3a4d48b6ac28fa9..b842da392d892340d9d6413cc45c76d85f531865 100644 (file)
@@ -14,6 +14,7 @@ namespace blank {
 class Block;
 class BlockTypeRegistry;
 class Config;
+class CongestionControl;
 class Environment;
 class Font;
 class Player;
@@ -42,11 +43,16 @@ public:
        void UpdatePosition();
        void UpdateOrientation();
 
+       // net stats
+       void UpdateNetStats(const CongestionControl &);
+
        // message box
        void PostMessage(const char *);
        void PostMessage(const std::string &msg) {
                PostMessage(msg.c_str());
        }
+       // whether to always render message box regardless of last post
+       void KeepMessages(bool k) { msg_keep = k; }
 
        void Update(int dt);
        void Render(Viewport &) noexcept;
@@ -77,9 +83,16 @@ private:
        bool show_block;
        bool show_entity;
 
+       // net stats
+       FixedText bandwidth_text;
+       FixedText rtt_text;
+       FixedText packet_loss_text;
+       bool show_net;
+
        // message box
        MessageBox messages;
-       IntervalTimer msg_timer;
+       CoarseTimer msg_timer;
+       bool msg_keep;
 
        // crosshair
        PrimitiveMesh crosshair;