]> git.sur5r.net Git - cc65/blob - include/geos/ggraph.h
added declarations for cpputs and cpputsxy
[cc65] / include / geos / ggraph.h
1 /*
2   GEOS graphic (non icon/menu/sprite) functions
3
4   ported to small C on 29.10.1999
5   by Maciej 'YTM/Alliance' Witkowiak
6   10,11.03.2000 - updates
7 */
8
9 #ifndef _GGRAPH_H
10 #define _GGRAPH_H
11
12 #ifndef _GSTRUCT_H
13 #include <geos/gstruct.h>
14 #endif
15
16 void __fastcall__ cpputs(char *s);
17 void __fastcall__ cpputsxy(int x, int y, char *s);
18
19 void __fastcall__ SetPattern(char newpattern);
20
21 void __fastcall__ HorizontalLine(char pattern, char y, int xstart, int xend);
22 void __fastcall__ InvertLine(char y, int xstart, int xend);
23 void __fastcall__ RecoverLine(char y, int xstart, int xend);
24 void __fastcall__ VerticalLine(char pattern, char ystart, char yend, int x);
25
26 void __fastcall__ InitDrawWindow(struct window *myRectangle);
27 void __fastcall__ Rectangle(void);
28 void __fastcall__ FrameRectangle(char pattern);
29 void __fastcall__ InvertRectangle(void);
30 void __fastcall__ ImprintRectangle(void);
31 void __fastcall__ RecoverRectangle(void);
32
33 void __fastcall__ DrawLine(struct window *topBotCoords);
34
35 void __fastcall__ DrawPoint(struct pixel *myPixel);
36 char __fastcall__ TestPoint(struct pixel *myPixel);
37
38 void __fastcall__ PutChar(char character, char y, int x);
39 void __fastcall__ PutString(char *myString, char y, int x);
40 void __fastcall__ PutDecimal(char style, int value, char y, int x);
41
42 char __fastcall__ GetCharWidth(char character);
43 void __fastcall__ LoadCharSet(struct fontdesc *myFont);
44 void __fastcall__ UseSystemFont(void);
45
46 void __fastcall__ BitmapUp(struct iconpic *myIcon);
47 void __fastcall__ BitmapClip(char skipl, char skipr, int skiptop,
48                              struct iconpic *myIcon);
49 void __fastcall__ BitOtherClip(void *proc1, void *proc2, char skipl,
50                                char skipr, int skiptop,
51                                struct iconpic *myIcon);
52
53 void __fastcall__ GraphicsString(char *myGfxString);
54
55 /* VIC colour constants */
56 #define BLACK           0
57 #define WHITE           1
58 #define RED             2
59 #define CYAN            3
60 #define PURPLE          4
61 #define GREEN           5
62 #define BLUE            6
63 #define YELLOW          7
64 #define ORANGE          8
65 #define BROWN           9
66 #define LTRED           10
67 #define DKGREY          11
68 #define GREY            12
69 #define MEDGREY         12
70 #define LTGREEN         13
71 #define LTBLUE          14
72 #define LTGREY          15
73 /* VIC memory banks */
74 #define GRBANK0         3
75 #define GRBANK1         2
76 #define GRBANK2         1
77 #define GRBANK3         0
78 /* VIC screen sizes */
79 #define VIC_X_POS_OFF   24
80 #define VIC_Y_POS_OFF   50
81 #define SC_BYTE_WIDTH   40
82 #define SC_PIX_HEIGHT   200
83 #define SC_PIX_WIDTH    320
84 #define SC_SIZE         8000
85 /* VDC screen constants */
86 #define SCREENBYTEWIDTH         80
87 #define SCREENPIXELWIDTH        640
88 /* control characters for use as numbers, not chars */
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]=BOLD "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 0s? */
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 flags */
153 #define ADD1_W          0x2000
154 #define DOUBLE_B        0x80
155 #define DOUBLE_W        0x8000
156
157 typedef void graphicStr;
158
159 #define MOVEPENTO(x,y) (char)1, (unsigned)(x), (char)(y)
160 #define LINETO(x,y) (char)2, (unsigned)(x), (char)(y)
161 #define RECTANGLETO(x,y) (char)3, (unsigned)(x), (char)(y)
162 #define NEWPATTERN(p) (char)5, (char)(p)
163 #define FRAME_RECTO(x,y) (char)7, (unsigned)(x), (char)(y)
164 #define PEN_X_DELTA(x) (char)8, (unsigned)(x)
165 #define PEN_Y_DELTA(y) (char)9, (char)(y)
166 #define PEN_XY_DELTA(x,y) (char)10, (unsigned)(x), (char)(y)
167 #define GSTR_END (char)NULL
168 /* ESC_PUTSTRING can't be implemented - it needs text, not pointer to it
169    #define ESC_PUTSTRING(x,y,text) (char)6, (unsigned)(x), (char)(y), (text), (char)NULL
170 */
171
172 #endif