1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
/*
* Copyright (C) 2013 Michael Brown <mbrown@fensystems.co.uk>.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdio.h>
#include <errno.h>
#include <ipxe/ansiesc.h>
#include <ipxe/ansicol.h>
#include <config/colour.h>
/** @file
*
* ANSI colour definitions
*
*/
/**
* Construct ANSI colour definition
*
* @v basic Basic colour
* @v rgb 24-bit RGB value (or ANSICOL_NO_RGB)
* @ret ansicol ANSI colour definition
*/
#define ANSICOL_DEFINE( basic, rgb ) ( ( (basic) << 28 ) | (rgb) )
/**
* Extract basic colour from ANSI colour definition
*
* @v ansicol ANSI colour definition
* @ret basic Basic colour
*/
#define ANSICOL_BASIC( ansicol ) ( (ansicol) >> 28 )
/**
* Extract 24-bit RGB value from ANSI colour definition
*
* @v ansicol ANSI colour definition
* @ret rgb 24-bit RGB value
*/
#define ANSICOL_RGB( ansicol ) ( ( (ansicol) >> 0 ) & 0xffffffUL )
/**
* Extract 24-bit RGB value red component from ANSI colour definition
*
* @v ansicol ANSI colour definition
* @ret red Red component
*/
#define ANSICOL_RED( ansicol ) ( ( (ansicol) >> 16 ) & 0xff )
/**
* Extract 24-bit RGB value green component from ANSI colour definition
*
* @v ansicol ANSI colour definition
* @ret green Green component
*/
#define ANSICOL_GREEN( ansicol ) ( ( (ansicol) >> 8 ) & 0xff )
/**
* Extract 24-bit RGB value blue component from ANSI colour definition
*
* @v ansicol ANSI colour definition
* @ret blue Blue component
*/
#define ANSICOL_BLUE( ansicol ) ( ( (ansicol) >> 0 ) & 0xff )
/**
* Construct default ANSI colour definition
*
* @v basic Basic colour
* @ret ansicol ANSI colour definition
*
* Colours default to being just a basic colour.
*/
#define ANSICOL_DEFAULT( basic ) ANSICOL_DEFINE ( (basic), ANSICOL_NO_RGB )
/** ANSI colour definitions */
static uint32_t ansicols[] = {
[COLOR_BLACK] = ANSICOL_DEFAULT ( COLOR_BLACK ),
[COLOR_RED] = ANSICOL_DEFAULT ( COLOR_RED ),
[COLOR_GREEN] = ANSICOL_DEFAULT ( COLOR_GREEN ),
[COLOR_YELLOW] = ANSICOL_DEFAULT ( COLOR_YELLOW ),
[COLOR_BLUE] = ANSICOL_DEFAULT ( COLOR_BLUE ),
[COLOR_MAGENTA] = ANSICOL_DEFAULT ( COLOR_MAGENTA ),
[COLOR_CYAN] = ANSICOL_DEFAULT ( COLOR_CYAN ),
[COLOR_WHITE] = ANSICOL_DEFAULT ( COLOR_WHITE ),
};
/**
* Define ANSI colour
*
* @v colour Colour index
* @v basic Basic colour
* @v rgb 24-bit RGB value (or ANSICOL_NO_RGB)
* @ret rc Return status code
*/
int ansicol_define ( unsigned int colour, unsigned int basic, uint32_t rgb ) {
uint32_t ansicol;
/* Fail if colour index is out of range */
if ( colour >= ( sizeof ( ansicols ) / sizeof ( ansicols[0] ) ) )
return -EINVAL;
/* Update colour definition */
ansicol = ANSICOL_DEFINE ( basic, rgb );
ansicols[colour] = ansicol;
DBGC ( &ansicols[0], "ANSICOL redefined colour %d as basic %d RGB "
"%#06lx%s\n", colour, ANSICOL_BASIC ( ansicol ),
ANSICOL_RGB ( ansicol ),
( ( ansicol & ANSICOL_NO_RGB ) ? " [norgb]" : "" ) );
return 0;
}
/**
* Set ANSI colour (using colour definitions)
*
* @v colour Colour index
* @v which Foreground/background selector
*/
void ansicol_set ( unsigned int colour, unsigned int which ) {
uint32_t ansicol;
unsigned int basic;
/* Use default colour if colour index is out of range */
if ( colour < ( sizeof ( ansicols ) / sizeof ( ansicols[0] ) ) ) {
ansicol = ansicols[colour];
} else {
ansicol = ANSICOL_DEFINE ( COLOUR_DEFAULT, ANSICOL_NO_RGB );
}
/* If basic colour is out of range, use the default colour */
basic = ANSICOL_BASIC ( ansicol );
if ( basic >= 10 )
basic = COLOR_DEFAULT;
/* Set basic colour first */
printf ( CSI "%c%dm", which, basic );
/* Set 24-bit RGB colour, if applicable */
if ( ! ( ansicol & ANSICOL_NO_RGB ) ) {
printf ( CSI "%c8;2;%d;%d;%dm", which, ANSICOL_RED ( ansicol ),
ANSICOL_GREEN ( ansicol ), ANSICOL_BLUE ( ansicol ) );
}
}
|