]> git.sur5r.net Git - cc65/blob - src/grc/grc.h
Updated PETSCII mappings
[cc65] / src / grc / grc.h
1
2 /* I hope that no one will be able to create a .grc bigger than this... */
3 #define BLOODY_BIG_BUFFER 65000
4
5 struct menuitem {
6         char *name;
7         char *type;
8         char *target;
9         struct menuitem *next; };
10
11 struct menu {
12         char *name;
13         int top, left;
14         int bot, right;
15         char *type;
16         struct menuitem *item; };
17
18 struct appheader {
19         int year,month,day,hour,min;
20         int mode;
21         int dostype;
22         int geostype;
23         char *dosname;
24         char *classname;
25         char *version;
26         char *author;
27         char *info; };
28
29 const char *mainToken[] = {
30         "MENU", "HEADER", "ICON", "DIALOG", "" };
31
32 const char *hdrFTypes[] = {
33         "APPLICATION", "AUTO_EXEC", "DESK_ACC", "ASSEMBLY", "DISK_DEVICE", "PRINTER", "SYSTEM", "" };
34
35 const char *hdrFields[] = {
36         "author", "info", "date", "dostype", "mode", "" };
37
38 const char *hdrDOSTp[] = {
39         "seq", "SEQ", "prg", "PRG", "usr", "USR", "" };
40
41 const char *hdrModes[] = {
42         "any", "40only", "80only", "c64only", "" };
43
44 const int BSWTab[] = { 0,
45         0x005, 0x007, 0x00b, 0x011, 0x017,
46         0x01d, 0x023, 0x025, 0x029, 0x02d, 0x033, 0x039, 0x03c, 0x041, 0x043,
47         0x04a, 0x04f, 0x052, 0x056, 0x05a, 0x05f, 0x063, 0x068, 0x06d, 0x072,
48         0x077, 0x079, 0x07c, 0x080, 0x084, 0x088, 0x08e, 0x094, 0x09a, 0x09f,
49         0x0a4, 0x0a9, 0x0ad, 0x0b1, 0x0b6, 0x0bc, 0x0be, 0x0c2, 0x0c8, 0x0cc,
50         0x0d4, 0x0da, 0x0e0, 0x0e5, 0x0eb, 0x0f0, 0x0f5, 0x0f9, 0x0fe, 0x104,
51         0x10c, 0x112, 0x118, 0x11e, 0x121, 0x129, 0x12c, 0x132, 0x13a, 0x13e,
52         0x143, 0x148, 0x14d, 0x152, 0x157, 0x15a, 0x15f, 0x164, 0x166, 0x168,
53         0x16d, 0x16f, 0x177, 0x17c, 0x182, 0x187, 0x18c, 0x18f, 0x193, 0x196,
54         0x19b, 0x1a1, 0x1a9, 0x1af, 0x1b4, 0x1ba, 0x1be, 0x1c0, 0x1c4, 0x1ca,
55         0x1d2, 0x1dd };
56
57 const unsigned char icon1[] = {
58          255, 255, 255, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1,
59                         128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1,
60                         128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1,
61                         128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 255, 255, 255 };
62
63 char *progName;
64
65 char *outputCName=NULL, *outputSName=NULL;
66 FILE *outputCFile, *outputSFile;
67 int CFnum=0, SFnum=0;
68 int forceFlag=0;
69 char outputCMode[2]="w";
70 char outputSMode[2]="w";