Graphic fonts

We know the Bascom font files from the graphic display with a KS108 controller. These controllers don’t have a build in font set, so Bascom creates the font by software and writes the letters pixel by pixel on the screen. We can create or modifier those fonts with the Font generator that’s build in Bascom. With this we have a limited flexibility .

The displays with a T6963 have build in font generator for the size 6×8 or 8×8. Custom fonts like the Euro sign or Greek letters is not (easy) to implement, larger or smaller fonts are also not possible with the build in fonts.

But now we have a routine that’s using the Bascom font files and can be used with all the graphics display supported by Bascom.

You can create your own font (share it with us please) or use one of the font’s supplied with Bascom.

All of the font’s can be inverted and/or rotated in 4 directions.

With the Bascom Locate statement it was not possible to place the text anywhere on the screen. Locate uses an 8×8 matrix to place the text. This routine uses a 1×1 matrix, so you can place the text precise under you graphic image etc.

 

Syntax

Lcdtext string, x , y , fontset , inverse , rotation

Remarks

 String  String to be displayd
 x  Constant or variable with x position.
 y  Constant or variable with y position.
 fontset  Fontset to be used to display the text
 Inverse  0= Normal 1= Inverted
 Rotation  0= Normal , 1=90 deg. 2=180 deg. 3=240 deg.

 

 

 

 

 

 

 

To add or remove fontsets modify these lines in the subroutine;

If Fontset = 1 Then Restore Font8x8
If Fontset = 2 Then Restore Font16x16
If Fontset = 3 Then Restore Font6x8
If Fontset = 4 Then Restore Font5x5
Sorry, but there was no better solution.

These are the name’s that you gave to the font, NOT the filename if you don’t know the font name, open the font file in the font editor, and there it is, right on top.

Don’t forget to $Include your font files at the end of the program.

 

Here are some sample’s created with the demo program.

Ks108
PlayPause
previous arrow
next arrow
Ks108
Ks108
Ks108
T6963c
T6963c
Color display
Color display
previous arrow
next arrow

 

Download it all here

Note : Due a bug in Bascom 1.11.8.8  it’s not possible to use fonts 32×32 or bigger.

Update 1:
Color version is now also available. Designed it for the popular Nokia 6100 displays, but it should work on every colordisplay supported by bascom.

Download the color version

Update 2:
Got mail from Mladen Bruck how lifes in Mostar, Bosnia and Herzegowine.
He optimized the graphicfont code and it should works now 10-15% faster.
Thanks for your contribution Mladen !
Download the optimized version here

 

1'------------------------------------------------------------------
2'                           GRAPHIC FONT
3'     Use the Bascom font file's for all the graphic display's,
4'              include inverted and/or rotated text.
5'        By Evert Dekker 2007 GraphicFont@Evertdekker dotje com
6'                   Created with Bascom-Avr: 1.11.8.8
7'------------------------------------------------------------------
8 
9$regfile = "m128def.DAT"
10$crystal = 7372800
11$baud = 19200
12$hwstack = 100
13$swstack = 120
14$framesize = 100
15 
16Config Graphlcd = 240 * 128 , Dataport = Porta , Controlport = Portc , Ce = 3 , Cd = 0 , Wr = 2 , Rd = 1 , Reset = 4 , Fs = 5 , Mode = 6
17Cursor Off
18Cls
19 
20 
21Declare Sub Lcdtext(byval S As String , Byval Xoffset As Byte , Byval Yoffset As Byte , Byval Fontset As Byte , Byval Inverse As Byte , Byval Rotation As Byte)
22'SYNTAX  Lcdtest String , Xoffset , Yoffset , Fontset , Inverse , Rotation
23'
24'* Xoffset and Yoffset is in pixels, so you can place text on every spot on the display
25'* You determin yourself in the subroutine witch font belongs to the fontset
26 
27 
28'=== Your main prog here ====
29Do
30Lcdtext "5X5 Font" , 10 , 2 , 4 , 0 , 0
31Lcdtext "8X8 Font" , 2 , 120 , 2 , 1 , 3
32Lcdtext "6X8 Font" , 10 , 20 , 3 , 0 , 0
33Lcdtext "16X16 font" , 10 , 30 , 2 , 0 , 0
34Lcdtext "Inverted" , 10 , 85 , 2 , 1 , 0
35Lcdtext "If you can't read this then incr. Swstack" , 1 , 120 , 4 , 0 , 0
36Wait 10
37Cls
38Lcdtext "0 deg.Rotation" , 10 , 10 , 1 , 0 , 0
39Lcdtext "90 deg.Rotation" , 170 , 1 , 1 , 0 , 1
40Lcdtext "180 deg.Rotation" , 120 , 20 , 1 , 0 , 2
41Lcdtext "270 deg.Rotation" , 200 , 120 , 1 , 0 , 3
42Lcdtext "Also inverted" , 150 , 80 , 1 , 1 , 2
43Lcdtext "Every font" , 150 , 100 , 2 , 0 , 2
44Wait 10
45Cls
46Loop
47End
48 
49 
50 
51'=== Sub Routines ===
52Sub Lcdtext(byval S As String , Xoffset As Byte , Yoffset As Byte , Fontset As Byte , Inverse As Byte , Rotation As Byte)
53Local Tempstring As String * 1 , Temp As Byte               'Dim local the variables
54Local A As Byte , Pixels As Byte , Count As Byte , Carcount As Byte , Lus As Byte
55Local Row As Byte , Byteseach As Byte , Blocksize As Byte , Dummy As Byte
56Local Colums As Byte , Columcount As Byte , Rowcount As Byte , Stringsize As Byte
57Local Xpos As Byte , Ypos As Byte , Pixel As Byte , Pixelcount As Byte
58If Inverse > 1 Then Inverse = 0                             'Inverse can't be greater then 1
59If Rotation > 3 Then Rotation = 0                           'There are only 4 rotation's
60Stringsize = Len(s) - 1                                     'Size of the text string -1 because we must start with 0
61For Carcount = 0 To Stringsize                              'Loop for the numbers of caracters that must be displayed
62 
63 If Fontset = 1 Then Restore Font8x8                        'Add or remove here fontset's that you need or not,
64 If Fontset = 2 Then Restore Font16x16                      'this is the name that you gave to the font, NOT the filename
65 If Fontset = 3 Then Restore Font6x8                        'If you dont know the name, open the font file in wordpad, and there it is,
66 If Fontset = 4 Then Restore Font5x5                        'right on top.
67 
68 Temp = Carcount + 1                                        'Cut the text string in seperate caracters
69Tempstring = Mid(s , Temp , 1)
70Read Row : Read Byteseach : Read Blocksize : Read Dummy     'Read the first 4 bytes from the font file
71Temp = Asc(tempstring) - 32                                 'Font files start with caracter 32
72For Lus = 1 To Temp                                         'Do dummie read to point to the correct line in the fontfile
73   For Count = 1 To Blocksize
74    Read Pixels
75   Next Count
76Next Lus
77Colums = Blocksize / Row                                    'Calculate the numbers of colums
78Row = Row * 8                                               'Row is always 8 pixels high = 1 byte, so working with row in steps of 8.
79Row = Row - 1                                               'Want to start with row=0 instead of 1
80Colums = Colums - 1                                         'Same for the colums
81Select Case Rotation
82    Case 0                                                  '0 degrees rotation
83            For Rowcount = 0 To Row Step 8                  'Loop for numbers of rows
84                  A = Rowcount + Yoffset
85                  For Columcount = 0 To Colums              'Loop for numbers of Colums
86                      Read Pixels : If Inverse = 1 Then Toggle Pixels       'Read the byte from the file and if inverse = true then invert de byte
87                      Xpos = Columcount                     'Do some calculation to get the caracter on the correct Xposition
88                      Temp = Carcount * Byteseach
89                      Xpos = Xpos + Temp
90                      Xpos = Xpos + Xoffset
91                          For Pixelcount = 0 To 7           'Loop for 8 pixels to be set or not
92                             Ypos = A + Pixelcount          'Each pixel on his own spot
93                             Pixel = Pixels.0               'Set the pixel (or not)
94                             Pset Xpos , Ypos , Pixel       'Finaly we can set the pixel
95                             Shift Pixels , Right           'Shift the byte 1 bit to the right so the next pixel comes availible
96                          Next Pixel
97                  Next Columcount
98            Next Rowcount
99    Case 1                                                  '90 degrees rotation
100            For Rowcount = Row To 0 Step -8                 'Loop is now counting down
101                  A = Rowcount + Xoffset
102                  A = A - 15                                'Correction to set Xpos on Xoffset with rotation
103                  For Columcount = 0 To Colums
104                      Read Pixels : If Inverse = 1 Then Toggle Pixels
105                      Xpos = Columcount
106                      Temp = Carcount * Byteseach
107                      Xpos = Xpos + Temp
108                      Xpos = Xpos + Yoffset                 'We want that Xoffset is still Xoffset, so we need here the change from x to y
109                             For Pixelcount = 7 To 0 Step -1
110                                Ypos = A + Pixelcount
111                                Pixel = Pixels.0
112                                Pset Ypos , Xpos , Pixel
113                                Shift Pixels , Right
114                             Next Pixel
115                  Next Columcount
116            Next Rowcount
117    Case 2                                                  '180 degrees rotation
118            For Rowcount = Row To 0 Step -8
119                  A = Rowcount + Yoffset
120                  A = A - 7                                 'Correction to set Xpos on Xoffset with rotation
121                  For Columcount = Colums To 0 Step -1
122                      Read Pixels : If Inverse = 1 Then Toggle Pixels
123                      Xpos = Columcount
124                      Temp = Carcount * Byteseach
125                      Xpos = Xpos - Temp
126                      Xpos = Xpos - 8                       'Correction to set Xpos on Xoffset with rotation
127                      Xpos = Xpos + Xoffset
128                          For Pixelcount = 7 To 0 Step -1
129                             Ypos = A + Pixelcount
130                             Pixel = Pixels.0
131                             Pset Xpos , Ypos , Pixel
132                             Shift Pixels , Right
133                          Next Pixel
134                  Next Columcount
135            Next Rowcount
136    Case 3                                                  '270 degrees rotation
137            For Rowcount = 0 To Row Step 8
138                  A = Rowcount + Xoffset
139                    For Columcount = Colums To 0 Step -1
140                      Read Pixels : If Inverse = 1 Then Toggle Pixels
141                      Xpos = Columcount
142                      Temp = Carcount * Byteseach
143                      Xpos = Xpos - Temp
144                      Xpos = Xpos - 8                       'Correction to set Xpos on Xoffset with rotation
145                      Xpos = Xpos + Yoffset
146                             For Pixelcount = 0 To 7
147                                Ypos = A + Pixelcount
148                                Pixel = Pixels.0
149                                Pset Ypos , Xpos , Pixel
150                                Shift Pixels , Right
151                             Next Pixel
152                  Next Columcount
153            Next Rowcount
154End Select
155Next Carcount
156End Sub                                                     'End of this amazing subroutine
157 
158 
159'=== Includes ===
160$include "Font8x8.font"                       'Includes here your font files
161$include "Font16x16.font"                     'If you don't need the files in your program, don't include them,
162$include "Font6x8.font"                       'these are flash memory eaters.
163$include "Font5x5.font"