7286a45375a11e4a271996357ad3b9150b93f9d6
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
50 static byte pcolortab
[PCOLORN
] = {
51 0x18, 0x20, 0x40, 0x58, 0x60, 0x70, 0x80, 0xB0, 0xC0, 0xD0
53 static int p1color
= 5;
54 static int p2color
= 4;
62 static int stack_p
= -1;
64 #define GM_MAX_INPUT 24
65 char ibuf
[GM_MAX_INPUT
];
73 static int qsnd
[QSND_NUM
];
74 static snd_t
*csnd1
, *csnd2
, *msnd1
, *msnd2
, *msnd3
, *msnd4
, *msnd5
, *msnd6
;
78 static void GM_stop (void) {
89 static int GM_say (const char nm
[8]) {
90 snd_t
*snd
= S_load(nm
);
94 voc_ch
= S_play(voc
, 0, 255);
99 int GM_init_int0 (menu_msg_t
*msg
, int i
, int a
, int b
, int s
) {
108 int GM_init_int (menu_msg_t
*msg
, int i
, int a
, int b
, int s
) {
112 return GM_init_int0(msg
, min(max(i
, a
), b
), a
, b
, s
);
115 int GM_init_str (menu_msg_t
*msg
, char *str
, int maxlen
) {
120 msg
->string
.maxlen
= maxlen
;
124 int basic_menu_handler (menu_msg_t
*msg
, byte type
, char *title
, char *say
, int n
, int *cur
) {
126 assert(type
== GM_BIG
|| type
== GM_SMALL
);
127 assert(title
!= NULL
);
131 case GM_QUERY
: return GM_init_int0(msg
, *cur
, n
, n
, type
);
132 case GM_GETTITLE
: return GM_init_str(msg
, title
, strlen(title
));
133 case GM_ENTER
: return say
? GM_say(say
) : 1;
134 case GM_UP
: *cur
= GM_CYCLE(*cur
- 1, 0, n
- 1); return 1;
135 case GM_DOWN
: *cur
= GM_CYCLE(*cur
+ 1, 0, n
- 1); return 1;
140 int simple_menu_handler (menu_msg_t
*msg
, int i
, int n
, const simple_menu_t
*m
, int *cur
) {
143 assert(i
>= 0 && i
< n
);
147 case GM_GETENTRY
: return GM_init_int0(msg
, m
->type
== GM_SMALL
? GM_SMALL_BUTTON
: GM_BUTTON
, 0, 0, 0);
148 case GM_GETCAPTION
: return GM_init_str(msg
, m
->entries
[i
].caption
, strlen(m
->entries
[i
].caption
));
149 case GM_SELECT
: return m
->entries
[i
].submenu
? GM_push(m
->entries
[i
].submenu
) : 1;
151 return basic_menu_handler(msg
, m
->type
, m
->title
, m
->say
, n
, cur
);
154 static int start_game (int twoplayers
, int dm
, int level
) {
157 g_map
= level
? level
: 1;
159 pl1
.color
= pcolortab
[p1color
];
160 pl2
.color
= pcolortab
[p2color
];
165 static int new_game_menu_handler (menu_msg_t
*msg
, const menu_t
*m
, void *data
, int i
) {
167 enum { ONEPLAYER
, TWOPLAYERS
, DEATHMATCH
, __NUM__
};
168 static const simple_menu_t sm
= {
169 GM_BIG
, "New Game", "_NEWGAME",
171 { "One Player", NULL
},
172 { "Two Players", NULL
},
173 { "Deathmatch", NULL
},
176 if (msg
->type
== GM_SELECT
) {
178 case ONEPLAYER
: GM_say("_1PLAYER"); return start_game(0, 0, _warp
);
179 case TWOPLAYERS
: GM_say("_2PLAYER"); return start_game(1, 0, _warp
);
180 case DEATHMATCH
: GM_say("_DM"); return start_game(1, 1, _warp
);
184 return simple_menu_handler(msg
, i
, __NUM__
, &sm
, &cur
);
187 static const menu_t new_game_menu
= {
188 NULL
, &new_game_menu_handler
191 static int load_game_menu_handler (menu_msg_t
*msg
, const menu_t
*m
, void *data
, int i
) {
193 const int max_slots
= 7;
194 assert(i
>= 0 && i
< max_slots
);
196 case GM_ENTER
: F_getsavnames(); break;
197 case GM_GETENTRY
: return GM_init_int0(msg
, GM_TEXTFIELD_BUTTON
, 0, 0, 0);
198 case GM_GETSTR
: return GM_init_str(msg
, (char*)savname
[i
], 24);
206 return basic_menu_handler(msg
, GM_BIG
, "Load game", "_OLDGAME", max_slots
, &cur
);
209 static const menu_t load_game_menu
= {
210 NULL
, &load_game_menu_handler
213 static int save_game_menu_handler (menu_msg_t
*msg
, const menu_t
*m
, void *data
, int i
) {
215 const int max_slots
= 7;
216 assert(i
>= 0 && i
< max_slots
);
219 if (g_st
== GS_GAME
) {
225 case GM_GETENTRY
: return GM_init_int0(msg
, GM_TEXTFIELD
, 0, 0, 0);
226 case GM_GETSTR
: return GM_init_str(msg
, (char*)savname
[i
], 24);
228 if (g_st
== GS_GAME
) {
229 assert(msg
->string
.maxlen
>= 24);
230 F_savegame(i
, msg
->string
.s
);
234 return basic_menu_handler(msg
, GM_BIG
, "Save game", "_SAVGAME", max_slots
, &cur
);
237 static const menu_t save_game_menu
= {
238 NULL
, &save_game_menu_handler
241 static int options_menu_handler (menu_msg_t
*msg
, const menu_t
*m
, void *data
, int i
) {
244 enum { VIDEO
, SOUND
, MUSIC
, __NUM__
};
245 static const simple_menu_t sm
= {
246 GM_BIG
, "Options", NULL
,
253 if (msg
->type
== GM_SELECT
) {
255 case VIDEO
: mm
= R_menu(); break;
256 case SOUND
: mm
= S_menu(); break;
257 case MUSIC
: mm
= MUS_menu(); break;
264 return simple_menu_handler(msg
, i
, __NUM__
, &sm
, &cur
);
267 static const menu_t options_menu
= {
268 NULL
, &options_menu_handler
271 static int exit_menu_handler (menu_msg_t
*msg
, const menu_t
*m
, void *data
, int i
) {
273 enum { YES
, NO
, __NUM__
};
274 static const simple_menu_t sm
= {
275 GM_SMALL
, "You are sure?", NULL
,
281 if (msg
->type
== GM_ENTER
) {
282 return GM_say(rand() & 1 ? "_EXIT1" : "_EXIT2");
283 } else if (msg
->type
== GM_SELECT
) {
288 Z_sound(S_get(qsnd
[myrand(QSND_NUM
)]), 255);
296 return simple_menu_handler(msg
, i
, __NUM__
, &sm
, &cur
);
299 static const menu_t exit_menu
= {
300 NULL
, &exit_menu_handler
303 static int main_menu_handler (menu_msg_t
*msg
, const menu_t
*m
, void *data
, int i
) {
305 enum { NEWGAME
, OLDGAME
, SAVEGAME
, OPTIONS
, EXIT
, __NUM__
};
306 assert(i
>= 0 && i
< __NUM__
);
307 static const simple_menu_t sm
= {
308 GM_BIG
, "Menu", NULL
,
310 { "New Game", &new_game_menu
},
311 { "Load Game", &load_game_menu
},
312 { "Save Game", &save_game_menu
},
313 { "Options", &options_menu
},
314 { "Exit", &exit_menu
},
317 return simple_menu_handler(msg
, i
, __NUM__
, &sm
, &cur
);
320 static const menu_t main_menu
= {
321 NULL
, &main_menu_handler
324 int GM_push (const menu_t
*m
) {
326 assert(stack_p
>= -1);
327 assert(stack_p
< MAX_STACK
- 1);
330 stack
[stack_p
].m
= m
;
332 GM_send_this(m
, &msg
);
337 assert(stack_p
>= 0);
341 GM_send_this(stack
[stack_p
+ 1].m
, &msg
);
345 int GM_popall (void) {
347 for (i
= 0; i
>= -1; i
--) {
353 const menu_t
*GM_get (void) {
355 return stack
[stack_p
].m
;
361 static void GM_normalize_message (menu_msg_t
*msg
) {
364 msg
->integer
.i
= min(max(msg
->integer
.i
, msg
->integer
.a
), msg
->integer
.b
);
367 assert(msg
->string
.maxlen
>= 0);
372 int GM_send_this (const menu_t
*m
, menu_msg_t
*msg
) {
375 if (m
->handler
!= NULL
) {
376 GM_normalize_message(msg
);
377 return m
->handler(msg
, m
, m
->data
, 0);
382 int GM_send (const menu_t
*m
, int i
, menu_msg_t
*msg
) {
386 if (m
->handler
!= NULL
) {
387 GM_normalize_message(msg
);
388 return m
->handler(msg
, m
, m
->data
, i
);
396 if(memcmp(cbuf
+32-5,"IDDQD",5)==0) {
397 PL_hit(&pl1
,400,0,HIT_SOME
);
398 if(_2pl
) PL_hit(&pl2
,400,0,HIT_SOME
);
400 }else if(memcmp(cbuf
+32-4,"TANK",4)==0) {
401 pl1
.life
=pl1
.armor
=200;pl1
.drawst
|=PL_DRAWARMOR
|PL_DRAWLIFE
;
402 if(_2pl
) {pl2
.life
=pl2
.armor
=200;pl2
.drawst
|=PL_DRAWARMOR
|PL_DRAWLIFE
;}
403 }else if(memcmp(cbuf
+32-8,"BULLFROG",8)==0) {
404 PL_JUMP
=(PL_JUMP
==10)?20:10;
405 }else if(memcmp(cbuf
+32-8,"FORMULA1",8)==0) {
406 PL_RUN
=(PL_RUN
==8)?24:8;
407 }else if(memcmp(cbuf
+32-5,"RAMBO",5)==0) {
408 pl1
.ammo
=pl1
.shel
=pl1
.rock
=pl1
.cell
=pl1
.fuel
=30000;
409 pl1
.wpns
=0x7FF;pl1
.drawst
|=PL_DRAWWPN
|PL_DRAWKEYS
;
412 pl2
.ammo
=pl2
.shel
=pl2
.rock
=pl2
.cell
=pl1
.fuel
=30000;
413 pl2
.wpns
=0x7FF;pl2
.drawst
|=PL_DRAWWPN
|PL_DRAWKEYS
;
416 }else if(memcmp(cbuf
+32-5,"UJHTW",5)==0) {
417 p_immortal
=!p_immortal
;
418 }else if(memcmp(cbuf
+32-9,",TKSQJHTK",9)==0) {
420 }else if(memcmp(cbuf
+32-6,"CBVCBV",6)==0) {
422 }else if(memcmp(cbuf
+32-7,"GOODBYE",7)==0) {
424 }else if(memcmp(cbuf
+32-9,"GJITKYF",7)==0) {
425 if(cbuf
[30]>='0' && cbuf
[30]<='9' && cbuf
[31]>='0' && cbuf
[31]<='9') {
426 g_map
=(cbuf
[30]=='0')?0:(cbuf
[30]-'0')*10;
427 g_map
+=(cbuf
[31]=='0')?0:(cbuf
[31]-'0');
435 static int strnlen (const char *s
, int len
) {
437 while (i
< len
&& s
[i
] != 0) {
443 static int state_for_anykey (int x
) {
444 return x
== GS_TITLE
|| x
== GS_ENDSCR
;
450 const menu_t
*m
= GM_get();
452 if (lastkey
== KEY_ESCAPE
|| (state_for_anykey(g_st
) && lastkey
!= KEY_UNKNOWN
)) {
458 if (GM_send_this(m
, &msg
)) {
461 msg
.type
= GM_GETENTRY
;
462 if (GM_send(m
, cur
, &msg
)) {
463 type
= msg
.integer
.i
;
466 if (type
== GM_TEXTFIELD
&& input
) {
468 Y_disable_text_input();
469 msg
.type
= GM_CANCEL
;
470 GM_send(m
, cur
, &msg
);
479 msg
.type
= lastkey
== KEY_UP
? GM_UP
: GM_DOWN
;
480 if (GM_send(m
, cur
, &msg
)) {
487 if (type
== GM_SCROLLER
) {
488 msg
.integer
.type
= GM_GETINT
;
489 if (GM_send(m
, cur
, &msg
)) {
490 msg
.integer
.type
= GM_SETINT
;
491 msg
.integer
.i
+= lastkey
== KEY_LEFT
? -msg
.integer
.s
: msg
.integer
.s
;
492 msg
.integer
.i
= min(max(msg
.integer
.i
, msg
.integer
.a
), msg
.integer
.b
);
493 if (GM_send(m
, cur
, &msg
)) {
494 Z_sound(lastkey
== KEY_LEFT
? msnd5
: msnd6
, 255);
497 } else if (type
== GM_TEXTFIELD
) {
499 // icur += lastkey == KEY_LEFT ? -1 : +1;
500 // icur = min(max(icur, 0), strnlen(ibuf, imax));
505 if (type
== GM_TEXTFIELD
) {
506 if (input
&& icur
> 0) {
507 // FIXIT buffers in strncpy must not overlap
508 strncpy(&ibuf
[icur
- 1], &ibuf
[icur
], imax
- icur
);
515 if (type
== GM_TEXTFIELD
) {
518 Y_disable_text_input();
521 msg
.string
.maxlen
= imax
;
522 GM_send(m
, cur
, &msg
);
524 msg
.type
= GM_GETSTR
;
525 if (GM_send(m
, cur
, &msg
)) {
526 imax
= min(msg
.string
.maxlen
, GM_MAX_INPUT
);
527 strncpy(ibuf
, msg
.string
.s
, imax
);
528 icur
= strnlen(ibuf
, imax
);
530 memset(ibuf
, 0, GM_MAX_INPUT
);
535 Y_enable_text_input();
537 GM_send(m
, cur
, &msg
);
541 msg
.type
= GM_SELECT
;
542 if (cur
< 0) abort();
543 if (GM_send(m
, cur
, &msg
)) {
552 lastkey
= KEY_UNKNOWN
;
556 void GM_input (int ch
) {
557 if (ch
!= 0 && input
) {
568 void GM_key (int key
, int down
) {
572 if (!_2pl
|| cheat
) {
573 for (i
= 0; i
< 31; i
++) {
574 cbuf
[i
] = cbuf
[i
+ 1];
576 if (key
>= KEY_0
&& key
<= KEY_9
) {
577 cbuf
[31] = key
- KEY_0
+ '0';
578 } else if (key
>= KEY_A
&& key
<= KEY_Z
) {
579 cbuf
[31] = key
- KEY_A
+ 'A';
587 void GM_init (void) {
590 static const char nm
[QSND_NUM
][6] = {
591 "CYBSIT", "KNTDTH", "MNPAIN", "PEPAIN", "SLOP", "MANSIT", "BOSPN", "VILACT",
592 "PLFALL", "BGACT", "BGDTH2", "POPAIN", "SGTATK", "VILDTH"
596 for (i
= 0; i
< QSND_NUM
; ++i
) {
597 memcpy(s
+ 2, nm
[i
], 6);
598 qsnd
[i
] = F_getresid(s
);
600 csnd1
= Z_getsnd("HAHA1");
601 csnd2
= Z_getsnd("RADIO");
602 msnd1
= Z_getsnd("PSTOP");
603 msnd2
= Z_getsnd("PISTOL");
604 msnd3
= Z_getsnd("SWTCHN");
605 msnd4
= Z_getsnd("SWTCHX");
606 msnd5
= Z_getsnd("SUDI");
607 msnd6
= Z_getsnd("TUDI");