瀏覽代碼

Added icu to images.h Cleaned up images.cpp (DRY)

Steve Thielemann 4 年之前
父節點
當前提交
bbbaa2b560
共有 5 個文件被更改,包括 29 次插入60 次删除
  1. 1 1
      CMakeLists.txt
  2. 1 0
      build_images.sh
  3. 4 0
      icu.ans
  4. 18 59
      images.cpp
  5. 5 0
      show_icu_issue.sh

+ 1 - 1
CMakeLists.txt

@@ -103,6 +103,6 @@ target_link_libraries(images zf_log)
 add_custom_command(
     OUTPUT images.h
     COMMAND ./build_images.sh
-    DEPENDS ansi-to-src ghost.ans ghead.ans wolf.ans panther.ans bat.ans skull.ans skull-blink.ans 
+    DEPENDS ansi-to-src ghost.ans ghead.ans wolf.ans panther.ans bat.ans skull.ans skull-blink.ans icu.ans
     COMMENT "Generating images.h."
 )

+ 1 - 0
build_images.sh

@@ -10,6 +10,7 @@ FINAL=images.h
 ./ansi-to-src wolf.ans >> $BASE
 ./ansi-to-src panther.ans >> $BASE
 ./ansi-to-src bat.ans >> $BASE
+./ansi-to-src icu.ans >> $BASE
 
 mv -f $BASE $FINAL
 

+ 4 - 0
icu.ans

@@ -0,0 +1,4 @@
+  ワワワワ    ワワワワ  
+ ワロロ ロロロワ  ワロロ ロロロワ 
+ ゚ロロロロロロ゚  ゚ロロロロロロ゚ 
+  ゚゚゚゚    ゚゚゚゚  

+ 18 - 59
images.cpp

@@ -34,72 +34,31 @@ char display_line(const char *line) {
   printf("%s\n", output);
 }
 
-int main() {
-  int x;
-  int size = (sizeof(skull) / sizeof(char *));
-
-  for (x = 0; x < size; x++) {
-    display_line(skull[x]);
-  }
-
-  fflush(stdout);
-  getchar();
-  printf("\n\n");
-
-  size = (sizeof(skullblink) / sizeof(char *));
-  for (x = 0; x < size; x++) {
-    display_line(skullblink[x]);
-  }
-
-  fflush(stdout);
-  getchar();
-  printf("\n\n");
-
-  size = (sizeof(ghead) / sizeof(char *));
-  for (x = 0; x < size; x++) {
-    display_line(ghead[x]);
-  }
-
-  fflush(stdout);
-  getchar();
-  printf("\n\n");
-
-  size = (sizeof(ghost) / sizeof(char *));
-  for (x = 0; x < size; x++) {
-    display_line(ghost[x]);
-  }
-
-  fflush(stdout);
-  getchar();
-  printf("\n\n");
-
-  size = (sizeof(wolf) / sizeof(char *));
-  for (x = 0; x < size; x++) {
-    display_line(wolf[x]);
-  }
-
-  fflush(stdout);
-  getchar();
-  printf("\n\n");
-
-  size = (sizeof(panther) / sizeof(char *));
-  for (x = 0; x < size; x++) {
-    display_line(panther[x]);
-  }
+#define SHOW_IMAGE(img)                                                        \
+  size = (sizeof(img) / sizeof(char *));                                       \
+  for (x = 0; x < size; x++)                                                   \
+    display_line(img[x]);                                                      \
+  paws();
 
+void paws(void) {
   fflush(stdout);
   getchar();
   printf("\n\n");
+}
 
-  size = (sizeof(bat) / sizeof(char *));
-  for (x = 0; x < size; x++) {
-    display_line(bat[x]);
-  }
+int main() {
+  int x;
+  int size;
 
-  fflush(stdout);
-  getchar();
-  printf("\n\n");
+  SHOW_IMAGE(skull);
+  SHOW_IMAGE(skullblink);
+  SHOW_IMAGE(icu);
 
+  SHOW_IMAGE(ghead);
+  SHOW_IMAGE(ghost);
+  SHOW_IMAGE(wolf);
+  SHOW_IMAGE(panther);
+  SHOW_IMAGE(bat);
 
   return 0;
 }

+ 5 - 0
show_icu_issue.sh

@@ -0,0 +1,5 @@
+#!/bin/bash
+
+echo ""; ./show icu.ans
+
+