]> 4ch.mooo.com Git - 16.git/blob - src/lib/modex16.h
wwww
[16.git] / src / lib / modex16.h
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
3  *
4  * This file is part of Project 16.
5  *
6  * Project 16 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Project 16 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22 /*
23  * Functions for handling modex and doing other basic graphics stuff.
24  */
25 #ifndef MODEX16_H
26 #define MODEX16_H
27 //#include <conio.h>
28
29 #include "src/lib/types.h"
30 #include "src/lib/bitmap.h"
31 #include "src/lib/planar.h"
32 #include "src/lib/16_head.h"
33 #include "src/lib/16text.h"
34 #include "src/lib/modex16/320x240.h"
35 #include "src/lib/modex16/256x192.h"
36
37 //320x240 = 20x15
38 //256x192 = 16x12
39
40 //temp defines
41 #define TILEWH 16
42 #define QUADWH                  TILEWH/2
43
44 /* -========================== Types & Macros ==========================- */
45 #define PAGE_OFFSET(x,y) (((y)<<6)+((y)<<4)+((x)>>2))
46 #define PLANE(x) (1<< (x&3))
47 #define SELECT_ALL_PLANES() outpw(0x03c4, 0xff02)
48
49 typedef struct {
50         word id;        /* the Identification number of the page~ For layering~ */
51         byte far* data; /* the data for the page */
52         word dx;                /* col we are viewing on the virtual screen */
53         word dy;                /* row we are viewing on the virtual screen */
54         word width;             /* virtual width of the page */
55         word height;    /* virtual height of the page */
56         word tw;
57         word th;
58 } page_t;
59
60 typedef union
61 {
62         byte red;
63         byte green;
64         byte blue;
65 } rgb_t;
66
67 /* -============================ Functions =============================- */
68 /* mode switching, page, and plane functions */
69 void VGAmodeX(sword vq, global_game_variables_t *gv);
70 void modex__320x240_256__Enter(global_game_variables_t *gv);
71 void modexLeave();
72 page_t modexDefaultPage();
73 page_t modexNextPage(page_t *p);
74 page_t modexNextPageFlexibleSize(page_t *p, word x, word y);
75 void modexShowPage(page_t *page);
76 void modexPanPage(page_t *page, int dx, int dy);
77 void modexSelectPlane(byte plane);
78 void modexClearRegion(page_t *page, int x, int y, int w, int h, byte color);
79 void oldDrawBmp(byte far* page, int x, int y, bitmap_t *bmp, byte sprite);
80 //void CDrawBmp(byte far* vgamem, page_t* page, int x, int y, bitmap_t *bmp, byte sprite);
81 void modexDrawBmp(page_t *page, int x, int y, bitmap_t *bmp);
82 void modexDrawBmpRegion(page_t *page, int x, int y, int rx, int ry, int rw, int rh, bitmap_t *bmp);
83 void modex_sparky4_DrawBmpRegion(page_t *page, int x, int y, int rx, int ry, int rw, int rh, bitmap_t *bmp);
84 void modexDrawPlanarBuf(page_t *page, int x, int y, planar_buf_t *bmp);
85 void modexDrawSprite(page_t *page, int x, int y, bitmap_t *bmp);
86 void modexDrawSpriteRegion(page_t *page, int x, int y, int rx, int ry, int rw, int rh, bitmap_t *bmp);
87 void modexCopyPageRegion(page_t *dest, page_t *src, word sx, word sy, word dx, word dy, word width, word height);
88
89 /* Palette fade and flash effects */
90 void modexFadeOn(word fade, byte *palette);
91 void modexFadeOff(word fade, byte *palette);
92 void modexFlashOn(word fade, byte *palette);
93 void modexFlashOff(word fade, byte *palette);
94
95 /* palette loading and saving */
96 void modexPalSave(byte *palette);
97 byte *modexNewPal();
98 void modexLoadPalFile(char *filename, byte **palette);
99 void modexSavePalFile(char *filename, byte *palette);
100
101 /* fixed palette functions */
102 void modexPalBlack();
103 void modexPalWhite();
104
105 /* utility functions */
106 void modexPalUpdate(bitmap_t *bmp, word *i, word qp, word aqoffset);
107 void modexPalUpdate1(byte *p);
108 void modexPalUpdate0(byte *p);
109 void chkcolor(bitmap_t *bmp, word *q, word *a, word *aa, word *z, word *i/*, word *offset*/);
110 void modexputPixel(page_t *page, int x, int y, byte color);
111 byte modexgetPixel(page_t *page, int x, int y);
112 void modexhlin(page_t *page, word xl, word xh, word y, word color);
113 void modexprint(page_t *page, word x, word y, word t, word col, word bgcol, const byte *str);
114 void modexprintbig(page_t *page, word x, word y, word t, word col, word bgcol, const byte *str);
115 void cls(page_t *page, byte color, byte *Where);
116 void modexWaitBorder();
117
118 /* -======================= Constants & Vars ==========================- */
119 extern byte far*  VGA;  /* The VGA Memory */
120 //extern int old_mode;
121 #define SCREEN_SEG              0xa000
122 #define VIDEO_INT               0x10
123 #define SET_MODE                0x00
124 #define VGA_256_COLOR_MODE      0x13
125 #define TEXT_MODE               0x03
126 #define SCREEN_WIDTH            320
127 #define SCREEN_HEIGHT           240
128 #define PAGE_SIZE               (word)(SCREEN_WIDTH/4 * SCREEN_HEIGHT)
129
130 #define AC_INDEX                0x03c0
131 #define SC_INDEX                0x03c4
132 #define SC_DATA                 0x03c5
133 #define CRTC_INDEX              0x03d4
134 #define CRTC_DATA               0x03d5
135 #define GC_INDEX                0x03ce
136 #define MISC_OUTPUT             0x03c2
137 #define HIGH_ADDRESS            0x0C
138 #define LOW_ADDRESS             0x0D
139 #define VRETRACE                0x08
140 #define INPUT_STATUS_1          0x03da
141 #define DISPLAY_ENABLE          0x01
142 #define MAP_MASK                0x02
143 #define PAL_READ_REG                    0x03C7   /* Color register, read address */
144 #define PAL_WRITE_REG              0x03C8   /* Color register, write address */
145 #define PAL_DATA_REG                    0x03C9   /* Color register, data port */
146 #define PAL_SIZE                                (256 * 3)
147 #endif