]> git.saurik.com Git - wxWidgets.git/blob - src/common/xpmdecod.cpp
case-insensitive sort of HTML help index
[wxWidgets.git] / src / common / xpmdecod.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xpmdecod.cpp
3 // Purpose: wxXPMDecoder
4 // Author: John Cristy, Vaclav Slavik
5 // RCS-ID: $Id$
6 // Copyright: (c) John Cristy, Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 /*
11
12 This file is partially based on source code of ImageMagick by John Cristy. Its
13 license is as follows:
14
15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16 % %
17 % %
18 % %
19 % X X PPPP M M %
20 % X X P P MM MM %
21 % X PPPP M M M %
22 % X X P M M %
23 % X X P M M %
24 % %
25 % %
26 % Read/Write ImageMagick Image Format. %
27 % %
28 % %
29 % Software Design %
30 % John Cristy %
31 % July 1992 %
32 % %
33 % %
34 % Copyright (C) 2001 ImageMagick Studio, a non-profit organization dedicated %
35 % to making software imaging solutions freely available. %
36 % %
37 % Permission is hereby granted, free of charge, to any person obtaining a %
38 % copy of this software and associated documentation files ("ImageMagick"), %
39 % to deal in ImageMagick without restriction, including without limitation %
40 % the rights to use, copy, modify, merge, publish, distribute, sublicense, %
41 % and/or sell copies of ImageMagick, and to permit persons to whom the %
42 % ImageMagick is furnished to do so, subject to the following conditions: %
43 % %
44 % The above copyright notice and this permission notice shall be included in %
45 % all copies or substantial portions of ImageMagick. %
46 % %
47 % The software is provided "as is", without warranty of any kind, express or %
48 % implied, including but not limited to the warranties of merchantability, %
49 % fitness for a particular purpose and noninfringement. In no event shall %
50 % ImageMagick Studio be liable for any claim, damages or other liability, %
51 % whether in an action of contract, tort or otherwise, arising from, out of %
52 % or in connection with ImageMagick or the use or other dealings in %
53 % ImageMagick. %
54 % %
55 % Except as contained in this notice, the name of the ImageMagick Studio %
56 % shall not be used in advertising or otherwise to promote the sale, use or %
57 % other dealings in ImageMagick without prior written authorization from the %
58 % ImageMagick Studio. %
59 % %
60 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
61 %
62 %
63 */
64
65 /*
66 * Also contains some pieces from libxpm and its modification for win32 by
67 * HeDu <hedu@cul-ipn.uni-kiel.de>:
68 *
69 * Copyright (C) 1989-95 GROUPE BULL
70 *
71 * Permission is hereby granted, free of charge, to any person obtaining a copy
72 * of this software and associated documentation files (the "Software"), to
73 * deal in the Software without restriction, including without limitation the
74 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
75 * sell copies of the Software, and to permit persons to whom the Software is
76 * furnished to do so, subject to the following conditions:
77 *
78 * The above copyright notice and this permission notice shall be included in
79 * all copies or substantial portions of the Software.
80 *
81 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
82 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
83 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
84 * GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
85 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
86 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
87 *
88 * Except as contained in this notice, the name of GROUPE BULL shall not be
89 * used in advertising or otherwise to promote the sale, use or other dealings
90 * in this Software without prior written authorization from GROUPE BULL.
91 */
92
93 #ifdef __GNUG__
94 #pragma implementation "xpmdecod.h"
95 #endif
96
97 // For compilers that support precompilation, includes "wx.h".
98 #include "wx/wxprec.h"
99
100 #ifdef __BORLANDC__
101 # pragma hdrstop
102 #endif
103
104 #ifndef WX_PRECOMP
105 # include "wx/defs.h"
106 #endif
107
108 #if wxUSE_IMAGE && wxUSE_XPM
109
110 #include "wx/stream.h"
111 #include "wx/image.h"
112 #include "wx/utils.h"
113 #include "wx/log.h"
114 #include "wx/intl.h"
115 #include <string.h>
116
117 #ifdef __VISUALC__
118 #include <ctype.h>
119 #endif
120
121 #include "wx/xpmdecod.h"
122
123 #if wxUSE_STREAMS
124 bool wxXPMDecoder::CanRead(wxInputStream& stream)
125 {
126 unsigned char buf[9];
127
128 stream.Read(buf, 9);
129 stream.SeekI(-9, wxFromCurrent);
130
131 return (memcmp(buf, "/* XPM */", 9) == 0);
132 }
133
134 wxImage wxXPMDecoder::ReadFile(wxInputStream& stream)
135 {
136 size_t length = stream.GetSize();
137 wxCHECK_MSG(length != 0, wxNullImage, wxT("Cannot read XPM from stream of unknown size"));
138
139 char *xpm_buffer = new char[length+1];
140 char *p, *q;
141 size_t i;
142
143 if ( stream.Read(xpm_buffer, length).LastError() == wxSTREAM_READ_ERROR )
144 return wxNullImage;
145 xpm_buffer[length] = '\0';
146
147 /*
148 * Remove comments from the file:
149 */
150 for (p = xpm_buffer; *p != '\0'; p++)
151 {
152 if ( (*p == '"') || (*p == '\'') )
153 {
154 if (*p == '"')
155 {
156 for (p++; *p != '\0'; p++)
157 if ( (*p == '"') && (*(p - 1) != '\\') )
158 break;
159 }
160 else // *p == '\''
161 {
162 for (p++; *p != '\0'; p++)
163 if ( (*p == '\'') && (*(p - 1) != '\\') )
164 break;
165 }
166 if (*p == '\0')
167 break;
168 continue;
169 }
170 if ( (*p != '/') || (*(p + 1) != '*') )
171 continue;
172 for (q = p + 2; *q != '\0'; q++)
173 {
174 if ( (*q == '*') && (*(q + 1) == '/') )
175 break;
176 }
177 strcpy(p, q + 2);
178 }
179
180 /*
181 * Remove unquoted characters:
182 */
183 i = 0;
184 for (p = xpm_buffer; *p != '\0'; p++)
185 {
186 if ( *p != '"' )
187 continue;
188 for (q = p + 1; *q != '\0'; q++)
189 if (*q == '"')
190 break;
191 strncpy(xpm_buffer + i, p + 1, q - p - 1);
192 i += q - p - 1;
193 xpm_buffer[i++] = '\n';
194 p = q + 1;
195 }
196 xpm_buffer[i] = '\0';
197
198 /*
199 * Create array of lines and convert \n's to \0's:
200 */
201 const char **xpm_lines;
202 size_t lines_cnt = 0;
203 size_t line;
204
205 for (p = xpm_buffer; *p != '\0'; p++)
206 {
207 if ( *p == '\n' )
208 lines_cnt++;
209 }
210
211 if ( !lines_cnt )
212 {
213 // this doesn't really look an XPM image
214 return wxNullImage;
215 }
216
217 xpm_lines = new const char*[lines_cnt];
218 xpm_lines[0] = xpm_buffer;
219 line = 1;
220 for (p = xpm_buffer; (*p != '\0') && (line < lines_cnt); p++)
221 {
222 if ( *p == '\n' )
223 {
224 xpm_lines[line] = p + 1;
225 *p = '\0';
226 line++;
227 }
228 }
229
230 /*
231 * Read the image:
232 */
233 wxImage img = ReadData(xpm_lines);
234
235 delete[] xpm_buffer;
236 #ifdef __WIN16__
237 delete[] (char**) xpm_lines;
238 #else
239 delete[] xpm_lines;
240 #endif
241 return img;
242 }
243 #endif // wxUSE_STREAMS
244
245
246 /*****************************************************************************\
247 * rgbtab.h *
248 * *
249 * A hard coded rgb.txt. To keep it short I removed all colornames with *
250 * trailing numbers, Blue3 etc, except the GrayXX. Sorry Grey-lovers I prefer *
251 * Gray ;-). But Grey is recognized on lookups, only on save Gray will be *
252 * used, maybe you want to do some substitue there too. *
253 * *
254 * To save memory the RGBs are coded in one long value, as done by the RGB *
255 * macro. *
256 * *
257 * Developed by HeDu 3/94 (hedu@cul-ipn.uni-kiel.de) *
258 \*****************************************************************************/
259
260
261 typedef struct
262 {
263 char *name;
264 wxUint32 rgb;
265 } rgbRecord;
266
267 #define myRGB(r,g,b) ((wxUint32)r<<16|(wxUint32)g<<8|(wxUint32)b)
268
269 static rgbRecord theRGBRecords[] =
270 {
271 {"aliceblue", myRGB(240, 248, 255)},
272 {"antiquewhite", myRGB(250, 235, 215)},
273 {"aquamarine", myRGB(50, 191, 193)},
274 {"azure", myRGB(240, 255, 255)},
275 {"beige", myRGB(245, 245, 220)},
276 {"bisque", myRGB(255, 228, 196)},
277 {"black", myRGB(0, 0, 0)},
278 {"blanchedalmond", myRGB(255, 235, 205)},
279 {"blue", myRGB(0, 0, 255)},
280 {"blueviolet", myRGB(138, 43, 226)},
281 {"brown", myRGB(165, 42, 42)},
282 {"burlywood", myRGB(222, 184, 135)},
283 {"cadetblue", myRGB(95, 146, 158)},
284 {"chartreuse", myRGB(127, 255, 0)},
285 {"chocolate", myRGB(210, 105, 30)},
286 {"coral", myRGB(255, 114, 86)},
287 {"cornflowerblue", myRGB(34, 34, 152)},
288 {"cornsilk", myRGB(255, 248, 220)},
289 {"cyan", myRGB(0, 255, 255)},
290 {"darkgoldenrod", myRGB(184, 134, 11)},
291 {"darkgreen", myRGB(0, 86, 45)},
292 {"darkkhaki", myRGB(189, 183, 107)},
293 {"darkolivegreen", myRGB(85, 86, 47)},
294 {"darkorange", myRGB(255, 140, 0)},
295 {"darkorchid", myRGB(139, 32, 139)},
296 {"darksalmon", myRGB(233, 150, 122)},
297 {"darkseagreen", myRGB(143, 188, 143)},
298 {"darkslateblue", myRGB(56, 75, 102)},
299 {"darkslategray", myRGB(47, 79, 79)},
300 {"darkturquoise", myRGB(0, 166, 166)},
301 {"darkviolet", myRGB(148, 0, 211)},
302 {"deeppink", myRGB(255, 20, 147)},
303 {"deepskyblue", myRGB(0, 191, 255)},
304 {"dimgray", myRGB(84, 84, 84)},
305 {"dodgerblue", myRGB(30, 144, 255)},
306 {"firebrick", myRGB(142, 35, 35)},
307 {"floralwhite", myRGB(255, 250, 240)},
308 {"forestgreen", myRGB(80, 159, 105)},
309 {"gainsboro", myRGB(220, 220, 220)},
310 {"ghostwhite", myRGB(248, 248, 255)},
311 {"gold", myRGB(218, 170, 0)},
312 {"goldenrod", myRGB(239, 223, 132)},
313 {"gray", myRGB(126, 126, 126)},
314 {"gray0", myRGB(0, 0, 0)},
315 {"gray1", myRGB(3, 3, 3)},
316 {"gray10", myRGB(26, 26, 26)},
317 {"gray100", myRGB(255, 255, 255)},
318 {"gray11", myRGB(28, 28, 28)},
319 {"gray12", myRGB(31, 31, 31)},
320 {"gray13", myRGB(33, 33, 33)},
321 {"gray14", myRGB(36, 36, 36)},
322 {"gray15", myRGB(38, 38, 38)},
323 {"gray16", myRGB(41, 41, 41)},
324 {"gray17", myRGB(43, 43, 43)},
325 {"gray18", myRGB(46, 46, 46)},
326 {"gray19", myRGB(48, 48, 48)},
327 {"gray2", myRGB(5, 5, 5)},
328 {"gray20", myRGB(51, 51, 51)},
329 {"gray21", myRGB(54, 54, 54)},
330 {"gray22", myRGB(56, 56, 56)},
331 {"gray23", myRGB(59, 59, 59)},
332 {"gray24", myRGB(61, 61, 61)},
333 {"gray25", myRGB(64, 64, 64)},
334 {"gray26", myRGB(66, 66, 66)},
335 {"gray27", myRGB(69, 69, 69)},
336 {"gray28", myRGB(71, 71, 71)},
337 {"gray29", myRGB(74, 74, 74)},
338 {"gray3", myRGB(8, 8, 8)},
339 {"gray30", myRGB(77, 77, 77)},
340 {"gray31", myRGB(79, 79, 79)},
341 {"gray32", myRGB(82, 82, 82)},
342 {"gray33", myRGB(84, 84, 84)},
343 {"gray34", myRGB(87, 87, 87)},
344 {"gray35", myRGB(89, 89, 89)},
345 {"gray36", myRGB(92, 92, 92)},
346 {"gray37", myRGB(94, 94, 94)},
347 {"gray38", myRGB(97, 97, 97)},
348 {"gray39", myRGB(99, 99, 99)},
349 {"gray4", myRGB(10, 10, 10)},
350 {"gray40", myRGB(102, 102, 102)},
351 {"gray41", myRGB(105, 105, 105)},
352 {"gray42", myRGB(107, 107, 107)},
353 {"gray43", myRGB(110, 110, 110)},
354 {"gray44", myRGB(112, 112, 112)},
355 {"gray45", myRGB(115, 115, 115)},
356 {"gray46", myRGB(117, 117, 117)},
357 {"gray47", myRGB(120, 120, 120)},
358 {"gray48", myRGB(122, 122, 122)},
359 {"gray49", myRGB(125, 125, 125)},
360 {"gray5", myRGB(13, 13, 13)},
361 {"gray50", myRGB(127, 127, 127)},
362 {"gray51", myRGB(130, 130, 130)},
363 {"gray52", myRGB(133, 133, 133)},
364 {"gray53", myRGB(135, 135, 135)},
365 {"gray54", myRGB(138, 138, 138)},
366 {"gray55", myRGB(140, 140, 140)},
367 {"gray56", myRGB(143, 143, 143)},
368 {"gray57", myRGB(145, 145, 145)},
369 {"gray58", myRGB(148, 148, 148)},
370 {"gray59", myRGB(150, 150, 150)},
371 {"gray6", myRGB(15, 15, 15)},
372 {"gray60", myRGB(153, 153, 153)},
373 {"gray61", myRGB(156, 156, 156)},
374 {"gray62", myRGB(158, 158, 158)},
375 {"gray63", myRGB(161, 161, 161)},
376 {"gray64", myRGB(163, 163, 163)},
377 {"gray65", myRGB(166, 166, 166)},
378 {"gray66", myRGB(168, 168, 168)},
379 {"gray67", myRGB(171, 171, 171)},
380 {"gray68", myRGB(173, 173, 173)},
381 {"gray69", myRGB(176, 176, 176)},
382 {"gray7", myRGB(18, 18, 18)},
383 {"gray70", myRGB(179, 179, 179)},
384 {"gray71", myRGB(181, 181, 181)},
385 {"gray72", myRGB(184, 184, 184)},
386 {"gray73", myRGB(186, 186, 186)},
387 {"gray74", myRGB(189, 189, 189)},
388 {"gray75", myRGB(191, 191, 191)},
389 {"gray76", myRGB(194, 194, 194)},
390 {"gray77", myRGB(196, 196, 196)},
391 {"gray78", myRGB(199, 199, 199)},
392 {"gray79", myRGB(201, 201, 201)},
393 {"gray8", myRGB(20, 20, 20)},
394 {"gray80", myRGB(204, 204, 204)},
395 {"gray81", myRGB(207, 207, 207)},
396 {"gray82", myRGB(209, 209, 209)},
397 {"gray83", myRGB(212, 212, 212)},
398 {"gray84", myRGB(214, 214, 214)},
399 {"gray85", myRGB(217, 217, 217)},
400 {"gray86", myRGB(219, 219, 219)},
401 {"gray87", myRGB(222, 222, 222)},
402 {"gray88", myRGB(224, 224, 224)},
403 {"gray89", myRGB(227, 227, 227)},
404 {"gray9", myRGB(23, 23, 23)},
405 {"gray90", myRGB(229, 229, 229)},
406 {"gray91", myRGB(232, 232, 232)},
407 {"gray92", myRGB(235, 235, 235)},
408 {"gray93", myRGB(237, 237, 237)},
409 {"gray94", myRGB(240, 240, 240)},
410 {"gray95", myRGB(242, 242, 242)},
411 {"gray96", myRGB(245, 245, 245)},
412 {"gray97", myRGB(247, 247, 247)},
413 {"gray98", myRGB(250, 250, 250)},
414 {"gray99", myRGB(252, 252, 252)},
415 {"green", myRGB(0, 255, 0)},
416 {"greenyellow", myRGB(173, 255, 47)},
417 {"honeydew", myRGB(240, 255, 240)},
418 {"hotpink", myRGB(255, 105, 180)},
419 {"indianred", myRGB(107, 57, 57)},
420 {"ivory", myRGB(255, 255, 240)},
421 {"khaki", myRGB(179, 179, 126)},
422 {"lavender", myRGB(230, 230, 250)},
423 {"lavenderblush", myRGB(255, 240, 245)},
424 {"lawngreen", myRGB(124, 252, 0)},
425 {"lemonchiffon", myRGB(255, 250, 205)},
426 {"lightblue", myRGB(176, 226, 255)},
427 {"lightcoral", myRGB(240, 128, 128)},
428 {"lightcyan", myRGB(224, 255, 255)},
429 {"lightgoldenrod", myRGB(238, 221, 130)},
430 {"lightgoldenrodyellow", myRGB(250, 250, 210)},
431 {"lightgray", myRGB(168, 168, 168)},
432 {"lightpink", myRGB(255, 182, 193)},
433 {"lightsalmon", myRGB(255, 160, 122)},
434 {"lightseagreen", myRGB(32, 178, 170)},
435 {"lightskyblue", myRGB(135, 206, 250)},
436 {"lightslateblue", myRGB(132, 112, 255)},
437 {"lightslategray", myRGB(119, 136, 153)},
438 {"lightsteelblue", myRGB(124, 152, 211)},
439 {"lightyellow", myRGB(255, 255, 224)},
440 {"limegreen", myRGB(0, 175, 20)},
441 {"linen", myRGB(250, 240, 230)},
442 {"magenta", myRGB(255, 0, 255)},
443 {"maroon", myRGB(143, 0, 82)},
444 {"mediumaquamarine", myRGB(0, 147, 143)},
445 {"mediumblue", myRGB(50, 50, 204)},
446 {"mediumforestgreen", myRGB(50, 129, 75)},
447 {"mediumgoldenrod", myRGB(209, 193, 102)},
448 {"mediumorchid", myRGB(189, 82, 189)},
449 {"mediumpurple", myRGB(147, 112, 219)},
450 {"mediumseagreen", myRGB(52, 119, 102)},
451 {"mediumslateblue", myRGB(106, 106, 141)},
452 {"mediumspringgreen", myRGB(35, 142, 35)},
453 {"mediumturquoise", myRGB(0, 210, 210)},
454 {"mediumvioletred", myRGB(213, 32, 121)},
455 {"midnightblue", myRGB(47, 47, 100)},
456 {"mintcream", myRGB(245, 255, 250)},
457 {"mistyrose", myRGB(255, 228, 225)},
458 {"moccasin", myRGB(255, 228, 181)},
459 {"navajowhite", myRGB(255, 222, 173)},
460 {"navy", myRGB(35, 35, 117)},
461 {"navyblue", myRGB(35, 35, 117)},
462 {"oldlace", myRGB(253, 245, 230)},
463 {"olivedrab", myRGB(107, 142, 35)},
464 {"orange", myRGB(255, 135, 0)},
465 {"orangered", myRGB(255, 69, 0)},
466 {"orchid", myRGB(239, 132, 239)},
467 {"palegoldenrod", myRGB(238, 232, 170)},
468 {"palegreen", myRGB(115, 222, 120)},
469 {"paleturquoise", myRGB(175, 238, 238)},
470 {"palevioletred", myRGB(219, 112, 147)},
471 {"papayawhip", myRGB(255, 239, 213)},
472 {"peachpuff", myRGB(255, 218, 185)},
473 {"peru", myRGB(205, 133, 63)},
474 {"pink", myRGB(255, 181, 197)},
475 {"plum", myRGB(197, 72, 155)},
476 {"powderblue", myRGB(176, 224, 230)},
477 {"purple", myRGB(160, 32, 240)},
478 {"red", myRGB(255, 0, 0)},
479 {"rosybrown", myRGB(188, 143, 143)},
480 {"royalblue", myRGB(65, 105, 225)},
481 {"saddlebrown", myRGB(139, 69, 19)},
482 {"salmon", myRGB(233, 150, 122)},
483 {"sandybrown", myRGB(244, 164, 96)},
484 {"seagreen", myRGB(82, 149, 132)},
485 {"seashell", myRGB(255, 245, 238)},
486 {"sienna", myRGB(150, 82, 45)},
487 {"skyblue", myRGB(114, 159, 255)},
488 {"slateblue", myRGB(126, 136, 171)},
489 {"slategray", myRGB(112, 128, 144)},
490 {"snow", myRGB(255, 250, 250)},
491 {"springgreen", myRGB(65, 172, 65)},
492 {"steelblue", myRGB(84, 112, 170)},
493 {"tan", myRGB(222, 184, 135)},
494 {"thistle", myRGB(216, 191, 216)},
495 {"tomato", myRGB(255, 99, 71)},
496 {"transparent", myRGB(0, 0, 1)},
497 {"turquoise", myRGB(25, 204, 223)},
498 {"violet", myRGB(156, 62, 206)},
499 {"violetred", myRGB(243, 62, 150)},
500 {"wheat", myRGB(245, 222, 179)},
501 {"white", myRGB(255, 255, 255)},
502 {"whitesmoke", myRGB(245, 245, 245)},
503 {"yellow", myRGB(255, 255, 0)},
504 {"yellowgreen", myRGB(50, 216, 56)},
505 {NULL, myRGB(0, 0, 0)}
506 };
507 static int numTheRGBRecords = 234;
508
509 static unsigned char ParseHexadecimal(char digit1, char digit2)
510 {
511 unsigned char i1, i2;
512
513 if (digit1 >= 'a')
514 i1 = digit1 - 'a' + 0x0A;
515 else if (digit1 >= 'A')
516 i1 = digit1 - 'A' + 0x0A;
517 else
518 i1 = digit1 - '0';
519 if (digit2 >= 'a')
520 i2 = digit2 - 'a' + 0x0A;
521 else if (digit2 >= 'A')
522 i2 = digit2 - 'A' + 0x0A;
523 else
524 i2 = digit2 - '0';
525 return (0x10 * i1 + i2);
526 }
527
528 static bool GetRGBFromName(const char *inname, bool *isNone,
529 unsigned char *r, unsigned char*g, unsigned char *b)
530 {
531 int left, right, middle;
532 int cmp;
533 wxUint32 rgbVal;
534 char *name;
535 char *grey, *p;
536
537 // Neither #rrggbb nor #rrrrggggbbbb are in database, we parse them directly
538 size_t inname_len = strlen(inname);
539 if ( *inname == '#' && (inname_len == 7 || inname_len == 13))
540 {
541 size_t ofs = (inname_len == 7) ? 2 : 4;
542 *r = ParseHexadecimal(inname[1], inname[2]);
543 *g = ParseHexadecimal(inname[1*ofs+1], inname[1*ofs+2]);
544 *b = ParseHexadecimal(inname[2*ofs+1], inname[2*ofs+2]);
545 *isNone = FALSE;
546 return TRUE;
547 }
548
549 name = strdup(inname);
550
551 // theRGBRecords[] has no names with spaces, and no grey, but a
552 // lot of gray...
553
554 // so first extract ' '
555 while ((p = strchr(name, ' ')) != NULL)
556 {
557 while (*(p)) // till eof of string
558 {
559 *p = *(p + 1); // copy to the left
560 p++;
561 }
562 }
563 // fold to lower case
564 p = name;
565 while (*p)
566 {
567 *p = tolower(*p);
568 p++;
569 }
570
571 // substitute Grey with Gray, else rgbtab.h would have more than 100
572 // 'duplicate' entries
573 if ( (grey = strstr(name, "grey")) != NULL )
574 grey[2] = 'a';
575
576 // check for special 'none' colour:
577 bool found;
578 if ( strcmp(name, "none") == 0 )
579 {
580 *isNone = TRUE;
581 found = TRUE;
582 }
583 else // not "None"
584 {
585 found = FALSE;
586
587 // binary search:
588 left = 0;
589 right = numTheRGBRecords - 1;
590 do
591 {
592 middle = (left + right) / 2;
593 cmp = strcmp(name, theRGBRecords[middle].name);
594 if ( cmp == 0 )
595 {
596 rgbVal = theRGBRecords[middle].rgb;
597 *r = (unsigned char)((rgbVal >> 16) & 0xFF);
598 *g = (unsigned char)((rgbVal >> 8) & 0xFF);
599 *b = (unsigned char)((rgbVal) & 0xFF);
600 *isNone = FALSE;
601 found = TRUE;
602 break;
603 }
604 else if ( cmp < 0 )
605 {
606 right = middle - 1;
607 }
608 else // cmp > 0
609 {
610 left = middle + 1;
611 }
612 } while (left <= right);
613 }
614
615 free(name);
616
617 return found;
618 }
619
620 static const char *ParseColor(const char *data)
621 {
622 static const char *targets[] =
623 {"c ", "g ", "g4 ", "m ", "b ", "s ", NULL};
624
625 const char *p, *r;
626 const char *q;
627 int i;
628
629 for (i = 0; targets[i] != NULL; i++)
630 {
631 r = data;
632 for (q = targets[i]; *r != '\0'; r++)
633 {
634 if ( *r != *q )
635 continue;
636 if ( !isspace((int) (*(r - 1))) )
637 continue;
638 p = r;
639 for (;;)
640 {
641 if ( *q == '\0' )
642 return p;
643 if ( *p++ != *q++ )
644 break;
645 }
646 q = targets[i];
647 }
648 }
649 return NULL;
650 }
651
652 class wxXPMColourMapData : public wxObject
653 {
654 public:
655 unsigned char R,G,B;
656 };
657
658 wxImage wxXPMDecoder::ReadData(const char **xpm_data)
659 {
660 wxImage img;
661 int count;
662 unsigned width, height, colors_cnt, chars_per_pixel;
663 size_t i, j, i_key;
664 wxChar key[64];
665 const char *clr_def;
666 bool hasMask;
667 wxXPMColourMapData *clr_data;
668 wxHashTable clr_tbl(wxKEY_STRING);
669
670 /*
671 * Read hints and initialize structures:
672 */
673
674 count = sscanf(xpm_data[0], "%u %u %u %u",
675 &width, &height, &colors_cnt, &chars_per_pixel);
676 if ( count != 4 || width * height * colors_cnt == 0 )
677 {
678 wxLogError(_T("XPM: Not XPM data!"));
679 return wxNullImage;
680 }
681
682 // VS: XPM color map this large would be insane, since XPMs are encoded with
683 // 92 possible values on each position, 92^64 is *way* larger space than
684 // 8bit RGB...
685 wxCHECK_MSG(chars_per_pixel < 64, wxNullImage, wxT("XPM colormaps this large not supported."));
686
687 img.Create(width, height);
688 if ( !img.Ok() ) return img;
689
690 img.SetMask(FALSE);
691 key[chars_per_pixel] = wxT('\0');
692 hasMask = FALSE;
693 clr_tbl.DeleteContents(TRUE);
694
695 /*
696 * Create colour map:
697 */
698 for (i = 0; i < colors_cnt; i++)
699 {
700 for (i_key = 0; i_key < chars_per_pixel; i_key++)
701 key[i_key] = (wxChar)xpm_data[1 + i][i_key];
702 clr_def = ParseColor(xpm_data[1 + i]);
703 clr_data = new wxXPMColourMapData;
704
705 if ( clr_def == NULL )
706 {
707 wxLogError(_("XPM: malformed colour definition '%s'!"), xpm_data[1+i]);
708 clr_data->R = 255, clr_data->G = 0, clr_data->B = 255;
709 }
710 else
711 {
712 bool isNone;
713 if ( !GetRGBFromName(clr_def, &isNone,
714 &clr_data->R, &clr_data->G, &clr_data->B) )
715 {
716 wxLogError(_("XPM: malformed colour definition '%s'!"), xpm_data[1+i]);
717 clr_data->R = 255, clr_data->G = 0, clr_data->B = 255;
718 }
719 else
720 {
721 if ( isNone )
722 {
723 img.SetMask(TRUE);
724 img.SetMaskColour(255, 0, 255);
725 hasMask = TRUE;
726 clr_data->R = 255, clr_data->G = 0, clr_data->B = 255;
727 }
728 else
729 {
730 if ( hasMask && clr_data->R == 255 &&
731 clr_data->G == 0 && clr_data->B == 255 )
732 clr_data->B = 254;
733 }
734 }
735 }
736 clr_tbl.Put(key, clr_data);
737 }
738
739 /*
740 * Parse image data:
741 */
742
743 unsigned char *img_data = img.GetData();
744 for (j = 0; j < height; j++)
745 {
746 for (i = 0; i < width; i++, img_data += 3)
747 {
748 for (i_key = 0; i_key < chars_per_pixel; i_key++)
749 key[i_key] = (wxChar)xpm_data[1 + colors_cnt + j]
750 [chars_per_pixel * i + i_key];
751 clr_data = (wxXPMColourMapData*) clr_tbl.Get(key);
752 if ( clr_data == NULL )
753 {
754 wxLogError(_("XPM: Malformed pixel data!"));
755 }
756 else
757 {
758 img_data[0] = clr_data->R;
759 img_data[1] = clr_data->G;
760 img_data[2] = clr_data->B;
761 }
762 }
763 }
764
765 return img;
766 }
767
768 #endif // wxUSE_IMAGE && wxUSE_XPM