render.h 768 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef RENDER_H
  2. #define RENDER_H
  3. #include <string>
  4. struct render {
  5. int speed;
  6. int effect;
  7. };
  8. void reset_render(void);
  9. int ms_sleep(unsigned int ms);
  10. void render_sleep(void);
  11. void write_color(int fd, int color);
  12. void send_goto(int fd, int x, int y);
  13. /*
  14. int send_file(int fd, char *filename);
  15. int send_file(int fd, int x, int y, char *filename);
  16. */
  17. const char *process_trigger(int fd, const char *cp);
  18. void process_trigger(int fd, std::string str, size_t &pos);
  19. void render_effect(int fd, char ch);
  20. /*
  21. void render(int fd, const char *string_out, int len);
  22. */
  23. void render(int fd, std::string &string_out);
  24. void render_image(const char **lines, int size);
  25. #define TRIGGER "^"
  26. // Max limit we'll sleep before ignoring effects/speed.
  27. #define SLEEP_LIMIT 30
  28. #endif