From: Daniel Karbach Date: Sun, 3 Nov 2024 12:40:32 +0000 (+0100) Subject: also source drawing game from messages X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=24fd551a11f1e4d3567496c41a85361b42f41bfd;p=ffmpeg-test.git also source drawing game from messages --- diff --git a/src/app/Application.h b/src/app/Application.h index 79f0e55..f41c62e 100644 --- a/src/app/Application.h +++ b/src/app/Application.h @@ -192,6 +192,9 @@ private: msg.SetChannel(channel); msg.SetBirth(stream.GetVideoClock().Snapshot()); msg.Update(renderer.GetContext()); + if (state.HasGame()) { + state.GetGame().Handle(msg); + } } void HandleTwitch(const twitch::IRCMessage &msg) { diff --git a/src/app/DrawingGame.h b/src/app/DrawingGame.h index 080ee61..1256a4e 100644 --- a/src/app/DrawingGame.h +++ b/src/app/DrawingGame.h @@ -39,6 +39,13 @@ public: } } + virtual void Handle(const Message &msg) { + std::string text = msg.GetText(); + if (!text.empty()) { + QueueCommands(text); + } + } + virtual void Update(cairo::Context &ctx, const Clock &now) { int amount = draw_timer.ActivationsBetween(last_update, now); while (amount > 0 && !command_queue.empty()) { diff --git a/src/app/Game.h b/src/app/Game.h index c8512e1..51ddb6c 100644 --- a/src/app/Game.h +++ b/src/app/Game.h @@ -2,6 +2,7 @@ #define TEST_APP_GAME_H_ #include "Clock.h" +#include "Message.h" #include "../cairo/Context.h" #include "../twitch/IRCMessage.h" @@ -16,6 +17,8 @@ public: public: virtual void Handle(const twitch::IRCMessage &) = 0; + virtual void Handle(const Message &) = 0; + virtual void Update(cairo::Context &, const Clock &) = 0; virtual void Render(cairo::Context &) const = 0; diff --git a/src/app/Message.h b/src/app/Message.h index 96e5276..fea852a 100644 --- a/src/app/Message.h +++ b/src/app/Message.h @@ -55,7 +55,12 @@ public: } void SetText(const std::string &t) { - text_layout.SetText(t); + text = t; + text_layout.SetText(text); + } + + const std::string &GetText() const { + return text; } void SetChannel(const std::string &c) { @@ -105,6 +110,7 @@ private: gfx::ColorRGB channel_color; Clock birth; + std::string text; gfx::Position pos; gfx::Size size; gfx::Spacing padding;