sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "BMCONV.H"
|
sl@0
|
17 |
#include "RGB.H"
|
sl@0
|
18 |
|
sl@0
|
19 |
extern TRgb* color256Palette;
|
sl@0
|
20 |
extern char* color256InversePalette;
|
sl@0
|
21 |
|
sl@0
|
22 |
TRgb* color256Palette = NULL;
|
sl@0
|
23 |
char* color256InversePalette = NULL;
|
sl@0
|
24 |
|
sl@0
|
25 |
TRgb::TRgb()
|
sl@0
|
26 |
: iRed(255),iGreen(255),iBlue(255),iSpare(0)
|
sl@0
|
27 |
/** Constructs default TRgb with all 3 colour components set to 255. */
|
sl@0
|
28 |
{}
|
sl@0
|
29 |
|
sl@0
|
30 |
TRgb::TRgb(long unsigned int val)
|
sl@0
|
31 |
: iRed((unsigned char)(val&0xff)),iGreen((unsigned char)((val>>8)&0xff)),iBlue((unsigned char)((val>>16)&0xff)),iSpare(0)
|
sl@0
|
32 |
{}
|
sl@0
|
33 |
|
sl@0
|
34 |
TRgb::TRgb(int r,int g,int b)
|
sl@0
|
35 |
: iRed((unsigned char)r),iGreen((unsigned char)g),iBlue((unsigned char)b),iSpare(0)
|
sl@0
|
36 |
/** Constructs a TRgb from its three component colours.
|
sl@0
|
37 |
|
sl@0
|
38 |
Each colour has a value between 0 and 255.
|
sl@0
|
39 |
|
sl@0
|
40 |
@param aRed Red component of the colour (0 - 255).
|
sl@0
|
41 |
@param aGreen Green component of the colour (0 - 255).
|
sl@0
|
42 |
@param aBlue Blue component of the colour (0 - 255). */
|
sl@0
|
43 |
{}
|
sl@0
|
44 |
|
sl@0
|
45 |
TRgb &TRgb::operator=(const TRgb &col)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
iRed=col.iRed;
|
sl@0
|
48 |
iGreen=col.iGreen;
|
sl@0
|
49 |
iBlue=col.iBlue;
|
sl@0
|
50 |
return(*this);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
int TRgb::operator==(const TRgb &col)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
return(iRed==col.iRed && iGreen==col.iGreen && iBlue==col.iBlue);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
int TRgb::Difference(const TRgb& col) const
|
sl@0
|
59 |
{
|
sl@0
|
60 |
return abs(iRed-col.iRed) + abs(iGreen-col.iGreen) + abs(iBlue-col.iBlue);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
int TRgb::Gray2() const
|
sl@0
|
64 |
/** Gets a 2 level grayscale value from this TRgb.
|
sl@0
|
65 |
|
sl@0
|
66 |
@return Equivalent 2 level grayscale value. The greyscale value is 0 or 1,
|
sl@0
|
67 |
and is calculated using c=(2*r+5*g+b)/1024. Note that the return value is
|
sl@0
|
68 |
rounded down to the nearest integer. */
|
sl@0
|
69 |
{
|
sl@0
|
70 |
return Gray256() / 128;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
int TRgb::Gray4() const
|
sl@0
|
74 |
/** Gets a 4 level grayscale value from this TRgb.
|
sl@0
|
75 |
|
sl@0
|
76 |
@return Equivalent 4 level grayscale value. The greyscale value is calculated
|
sl@0
|
77 |
using c=(2*r+5*g+b)/512. Note that the return value is rounded down to the
|
sl@0
|
78 |
nearest integer. */
|
sl@0
|
79 |
{
|
sl@0
|
80 |
return Gray256() / 64;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
int TRgb::Gray16() const
|
sl@0
|
84 |
/** Gets a 16 level grayscale value from this TRgb.
|
sl@0
|
85 |
|
sl@0
|
86 |
@return The greyscale value is calculated using c=(2*r+5*g+b)/128. Note that
|
sl@0
|
87 |
the return value is rounded down to the nearest integer. */
|
sl@0
|
88 |
{
|
sl@0
|
89 |
return Gray256() / 16;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
int TRgb::Gray256() const
|
sl@0
|
93 |
/** Gets a 256 level grayscale value from this TRgb.
|
sl@0
|
94 |
|
sl@0
|
95 |
@return The greyscale value is calculated using c=(2*r+5*g+b)/8. Note that
|
sl@0
|
96 |
the return value is rounded down to the nearest integer. */
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return((2*iRed+5*iGreen+iBlue)/8);
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
int TRgb::Color16() const
|
sl@0
|
102 |
/** Gets a 4 bit index into a colour palette from this TRgb.
|
sl@0
|
103 |
|
sl@0
|
104 |
@return The EGA low colour constant closest to the TRgb. */
|
sl@0
|
105 |
{
|
sl@0
|
106 |
int index = (iRed >> 5) & 0x007;
|
sl@0
|
107 |
index |= (iGreen >> 2) & 0x038;
|
sl@0
|
108 |
index |= (iBlue << 1) & 0x1c0;
|
sl@0
|
109 |
return color16inverse[index];
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
int TRgb::Color256() const
|
sl@0
|
113 |
/** Gets an 8 bit index into a colour palette from this TRgb.
|
sl@0
|
114 |
|
sl@0
|
115 |
@return An 8 bit index. */
|
sl@0
|
116 |
{
|
sl@0
|
117 |
int index = (iRed >> 4) & 0x00f;
|
sl@0
|
118 |
index |= iGreen & 0x0f0;
|
sl@0
|
119 |
index |= (iBlue << 4) & 0xf00;
|
sl@0
|
120 |
|
sl@0
|
121 |
if (color256InversePalette)
|
sl@0
|
122 |
return color256InversePalette[index];
|
sl@0
|
123 |
else
|
sl@0
|
124 |
return color256inverse[index];
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
int TRgb::Color4K() const
|
sl@0
|
128 |
/** Gets a 12 bit index into a colour palette from this TRgb.
|
sl@0
|
129 |
|
sl@0
|
130 |
@return A 12 bit index. */
|
sl@0
|
131 |
{
|
sl@0
|
132 |
return(((iRed&0xf0)<<4)|(iGreen&0xf0)|((iBlue&0xf0)>>4));
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
int TRgb::Color64K() const
|
sl@0
|
136 |
/** Gets a 24 bit index into a colour palette from this TRgb.
|
sl@0
|
137 |
|
sl@0
|
138 |
@return A 24 bit index. */
|
sl@0
|
139 |
{
|
sl@0
|
140 |
return(((iRed&0xf8)<<8)|((iGreen&0xfc)<<3)|((iBlue&0xf8)>>3));
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
long int TRgb::Color16M() const
|
sl@0
|
144 |
/** Gets a 16 bit index into a colour palette from this TRgb.
|
sl@0
|
145 |
|
sl@0
|
146 |
@return A 16 bit index. */
|
sl@0
|
147 |
{
|
sl@0
|
148 |
return((iRed<<16)|(iGreen<<8)|iBlue);
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
TRgb TRgb::Gray2(int aGray2)
|
sl@0
|
152 |
/** Gets TRgb from 2 level grayscale.
|
sl@0
|
153 |
|
sl@0
|
154 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
155 |
and blue values are set to an appropriate level.
|
sl@0
|
156 |
|
sl@0
|
157 |
@param aGray2 Grayscale value to be converted.
|
sl@0
|
158 |
@return Equivalent 24 bit colour. Gray2 has only 2 levels (black and white), -
|
sl@0
|
159 |
the function returns r=g=b=0 or r=g=b=255. */
|
sl@0
|
160 |
{
|
sl@0
|
161 |
aGray2 *= 255;
|
sl@0
|
162 |
return TRgb(aGray2,aGray2,aGray2);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
TRgb TRgb::Gray4(int aGray4)
|
sl@0
|
166 |
/** Gets TRgb from 4 level grayscale.
|
sl@0
|
167 |
|
sl@0
|
168 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
169 |
and blue values are set to an appropriate level.
|
sl@0
|
170 |
|
sl@0
|
171 |
@param aGray4 Grayscale value to be converted.
|
sl@0
|
172 |
@return Equivalent 24 bit colour. Gray4 has 4 levels- the function returns
|
sl@0
|
173 |
r=g=b=85*c, where c=0,1,2, or 3. */
|
sl@0
|
174 |
{
|
sl@0
|
175 |
aGray4 *= 85;
|
sl@0
|
176 |
return TRgb(aGray4,aGray4,aGray4);
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
TRgb TRgb::Gray16(int aGray16)
|
sl@0
|
180 |
/** Gets TRgb from 16 level grayscale.
|
sl@0
|
181 |
|
sl@0
|
182 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
183 |
and blue values are set to an appropriate level.
|
sl@0
|
184 |
|
sl@0
|
185 |
@param aGray16 Grayscale value to be converted.
|
sl@0
|
186 |
@return Equivalent 24 bit colour. Gray16 has 16 levels- the function returns
|
sl@0
|
187 |
r=g=b=17*c, where c=0, 1, ... 15. */
|
sl@0
|
188 |
{
|
sl@0
|
189 |
aGray16 *= 17;
|
sl@0
|
190 |
return TRgb(aGray16,aGray16,aGray16);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
TRgb TRgb::Gray256(int aGray256)
|
sl@0
|
194 |
/** Gets TRgb from 256 level grayscale.
|
sl@0
|
195 |
|
sl@0
|
196 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
197 |
and blue values are set to an appropriate level.
|
sl@0
|
198 |
|
sl@0
|
199 |
@param aGray256 Grayscale value to be converted.
|
sl@0
|
200 |
@return Equivalent 24 bit colour. Gray256 has 256 levels- the function
|
sl@0
|
201 |
returns r=g=b=c, where c=0, 1, ... 255. */
|
sl@0
|
202 |
{
|
sl@0
|
203 |
return TRgb(aGray256,aGray256,aGray256);
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
TRgb TRgb::Color16(int aColor16)
|
sl@0
|
207 |
/** Gets TRgb from 4 bit colour index.
|
sl@0
|
208 |
|
sl@0
|
209 |
The function takes a 4 bit index into a colour palette and returns a TRgb
|
sl@0
|
210 |
whose red, green and blue values are set to an appropriate level.
|
sl@0
|
211 |
|
sl@0
|
212 |
@param aColor16 4 bit index into a colour palette
|
sl@0
|
213 |
@return Equivalent 24 bit colour. */
|
sl@0
|
214 |
{
|
sl@0
|
215 |
return TRgb(color16array[aColor16&0xf]);
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
TRgb TRgb::Color256(int aColor256)
|
sl@0
|
219 |
/** Gets TRgb from 8 bit colour index.
|
sl@0
|
220 |
|
sl@0
|
221 |
The function takes an 8 bit index into a colour palette and returns a TRgb
|
sl@0
|
222 |
whose red, green and blue values are set to an appropriate level.
|
sl@0
|
223 |
|
sl@0
|
224 |
@param aColor256 8 bit index into a colour palette.
|
sl@0
|
225 |
@return Equivalent 24 bit colour. */
|
sl@0
|
226 |
{
|
sl@0
|
227 |
if (color256Palette)
|
sl@0
|
228 |
return color256Palette[aColor256&0xff];
|
sl@0
|
229 |
else
|
sl@0
|
230 |
return TRgb(color256array[aColor256&0xff]);
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
TRgb TRgb::Color4K(int aColor4K)
|
sl@0
|
234 |
{
|
sl@0
|
235 |
return TRgb(((aColor4K>>8)&0xf)*17,((aColor4K>>4)&0xf)*17,(aColor4K&0xf)*17);
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
TRgb TRgb::Color64K(int aColor64K)
|
sl@0
|
239 |
/** Gets TRgb from 64K colour index.
|
sl@0
|
240 |
|
sl@0
|
241 |
The function takes a 16 bit index into a colour palette and returns a TRgb
|
sl@0
|
242 |
whose red, green and blue values are set to an appropriate level.
|
sl@0
|
243 |
|
sl@0
|
244 |
@param aColor64K 16 bit index into a colour palette
|
sl@0
|
245 |
@return Equivalent 24 bit colour. */
|
sl@0
|
246 |
{
|
sl@0
|
247 |
return TRgb(((aColor64K>>11)&0x1f)*255/31,((aColor64K>>5)&0x3f)*255/63,(aColor64K&0x1f)*255/31);
|
sl@0
|
248 |
}
|
sl@0
|
249 |
|
sl@0
|
250 |
TRgb TRgb::Color16M(long int aColor16M)
|
sl@0
|
251 |
/** Gets TRgb from 16M colour index.
|
sl@0
|
252 |
|
sl@0
|
253 |
The function takes a 24 bit index into a colour palette and returns the TRgb
|
sl@0
|
254 |
whose red, green and blue values represent it exactly.
|
sl@0
|
255 |
|
sl@0
|
256 |
@param aColor16M 24 bit index into a colour palette
|
sl@0
|
257 |
@return The TRgb which represents the index exactly. */
|
sl@0
|
258 |
{
|
sl@0
|
259 |
return TRgb(((aColor16M>>16)&0xff),(aColor16M>>8)&0xff,aColor16M&0xff);
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|