NXWidgets  1.19
glyph_stop42x42.cxx
Go to the documentation of this file.
1 /********************************************************************************************
2  * NxWidgets/nxwm/src/glyph_stop42x42.cxx
3  *
4  * Copyright (C) 2014 Gregory Nutt. All rights reserved.
5  * Author: Gregory Nutt <gnutt@nuttx.org>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in
15  * the documentation and/or other materials provided with the
16  * distribution.
17  * 3. Neither the name NuttX, NxWidgets, nor the names of its contributors
18  * me be used to endorse or promote products derived from this software
19  * without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *
34  ********************************************************************************************/
35 
36 /********************************************************************************************
37  * Included Files
38  ********************************************************************************************/
39 
40 #include <nuttx/config.h>
41 
42 #include <sys/types.h>
43 #include <stdint.h>
44 #include <stdbool.h>
45 
46 #include <nuttx/nx/nxglib.h>
47 #include <nuttx/video/fb.h>
48 #include <nuttx/video/rgbcolors.h>
49 
50 #include "crlepalettebitmap.hxx"
51 
52 #include "nxwmconfig.hxx"
53 #include "nxwmglyphs.hxx"
54 
55 /********************************************************************************************
56  * Pre-Processor Definitions
57  ********************************************************************************************/
58 
59 #define BITMAP_NROWS 42
60 #define BITMAP_NCOLUMNS 42
61 #define BITMAP_NLUTCODES 8
62 
63 #define DARK_STOP_ICON 1
64 
65 /********************************************************************************************
66  * Private Bitmap Data
67  ********************************************************************************************/
68 
69 using namespace NxWM;
70 
71 /* RGB24 (8-8-8) Colors */
72 
73 #if CONFIG_NXWIDGETS_BPP == 24 || CONFIG_NXWIDGETS_BPP == 32
74 # ifdef DARK_STOP_ICON
75 
76 static const uint32_t g_stopNormalLut[BITMAP_NLUTCODES] =
77 {
78  0xa5a5a5, 0xa50000, 0xbd0000, 0x6f1b1b, 0xbdbdbd, 0xa5bdbd, 0x8a0000, 0xbda5a5 /* Codes 0-7 */
79 };
80 
81 static const uint32_t g_stopBrightLut[BITMAP_NLUTCODES] =
82 {
83  0xdcdcdc, 0xdc0000, 0xfc0000, 0x942424, 0xfcfcfc, 0xdcfcfc, 0xb80000, 0xfcdcdc /* Codes 0-7 */
84 };
85 
86 # else /* DARK_STOP_ICON */
87 
88 static const uint32_t g_stopNormalLut[BITMAP_NLUTCODES] =
89 {
90  0xdcdcdc, 0xdc0000, 0xfc0000, 0x942424, 0xfcfcfc, 0xdcfcfc, 0xb80000, 0xfcdcdc /* Codes 0-7 */
91 };
92 
93 static const uint32_t g_stopBrightLut[BITMAP_NLUTCODES] =
94 {
95  0xffffff, 0xff0000, 0xff0000, 0xb92d2d, 0xffffff, 0xffffff, 0xe60000, 0xffffff /* Codes 0-7 */
96 };
97 # endif /* DARK_STOP_ICON */
98 
99 /* RGB16 (565) Colors */
100 
101 #elif CONFIG_NXWIDGETS_BPP == 16
102 # ifdef DARK_STOP_ICON
103 
104 static const uint16_t g_stopNormalLut[BITMAP_NLUTCODES] =
105 {
106  0xa534, 0xa000, 0xb800, 0x68c3, 0xbdf7, 0xa5f7, 0x8800, 0xbd34 /* Codes 0-7 */
107 };
108 
109 static const uint16_t g_stopBrightLut[BITMAP_NLUTCODES] =
110 {
111  0xdefb, 0xd800, 0xf800, 0x9124, 0xffff, 0xdfff, 0xb800, 0xfefb /* Codes 0-7 */
112 };
113 
114 # else /* DARK_STOP_ICON */
115 
116 static const uint16_t g_stopNormalLut[BITMAP_NLUTCODES] =
117 {
118  0xdefb, 0xd800, 0xf800, 0x9124, 0xffff, 0xdfff, 0xb800, 0xfefb /* Codes 0-7 */
119 };
120 
121 static const uint16_t g_stopBrightLut[BITMAP_NLUTCODES] =
122 {
123  0xffff, 0xf800, 0xf800, 0xb965, 0xffff, 0xffff, 0xe000, 0xffff /* Codes 0-7 */
124 };
125 
126 # endif /* DARK_STOP_ICON */
127 
128 /* 8-bit color lookups. NOTE: This is really dumb! The lookup index is 8-bits and it used
129  * to lookup an 8-bit value. There is no savings in that! It would be better to just put
130  * the 8-bit color/greyscale value in the run-length encoded image and save the cost of these
131  * pointless lookups. But these pointless lookups do make the logic compatible with the
132  * 16- and 24-bit types.
133  */
134 
135 #elif CONFIG_NXWIDGETS_BPP == 8
136 # ifdef CONFIG_NXWIDGETS_GREYSCALE
137 
138 /* 8-bit Greyscale */
139 
140 # ifdef DARK_STOP_ICON
141 
142 static const uint8_t g_stopNormalLut[BITMAP_NLUTCODES] =
143 {
144  0xa5, 0x31, 0x38, 0x34, 0xbd, 0xb5, 0x29, 0xac /* Codes 0-7 */
145 };
146 
147 static const uint8_t g_stopBrightLut[BITMAP_NLUTCODES] =
148 {
149  0xdc, 0x41, 0x4b, 0x45, 0xfc, 0xf2, 0x37, 0xe5 /* Codes 0-7 */
150 };
151 
152 # else /* DARK_STOP_ICON */
153 
154 static const uint8_t g_stopNormalLut[BITMAP_NLUTCODES] =
155 {
156  0xdc, 0x41, 0x4b, 0x45, 0xfc, 0xf2, 0x37, 0xe5 /* Codes 0-7 */
157 };
158 
159 static const uint8_t g_stopBrightLut[BITMAP_NLUTCODES] =
160 {
161  0xff, 0x4c, 0x4c, 0x56, 0xff, 0xff, 0x44, 0xff /* Codes 0-7 */
162 };
163 
164 # endif /* DARK_STOP_ICON */
165 
166 # else /* CONFIG_NXWIDGETS_GREYSCALE */
167 
168 /* RGB8 (332) Colors */
169 
170 # ifdef DARK_STOP_ICON
171 
172 static const nxgl_mxpixel_t g_stopNormalLut[BITMAP_NLUTCODES] =
173 {
174  0xb6, 0xa0, 0xa0, 0x60, 0xb6, 0xb6, 0x80, 0xb6 /* Codes 0-7 */
175 };
176 
177 static const nxgl_mxpixel_t g_stopBrightLut[BITMAP_NLUTCODES] =
178 {
179  0xdb, 0xc0, 0xe0, 0x84, 0xff, 0xdf, 0xa0, 0xfb /* Codes 0-7 */
180 };
181 
182 # else /* DARK_STOP_ICON */
183 
184 static const nxgl_mxpixel_t g_stopNormalLut[BITMAP_NLUTCODES] =
185 {
186  0xdb, 0xc0, 0xe0, 0x84, 0xff, 0xdf, 0xa0, 0xfb /* Codes 0-7 */
187 };
188 
189 static const nxgl_mxpixel_t g_stopBrightLut[BITMAP_NLUTCODES] =
190 {
191  0xff, 0xe0, 0xe0, 0xa4, 0xff, 0xff, 0xe0, 0xff /* Codes 0-7 */
192 };
193 
194 # endif /* DARK_STOP_ICON */
195 # endif /* CONFIG_NXWIDGETS_GREYSCALE */
196 #else
197 # error Unsupported pixel format
198 #endif
199 
201 {
202  {42, 0}, /* Row 0 */
203  { 1, 0}, {13, 1}, { 7, 2}, {20, 1}, { 1, 0}, /* Row 1 */
204  { 1, 0}, { 4, 1}, {18, 2}, {18, 1}, { 1, 3}, /* Row 2 */
205  { 1, 0}, { 3, 1}, {22, 2}, {15, 1}, { 1, 3}, /* Row 3 */
206  { 1, 0}, { 2, 1}, {24, 2}, {14, 1}, { 1, 3}, /* Row 4 */
207  { 1, 0}, { 1, 1}, {26, 2}, {13, 1}, { 1, 3}, /* Row 5 */
208  { 1, 0}, { 1, 1}, { 3, 2}, { 5, 4}, { 2, 5}, {16, 2}, { 2, 1}, { 6, 4}, /* Row 6 */
209  { 1, 5}, { 4, 1}, { 1, 3},
210  { 1, 0}, { 1, 1}, { 3, 2}, { 6, 4}, { 2, 5}, {15, 2}, { 1, 1}, { 7, 4}, /* Row 7 */
211  { 1, 5}, { 4, 1}, { 1, 3},
212  { 1, 0}, { 1, 1}, { 3, 2}, { 7, 4}, { 2, 5}, {13, 2}, { 1, 1}, { 7, 4}, /* Row 8 */
213  { 2, 5}, { 4, 1}, { 1, 3},
214  { 1, 0}, { 1, 1}, { 4, 2}, { 8, 4}, { 1, 5}, {11, 2}, { 1, 1}, { 7, 4}, /* Row 9 */
215  { 2, 5}, { 5, 1}, { 1, 3},
216  { 1, 0}, { 1, 1}, { 5, 2}, { 7, 4}, { 2, 5}, {10, 2}, { 7, 4}, { 2, 5}, /* Row 10 */
217  { 5, 1}, { 1, 6}, { 1, 3},
218  { 1, 0}, { 1, 1}, { 6, 2}, { 7, 4}, { 2, 5}, { 8, 2}, { 7, 4}, { 2, 5}, /* Row 11 */
219  { 6, 1}, { 1, 6}, { 1, 3},
220  { 1, 0}, { 8, 2}, { 7, 4}, { 2, 5}, { 6, 2}, { 7, 4}, { 2, 5}, { 7, 1}, /* Row 12 */
221  { 1, 6}, { 1, 3},
222  { 1, 0}, { 9, 2}, { 7, 4}, { 2, 5}, { 4, 2}, { 7, 4}, { 2, 5}, { 8, 1}, /* Row 13 */
223  { 1, 6}, { 1, 3},
224  { 1, 0}, {10, 2}, { 7, 4}, { 2, 5}, { 2, 2}, { 7, 4}, { 2, 5}, { 8, 1}, /* Row 14 */
225  { 2, 6}, { 1, 3},
226  { 1, 0}, {11, 2}, { 7, 4}, { 2, 5}, { 7, 4}, { 2, 5}, { 9, 1}, { 2, 6}, /* Row 15 */
227  { 1, 3},
228  { 1, 0}, {12, 2}, {14, 4}, { 2, 5}, {10, 1}, { 2, 6}, { 1, 3}, /* Row 16 */
229  { 1, 0}, {13, 2}, {12, 4}, { 2, 5}, {10, 1}, { 3, 6}, { 1, 3}, /* Row 17 */
230  { 1, 0}, {14, 2}, {10, 4}, { 2, 5}, {11, 1}, { 3, 6}, { 1, 3}, /* Row 18 */
231  { 1, 0}, {15, 2}, { 8, 4}, { 2, 5}, {11, 1}, { 4, 6}, { 1, 3}, /* Row 19 */
232  { 1, 0}, {15, 2}, { 1, 1}, { 6, 4}, { 2, 5}, {12, 1}, { 4, 6}, { 1, 3}, /* Row 20 */
233  { 1, 0}, { 1, 1}, {13, 2}, { 2, 1}, { 6, 4}, { 2, 5}, {11, 1}, { 5, 6}, /* Row 21 */
234  { 1, 3},
235  { 1, 0}, { 2, 1}, {11, 2}, { 2, 1}, { 8, 4}, { 2, 5}, {10, 1}, { 5, 6}, /* Row 22 */
236  { 1, 3},
237  { 1, 0}, { 3, 1}, { 8, 2}, { 3, 1}, {10, 4}, { 2, 5}, { 8, 1}, { 6, 6}, /* Row 23 */
238  { 1, 3},
239  { 1, 0}, { 5, 1}, { 4, 2}, { 4, 1}, {12, 4}, { 2, 5}, { 6, 1}, { 7, 6}, /* Row 24 */
240  { 1, 3},
241  { 1, 0}, {12, 1}, {14, 4}, { 2, 5}, { 4, 1}, { 8, 6}, { 1, 3}, /* Row 25 */
242  { 1, 0}, {11, 1}, { 7, 4}, { 2, 5}, { 7, 4}, { 2, 5}, { 2, 1}, { 9, 6}, /* Row 26 */
243  { 1, 3},
244  { 1, 0}, {10, 1}, { 7, 4}, { 2, 5}, { 2, 1}, { 7, 4}, { 2, 5}, {10, 6}, /* Row 27 */
245  { 1, 3},
246  { 1, 0}, { 9, 1}, { 7, 4}, { 2, 5}, { 4, 1}, { 7, 4}, { 2, 5}, { 9, 6}, /* Row 28 */
247  { 1, 3},
248  { 1, 0}, { 8, 1}, { 7, 4}, { 2, 5}, { 6, 1}, { 7, 4}, { 2, 5}, { 8, 6}, /* Row 29 */
249  { 1, 3},
250  { 1, 0}, { 7, 1}, { 7, 4}, { 2, 5}, { 8, 1}, { 7, 4}, { 2, 5}, { 7, 6}, /* Row 30 */
251  { 1, 3},
252  { 1, 0}, { 6, 1}, { 7, 4}, { 2, 5}, { 9, 1}, { 1, 6}, { 7, 4}, { 2, 5}, /* Row 31 */
253  { 6, 6}, { 1, 3},
254  { 1, 0}, { 5, 1}, { 7, 4}, { 2, 5}, { 9, 1}, { 3, 6}, { 7, 4}, { 2, 5}, /* Row 32 */
255  { 5, 6}, { 1, 3},
256  { 1, 0}, { 4, 1}, { 7, 4}, { 2, 5}, { 9, 1}, { 5, 6}, { 7, 4}, { 2, 5}, /* Row 33 */
257  { 4, 6}, { 1, 3},
258  { 1, 0}, { 4, 1}, { 6, 4}, { 2, 5}, { 8, 1}, { 8, 6}, { 7, 4}, { 1, 5}, /* Row 34 */
259  { 4, 6}, { 1, 3},
260  { 1, 0}, { 4, 1}, { 7, 5}, { 7, 1}, {11, 6}, { 7, 5}, { 4, 6}, { 1, 3}, /* Row 35 */
261  { 1, 0}, {16, 1}, {24, 6}, { 1, 3}, /* Row 36 */
262  { 1, 0}, {13, 1}, {27, 6}, { 1, 3}, /* Row 37 */
263  { 1, 0}, { 8, 1}, {32, 6}, { 1, 3}, /* Row 38 */
264  { 1, 0}, { 5, 1}, {35, 6}, { 1, 3}, /* Row 39 */
265  { 1, 0}, { 2, 1}, {38, 6}, { 1, 3}, /* Row 40 */
266  { 1, 0}, { 1, 7}, {40, 3} /* Row 41 */
267 };
268 
269 /********************************************************************************************
270  * Public Bitmap Structure Definitions
271  ********************************************************************************************/
272 
273 const struct NXWidgets::SRlePaletteBitmap NxWM::g_stopBitmap =
274 {
275  CONFIG_NXWIDGETS_BPP, // bpp - Bits per pixel
276  CONFIG_NXWIDGETS_FMT, // fmt - Color format
277  BITMAP_NLUTCODES, // nlut - Number of colors in the lLook-Up Table (LUT)
278  BITMAP_NCOLUMNS, // width - Width in pixels
279  BITMAP_NROWS, // height - Height in rows
280  { // lut - Pointer to the beginning of the Look-Up Table (LUT)
281  g_stopNormalLut, // Index 0: Unselected LUT
282  g_stopBrightLut, // Index 1: Selected LUT
283  },
284  g_stopRleEntries // data - Pointer to the beginning of the RLE data
285 };
const struct NXWidgets::SRlePaletteBitmap g_stopBitmap
Definition: nxwmglyphs.hxx:73
static const uint32_t g_stopNormalLut[BITMAP_NLUTCODES]
static const struct NXWidgets::SRlePaletteBitmapEntry g_stopRleEntries[]
static const uint32_t g_stopBrightLut[BITMAP_NLUTCODES]