]> git.sesse.net Git - ccbs/blobdiff - bigscreen/fonts.cpp
Add a better framework for showing what's changed.
[ccbs] / bigscreen / fonts.cpp
index a2ac91b5a91c121cca23e7a8b79f947c65ea617c..2a7d2742ce6a663fcf8a7f9c3cdf1a4f9ab5d55e 100644 (file)
@@ -88,3 +88,31 @@ unsigned my_draw_text(const widestring &str, unsigned char *buf, double size, in
 
        return x;
 }
+
+void my_draw_text_deferred(std::vector<TextDefer> &td, const widestring &str, double size, int xpos, int ypos)
+{
+       TextDefer newtd;
+       newtd.str = str;
+       newtd.size = size;
+       newtd.xpos = xpos;
+       newtd.ypos = ypos;
+       td.push_back(newtd);
+}
+
+void draw_all_deferred_text(unsigned char *buf, std::vector<TextDefer> &current, std::vector<TextDefer> &old)
+{
+       for (unsigned i = 0; i < current.size(); ++i) {
+               int r, g, b;
+               if (i < old.size() && current[i].str != old[i].str) {
+                       // changed text
+                       r = 255;
+                       g = 0;
+                       b = 0;
+               } else {
+                       r = g = b = 255;
+               }       
+               
+               my_draw_text(current[i].str, buf, current[i].size, current[i].xpos, current[i].ypos, r, g, b);
+       }
+}
+