]> git.sur5r.net Git - cc65/blob - include/tgi/tgi-kernel.h
bf83d49aa5860772baa20c0b8bb63e1551ec3d2e
[cc65] / include / tgi / tgi-kernel.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 tgi-kernel.h                              */
4 /*                                                                           */
5 /*                             TGI kernel interface                          */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2002      Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef _TGI_KERNEL_H
37 #define _TGI_KERNEL_H
38
39
40
41 /*****************************************************************************/
42 /*                                   Data                                    */
43 /*****************************************************************************/
44
45
46
47 /* A structure that describes the header of a graphics driver loaded into
48  * memory.
49  */
50 typedef struct {
51
52     /* Data that describes the capabilities of the driver */
53     char                id[3];          /* Contains 0x74, 0x67, 0x69 ("tgi") */
54     unsigned char       version;        /* Interface version */
55     unsigned            xres;           /* X resolution */
56     unsigned            yres;           /* Y resolution */
57     unsigned char       colorcount;     /* Number of available colors */
58     unsigned char       pagecount;      /* Number of screens available */
59     unsigned char       error;          /* Error code */
60     unsigned char       res[5];         /* Reserved for extensions */
61
62     /* Jump vectors. Note that these are not C callable */
63     void*               install;        /* INSTALL routine */
64     void*               deinstall;      /* DEINSTALL routine */
65     void*               init;           /* INIT routine */
66     void*               done;           /* DONE routine */
67     void*               control;        /* CONTROL routine */
68     void*               clear;          /* CLEAR routine */
69     void*               setviewpage;    /* SETVIEWPAGE routine */
70     void*               setdrawpage;    /* SETDRAWPAGE routine */
71     void*               setcolor;       /* SETCOLOR routine */
72     void*               setpixel;       /* SETPIXEL routine */
73     void*               getpixel;       /* GETPIXEL routine */
74     void*               line;           /* LINE routine */
75     void*               bar;            /* BAR routine */
76     void*               circle;         /* CIRCLE routine */
77
78 } tgi_drv_header;
79
80
81
82 /* TGI kernel variables */
83 extern tgi_drv_header*  tgi_drv;        /* Pointer to driver */
84 extern unsigned char    tgi_error;      /* Last error code */
85 extern unsigned char    tgi_mode;       /* Graphics mode or zero */
86 extern int              tgi_curx;       /* Current drawing cursor X */
87 extern int              tgi_cury;       /* Current drawing cursor Y */
88 extern unsigned char    tgi_color;      /* Current drawing color */
89 extern unsigned         tgi_xres;       /* X resolution of the current mode */
90 extern unsigned         tgi_yres;       /* Y resolution of the current mode */
91 extern unsigned char    tgi_colorcount; /* Number of available colors */
92 extern unsigned char    tgi_pagecount;  /* Number of available screens */
93
94
95
96 /*****************************************************************************/
97 /*                                     Code                                  */
98 /*****************************************************************************/
99
100
101
102 const char* __fastcall__ tgi_map_mode (unsigned char mode);
103 /* Map a tgi mode to a driver name. Returns NULL if no driver available. */
104
105 void __fastcall__ tgi_setup (void);
106 /* Setup the driver and graphics kernel once the driver is loaded */
107
108
109
110 /* End of tgi-kernel.h */
111 #endif
112
113
114
115