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
49 static sw_t sw
[MAXSW
];
50 static void *sndswn
, *sndswx
, *sndnoway
, *sndbdo
, *sndbdc
, *sndnotele
;
52 static byte cht
, chto
, chf
, f_ch
;
54 void SW_savegame (FILE *h
) {
56 for (n
= MAXSW
- 1; n
>= 0 && sw
[n
].t
== 0; n
--) {
61 for (i
= 0; i
< n
; i
++) {
62 myfwrite8(sw
[i
].x
, h
);
63 myfwrite8(sw
[i
].y
, h
);
64 myfwrite8(sw
[i
].t
, h
);
65 myfwrite8(sw
[i
].tm
, h
);
66 myfwrite8(sw
[i
].a
, h
);
67 myfwrite8(sw
[i
].b
, h
);
68 myfwrite8(sw
[i
].c
, h
);
69 myfwrite8(sw
[i
].d
, h
);
70 myfwrite8(sw
[i
].f
, h
);
72 myfwrite32(sw_secrets
, h
);
75 void SW_loadgame (FILE *h
) {
78 for (i
= 0; i
< n
; i
++) {
79 sw
[i
].x
= myfread8(h
);
80 sw
[i
].y
= myfread8(h
);
81 sw
[i
].t
= myfread8(h
);
82 sw
[i
].tm
= myfread8(h
);
83 sw
[i
].a
= myfread8(h
);
84 sw
[i
].b
= myfread8(h
);
85 sw
[i
].c
= myfread8(h
);
86 sw
[i
].d
= myfread8(h
);
87 sw
[i
].f
= myfread8(h
);
89 sw_secrets
= myfread32(h
);
92 int SW_load (FILE *h
) {
97 for (i
= 0; i
< MAXSW
&& blk
.sz
> 0; ++i
, blk
.sz
-= 9) {
98 sw
[i
].x
= myfread8(h
);
99 sw
[i
].y
= myfread8(h
);
100 sw
[i
].t
= myfread8(h
);
101 sw
[i
].tm
= myfread8(h
); // unused
102 sw
[i
].a
= myfread8(h
);
103 sw
[i
].b
= myfread8(h
);
104 sw
[i
].c
= myfread8(h
);
105 sw
[i
].d
= myfread8(h
); // unused
106 sw
[i
].f
= myfread8(h
);
110 if (sw
[i
].t
== SW_SECRET
) {
119 void SW_alloc (void) {
120 sndswn
=Z_getsnd("SWTCHN");
121 sndswx
=Z_getsnd("SWTCHX");
122 sndnoway
=Z_getsnd("NOWAY");
123 sndbdo
=Z_getsnd("BDOPN");
124 sndbdc
=Z_getsnd("BDCLS");
125 sndnotele
=Z_getsnd("NOTELE");
128 void SW_init (void) {
130 for (i
= 0; i
< MAXSW
; i
++) {
136 static void door(byte x
,byte y
) {
139 if(x
>=FLDW
|| y
>=FLDH
) return;
140 if(fld
[y
][x
]!=cht
) return;
142 for(;x
&& fld
[y
][x
-1]==cht
;--x
);
143 for(;ex
<FLDW
&& fld
[y
][ex
]==cht
;++ex
);
144 memset(fld
[y
]+x
,chto
,ex
-x
);
145 if(f_ch
) memset(fldf
[y
]+x
,chf
,ex
-x
);
152 void Z_water_trap (obj_t
*o
) {
155 if((y
=o
->y
)>=FLDH
*CELH
+o
->h
) return;
156 if((x
=o
->x
)<0 || o
->x
>FLDW
*CELW
) return;
164 cht
=5;chto
=255;f_ch
=0;
169 void Z_untrap (byte t
) {
173 for(p
=(byte
*)fld
,n
=FLDW
*FLDH
;n
;--n
,++p
)
177 static void opendoor(int i
) {
180 swsnd
=Z_sound(sndbdo
,128);
181 j
=fldf
[sw
[i
].b
][sw
[i
].a
];
182 cht
=2;chto
=3;chf
=0;f_ch
=1;
183 door(sw
[i
].a
,sw
[i
].b
);
184 fldf
[sw
[i
].b
][sw
[i
].a
]=j
;
188 static int shutdoor(int i
) {
191 cht
=3;chto
=255;chf
=fldf
[sw
[i
].b
][sw
[i
].a
];f_ch
=1;
192 door(sw
[i
].a
,sw
[i
].b
);
194 if(Z_chktrap(0,0,-3,HIT_SOME
)) {
195 j
=fldf
[sw
[i
].b
][sw
[i
].a
];
197 door(sw
[i
].a
,sw
[i
].b
);
198 fldf
[sw
[i
].b
][sw
[i
].a
]=j
;
202 door(sw
[i
].a
,sw
[i
].b
);
204 swsnd
=Z_sound(sndbdc
,128);
212 for(i
=0;i
<MAXSW
;++i
) if(sw
[i
].t
) {
213 if(sw
[i
].tm
) --sw
[i
].tm
;
215 case SW_DOOR5
: case SW_DOOR
: case SW_SHUTDOOR
:
217 if(fld
[sw
[i
].b
][sw
[i
].a
]!=3) {sw
[i
].d
=0;break;}
218 if(--sw
[i
].d
==0) if(!shutdoor(i
)) sw
[i
].d
=9;
222 if(fld
[sw
[i
].b
][sw
[i
].a
]!=2) {sw
[i
].d
=0;break;}
223 if(--sw
[i
].d
==0) {opendoor(i
);sw
[i
].tm
=18;}
229 static int doortime(int t
) {
231 case SW_DOOR5
: return 90;
236 void SW_cheat_open (void) {
239 for(i
=0;i
<MAXSW
;++i
) if(sw
[i
].t
&& !sw
[i
].tm
) switch(sw
[i
].t
) {
240 case SW_DOOR
: case SW_DOOR5
:
242 if(fld
[sw
[i
].b
][sw
[i
].a
]!=2) break;
243 SW_press(sw
[i
].x
*CELW
+4,sw
[i
].y
*CELH
+4,1,1,0xFF,-3);
248 int SW_press (int x
, int y
, int r
, int h
, byte t
, int o
) {
251 sx
=(x
-r
)/CELW
;sy
=(y
-h
+1)/CELH
;
252 x
=(x
+r
)/CELW
;y
/=CELH
;
253 for(i
=p
=0;i
<MAXSW
;++i
) if(sw
[i
].t
&& !sw
[i
].tm
) {
254 if(sw
[i
].x
>=sx
&& sw
[i
].x
<=x
&& sw
[i
].y
>=sy
&& sw
[i
].y
<=y
&& ((sw
[i
].f
&0x8F)&t
)) {
255 if(sw
[i
].f
&0x70) if((sw
[i
].f
&(t
&0x70))!=(sw
[i
].f
&0x70)) continue;
258 g_exit
=1;sw
[i
].tm
=9;swsnd
=Z_sound(sndswx
,128);break;
260 g_exit
=2;sw
[i
].tm
=9;swsnd
=Z_sound(sndswx
,128);break;
261 case SW_DOOR
: case SW_DOOR5
:
262 switch(fld
[sw
[i
].b
][sw
[i
].a
]) {
264 opendoor(i
);sw
[i
].tm
=9;sw
[i
].d
=doortime(sw
[i
].t
);break;
266 if(shutdoor(i
)) {sw
[i
].tm
=9;sw
[i
].d
=0;}
268 if(!swsnd
) swsnd
=Z_sound(sndnoway
,128);
274 SW_press((dword
)sw
[i
].a
*8+4,(dword
)sw
[i
].b
*8+12,8,16,(t
&0x70)|0x80,o
);
278 if(!Z_canfit((dword
)sw
[i
].a
*8+4,(dword
)sw
[i
].b
*8+7,r
,h
)) {
279 if(!swsnd
) swsnd
=Z_sound(sndnotele
,128);
281 }Z_teleobj(o
,(dword
)sw
[i
].a
*8+4,(dword
)sw
[i
].b
*8+7);
285 if(fld
[sw
[i
].b
][sw
[i
].a
]!=2) break;
290 if(fld
[sw
[i
].b
][sw
[i
].a
]!=3) break;
291 if(shutdoor(i
)) {sw
[i
].tm
=1;sw
[i
].d
=0;}
293 if(!swsnd
) swsnd
=Z_sound(sndnoway
,128);
296 case SW_SHUTTRAP
: case SW_TRAP
:
297 if(fld
[sw
[i
].b
][sw
[i
].a
]!=3) break;
298 cht
=3;chto
=255;chf
=fldf
[sw
[i
].b
][sw
[i
].a
];f_ch
=1;
299 door(sw
[i
].a
,sw
[i
].b
);
300 Z_chktrap(1,100,-3,HIT_TRAP
);
302 door(sw
[i
].a
,sw
[i
].b
);
304 swsnd
=Z_sound(sndswn
,128);
305 sw
[i
].tm
=1;sw
[i
].d
=20;
308 if(fld
[sw
[i
].b
][sw
[i
].a
]==10) {
309 cht
=10;chto
=9;f_ch
=0;
310 }else if(fld
[sw
[i
].b
][sw
[i
].a
]==9) {
311 cht
=9;chto
=10;f_ch
=0;
313 door(sw
[i
].a
,sw
[i
].b
);
315 swsnd
=Z_sound(sndswx
,128);
319 if(fld
[sw
[i
].b
][sw
[i
].a
]!=10) break;
320 cht
=10;chto
=9;f_ch
=0;
321 door(sw
[i
].a
,sw
[i
].b
);
323 swsnd
=Z_sound(sndswx
,128);
327 if(fld
[sw
[i
].b
][sw
[i
].a
]!=9) break;
328 cht
=9;chto
=10;f_ch
=0;
329 door(sw
[i
].a
,sw
[i
].b
);
331 swsnd
=Z_sound(sndswx
,128);
335 if(o
!=-1 && o
!=-2) break;
336 if(o
==-1) ++pl1
.secrets
;
338 sw
[i
].tm
=1;sw
[i
].t
=0;break;
341 {fldb
[sw
[i
].y
][sw
[i
].x
]=walswp
[fldb
[sw
[i
].y
][sw
[i
].x
]];p
=1;}
342 if(sw
[i
].tm
==1) sw
[i
].tm
=0;