terminal.h 991 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef TERMINAL_H
  2. #define TERMINAL_H
  3. #include <string>
  4. // TODO: add class. :P
  5. struct console_details {
  6. int posx, posy;
  7. int savedx, savedy;
  8. char ansi[20]; // current ANSI command being processed.
  9. int in_ansi;
  10. int fgcolor; // 0-7 // not 0-15
  11. int bgcolor; // 0-7
  12. int status; // 0, 1 or 5 (Blink)
  13. };
  14. enum ANSI_TYPE {
  15. START,
  16. CURSOR,
  17. COLOR,
  18. CLEAR,
  19. OTHER
  20. };
  21. struct termchar {
  22. int in_ansi;
  23. ANSI_TYPE ansi; // undefined if in_ansi is false
  24. };
  25. void console_init(struct console_details *cdp);
  26. void ansi_color(struct console_details *cdp, int color);
  27. const char *color_restore(struct console_details *cdp);
  28. ANSI_TYPE console_ansi(struct console_details *cdp, const char *ansi);
  29. termchar console_char(struct console_details *cdp, char ch);
  30. void console_string(struct console_details *cdp, const char *chars);
  31. void console_receive(struct console_details *cdp, const char *chars, int len);
  32. void console_string(struct console_details *cdp, std::string chars);
  33. #endif