summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/src/glyph_calibration.cxx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-12 14:40:15 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-12 14:40:15 -0600
commit5e7ac07aaccc6365076aecf687d122e607944aa5 (patch)
tree40855d0d324a9667c643bae770f102e0e691580e /NxWidgets/nxwm/src/glyph_calibration.cxx
parentf081ac2da20ca77ced60b40f3daaa619fa0e05f0 (diff)
downloadnuttx-5e7ac07aaccc6365076aecf687d122e607944aa5.tar.gz
nuttx-5e7ac07aaccc6365076aecf687d122e607944aa5.tar.bz2
nuttx-5e7ac07aaccc6365076aecf687d122e607944aa5.zip
NxWM: Rename all glyphs to include the size of the glyph as part of the filename
Diffstat (limited to 'NxWidgets/nxwm/src/glyph_calibration.cxx')
-rw-r--r--NxWidgets/nxwm/src/glyph_calibration.cxx198
1 files changed, 0 insertions, 198 deletions
diff --git a/NxWidgets/nxwm/src/glyph_calibration.cxx b/NxWidgets/nxwm/src/glyph_calibration.cxx
deleted file mode 100644
index 3a9a30806..000000000
--- a/NxWidgets/nxwm/src/glyph_calibration.cxx
+++ /dev/null
@@ -1,198 +0,0 @@
-/********************************************************************************************
- * NxWidgets/nxwm/src/glyph_calibration.cxx
- *
- * Copyright (C) 2012 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <gnutt@nuttx.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * 3. Neither the name NuttX, NxWidgets, nor the names of its contributors
- * me be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
- * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- *
- ********************************************************************************************/
-
-/********************************************************************************************
- * Included Files
- ********************************************************************************************/
-
-#include <nuttx/config.h>
-
-#include <sys/types.h>
-#include <stdint.h>
-#include <stdbool.h>
-
-#include <nuttx/nx/nxglib.h>
-#include <nuttx/video/fb.h>
-#include <nuttx/video/rgbcolors.h>
-
-#include "crlepalettebitmap.hxx"
-
-#include "nxwmconfig.hxx"
-#include "nxwmglyphs.hxx"
-
-/********************************************************************************************
- * Pre-Processor Definitions
- ********************************************************************************************/
-
-#define BITMAP_NROWS 21
-#define BITMAP_NCOLUMNS 24
-#define BITMAP_NLUTCODES 6
-
-/********************************************************************************************
- * Private Bitmap Data
- ********************************************************************************************/
-
-using namespace NxWM;
-
-/* RGB24 (8-8-8) Colors */
-
-#if CONFIG_NXWIDGETS_BPP == 24 || CONFIG_NXWIDGETS_BPP == 32
-
-static const uint32_t g_calibrationNormalLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xfcfcfc, 0xacacac, 0xd8d8d8, 0xd8881c, 0x9c6014 /* Codes 1-5 */
-};
-
-static const uint32_t g_calibrationSelectedLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xffffff, 0xc0c0c0, 0xe1e1e1, 0xe1a554, 0xb4874e /* Codes 1-5 */
-};
-/* RGB16 (565) Colors (four of the colors in this map are duplicates) */
-
-#elif CONFIG_NXWIDGETS_BPP == 16
-
-static const uint16_t g_calibrationNormalLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xffff, 0xad75, 0xdedb, 0xdc43, 0x9b02 /* Codes 1-5 */
-};
-
-static const uint16_t g_calibrationSelectedLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xffff, 0xc618, 0xe71c, 0xe52a, 0xb429 /* Codes 1-5 */
-};
-
-/* 8-bit color lookups. NOTE: This is really dumb! The lookup index is 8-bits and it used
- * to lookup an 8-bit value. There is no savings in that! It would be better to just put
- * the 8-bit color/greyscale value in the run-length encoded image and save the cost of these
- * pointless lookups. But these p;ointless lookups do make the logic compatible with the
- * 16- and 24-bit types.
- */
-
-#elif CONFIG_NXWIDGETS_BPP == 8
-# ifdef CONFIG_NXWIDGETS_GREYSCALE
-
-/* 8-bit Greyscale */
-
-static const uint8_t g_calibrationNormalLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xfc, 0xac, 0xd8, 0x93, 0x69 /* Codes 1-5 */
-};
-
-static const uint8_t g_calibrationSelectedLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xff, 0xc0, 0xe1, 0xad, 0x8d /* Codes 1-5 */
-};
-
-# else /* CONFIG_NXWIDGETS_GREYSCALE */
-
-/* RGB8 (332) Colors */
-
-static const nxgl_mxpixel_t g_calibrationNormalLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xff, 0xb6, 0xdb, 0xd0, 0x8c /* Codes 1-5 */
-};
-
-static const nxgl_mxpixel_t g_calibrationSelectedLut[BITMAP_NLUTCODES] =
-{
- CONFIG_NXWM_DEFAULT_BACKGROUNDCOLOR, /* Code 0 */
- 0xff, 0xdb, 0xff, 0xf5, 0xb1 /* Codes 1-5 */
-};
-
-# endif
-#else
-# error "Unsupport pixel format"
-#endif
-
-static const struct NXWidgets::SRlePaletteBitmapEntry g_calibrationRleEntries[] =
-{
- { 11, 0}, { 1, 1}, { 1, 2}, { 6, 0}, { 1, 3}, { 1, 2}, { 3, 0}, /* Row 0 */
- { 11, 0}, { 1, 1}, { 1, 2}, { 4, 0}, { 2, 1}, { 1, 3}, { 2, 1}, { 2, 0}, /* Row 1 */
- { 11, 0}, { 1, 1}, { 1, 2}, { 2, 0}, { 2, 1}, { 2, 2}, { 1, 3}, { 1, 2}, /* Row 2 */
- { 3, 0},
- { 11, 0}, { 1, 1}, { 1, 3}, { 2, 1}, { 2, 2}, { 2, 0}, { 1, 3}, { 4, 0}, /* Row 3 */
- { 9, 0}, { 2, 1}, { 2, 3}, { 2, 2}, { 4, 0}, { 1, 3}, { 4, 0}, /* Row 4 */
- { 3, 0}, { 1, 1}, { 1, 2}, { 2, 0}, { 2, 1}, { 2, 2}, { 1, 1}, { 1, 2}, /* Row 5 */
- { 5, 0}, { 1, 1}, { 2, 3}, { 3, 0},
- { 2, 0}, { 2, 1}, { 1, 3}, { 2, 1}, { 2, 2}, { 2, 0}, { 1, 1}, { 1, 2}, /* Row 6 */
- { 4, 0}, { 1, 1}, { 1, 3}, { 1, 0}, { 2, 3}, { 2, 0},
- { 3, 0}, { 1, 2}, { 1, 3}, { 2, 2}, { 4, 0}, { 1, 1}, { 1, 2}, { 4, 0}, /* Row 7 */
- { 1, 1}, { 3, 0}, { 1, 3}, { 2, 0},
- { 4, 0}, { 1, 3}, { 6, 0}, { 1, 1}, { 1, 2}, { 3, 0}, { 1, 1}, { 1, 3}, /* Row 8 */
- { 3, 0}, { 2, 3}, { 1, 0},
- { 3, 0}, { 1, 1}, { 2, 3}, { 5, 0}, { 1, 1}, { 1, 2}, { 3, 0}, { 1, 1}, /* Row 9 */
- { 5, 0}, { 1, 3}, { 1, 0},
- { 2, 0}, { 1, 1}, { 1, 3}, { 1, 0}, { 2, 3}, { 4, 0}, { 1, 1}, { 1, 2}, /* Row 10 */
- { 3, 0}, { 1, 1}, { 1, 0}, { 2, 4}, { 1, 5}, { 1, 0}, { 1, 3}, { 1, 0},
- { 2, 0}, { 1, 1}, { 3, 0}, { 1, 3}, { 4, 0}, { 1, 1}, { 1, 2}, { 3, 0}, /* Row 11 */
- { 1, 1}, { 1, 0}, { 2, 4}, { 1, 5}, { 1, 0}, { 1, 3}, { 1, 0},
- { 1, 0}, { 1, 1}, { 1, 3}, { 2, 4}, { 1, 5}, { 2, 3}, { 3, 0}, { 1, 1}, /* Row 12 */
- { 1, 2}, { 2, 0}, { 9, 3},
- { 1, 0}, { 1, 1}, { 1, 0}, { 2, 4}, { 1, 5}, { 1, 0}, { 1, 3}, { 3, 0}, /* Row 13 */
- { 1, 1}, { 1, 2}, { 11, 0},
- { 1, 0}, { 1, 1}, { 1, 0}, { 2, 4}, { 1, 5}, { 1, 0}, { 1, 3}, { 3, 0}, /* Row 14 */
- { 1, 1}, { 1, 2}, { 11, 0},
- { 1, 0}, { 1, 1}, { 1, 0}, { 2, 4}, { 1, 5}, { 1, 0}, { 1, 3}, { 3, 0}, /* Row 15 */
- { 1, 1}, { 1, 2}, { 11, 0},
- { 9, 3}, { 2, 0}, { 1, 1}, { 1, 2}, { 11, 0}, /* Row 16 */
- { 11, 0}, { 1, 1}, { 1, 2}, { 11, 0}, /* Row 17 */
- { 10, 0}, { 1, 1}, { 2, 3}, { 1, 2}, { 10, 0}, /* Row 18 */
- { 5, 0}, { 4, 1}, { 6, 3}, { 4, 2}, { 5, 0}, /* Row 19 */
- { 4, 0}, { 4, 1}, { 8, 3}, { 4, 2}, { 4, 0}, /* Row 20 */
-};
-
-/********************************************************************************************
- * Public Bitmap Structure Defintions
- ********************************************************************************************/
-
-const struct NXWidgets::SRlePaletteBitmap NxWM::g_calibrationBitmap =
-{
- CONFIG_NXWIDGETS_BPP, // bpp - Bits per pixel
- CONFIG_NXWIDGETS_FMT, // fmt - Color format
- BITMAP_NLUTCODES, // nlut - Number of colors in the lLook-Up Table (LUT)
- BITMAP_NCOLUMNS, // width - Width in pixels
- BITMAP_NROWS, // height - Height in rows
- { // lut - Pointer to the beginning of the Look-Up Table (LUT)
- g_calibrationNormalLut, // Index 0: Unselected LUT
- g_calibrationSelectedLut, // Index 1: Selected LUT
- },
- g_calibrationRleEntries // data - Pointer to the beginning of the RLE data
-};