Rev 4541 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4541 | Rev 4602 | ||
|---|---|---|---|
| Line 44... | Line 44... | ||
| 44 | [COLOR_MAGENTA] = "magenta", |
44 | [COLOR_MAGENTA] = "magenta", |
| 45 | [COLOR_YELLOW] = "yellow", |
45 | [COLOR_YELLOW] = "yellow", |
| 46 | [COLOR_WHITE] = "white" |
46 | [COLOR_WHITE] = "white" |
| 47 | }; |
47 | }; |
| 48 | 48 | ||
| 49 | char * test_console1(bool quiet) |
49 | char *test_console1(void) |
| 50 | { |
50 | { |
| 51 | int i, j; |
51 | if (!test_quiet) { |
| 52 | - | ||
| 53 | printf("Style test: "); |
52 | printf("Style test: "); |
| 54 | fflush(stdout); |
53 | fflush(stdout); |
| 55 | console_set_style(fphone(stdout), STYLE_NORMAL); |
54 | console_set_style(fphone(stdout), STYLE_NORMAL); |
| 56 | printf("normal "); |
55 | printf("normal "); |
| 57 | fflush(stdout); |
56 | fflush(stdout); |
| 58 | console_set_style(fphone(stdout), STYLE_EMPHASIS); |
57 | console_set_style(fphone(stdout), STYLE_EMPHASIS); |
| 59 | printf("emphasized"); |
58 | printf("emphasized"); |
| 60 | fflush(stdout); |
59 | fflush(stdout); |
| 61 | console_set_style(fphone(stdout), STYLE_NORMAL); |
60 | console_set_style(fphone(stdout), STYLE_NORMAL); |
| 62 | printf(".\n"); |
61 | printf(".\n"); |
| - | 62 | ||
| - | 63 | unsigned int i; |
|
| - | 64 | unsigned int j; |
|
| 63 | 65 | ||
| 64 | printf("Foreground color test:\n"); |
66 | printf("\nForeground color test:\n"); |
| - | 67 | for (j = 0; j < 2; j++) { |
|
| - | 68 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
|
| - | 69 | fflush(stdout); |
|
| - | 70 | console_set_color(fphone(stdout), i, COLOR_WHITE, |
|
| - | 71 | j ? CATTR_BRIGHT : 0); |
|
| - | 72 | printf(" %s ", color_name[i]); |
|
| - | 73 | } |
|
| - | 74 | fflush(stdout); |
|
| - | 75 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
|
| - | 76 | putchar('\n'); |
|
| - | 77 | } |
|
| - | 78 | ||
| - | 79 | printf("\nBackground color test:\n"); |
|
| 65 | for (j = 0; j < 2; j++) { |
80 | for (j = 0; j < 2; j++) { |
| 66 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
81 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
| - | 82 | fflush(stdout); |
|
| - | 83 | console_set_color(fphone(stdout), COLOR_WHITE, i, |
|
| - | 84 | j ? CATTR_BRIGHT : 0); |
|
| - | 85 | printf(" %s ", color_name[i]); |
|
| - | 86 | } |
|
| 67 | fflush(stdout); |
87 | fflush(stdout); |
| 68 | console_set_color(fphone(stdout), i, COLOR_WHITE, |
88 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
| 69 | j ? CATTR_BRIGHT : 0); |
89 | putchar('\n'); |
| - | 90 | } |
|
| - | 91 | ||
| 70 | printf(" %s ", color_name[i]); |
92 | printf("\nRGB colors test:\n"); |
| - | 93 | ||
| - | 94 | for (i = 0; i < 255; i += 16) { |
|
| - | 95 | fflush(stdout); |
|
| - | 96 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 16); |
|
| - | 97 | putchar('X'); |
|
| 71 | } |
98 | } |
| 72 | fflush(stdout); |
99 | fflush(stdout); |
| 73 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
100 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
| 74 | putchar('\n'); |
101 | putchar('\n'); |
| 75 | } |
102 | |
| 76 | - | ||
| 77 | printf("Background color test:\n"); |
- | |
| 78 | for (j = 0; j < 2; j++) { |
103 | for (i = 0; i < 255; i += 16) { |
| 79 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
- | |
| 80 | fflush(stdout); |
104 | fflush(stdout); |
| 81 | console_set_color(fphone(stdout), COLOR_WHITE, i, |
105 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 8); |
| 82 | j ? CATTR_BRIGHT : 0); |
- | |
| 83 | printf(" %s ", color_name[i]); |
106 | putchar('X'); |
| 84 | } |
107 | } |
| 85 | fflush(stdout); |
108 | fflush(stdout); |
| 86 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
109 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
| 87 | putchar('\n'); |
110 | putchar('\n'); |
| 88 | } |
111 | |
| 89 | - | ||
| 90 | printf("Now let's test RGB colors:\n"); |
- | |
| 91 | - | ||
| 92 | for (i = 0; i < 255; i += 16) { |
112 | for (i = 0; i < 255; i += 16) { |
| 93 | fflush(stdout); |
- | |
| 94 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 16); |
- | |
| 95 | putchar('X'); |
- | |
| 96 | } |
- | |
| 97 | fflush(stdout); |
- | |
| 98 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
- | |
| 99 | putchar('\n'); |
- | |
| 100 | - | ||
| 101 | for (i = 0; i < 255; i += 16) { |
- | |
| 102 | fflush(stdout); |
113 | fflush(stdout); |
| 103 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 8); |
114 | console_set_rgb_color(fphone(stdout), 0xffffff, i); |
| 104 | putchar('X'); |
115 | putchar('X'); |
| 105 | } |
116 | } |
| 106 | fflush(stdout); |
- | |
| 107 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
- | |
| 108 | putchar('\n'); |
- | |
| 109 | - | ||
| 110 | for (i = 0; i < 255; i += 16) { |
- | |
| 111 | fflush(stdout); |
117 | fflush(stdout); |
| 112 | console_set_rgb_color(fphone(stdout), 0xffffff, i); |
118 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
| 113 | putchar('X'); |
119 | putchar('\n'); |
| 114 | } |
120 | } |
| 115 | fflush(stdout); |
- | |
| 116 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
- | |
| 117 | putchar('\n'); |
- | |
| 118 | 121 | ||
| 119 | printf("[press a key]\n"); |
- | |
| 120 | getchar(); |
- | |
| 121 | - | ||
| 122 | return NULL; |
122 | return NULL; |
| 123 | } |
123 | } |