-
Notifications
You must be signed in to change notification settings - Fork 47
/
text_tiny.c
177 lines (153 loc) · 5.31 KB
/
text_tiny.c
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/**
\file text_tiny.c
\brief Functions relating to using tiny 5x7 text fonts.
\author Andy Gock
*/
/*
Copyright (c) 2012, Andy Gock
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of Andy Gock nor the
names of its contributors may 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 ANDY GOCK 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.
*/
#include "glcd.h"
#if defined(GLCD_DEVICE_AVR8)
void glcd_tiny_set_font(PGM_P font_table, uint8_t width, uint8_t height, char start_char, char end_char)
#else
void glcd_tiny_set_font(const char * font_table, uint8_t width, uint8_t height, char start_char, char end_char)
#endif
{
font_current.font_table = font_table;
font_current.width = width;
font_current.height = height;
font_current.start_char = start_char;
font_current.end_char = end_char;
font_current.table_type = STANG;
}
void glcd_tiny_draw_char(uint8_t x, uint8_t line, char c)
{
uint8_t i;
/* Only works for fonts < 8 bits in height */
if (font_current.height >= 8) {
return;
}
if (c < font_current.start_char || c > font_current.end_char) {
c = '.';
}
if ( line >= GLCD_LCD_HEIGHT / (font_current.height + 1) ) {
return;
}
if ( (x+font_current.width) >= GLCD_LCD_WIDTH ) {
return;
}
glcd_update_bbox(x, line*(font_current.height + 1), x+font_current.width, line*(font_current.height + 1) + (font_current.height + 1));
for ( i = 0; i < font_current.width; i++ ) {
#if defined(GLCD_DEVICE_AVR8)
glcd_buffer_selected[x + (line * GLCD_LCD_WIDTH)] = pgm_read_byte( font_current.font_table + ((c - font_current.start_char) * (font_current.width)) + i );
#else
glcd_buffer_selected[x + (line * GLCD_LCD_WIDTH)] = *( font_current.font_table + ((c - font_current.start_char) * (font_current.width)) + i );
#endif
x++;
}
}
void glcd_tiny_draw_string(uint8_t x, uint8_t line, char *str)
{
if (font_current.height >= 8) {
return;
}
while (*str) {
glcd_tiny_draw_char(x, line, *str++);
x += (font_current.width + 1);
if ((x + font_current.width + 1) > GLCD_LCD_WIDTH) {
x = 0; /* Ran out of this line */
line++;
}
if (line >= (GLCD_LCD_HEIGHT/(font_current.height + 1)))
return; /* Ran out of space :( */
}
}
#if defined(GLCD_DEVICE_AVR8)
void glcd_tiny_draw_string_P(uint8_t x, uint8_t line, PGM_P str)
#else
void glcd_tiny_draw_string_P(uint8_t x, uint8_t line, const char *str)
#endif
{
if (font_current.height >= 8) {
return;
}
while (1) {
#if defined(GLCD_DEVICE_AVR8)
char c = pgm_read_byte(str++);
#else
char c = *(str++);
#endif
if (!c)
return;
glcd_tiny_draw_char(x, line, c);
x += (font_current.width + 1);
if ((x + font_current.width + 1) > GLCD_LCD_WIDTH) {
x = 0; /* Ran out of this line */
line++;
}
if (line >= (GLCD_LCD_HEIGHT/(font_current.height + 1)))
return; /* Ran out of space :( */
}
}
void glcd_tiny_draw_string_ammend(char *str) {
glcd_scroll_line();
glcd_tiny_draw_string(0, (GLCD_LCD_HEIGHT/8-1), str);
glcd_write();
}
void glcd_tiny_draw_string_ammend_P(const char *str) {
glcd_scroll_line();
glcd_tiny_draw_string_P(0, (GLCD_LCD_HEIGHT/8-1), str);
glcd_write();
}
void glcd_tiny_invert_line(uint8_t line)
{
glcd_invert_area(0,line*8,GLCD_LCD_WIDTH-1,8);
}
void glcd_tiny_draw_char_xy(uint8_t x, uint8_t y, char c)
{
uint8_t i;
uint8_t xvar, yvar;
uint8_t dat;
/* Only works for fonts < 8 bits in height */
/* Check all important bounds requirements are okay */
if ( (y >= GLCD_LCD_HEIGHT) || ((x+font_current.width) >= GLCD_LCD_WIDTH) || (font_current.height >= 8) || font_current.table_type != STANG) {
return;
}
if (c < font_current.start_char || c > font_current.end_char) {
c = '.';
}
xvar = x;
for ( i = 0; i < font_current.width; i++ ) {
#if defined(GLCD_DEVICE_AVR8)
dat = pgm_read_byte( font_current.font_table + ((c - font_current.start_char) * (font_current.width)) + i );
#else
dat = *( font_current.font_table + ((c - font_current.start_char) * (font_current.width)) + i );
#endif
for (yvar = 0; yvar < font_current.height; yvar++) {
glcd_set_pixel(xvar,y+yvar, (dat & (1<<yvar) ? 1 : 0) );
}
xvar++;
}
glcd_update_bbox(x, y, x+font_current.width,y+font_current.height);
}