Subversion Repositories HelenOS

Rev

Rev 4602 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4602 Rev 4687
1
/*
1
/*
2
 * Copyright (c) 2008 Jiri Svoboda
2
 * Copyright (c) 2008 Jiri Svoboda
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
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>
31
#include <io/console.h>
32
#include <io/color.h>
32
#include <io/color.h>
33
#include <io/style.h>
33
#include <io/style.h>
34
#include <vfs/vfs.h>
34
#include <vfs/vfs.h>
35
#include <async.h>
35
#include <async.h>
36
#include "../tester.h"
36
#include "../tester.h"
37
 
37
 
38
const char *color_name[] = {
38
const char *color_name[] = {
39
    [COLOR_BLACK] = "black",
39
    [COLOR_BLACK] = "black",
40
    [COLOR_BLUE] = "blue",
40
    [COLOR_BLUE] = "blue",
41
    [COLOR_GREEN] = "green",
41
    [COLOR_GREEN] = "green",
42
    [COLOR_CYAN] = "cyan",
42
    [COLOR_CYAN] = "cyan",
43
    [COLOR_RED] = "red",
43
    [COLOR_RED] = "red",
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(void)
49
char *test_console1(void)
50
{
50
{
51
    if (!test_quiet) {
51
    if (!test_quiet) {
52
        printf("Style test: ");
52
        printf("Style test: ");
53
        fflush(stdout);
53
        fflush(stdout);
54
        console_set_style(fphone(stdout), STYLE_NORMAL);
54
        console_set_style(fphone(stdout), STYLE_NORMAL);
55
        printf("normal ");
55
        printf("normal ");
56
        fflush(stdout);
56
        fflush(stdout);
57
        console_set_style(fphone(stdout), STYLE_EMPHASIS);
57
        console_set_style(fphone(stdout), STYLE_EMPHASIS);
58
        printf("emphasized");
58
        printf("emphasized");
59
        fflush(stdout);
59
        fflush(stdout);
60
        console_set_style(fphone(stdout), STYLE_NORMAL);
60
        console_set_style(fphone(stdout), STYLE_NORMAL);
61
        printf(".\n");
61
        printf(".\n");
62
       
62
       
63
        unsigned int i;
63
        unsigned int i;
64
        unsigned int j;
64
        unsigned int j;
65
       
65
       
66
        printf("\nForeground color test:\n");
66
        printf("\nForeground color test:\n");
67
        for (j = 0; j < 2; j++) {
67
        for (j = 0; j < 2; j++) {
68
            for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
68
            for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
69
                fflush(stdout);
69
                fflush(stdout);
70
                console_set_color(fphone(stdout), i, COLOR_WHITE,
70
                console_set_color(fphone(stdout), i, COLOR_WHITE,
71
                    j ? CATTR_BRIGHT : 0);
71
                    j ? CATTR_BRIGHT : 0);
72
                printf(" %s ", color_name[i]);
72
                printf(" %s ", color_name[i]);
73
            }
73
            }
74
            fflush(stdout);
74
            fflush(stdout);
75
            console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
75
            console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
76
            putchar('\n');
76
            putchar('\n');
77
        }
77
        }
78
       
78
       
79
        printf("\nBackground color test:\n");
79
        printf("\nBackground color test:\n");
80
        for (j = 0; j < 2; j++) {
80
        for (j = 0; j < 2; j++) {
81
            for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
81
            for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
82
                fflush(stdout);
82
                fflush(stdout);
83
                console_set_color(fphone(stdout), COLOR_WHITE, i,
83
                console_set_color(fphone(stdout), COLOR_WHITE, i,
84
                    j ? CATTR_BRIGHT : 0);
84
                    j ? CATTR_BRIGHT : 0);
85
                printf(" %s ", color_name[i]);
85
                printf(" %s ", color_name[i]);
86
            }
86
            }
87
            fflush(stdout);
87
            fflush(stdout);
88
            console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
88
            console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
89
            putchar('\n');
89
            putchar('\n');
90
        }
90
        }
91
       
91
       
92
        printf("\nRGB colors test:\n");
92
        printf("\nRGB colors test:\n");
93
       
93
       
94
        for (i = 0; i < 255; i += 16) {
94
        for (i = 0; i < 255; i += 16) {
95
            fflush(stdout);
95
            fflush(stdout);
96
            console_set_rgb_color(fphone(stdout), 0xffffff, i << 16);
96
            console_set_rgb_color(fphone(stdout), 0xffffff, i << 16);
97
            putchar('X');
97
            putchar('X');
98
        }
98
        }
99
        fflush(stdout);
99
        fflush(stdout);
100
        console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
100
        console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
101
        putchar('\n');
101
        putchar('\n');
102
       
102
       
103
        for (i = 0; i < 255; i += 16) {
103
        for (i = 0; i < 255; i += 16) {
104
            fflush(stdout);
104
            fflush(stdout);
105
            console_set_rgb_color(fphone(stdout), 0xffffff, i << 8);
105
            console_set_rgb_color(fphone(stdout), 0xffffff, i << 8);
106
            putchar('X');
106
            putchar('X');
107
        }
107
        }
108
        fflush(stdout);
108
        fflush(stdout);
109
        console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
109
        console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
110
        putchar('\n');
110
        putchar('\n');
111
       
111
       
112
        for (i = 0; i < 255; i += 16) {
112
        for (i = 0; i < 255; i += 16) {
113
            fflush(stdout);
113
            fflush(stdout);
114
            console_set_rgb_color(fphone(stdout), 0xffffff, i);
114
            console_set_rgb_color(fphone(stdout), 0xffffff, i);
115
            putchar('X');
115
            putchar('X');
116
        }
116
        }
117
        fflush(stdout);
117
        fflush(stdout);
118
        console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
118
        console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
119
        putchar('\n');
119
        putchar('\n');
120
    }
120
    }
121
   
121
   
122
    return NULL;
122
    return NULL;
123
}
123
}
124
 
124