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) {
}
}
+ 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()) {
#define TEST_APP_GAME_H_
#include "Clock.h"
+#include "Message.h"
#include "../cairo/Context.h"
#include "../twitch/IRCMessage.h"
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;
}
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) {
gfx::ColorRGB channel_color;
Clock birth;
+ std::string text;
gfx::Position pos;
gfx::Size size;
gfx::Spacing padding;