Aggiunti simboli unicode nei commenti della mappa

This commit is contained in:
Daniele Lacamera 2019-12-23 01:24:08 +01:00
parent 0ce19627b1
commit 59c14ee29e

View file

@ -2,81 +2,71 @@
/* e f = 0 0 */
#define CAR_ZERO 0
#define CAR_UNO 1
#define CAR_DUE 3
#define CAR_TRE 7
#define CAR_QUATTRO 4
#define CAR_CINQUE 8
#define CAR_SEI 9
#define CAR_SETTE 11
#define CAR_OTTO 15
#define CAR_NOVE 12
#define CAR_ONDA 2
#define CAR_PIU 5
#define CAR_DIESIS 6
#define CAR_BARRA 10
#define CAR_MENO 11
#define CAR_DIVISO 14
#define CAR_ZERO 0 /* '0' */
#define CAR_UNO 1 /* '1' */
#define CAR_DUE 3 /* '2' */
#define CAR_TRE 7 /* '3' */
#define CAR_QUATTRO 4 /* '4' */
#define CAR_CINQUE 8 /* '5' */
#define CAR_SEI 9 /* '6' */
#define CAR_SETTE 11 /* '7' */
#define CAR_OTTO 15 /* '8' */
#define CAR_NOVE 12 /* '9' */
#define CAR_ONDA 2 /* '~' */
#define CAR_PIU 5 /* '+' */
#define CAR_DIESIS 6 /* '#' */
#define CAR_BARRA 10 /* '/' */
#define CAR_MENO 11 /* '-' */
#define CAR_DIVISO 14 /* '÷' */
/* e f = 0 1 */
#define CAR_PHI 16
#define CAR_A 17
#define CAR_B 19
#define CAR_C 23
#define CAR_D 20
#define CAR_E 24
#define CAR_F 25
#define CAR_G 27
#define CAR_H 31
#define CAR_I 28
#define CAR_DELTA 18
#define CAR_UGUALE 21
#define CAR_ALFA 22
#define CAR_PERCENTO 26
#define CAR_VIRGOLA 27
#define CAR_GAMMA 30
#define CAR_PHI 16 /* 'φ' */
#define CAR_A 17 /* 'A' */
#define CAR_B 19 /* 'B' */
#define CAR_C 23 /* 'C' */
#define CAR_D 20 /* 'D' */
#define CAR_E 24 /* 'E' */
#define CAR_F 25 /* 'F' */
#define CAR_G 27 /* 'G' */
#define CAR_H 31 /* 'H' */
#define CAR_I 28 /* 'I' */
#define CAR_DELTA 18 /* 'δ' */
#define CAR_UGUALE 21 /* '=' */
#define CAR_ALFA 22 /* 'α' */
#define CAR_PERCENTO 26 /* '%' */
#define CAR_VIRGOLA 27 /* ',' */
#define CAR_GAMMA 30 /* 'γ' */
/* e f = 1 1 */
#define CAR_EPSILON 48
#define CAR_J 49
#define CAR_K 51
#define CAR_L 55
#define CAR_M 52
#define CAR_N 56
#define CAR_O 57
#define CAR_P 59
#define CAR_Q 63
#define CAR_R 60
#define CAR_ASTERISCO 50
#define CAR_APERTA_PARENTESI 53
#define CAR_BETA 54
#define CAR_DOLLARO 58
#define CAR_ETA 59
#define CAR_PI 62
#define CAR_EPSILON 48 /* 'ε' */
#define CAR_J 49 /* 'J' */
#define CAR_K 51 /* 'K' */
#define CAR_L 55 /* 'L' */
#define CAR_M 52 /* 'M' */
#define CAR_N 56 /* 'N' */
#define CAR_O 57 /* 'O' */
#define CAR_P 59 /* 'P' */
#define CAR_Q 63 /* 'Q' */
#define CAR_R 60 /* 'R' */
#define CAR_ASTERISCO 50 /* '*' */
#define CAR_APERTA_PARENTESI 53 /* '(' */
#define CAR_BETA 54 /* 'β' */
#define CAR_DOLLARO 58 /* '$' */
#define CAR_ETA 59 /* 'η' */
#define CAR_PI 62 /* 'π' */
/* e f = 1 0 */
#define CAR_PUNTO 32
#define CAR_S 33
#define CAR_T 35
#define CAR_U 39
#define CAR_V 36
#define CAR_W 40
#define CAR_X 41
#define CAR_Y 43
#define CAR_Z 47
#define CAR_APOSTROFO 44
#define CAR_TETA 34
#define CAR_ESCLAMATIVO 37
#define CAR_CHIUSA_PARENTESI 38
#define CAR_INTERROGATIVO 42
#define CAR_E_COMMERCIALE 43
#define CAR_MOLTIPLICATO_PER 46
#define CAR_PUNTO 32 /* '.' */
#define CAR_S 33 /* 'S' */
#define CAR_T 35 /* 'T' */
#define CAR_U 39 /* 'U' */
#define CAR_V 36 /* 'V' */
#define CAR_W 40 /* 'W' */
#define CAR_X 41 /* 'X' */
#define CAR_Y 43 /* 'Y' */
#define CAR_Z 47 /* 'Z' */
#define CAR_APOSTROFO 44 /* ''' */
#define CAR_TETA 34 /* 'θ' */
#define CAR_ESCLAMATIVO 37 /* '!' */
#define CAR_CHIUSA_PARENTESI 38 /* ')' */
#define CAR_INTERROGATIVO 42 /* '?' */
#define CAR_E_COMMERCIALE 43 /* '&' */
#define CAR_MOLTIPLICATO_PER 46 /* '⊗' */