-
Notifications
You must be signed in to change notification settings - Fork 1
/
di_opaque_bitmap.cpp
129 lines (116 loc) · 4.39 KB
/
di_opaque_bitmap.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// di_opaque_bitmap.cpp - Function definitions for drawing opaque bitmaps
//
// An opaque bitmap is a rectangle of fully opaque pixels of various colors.
//
// Copyright (c) 2023 Curtis Whitley
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
#include "di_opaque_bitmap.h"
#include "esp_heap_caps.h"
#include <cstring>
extern "C" {
IRAM_ATTR void DiOpaqueBitmap_paint(void* this_ptr, const DiPaintParams *params);
}
DiOpaqueBitmap::DiOpaqueBitmap(uint32_t width, uint32_t height, ScrollMode scroll_mode):
DiPrimitiveXYWH(0, 0, width, height) {
switch (scroll_mode) {
case NONE:
case VERTICAL:
m_words_per_line = (width + sizeof(uint32_t) - 1) / sizeof(uint32_t);
m_bytes_per_line = m_words_per_line * sizeof(uint32_t);
m_words_per_position = m_words_per_line * height;
m_bytes_per_position = m_words_per_position * sizeof(uint32_t);
memset(m_pixels, SYNCS_OFF, m_bytes_per_position);
break;
case HORIZONTAL:
case BOTH:
m_words_per_line = (width + sizeof(uint32_t) - 1) / sizeof(uint32_t) + 2;
m_bytes_per_line = m_words_per_line * sizeof(uint32_t);
m_words_per_position = m_words_per_line * height;
m_bytes_per_position = m_words_per_position * sizeof(uint32_t);
memset(m_pixels, SYNCS_OFF, m_bytes_per_position * 4);
break;
}
}
void* DiOpaqueBitmap::operator new(size_t size, uint32_t width, uint32_t height, ScrollMode scroll_mode) {
size_t new_size;
uint32_t wpl;
uint32_t wpp;
uint32_t bpp;
switch (scroll_mode) {
case NONE:
case VERTICAL:
wpl = (width + sizeof(uint32_t) - 1) / sizeof(uint32_t);
wpp = wpl * height;
bpp = wpp * sizeof(uint32_t);
new_size = (size_t)(sizeof(DiOpaqueBitmap) - sizeof(uint32_t) + (bpp));
break;
case HORIZONTAL:
case BOTH:
wpl = (width + sizeof(uint32_t) - 1) / sizeof(uint32_t) + 2;
wpp = wpl * height;
bpp = wpp * sizeof(uint32_t);
new_size = (size_t)(sizeof(DiOpaqueBitmap) - sizeof(uint32_t) + (bpp * 4));
break;
}
void* p = heap_caps_malloc(new_size, MALLOC_CAP_32BIT|MALLOC_CAP_8BIT|MALLOC_CAP_SPIRAM);
return p;
}
void DiOpaqueBitmap::set_position(int32_t x, int32_t y) {
m_x = x;
m_x_extent = m_x + m_width;
m_y = y;
m_y_extent = m_y + m_height;
m_visible_start = m_pixels;
}
void DiOpaqueBitmap::set_position(int32_t x, int32_t y, uint32_t start_line, uint32_t height) {
m_x = x;
m_x_extent = m_x + m_width;
m_y = y;
m_y_extent = m_y + height; // not m_height
m_visible_start = m_pixels + start_line * m_words_per_line;
}
void DiOpaqueBitmap::set_opaque_pixel(int32_t x, int32_t y, uint8_t color) {
set_pixel(x, y, (color & 0x3F) | SYNCS_OFF);
}
void DiOpaqueBitmap::set_pixel(int32_t x, int32_t y, uint8_t color) {
for (uint32_t pos = 0; pos < 4; pos++) {
pixels(m_pixels + pos * m_words_per_position + y * m_words_per_line)[FIX_INDEX(pos + x)] = color;
}
}
/*void DiOpaqueBitmap::clear() {
fill(MASK_RGB(0,0,0));
}
void DiOpaqueBitmap::fill(uint8_t color) {
uint32_t color4 = (((uint32_t)color) << 24) |
(((uint32_t)color) << 16) |
(((uint32_t)color) << 8) |
((uint32_t)color) | SYNCS_OFF_X4;
uint32_t words = m_words_per_line * m_height;
uint32_t* dst = m_pixels;
if (words) {
do {
*dst++ = color4;
} while (--words);
}
}*/
void IRAM_ATTR DiOpaqueBitmap::paint(const DiPaintParams *params) {
DiOpaqueBitmap_paint((void*)this, params);
}