Canvas graphics library  0.1.0
This library is developed to perform canvas graphics in memory buffers
canvas_types.h
Go to the documentation of this file.
1 /*
2  MIT License
3 
4  Copyright (c) 2017-2019, Alexey Dynda
5 
6  Permission is hereby granted, free of charge, to any person obtaining a copy
7  of this software and associated documentation files (the "Software"), to deal
8  in the Software without restriction, including without limitation the rights
9  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  copies of the Software, and to permit persons to whom the Software is
11  furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in all
14  copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  SOFTWARE.
23 */
28 #pragma once
29 
30 #include "canvas/UserSettings.h"
31 
32 #if defined(ARDUINO)
33 #include <Arduino.h>
34 #elif defined(__AVR__)
35 #include <avr/pgmspace.h>
36 #else
37 #endif
38 
39 #include <stdint.h>
40 #include <stddef.h>
41 
43 #define SSD1306_MORE_CHARS_REQUIRED 0xffff
44 
45 #ifndef DOXYGEN_SHOULD_SKIP_THIS
46 #ifndef PROGMEM
47 #define PROGMEM
48 #endif
49 #endif
50 
52 #define RGB_COLOR8(r,g,b) ( (r & 0xE0) | ((g >> 3)&0x1C) | (b>>6) )
53 
55 #define GRAY_COLOR4(gray) ( ((gray >> 4) & 0x0F) | (gray & 0xF0) )
56 
58 #define RGB_COLOR4(r,g,b) ( (r >> 2) + (g >> 1) + (b >> 2) )
59 
61 #define RGB8_TO_GRAY4(rgb) ( (rgb >> 6) + ((rgb >> 2) & 0x07) + (rgb & 0x03) )
62 
64 #define RGB_COLOR16(r,g,b) ( ((r<<8) & 0xF800) | ((g << 3)&0x07E0) | (b>>3) )
65 
67 #define RGB8_TO_RGB16(c) ( (((uint16_t)c & 0b11100000) << 8) | \
68  (((uint16_t)c & 0b00011100) << 6) | \
69  (((uint16_t)c & 0b00000011) << 3) )
70 
72 #define RGB16_TO_RGB8(c) ( ((uint16_t)(c >> 8) & 0b11100000) | \
73  ((uint16_t)(c >> 6) & 0b00011100) | \
74  ((uint16_t)(c >> 3) & 0b00000011) )
75 
76 #if defined(__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__) || \
77  defined(__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__)
78 
79 typedef int8_t lcdint_t;
81 typedef uint8_t lcduint_t;
82 #else
83 
84 typedef int lcdint_t;
86 typedef unsigned int lcduint_t;
87 #endif
88 
90 typedef enum
91 {
92  STYLE_NORMAL,
93  STYLE_BOLD,
94  STYLE_ITALIC,
95 } EFontStyle;
96 
97 enum
98 {
99  CANVAS_MODE_BASIC = 0x00,
106 };
107 
109 typedef enum
110 {
111  FONT_SIZE_NORMAL = 0,
112  FONT_SIZE_2X = 1,
113  FONT_SIZE_4X = 2,
114  FONT_SIZE_8X = 3,
115 } EFontSize;
116 
117 #pragma pack(push, 1)
118 
119 typedef struct
120 {
121  uint8_t type;
122  uint8_t width;
123  uint8_t height;
124  uint8_t ascii_offset;
126 #pragma pack(pop)
127 
129 typedef struct
130 {
132  uint8_t count;
133  uint8_t pages;
134  uint8_t glyph_size;
135  const uint8_t *primary_table;
136 #ifdef CONFIG_SSD1306_UNICODE_ENABLE
137  const uint8_t *secondary_table;
138 #endif
140 
142 typedef struct
143 {
144  uint8_t width;
145  uint8_t height;
146  uint8_t spacing;
147  const uint8_t *glyph;
148 } SCharInfo;
149 
153 typedef struct
154 {
156  const char **items;
158  uint8_t count;
160  uint8_t selection;
162  uint8_t oldSelection;
164  uint8_t scrollPosition;
165 } SAppMenu;
166 
uint8_t height
char height in pixels
Definition: canvas_types.h:145
uint8_t lcduint_t
Definition: canvas_types.h:81
const uint8_t * primary_table
font chars bits
Definition: canvas_types.h:135
uint8_t width
width in pixels
Definition: canvas_types.h:122
int8_t lcdint_t
Definition: canvas_types.h:79
uint8_t type
font type: 0 - Fixed Font
Definition: canvas_types.h:121
uint8_t height
height in pixels
Definition: canvas_types.h:123
uint8_t ascii_offset
ascii offset
Definition: canvas_types.h:124
uint8_t selection
currently selected item. Internally updated.
Definition: canvas_types.h:160
uint8_t scrollPosition
position of menu scrolling. Internally updated
Definition: canvas_types.h:164
uint8_t count
count of menu items in the menu
Definition: canvas_types.h:158
uint8_t width
char width in pixels
Definition: canvas_types.h:144
const uint8_t * secondary_table
font chars bits
Definition: canvas_types.h:137
SFontHeaderRecord h
record, containing information on font
Definition: canvas_types.h:131
const uint8_t * glyph
char data, located in progmem.
Definition: canvas_types.h:147
uint8_t spacing
additional spaces after char in pixels
Definition: canvas_types.h:146
EFontStyle
Definition: canvas_types.h:90
EFontSize
Definition: canvas_types.h:109
uint8_t glyph_size
glyph size in bytes
Definition: canvas_types.h:134
uint8_t pages
height in pages (each page height is 8-pixels)
Definition: canvas_types.h:133
uint8_t count
count of characters
Definition: canvas_types.h:132
uint8_t oldSelection
selected item, when last redraw operation was performed. Internally updated.
Definition: canvas_types.h:162
const char ** items
list of menu items of the menu
Definition: canvas_types.h:156