OSDN Git Service

[16_ca needs huge amounts of work and I should remember what needs to be done soon...
[proj16/16.git] / src / lib / 16_vl.h
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
3  *\r
4  * This file is part of Project 16.\r
5  *\r
6  * Project 16 is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Project 16 is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
19  * Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  */\r
22 /*\r
23  * Functions for handling modex and doing other basic graphics stuff.\r
24  */\r
25 #ifndef MODEX16_H\r
26 #define MODEX16_H\r
27 \r
28 #include "src/lib/16_head.h"\r
29 //#include "src/lib/planar.h"\r
30 //#include "src/lib/modex16/16planar.h"\r
31 #include "src/lib/16text.h"\r
32 ////#include "src/lib/modex16/320x240.h"\r
33 // #include "src/lib/modex16/320x200.h"\r
34 // #include "src/lib/modex16/256x192.h"\r
35 // #include "src/lib/modex16/192x144_.h"\r
36 // #include "src/lib/modex16/160x120.h"\r
37 \r
38 #ifdef __WATCOMC__\r
39 #include <hw/cpu/cpu.h>\r
40 #include <hw/dos/dos.h>\r
41 #include <hw/vga/vga.h>\r
42 #include <hw/vga/vrl.h>\r
43 #include <hw/vga/vrs.h>\r
44 #endif\r
45 \r
46 //320x240 = 20x15\r
47 //192x144 = 12x9\r
48 \r
49 //temp defines\r
50 #define TILEWH  16\r
51 #define TILEWHD TILEWH*2\r
52 #define QUADWH                  TILEWH/2\r
53 \r
54 //#define OLDBGPRESERVE\r
55 \r
56 /* -========================== Types & Macros ==========================- */\r
57 #define PAGE_OFFSET(x,y) (((y)<<6)+((y)<<4)+((x)>>2))\r
58 #define PLANE(x) (1 << ((x) & 3))\r
59 #define SELECT_ALL_PLANES() outpw(0x03c4, 0xff02)\r
60 \r
61 // clips for rectangles not on 4s\r
62 #define LRCLIPDEF \\r
63         byte lclip[] = {0x0f, 0x0e, 0x0c, 0x08}; \\r
64         byte rclip[] = {0x00, 0x01, 0x03, 0x07};\r
65 \r
66 #define VCLIPDEF \\r
67         byte pclip[] = {1,2,4,8};\r
68 \r
69 typedef union\r
70 {\r
71         byte red;\r
72         byte green;\r
73         byte blue;\r
74 } rgb_t;\r
75 \r
76 /* -======================= Constants & Vars ==========================- */\r
77 extern byte far*  VGA;  /* The VGA Memory */\r
78 #define SCREEN_SEG              0xa000\r
79 #define VIDEO_INT               0x10\r
80 #define SET_MODE                0x00\r
81 #define VGA_256_COLOR_MODE      0x13\r
82 #define TEXT_MODE               0x03\r
83 \r
84 #define SC_INDEX                0x03c4\r
85 #define SC_RESET                        0\r
86 #define SC_CLOCK                        1\r
87 #define SC_MAPMASK                      2\r
88 #define SC_CHARMAP                      3\r
89 #define SC_MEMMODE                      4\r
90 \r
91 #define CRTC_INDEX                      0x3D4\r
92 #define CRTC_H_TOTAL            0\r
93 #define CRTC_H_DISPEND          1\r
94 #define CRTC_H_BLANK            2\r
95 #define CRTC_H_ENDBLANK         3\r
96 #define CRTC_H_RETRACE          4\r
97 #define CRTC_H_ENDRETRACE       5\r
98 #define CRTC_V_TOTAL            6\r
99 #define CRTC_OVERFLOW           7\r
100 #define CRTC_ROWSCAN            8\r
101 #define CRTC_MAXSCANLINE        9\r
102 #define CRTC_CURSORSTART        10\r
103 #define CRTC_CURSOREND          11\r
104 #define CRTC_STARTHIGH          12\r
105 #define CRTC_STARTLOW           13\r
106 #define CRTC_CURSORHIGH         14\r
107 #define CRTC_CURSORLOW          15\r
108 #define CRTC_V_RETRACE          16\r
109 #define CRTC_V_ENDRETRACE       17\r
110 #define CRTC_V_DISPEND          18\r
111 #define CRTC_OFFSET                     19\r
112 #define CRTC_UNDERLINE          20\r
113 #define CRTC_V_BLANK            21\r
114 #define CRTC_V_ENDBLANK         22\r
115 #define CRTC_MODE                       23\r
116 #define CRTC_LINECOMPARE        24\r
117 \r
118 #define GC_INDEX                0x03ce\r
119 #define GC_SETRESET                     0\r
120 #define GC_ENABLESETRESET       1\r
121 #define GC_COLORCOMPARE         2\r
122 #define GC_DATAROTATE           3\r
123 #define GC_READMAP                      4\r
124 #define GC_MODE                         5\r
125 #define GC_MISCELLANEOUS        6\r
126 #define GC_COLORDONTCARE        7\r
127 #define GC_BITMASK                      8\r
128 \r
129 #define AC_INDEX                0x03c0\r
130 #define SC_DATA                 0x03c5\r
131 #define CRTC_DATA               0x03d5\r
132 #define MISC_OUTPUT             0x03c2\r
133 #define HIGH_ADDRESS            0x0C\r
134 #define LOW_ADDRESS             0x0D\r
135 #define VRETRACE                0x08\r
136 //#define INPUT_STATUS_1                0x03da  defined in 16_head\r
137 #define STATUS_REGISTER_1       INPUT_STATUS_1\r
138 #define ATR_INDEX                       AC_INDEX\r
139 #define ATR_OVERSCAN            17\r
140 #define DISPLAY_ENABLE          0x01\r
141 #define MAP_MASK                0x02\r
142 #define PAL_READ_REG                    0x03C7   /* Color register, read address */\r
143 #define PAL_WRITE_REG              0x03C8   /* Color register, write address */\r
144 #define PAL_DATA_REG                    0x03C9   /* Color register, data port */\r
145 #define PAL_SIZE                                (256 * 3)\r
146 \r
147 //===========================================================================\r
148 \r
149 #define SCREENSEG               0xa000\r
150 \r
151 //#define SCREENWIDTH           80                      // default screen width in bytes\r
152 //#define MAXSCANLINES  240                     // size of ylookup table\r
153 \r
154 //#define CHARWIDTH             2\r
155 //#define TILEWIDTH             4\r
156 \r
157 //===========================================================================\r
158 \r
159 //\r
160 // VGA hardware routines\r
161 //\r
162 \r
163 void VGAMAPMASK(byte x);\r
164 void VGAWRITEMODE(byte x);\r
165 void VGAREADMAP(byte x);\r
166 \r
167 /* -============================ Functions =============================- */\r
168 /* mode switching, page, and plane functions */\r
169 void VGAmodeX(sword vq, boolean cmem, global_game_variables_t *gv);\r
170 void modexEnter(sword vq, boolean cmem, global_game_variables_t *gv);\r
171 byte vgaGetMode();\r
172 void modexLeave();\r
173 void VL_SetLineWidth (unsigned width, ofs_t *ofs);\r
174 void modexsetBaseXMode();\r
175 page_t modexDefaultPage(page_t *p);\r
176 page_t modexNextPage(page_t *p);\r
177 page_t modexNextPageFlexibleSize(page_t *p, word x, word y);\r
178 void modexCalcVmemRemain(video_t *video);\r
179 void VL_Initofs(video_t *video);\r
180 void modexHiganbanaPageSetup(video_t *video);\r
181 //void modexShowPage(page_t *page);\r
182 void VL_ShowPage(page_t *page, boolean vsync, boolean sr);\r
183 void modexPanPage(page_t *page, int dx, int dy);\r
184 void modexSelectPlane(byte plane);\r
185 void modexClearRegion(page_t *page, int x, int y, int w, int h, byte color);\r
186 /* moved to src/lib/modex16/16render.c */\r
187 void modexCopyPageRegion(page_t *dest, page_t *src, word sx, word sy, word dx, word dy, word width, word height);\r
188 \r
189 /* Palette fade and flash effects */\r
190 void VL_FadeIn (int start, int end, byte far *palette, int steps, video_t *v);\r
191 void modexFadeOn(word fade, byte *palette);\r
192 void modexFadeOff(word fade, byte *palette);\r
193 void modexFlashOn(word fade, byte *palette);\r
194 void modexFlashOff(word fade, byte *palette);\r
195 \r
196 /* palette loading and saving */\r
197 void modexPalSave(byte *palette);\r
198 //byte *modexNewPal();\r
199 void modexLoadPalFile(char *filename, byte *palette);\r
200 void VL_LoadPalFile(const char *filename, byte *palette);\r
201 void VL_LoadPalFilewithoffset(const char *filename, byte *palette, word o);\r
202 void VL_UpdatePaletteWrite(byte *palette, word o);\r
203 void modexSavePalFile(char *filename, byte *palette);\r
204 #define MenuFadeIn()    VL_FadeIn(0,255,&gamepal,10)\r
205 \r
206 /* fixed palette functions */\r
207 void modexPalBlack();\r
208 void modexPalWhite();\r
209 \r
210 /* utility functions */\r
211 void modexPalUpdate(byte *p);\r
212 void modexPalUpdate0(byte *p);\r
213 word modexPalOverscan(word col);\r
214 void VL_Plot (int x, int y, int color, ofs_t *ofs);\r
215 void VL_Hlin (unsigned x, unsigned y, unsigned width, unsigned color, ofs_t *ofs);\r
216 void VL_Vlin (int x, int y, int height, int color, ofs_t *ofs);\r
217 void VL_Bar (int x, int y, int width, int height, int color, ofs_t *ofs);\r
218 void modexputPixel(page_t *page, int x, int y, byte color);\r
219 byte modexgetPixel(page_t *page, int x, int y);\r
220 \r
221 #if 0 // not needed anymore. maybe good for reference purposes though.\r
222 static inline void modexwritepixel(page_t *page, int x, int y, word addr, byte color)\r
223 {\r
224         /* Each address accesses four neighboring pixels, so set\r
225            Write Plane Enable according to which pixel we want\r
226            to modify.  The plane is determined by the two least\r
227            significant bits of the x-coordinate: */\r
228         modexSelectPlane(PLANE(x));\r
229         //outp(SC_INDEX, 0x02);\r
230         //outp(SC_DATA, 0x01 << (x & 3));\r
231 \r
232         /* The offset of the pixel into the video segment is\r
233            offset = (width * y + x) / 4, and write the given\r
234            color to the plane we selected above.  Heed the active\r
235            page start selection. */\r
236         vga_state.vga_graphics_ram[addr] = color;\r
237 }\r
238 static inline byte modexreadPixel(page_t *page, int x, int y, word addr)\r
239 {\r
240         /* Select the plane from which we must read the pixel color: */\r
241         outpw(GC_INDEX, 0x04);\r
242         outpw(GC_INDEX+1, x & 3);\r
243         return vga_state.vga_graphics_ram[addr];\r
244 }\r
245 #endif\r
246 \r
247 void modexDrawChar(page_t *page, int x/*for planar selection only*/, word t, word col, word bgcol, word addr);\r
248 void modexprint(page_t *page, sword x, sword y, word t, boolean tlsw, word col, word bgcol, boolean sw, const byte *str);\r
249 void modexprintbig(page_t *page, word x, word y, word t, word col, word bgcol, const byte *str);\r
250 void modexpdump(page_t *pee);\r
251 void modexcls(page_t *page, byte color, byte *Where);\r
252 void VL_PatternDraw(video_t *video, word pn, boolean sw, boolean allsw);\r
253 void modexWaitBorder();\r
254 void modexWaitBorder_start();\r
255 void modexWaitBorder_end();\r
256 void VL_WaitVBL(word num);\r
257 void VL_PrintmodexmemInfo(video_t *v);\r
258 \r
259 #endif\r