Rev 4055 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4055 | Rev 4537 | ||
---|---|---|---|
Line 26... | Line 26... | ||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | #include <stdio.h> |
29 | #include <stdio.h> |
30 | #include <stdlib.h> |
30 | #include <stdlib.h> |
- | 31 | #include <io/console.h> |
|
- | 32 | #include <io/color.h> |
|
31 | #include <io/stream.h> |
33 | #include <io/style.h> |
- | 34 | #include <vfs/vfs.h> |
|
32 | #include <async.h> |
35 | #include <async.h> |
33 | #include "../tester.h" |
36 | #include "../tester.h" |
34 | 37 | ||
35 | #include <console.h> |
- | |
36 | - | ||
37 | const char *color_name[] = { |
38 | const char *color_name[] = { |
38 | [COLOR_BLACK] = "black", |
39 | [COLOR_BLACK] = "black", |
39 | [COLOR_BLUE] = "blue", |
40 | [COLOR_BLUE] = "blue", |
40 | [COLOR_GREEN] = "green", |
41 | [COLOR_GREEN] = "green", |
41 | [COLOR_CYAN] = "cyan", |
42 | [COLOR_CYAN] = "cyan", |
Line 48... | Line 49... | ||
48 | char * test_console1(bool quiet) |
49 | char * test_console1(bool quiet) |
49 | { |
50 | { |
50 | int i, j; |
51 | int i, j; |
51 | 52 | ||
52 | printf("Style test: "); |
53 | printf("Style test: "); |
53 | console_set_style(STYLE_NORMAL); |
54 | console_set_style(fphone(stdout), STYLE_NORMAL); |
54 | printf("normal "); |
55 | printf("normal "); |
55 | console_set_style(STYLE_EMPHASIS); |
56 | console_set_style(fphone(stdout), STYLE_EMPHASIS); |
56 | printf("emphasized"); |
57 | printf("emphasized"); |
57 | console_set_style(STYLE_NORMAL); |
58 | console_set_style(fphone(stdout), STYLE_NORMAL); |
58 | printf(".\n"); |
59 | printf(".\n"); |
59 | 60 | ||
60 | printf("Foreground color test:\n"); |
61 | printf("Foreground color test:\n"); |
61 | for (j = 0; j < 2; j++) { |
62 | for (j = 0; j < 2; j++) { |
62 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
63 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
63 | console_set_color(i, COLOR_WHITE, |
64 | console_set_color(fphone(stdout), i, COLOR_WHITE, |
64 | j ? CATTR_BRIGHT : 0); |
65 | j ? CATTR_BRIGHT : 0); |
65 | printf(" %s ", color_name[i]); |
66 | printf(" %s ", color_name[i]); |
66 | } |
67 | } |
67 | console_set_color(COLOR_BLACK, COLOR_WHITE, 0); |
68 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
68 | putchar('\n'); |
69 | putchar('\n'); |
69 | } |
70 | } |
70 | 71 | ||
71 | printf("Background color test:\n"); |
72 | printf("Background color test:\n"); |
72 | for (j = 0; j < 2; j++) { |
73 | for (j = 0; j < 2; j++) { |
73 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
74 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
74 | console_set_color(COLOR_WHITE, i, |
75 | console_set_color(fphone(stdout), COLOR_WHITE, i, |
75 | j ? CATTR_BRIGHT : 0); |
76 | j ? CATTR_BRIGHT : 0); |
76 | printf(" %s ", color_name[i]); |
77 | printf(" %s ", color_name[i]); |
77 | } |
78 | } |
78 | console_set_color(COLOR_BLACK, COLOR_WHITE, 0); |
79 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
79 | putchar('\n'); |
80 | putchar('\n'); |
80 | } |
81 | } |
81 | 82 | ||
82 | printf("Now let's test RGB colors:\n"); |
83 | printf("Now let's test RGB colors:\n"); |
83 | 84 | ||
84 | for (i = 0; i < 255; i += 16) { |
85 | for (i = 0; i < 255; i += 16) { |
85 | console_set_rgb_color(0xffffff, i << 16); |
86 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 16); |
86 | putchar('X'); |
87 | putchar('X'); |
87 | } |
88 | } |
88 | console_set_color(COLOR_BLACK, COLOR_WHITE, 0); |
89 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
89 | putchar('\n'); |
90 | putchar('\n'); |
90 | 91 | ||
91 | for (i = 0; i < 255; i += 16) { |
92 | for (i = 0; i < 255; i += 16) { |
92 | console_set_rgb_color(0xffffff, i << 8); |
93 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 8); |
93 | putchar('X'); |
94 | putchar('X'); |
94 | } |
95 | } |
95 | console_set_color(COLOR_BLACK, COLOR_WHITE, 0); |
96 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
96 | putchar('\n'); |
97 | putchar('\n'); |
97 | 98 | ||
98 | for (i = 0; i < 255; i += 16) { |
99 | for (i = 0; i < 255; i += 16) { |
99 | console_set_rgb_color(0xffffff, i); |
100 | console_set_rgb_color(fphone(stdout), 0xffffff, i); |
100 | putchar('X'); |
101 | putchar('X'); |
101 | } |
102 | } |
102 | console_set_color(COLOR_BLACK, COLOR_WHITE, 0); |
103 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
103 | putchar('\n'); |
104 | putchar('\n'); |
104 | 105 | ||
105 | printf("[press a key]\n"); |
106 | printf("[press a key]\n"); |
106 | getchar(); |
107 | getchar(); |
107 | 108 |