ce83101ec24dbabf5d61fad05295fb9915ca5705
2 Copyright (C) Prikol Software 1996-1997
3 Copyright (C) Aleksey Volynskov 1996-1997
4 Copyright (C) <ARembo@gmail.com> 2011
6 This file is part of the Doom2D:Rembo project.
8 Doom2D:Rembo is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 2 as
10 published by the Free Software Foundation.
12 Doom2D:Rembo is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, see <http://www.gnu.org/licenses/> or
19 write to the Free Software Foundation, Inc.,
20 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
37 char fullscreen
= OFF
;
40 byte mixmap
[256][256];
44 int buf_w
, buf_h
, pitch
;
45 static int offx
, offy
;
46 static int cx1
, cx2
, cy1
, cy2
;
47 static byte flametab
[16] = {
48 0xBC,0xBA,0xB8,0xB6,0xB4,0xB2,0xB0,0xD5,0xD6,0xD7,0xA1,0xA0,0xE3,0xE2,0xE1,0xE0
51 vgaimg
*V_getvgaimg (int id
) {
52 int loaded
= M_was_locked(id
);
53 vgaimg
*v
= M_lock(id
);
54 if (v
!= NULL
&& !loaded
) {
55 v
->w
= short2host(v
->w
);
56 v
->h
= short2host(v
->h
);
57 v
->sx
= short2host(v
->sx
);
58 v
->sy
= short2host(v
->sy
);
63 vgaimg
*V_loadvgaimg (char *name
) {
64 return V_getvgaimg(F_getresid(name
));
67 static void draw_rect (int x
, int y
, int w
, int h
, int c
) {
71 int x1
= min(x
+ w
- 1, cx2
);
72 int y1
= min(y
+ h
- 1, cy2
);
74 for (i
= y0
; i
<= y1
; i
++) {
75 memset(&buffer
[i
* pitch
+ x0
], c
, len
);
79 void V_setrect (short x
, short w
, short y
, short h
) {
81 cx2
= min(x
+ w
- 1, buf_w
- 1);
83 cy2
= min(y
+ h
- 1, buf_h
- 1);
86 static void putpixel (int x
, int y
, byte color
) {
87 if (x
>= cx1
&& x
<= cx2
&& y
>= cy1
&& y
<= cy2
) {
88 buffer
[y
* pitch
+ x
] = color
;
92 static byte
getpixel (int x
, int y
) {
93 return x
>= cx1
&& x
<= cx2
&& y
>= cy1
&& y
<= cy2
? buffer
[y
* pitch
+ x
] : 0;
96 static void mappixel (int x
, int y
, byte
*cmap
) {
97 byte c
= getpixel(x
, y
);
98 putpixel(x
, y
, cmap
[c
]);
101 void V_center (int f
) {
103 V_offset(buf_w
/ 2 - 320 / 2, buf_h
/ 2 - 200 / 2);
109 void V_offset (int ox
, int oy
) {
114 static void draw_spr (short x
, short y
, vgaimg
*i
, int d
, int c
) {
118 if (d
& 1) x
=x
-i
->w
+i
->sx
; else x
-=i
->sx
;
119 if (d
& 2) y
=y
-i
->h
+i
->sy
; else y
-=i
->sy
;
120 if(x
+i
->w
>=cx1
&& x
<=cx2
&& y
+i
->h
>=cy1
&& y
<=cy2
) {
122 byte
*p
= (byte
*)i
+ sizeof(vgaimg
);
123 for (ly
=0; ly
<i
->h
; ly
++) {
124 for(lx
=0; lx
<i
->w
; lx
++) {
126 rx
= (d
& 1) ? (i
->w
-lx
-1) : (lx
);
127 ry
= (d
& 2) ? (i
->h
-ly
-1) : (ly
);
130 if (c
) if (t
>=0x70 && t
<=0x7F) t
=t
-0x70+c
;
131 putpixel(x
+rx
,y
+ry
,t
);
139 void V_rotspr (int x
, int y
, vgaimg
* i
, int d
) {
145 void V_pic (short x
, short y
, vgaimg
*i
) {
146 draw_spr(x
, y
, i
, 0, 0);
149 void V_manspr (int x
, int y
, void *p
, unsigned char c
) {
150 draw_spr(x
, y
, p
, 0, c
);
153 void V_manspr2(int x
,int y
,void *p
, unsigned char c
) {
154 draw_spr(x
, y
, p
, 1, c
);
157 void V_dot (short x
, short y
, unsigned char c
) {
161 void smoke_sprf (int x
, int y
, byte c
) {
162 byte t
= getpixel(x
,y
);
166 putpixel(x
,y
,mixmap
[c
][t
]);
169 void flame_sprf (int x
, int y
, byte c
) {
170 byte t
= getpixel(x
,y
);
172 putpixel(x
,y
,flametab
[c
]);
175 void V_sprf (short x
,short y
,vgaimg
*i
,spr_f
*f
) {
182 for (cy
=y
; cy
<y
+i
->h
; cy
++) {
183 for(cx
=x
; cx
<x
+i
->w
; cx
++) {
192 void V_spr (short x
, short y
, vgaimg
*i
) {
193 draw_spr(x
, y
, i
, 0, 0);
196 void V_spr2 (short x
, short y
, vgaimg
*i
) {
200 void V_clr (short x
, short w
, short y
, short h
, unsigned char c
) {
201 draw_rect(x
, y
, w
, h
, c
);
204 void V_setscr (void *p
) {
208 void V_copytoscr (short x
, short w
, short y
, short h
) {
209 Y_repaint_rect(x
, y
, w
, h
);
212 void V_maptoscr (int x
, int w
, int y
, int h
, void *cmap
) {
214 for (cx
=x
; cx
<x
+w
; cx
++)
215 for (cy
=y
; cy
<y
+h
; cy
++)
216 mappixel(cx
,cy
,(byte
*)cmap
);
217 V_copytoscr(x
,w
,y
,h
);
220 void V_remap_rect (int x
, int y
, int w
, int h
, byte
*cmap
) {
222 for (cx
=x
; cx
<x
+w
; cx
++)
223 for (cy
=y
; cy
<y
+h
; cy
++)
224 mappixel(cx
,cy
,cmap
);