12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #ifndef RENDER_H
- #define RENDER_H
- #include "terminal.h"
- #include <string>
- #include <vector>
- class Render {
- private:
- int speed;
- int effect;
- int fd;
- int overlimit;
- Terminal &term;
- std::vector<std::string> color_history;
- const char **image_data;
- int image_size;
- public:
- Render(int fd, Terminal &term);
- void reset(void);
- void sleep(void);
- int ms_sleep(unsigned int ms);
- void color(int color);
- void pos_goto(int x, int y);
- void send(char ch);
- void send(std::string &string_out);
-
- void set_image(const char **lines, int size);
- void reset_image(void);
- private:
- void process_trigger(std::string str, size_t &pos);
- int digit(std::string str, size_t &pos, int digits = 1);
- int send_image(int x, int y);
- int send_image(void);
- };
- struct render {
- int speed;
- int effect;
- };
- void reset_render(void);
- int ms_sleep(unsigned int ms);
- void render_sleep(void);
- void write_color(int fd, int color);
- void send_goto(int fd, int x, int y);
- const char *process_trigger(int fd, const char *cp);
- void process_trigger(int fd, std::string str, size_t &pos);
- void render_effect(int fd, char ch);
- void render(int fd, std::string &string_out);
- void render_image(const char **lines, int size);
- #define TRIGGER "\x16"
- #define SLEEP_LIMIT 30
- #endif
|