This is an old revision of the document!
Creating a custom font is a very similar process to creating a Vircon32 texture sheet, simply scaled up depending on how many characters are being included.
After drawing up the font sheet .png file with every character, use Vircon32's functions of #define
and define_region_matrix()
to establish sequential IDs for each character. To keep the program code neat, the code regarding the font definitions and functions will be stored in a header file.
Note: Since our font texture sheet is in a separate file from our main texture file for the game, our .xml file will need to be updated to account for both files. When using select_texture()
, the number that gets input directly correlates to the order of the files in the .xml. (ie, 0 = first file, 1 = second file, etc. )