terminal.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef TERMINAL_H
  2. #define TERMINAL_H
  3. #include <string>
  4. #include <vector>
  5. class Terminal {
  6. private:
  7. int posx, posy;
  8. std::vector<std::pair<int, int>> saved_cursor_position;
  9. std::string ansi;
  10. int in_ansi;
  11. int fgcolor, bgcolor, status;
  12. enum ANSI_TYPE { START, CURSOR, COLOR, CLEAR, OTHER };
  13. struct termchar {
  14. int in_ansi;
  15. ANSI_TYPE ansi;
  16. };
  17. public:
  18. Terminal(void);
  19. void init(void);
  20. std::string color_restore(void);
  21. termchar putchar(char ch);
  22. void putstring(std::string text);
  23. private:
  24. void ansi_color(int color);
  25. ANSI_TYPE ansi_code(std::string ansi);
  26. };
  27. struct console_details {
  28. int posx, posy;
  29. int savedx, savedy;
  30. char ansi[20]; // current ANSI command being processed.
  31. int in_ansi;
  32. int fgcolor; // 0-7 // not 0-15
  33. int bgcolor; // 0-7
  34. int status; // 0, 1 or 5 (Blink)
  35. };
  36. enum ANSI_TYPE { START, CURSOR, COLOR, CLEAR, OTHER };
  37. struct termchar {
  38. int in_ansi;
  39. ANSI_TYPE ansi; // undefined if in_ansi is false
  40. };
  41. void console_init(struct console_details *cdp);
  42. void ansi_color(struct console_details *cdp, int color);
  43. const char *color_restore(struct console_details *cdp);
  44. ANSI_TYPE console_ansi(struct console_details *cdp, const char *ansi);
  45. termchar console_char(struct console_details *cdp, char ch);
  46. void console_receive(struct console_details *cdp, std::string chars);
  47. #endif