1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/graphicstools/gdi_tools/bmconv/RGB.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,261 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "BMCONV.H"
1.20 +#include "RGB.H"
1.21 +
1.22 +extern TRgb* color256Palette;
1.23 +extern char* color256InversePalette;
1.24 +
1.25 +TRgb* color256Palette = NULL;
1.26 +char* color256InversePalette = NULL;
1.27 +
1.28 +TRgb::TRgb()
1.29 + : iRed(255),iGreen(255),iBlue(255),iSpare(0)
1.30 +/** Constructs default TRgb with all 3 colour components set to 255. */
1.31 + {}
1.32 +
1.33 +TRgb::TRgb(long unsigned int val)
1.34 + : iRed((unsigned char)(val&0xff)),iGreen((unsigned char)((val>>8)&0xff)),iBlue((unsigned char)((val>>16)&0xff)),iSpare(0)
1.35 + {}
1.36 +
1.37 +TRgb::TRgb(int r,int g,int b)
1.38 + : iRed((unsigned char)r),iGreen((unsigned char)g),iBlue((unsigned char)b),iSpare(0)
1.39 +/** Constructs a TRgb from its three component colours.
1.40 +
1.41 +Each colour has a value between 0 and 255.
1.42 +
1.43 +@param aRed Red component of the colour (0 - 255).
1.44 +@param aGreen Green component of the colour (0 - 255).
1.45 +@param aBlue Blue component of the colour (0 - 255). */
1.46 + {}
1.47 +
1.48 +TRgb &TRgb::operator=(const TRgb &col)
1.49 + {
1.50 + iRed=col.iRed;
1.51 + iGreen=col.iGreen;
1.52 + iBlue=col.iBlue;
1.53 + return(*this);
1.54 + }
1.55 +
1.56 +int TRgb::operator==(const TRgb &col)
1.57 + {
1.58 + return(iRed==col.iRed && iGreen==col.iGreen && iBlue==col.iBlue);
1.59 + }
1.60 +
1.61 +int TRgb::Difference(const TRgb& col) const
1.62 + {
1.63 + return abs(iRed-col.iRed) + abs(iGreen-col.iGreen) + abs(iBlue-col.iBlue);
1.64 + }
1.65 +
1.66 +int TRgb::Gray2() const
1.67 +/** Gets a 2 level grayscale value from this TRgb.
1.68 +
1.69 +@return Equivalent 2 level grayscale value. The greyscale value is 0 or 1,
1.70 +and is calculated using c=(2*r+5*g+b)/1024. Note that the return value is
1.71 +rounded down to the nearest integer. */
1.72 + {
1.73 + return Gray256() / 128;
1.74 + }
1.75 +
1.76 +int TRgb::Gray4() const
1.77 +/** Gets a 4 level grayscale value from this TRgb.
1.78 +
1.79 +@return Equivalent 4 level grayscale value. The greyscale value is calculated
1.80 +using c=(2*r+5*g+b)/512. Note that the return value is rounded down to the
1.81 +nearest integer. */
1.82 + {
1.83 + return Gray256() / 64;
1.84 + }
1.85 +
1.86 +int TRgb::Gray16() const
1.87 +/** Gets a 16 level grayscale value from this TRgb.
1.88 +
1.89 +@return The greyscale value is calculated using c=(2*r+5*g+b)/128. Note that
1.90 +the return value is rounded down to the nearest integer. */
1.91 + {
1.92 + return Gray256() / 16;
1.93 + }
1.94 +
1.95 +int TRgb::Gray256() const
1.96 +/** Gets a 256 level grayscale value from this TRgb.
1.97 +
1.98 +@return The greyscale value is calculated using c=(2*r+5*g+b)/8. Note that
1.99 +the return value is rounded down to the nearest integer. */
1.100 + {
1.101 + return((2*iRed+5*iGreen+iBlue)/8);
1.102 + }
1.103 +
1.104 +int TRgb::Color16() const
1.105 +/** Gets a 4 bit index into a colour palette from this TRgb.
1.106 +
1.107 +@return The EGA low colour constant closest to the TRgb. */
1.108 + {
1.109 + int index = (iRed >> 5) & 0x007;
1.110 + index |= (iGreen >> 2) & 0x038;
1.111 + index |= (iBlue << 1) & 0x1c0;
1.112 + return color16inverse[index];
1.113 + }
1.114 +
1.115 +int TRgb::Color256() const
1.116 +/** Gets an 8 bit index into a colour palette from this TRgb.
1.117 +
1.118 +@return An 8 bit index. */
1.119 + {
1.120 + int index = (iRed >> 4) & 0x00f;
1.121 + index |= iGreen & 0x0f0;
1.122 + index |= (iBlue << 4) & 0xf00;
1.123 +
1.124 + if (color256InversePalette)
1.125 + return color256InversePalette[index];
1.126 + else
1.127 + return color256inverse[index];
1.128 + }
1.129 +
1.130 +int TRgb::Color4K() const
1.131 +/** Gets a 12 bit index into a colour palette from this TRgb.
1.132 +
1.133 +@return A 12 bit index. */
1.134 + {
1.135 + return(((iRed&0xf0)<<4)|(iGreen&0xf0)|((iBlue&0xf0)>>4));
1.136 + }
1.137 +
1.138 +int TRgb::Color64K() const
1.139 +/** Gets a 24 bit index into a colour palette from this TRgb.
1.140 +
1.141 +@return A 24 bit index. */
1.142 + {
1.143 + return(((iRed&0xf8)<<8)|((iGreen&0xfc)<<3)|((iBlue&0xf8)>>3));
1.144 + }
1.145 +
1.146 +long int TRgb::Color16M() const
1.147 +/** Gets a 16 bit index into a colour palette from this TRgb.
1.148 +
1.149 +@return A 16 bit index. */
1.150 + {
1.151 + return((iRed<<16)|(iGreen<<8)|iBlue);
1.152 + }
1.153 +
1.154 +TRgb TRgb::Gray2(int aGray2)
1.155 +/** Gets TRgb from 2 level grayscale.
1.156 +
1.157 +The function takes a grayscale argument and return a TRgb whose red, green
1.158 +and blue values are set to an appropriate level.
1.159 +
1.160 +@param aGray2 Grayscale value to be converted.
1.161 +@return Equivalent 24 bit colour. Gray2 has only 2 levels (black and white), -
1.162 +the function returns r=g=b=0 or r=g=b=255. */
1.163 + {
1.164 + aGray2 *= 255;
1.165 + return TRgb(aGray2,aGray2,aGray2);
1.166 + }
1.167 +
1.168 +TRgb TRgb::Gray4(int aGray4)
1.169 +/** Gets TRgb from 4 level grayscale.
1.170 +
1.171 +The function takes a grayscale argument and return a TRgb whose red, green
1.172 +and blue values are set to an appropriate level.
1.173 +
1.174 +@param aGray4 Grayscale value to be converted.
1.175 +@return Equivalent 24 bit colour. Gray4 has 4 levels- the function returns
1.176 +r=g=b=85*c, where c=0,1,2, or 3. */
1.177 + {
1.178 + aGray4 *= 85;
1.179 + return TRgb(aGray4,aGray4,aGray4);
1.180 + }
1.181 +
1.182 +TRgb TRgb::Gray16(int aGray16)
1.183 +/** Gets TRgb from 16 level grayscale.
1.184 +
1.185 +The function takes a grayscale argument and return a TRgb whose red, green
1.186 +and blue values are set to an appropriate level.
1.187 +
1.188 +@param aGray16 Grayscale value to be converted.
1.189 +@return Equivalent 24 bit colour. Gray16 has 16 levels- the function returns
1.190 +r=g=b=17*c, where c=0, 1, ... 15. */
1.191 + {
1.192 + aGray16 *= 17;
1.193 + return TRgb(aGray16,aGray16,aGray16);
1.194 + }
1.195 +
1.196 +TRgb TRgb::Gray256(int aGray256)
1.197 +/** Gets TRgb from 256 level grayscale.
1.198 +
1.199 +The function takes a grayscale argument and return a TRgb whose red, green
1.200 +and blue values are set to an appropriate level.
1.201 +
1.202 +@param aGray256 Grayscale value to be converted.
1.203 +@return Equivalent 24 bit colour. Gray256 has 256 levels- the function
1.204 +returns r=g=b=c, where c=0, 1, ... 255. */
1.205 + {
1.206 + return TRgb(aGray256,aGray256,aGray256);
1.207 + }
1.208 +
1.209 +TRgb TRgb::Color16(int aColor16)
1.210 +/** Gets TRgb from 4 bit colour index.
1.211 +
1.212 +The function takes a 4 bit index into a colour palette and returns a TRgb
1.213 +whose red, green and blue values are set to an appropriate level.
1.214 +
1.215 +@param aColor16 4 bit index into a colour palette
1.216 +@return Equivalent 24 bit colour. */
1.217 + {
1.218 + return TRgb(color16array[aColor16&0xf]);
1.219 + }
1.220 +
1.221 +TRgb TRgb::Color256(int aColor256)
1.222 +/** Gets TRgb from 8 bit colour index.
1.223 +
1.224 +The function takes an 8 bit index into a colour palette and returns a TRgb
1.225 +whose red, green and blue values are set to an appropriate level.
1.226 +
1.227 +@param aColor256 8 bit index into a colour palette.
1.228 +@return Equivalent 24 bit colour. */
1.229 + {
1.230 + if (color256Palette)
1.231 + return color256Palette[aColor256&0xff];
1.232 + else
1.233 + return TRgb(color256array[aColor256&0xff]);
1.234 + }
1.235 +
1.236 +TRgb TRgb::Color4K(int aColor4K)
1.237 + {
1.238 + return TRgb(((aColor4K>>8)&0xf)*17,((aColor4K>>4)&0xf)*17,(aColor4K&0xf)*17);
1.239 + }
1.240 +
1.241 +TRgb TRgb::Color64K(int aColor64K)
1.242 +/** Gets TRgb from 64K colour index.
1.243 +
1.244 +The function takes a 16 bit index into a colour palette and returns a TRgb
1.245 +whose red, green and blue values are set to an appropriate level.
1.246 +
1.247 +@param aColor64K 16 bit index into a colour palette
1.248 +@return Equivalent 24 bit colour. */
1.249 + {
1.250 + return TRgb(((aColor64K>>11)&0x1f)*255/31,((aColor64K>>5)&0x3f)*255/63,(aColor64K&0x1f)*255/31);
1.251 + }
1.252 +
1.253 +TRgb TRgb::Color16M(long int aColor16M)
1.254 +/** Gets TRgb from 16M colour index.
1.255 +
1.256 +The function takes a 24 bit index into a colour palette and returns the TRgb
1.257 +whose red, green and blue values represent it exactly.
1.258 +
1.259 +@param aColor16M 24 bit index into a colour palette
1.260 +@return The TRgb which represents the index exactly. */
1.261 + {
1.262 + return TRgb(((aColor16M>>16)&0xff),(aColor16M>>8)&0xff,aColor16M&0xff);
1.263 + }
1.264 +