OSDN Git Service

wwww fixed www
[proj16/16.git] / src / lib / modex16.h
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2016 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
28 #include "src/lib/16_head.h"
29 #include "src/lib/bitmap.h"
30 #include "src/lib/planar.h"
31 #include "src/lib/modex16/16planar.h"
32 #include "src/lib/16text.h"
33 #include "src/lib/modex16/16render.h"
34 #include "src/lib/modex16/320x240.h"
35 #include "src/lib/modex16/320x200.h"
36 #include "src/lib/modex16/256x192.h"
37 #include "src/lib/modex16/192x144_.h"
38 #include "src/lib/modex16/160x120.h"
39
40 //TODO dos lib vga implementation ^^
41 //#define DOSLIBVGA
42
43 static struct pcxHeader {
44         byte id;
45         byte version;
46         byte encoding;
47         byte bpp;
48         word xmin;
49         word ymin;
50         word xmax;
51         word ymax;
52         word hres;
53         word vres;
54         byte pal16[48];
55         byte res1;
56         word bpplane;
57         word palType;
58         word hScreenSize;
59         word vScreenSize;
60         byte padding[54];
61 } head;
62
63 //320x240 = 20x15
64 //192x144 = 12x9
65
66 //temp defines
67 #define TILEWH 16
68 #define QUADWH                  TILEWH/2
69
70 /* -========================== Types & Macros ==========================- */
71 #define PAGE_OFFSET(x,y) (((y)<<6)+((y)<<4)+((x)>>2))
72 #define PLANE(x) (1<< (x&3))
73 #define SELECT_ALL_PLANES() outpw(0x03c4, 0xff02)
74 #define     PALSIZE            768
75
76 typedef union
77 {
78         byte red;
79         byte green;
80         byte blue;
81 } rgb_t;
82
83 /* -============================ Functions =============================- */
84 /* mode switching, page, and plane functions */
85 void VGAmodeX(sword vq, boolean cm, global_game_variables_t *gv);
86 void modexEnter(sword vq, boolean cm, global_game_variables_t *gv);
87 long vgaGetMode();
88 void modexLeave();
89 void modexsetBaseXMode(page_t *page);
90 page_t modexDefaultPage(page_t *p);
91 page_t modexNextPage(page_t *p);
92 page_t modexNextPageFlexibleSize(page_t *p, word x, word y);
93 void modexShowPage(page_t *page);
94 void modexPanPage(page_t *page, int dx, int dy);
95 void modexSelectPlane(byte plane);
96 void modexClearRegion(page_t *page, int x, int y, int w, int h, byte color);
97 /* moved to src/lib/modex16/16render.c */
98 void modexCopyPageRegion(page_t *dest, page_t *src, word sx, word sy, word dx, word dy, word width, word height);
99
100 /* Palette fade and flash effects */
101 void modexFadeOn(word fade, byte *palette);
102 void modexFadeOff(word fade, byte *palette);
103 void modexFlashOn(word fade, byte *palette);
104 void modexFlashOff(word fade, byte *palette);
105
106 /* palette loading and saving */
107 void modexPalSave(byte *palette);
108 byte *modexNewPal();
109 void modexLoadPalFile(char *filename, byte **palette);
110 void modexSavePalFile(char *filename, byte *palette);
111
112 /* fixed palette functions */
113 void modexPalBlack();
114 void modexPalWhite();
115
116 /* utility functions */
117 void modexPalUpdate(bitmap_t *bmp, word *i, word qp, word aqoffset);
118 void modexPalUpdate1(byte *p);
119 void modexPalUpdate0(byte *p);
120 void modexPalOverscan(byte *p, word col);
121 void chkcolor(bitmap_t *bmp, word *q, word *a, word *aa, word *z, word *i/*, word *offset*/);
122 void modexputPixel(page_t *page, int x, int y, byte color);
123 byte modexgetPixel(page_t *page, int x, int y);
124 void modexhlin(page_t *page, word xl, word xh, word y, word color);
125 void modexprint(page_t *page, word x, word y, word t, word col, word bgcol, const byte *str, boolean q);
126 void modexprintbig(page_t *page, word x, word y, word t, word col, word bgcol, const byte *str);
127 void pdump(page_t *pee);
128 void cls(page_t *page, byte color, byte *Where);
129 void modexWaitBorder();
130
131 /* -======================= Constants & Vars ==========================- */
132 extern byte far*  VGA;  /* The VGA Memory */
133 #define SCREEN_SEG              0xa000
134 #define VIDEO_INT               0x10
135 #define SET_MODE                0x00
136 #define VGA_256_COLOR_MODE      0x13
137 #define TEXT_MODE               0x03
138
139 #define AC_INDEX                0x03c0
140 #define SC_INDEX                0x03c4
141 #define SC_DATA                 0x03c5
142 #define CRTC_INDEX              0x03d4
143 #define CRTC_DATA               0x03d5
144 #define GC_INDEX                0x03ce
145 #define MISC_OUTPUT             0x03c2
146 #define HIGH_ADDRESS            0x0C
147 #define LOW_ADDRESS             0x0D
148 #define VRETRACE                0x08
149 //#define INPUT_STATUS_1                0x03da  defined in 16_head
150 #define DISPLAY_ENABLE          0x01
151 #define MAP_MASK                0x02
152 #define PAL_READ_REG                    0x03C7   /* Color register, read address */
153 #define PAL_WRITE_REG              0x03C8   /* Color register, write address */
154 #define PAL_DATA_REG                    0x03C9   /* Color register, data port */
155 #define PAL_SIZE                                (256 * 3)
156 #endif