forked from dsigma/glcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
text_tiny.c
137 lines (115 loc) · 4.19 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
/**
\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"
void glcd_tiny_set_font(const char * font_table, uint8_t width, uint8_t height, char start_char, char end_char)
{
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;
}
uint8_t glcd_get_current_font_height(void) {
return(font_current.height);
}
uint8_t glcd_get_current_font_width(void) {
return(font_current.width);
}
#if 0
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++ ) {
//buffer_packing_struct_t bps;
//glcd_get_buffer_pos(x, line, &bps);
glcd_buffer[x + (line * GLCD_LCD_WIDTH)] = *( font_current.font_table + ((c - font_current.start_char) * (font_current.width)) + i );
glcd_update_bbox(x, line, x, line + font_current.width);
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 :( */
}
}
#endif
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++ ) {
dat = *( font_current.font_table + ((c - font_current.start_char) * (font_current.width)) + i );
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);
}