Rev 4487 | Rev 4541 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3746 | svoboda | 1 | /* |
2 | * Copyright (c) 2008 Jiri Svoboda |
||
3 | * All rights reserved. |
||
4 | * |
||
5 | * Redistribution and use in source and binary forms, with or without |
||
6 | * modification, are permitted provided that the following conditions |
||
7 | * are met: |
||
8 | * |
||
9 | * - Redistributions of source code must retain the above copyright |
||
10 | * notice, this list of conditions and the following disclaimer. |
||
11 | * - Redistributions in binary form must reproduce the above copyright |
||
12 | * notice, this list of conditions and the following disclaimer in the |
||
13 | * documentation and/or other materials provided with the distribution. |
||
14 | * - The name of the author may not be used to endorse or promote products |
||
15 | * derived from this software without specific prior written permission. |
||
16 | * |
||
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
27 | */ |
||
28 | |||
29 | #include <stdio.h> |
||
30 | #include <stdlib.h> |
||
4487 | decky | 31 | #include <io/console.h> |
32 | #include <io/color.h> |
||
33 | #include <io/style.h> |
||
4496 | decky | 34 | #include <vfs/vfs.h> |
3746 | svoboda | 35 | #include <async.h> |
36 | #include "../tester.h" |
||
37 | |||
3767 | svoboda | 38 | const char *color_name[] = { |
39 | [COLOR_BLACK] = "black", |
||
40 | [COLOR_BLUE] = "blue", |
||
41 | [COLOR_GREEN] = "green", |
||
42 | [COLOR_CYAN] = "cyan", |
||
43 | [COLOR_RED] = "red", |
||
44 | [COLOR_MAGENTA] = "magenta", |
||
45 | [COLOR_YELLOW] = "yellow", |
||
46 | [COLOR_WHITE] = "white" |
||
47 | }; |
||
3746 | svoboda | 48 | |
49 | char * test_console1(bool quiet) |
||
50 | { |
||
3767 | svoboda | 51 | int i, j; |
3746 | svoboda | 52 | |
3767 | svoboda | 53 | printf("Style test: "); |
4487 | decky | 54 | console_set_style(fphone(stdout), STYLE_NORMAL); |
3767 | svoboda | 55 | printf("normal "); |
4487 | decky | 56 | console_set_style(fphone(stdout), STYLE_EMPHASIS); |
3767 | svoboda | 57 | printf("emphasized"); |
4487 | decky | 58 | console_set_style(fphone(stdout), STYLE_NORMAL); |
3767 | svoboda | 59 | printf(".\n"); |
60 | |||
61 | printf("Foreground color test:\n"); |
||
62 | for (j = 0; j < 2; j++) { |
||
63 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
||
4487 | decky | 64 | console_set_color(fphone(stdout), i, COLOR_WHITE, |
3767 | svoboda | 65 | j ? CATTR_BRIGHT : 0); |
66 | printf(" %s ", color_name[i]); |
||
67 | } |
||
4487 | decky | 68 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
3767 | svoboda | 69 | putchar('\n'); |
70 | } |
||
71 | |||
72 | printf("Background color test:\n"); |
||
73 | for (j = 0; j < 2; j++) { |
||
74 | for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) { |
||
4487 | decky | 75 | console_set_color(fphone(stdout), COLOR_WHITE, i, |
3767 | svoboda | 76 | j ? CATTR_BRIGHT : 0); |
77 | printf(" %s ", color_name[i]); |
||
78 | } |
||
4487 | decky | 79 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
3767 | svoboda | 80 | putchar('\n'); |
81 | } |
||
82 | |||
83 | printf("Now let's test RGB colors:\n"); |
||
84 | |||
85 | for (i = 0; i < 255; i += 16) { |
||
4487 | decky | 86 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 16); |
3767 | svoboda | 87 | putchar('X'); |
88 | } |
||
4487 | decky | 89 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
3767 | svoboda | 90 | putchar('\n'); |
91 | |||
92 | for (i = 0; i < 255; i += 16) { |
||
4487 | decky | 93 | console_set_rgb_color(fphone(stdout), 0xffffff, i << 8); |
3767 | svoboda | 94 | putchar('X'); |
95 | } |
||
4487 | decky | 96 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
3767 | svoboda | 97 | putchar('\n'); |
98 | |||
99 | for (i = 0; i < 255; i += 16) { |
||
4487 | decky | 100 | console_set_rgb_color(fphone(stdout), 0xffffff, i); |
3767 | svoboda | 101 | putchar('X'); |
102 | } |
||
4487 | decky | 103 | console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0); |
3767 | svoboda | 104 | putchar('\n'); |
105 | |||
3746 | svoboda | 106 | printf("[press a key]\n"); |
107 | getchar(); |
||
108 | |||
109 | return NULL; |
||
110 | } |