summaryrefslogtreecommitdiff
path: root/window.c
AgeCommit message (Collapse)Author
2023-01-10Use PSF instead of BSF format for fontscflip
This binary file format is much easier to parse.
2023-01-09Implement basic keyboard event handlingcflip
2023-01-08Hook up the editor output to the windowcflip
Now the text editor is visible in the window! There are still escape codes for terminal output all over the place, but this is a good start.
2023-01-08Connect the window and font code to the editor's main functioncflip
2023-01-08Create a simple bitmap font reader and renderercflip
There isn't much reason for the editor to run in a terminal window, so the next step is to draw and get input events from a graphical window using SDL. This commit adds a basic test program that can read a font in the BDF format and display text to the screen. This code will eventually be integrated with the rest of the editor.