7d0ec344fb2852e6202754c9f469422135804221
[hackover2013-badge-firmware.git] / drivers / displays / tft / aafonts.h
1 /**************************************************************************/
2 /*!
3 @file aafonts.h
4 @author K. Townsend (microBuilder.eu)
5
6 @section LICENSE
7
8 Software License Agreement (BSD License)
9
10 Copyright (c) 2012, microBuilder SARL
11 All rights reserved.
12
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
15 1. Redistributions of source code must retain the above copyright
16 notice, this list of conditions and the following disclaimer.
17 2. Redistributions in binary form must reproduce the above copyright
18 notice, this list of conditions and the following disclaimer in the
19 documentation and/or other materials provided with the distribution.
20 3. Neither the name of the copyright holders nor the
21 names of its contributors may be used to endorse or promote products
22 derived from this software without specific prior written permission.
23
24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
25 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
28 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35 /**************************************************************************/
36 #ifndef __AAFONTS_H__
37 #define __AAFONTS_H__
38
39 #include "projectconfig.h"
40
41 typedef enum
42 {
43 AAFONTS_FONTTYPE_AA2 = 2, /* AA2 Fonts (4 shades of gray) */
44 AAFONTS_FONTTYPE_AA4 = 4 /* AA4 Fonts (16 shades of gray) */
45 } aafontsFontType_t;
46
47 typedef struct
48 {
49 uint8_t width; /* Character width in pixels */
50 uint8_t bytesPerRow; /* Data width in bytes */
51 const uint8_t *charData; /* Pointer to the character data array */
52 } aafontsCharInfo_t;
53
54 typedef struct aafontsFont_s
55 {
56 aafontsFontType_t fontType; /* Anti-aliasing level for the font */
57 uint16_t fontHeight; /* Font height in pixels */
58 uint16_t unknownCharWidth; /* Width for unknown characters */
59 uint16_t heightUpperCase; /* Height in pixels of upper case characters */
60 uint16_t heightLowerCase; /* Height in pixels of lower case characters */
61 uint16_t baseline; /* Font baseline */
62 uint16_t firstChar; /* Unicode address of the first character in the char map */
63 uint16_t lastChar; /* Unicode address of the last character in the char map */
64 const aafontsCharInfo_t *charTable; /* Pointer to the aafontsCharInfo_t array containing the char data */
65 } aafontsFont_t;
66
67 extern const uint16_t COLORTABLE_AA2_WHITEONBLACK[4];
68 extern const uint16_t COLORTABLE_AA2_BLACKONWHITE[4];
69 extern const uint16_t COLORTABLE_AA4_WHITEONBLACK[16];
70 extern const uint16_t COLORTABLE_AA4_BLACKONWHITE[16];
71
72 void aafontsDrawString ( uint16_t x, uint16_t y, const uint16_t * colorTable, const aafontsFont_t *font, char *str );
73 uint16_t aafontsGetStringWidth ( const aafontsFont_t *font, char *str );
74 void aafontsCalculateColorTable ( uint16_t bgColor, uint16_t foreColor, uint16_t *colorTable, size_t tableSize );
75
76 #endif
This page took 0.052449 seconds and 3 git commands to generate.