Canvas graphics library  0.1.0
This library is developed to perform canvas graphics in memory buffers
adafruit.h
Go to the documentation of this file.
1 /*
2  MIT License
3 
4  Copyright (c) 2018-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 */
35 #pragma once
36 
37 #include "lcd_hal/io.h"
38 
39 #if defined(CONFIG_ADAFRUIT_GFX_ENABLE)
40 
41 #include "nano_gfx_types.h"
42 
43 #ifndef DOXYGEN_SHOULD_SKIP_THIS
44 /* This is special case for non-Arduino platforms, since Adafruit requires *
45  * Arduino libraries support */
46 #ifndef ARDUINO
47 #define ARDUINO 100
48 #include "Adafruit_GFX.h"
49 #undef ARDUINO
50 #else
51 #include "Adafruit_GFX.h"
52 #endif
53 
54 #endif // DOXYGEN_SHOULD_SKIP_THIS
55 
67 template <uint8_t BPP>
68 class AdafruitCanvasOps: public Adafruit_GFX
69 {
70 public:
73 
75  static const uint8_t BITS_PER_PIXEL = BPP;
76 
85  AdafruitCanvasOps(lcduint_t w, lcduint_t h, uint8_t *buffer)
86  : Adafruit_GFX(w, h)
87  , offset{0}
88  , m_buffer(buffer)
89  {
90  }
91 
100  void drawPixel(int16_t x, int16_t y, uint16_t color) override;
101 
107  void setOffset(lcdint_t ox, lcdint_t oy) { offset.x = ox; offset.y = oy; };
108 
109 #ifndef DOXYGEN_SHOULD_SKIP_THIS
110  // We need to override Adafruit GFX implementation of fillScreen, because
111  // NanoEngine uses offsets, when refreshing screen content.
112  void fillScreen(uint16_t color) override
113  {
114  fillRect(offset.x, offset.y, _width, _height, color);
115  }
116 #endif
117 
118 protected:
119 
121  uint8_t *m_buffer;
122 
123 private:
124  inline void rotatePosition(int16_t &x, int16_t &y)
125  {
126  switch (getRotation()) {
127  case 1:
128  canvas_swap_data(x, y, int16_t);
129  x = WIDTH - x - 1;
130  break;
131  case 2:
132  x = WIDTH - x - 1;
133  y = HEIGHT - y - 1;
134  break;
135  case 3:
136  canvas_swap_data(x, y, int16_t);
137  y = HEIGHT - y - 1;
138  break;
139  }
140 
141  }
142 };
143 
147 template <uint8_t BPP>
149 {
150 public:
152 
158  virtual void blt(lcdint_t x, lcdint_t y) = 0;
159 
163  virtual void blt() = 0;
164 };
165 
167 //
168 // 1-BIT GRAPHICS
169 //
171 
177 {
178 public:
179  using AdafruitCanvasBase::AdafruitCanvasBase;
180 };
181 
182 #ifndef DOXYGEN_SHOULD_SKIP_THIS
183 template <>
184 void AdafruitCanvasOps<1>::drawPixel(int16_t x, int16_t y, uint16_t color)
185 {
186  x -= offset.x;
187  y -= offset.y;
188  if ((x < 0) || (x >= width()) || (y < 0) || (y >= height()))
189  {
190  return;
191  }
192  rotatePosition(x, y);
193 
194  switch (color)
195  {
196  case 1: m_buffer[x+ (y/8)*WIDTH] |= (1 << (y&7)); break;
197  case 0: m_buffer[x+ (y/8)*WIDTH] &= ~(1 << (y&7)); break;
198  case 2: m_buffer[x+ (y/8)*WIDTH] ^= (1 << (y&7)); break;
199  }
200 }
201 #endif // DOXYGEN_SHOULD_SKIP_THIS
202 
204 //
205 // 8-BIT GRAPHICS
206 //
208 
215 {
216 public:
217  using AdafruitCanvasBase::AdafruitCanvasBase;
218 };
219 
220 #ifndef DOXYGEN_SHOULD_SKIP_THIS
221 template <>
222 void AdafruitCanvasOps<8>::drawPixel(int16_t x, int16_t y, uint16_t color)
223 {
224  x -= offset.x;
225  y -= offset.y;
226  if ((x < 0) || (x >= width()) || (y < 0) || (y >= height()))
227  {
228  return;
229  }
230  rotatePosition(x, y);
231 
232  m_buffer[x+y*WIDTH] = color;
233 }
234 #endif // DOXYGEN_SHOULD_SKIP_THIS
235 
237 //
238 // 16-BIT GRAPHICS
239 //
241 
249 {
250 public:
251  using AdafruitCanvasBase::AdafruitCanvasBase;
252 };
253 
254 #ifndef DOXYGEN_SHOULD_SKIP_THIS
255 template <>
256 void AdafruitCanvasOps<16>::drawPixel(int16_t x, int16_t y, uint16_t color)
257 {
258  x -= offset.x;
259  y -= offset.y;
260  if ((x < 0) || (x >= width()) || (y < 0) || (y >= height()))
261  {
262  return;
263  }
264  rotatePosition(x, y);
265 
266  m_buffer[(x+y*WIDTH) * 2 + 0] = color;
267  m_buffer[(x+y*WIDTH) * 2 + 1] = color >> 8;
268 }
269 #endif // DOXYGEN_SHOULD_SKIP_THIS
270 
275 #endif // CONFIG_ADAFRUIT_GFX_ENABLE
276 
AdafruitCanvasOps(lcduint_t w, lcduint_t h, uint8_t *buffer)
Definition: adafruit.h:85
uint8_t lcduint_t
Definition: canvas_types.h:81
void setOffset(lcdint_t ox, lcdint_t oy)
Definition: adafruit.h:107
int8_t lcdint_t
Definition: canvas_types.h:79
lcdint_t y
Definition: point.h:45
uint8_t * m_buffer
Definition: adafruit.h:107
#define canvas_swap_data(a, b, type)
Definition: canvas_types.h:52
static const uint8_t BITS_PER_PIXEL
Definition: adafruit.h:75
lcdint_t x
Definition: point.h:43
void drawPixel(int16_t x, int16_t y, uint16_t color) override
NanoPoint offset
Definition: adafruit.h:72