summaryrefslogtreecommitdiffstats
path: root/tests/ConsoleColors/ConsoleColors.cpp
diff options
context:
space:
mode:
authorTycho Bickerstaff <work.tycho@gmail.com>2013-12-22 14:19:27 +0100
committerTycho Bickerstaff <work.tycho@gmail.com>2013-12-22 14:19:27 +0100
commit94ca07cfbfe0016d70963c055c87fe14f8622a4d (patch)
tree28dc91dc948287f802d9628a2ea715e1d4e0be49 /tests/ConsoleColors/ConsoleColors.cpp
parentChunk is now warnings clean (diff)
parentUpdate GETTING-STARTED.md (diff)
downloadcuberite-94ca07cfbfe0016d70963c055c87fe14f8622a4d.tar
cuberite-94ca07cfbfe0016d70963c055c87fe14f8622a4d.tar.gz
cuberite-94ca07cfbfe0016d70963c055c87fe14f8622a4d.tar.bz2
cuberite-94ca07cfbfe0016d70963c055c87fe14f8622a4d.tar.lz
cuberite-94ca07cfbfe0016d70963c055c87fe14f8622a4d.tar.xz
cuberite-94ca07cfbfe0016d70963c055c87fe14f8622a4d.tar.zst
cuberite-94ca07cfbfe0016d70963c055c87fe14f8622a4d.zip
Diffstat (limited to 'tests/ConsoleColors/ConsoleColors.cpp')
-rw-r--r--tests/ConsoleColors/ConsoleColors.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/ConsoleColors/ConsoleColors.cpp b/tests/ConsoleColors/ConsoleColors.cpp
new file mode 100644
index 000000000..7efc698b2
--- /dev/null
+++ b/tests/ConsoleColors/ConsoleColors.cpp
@@ -0,0 +1,62 @@
+
+// ConsoleColors.cpp
+
+// Tests the various console color combinations
+
+#include <stdio.h>
+#include <stdlib.h>
+
+
+
+
+
+/// Evaluates to the number of elements in an array (compile-time!)
+#define ARRAYCOUNT(X) (sizeof(X) / sizeof(*(X)))
+
+
+
+
+
+int main(void)
+{
+ static const char * Attribs[] =
+ {
+ "0", // All attribs off
+ "1", // bold
+ "2", // faint
+ "7", // inverse
+ "1;7", // bold inverse
+ "2;7", // faint inverse
+ } ;
+ for (int i = 0; i < ARRAYCOUNT(Attribs); i++)
+ {
+ const char * Attrib = Attribs[i];
+ for (int fg = 30; fg <= 37; fg++)
+ {
+ for (int bg = 40; bg <= 47; bg++)
+ {
+ printf("\x1b[%s;%d;%dm %s;%d;%d ", Attrib, fg, bg, Attrib, fg, bg);
+ } // for bg
+ puts("\x1b[0m"); // Reset terminal back to normal colors for the newline
+ } // for fg
+ } // for i - Attribs[]
+
+ for (int i = 1; i < ARRAYCOUNT(Attribs); i++)
+ {
+ const char * Attrib = Attribs[i];
+ for (int fg = 30; fg <= 37; fg++)
+ {
+ for (int bg = 40; bg <= 47; bg++)
+ {
+ printf("\x1b[%d;%d;%sm %d;%d;%s ", fg, bg, Attrib, fg, bg, Attrib);
+ } // for bg
+ puts("\x1b[0m"); // Reset terminal back to normal colors for the newline
+ } // for fg
+ } // for i - Attribs[]
+
+ return 0;
+}
+
+
+
+