├── README.md ├── bitmap-fonts ├── p8-raize-mono-oem.fon ├── p8-raize-mono.fon ├── p8-raize-oem.fon ├── p8-raize.fon ├── p8-rom-mono-oem.fon ├── p8-rom-mono.fon ├── p8-rom-oem.fon ├── p8-rom.fon ├── p8-tektite-mono-oem.fon ├── p8-tektite-mono.fon ├── p8-tektite-oem.fon ├── p8-tektite.fon ├── p8-tester-mono-oem.fon ├── p8-tester-mono.fon ├── p8-tester-oem.fon └── p8-tester.fon ├── github-images ├── P8DejaVuMonoOEM.png ├── P8DejaVuOEM.png ├── p8-charmap.png ├── p8-raize-mono-oem.png ├── p8-raize-oem.png ├── p8-rom-mono-oem.png ├── p8-rom-oem.png ├── p8-tektite-mono-oem.png ├── p8-tektite-oem.png ├── p8-tester-mono-oem.png ├── p8-tester-oem.png ├── screenshot-st3-npp-p8.png ├── tektite_oem_orig_matt.gif └── tektite_simon_matt.gif └── vector-fonts ├── DejaVu ├── License.html ├── P8DejaVu-Bold.sfd ├── P8DejaVu-Bold.ttf ├── P8DejaVu-BoldOblique.sfd ├── P8DejaVu-BoldOblique.ttf ├── P8DejaVu-Oblique.sfd ├── P8DejaVu-Oblique.ttf ├── P8DejaVu.sfd ├── P8DejaVu.ttf ├── P8DejaVuMono-Bold.sfd ├── P8DejaVuMono-Bold.ttf ├── P8DejaVuMono-BoldOblique.sfd ├── P8DejaVuMono-BoldOblique.ttf ├── P8DejaVuMono-Oblique.sfd ├── P8DejaVuMono-Oblique.ttf ├── P8DejaVuMono.sfd ├── P8DejaVuMono.ttf ├── P8DejaVuMonoOEM-Bold.sfd ├── P8DejaVuMonoOEM-Bold.ttf ├── P8DejaVuMonoOEM-BoldOblique.sfd ├── P8DejaVuMonoOEM-BoldOblique.ttf ├── P8DejaVuMonoOEM-Oblique.sfd ├── P8DejaVuMonoOEM-Oblique.ttf ├── P8DejaVuMonoOEM.sfd ├── P8DejaVuMonoOEM.ttf ├── P8DejaVuOEM-Bold.sfd ├── P8DejaVuOEM-Bold.ttf ├── P8DejaVuOEM-BoldOblique.sfd ├── P8DejaVuOEM-BoldOblique.ttf ├── P8DejaVuOEM-Oblique.sfd ├── P8DejaVuOEM-Oblique.ttf ├── P8DejaVuOEM.sfd └── P8DejaVuOEM.ttf ├── P8-ISO8859-1.nam └── P8-Symbol.nam /README.md: -------------------------------------------------------------------------------- 1 | # PICO-8 Programming Fonts 2 | 3 | Herein lies a collection of fonts I've modified for PICO-8 programming. Why? I can't say, really, other than it was a small curiosity I was tempted to solve. 4 | 5 | ![Screenshot of Sublime Text, Notepad++, and PICO-8](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/screenshot-st3-npp-p8.png) 6 |
_Screenshot of Sublime Text, Notepad++, and PICO-8, all displaying the same p8 file._ 7 | 8 | ### Encoding 9 | 10 | It came up elsewhere what the p8 encoding might be. It is clearly a custom form of Extended ASCII... or, as I think of it, `P8SCII` (first! :grin:). But that's just my opinion. Ask the author what he calls it, if anything. Regardless, it's an 8-bit character set right now and -- judging by where the current extended characters sit (on top of Windows 125x, ISO 8859-x, and Unicode control characters) -- forever. For more tables of this, [see my P8SCII wiki](https://github.com/juanitogan/p8-programming-fonts/wiki/P8SCII). 11 | 12 | ![P8SCII Character Set and P8SCII mapped to Windows 1252](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-charmap.png) 13 |
_P8SCII mapped to Windows 1252 (also the same mapping for ISO 8859-1, etc)._ 14 | 15 | :mega: If working on P8 code in an external editor, open and save with a DOS encoding if you can, such as Code Page 437. This works well in Sublime Text (as "DOS (CP 437)") and in Notepad++ (as either "ANSI" or "Western European -> OEM-US") and probably most others. 16 | 17 | Saving as Windows 1252 can _appear_ to preserve the embedded extended characters when using these fonts... but don't be fooled, you may find differently when you reload the file in PICO-8. To fix, reload in your editor as Windows 1252 and save as CP 437. ISO 8859-1 won't work unless you get really lucky with your editor ("No, your _text_ editor!"). Feeling lucky? Saving as UTF-8 will destroy the encoding, for sure, with multibyte replacements. 18 | 19 | In my opinion, however, it is safer to escape the extended P8SCII characters than embed them: 20 | 21 | ♥ = `\135` or `\x87` 22 | 23 | ## Editor Specifics 24 | 25 | The comments here will, hopefully, tell you how to use the fonts in most editors, regardless of whether or not it is listed here. 26 | 27 | ### Sublime Text 28 | 29 | Here are some useful preferences to set in "Settings - Syntax Specific" for your \*.p8 files: 30 | ```json 31 | "font_face": "PICO-8 Raize", 32 | "fallback_encoding": "DOS (CP 437)", 33 | "default_encoding": "DOS (CP 437)", 34 | "show_encoding": true, 35 | "rulers": [32] 36 | ``` 37 | 38 | Sublime won't load OEM fonts (which may be just as well since some editors don't display them completely anyway) so use the non-OEM variants, mono or variable-width, your choice. 39 | 40 | Note: Sublime has an odd limitation when working with bitmap FON fonts that a few of you may run into. That is, if you change the text zoom in Windows to, say, 150% (if you're on a high-DPI display and losing your youth vision like me), Sublime will not let you zoom all the way out with many FON fonts. The furthest I can zoom out in Sublime with my current Windows display settings is 2x the actual bitmap size for all FON files I have here thus far (I believe the Windows settings are part of the cause--not sure yet). The really bizarre thing is that Sublime will let you zoom all the way out on all but the smallest font in a FON file [if the file has more than one font in it]. Thus, the workaround might be to put a tiny font in all files (such as the 4x6 ROM font) but I don't care to go down that hacky road, so good luck getting Sublime to care enough to fix this. 41 | 42 | If working with TrueType or OpenType fonts in Windows with Sublime, the secret to turning off antialiasing is to set GDI mode as well: 43 | ```json 44 | "font_options": [ "gdi", "no_antialias" ] 45 | ``` 46 | 47 | Another useful feature to enable is to install the Auto Fold package and modify it for \*.p8 files to hide the non-code parts of the file. See: [Using Sublime Text and Auto Fold with PICO-8 files](https://github.com/juanitogan/p8-programming-fonts/wiki/Using-Sublime-Text-and-Auto-Fold-with-PICO-8-files). 48 | 49 | Also, see: [PICO-8 syntax highlighting in Sublime Text](https://github.com/juanitogan/p8-programming-fonts/wiki/PICO-8-syntax-highlighting-in-Sublime-Text). 50 | 51 | ### Notepad++ 52 | 53 | Notepad++ works well with any of these fonts. If loading and saving as "ANSI" use the OEM variants. If loading and saving as "OEM-US" use the non-OEM variants. Sounds a little backwards, eh? But it makes some sense if you understand how code pages get translated by OSs. 54 | 55 | Note: If using TrueType fonts that contain the double-wide extended characters, Notepad++ doesn't always get the spacing right, at some sizes, for the gap between the single- and double-wide characters. For some wacky reason, Notepad++ sets its own character spacing. 56 | 57 | ### Notepad 58 | 59 | You don't want to use Windows' Notepad because it doesn't support the Unix line terminators that PICO-8 uses. I thought I would mention it, however, because it is one of those programs that will only display correctly with the OEM variants of these fonts. 60 | 61 | UPDATE: Notepad added support or Unix files in 2019 so, um, go ahead and knock yourself out with a notepad if you like. 62 | 63 | # The Fonts 64 | 65 | Thus far, only one TrueType font (DejaVu) and a few Windows FON bitmap fonts are available here. I could convert the bitmap fonts to Unix/Linux types but I am not set up for testing those conversions so I'll wait for others to do that work, if anyone chooses to, and include them via pull request. But is that really needed anymore considering [FreeType](https://en.wikipedia.org/wiki/FreeType) (for Linux, etc.) now supports FON as well? 66 | 67 | Creating patch files for various vector fonts is also a possibility (such as for Consolas, what I currently use) but I have no plans to engage in such things at the moment because licensing would likely require that I patch them instead of mod them (which would then require maintaining patches for all the various versions scattered across the world). If you doing the mod yourself, this post of mine may be of some help: [How To Make a Snap-to Grid In FontForge](https://namethattech.wordpress.com/2017/03/22/how-to-make-a-snap-to-grid-in-fontforge/). 68 | 69 | #### Naming Legend 70 | 71 | | Suffix | Spacing | Encoding | Who | 72 | | -------- | ------- | -------- | --- | 73 | | (none) | Double-wide extended chars | Win 1252, ISO 8859-1, etc | What most of you probably want | 74 | | **OEM** | Double-wide extended chars | OEM, Symbol | What most of the rest of you want | 75 | | **Mono** | Fully monospaced | Win 1252, ISO 8859-1, etc | The few, the unproud, the regular | 76 | | **Mono OEM** | Fully monospaced | OEM, Symbol | Old-schoolers | 77 | 78 | ### PICO-8 ROM 79 | ![PICO-8 ROM font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-rom-oem.png) 80 |
![PICO-8 ROM font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-rom-mono-oem.png) 81 | 82 | I really didn't want to take the time to create this set -- because I don't see the point in punishing yourself with it -- I did enough of that with bad fonts ***and*** displays way back somewhere in the last century. Isn't the primary point of third-party code editors to bring consistency to all your languages... and not diversity? But, I knew I would be pestered for these anyway if I didn't create them, so here they are in all their "dune" glory (you might be able to figure out what that means if you find this 4x6 font to be worse than all other 4x6 fonts like I do). I even created these as multi-font FON files (same font in multiple bitmap resolutions) so that your editor should let you zoom in pretty big before Windows decides you're totally insane and replaces it with a default vector font. 83 | * Windows FON fonts: 84 | * [**PICO-8 ROM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-rom.fon) 85 | * [**PICO-8 ROM OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-rom-oem.fon) 86 | * [**PICO-8 ROM Mono**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-rom-mono.fon) 87 | * [**PICO-8 ROM Mono OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-rom-mono-oem.fon) 88 | * In my opinion, you want these over the TTFs because they won't _aa-blur_ on you. 89 | * TrueType fonts: 90 | * [PICO-8 forum discussion: PICO-8.ttf + variants](http://www.lexaloffle.com/bbs/?tid=3760) 91 | * Hopefully, these will be updated soon to the Windows-1252/ISO-8859-1 mapping (so that I don't feel tempted to build my own). I'm not sure if the OEM mapping (Symbol encoding, really, in TrueType) is possible with the FontStruct tool these were created in. 92 | 93 | ### PICO-8 Tektite 94 | ![PICO-8 Tektite font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-tektite-oem.png) 95 |
![PICO-8 Tektite font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-tektite-mono-oem.png) 96 | 97 | This is the first font I worked on... because, well, it was just sitting there, begging to be tweaked, and it seems to have a bit of a fan base for some reason. I call this one a semi-sane choice for programming. It is a very VGA-ish 9x16. Plus, I added an extra line of "external leading" because it looks better with more line spacing. But, few editors pay attention to that attribute (_HxD_ being the only one I tested that does) so you may want to tell your editor to vertically space it more. If you like Tektite, you can get the matching set of non-P8 versions (that I also modified a bit from the original Tektite font). 98 | * Windows FON fonts: 99 | * [**PICO-8 Tektite**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tektite.fon) 100 | * [**PICO-8 Tektite OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tektite-oem.fon) 101 | * [**PICO-8 Tektite Mono**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tektite-mono.fon) 102 | * [**PICO-8 Tektite Mono OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tektite-mono-oem.fon) 103 | * Matching fonts (which may also be good for roguelike games) hosted in my [mkwinfont](https://github.com/juanitogan/mkwinfont) project: 104 | * [**Tektite**](https://github.com/juanitogan/mkwinfont/raw/master/fonts/tektite16x9.fon) (Windows 1252, ISO-8859-1, "Font has XWindows encoding" option in PuTTY) 105 | * GIF showing Simon's mod versus my own 106 | * [**Tektite OEM**](https://github.com/juanitogan/mkwinfont/raw/master/fonts/tektite16x9oem.fon) (CP 437, OEM-US, PC-8) 107 | * GIF showing original versus my mod 108 | 109 | ### PICO-8 MSTester 110 | ![PICO-8 MSTester font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-tester-oem.png) 111 |
![PICO-8 MSTester font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-tester-mono-oem.png) 112 | 113 | This one is a formerly-sane choice for programming. It is a squished VGA-ish of 8x12. This is a sample font that was included with some Microsoft sample code for building a FNT editor, ages ago. Thus, it sounds like public domain to me even though it looks suspiciously like an old version of **Fixedsys**. I did descend the brackets a bit -- the curly brackets were hardly recognizable. Otherwise, unchanged in the 7-bit region. 114 | * Windows FON fonts: 115 | * [**PICO-8 MSTester**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tester.fon) 116 | * [**PICO-8 MSTester OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tester-oem.fon) 117 | * [**PICO-8 MSTester Mono**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tester-mono.fon) 118 | * [**PICO-8 MSTester Mono OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-tester-mono-oem.fon) 119 | 120 | ### PICO-8 Raize 121 | ![PICO-8 Raize font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-raize-oem.png) 122 |
![PICO-8 Raize font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/p8-raize-mono-oem.png) 123 | 124 | This one is a fairly-sane choice for programming. It comes in many sizes so I chose the fairly large 11x22 regular for some variety here (maybe I should include the 11x22 bold as well... but I'm bored with this P8 font stuff already and anxious to get back to game building). I looked at ProFont, Proggy, Terminus, and a few others, and decided I liked Raize the best even though I'm not a huge fan of some of the squarish characters and dislike the high placement of `+` and `-`. So, now you have to live with it or make your own mod of your favorite. I'm not entirely sure it is licensed for modding like most of the others I looked at are; it is copyrighted by Raize Software and given out as free software with no license details. 125 | * Windows FON fonts: 126 | * [**PICO-8 Raize**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-raize.fon) 127 | * [**PICO-8 Raize OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-raize-oem.fon) 128 | * [**PICO-8 Raize Mono**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-raize-mono.fon) 129 | * [**PICO-8 Raize Mono OEM**](https://github.com/juanitogan/p8-programming-fonts/raw/master/bitmap-fonts/p8-raize-mono-oem.fon) 130 | * Matching fonts: 131 | * [Raize Software](http://www.raize.com/DevTools/Tools/RzFont.asp) - Three sizes in regular and bold, plus Unix/Linux versions 132 | 133 | ### PICO-8 DejaVu 134 | ![PICO-8 DejaVu font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/P8DejaVuOEM.png) 135 |
![PICO-8 DejaVu font preview](https://github.com/juanitogan/p8-programming-fonts/blob/master/github-images/P8DejaVuMonoOEM.png) 136 | 137 | DejaVu Sans Mono is a really nice programming font. Maybe not the greatest... but its [open-source-ity-ness](https://dejavu-fonts.github.io/License.html) (new word) made it a good TTF candidate for inclusion in this collection. (The FontForge source files are also found in this repo.) If you want to modify your own TTF files like this, my blog post that resulted from this work may help: [How To Make a Snap-to Grid In FontForge](https://namethattech.wordpress.com/2017/03/22/how-to-make-a-snap-to-grid-in-fontforge/). 138 | 139 | * TrueType fonts: 140 | * **PICO-8 DejaVu** 141 | * [PICO-8 DejaVu](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVu.ttf) 142 | * [PICO-8 DejaVu Bold](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVu-Bold.ttf) 143 | * [PICO-8 DejaVu Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVu-Oblique.ttf) 144 | * [PICO-8 DejaVu Bold Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVu-BoldOblique.ttf) 145 | * **PICO-8 DejaVu OEM** 146 | * [PICO-8 DejaVu OEM](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuOEM.ttf) 147 | * [PICO-8 DejaVu OEM Bold](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuOEM-Bold.ttf) 148 | * [PICO-8 DejaVu OEM Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuOEM-Oblique.ttf) 149 | * [PICO-8 DejaVu OEM Bold Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuOEM-BoldOblique.ttf) 150 | * **PICO-8 DejaVu Mono** 151 | * [PICO-8 DejaVu Mono](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMono.ttf) 152 | * [PICO-8 DejaVu Mono Bold](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMono-Bold.ttf) 153 | * [PICO-8 DejaVu Mono Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMono-Oblique.ttf) 154 | * [PICO-8 DejaVu Mono Bold Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMono-BoldOblique.ttf) 155 | * **PICO-8 DejaVu Mono OEM** 156 | * [PICO-8 DejaVu Mono OEM](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMonoOEM.ttf) 157 | * [PICO-8 DejaVu Mono OEM Bold](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMonoOEM-Bold.ttf) 158 | * [PICO-8 DejaVu Mono OEM Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMonoOEM-Oblique.ttf) 159 | * [PICO-8 DejaVu Mono OEM Bold Oblique](https://github.com/juanitogan/p8-programming-fonts/raw/master/vector-fonts/DejaVu/P8DejaVuMonoOEM-BoldOblique.ttf) 160 | * Matching fonts: 161 | * [DejaVu Fonts](https://dejavu-fonts.github.io/) 162 | -------------------------------------------------------------------------------- /bitmap-fonts/p8-raize-mono-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-raize-mono-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-raize-mono.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-raize-mono.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-raize-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-raize-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-raize.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-raize.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-rom-mono-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-rom-mono-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-rom-mono.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-rom-mono.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-rom-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-rom-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-rom.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-rom.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tektite-mono-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tektite-mono-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tektite-mono.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tektite-mono.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tektite-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tektite-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tektite.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tektite.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tester-mono-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tester-mono-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tester-mono.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tester-mono.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tester-oem.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tester-oem.fon -------------------------------------------------------------------------------- /bitmap-fonts/p8-tester.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/bitmap-fonts/p8-tester.fon -------------------------------------------------------------------------------- /github-images/P8DejaVuMonoOEM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/P8DejaVuMonoOEM.png -------------------------------------------------------------------------------- /github-images/P8DejaVuOEM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/P8DejaVuOEM.png -------------------------------------------------------------------------------- /github-images/p8-charmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-charmap.png -------------------------------------------------------------------------------- /github-images/p8-raize-mono-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-raize-mono-oem.png -------------------------------------------------------------------------------- /github-images/p8-raize-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-raize-oem.png -------------------------------------------------------------------------------- /github-images/p8-rom-mono-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-rom-mono-oem.png -------------------------------------------------------------------------------- /github-images/p8-rom-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-rom-oem.png -------------------------------------------------------------------------------- /github-images/p8-tektite-mono-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-tektite-mono-oem.png -------------------------------------------------------------------------------- /github-images/p8-tektite-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-tektite-oem.png -------------------------------------------------------------------------------- /github-images/p8-tester-mono-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-tester-mono-oem.png -------------------------------------------------------------------------------- /github-images/p8-tester-oem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/p8-tester-oem.png -------------------------------------------------------------------------------- /github-images/screenshot-st3-npp-p8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/screenshot-st3-npp-p8.png -------------------------------------------------------------------------------- /github-images/tektite_oem_orig_matt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/tektite_oem_orig_matt.gif -------------------------------------------------------------------------------- /github-images/tektite_simon_matt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/github-images/tektite_simon_matt.gif -------------------------------------------------------------------------------- /vector-fonts/DejaVu/License.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DejaVu Fonts — License 5 | 6 | 7 | 8 |

9 | DejaVu Fonts — License 10 |

11 |

12 | Fonts are © Bitstream (see below). DejaVu changes are in public domain. Explanation of copyright is on Gnome page on Bitstream Vera fonts. Glyphs imported from Arev fonts are © Tavmjung Bah (see below) 13 |

14 |

15 | Bitstream Vera Fonts Copyright 16 |

17 |

18 | Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. 19 |

20 |

21 | Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: 22 |

23 |

24 | The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. 25 |

26 |

27 | The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". 28 |

29 |

30 | This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. 31 |

32 |

33 | The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. 34 |

35 |

36 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. 37 |

38 |

39 | Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. 40 |

41 | 42 |

43 | Arev Fonts Copyright 44 |

45 |

46 | Original text 47 |

48 |

49 | Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. 50 |

51 |

52 | Permission is hereby granted, free of charge, to any person obtaining 53 | a copy of the fonts accompanying this license ("Fonts") and 54 | associated documentation files (the "Font Software"), to reproduce 55 | and distribute the modifications to the Bitstream Vera Font Software, 56 | including without limitation the rights to use, copy, merge, publish, 57 | distribute, and/or sell copies of the Font Software, and to permit 58 | persons to whom the Font Software is furnished to do so, subject to 59 | the following conditions: 60 |

61 |

62 | The above copyright and trademark notices and this permission notice 63 | shall be included in all copies of one or more of the Font Software 64 | typefaces. 65 |

66 |

67 | The Font Software may be modified, altered, or added to, and in 68 | particular the designs of glyphs or characters in the Fonts may be 69 | modified and additional glyphs or characters may be added to the 70 | Fonts, only if the fonts are renamed to names not containing either 71 | the words "Tavmjong Bah" or the word "Arev". 72 |

73 |

74 | This License becomes null and void to the extent applicable to Fonts 75 | or Font Software that has been modified and is distributed under the 76 | "Tavmjong Bah Arev" names. 77 |

78 |

79 | The Font Software may be sold as part of a larger software package but 80 | no copy of one or more of the Font Software typefaces may be sold by 81 | itself. 82 |

83 |

84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL 88 | TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. 93 |

94 |

95 | Except as contained in this notice, the name of Tavmjong Bah shall not 96 | be used in advertising or otherwise to promote the sale, use or other 97 | dealings in this Font Software without prior written authorization 98 | from Tavmjong Bah. For further information, contact: tavmjong @ free 99 | . fr. 100 |

101 | 102 | 103 | -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVu-Bold.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVu-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVu-BoldOblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVu-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVu-Oblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVu.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMono-Bold.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMono-BoldOblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMono-Oblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMono.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMonoOEM-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMonoOEM-Bold.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMonoOEM-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMonoOEM-BoldOblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMonoOEM-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMonoOEM-Oblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuMonoOEM.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuMonoOEM.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuOEM-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuOEM-Bold.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuOEM-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuOEM-BoldOblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuOEM-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuOEM-Oblique.ttf -------------------------------------------------------------------------------- /vector-fonts/DejaVu/P8DejaVuOEM.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanitogan/p8-programming-fonts/b7725f671958237fe5cf5fae8c6017e4a5cb171c/vector-fonts/DejaVu/P8DejaVuOEM.ttf -------------------------------------------------------------------------------- /vector-fonts/P8-ISO8859-1.nam: -------------------------------------------------------------------------------- 1 | 0x0020 space 2 | 0x0021 exclam 3 | 0x0022 quotedbl 4 | 0x0023 numbersign 5 | 0x0024 dollar 6 | 0x0025 percent 7 | 0x0026 ampersand 8 | 0x0027 quotesingle 9 | 0x0028 parenleft 10 | 0x0029 parenright 11 | 0x002A asterisk 12 | 0x002B plus 13 | 0x002C comma 14 | 0x002D hyphen 15 | 0x002E period 16 | 0x002F slash 17 | 0x0030 zero 18 | 0x0031 one 19 | 0x0032 two 20 | 0x0033 three 21 | 0x0034 four 22 | 0x0035 five 23 | 0x0036 six 24 | 0x0037 seven 25 | 0x0038 eight 26 | 0x0039 nine 27 | 0x003A colon 28 | 0x003B semicolon 29 | 0x003C less 30 | 0x003D equal 31 | 0x003E greater 32 | 0x003F question 33 | 0x0040 at 34 | 0x0041 A 35 | 0x0042 B 36 | 0x0043 C 37 | 0x0044 D 38 | 0x0045 E 39 | 0x0046 F 40 | 0x0047 G 41 | 0x0048 H 42 | 0x0049 I 43 | 0x004A J 44 | 0x004B K 45 | 0x004C L 46 | 0x004D M 47 | 0x004E N 48 | 0x004F O 49 | 0x0050 P 50 | 0x0051 Q 51 | 0x0052 R 52 | 0x0053 S 53 | 0x0054 T 54 | 0x0055 U 55 | 0x0056 V 56 | 0x0057 W 57 | 0x0058 X 58 | 0x0059 Y 59 | 0x005A Z 60 | 0x005B bracketleft 61 | 0x005C backslash 62 | 0x005D bracketright 63 | 0x005E asciicircum 64 | 0x005F underscore 65 | 0x0060 grave 66 | 0x0061 a 67 | 0x0062 b 68 | 0x0063 c 69 | 0x0064 d 70 | 0x0065 e 71 | 0x0066 f 72 | 0x0067 g 73 | 0x0068 h 74 | 0x0069 i 75 | 0x006A j 76 | 0x006B k 77 | 0x006C l 78 | 0x006D m 79 | 0x006E n 80 | 0x006F o 81 | 0x0070 p 82 | 0x0071 q 83 | 0x0072 r 84 | 0x0073 s 85 | 0x0074 t 86 | 0x0075 u 87 | 0x0076 v 88 | 0x0077 w 89 | 0x0078 x 90 | 0x0079 y 91 | 0x007A z 92 | 0x007B braceleft 93 | 0x007C bar 94 | 0x007D braceright 95 | 0x007E asciitilde 96 | 0x00C4 P8ButtonCircle 97 | 0x00C5 P8Diamond 98 | 0x00C6 P8Star 99 | 0x00C7 P8SolidFill 100 | 0x00C9 P8DottedLine 101 | 0x00D6 P8VerticalLines 102 | 0x00E0 P8Spiral 103 | 0x00E2 P8ButtonDown 104 | 0x00E4 P8LightFill 105 | 0x00E5 P8Sphere 106 | 0x00E6 P8ButtonRight 107 | 0x00E7 P8Heart 108 | 0x00E8 P8House 109 | 0x00E9 P8Cat 110 | 0x00EA P8Coin 111 | 0x00EB P8Body 112 | 0x00EC P8EighthNote 113 | 0x00EE P8Smiley 114 | 0x00EF P8ButtonLeft 115 | 0x00F2 P8Grass 116 | 0x00F4 P8Hourglass 117 | 0x00F6 P8ButtonUp 118 | 0x00F9 P8ButtonEx 119 | 0x00FB P8AudioWave 120 | 0x00FC P8MediumFill 121 | 0x00FF P8HorizontalLines 122 | -------------------------------------------------------------------------------- /vector-fonts/P8-Symbol.nam: -------------------------------------------------------------------------------- 1 | 0x0020 space 2 | 0x0021 exclam 3 | 0x2200 universal 4 | 0x0023 numbersign 5 | 0x2203 existential 6 | 0x0025 percent 7 | 0x0026 ampersand 8 | 0x0028 parenleft 9 | 0x0029 parenright 10 | 0x2217 asteriskmath 11 | 0x002B plus 12 | 0x002C comma 13 | 0x2212 minus 14 | 0x002E period 15 | 0x002F slash 16 | 0x0030 zero 17 | 0x0031 one 18 | 0x0032 two 19 | 0x0033 three 20 | 0x0034 four 21 | 0x0035 five 22 | 0x0036 six 23 | 0x0037 seven 24 | 0x0038 eight 25 | 0x0039 nine 26 | 0x003A colon 27 | 0x003B semicolon 28 | 0x003C less 29 | 0x003D equal 30 | 0x003E greater 31 | 0x003F question 32 | 0x2245 congruent 33 | 0x0391 Alpha 34 | 0x0392 Beta 35 | 0x03A7 Chi 36 | 0x0395 Epsilon 37 | 0x03A6 Phi 38 | 0x0393 Gamma 39 | 0x0397 Eta 40 | 0x0399 Iota 41 | 0x03D1 theta1 42 | 0x039A Kappa 43 | 0x039B Lambda 44 | 0x039C Mu 45 | 0x039D Nu 46 | 0x039F Omicron 47 | 0x03A0 Pi 48 | 0x0398 Theta 49 | 0x03A1 Rho 50 | 0x03A3 Sigma 51 | 0x03A4 Tau 52 | 0x03A5 Upsilon 53 | 0x03C2 sigma1 54 | 0x039E Xi 55 | 0x03A8 Psi 56 | 0x0396 Zeta 57 | 0x005B bracketleft 58 | 0x2234 therefore 59 | 0x005D bracketright 60 | 0x22A5 perpendicular 61 | 0x005F underscore 62 | 0x03B1 alpha 63 | 0x03B2 beta 64 | 0x03C7 chi 65 | 0x03B4 delta 66 | 0x03B5 epsilon 67 | 0x03C6 phi 68 | 0x03B3 gamma 69 | 0x03B7 eta 70 | 0x03B9 iota 71 | 0x03D5 phi1 72 | 0x03BA kappa 73 | 0x03BB lambda 74 | 0x03BD nu 75 | 0x03BF omicron 76 | 0x03C0 pi 77 | 0x03B8 theta 78 | 0x03C1 rho 79 | 0x03C3 sigma 80 | 0x03C4 tau 81 | 0x03C5 upsilon 82 | 0x03D6 omega1 83 | 0x03C9 omega 84 | 0x03BE xi 85 | 0x03C8 psi 86 | 0x03B6 zeta 87 | 0x007B braceleft 88 | 0x007C bar 89 | 0x007D braceright 90 | 0x223C similar 91 | 0x0080 P8SolidFill 92 | 0x0081 P8MediumFill 93 | 0x0082 P8Cat 94 | 0x0083 P8ButtonDown 95 | 0x0084 P8LightFill 96 | 0x0085 P8Spiral 97 | 0x0086 P8Sphere 98 | 0x0087 P8Heart 99 | 0x0088 P8Coin 100 | 0x0089 P8Body 101 | 0x008A P8House 102 | 0x008B P8ButtonLeft 103 | 0x008C P8Smiley 104 | 0x008D P8EighthNote 105 | 0x008E P8ButtonCircle 106 | 0x008F P8Diamon 107 | 0x0090 P8DottedLine 108 | 0x0091 P8ButtonRight 109 | 0x0092 P8Star 110 | 0x0093 P8Hourglass 111 | 0x0094 P8ButtonUp 112 | 0x0095 P8Grass 113 | 0x0096 P8AudioWave 114 | 0x0097 P8ButtonEx 115 | 0x0098 P8HorizonalLines 116 | 0x0099 P8VerticalLines 117 | --------------------------------------------------------------------------------