]> git.sur5r.net Git - cc65/blob - include/geos/ggraph.h
Merge pull request #587 from polluks/master
[cc65] / include / geos / ggraph.h
1 /*
2   GEOS graphic (non icon/menu/sprite) functions
3
4   by Maciej 'YTM/Elysium' Witkowiak
5 */
6
7 #ifndef _GGRAPH_H
8 #define _GGRAPH_H
9
10 #include <geos/gstruct.h>
11
12 void __fastcall__ SetPattern(char newpattern);
13
14 void __fastcall__ HorizontalLine(char pattern, char y, unsigned xstart, unsigned xend);
15 void __fastcall__ InvertLine(char y, unsigned xstart, unsigned xend);
16 void __fastcall__ RecoverLine(char y, unsigned xstart, unsigned xend);
17 void __fastcall__ VerticalLine(char pattern, char ystart, char yend, unsigned x);
18
19 void __fastcall__ InitDrawWindow(struct window *myRectangle);
20 void Rectangle(void);
21 void __fastcall__ FrameRectangle(char pattern);
22 void InvertRectangle(void);
23 void ImprintRectangle(void);
24 void RecoverRectangle(void);
25
26 void __fastcall__ DrawLine(char mode, struct window *topBotCoords);
27
28 void __fastcall__ DrawPoint(char mode, struct pixel *myPixel);
29 char __fastcall__ TestPoint(struct pixel *myPixel);
30
31 void __fastcall__ PutChar(char character, char y, unsigned x);
32 void __fastcall__ PutString(char *myString, char y, unsigned x);
33 void __fastcall__ PutDecimal(char style, unsigned value, char y, unsigned x);
34
35 char __fastcall__ GetCharWidth(char character);
36 void __fastcall__ LoadCharSet(struct fontdesc *myFont);
37 void UseSystemFont(void);
38
39 void __fastcall__ BitmapUp(struct iconpic *myIcon);
40 void __fastcall__ BitmapClip(char skipl, char skipr, unsigned skiptop,
41                              struct iconpic *myIcon);
42 void __fastcall__ BitOtherClip(void *proc1, void *proc2, char skipl,
43                                char skipr, unsigned skiptop,
44                                struct iconpic *myIcon);
45
46 void __fastcall__ GraphicsString(char *myGfxString);
47
48 /* VIC colour constants */
49 #define BLACK           0
50 #define WHITE           1
51 #define RED             2
52 #define CYAN            3
53 #define PURPLE          4
54 #define GREEN           5
55 #define BLUE            6
56 #define YELLOW          7
57 #define ORANGE          8
58 #define BROWN           9
59 #define LTRED           10
60 #define DKGREY          11
61 #define GREY            12
62 #define MEDGREY         12
63 #define LTGREEN         13
64 #define LTBLUE          14
65 #define LTGREY          15
66 /* VIC memory banks - lowest 2 bits of cia2base+0 */
67 #define GRBANK0         3
68 #define GRBANK1         2
69 #define GRBANK2         1
70 #define GRBANK3         0
71 /* VIC screen sizes */
72 #define VIC_X_POS_OFF   24
73 #define VIC_Y_POS_OFF   50
74 #ifdef __GEOS_CBM__
75 #define SC_BYTE_WIDTH   40
76 #define SC_PIX_HEIGHT   200
77 #define SC_PIX_WIDTH    320
78 #define SC_SIZE         8000
79 #else
80 #define SC_BYTE_WIDTH   70
81 #define SC_PIX_HEIGHT   192
82 #define SC_PIX_WIDTH    560
83 #define SC_SIZE         13440
84 #endif
85 /* VDC screen constants */
86 #define SCREENBYTEWIDTH         80
87 #define SCREENPIXELWIDTH        640
88 /* control characters for use as numbers, not characters */
89 #define BACKSPACE       8
90 #define FORWARDSPACE    9
91 #define TAB             9
92 #define LF              10
93 #define HOME            11
94 #define PAGE_BREAK      12
95 #define UPLINE          12
96 #define CR              13
97 #define ULINEON         14
98 #define ULINEOFF        15
99 #define ESC_GRAPHICS    16
100 #define ESC_RULER       17
101 #define REV_ON          18
102 #define REV_OFF         19
103 #define GOTOX           20
104 #define GOTOY           21
105 #define GOTOXY          22
106 #define NEWCARDSET      23
107 #define BOLDON          24
108 #define ITALICON        25
109 #define OUTLINEON       26
110 #define PLAINTEXT       27
111 /* control characters for use in
112    strings: eg: str[10]=CBOLDON "Hello"; */
113 #define CCR             "\015"
114 #define CULINEON        "\016"
115 #define CULINEOFF       "\017"
116 #define CREV_ON         "\022"
117 #define CREV_OFF        "\023"
118 #define CBOLDON         "\030"
119 #define CITALICON       "\031"
120 #define COUTLINEON      "\032"
121 #define CPLAINTEXT      "\033"
122
123 /*values of currentMode */
124 /* bitNumbers */
125 #define UNDERLINE_BIT   7
126 #define BOLD_BIT        6
127 #define REVERSE_BIT     5
128 #define ITALIC_BIT      4
129 #define OUTLINE_BIT     3
130 #define SUPERSCRIPT_BIT 2
131 #define SUBSCRIPT_BIT   1
132 /* bitMasks */
133 #define SET_UNDERLINE   0x80
134 #define SET_BOLD        0x40
135 #define SET_REVERSE     0x20
136 #define SET_ITALIC      0x10
137 #define SET_OUTLINE     0x08
138 #define SET_SUPERSCRIPT 0x04
139 #define SET_SUBSCRIPT   0x02
140 #define SET_PLAINTEXT   0
141 /* values of dispBufferOn */
142 #define ST_WRGS_FORE    0x20
143 #define ST_WR_BACK      0x40
144 #define ST_WR_FORE      0x80
145 /* PutDecimal parameters */
146 /* leading zeros? */
147 #define SET_NOSURPRESS  0
148 #define SET_SURPRESS    0x40
149 /* justification */
150 #define SET_RIGHTJUST   0
151 #define SET_LEFTJUST    0x80
152 /* C128 x-extension flags */
153 #define ADD1_W          0x2000
154 #define DOUBLE_B        0x80
155 #define DOUBLE_W        0x8000
156 /* DrawLine/DrawPoint mode values */
157 #define DRAW_ERASE      0x00
158 #define DRAW_DRAW       0x40
159 #define DRAW_COPY       0x80
160
161 typedef void graphicStr;
162
163 #define MOVEPENTO(x,y) (char)1, (unsigned)(x), (char)(y)
164 #define LINETO(x,y) (char)2, (unsigned)(x), (char)(y)
165 #define RECTANGLETO(x,y) (char)3, (unsigned)(x), (char)(y)
166 #define NEWPATTERN(p) (char)5, (char)(p)
167 #define FRAME_RECTO(x,y) (char)7, (unsigned)(x), (char)(y)
168 #define PEN_X_DELTA(x) (char)8, (unsigned)(x)
169 #define PEN_Y_DELTA(y) (char)9, (char)(y)
170 #define PEN_XY_DELTA(x,y) (char)10, (unsigned)(x), (char)(y)
171 #define GSTR_END (char)NULL
172 /* ESC_PUTSTRING can't be implemented - it needs text, not pointer to it
173    #define ESC_PUTSTRING(x,y,text) (char)6, (unsigned)(x), (char)(y), (text), (char)NULL
174 */
175
176 #endif