images.cpp 944 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include "images.h"
  4. #include "utils.h"
  5. static IConv converter("UTF-8", "CP437");
  6. void display_line(const char *line) {
  7. char input[1024];
  8. char output[1024];
  9. int len;
  10. strcpy(input, line);
  11. converter.convert(input, output, sizeof(output));
  12. printf("%s\n", output);
  13. }
  14. #define SHOW_IMAGE(img) \
  15. size = (sizeof(img) / sizeof(char *)); \
  16. for (x = 0; x < size; x++) \
  17. display_line(img[x]); \
  18. paws();
  19. void paws(void) {
  20. fflush(stdout);
  21. getchar();
  22. printf("\n\n");
  23. }
  24. int main() {
  25. int x;
  26. int size;
  27. SHOW_IMAGE(skull);
  28. SHOW_IMAGE(skullblink);
  29. SHOW_IMAGE(icu);
  30. SHOW_IMAGE(ghead);
  31. SHOW_IMAGE(ghost);
  32. SHOW_IMAGE(wolf);
  33. SHOW_IMAGE(panther);
  34. SHOW_IMAGE(bat);
  35. return 0;
  36. }