terminal.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. int getx(void);
  24. int gety(void);
  25. int getstatus(void);
  26. int inANSI(void);
  27. int fg(void);
  28. int bg(void);
  29. bool ansiempty(void);
  30. private:
  31. void ansi_color(int color);
  32. ANSI_TYPE ansi_code(std::string ansi);
  33. };
  34. struct console_details {
  35. int posx, posy;
  36. int savedx, savedy;
  37. char ansi[20]; // current ANSI command being processed.
  38. int in_ansi;
  39. int fgcolor; // 0-7 // not 0-15
  40. int bgcolor; // 0-7
  41. int status; // 0, 1 or 5 (Blink)
  42. };
  43. enum ANSI_TYPE { START, CURSOR, COLOR, CLEAR, OTHER };
  44. struct termchar {
  45. int in_ansi;
  46. ANSI_TYPE ansi; // undefined if in_ansi is false
  47. };
  48. void console_init(struct console_details *cdp);
  49. void ansi_color(struct console_details *cdp, int color);
  50. const char *color_restore(struct console_details *cdp);
  51. ANSI_TYPE console_ansi(struct console_details *cdp, const char *ansi);
  52. termchar console_char(struct console_details *cdp, char ch);
  53. void console_receive(struct console_details *cdp, std::string chars);
  54. #endif