1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-09-28 20:55:28 +00:00

Add new glyphs and sort glyph map

This commit is contained in:
Peter Evans 2018-01-24 13:05:16 -06:00
parent cfee8baf25
commit 70cfa527b4

View File

@ -4,40 +4,6 @@ import os
from PIL import Image from PIL import Image
glyphmap = { glyphmap = {
"ampersand": "&",
"apostrophe": "'",
"asterisk": "*",
"at": "@",
"backslash": "\\",
"bar": "|",
"blank": " ",
"caret": "^",
"colon": ":",
"comma": ",",
"dollar": "$",
"emark": "!",
"equal": "=",
"grave": "`",
"hyphen": "-",
"langle": "<",
"lbrace": "{",
"lbracket": "[",
"lparen": "(",
"percent": "%",
"perfcurs": 10,
"period": ".",
"plus": "+",
"pound": "#",
"qmark": "?",
"quote": '"',
"rangle": ">",
"rbrace": "}",
"rbracket": "]",
"rparen": ")",
"semicolon": ";",
"slash": "/",
"tilde": "~",
"underscore": "_",
"0": "0", "0": "0",
"1": "1", "1": "1",
"2": "2", "2": "2",
@ -49,56 +15,122 @@ glyphmap = {
"8": "8", "8": "8",
"9": "9", "9": "9",
"al": "a", "al": "a",
"bl": "b", "ampersand": "&",
"cl": "c", "apostrophe": "'",
"dl": "d", "apple": 1,
"el": "e", "arrow-down": 3,
"fl": "f", "arrow-down-lines": 2,
"gl": "g", "arrow-left": 5,
"hl": "h", "arrow-left-lines": 4,
"il": "i", "arrow-return": 6,
"jl": "j", "arrow-right": 8,
"kl": "k", "arrow-right-lines": 7,
"ll": "l", "arrow-up": 11,
"ml": "m", "arrow-up-lines": 9,
"nl": "n", "asterisk": "*",
"ol": "o", "at": "@",
"pl": "p",
"ql": "q",
"rl": "r",
"sl": "s",
"tl": "t",
"ul": "u",
"vl": "v",
"wl": "w",
"xl": "x",
"yl": "y",
"zl": "z",
"au": "A", "au": "A",
"backslash": "\\",
"bar": "|",
"bl": "b",
"blank": " ",
"bu": "B", "bu": "B",
"caret": "^",
"check": 13,
"check-inverse": 12,
"checkerboard1": 14,
"checkerboard2": 15,
"cl": "c",
"colon": ":",
"comma": ",",
"crosshairs": 16,
"cu": "C", "cu": "C",
"diamond": 17,
"dl": "d",
"dollar": "$",
"du": "D", "du": "D",
"el": "e",
"ellipsis": 18,
"emark": "!",
"equal": "=",
"eu": "E", "eu": "E",
"file-left": 19,
"file-right": 20,
"finger": 21,
"fl": "f",
"fu": "F", "fu": "F",
"gl": "g",
"grave": "`",
"gu": "G", "gu": "G",
"hl": "h",
"hourglass": 22,
"hu": "H", "hu": "H",
"hyphen": "-",
"il": "i",
"iu": "I", "iu": "I",
"jl": "j",
"ju": "J", "ju": "J",
"kl": "k",
"ku": "K", "ku": "K",
"langle": "<",
"lbrace": "{",
"lbracket": "[",
"line-box": 23,
"line-left": 25,
"line-left-bottom": 24,
"line-middle": 26,
"line-right": 28,
"line-right-inverse": 27,
"line-top": 30,
"line-top-bottom": 29,
"ll": "l",
"lparen": "(",
"lu": "L", "lu": "L",
"mailbox": 31,
"ml": "m",
"mu": "M", "mu": "M",
"nl": "n",
"nu": "N", "nu": "N",
"ol": "o",
"open-apple": 32,
"ou": "O", "ou": "O",
"percent": "%",
"perfcurs": 10,
"period": ".",
"pl": "p",
"plus": "+",
"pointer": 127,
"pound": "#",
"pu": "P", "pu": "P",
"ql": "q",
"qmark": "?",
"qu": "Q", "qu": "Q",
"quote": '"',
"rangle": ">",
"rbrace": "}",
"rbracket": "]",
"rl": "r",
"rparen": ")",
"ru": "R", "ru": "R",
"semicolon": ";",
"sl": "s",
"slash": "/",
"su": "S", "su": "S",
"tilde": "~",
"tl": "t",
"tu": "T", "tu": "T",
"ul": "u",
"underscore": "_",
"uu": "U", "uu": "U",
"vl": "v",
"vu": "V", "vu": "V",
"wl": "w",
"wu": "W", "wu": "W",
"xl": "x",
"xu": "X", "xu": "X",
"yl": "y",
"yu": "Y", "yu": "Y",
"zl": "z",
"zu": "Z", "zu": "Z",
} }