terminal.h 903 B

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