1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 {$INCLUDE ../shared/a_modes.inc}
20 procedure g_Menu_Init();
21 procedure g_Menu_Free();
22 procedure g_Menu_Reset();
23 procedure LoadStdFont(cfgres
, texture
: string; var FontID
: DWORD
);
24 procedure LoadFont(txtres
, fntres
: string; var FontID
: DWORD
);
25 procedure g_Menu_AskLanguage();
27 procedure g_Menu_Show_SaveMenu();
28 procedure g_Menu_Show_LoadMenu(standalone
: Boolean=false);
29 procedure g_Menu_Show_GameSetGame();
30 procedure g_Menu_Show_OptionsVideo();
31 procedure g_Menu_Show_OptionsSound();
32 procedure g_Menu_Show_EndGameMenu();
33 procedure g_Menu_Show_QuitGameMenu();
37 gMenuSmallFont
: DWORD
;
40 TempScale
: Integer = -1;
45 {$INCLUDE ../nogl/noGLuses.inc}
46 g_gui
, g_textures
, e_graphics
, g_main
, g_window
, g_game
, g_map
,
47 g_basic
, g_console
, g_sound
, g_gfx
, g_player
, g_options
, g_weapons
,
48 e_log
, SysUtils
, CONFIG
, g_playermodel
, DateUtils
,
49 MAPDEF
, Math
, g_saveload
,
50 e_texture
, g_language
, e_res
,
51 g_net
, g_netmsg
, g_netmaster
, g_items
, e_input
, g_touch
,
52 utils
, wadreader
, g_system
;
55 type TYNCallback
= procedure (yes
:Boolean);
57 procedure YNKeyDownProc (win
: TGUIWindow
; Key
: Byte);
59 if win
.UserData
= nil then exit
;
61 IK_Y
, IK_SPACE
: TYNCallback(win
.UserData
)(true);
62 IK_N
: TYNCallback(win
.UserData
)(false);
66 procedure YesButtonCB (ctl
: TGUITextButton
);
68 if ctl
.UserData
= nil then exit
;
69 TYNCallback(ctl
.UserData
)(true);
72 procedure NoButtonCB (ctl
: TGUITextButton
);
74 if ctl
.UserData
= nil then exit
;
75 TYNCallback(ctl
.UserData
)(false);
78 function CreateYNMenu (WinName
, Text: String; MaxLen
: Word; FontID
: DWORD
; ActionProc
: TYNCallback
): TGUIWindow
;
82 //if length(Text) = 0 then exit;
83 Result
:= TGUIWindow
.Create(WinName
);
86 //OnKeyDownEx := @YNKeyDownProc;
87 //UserData := @ActionProc;
88 menu
:= TGUIMenu(Result
.AddChild(TGUIMenu
.Create(gMenuSmallFont
, gMenuSmallFont
, '')));
91 Name
:= '__temp_yes_no_menu:'+WinName
;
93 AddText(Text, MaxLen
);
94 with AddButton(nil, _lc
[I_MENU_YES
]) do begin ProcEx
:= @YesButtonCB
; UserData
:= @ActionProc
; end;
95 with AddButton(nil, _lc
[I_MENU_NO
]) do begin ProcEx
:= @NoButtonCB
; UserData
:= @ActionProc
; end;
97 DefControl
:= '__temp_yes_no_menu:'+WinName
;
103 procedure ProcChangeColor(Sender
: TGUIControl
); forward;
104 procedure ProcSelectModel(Sender
: TGUIControl
); forward;
106 procedure ProcApplyOptions();
113 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsVideoMenu').GetControl('mOptionsVideoMenu'));
115 if TGUISwitch(menu
.GetControl('swBPP')).ItemIndex
= 0 then
121 gVSync
:= TGUISwitch(menu
.GetControl('swVSync')).ItemIndex
= 0;
122 if (ovs
<> gVSync
) then
123 sys_EnableVSync(gVSync
);
125 gTextureFilter
:= TGUISwitch(menu
.GetControl('swTextureFilter')).ItemIndex
= 0;
126 glNPOTOverride
:= not (TGUISwitch(menu
.GetControl('swLegacyNPOT')).ItemIndex
= 0);
128 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsSoundMenu').GetControl('mOptionsSoundMenu'));
130 g_Sound_SetupAllVolumes(
131 Min(TGUIScroll(menu
.GetControl('scSoundLevel')).Value
*16, 255),
132 Min(TGUIScroll(menu
.GetControl('scMusicLevel')).Value
*16, 255)
135 gMaxSimSounds
:= Max(Min(TGUIScroll(menu
.GetControl('scMaxSimSounds')).Value
*4+2, 66), 2);
136 gMuteWhenInactive
:= TGUISwitch(menu
.GetControl('swInactiveSounds')).ItemIndex
= 1;
137 gAnnouncer
:= TGUISwitch(menu
.GetControl('swAnnouncer')).ItemIndex
;
138 gSoundEffectsDF
:= TGUISwitch(menu
.GetControl('swSoundEffects')).ItemIndex
= 1;
139 gUseChatSounds
:= TGUISwitch(menu
.GetControl('swChatSpeech')).ItemIndex
= 0;
141 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsGameMenu').GetControl('mOptionsGameMenu'));
143 g_GFX_SetMax(TGUIScroll(menu
.GetControl('scParticlesCount')).Value
*1000);
144 g_Shells_SetMax(TGUIScroll(menu
.GetControl('scShellsMax')).Value
*30);
145 g_Gibs_SetMax(TGUIScroll(menu
.GetControl('scGibsMax')).Value
*25);
146 g_Corpses_SetMax(TGUIScroll(menu
.GetControl('scCorpsesMax')).Value
*5);
148 case TGUISwitch(menu
.GetControl('swGibsCount')).ItemIndex
of
153 else gGibsCount
:= 48;
156 gBloodCount
:= TGUISwitch(menu
.GetControl('swBloodCount')).ItemIndex
;
157 gFlash
:= TGUISwitch(menu
.GetControl('swScreenFlash')).ItemIndex
;
158 gAdvBlood
:= TGUISwitch(menu
.GetControl('swBloodType')).ItemIndex
= 1;
159 gAdvCorpses
:= TGUISwitch(menu
.GetControl('swCorpseType')).ItemIndex
= 1;
160 gAdvGibs
:= TGUISwitch(menu
.GetControl('swGibsType')).ItemIndex
= 1;
161 gDrawBackGround
:= TGUISwitch(menu
.GetControl('swBackGround')).ItemIndex
= 0;
162 gShowMessages
:= TGUISwitch(menu
.GetControl('swMessages')).ItemIndex
= 0;
163 gRevertPlayers
:= TGUISwitch(menu
.GetControl('swRevertPlayers')).ItemIndex
= 0;
164 gChatBubble
:= TGUISwitch(menu
.GetControl('swChatBubble')).ItemIndex
;
165 gPlayerIndicator
:= TGUISwitch(menu
.GetControl('swPlayerIndicator')).ItemIndex
;
166 gPlayerIndicatorStyle
:= TGUISwitch(menu
.GetControl('swPlayerIndicatorStyle')).ItemIndex
;
167 if TGUIScroll(menu
.GetControl('scScaleFactor')).Value
<> TempScale
then
169 TempScale
:= TGUIScroll(menu
.GetControl('scScaleFactor')).Value
;
170 g_dbg_scale
:= TempScale
+ 1;
173 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsMenu').GetControl('mOptionsControlsMenu'));
177 g_Console_BindKey(g_Console_FindBind(1, 'screenshot'), '');
178 g_Console_BindKey(g_Console_FindBind(1, '+p1_scores', '-p1_scores'), '');
179 g_Console_BindKey(g_Console_FindBind(1, 'togglechat'), '');
180 g_Console_BindKey(g_Console_FindBind(1, 'toggleteamchat'), '');
181 g_Console_BindKey(TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_SCREENSHOT
])).Key
, 'screenshot');
182 g_Console_BindKey(TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_STAT
])).Key
, '+p1_scores', '-p1_scores');
183 g_Console_BindKey(TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_CHAT
])).Key
, 'togglechat');
184 g_Console_BindKey(TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_TEAMCHAT
])).Key
, 'toggleteamchat');
187 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP1Menu').GetControl('mOptionsControlsP1Menu'));
190 g_Console_BindKey(g_Console_FindBind(1, '+p1_moveright', '-p1_moveright'), '');
191 g_Console_BindKey(g_Console_FindBind(1, '+p1_moveleft', '-p1_moveleft'), '');
192 g_Console_BindKey(g_Console_FindBind(1, '+p1_lookup', '-p1_lookup'), '');
193 g_Console_BindKey(g_Console_FindBind(1, '+p1_lookdown', '-p1_lookdown'), '');
194 g_Console_BindKey(g_Console_FindBind(1, '+p1_attack', '-p1_attack'), '');
195 g_Console_BindKey(g_Console_FindBind(1, '+p1_jump', '-p1_jump'), '');
196 g_Console_BindKey(g_Console_FindBind(1, '+p1_weapnext', '-p1_weapnext'), '');
197 g_Console_BindKey(g_Console_FindBind(1, '+p1_weapprev', '-p1_weapprev'), '');
198 g_Console_BindKey(g_Console_FindBind(1, '+p1_activate', '-p1_activate'), '');
199 g_Console_BindKey(g_Console_FindBind(1, '+p1_strafe', '-p1_strafe'), '');
200 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key0
, '+p1_moveright', '-p1_moveright');
201 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key0
, '+p1_moveleft', '-p1_moveleft');
202 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key0
, '+p1_lookup', '-p1_lookup');
203 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key0
, '+p1_lookdown', '-p1_lookdown');
204 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key0
, '+p1_attack', '-p1_attack');
205 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key0
, '+p1_jump', '-p1_jump');
206 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key0
, '+p1_weapnext', '-p1_weapnext');
207 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key0
, '+p1_weapprev', '-p1_weapprev');
208 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key0
, '+p1_activate', '-p1_activate');
209 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key0
, '+p1_strafe', '-p1_strafe');
211 g_Console_BindKey(g_Console_FindBind(2, '+p1_moveright', '-p1_moveright'), '');
212 g_Console_BindKey(g_Console_FindBind(2, '+p1_moveleft', '-p1_moveleft'), '');
213 g_Console_BindKey(g_Console_FindBind(2, '+p1_lookup', '-p1_lookup'), '');
214 g_Console_BindKey(g_Console_FindBind(2, '+p1_lookdown', '-p1_lookdown'), '');
215 g_Console_BindKey(g_Console_FindBind(2, '+p1_attack', '-p1_attack'), '');
216 g_Console_BindKey(g_Console_FindBind(2, '+p1_jump', '-p1_jump'), '');
217 g_Console_BindKey(g_Console_FindBind(2, '+p1_weapnext', '-p1_weapnext'), '');
218 g_Console_BindKey(g_Console_FindBind(2, '+p1_weapprev', '-p1_weapprev'), '');
219 g_Console_BindKey(g_Console_FindBind(2, '+p1_activate', '-p1_activate'), '');
220 g_Console_BindKey(g_Console_FindBind(2, '+p1_strafe', '-p1_strafe'), '');
221 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key1
, '+p1_moveright', '-p1_moveright');
222 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key1
, '+p1_moveleft', '-p1_moveleft');
223 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key1
, '+p1_lookup', '-p1_lookup');
224 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key1
, '+p1_lookdown', '-p1_lookdown');
225 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key1
, '+p1_attack', '-p1_attack');
226 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key1
, '+p1_jump', '-p1_jump');
227 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key1
, '+p1_weapnext', '-p1_weapnext');
228 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key1
, '+p1_weapprev', '-p1_weapprev');
229 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key1
, '+p1_activate', '-p1_activate');
230 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key1
, '+p1_strafe', '-p1_strafe');
233 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP1MenuWeapons').GetControl('mOptionsControlsP1MenuWeapons'));
236 for i
:= WP_FIRST
to WP_LAST
do
238 g_Console_BindKey(g_Console_FindBind(1, 'p1_weapon ' + IntToStr(i
+ 1)), '');
239 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key0
, 'p1_weapon ' + IntToStr(i
+ 1));
240 g_Console_BindKey(g_Console_FindBind(2, 'p1_weapon ' + IntToStr(i
+ 1)), '');
241 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key1
, 'p1_weapon ' + IntToStr(i
+ 1));
245 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP2Menu').GetControl('mOptionsControlsP2Menu'));
248 g_Console_BindKey(g_Console_FindBind(1, '+p2_moveright', '-p2_moveright'), '');
249 g_Console_BindKey(g_Console_FindBind(1, '+p2_moveleft', '-p2_moveleft'), '');
250 g_Console_BindKey(g_Console_FindBind(1, '+p2_lookup', '-p2_lookup'), '');
251 g_Console_BindKey(g_Console_FindBind(1, '+p2_lookdown', '-p2_lookdown'), '');
252 g_Console_BindKey(g_Console_FindBind(1, '+p2_attack', '-p2_attack'), '');
253 g_Console_BindKey(g_Console_FindBind(1, '+p2_jump', '-p2_jump'), '');
254 g_Console_BindKey(g_Console_FindBind(1, '+p2_weapnext', '-p2_weapnext'), '');
255 g_Console_BindKey(g_Console_FindBind(1, '+p2_weapprev', '-p2_weapprev'), '');
256 g_Console_BindKey(g_Console_FindBind(1, '+p2_activate', '-p2_activate'), '');
257 g_Console_BindKey(g_Console_FindBind(1, '+p2_strafe', '-p2_strafe'), '');
258 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key0
, '+p2_moveright', '-p2_moveright');
259 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key0
, '+p2_moveleft', '-p2_moveleft');
260 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key0
, '+p2_lookup', '-p2_lookup');
261 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key0
, '+p2_lookdown', '-p2_lookdown');
262 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key0
, '+p2_attack', '-p2_attack');
263 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key0
, '+p2_jump', '-p2_jump');
264 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key0
, '+p2_weapnext', '-p2_weapnext');
265 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key0
, '+p2_weapprev', '-p2_weapprev');
266 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key0
, '+p2_activate', '-p2_activate');
267 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key0
, '+p2_strafe', '-p2_strafe');
269 g_Console_BindKey(g_Console_FindBind(2, '+p2_moveright', '-p2_moveright'), '');
270 g_Console_BindKey(g_Console_FindBind(2, '+p2_moveleft', '-p2_moveleft'), '');
271 g_Console_BindKey(g_Console_FindBind(2, '+p2_lookup', '-p2_lookup'), '');
272 g_Console_BindKey(g_Console_FindBind(2, '+p2_lookdown', '-p2_lookdown'), '');
273 g_Console_BindKey(g_Console_FindBind(2, '+p2_attack', '-p2_attack'), '');
274 g_Console_BindKey(g_Console_FindBind(2, '+p2_jump', '-p2_jump'), '');
275 g_Console_BindKey(g_Console_FindBind(2, '+p2_weapnext', '-p2_weapnext'), '');
276 g_Console_BindKey(g_Console_FindBind(2, '+p2_weapprev', '-p2_weapprev'), '');
277 g_Console_BindKey(g_Console_FindBind(2, '+p2_activate', '-p2_activate'), '');
278 g_Console_BindKey(g_Console_FindBind(2, '+p2_strafe', '-p2_strafe'), '');
279 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key1
, '+p2_moveright', '-p2_moveright');
280 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key1
, '+p2_moveleft', '-p2_moveleft');
281 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key1
, '+p2_lookup', '-p2_lookup');
282 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key1
, '+p2_lookdown', '-p2_lookdown');
283 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key1
, '+p2_attack', '-p2_attack');
284 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key1
, '+p2_jump', '-p2_jump');
285 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key1
, '+p2_weapnext', '-p2_weapnext');
286 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key1
, '+p2_weapprev', '-p2_weapprev');
287 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key1
, '+p2_activate', '-p2_activate');
288 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key1
, '+p2_strafe', '-p2_strafe');
291 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP2MenuWeapons').GetControl('mOptionsControlsP2MenuWeapons'));
294 for i
:= WP_FIRST
to WP_LAST
do
296 g_Console_BindKey(g_Console_FindBind(1, 'p2_weapon ' + IntToStr(i
+ 1)), '');
297 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key0
, 'p2_weapon ' + IntToStr(i
+ 1));
298 g_Console_BindKey(g_Console_FindBind(2, 'p2_weapon ' + IntToStr(i
+ 1)), '');
299 g_Console_BindKey(TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key1
, 'p2_weapon ' + IntToStr(i
+ 1));
303 if e_HasJoysticks
then
305 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsJoystickMenu').GetControl('mOptionsControlsJoystickMenu'));
308 for i
:= 0 to e_MaxJoys
- 1 do
309 if e_JoystickAvailable
[i
] then
310 e_JoystickDeadzones
[i
] := TGUIScroll(menu
.GetControl('scDeadzone' + IntToStr(i
))).Value
*(32767 div 20)
314 if g_touch_enabled
then
316 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsTouchMenu').GetControl('mOptionsControlsTouchMenu'));
317 g_touch_alt
:= TGUISwitch(menu
.GetControl('swTouchAlt')).ItemIndex
= 1;
318 g_touch_size
:= TGUIScroll(menu
.GetControl('scTouchSize')).Value
/ 10 + 0.5;
319 g_touch_fire
:= TGUISwitch(menu
.GetControl('swTouchFire')).ItemIndex
= 1;
320 g_touch_offset
:= TGUIScroll(menu
.GetControl('scTouchOffset')).Value
* 5;
323 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsPlayersP1Menu').GetControl('mOptionsPlayersP1Menu'));
325 gPlayer1Settings
.Name
:= b_Text_Unformat(TGUIEdit(menu
.GetControl('edP1Name')).Text);
326 gPlayer1Settings
.Team
:= IfThen(TGUISwitch(menu
.GetControl('swP1Team')).ItemIndex
= 0,
327 TEAM_RED
, TEAM_BLUE
);
329 with TGUIModelView(g_GUI_GetWindow('OptionsPlayersP1Menu').GetControl('mvP1Model')) do
331 gPlayer1Settings
.Model
:= Model
.Name
;
332 gPlayer1Settings
.Color
:= Model
.Color
;
335 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsPlayersP2Menu').GetControl('mOptionsPlayersP2Menu'));
337 gPlayer2Settings
.Name
:= b_Text_Unformat(TGUIEdit(menu
.GetControl('edP2Name')).Text);
338 gPlayer2Settings
.Team
:= IfThen(TGUISwitch(menu
.GetControl('swP2Team')).ItemIndex
= 0,
339 TEAM_RED
, TEAM_BLUE
);
340 with TGUIModelView(g_GUI_GetWindow('OptionsPlayersP2Menu').GetControl('mvP2Model')) do
342 gPlayer2Settings
.Model
:= Model
.Name
;
343 gPlayer2Settings
.Color
:= Model
.Color
;
346 if gPlayer1Settings
.Name
= '' then gPlayer1Settings
.Name
:= GenPlayerName(1);
347 if gPlayer2Settings
.Name
= '' then gPlayer2Settings
.Name
:= GenPlayerName(2);
349 if g_Game_IsServer
then
351 if gPlayer1
<> nil then
353 gPlayer1
.SetModel(gPlayer1Settings
.Model
);
354 gPlayer1
.Name
:= gPlayer1Settings
.Name
;
355 if not (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then
356 gPlayer1
.SetColor(gPlayer1Settings
.Color
)
358 if gPlayer1
.Team
<> gPlayer1Settings
.Team
then
361 if g_Game_IsNet
then MH_SEND_PlayerSettings(gPlayer1
.UID
);
364 if gPlayer2
<> nil then
366 gPlayer2
.SetModel(gPlayer2Settings
.Model
);
367 gPlayer2
.Name
:= gPlayer2Settings
.Name
;
368 if (gGameSettings
.GameMode
<> GM_TDM
) and (gGameSettings
.GameMode
<> GM_CTF
) then
369 gPlayer2
.SetColor(gPlayer2Settings
.Color
)
371 if gPlayer2
.Team
<> gPlayer2Settings
.Team
then
376 if g_Game_IsClient
then MC_SEND_PlayerSettings
;
378 s
:= e_GetWriteableDir(ConfigDirs
);
380 g_Options_Write(s
+ '/' + CONFIG_FILENAME
);
381 g_Console_WriteGameConfig
;
384 procedure ReadOptions();
389 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsVideoMenu').GetControl('mOptionsVideoMenu'));
391 with TGUISwitch(menu
.GetControl('swBPP')) do
397 with TGUISwitch(menu
.GetControl('swTextureFilter')) do
398 if gTextureFilter
then ItemIndex
:= 0 else ItemIndex
:= 1;
400 with TGUISwitch(menu
.GetControl('swVSync')) do
401 if gVSync
then ItemIndex
:= 0 else ItemIndex
:= 1;
403 with TGUISwitch(menu
.GetControl('swLegacyNPOT')) do
404 if not glNPOTOverride
then ItemIndex
:= 0 else ItemIndex
:= 1;
406 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsSoundMenu').GetControl('mOptionsSoundMenu'));
408 TGUIScroll(menu
.GetControl('scSoundLevel')).Value
:= Round(gSoundLevel
/16);
409 TGUIScroll(menu
.GetControl('scMusicLevel')).Value
:= Round(gMusicLevel
/16);
410 TGUIScroll(menu
.GetControl('scMaxSimSounds')).Value
:= Round((gMaxSimSounds
-2)/4);
412 with TGUISwitch(menu
.GetControl('swInactiveSounds')) do
413 if gMuteWhenInactive
then
418 TGUISwitch(menu
.GetControl('swAnnouncer')).ItemIndex
:= gAnnouncer
;
420 with TGUISwitch(menu
.GetControl('swSoundEffects')) do
421 if gSoundEffectsDF
then
426 with TGUISwitch(menu
.GetControl('swChatSpeech')) do
427 if gUseChatSounds
then
432 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP1Menu').GetControl('mOptionsControlsP1Menu'));
435 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key0
:= g_Console_FindBind(1, '+p1_moveright', '-p1_moveright');
436 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key0
:= g_Console_FindBind(1, '+p1_moveleft', '-p1_moveleft');
437 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key0
:= g_Console_FindBind(1, '+p1_lookup', '-p1_lookup');
438 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key0
:= g_Console_FindBind(1, '+p1_lookdown', '-p1_lookdown');
439 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key0
:= g_Console_FindBind(1, '+p1_attack', '-p1_attack');
440 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key0
:= g_Console_FindBind(1, '+p1_jump', '-p1_jump');
441 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key0
:= g_Console_FindBind(1, '+p1_weapnext', '-p1_weapnext');
442 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key0
:= g_Console_FindBind(1, '+p1_weapprev', '-p1_weapprev');
443 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key0
:= g_Console_FindBind(1, '+p1_activate', '-p1_activate');
444 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key0
:= g_Console_FindBind(1, '+p1_strafe', '-p1_strafe');
446 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key1
:= g_Console_FindBind(2, '+p1_moveright', '-p1_moveright');
447 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key1
:= g_Console_FindBind(2, '+p1_moveleft', '-p1_moveleft');
448 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key1
:= g_Console_FindBind(2, '+p1_lookup', '-p1_lookup');
449 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key1
:= g_Console_FindBind(2, '+p1_lookdown', '-p1_lookdown');
450 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key1
:= g_Console_FindBind(2, '+p1_attack', '-p1_attack');
451 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key1
:= g_Console_FindBind(2, '+p1_jump', '-p1_jump');
452 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key1
:= g_Console_FindBind(2, '+p1_weapnext', '-p1_weapnext');
453 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key1
:= g_Console_FindBind(2, '+p1_weapprev', '-p1_weapprev');
454 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key1
:= g_Console_FindBind(2, '+p1_activate', '-p1_activate');
455 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key1
:= g_Console_FindBind(2, '+p1_strafe', '-p1_strafe');
458 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP1MenuWeapons').GetControl('mOptionsControlsP1MenuWeapons'));
461 for i
:= WP_FIRST
to WP_LAST
do
463 TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key0
:= g_Console_FindBind(1, 'p1_weapon ' + IntToStr(i
+ 1));
464 TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key1
:= g_Console_FindBind(2, 'p1_weapon ' + IntToStr(i
+ 1));
468 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP2Menu').GetControl('mOptionsControlsP2Menu'));
471 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key0
:= g_Console_FindBind(1, '+p2_moveright', '-p2_moveright');
472 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key0
:= g_Console_FindBind(1, '+p2_moveleft', '-p2_moveleft');
473 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key0
:= g_Console_FindBind(1, '+p2_lookup', '-p2_lookup');
474 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key0
:= g_Console_FindBind(1, '+p2_lookdown', '-p2_lookdown');
475 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key0
:= g_Console_FindBind(1, '+p2_attack', '-p2_attack');
476 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key0
:= g_Console_FindBind(1, '+p2_jump', '-p2_jump');
477 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key0
:= g_Console_FindBind(1, '+p2_weapnext', '-p2_weapnext');
478 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key0
:= g_Console_FindBind(1, '+p2_weapprev', '-p2_weapprev');
479 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key0
:= g_Console_FindBind(1, '+p2_activate', '-p2_activate');
480 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key0
:= g_Console_FindBind(1, '+p2_strafe', '-p2_strafe');
482 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_RIGHT
])).Key1
:= g_Console_FindBind(2, '+p2_moveright', '-p2_moveright');
483 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_LEFT
])).Key1
:= g_Console_FindBind(2, '+p2_moveleft', '-p2_moveleft');
484 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_UP
])).Key1
:= g_Console_FindBind(2, '+p2_lookup', '-p2_lookup');
485 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_DOWN
])).Key1
:= g_Console_FindBind(2, '+p2_lookdown', '-p2_lookdown');
486 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_FIRE
])).Key1
:= g_Console_FindBind(2, '+p2_attack', '-p2_attack');
487 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_JUMP
])).Key1
:= g_Console_FindBind(2, '+p2_jump', '-p2_jump');
488 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_NEXT_WEAPON
])).Key1
:= g_Console_FindBind(2, '+p2_weapnext', '-p2_weapnext');
489 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_PREV_WEAPON
])).Key1
:= g_Console_FindBind(2, '+p2_weapprev', '-p2_weapprev');
490 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_USE
])).Key1
:= g_Console_FindBind(2, '+p2_activate', '-p2_activate');
491 TGUIKeyRead2(GetControl(_lc
[I_MENU_CONTROL_STRAFE
])).Key1
:= g_Console_FindBind(2, '+p2_strafe', '-p2_strafe');
494 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsP2MenuWeapons').GetControl('mOptionsControlsP2MenuWeapons'));
497 for i
:= WP_FIRST
to WP_LAST
do
499 TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key0
:= g_Console_FindBind(1, 'p2_weapon ' + IntToStr(i
+ 1));
500 TGUIKeyRead2(GetControl(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)])).Key1
:= g_Console_FindBind(2, 'p2_weapon ' + IntToStr(i
+ 1));
504 if e_HasJoysticks
then
506 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsJoystickMenu').GetControl('mOptionsControlsJoystickMenu'));
509 for i
:= 0 to e_MaxJoys
- 1 do
510 if e_JoystickAvailable
[i
] then
511 TGUIScroll(menu
.GetControl('scDeadzone' + IntToStr(i
))).Value
:= e_JoystickDeadzones
[i
] div (32767 div 20)
515 if g_touch_enabled
then
517 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsTouchMenu').GetControl('mOptionsControlsTouchMenu'));
518 with TGUISwitch(menu
.GetControl('swTouchAlt')) do
519 if g_touch_alt
then ItemIndex
:= 1 else ItemIndex
:= 0;
520 TGUIScroll(menu
.GetControl('scTouchSize')).Value
:= Round((g_touch_size
- 0.5) * 10);
521 with TGUISwitch(menu
.GetControl('swTouchFire')) do
522 if g_touch_fire
then ItemIndex
:= 1 else ItemIndex
:= 0;
523 TGUIScroll(menu
.GetControl('scTouchOffset')).Value
:= Round(g_touch_offset
/ 5);
526 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsMenu').GetControl('mOptionsControlsMenu'));
529 TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_SCREENSHOT
])).Key
:= g_Console_FindBind(1, 'screenshot');
530 TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_STAT
])).Key
:= g_Console_FindBind(1, '+p1_scores', '-p1_scores');
531 TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_CHAT
])).Key
:= g_Console_FindBind(1, 'togglechat');
532 TGUIKeyRead(GetControl(_lc
[I_MENU_CONTROL_TEAMCHAT
])).Key
:= g_Console_FindBind(1, 'toggleteamchat');
535 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsGameMenu').GetControl('mOptionsGameMenu'));
537 TGUIScroll(menu
.GetControl('scParticlesCount')).Value
:= g_GFX_GetMax() div 1000;
538 TGUIScroll(menu
.GetControl('scShellsMax')).Value
:= g_Shells_GetMax() div 30;
539 TGUIScroll(menu
.GetControl('scGibsMax')).Value
:= g_Gibs_GetMax() div 25;
540 TGUIScroll(menu
.GetControl('scCorpsesMax')).Value
:= g_Corpses_GetMax() div 5;
541 TGUISwitch(menu
.GetControl('swBloodCount')).ItemIndex
:= gBloodCount
;
543 with TGUISwitch(menu
.GetControl('swScreenFlash')) do
546 with TGUISwitch(menu
.GetControl('swBloodType')) do
547 if gAdvBlood
then ItemIndex
:= 1 else ItemIndex
:= 0;
549 with TGUISwitch(menu
.GetControl('swCorpseType')) do
550 if gAdvCorpses
then ItemIndex
:= 1 else ItemIndex
:= 0;
552 with TGUISwitch(menu
.GetControl('swGibsType')) do
553 if gAdvGibs
then ItemIndex
:= 1 else ItemIndex
:= 0;
555 with TGUISwitch(menu
.GetControl('swGibsCount')) do
564 with TGUISwitch(menu
.GetControl('swBackGround')) do
565 if gDrawBackGround
then ItemIndex
:= 0 else ItemIndex
:= 1;
567 with TGUISwitch(menu
.GetControl('swMessages')) do
568 if gShowMessages
then ItemIndex
:= 0 else ItemIndex
:= 1;
570 with TGUISwitch(menu
.GetControl('swRevertPlayers')) do
571 if gRevertPlayers
then ItemIndex
:= 0 else ItemIndex
:= 1;
573 with TGUISwitch(menu
.GetControl('swChatBubble')) do
574 ItemIndex
:= gChatBubble
;
576 with TGUISwitch(menu
.GetControl('swPlayerIndicator')) do
577 ItemIndex
:= gPlayerIndicator
;
579 with TGUISwitch(menu
.GetControl('swPlayerIndicatorStyle')) do
580 ItemIndex
:= gPlayerIndicatorStyle
;
582 TempScale
:= Round(g_dbg_scale
- 1);
583 TGUIScroll(menu
.GetControl('scScaleFactor')).Value
:= TempScale
;
585 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsPlayersP1Menu').GetControl('mOptionsPlayersP1Menu'));
587 TGUIListBox(menu
.GetControl('lsP1Model')).SelectItem(gPlayer1Settings
.Model
);
588 TGUIEdit(menu
.GetControl('edP1Name')).Text := gPlayer1Settings
.Name
;
590 TGUISwitch(menu
.GetControl('swP1Team')).ItemIndex
:=
591 IfThen(gPlayer1Settings
.Team
= TEAM_BLUE
, 1, 0);
593 TGUIScroll(menu
.GetControl('scP1Red')).Value
:= Round(gPlayer1Settings
.Color
.R
/16);
594 TGUIScroll(menu
.GetControl('scP1Green')).Value
:= Round(gPlayer1Settings
.Color
.G
/16);
595 TGUIScroll(menu
.GetControl('scP1Blue')).Value
:= Round(gPlayer1Settings
.Color
.B
/16);
597 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsPlayersP2Menu').GetControl('mOptionsPlayersP2Menu'));
599 TGUIListBox(menu
.GetControl('lsP2Model')).SelectItem(gPlayer2Settings
.Model
);
600 TGUIEdit(menu
.GetControl('edP2Name')).Text := gPlayer2Settings
.Name
;
602 TGUISwitch(menu
.GetControl('swP2Team')).ItemIndex
:=
603 IfThen(gPlayer2Settings
.Team
= TEAM_BLUE
, 1, 0);
605 TGUIScroll(menu
.GetControl('scP2Red')).Value
:= Round(gPlayer2Settings
.Color
.R
/16);
606 TGUIScroll(menu
.GetControl('scP2Green')).Value
:= Round(gPlayer2Settings
.Color
.G
/16);
607 TGUIScroll(menu
.GetControl('scP2Blue')).Value
:= Round(gPlayer2Settings
.Color
.B
/16);
609 ProcSelectModel(nil);
612 procedure ProcSwitchMonstersCustom(Sender
: TGUIControl
);
614 // don't turn off monsters in DM
616 with TGUIMenu(g_ActiveWindow.GetControl('mCustomGameMenu')) do
617 if TGUISwitch(GetControl('swGameMode')).GetText <> _lc[I_MENU_GAME_TYPE_CTF] then
618 TGUISwitch(GetControl('swMonsters')).ItemIndex := 0
620 TGUISwitch(GetControl('swMonsters')).ItemIndex := 1;
623 if TGUISwitch(GetControl('swGameMode')).GetText = _lc[I_MENU_GAME_TYPE_COOP] then
624 TGUISwitch(GetControl('swMonsters')).ItemIndex := 0
625 else if TGUISwitch(GetControl('swGameMode')).GetText = _lc[I_MENU_GAME_TYPE_CTF] then
626 TGUISwitch(GetControl('swMonsters')).ItemIndex := 1;
630 procedure ProcSwitchMonstersNet(Sender
: TGUIControl
);
632 // don't turn off monsters in DM
634 with TGUIMenu(g_ActiveWindow.GetControl('mNetServerMenu')) do
635 if TGUISwitch(GetControl('swGameMode')).GetText <> _lc[I_MENU_GAME_TYPE_CTF] then
636 TGUISwitch(GetControl('swMonsters')).ItemIndex := 0
638 TGUISwitch(GetControl('swMonsters')).ItemIndex := 1;
641 if TGUISwitch(GetControl('swGameMode')).GetText = _lc[I_MENU_GAME_TYPE_COOP] then
642 TGUISwitch(GetControl('swMonsters')).ItemIndex := 0
643 else if TGUISwitch(GetControl('swGameMode')).GetText = _lc[I_MENU_GAME_TYPE_CTF] then
644 TGUISwitch(GetControl('swMonsters')).ItemIndex := 1;
648 procedure ProcStartCustomGame();
655 with TGUIMenu(g_ActiveWindow
.GetControl('mCustomGameMenu')) do
657 Map
:= TGUILabel(GetControl('lbMap')).Text;
660 if not isWadPath(Map
) then
663 GameMode
:= TGUISwitch(GetControl('swGameMode')).ItemIndex
+1;
664 gcGameMode
:= TGUISwitch(GetControl('swGameMode')).GetText
;
665 gcTimeLimit
:= StrToIntDef(TGUIEdit(GetControl('edTimeLimit')).Text, 0);
666 gcGoalLimit
:= StrToIntDef(TGUIEdit(GetControl('edGoalLimit')).Text, 0);
667 gcMaxLives
:= StrToIntDef(TGUIEdit(GetControl('edMaxLives')).Text, 0);
669 gcTeamDamage
:= TGUISwitch(GetControl('swTeamDamage')).ItemIndex
= 0;
670 gcAllowExit
:= TGUISwitch(GetControl('swEnableExits')).ItemIndex
= 0;
671 gcWeaponStay
:= TGUISwitch(GetControl('swWeaponStay')).ItemIndex
= 0;
672 gcMonsters
:= TGUISwitch(GetControl('swMonsters')).ItemIndex
= 0;
675 Options
:= Options
or GAME_OPTION_TEAMDAMAGE
;
677 Options
:= Options
or GAME_OPTION_ALLOWEXIT
;
679 Options
:= Options
or GAME_OPTION_WEAPONSTAY
;
681 Options
:= Options
or GAME_OPTION_MONSTERS
;
682 gcPlayers
:= TGUISwitch(GetControl('swPlayers')).ItemIndex
;
684 case TGUISwitch(GetControl('swBotsVS')).ItemIndex
of
686 Options
:= Options
or GAME_OPTION_BOTVSMONSTER
;
687 gcBotsVS
:= 'Monsters';
690 Options
:= Options
or GAME_OPTION_BOTVSPLAYER
or GAME_OPTION_BOTVSMONSTER
;
691 gcBotsVS
:= 'Everybody';
694 Options
:= Options
or GAME_OPTION_BOTVSPLAYER
;
695 gcBotsVS
:= 'Players';
702 s
:= e_GetWriteableDir(ConfigDirs
);
704 g_Options_Write_Gameplay_Custom(s
+ '/' + CONFIG_FILENAME
);
706 g_Game_StartCustom(Map
, GameMode
, gcTimeLimit
, gcGoalLimit
,
707 gcMaxLives
, Options
, gcPlayers
);
711 procedure ProcStartNetGame();
718 with TGUIMenu(g_ActiveWindow
.GetControl('mNetServerMenu')) do
720 Map
:= TGUILabel(GetControl('lbMap')).Text;
723 if not isWadPath(Map
) then
726 GameMode
:= TGUISwitch(GetControl('swGameMode')).ItemIndex
+1;
727 gnGameMode
:= TGUISwitch(GetControl('swGameMode')).GetText
;
728 gnTimeLimit
:= StrToIntDef(TGUIEdit(GetControl('edTimeLimit')).Text, 0);
729 gnGoalLimit
:= StrToIntDef(TGUIEdit(GetControl('edGoalLimit')).Text, 0);
730 gnMaxLives
:= StrToIntDef(TGUIEdit(GetControl('edMaxLives')).Text, 0);
731 NetPort
:= StrToIntDef(TGUIEdit(GetControl('edPort')).Text, 0);
733 gnTeamDamage
:= TGUISwitch(GetControl('swTeamDamage')).ItemIndex
= 0;
734 gnAllowExit
:= TGUISwitch(GetControl('swEnableExits')).ItemIndex
= 0;
735 gnWeaponStay
:= TGUISwitch(GetControl('swWeaponStay')).ItemIndex
= 0;
736 gnMonsters
:= TGUISwitch(GetControl('swMonsters')).ItemIndex
= 0;
739 Options
:= Options
or GAME_OPTION_TEAMDAMAGE
;
741 Options
:= Options
or GAME_OPTION_ALLOWEXIT
;
743 Options
:= Options
or GAME_OPTION_WEAPONSTAY
;
745 Options
:= Options
or GAME_OPTION_MONSTERS
;
746 gnPlayers
:= TGUISwitch(GetControl('swPlayers')).ItemIndex
;
748 case TGUISwitch(GetControl('swBotsVS')).ItemIndex
of
750 Options
:= Options
or GAME_OPTION_BOTVSMONSTER
;
751 gnBotsVS
:= 'Monsters';
754 Options
:= Options
or GAME_OPTION_BOTVSPLAYER
or GAME_OPTION_BOTVSMONSTER
;
755 gnBotsVS
:= 'Everybody';
758 Options
:= Options
or GAME_OPTION_BOTVSPLAYER
;
759 gnBotsVS
:= 'Players';
764 NetServerName
:= TGUIEdit(GetControl('edSrvName')).Text;
765 NetMaxClients
:= Max(1, StrToIntDef(TGUIEdit(GetControl('edMaxPlayers')).Text, 1));
766 NetMaxClients
:= Min(NET_MAXCLIENTS
, NetMaxClients
);
767 NetPassword
:= TGUIEdit(GetControl('edSrvPassword')).Text;
768 NetUseMaster
:= TGUISwitch(GetControl('swUseMaster')).ItemIndex
= 0;
771 s
:= e_GetWriteableDir(ConfigDirs
);
774 g_Options_Write_Net_Server(s
+ '/' + CONFIG_FILENAME
);
775 g_Options_Write_Gameplay_Net(s
+ '/' + CONFIG_FILENAME
)
778 g_Game_StartServer(Map
, GameMode
, gnTimeLimit
, gnGoalLimit
, gnMaxLives
,
779 Options
, gnPlayers
, 0, NetPort
);
782 procedure ProcConnectNetGame();
787 with TGUIMenu(g_ActiveWindow
.GetControl('mNetClientMenu')) do
789 NetClientIP
:= TGUIEdit(GetControl('edIP')).Text;
790 NetClientPort
:= StrToIntDef(TGUIEdit(GetControl('edPort')).Text, 0);
791 PW
:= TGUIEdit(GetControl('edPW')).Text;
794 s
:= e_GetWriteableDir(ConfigDirs
);
796 g_Options_Write_Net_Client(s
+ '/' + CONFIG_FILENAME
);
797 g_Game_StartClient(NetClientIP
, NetClientPort
, PW
);
800 procedure ProcEnterPassword();
805 with TGUIMenu(g_ActiveWindow
.GetControl('mClientPasswordMenu')) do
807 NetClientIP
:= PromptIP
;
808 NetClientPort
:= PromptPort
;
809 PW
:= TGUIEdit(GetControl('edPW')).Text;
812 s
:= e_GetWriteableDir(ConfigDirs
);
814 g_Options_Write_Net_Client(s
+ '/' + CONFIG_FILENAME
);
815 g_Game_StartClient(NetClientIP
, NetClientPort
, PW
);
818 procedure ProcServerlist();
820 if not NetInitDone
then
822 if (not g_Net_Init()) then
824 g_Console_Add('NET: ERROR: Failed to init ENet!');
831 g_Net_Slist_Set(NetSlistIP
, NetSlistPort
, NetSlistList
);
833 gState
:= STATE_SLIST
;
834 g_ActiveWindow
:= nil;
836 slWaitStr
:= _lc
[I_NET_SLIST_WAIT
];
841 slReturnPressed
:= True;
842 if g_Net_Slist_Fetch(slCurrent
) then
844 if slCurrent
= nil then
845 slWaitStr
:= _lc
[I_NET_SLIST_NOSERVERS
];
848 slWaitStr
:= _lc
[I_NET_SLIST_ERROR
];
849 g_Serverlist_GenerateTable(slCurrent
, slTable
);
852 procedure ProcStartCampaign();
858 with TGUIMenu(g_ActiveWindow
.GetControl('mCampaignMenu')) do
860 WAD
:= TGUIFileListBox(GetControl('lsWAD')).SelectedItem();
861 TwoPlayers
:= TGUISwitch(GetControl('swPlayers')).ItemIndex
= 1;
863 WAD
:= e_FindWadRel(MegawadDirs
, WAD
);
869 g_Game_StartSingle(WAD
+ ':\MAP01', TwoPlayers
, n
);
872 procedure ProcSelectMap(Sender
: TGUIControl
);
876 wad
, map
, res
: String;
878 win
:= g_GUI_GetWindow('SelectMapMenu');
879 with TGUIMenu(win
.GetControl('mSelectMapMenu')) do
881 wad
:= TGUIFileListBox(GetControl('lsMapWAD')).SelectedItem();
882 map
:= TGUIListBox(GetControl('lsMapRes')).SelectedItem();
884 if (wad
= '') or (map
= '') then
885 begin // Ýòî íå êàðòà
886 TGUILabel(GetControl('lbMapName')).Text := '';
887 TGUILabel(GetControl('lbMapAuthor')).Text := '';
888 TGUILabel(GetControl('lbMapSize')).Text := '';
889 TGUIMemo(GetControl('meMapDescription')).SetText('');
890 TGUIMapPreview(win
.GetControl('mpMapPreview')).ClearMap();
891 TGUILabel(win
.GetControl('lbMapScale')).Text := '';
897 a
:= g_Map_GetMapInfo(res
);
899 TGUILabel(GetControl('lbMapName')).Text := a
.Name
;
900 TGUILabel(GetControl('lbMapAuthor')).Text := a
.Author
;
901 TGUILabel(GetControl('lbMapSize')).Text := Format('%dx%d', [a
.Width
, a
.Height
]);
902 TGUIMemo(GetControl('meMapDescription')).SetText(a
.Description
);
903 TGUIMapPreview(win
.GetControl('mpMapPreview')).SetMap(res
);
904 TGUILabel(win
.GetControl('lbMapScale')).Text :=
905 TGUIMapPreview(win
.GetControl('mpMapPreview')).GetScaleStr
;
910 procedure ProcSelectWAD(Sender
: TGUIControl
);
915 with TGUIMenu(g_GUI_GetWindow('SelectMapMenu').GetControl('mSelectMapMenu')) do
917 wad
:= TGUIFileListBox(GetControl('lsMapWAD')).SelectedItem();
919 with TGUIListBox(GetControl('lsMapRes')) do
925 list
:= g_Map_GetMapsList(wad
);
939 procedure ProcSelectCampaignWAD(Sender
: TGUIControl
);
945 win
:= g_GUI_GetWindow('CampaignMenu');
946 with TGUIMenu(win
.GetControl('mCampaignMenu')) do
948 wad
:= TGUIFileListBox(GetControl('lsWAD')).SelectedItem();
952 TGUILabel(GetControl('lbWADName')).Text := '';
953 TGUILabel(GetControl('lbWADAuthor')).Text := '';
954 TGUIMemo(GetControl('meWADDescription')).SetText('');
957 a
:= g_Game_GetMegaWADInfo(wad
);
959 TGUILabel(GetControl('lbWADName')).Text := a
.Name
;
960 TGUILabel(GetControl('lbWADAuthor')).Text := a
.Author
;
961 TGUIMemo(GetControl('meWADDescription')).SetText(a
.Description
);
963 TGUIImage(win
.GetControl('mpWADImage')).ClearImage();
967 fn
:= g_ExtractWadName(a
.pic
);
969 TGUIImage(win
.GetControl('mpWADImage')).SetImage(wad
+a
.pic
)
971 TGUIImage(win
.GetControl('mpWADImage')).SetImage(a
.pic
);
976 procedure ProcChangeColor(Sender
: TGUIControl
);
980 window
:= g_GUI_GetWindow('OptionsPlayersP1Menu');
981 with TGUIMenu(window
.GetControl('mOptionsPlayersP1Menu')) do
982 TGUIModelView(window
.GetControl('mvP1Model')).SetColor(
983 Min(TGUIScroll(GetControl('scP1Red')).Value
*16, 255),
984 Min(TGUIScroll(GetControl('scP1Green')).Value
*16, 255),
985 Min(TGUIScroll(GetControl('scP1Blue')).Value
*16, 255));
987 window
:= g_GUI_GetWindow('OptionsPlayersP2Menu');
988 with TGUIMenu(window
.GetControl('mOptionsPlayersP2Menu')) do
989 TGUIModelView(window
.GetControl('mvP2Model')).SetColor(
990 Min(TGUIScroll(GetControl('scP2Red')).Value
*16, 255),
991 Min(TGUIScroll(GetControl('scP2Green')).Value
*16, 255),
992 Min(TGUIScroll(GetControl('scP2Blue')).Value
*16, 255));
995 procedure ProcSelectModel(Sender
: TGUIControl
);
1000 window
:= g_GUI_GetWindow('OptionsPlayersP1Menu');
1001 a
:= TGUIListBox(TGUIMenu(window
.GetControl('mOptionsPlayersP1Menu')).GetControl('lsP1Model')).SelectedItem
;
1002 if a
<> '' then TGUIModelView(window
.GetControl('mvP1Model')).SetModel(a
);
1004 window
:= g_GUI_GetWindow('OptionsPlayersP2Menu');
1005 a
:= TGUIListBox(TGUIMenu(window
.GetControl('mOptionsPlayersP2Menu')).GetControl('lsP2Model')).SelectedItem
;
1006 if a
<> '' then TGUIModelView(window
.GetControl('mvP2Model')).SetModel(a
);
1008 ProcChangeColor(nil);
1011 procedure LoadStdFont(cfgres
, texture
: string; var FontID
: DWORD
);
1023 wad
:= TWADFile
.Create
;
1024 if wad
.ReadFile(GameWAD
) then
1025 wad
.GetResource('FONTS/'+cfgres
, cfgdata
, cfglen
);
1030 g_Texture_CreateWADEx('FONT_STD', GameWAD
+':FONTS\'+texture
);
1032 config
:= TConfig
.CreateMem(cfgdata
, cfglen
);
1033 cwdt
:= Min(Max(config
.ReadInt('FontMap', 'CharWidth', 0), 0), 255);
1034 chgt
:= Min(Max(config
.ReadInt('FontMap', 'CharHeight', 0), 0), 255);
1035 spc
:= Min(Max(config
.ReadInt('FontMap', 'Kerning', 0), -128), 127);
1037 if g_Texture_Get('FONT_STD', ID
) then
1038 e_TextureFontBuild(ID
, FontID
, cwdt
, chgt
, spc
);
1043 if cfglen
<> 0 then FreeMem(cfgdata
);
1046 procedure LoadFont(txtres
, fntres
: string; var FontID
: DWORD
);
1052 cfgdata
, fntdata
: Pointer;
1053 cfglen
, fntlen
: Integer;
1061 wad
:= TWADFile
.Create
;
1062 if wad
.ReadFile(GameWAD
) then
1064 wad
.GetResource('FONTS/'+txtres
, cfgdata
, cfglen
);
1065 wad
.GetResource('FONTS/'+fntres
, fntdata
, fntlen
);
1071 config
:= TConfig
.CreateMem(cfgdata
, cfglen
);
1072 cwdt
:= Min(Max(config
.ReadInt('FontMap', 'CharWidth', 0), 0), 255);
1073 chgt
:= Min(Max(config
.ReadInt('FontMap', 'CharHeight', 0), 0), 255);
1075 spc
:= Min(Max(config
.ReadInt('FontMap', 'Kerning', 0), -128), 127);
1076 FontID
:= e_CharFont_Create(spc
);
1078 for a
:= 0 to 255 do
1080 chrwidth
:= config
.ReadInt(IntToStr(a
), 'Width', 0);
1081 if chrwidth
= 0 then Continue
;
1083 if e_CreateTextureMemEx(fntdata
, fntlen
, CharID
, cwdt
*(a
mod 16), chgt
*(a
div 16),
1085 e_CharFont_AddChar(FontID
, CharID
, Chr(a
), chrwidth
);
1091 if cfglen
<> 0 then FreeMem(cfgdata
);
1092 if fntlen
<> 0 then FreeMem(fntdata
);
1095 procedure MenuLoadData();
1097 e_WriteLog('Loading menu data...', TMsgType
.Notify
);
1099 g_Texture_CreateWADEx('MAINMENU_LOGO', GameWAD
+':TEXTURES\MAINLOGO');
1100 g_Texture_CreateWADEx('MAINMENU_MARKER1', GameWAD
+':TEXTURES\MARKER1');
1101 g_Texture_CreateWADEx('MAINMENU_MARKER2', GameWAD
+':TEXTURES\MARKER2');
1102 g_Texture_CreateWADEx('SCROLL_LEFT', GameWAD
+':TEXTURES\SLEFT');
1103 g_Texture_CreateWADEx('SCROLL_RIGHT', GameWAD
+':TEXTURES\SRIGHT');
1104 g_Texture_CreateWADEx('SCROLL_MIDDLE', GameWAD
+':TEXTURES\SMIDDLE');
1105 g_Texture_CreateWADEx('SCROLL_MARKER', GameWAD
+':TEXTURES\SMARKER');
1106 g_Texture_CreateWADEx('EDIT_LEFT', GameWAD
+':TEXTURES\ELEFT');
1107 g_Texture_CreateWADEx('EDIT_RIGHT', GameWAD
+':TEXTURES\ERIGHT');
1108 g_Texture_CreateWADEx('EDIT_MIDDLE', GameWAD
+':TEXTURES\EMIDDLE');
1109 g_Texture_CreateWADEx('BOX1', GameWAD
+':TEXTURES\BOX1');
1110 g_Texture_CreateWADEx('BOX2', GameWAD
+':TEXTURES\BOX2');
1111 g_Texture_CreateWADEx('BOX3', GameWAD
+':TEXTURES\BOX3');
1112 g_Texture_CreateWADEx('BOX4', GameWAD
+':TEXTURES\BOX4');
1113 g_Texture_CreateWADEx('BOX5', GameWAD
+':TEXTURES\BOX5');
1114 g_Texture_CreateWADEx('BOX6', GameWAD
+':TEXTURES\BOX6');
1115 g_Texture_CreateWADEx('BOX7', GameWAD
+':TEXTURES\BOX7');
1116 g_Texture_CreateWADEx('BOX8', GameWAD
+':TEXTURES\BOX8');
1117 g_Texture_CreateWADEx('BOX9', GameWAD
+':TEXTURES\BOX9');
1118 g_Texture_CreateWADEx('BSCROLL_UP_A', GameWAD
+':TEXTURES\SCROLLUPA');
1119 g_Texture_CreateWADEx('BSCROLL_UP_U', GameWAD
+':TEXTURES\SCROLLUPU');
1120 g_Texture_CreateWADEx('BSCROLL_DOWN_A', GameWAD
+':TEXTURES\SCROLLDOWNA');
1121 g_Texture_CreateWADEx('BSCROLL_DOWN_U', GameWAD
+':TEXTURES\SCROLLDOWNU');
1122 g_Texture_CreateWADEx('BSCROLL_MIDDLE', GameWAD
+':TEXTURES\SCROLLMIDDLE');
1123 g_Texture_CreateWADEx('NOPIC', GameWAD
+':TEXTURES\NOPIC');
1125 g_Sound_CreateWADEx('MENU_SELECT', GameWAD
+':SOUNDS\MENUSELECT');
1126 g_Sound_CreateWADEx('MENU_OPEN', GameWAD
+':SOUNDS\MENUOPEN');
1127 g_Sound_CreateWADEx('MENU_CLOSE', GameWAD
+':SOUNDS\MENUCLOSE');
1128 g_Sound_CreateWADEx('MENU_CHANGE', GameWAD
+':SOUNDS\MENUCHANGE');
1129 g_Sound_CreateWADEx('SCROLL_ADD', GameWAD
+':SOUNDS\SCROLLADD');
1130 g_Sound_CreateWADEx('SCROLL_SUB', GameWAD
+':SOUNDS\SCROLLSUB');
1131 g_Sound_CreateWADEx('SOUND_PLAYER_FALL', GameWAD
+':SOUNDS\FALL');
1134 procedure MenuFreeData();
1136 e_CharFont_Remove(gMenuFont
);
1137 e_CharFont_Remove(gMenuSmallFont
);
1139 g_Texture_Delete('MAINMENU_LOGO');
1140 g_Texture_Delete('MAINMENU_MARKER1');
1141 g_Texture_Delete('MAINMENU_MARKER2');
1142 g_Texture_Delete('SCROLL_LEFT');
1143 g_Texture_Delete('SCROLL_RIGHT');
1144 g_Texture_Delete('SCROLL_MIDDLE');
1145 g_Texture_Delete('SCROLL_MARKER');
1146 g_Texture_Delete('EDIT_LEFT');
1147 g_Texture_Delete('EDIT_RIGHT');
1148 g_Texture_Delete('EDIT_MIDDLE');
1149 g_Texture_Delete('BOX1');
1150 g_Texture_Delete('BOX2');
1151 g_Texture_Delete('BOX3');
1152 g_Texture_Delete('BOX4');
1153 g_Texture_Delete('BOX5');
1154 g_Texture_Delete('BOX6');
1155 g_Texture_Delete('BOX7');
1156 g_Texture_Delete('BOX8');
1157 g_Texture_Delete('BOX9');
1158 g_Texture_Delete('BSCROLL_UP_A');
1159 g_Texture_Delete('BSCROLL_UP_U');
1160 g_Texture_Delete('BSCROLL_DOWN_A');
1161 g_Texture_Delete('BSCROLL_DOWN_U');
1162 g_Texture_Delete('BSCROLL_MIDDLE');
1163 g_Texture_Delete('NOPIC');
1165 g_Sound_Delete('MENU_SELECT');
1166 g_Sound_Delete('MENU_OPEN');
1167 g_Sound_Delete('MENU_CLOSE');
1168 g_Sound_Delete('MENU_CHANGE');
1169 g_Sound_Delete('SCROLL_ADD');
1170 g_Sound_Delete('SCROLL_SUB');
1171 g_Sound_Delete('SOUND_PLAYER_FALL');
1174 procedure ProcAuthorsMenu();
1176 gMusic
.SetByName('MUSIC_INTERMUS');
1180 procedure ProcExitMenuKeyDown (yes
: Boolean);
1183 snd
: TPlayableSound
;
1188 g_Game_StopAllSounds(True);
1189 case (Random(18)) of
1190 0: s
:= 'SOUND_MONSTER_PAIN';
1191 1: s
:= 'SOUND_MONSTER_DIE_3';
1192 2: s
:= 'SOUND_MONSTER_SLOP';
1193 3: s
:= 'SOUND_MONSTER_DEMON_DIE';
1194 4: s
:= 'SOUND_MONSTER_IMP_DIE_2';
1195 5: s
:= 'SOUND_MONSTER_MAN_DIE';
1196 6: s
:= 'SOUND_MONSTER_BSP_DIE';
1197 7: s
:= 'SOUND_MONSTER_VILE_DIE';
1198 8: s
:= 'SOUND_MONSTER_SKEL_DIE';
1199 9: s
:= 'SOUND_MONSTER_MANCUB_ALERT';
1200 10: s
:= 'SOUND_MONSTER_PAIN_PAIN';
1201 11: s
:= 'SOUND_MONSTER_BARON_DIE';
1202 12: s
:= 'SOUND_MONSTER_CACO_DIE';
1203 13: s
:= 'SOUND_MONSTER_CYBER_DIE';
1204 14: s
:= 'SOUND_MONSTER_KNIGHT_ALERT';
1205 15: s
:= 'SOUND_MONSTER_SPIDER_ALERT';
1206 else s
:= 'SOUND_PLAYER_FALL';
1208 snd
:= TPlayableSound
.Create();
1209 res
:= snd
.SetByName(s
);
1210 if not res
then res
:= snd
.SetByName('SOUND_PLAYER_FALL');
1214 while snd
.IsPlaying() do begin end;
1222 procedure ProcLoadMenu();
1229 TGUIEdit(TGUIMenu(g_GUI_GetWindow('LoadMenu').GetControl('mmLoadMenu')).GetControl('edSlot'+IntToStr(a
))).Text := g_GetSaveName(a
, valid
);
1230 TGUIEdit(TGUIMenu(g_GUI_GetWindow('LoadMenu').GetControl('mmLoadMenu')).GetControl('edSlot'+IntToStr(a
))).Invalid
:= not valid
;
1231 //TGUIMenu(g_GUI_GetWindow('LoadMenu').GetControl('mmLoadMenu')).GetControl('edSlot'+IntToStr(a)).Enabled := valid;
1235 procedure ProcSaveMenu();
1243 name
:= g_GetSaveName(a
, valid
);
1244 TGUIEdit(TGUIMenu(g_GUI_GetWindow('SaveMenu').GetControl('mmSaveMenu')).GetControl('edSlot'+IntToStr(a
))).Text := name
;
1245 TGUIEdit(TGUIMenu(g_GUI_GetWindow('SaveMenu').GetControl('mmSaveMenu')).GetControl('edSlot'+IntToStr(a
))).Invalid
:= (name
<> '') and (not valid
);
1249 procedure ProcSaveGame(Sender
: TGUIControl
);
1253 if g_Game_IsNet
then Exit
;
1254 if g_Game_IsTestMap
then Exit
;
1255 a
:= StrToInt(Copy(Sender
.Name
, Length(Sender
.Name
), 1));
1256 g_Game_PauseAllSounds(True);
1257 g_SaveGame(a
, TGUIEdit(Sender
).Text);
1259 g_ActiveWindow
:= nil;
1260 g_Game_Pause(False);
1263 procedure ProcLoadGame(Sender
: TGUIControl
);
1267 if g_Game_IsNet
then Exit
;
1268 a
:= StrToInt(Copy(Sender
.Name
, Length(Sender
.Name
), 1));
1269 if g_LoadGame(a
) then
1271 g_Game_PauseAllSounds(False)
1273 else // Íå çàãðóçèëîñü - âîçâðàò â ìåíþ
1275 g_Console_Add(_lc
[I_MSG_BAD_SAVE_VERSION
], true);
1276 g_GUI_GetWindow('LoadMenu').SetActive(g_GUI_GetWindow('LoadMenu').GetControl('mmLoadMenu'));
1277 //g_ActiveWindow := nil;
1281 procedure ProcSinglePlayer (n
: Integer);
1282 var wad
, map
: AnsiString;
1285 wad
:= g_ExtractWadName(gDefaultMegawadStart
);
1286 map
:= g_ExtractFilePathName(gDefaultMegawadStart
);
1287 if e_FindResource(AllMapDirs
, wad
) then
1289 wad
:= ExpandFileName(wad
);
1290 g_Game_StartSingle(wad
+ ':\' + map
, n
> 1, n
)
1294 procedure ProcSingle1Player
;
1299 procedure ProcSingle2Players
;
1304 procedure ProcSelectMapMenu();
1307 wad_lb
: TGUIFileListBox
;
1308 map_lb
: TGUIListBox
;
1311 menu
:= TGUIMenu(g_GUI_GetWindow('SelectMapMenu').GetControl('mSelectMapMenu'));
1312 wad_lb
:= TGUIFileListBox(menu
.GetControl('lsMapWAD'));
1313 map_lb
:= TGUIListBox(menu
.GetControl('lsMapRes'));
1315 if wad_lb
.SelectedItem() <> '' then
1316 map
:= map_lb
.SelectedItem()
1320 wad_lb
.UpdateFileList();
1323 if wad_lb
.SelectedItem() <> '' then
1326 map_lb
.SelectItem(map
);
1328 if map_lb
.SelectedItem() <> '' then
1332 g_GUI_ShowWindow('SelectMapMenu');
1335 procedure ProcSelectCampaignMenu();
1338 wad_lb
: TGUIFileListBox
;
1340 menu
:= TGUIMenu(g_GUI_GetWindow('CampaignMenu').GetControl('mCampaignMenu'));
1341 wad_lb
:= TGUIFileListBox(menu
.GetControl('lsWAD'));
1343 wad_lb
.UpdateFileList();
1345 if wad_lb
.SelectedItem() <> '' then
1346 ProcSelectCampaignWAD(nil);
1349 procedure ProcSetMap();
1351 wad
, map
, res
: String;
1353 with TGUIMenu(g_ActiveWindow
.GetControl('mSelectMapMenu')) do
1355 wad
:= TGUIFileListBox(GetControl('lsMapWAD')).SelectedItem();
1356 map
:= TGUIListBox(GetControl('lsMapRes')).SelectedItem();
1359 if (wad
= '') or (map
= '') then
1362 wad
:= e_FindWadRel(MapDirs
, WAD
);
1364 res
:= wad
+':\'+map
;
1366 TGUILabel(TGUIMenu(g_GUI_GetWindow('CustomGameMenu').GetControl('mCustomGameMenu')).GetControl('lbMap')).Text := res
;
1367 TGUILabel(TGUIMenu(g_GUI_GetWindow('NetServerMenu').GetControl('mNetServerMenu')).GetControl('lbMap')).Text := res
;
1370 procedure ProcChangeSoundSettings(Sender
: TGUIControl
);
1374 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsSoundMenu').GetControl('mOptionsSoundMenu'));
1376 g_Sound_SetupAllVolumes(
1377 Min(TGUIScroll(menu
.GetControl('scSoundLevel')).Value
*16, 255),
1378 Min(TGUIScroll(menu
.GetControl('scMusicLevel')).Value
*16, 255)
1382 procedure ProcChangeGameSettings(Sender
: TGUIControl
);
1386 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsGameMenu').GetControl('mOptionsGameMenu'));
1387 if TGUIScroll(menu
.GetControl('scScaleFactor')).Value
<> TempScale
then
1389 TempScale
:= TGUIScroll(menu
.GetControl('scScaleFactor')).Value
;
1390 g_dbg_scale
:= TempScale
+ 1;
1394 procedure ProcChangeTouchSettings(Sender
: TGUIControl
);
1398 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsControlsTouchMenu').GetControl('mOptionsControlsTouchMenu'));
1399 g_touch_alt
:= TGUISwitch(menu
.GetControl('swTouchAlt')).ItemIndex
= 1;
1400 g_touch_size
:= TGUIScroll(menu
.GetControl('scTouchSize')).Value
/ 10 + 0.5;
1401 g_touch_offset
:= TGUIScroll(menu
.GetControl('scTouchOffset')).Value
* 5;
1404 procedure ProcOptionsPlayersMIMenu();
1409 if g_ActiveWindow
.Name
= 'OptionsPlayersP1Menu' then s
:= 'P1' else s
:= 'P2';
1411 a
:= TGUIListBox(TGUIMenu(g_ActiveWindow
.GetControl('mOptionsPlayers'+s
+'Menu')).GetControl('ls'+s
+'Model')).SelectedItem
;
1413 if a
= '' then Exit
;
1415 b
:= g_PlayerModel_GetInfo(a
);
1417 with TGUIMenu(g_GUI_GetWindow('OptionsPlayersMIMenu').GetControl('mOptionsPlayersMIMenu')) do
1419 TGUILabel(GetControl('lbName')).Text := b
.Name
;
1420 TGUILabel(GetControl('lbAuthor')).Text := b
.Author
;
1421 TGUIMemo(GetControl('meComment')).SetText(b
.Description
);
1423 if b
.HaveWeapon
then
1424 TGUILabel(GetControl('lbWeapon')).Text := _lc
[I_MENU_YES
]
1426 TGUILabel(GetControl('lbWeapon')).Text := _lc
[I_MENU_NO
];
1429 g_GUI_ShowWindow('OptionsPlayersMIMenu');
1432 procedure ProcOptionsPlayersAnim();
1436 if g_ActiveWindow
.Name
= 'OptionsPlayersP1Menu' then
1441 with TGUIModelView(g_ActiveWindow
.GetControl('mv'+s
+'Model')) do
1444 Model
.GetCurrentAnimation
.Loop
:= True;
1445 Model
.GetCurrentAnimationMask
.Loop
:= True;
1449 procedure ProcOptionsPlayersWeap();
1453 if g_ActiveWindow
.Name
= 'OptionsPlayersP1Menu' then
1458 with TGUIModelView(g_ActiveWindow
.GetControl('mv'+s
+'Model')) do
1462 procedure ProcOptionsPlayersRot();
1466 if g_ActiveWindow
.Name
= 'OptionsPlayersP1Menu' then s
:= 'P1' else s
:= 'P2';
1467 with TGUIModelView(g_ActiveWindow
.GetControl('mv'+s
+'Model')).Model
do
1469 if Direction
= TDirection
.D_LEFT
then Direction
:= TDirection
.D_RIGHT
else Direction
:= TDirection
.D_LEFT
;
1473 procedure ProcDefaultMenuKeyDown (yes
: Boolean);
1477 g_Options_SetDefault();
1483 procedure ProcSavedMenuKeyDown (yes
: Boolean);
1485 if yes
then ReadOptions();
1489 procedure ProcAuthorsClose();
1491 gMusic
.SetByName('MUSIC_MENU');
1493 gState
:= STATE_MENU
;
1496 procedure ProcGMClose();
1498 g_Game_InGameMenu(False);
1501 procedure ProcGMShow();
1506 if (gGameSettings
.GameType
= GT_SINGLE
) and
1507 ((gPlayer1
= nil) or (not gPlayer1
.alive
)) and
1508 ((gPlayer2
= nil) or (not gPlayer2
.alive
)) then
1509 Enabled
:= False; // Îäèí èç èãðîêîâ ïîãèá â ñèíãëå
1511 Enabled
:= False; // Çàïðåòèòü ñîõðàíåíèå â èíòåðìèññèè (íå ðåàëèçîâàíî)
1512 if g_Game_IsTestMap
then
1513 Enabled
:= False; // Åñëè èãðàåì íà òåñòîâîé èëè âðåìåííîé êàðòå
1514 TGUIMainMenu(g_ActiveWindow
.GetControl(
1515 g_ActiveWindow
.DefControl
)).EnableButton('save', Enabled
);
1518 procedure ProcChangePlayers();
1520 TeamGame
, Spectator
, AddTwo
: Boolean;
1521 P1Team
{, P2Team}: Byte;
1522 bP2
: TGUITextButton
;
1524 TeamGame
:= gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
];
1525 Spectator
:= (gPlayer1
= nil) and (gPlayer2
= nil);
1526 AddTwo
:= gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
];
1527 P1Team
:= TEAM_NONE
;
1528 if gPlayer1
<> nil then P1Team
:= gPlayer1
.Team
;
1530 //P2Team := TEAM_NONE;
1531 //if gPlayer2 <> nil then P2Team := gPlayer2.Team;
1533 TGUIMainMenu(g_ActiveWindow
.GetControl(
1534 g_ActiveWindow
.DefControl
)).EnableButton('tmJoinRed', TeamGame
and (P1Team
<> TEAM_RED
));
1535 TGUIMainMenu(g_ActiveWindow
.GetControl(
1536 g_ActiveWindow
.DefControl
)).EnableButton('tmJoinBlue', TeamGame
and (P1Team
<> TEAM_BLUE
));
1537 TGUIMainMenu(g_ActiveWindow
.GetControl(
1538 g_ActiveWindow
.DefControl
)).EnableButton('tmJoinGame', Spectator
and not TeamGame
);
1540 bP2
:= TGUIMainMenu(g_ActiveWindow
.GetControl(
1541 g_ActiveWindow
.DefControl
)).GetButton('tmPlayer2');
1542 bP2
.Enabled
:= AddTwo
and not Spectator
;
1544 bP2
.Color
:= MAINMENU_ITEMS_COLOR
1546 bP2
.Color
:= MAINMENU_UNACTIVEITEMS_COLOR
;
1547 if gPlayer2
= nil then
1548 bP2
.Caption
:= _lc
[I_MENU_ADD_PLAYER_2
]
1550 bP2
.Caption
:= _lc
[I_MENU_REM_PLAYER_2
];
1552 TGUIMainMenu(g_ActiveWindow
.GetControl(
1553 g_ActiveWindow
.DefControl
)).EnableButton('tmSpectate', not Spectator
);
1556 procedure ProcJoinRed();
1558 if not (gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
, GT_CLIENT
]) then
1560 if g_Game_IsServer
then
1562 if gPlayer1
= nil then
1563 g_Game_AddPlayer(TEAM_RED
)
1566 if gPlayer1
.Team
<> TEAM_RED
then
1568 gPlayer1
.SwitchTeam
;
1569 gPlayer1Settings
.Team
:= gPlayer1
.Team
;
1572 if g_Game_IsNet
then MH_SEND_PlayerSettings(gPlayer1
.UID
);
1577 gPlayer1Settings
.Team
:= TEAM_RED
;
1578 MC_SEND_PlayerSettings
;
1579 if gPlayer1
= nil then
1580 g_Game_AddPlayer(TEAM_RED
);
1582 g_ActiveWindow
:= nil;
1583 g_Game_Pause(False);
1586 procedure ProcJoinBlue();
1588 if not (gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
, GT_CLIENT
]) then
1590 if g_Game_IsServer
then
1592 if gPlayer1
= nil then
1593 g_Game_AddPlayer(TEAM_BLUE
)
1596 if gPlayer1
.Team
<> TEAM_BLUE
then
1598 gPlayer1
.SwitchTeam
;
1599 gPlayer1Settings
.Team
:= gPlayer1
.Team
;
1602 if g_Game_IsNet
then MH_SEND_PlayerSettings(gPlayer1
.UID
);
1607 gPlayer1Settings
.Team
:= TEAM_BLUE
;
1608 MC_SEND_PlayerSettings
;
1609 if gPlayer1
= nil then
1610 g_Game_AddPlayer(TEAM_BLUE
);
1612 g_ActiveWindow
:= nil;
1613 g_Game_Pause(False);
1616 procedure ProcJoinGame();
1618 if not (gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
, GT_CLIENT
]) then
1620 if gPlayer1
= nil then
1622 g_ActiveWindow
:= nil;
1623 g_Game_Pause(False);
1626 procedure ProcSwitchP2();
1628 if not (gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
]) then
1630 if gPlayer1
= nil then
1632 if gPlayer2
= nil then
1635 g_Game_RemovePlayer();
1636 g_ActiveWindow
:= nil;
1637 g_Game_Pause(False);
1640 procedure ProcSpectate();
1642 if not (gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
, GT_CLIENT
]) then
1645 g_ActiveWindow
:= nil;
1646 g_Game_Pause(False);
1649 procedure ProcRestartMenuKeyDown (yes
: Boolean);
1651 if yes
then g_Game_Restart() else g_GUI_HideWindow
;
1654 procedure ProcEndMenuKeyDown (yes
: Boolean);
1656 if yes
then gExit
:= EXIT_SIMPLE
else g_GUI_HideWindow
;
1659 procedure ProcSetRussianLanguage
;
1661 if gLanguage
<> LANGUAGE_RUSSIAN
then
1663 gLanguage
:= LANGUAGE_RUSSIAN
;
1664 gLanguageChange
:= True;
1665 gAskLanguage
:= False;
1670 procedure ProcSetEnglishLanguage
;
1672 if gLanguage
<> LANGUAGE_ENGLISH
then
1674 gLanguage
:= LANGUAGE_ENGLISH
;
1675 gLanguageChange
:= True;
1676 gAskLanguage
:= False;
1681 procedure ReadGameSettings();
1685 menu
:= TGUIMenu(g_GUI_GetWindow('GameSetGameMenu').GetControl('mGameSetGameMenu'));
1687 with gGameSettings
do
1689 with TGUISwitch(menu
.GetControl('swTeamDamage')) do
1690 if LongBool(Options
and GAME_OPTION_TEAMDAMAGE
) then
1695 TGUIEdit(menu
.GetControl('edTimeLimit')).Text := IntToStr(TimeLimit
);
1696 TGUIEdit(menu
.GetControl('edGoalLimit')).Text := IntToStr(GoalLimit
);
1697 TGUIEdit(menu
.GetControl('edMaxLives')).Text := IntToStr(MaxLives
);
1699 with TGUISwitch(menu
.GetControl('swBotsVS')) do
1700 if LongBool(Options
and GAME_OPTION_BOTVSPLAYER
) and
1701 LongBool(Options
and GAME_OPTION_BOTVSMONSTER
) then
1704 if LongBool(Options
and GAME_OPTION_BOTVSMONSTER
) then
1709 if GameType
in [GT_CUSTOM
, GT_SERVER
] then
1711 TGUISwitch(menu
.GetControl('swTeamDamage')).Enabled
:= True;
1712 TGUIEdit(menu
.GetControl('edTimeLimit')).Enabled
:= True;
1713 TGUILabel(menu
.GetControlsText('edTimeLimit')).Color
:= MENU_ITEMSTEXT_COLOR
;
1714 TGUIEdit(menu
.GetControl('edGoalLimit')).Enabled
:= True;
1715 TGUILabel(menu
.GetControlsText('edGoalLimit')).Color
:= MENU_ITEMSTEXT_COLOR
;
1716 TGUIEdit(menu
.GetControl('edMaxLives')).Enabled
:= True;
1717 TGUILabel(menu
.GetControlsText('edMaxLives')).Color
:= MENU_ITEMSTEXT_COLOR
;
1718 TGUISwitch(menu
.GetControl('swBotsVS')).Enabled
:= True;
1722 TGUISwitch(menu
.GetControl('swTeamDamage')).Enabled
:= True;
1723 with TGUIEdit(menu
.GetControl('edTimeLimit')) do
1728 TGUILabel(menu
.GetControlsText('edTimeLimit')).Color
:= MENU_UNACTIVEITEMS_COLOR
;
1729 with TGUIEdit(menu
.GetControl('edGoalLimit')) do
1734 TGUILabel(menu
.GetControlsText('edGoalLimit')).Color
:= MENU_UNACTIVEITEMS_COLOR
;
1735 with TGUIEdit(menu
.GetControl('edMaxLives')) do
1740 TGUILabel(menu
.GetControlsText('edMaxLives')).Color
:= MENU_UNACTIVEITEMS_COLOR
;
1741 TGUISwitch(menu
.GetControl('swBotsVS')).Enabled
:= True;
1746 procedure ProcApplyGameSet();
1750 stat
: TPlayerStatArray
;
1752 menu
:= TGUIMenu(g_GUI_GetWindow('GameSetGameMenu').GetControl('mGameSetGameMenu'));
1754 if not g_Game_IsServer
then Exit
;
1756 with gGameSettings
do
1758 if TGUISwitch(menu
.GetControl('swTeamDamage')).Enabled
then
1760 if TGUISwitch(menu
.GetControl('swTeamDamage')).ItemIndex
= 0 then
1761 Options
:= Options
or GAME_OPTION_TEAMDAMAGE
1763 Options
:= Options
and (not GAME_OPTION_TEAMDAMAGE
);
1766 if TGUIEdit(menu
.GetControl('edTimeLimit')).Enabled
then
1768 n
:= StrToIntDef(TGUIEdit(menu
.GetControl('edTimeLimit')).Text, TimeLimit
);
1774 b
:= (gTime
- gGameStartTime
) div 1000 + 10; // 10 ñåêóíä íà ñìåíó
1776 TimeLimit
:= Max(n
, b
);
1780 if TGUIEdit(menu
.GetControl('edGoalLimit')).Enabled
then
1782 n
:= StrToIntDef(TGUIEdit(menu
.GetControl('edGoalLimit')).Text, GoalLimit
);
1789 if GameMode
= GM_DM
then
1791 stat
:= g_Player_GetStats();
1793 for a
:= 0 to High(stat
) do
1794 if stat
[a
].Frags
> b
then
1798 b
:= Max(gTeamStat
[TEAM_RED
].Goals
, gTeamStat
[TEAM_BLUE
].Goals
);
1800 GoalLimit
:= Max(n
, b
);
1804 if TGUIEdit(menu
.GetControl('edMaxLives')).Enabled
then
1806 n
:= StrToIntDef(TGUIEdit(menu
.GetControl('edMaxLives')).Text, GoalLimit
);
1807 if n
< 0 then n
:= 0;
1808 if n
> 255 then n
:= 255;
1814 stat
:= g_Player_GetStats();
1816 for a
:= 0 to High(stat
) do
1817 if stat
[a
].Lives
> b
then
1820 MaxLives
:= Max(n
, b
);
1824 if TGUISwitch(menu
.GetControl('swBotsVS')).Enabled
then
1826 case TGUISwitch(menu
.GetControl('swBotsVS')).ItemIndex
of
1829 Options
:= Options
and (not GAME_OPTION_BOTVSPLAYER
);
1830 Options
:= Options
or GAME_OPTION_BOTVSMONSTER
;
1834 Options
:= Options
or GAME_OPTION_BOTVSPLAYER
;
1835 Options
:= Options
or GAME_OPTION_BOTVSMONSTER
;
1839 Options
:= Options
or GAME_OPTION_BOTVSPLAYER
;
1840 Options
:= Options
and (not GAME_OPTION_BOTVSMONSTER
);
1846 if g_Game_IsNet
then MH_SEND_GameSettings
;
1849 procedure ProcVideoOptionsRes();
1854 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsVideoResMenu').GetControl('mOptionsVideoResMenu'));
1856 TGUILabel(menu
.GetControl('lbCurrentRes')).Text :=
1857 IntToStr(gScreenWidth
) +
1858 ' x ' + IntToStr(gScreenHeight
) +
1859 ', ' + IntToStr(gBPP
) + ' bpp';
1861 with TGUIListBox(menu
.GetControl('lsResolution')) do
1863 list
:= sys_GetDisplayModes(gBPP
);
1867 ItemIndex
:= Length(list
)
1875 with TGUISwitch(menu
.GetControl('swFullScreen')) do
1882 procedure ProcApplyVideoOptions();
1885 Fullscreen
: Boolean;
1886 SWidth
, SHeight
: Integer;
1889 menu
:= TGUIMenu(g_GUI_GetWindow('OptionsVideoResMenu').GetControl('mOptionsVideoResMenu'));
1891 str
:= TGUIListBox(menu
.GetControl('lsResolution')).SelectedItem
;
1892 SScanf(str
, '%dx%d', [@SWidth
, @SHeight
]);
1894 Fullscreen
:= TGUISwitch(menu
.GetControl('swFullScreen')).ItemIndex
= 0;
1896 if (SWidth
<> gScreenWidth
) or
1897 (SHeight
<> gScreenHeight
) or
1898 (Fullscreen
<> gFullscreen
) then
1900 gResolutionChange
:= True;
1901 gRC_Width
:= SWidth
;
1902 gRC_Height
:= SHeight
;
1903 gRC_FullScreen
:= Fullscreen
;
1904 gRC_Maximized
:= gWinMaximized
;
1907 // Ñîõðàíÿåì èçìåíåíèÿ âñåõ íàñòðîåê:
1911 procedure ProcSetFirstRussianLanguage
;
1913 gLanguage
:= LANGUAGE_RUSSIAN
;
1914 gLanguageChange
:= True;
1915 gAskLanguage
:= False;
1918 procedure ProcSetFirstEnglishLanguage
;
1920 gLanguage
:= LANGUAGE_ENGLISH
;
1921 gLanguageChange
:= True;
1922 gAskLanguage
:= False;
1925 procedure ProcRecallAddress();
1927 with TGUIMenu(g_GUI_GetWindow('NetClientMenu').GetControl('mNetClientMenu')) do
1929 TGUIEdit(GetControl('edIP')).Text := NetClientIP
;
1930 TGUIEdit(GetControl('edPort')).Text := IntToStr(NetClientPort
);
1934 procedure CreateFirstLanguageMenu();
1938 Menu
:= TGUIWindow
.Create('FirstLanguageMenu');
1940 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', ' '))) do
1942 Name
:= 'mmFirstLanguageMenu';
1943 AddButton(@ProcSetFirstRussianLanguage
, 'Ðóññêèé', '');
1944 AddButton(@ProcSetFirstEnglishLanguage
, 'English', '');
1947 Menu
.DefControl
:= 'mmFirstLanguageMenu';
1948 Menu
.MainWindow
:= True;
1949 g_GUI_AddWindow(Menu
);
1952 procedure g_Menu_AskLanguage();
1954 CreateFirstLanguageMenu();
1955 g_GUI_ShowWindow('FirstLanguageMenu');
1958 procedure CreatePlayerOptionsMenu(s
: String);
1963 Menu
:= TGUIWindow
.Create('OptionsPlayers'+s
+'Menu');
1965 a
:= _lc
[I_MENU_PLAYER_1
]
1967 a
:= _lc
[I_MENU_PLAYER_2
];
1968 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, a
))) do
1970 Name
:= 'mOptionsPlayers'+s
+'Menu';
1971 with AddEdit(_lc
[I_MENU_PLAYER_NAME
]) do
1973 Name
:= 'ed'+s
+'Name';
1977 with AddSwitch(_lc
[I_MENU_PLAYER_TEAM
]) do
1979 Name
:= 'sw'+s
+'Team';
1980 AddItem(_lc
[I_MENU_PLAYER_TEAM_RED
]);
1981 AddItem(_lc
[I_MENU_PLAYER_TEAM_BLUE
]);
1983 with AddList(_lc
[I_MENU_PLAYER_MODEL
], 12, 6) do
1985 Name
:= 'ls'+s
+'Model';
1987 Items
:= g_PlayerModel_GetNames();
1988 OnChange
:= ProcSelectModel
;
1990 with AddScroll(_lc
[I_MENU_PLAYER_RED
]) do
1992 Name
:= 'sc'+s
+'Red';
1994 OnChange
:= ProcChangeColor
;
1996 with AddScroll(_lc
[I_MENU_PLAYER_GREEN
]) do
1998 Name
:= 'sc'+s
+'Green';
2000 OnChange
:= ProcChangeColor
;
2002 with AddScroll(_lc
[I_MENU_PLAYER_BLUE
]) do
2004 Name
:= 'sc'+s
+'Blue';
2006 OnChange
:= ProcChangeColor
;
2009 AddButton(@ProcOptionsPlayersMIMenu
, _lc
[I_MENU_MODEL_INFO
]);
2010 AddButton(@ProcOptionsPlayersAnim
, _lc
[I_MENU_MODEL_ANIMATION
]);
2011 AddButton(@ProcOptionsPlayersWeap
, _lc
[I_MENU_MODEL_CHANGE_WEAPON
]);
2012 AddButton(@ProcOptionsPlayersRot
, _lc
[I_MENU_MODEL_ROTATE
]);
2014 with TGUIModelView(Menu
.AddChild(TGUIModelView
.Create
)) do
2016 Name
:= 'mv'+s
+'Model';
2017 X
:= GetControl('ls'+s
+'Model').X
+TGUIListBox(GetControl('ls'+s
+'Model')).GetWidth
+16;
2018 Y
:= GetControl('ls'+s
+'Model').Y
;
2021 Menu
.DefControl
:= 'mOptionsPlayers'+s
+'Menu';
2022 g_GUI_AddWindow(Menu
);
2025 procedure CreateAllMenus();
2029 a
, cx
, _y
, i
: Integer;
2032 Menu
:= TGUIWindow
.Create('MainMenu');
2033 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, 'MAINMENU_LOGO', _lc
[I_MENU_MAIN_MENU
]))) do
2035 Name
:= 'mmMainMenu';
2036 AddButton(nil, _lc
[I_MENU_NEW_GAME
], 'NewGameMenu');
2037 AddButton(nil, _lc
[I_MENU_MULTIPLAYER
], 'NetGameMenu');
2038 AddButton(nil, _lc
[I_MENU_LOAD_GAME
], 'LoadMenu');
2039 AddButton(@ReadOptions
, _lc
[I_MENU_OPTIONS
], 'OptionsMenu');
2040 AddButton(@ProcAuthorsMenu
, _lc
[I_MENU_AUTHORS
], 'AuthorsMenu');
2041 AddButton(nil, _lc
[I_MENU_EXIT
], 'ExitMenu');
2043 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(Format(_lc
[I_VERSION
], [GAME_VERSION
]), gMenuSmallFont
))) do
2045 Color
:= _RGB(255, 255, 255);
2046 X
:= gScreenWidth
-GetWidth
-8;
2047 Y
:= gScreenHeight
-GetHeight
-8;
2049 Menu
.DefControl
:= 'mmMainMenu';
2050 Menu
.MainWindow
:= True;
2051 g_GUI_AddWindow(Menu
);
2053 Menu
:= TGUIWindow
.Create('NewGameMenu');
2054 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_NEW_GAME
]))) do
2056 Name
:= 'mmNewGameMenu';
2057 AddButton(@ProcSingle1Player
, _lc
[I_MENU_1_PLAYER
]);
2058 AddButton(@ProcSingle2Players
, _lc
[I_MENU_2_PLAYERS
]);
2059 AddButton(nil, _lc
[I_MENU_CUSTOM_GAME
], 'CustomGameMenu');
2060 AddButton(@ProcSelectCampaignMenu
, _lc
[I_MENU_CAMPAIGN
], 'CampaignMenu');
2062 Menu
.DefControl
:= 'mmNewGameMenu';
2063 g_GUI_AddWindow(Menu
);
2065 Menu
:= TGUIWindow
.Create('NetGameMenu');
2066 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_MULTIPLAYER
]))) do
2068 Name
:= 'mmNetGameMenu';
2069 AddButton(@ProcRecallAddress
, _lc
[I_MENU_START_CLIENT
], 'NetClientMenu');
2070 AddButton(nil, _lc
[I_MENU_START_SERVER
], 'NetServerMenu');
2072 Menu
.DefControl
:= 'mmNetGameMenu';
2073 g_GUI_AddWindow(Menu
);
2075 Menu
:= TGUIWindow
.Create('NetServerMenu');
2076 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_START_SERVER
]))) do
2078 Name
:= 'mNetServerMenu';
2079 with AddEdit(_lc
[I_NET_SERVER_NAME
]) do
2081 Name
:= 'edSrvName';
2082 OnlyDigits
:= False;
2085 Text := NetServerName
;
2087 with AddEdit(_lc
[I_NET_SERVER_PASSWORD
]) do
2089 Name
:= 'edSrvPassword';
2090 OnlyDigits
:= False;
2093 Text := NetPassword
;
2095 with AddEdit(_lc
[I_NET_PORT
]) do
2101 Text := IntToStr(NetPort
);
2103 with AddEdit(_lc
[I_NET_MAX_CLIENTS
]) do
2105 Name
:= 'edMaxPlayers';
2109 Text := IntToStr(NetMaxClients
);
2111 with AddSwitch(_lc
[I_NET_USE_MASTER
]) do
2113 Name
:= 'swUseMaster';
2114 AddItem(_lc
[I_MENU_YES
]);
2115 AddItem(_lc
[I_MENU_NO
]);
2116 if NetUseMaster
then
2122 with AddLabel(_lc
[I_MENU_MAP
]) do
2127 OnClick
:= @ProcSelectMapMenu
;
2129 with AddSwitch(_lc
[I_MENU_GAME_TYPE
]) do
2131 Name
:= 'swGameMode';
2132 AddItem(_lc
[I_MENU_GAME_TYPE_DM
]);
2133 AddItem(_lc
[I_MENU_GAME_TYPE_TDM
]);
2134 AddItem(_lc
[I_MENU_GAME_TYPE_CTF
]);
2135 AddItem(_lc
[I_MENU_GAME_TYPE_COOP
]);
2136 case g_Game_TextToMode(gnGameMode
) of
2138 GM_DM
: ItemIndex
:= 0;
2139 GM_TDM
: ItemIndex
:= 1;
2140 GM_CTF
: ItemIndex
:= 2;
2142 GM_COOP
: ItemIndex
:= 3;
2144 OnChange
:= ProcSwitchMonstersNet
;
2146 with AddEdit(_lc
[I_MENU_TIME_LIMIT
]) do
2148 Name
:= 'edTimeLimit';
2152 if gnTimeLimit
> 0 then
2153 Text := IntToStr(gnTimeLimit
);
2155 with AddEdit(_lc
[I_MENU_GOAL_LIMIT
]) do
2157 Name
:= 'edGoalLimit';
2161 if gnGoalLimit
> 0 then
2162 Text := IntToStr(gnGoalLimit
);
2164 with AddEdit(_lc
[I_MENU_MAX_LIVES
]) do
2166 Name
:= 'edMaxLives';
2170 if gnMaxLives
> 0 then
2171 Text := IntToStr(gnMaxLives
);
2173 with AddSwitch(_lc
[I_MENU_SERVER_PLAYERS
]) do
2175 Name
:= 'swPlayers';
2176 AddItem(_lc
[I_MENU_COUNT_NONE
]);
2177 AddItem(_lc
[I_MENU_PLAYERS_ONE
]);
2178 AddItem(_lc
[I_MENU_PLAYERS_TWO
]);
2179 ItemIndex
:= gnPlayers
;
2181 with AddSwitch(_lc
[I_MENU_TEAM_DAMAGE
]) do
2183 Name
:= 'swTeamDamage';
2184 AddItem(_lc
[I_MENU_YES
]);
2185 AddItem(_lc
[I_MENU_NO
]);
2186 if gnTeamDamage
then
2191 with AddSwitch(_lc
[I_MENU_ENABLE_EXITS
]) do
2193 Name
:= 'swEnableExits';
2194 AddItem(_lc
[I_MENU_YES
]);
2195 AddItem(_lc
[I_MENU_NO
]);
2201 with AddSwitch(_lc
[I_MENU_WEAPONS_STAY
]) do
2203 Name
:= 'swWeaponStay';
2204 AddItem(_lc
[I_MENU_YES
]);
2205 AddItem(_lc
[I_MENU_NO
]);
2206 if gnWeaponStay
then
2211 with AddSwitch(_lc
[I_MENU_ENABLE_MONSTERS
]) do
2213 Name
:= 'swMonsters';
2214 AddItem(_lc
[I_MENU_YES
]);
2215 AddItem(_lc
[I_MENU_NO
]);
2221 with AddSwitch(_lc
[I_MENU_BOTS_VS
]) do
2224 AddItem(_lc
[I_MENU_BOTS_VS_PLAYERS
]);
2225 AddItem(_lc
[I_MENU_BOTS_VS_MONSTERS
]);
2226 AddItem(_lc
[I_MENU_BOTS_VS_ALL
]);
2228 if gnBotsVS
= 'Players' then
2230 if gnBotsVS
= 'Monsters' then
2234 AddButton(@ProcStartNetGame
, _lc
[I_MENU_START_GAME
]);
2238 Menu
.DefControl
:= 'mNetServerMenu';
2239 g_GUI_AddWindow(Menu
);
2241 Menu
:= TGUIWindow
.Create('NetClientMenu');
2242 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_START_CLIENT
]))) do
2244 Name
:= 'mNetClientMenu';
2246 AddButton(@ProcServerlist
, _lc
[I_NET_SLIST
]);
2249 with AddEdit(_lc
[I_NET_ADDRESS
]) do
2255 Text := 'localhost';
2257 with AddEdit(_lc
[I_NET_PORT
]) do
2265 with AddEdit(_lc
[I_NET_SERVER_PASSWORD
]) do
2268 OnlyDigits
:= False;
2275 AddButton(@ProcConnectNetGame
, _lc
[I_MENU_CLIENT_CONNECT
]);
2279 Menu
.DefControl
:= 'mNetClientMenu';
2280 g_GUI_AddWindow(Menu
);
2282 Menu
:= TGUIWindow
.Create('LoadMenu');
2283 Menu
.OnShow
:= ProcLoadMenu
;
2284 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_LOAD_GAME
]))) do
2286 Name
:= 'mmLoadMenu';
2291 Name
:= 'edSlot'+IntToStr(a
);
2294 OnEnter
:= ProcLoadGame
;
2297 Menu
.DefControl
:= 'mmLoadMenu';
2298 g_GUI_AddWindow(Menu
);
2300 Menu
:= TGUIWindow
.Create('SaveMenu');
2301 Menu
.OnShow
:= ProcSaveMenu
;
2302 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_SAVE_GAME
]))) do
2304 Name
:= 'mmSaveMenu';
2309 Name
:= 'edSlot'+IntToStr(a
);
2312 OnChange
:= ProcSaveGame
;
2315 Menu
.DefControl
:= 'mmSaveMenu';
2316 g_GUI_AddWindow(Menu
);
2318 Menu
:= TGUIWindow
.Create('CustomGameMenu');
2319 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_CUSTOM_GAME
]))) do
2321 Name
:= 'mCustomGameMenu';
2322 with AddLabel(_lc
[I_MENU_MAP
]) do
2327 OnClick
:= @ProcSelectMapMenu
;
2329 with AddSwitch(_lc
[I_MENU_GAME_TYPE
]) do
2331 Name
:= 'swGameMode';
2332 AddItem(_lc
[I_MENU_GAME_TYPE_DM
]);
2333 AddItem(_lc
[I_MENU_GAME_TYPE_TDM
]);
2334 AddItem(_lc
[I_MENU_GAME_TYPE_CTF
]);
2335 AddItem(_lc
[I_MENU_GAME_TYPE_COOP
]);
2336 case g_Game_TextToMode(gcGameMode
) of
2338 GM_DM
: ItemIndex
:= 0;
2339 GM_TDM
: ItemIndex
:= 1;
2340 GM_CTF
: ItemIndex
:= 2;
2342 GM_COOP
: ItemIndex
:= 3;
2344 OnChange
:= ProcSwitchMonstersCustom
;
2346 with AddEdit(_lc
[I_MENU_TIME_LIMIT
]) do
2348 Name
:= 'edTimeLimit';
2352 if gcTimeLimit
> 0 then
2353 Text := IntToStr(gcTimeLimit
);
2355 with AddEdit(_lc
[I_MENU_GOAL_LIMIT
]) do
2357 Name
:= 'edGoalLimit';
2361 if gcGoalLimit
> 0 then
2362 Text := IntToStr(gcGoalLimit
);
2364 with AddEdit(_lc
[I_MENU_MAX_LIVES
]) do
2366 Name
:= 'edMaxLives';
2370 if gcMaxLives
> 0 then
2371 Text := IntToStr(gcMaxLives
);
2373 with AddSwitch(_lc
[I_MENU_PLAYERS
]) do
2375 Name
:= 'swPlayers';
2376 AddItem(_lc
[I_MENU_COUNT_NONE
]);
2377 AddItem(_lc
[I_MENU_PLAYERS_ONE
]);
2378 AddItem(_lc
[I_MENU_PLAYERS_TWO
]);
2379 ItemIndex
:= gcPlayers
;
2381 with AddSwitch(_lc
[I_MENU_TEAM_DAMAGE
]) do
2383 Name
:= 'swTeamDamage';
2384 AddItem(_lc
[I_MENU_YES
]);
2385 AddItem(_lc
[I_MENU_NO
]);
2386 if gcTeamDamage
then
2391 with AddSwitch(_lc
[I_MENU_ENABLE_EXITS
]) do
2393 Name
:= 'swEnableExits';
2394 AddItem(_lc
[I_MENU_YES
]);
2395 AddItem(_lc
[I_MENU_NO
]);
2401 with AddSwitch(_lc
[I_MENU_WEAPONS_STAY
]) do
2403 Name
:= 'swWeaponStay';
2404 AddItem(_lc
[I_MENU_YES
]);
2405 AddItem(_lc
[I_MENU_NO
]);
2406 if gcWeaponStay
then
2411 with AddSwitch(_lc
[I_MENU_ENABLE_MONSTERS
]) do
2413 Name
:= 'swMonsters';
2414 AddItem(_lc
[I_MENU_YES
]);
2415 AddItem(_lc
[I_MENU_NO
]);
2421 with AddSwitch(_lc
[I_MENU_BOTS_VS
]) do
2424 AddItem(_lc
[I_MENU_BOTS_VS_PLAYERS
]);
2425 AddItem(_lc
[I_MENU_BOTS_VS_MONSTERS
]);
2426 AddItem(_lc
[I_MENU_BOTS_VS_ALL
]);
2428 if gcBotsVS
= 'Players' then
2430 if gcBotsVS
= 'Monsters' then
2434 AddButton(@ProcStartCustomGame
, _lc
[I_MENU_START_GAME
]);
2438 Menu
.DefControl
:= 'mCustomGameMenu';
2439 g_GUI_AddWindow(Menu
);
2441 Menu
:= TGUIWindow
.Create('CampaignMenu');
2442 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_CAMPAIGN
]))) do
2444 Name
:= 'mCampaignMenu';
2453 with AddFileList('', 15, 4) do
2456 OnChange
:= ProcSelectCampaignWAD
;
2460 FileMask
:= '*.wad|*.pk3|*.zip|*.dfz';
2461 SetBase(MegawadDirs
);
2464 with AddLabel(_lc
[I_MENU_MAP_NAME
]) do
2466 Name
:= 'lbWADName';
2470 with AddLabel(_lc
[I_MENU_MAP_AUTHOR
]) do
2472 Name
:= 'lbWADAuthor';
2476 AddLine(_lc
[I_MENU_MAP_DESCRIPTION
]);
2477 with AddMemo('', 15, 3) do
2479 Name
:= 'meWADDescription';
2480 Color
:= MENU_ITEMSCTRL_COLOR
;
2482 with AddSwitch(_lc
[I_MENU_PLAYERS
]) do
2484 Name
:= 'swPlayers';
2485 AddItem(_lc
[I_MENU_PLAYERS_ONE
]);
2486 AddItem(_lc
[I_MENU_PLAYERS_TWO
]);
2489 AddButton(@ProcStartCampaign
, _lc
[I_MENU_START_GAME
]);
2493 with TGUIImage(Menu
.AddChild(TGUIImage
.Create
)) do
2495 Name
:= 'mpWADImage';
2496 DefaultRes
:= 'NOPIC';
2497 X
:= GetControl('lsWAD').X
+4;
2498 Y
:= GetControl('lsWAD').Y
-128-MENU_VSPACE
;
2501 Menu
.DefControl
:= 'mCampaignMenu';
2502 g_GUI_AddWindow(Menu
);
2504 Menu
:= TGUIWindow
.Create('SelectMapMenu');
2505 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_SELECT_MAP
]))) do
2507 Name
:= 'mSelectMapMenu';
2508 with AddFileList(_lc
[I_MENU_MAP_WAD
], 12, 4) do
2511 OnChange
:= ProcSelectWAD
;
2515 FileMask
:= '*.wad|*.pk3|*.zip|*.dfz';
2518 with AddList(_lc
[I_MENU_MAP_RESOURCE
], 12, 4) do
2522 OnChange
:= ProcSelectMap
;
2525 with AddLabel(_lc
[I_MENU_MAP_NAME
]) do
2527 Name
:= 'lbMapName';
2531 with AddLabel(_lc
[I_MENU_MAP_AUTHOR
]) do
2533 Name
:= 'lbMapAuthor';
2537 with AddLabel(_lc
[I_MENU_MAP_SIZE
]) do
2539 Name
:= 'lbMapSize';
2543 with AddMemo(_lc
[I_MENU_MAP_DESCRIPTION
], 12, 4) do
2545 Name
:= 'meMapDescription';
2550 with TGUIMapPreview(Menu
.AddChild(TGUIMapPreview
.Create
)) do
2552 Name
:= 'mpMapPreview';
2553 X
:= GetControl('lsMapWAD').X
+TGUIListBox(GetControl('lsMapWAD')).GetWidth()+2;
2554 Y
:= GetControl('lsMapWAD').Y
;
2556 with TGUILabel(Menu
.AddChild(TGUILabel
.Create('', gMenuSmallFont
))) do
2558 Name
:= 'lbMapScale';
2561 Color
:= MENU_ITEMSCTRL_COLOR
;
2562 X
:= GetControl('lsMapWAD').X
+
2563 TGUIListBox(GetControl('lsMapWAD')).GetWidth() +
2564 2 + MAPPREVIEW_WIDTH
*4;
2565 Y
:= GetControl('lsMapWAD').Y
+ MAPPREVIEW_HEIGHT
*16 + 16;
2568 Menu
.OnClose
:= ProcSetMap
;
2569 Menu
.DefControl
:= 'mSelectMapMenu';
2570 g_GUI_AddWindow(Menu
);
2572 Menu
:= TGUIWindow
.Create('OptionsMenu');
2573 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_OPTIONS
]))) do
2575 Name
:= 'mmOptionsMenu';
2576 AddButton(nil, _lc
[I_MENU_VIDEO_OPTIONS
], 'OptionsVideoMenu');
2577 AddButton(nil, _lc
[I_MENU_SOUND_OPTIONS
], 'OptionsSoundMenu');
2578 AddButton(nil, _lc
[I_MENU_GAME_OPTIONS
], 'OptionsGameMenu');
2579 AddButton(nil, _lc
[I_MENU_CONTROLS_OPTIONS
], 'OptionsControlsMenu');
2580 AddButton(nil, _lc
[I_MENU_PLAYER_OPTIONS
], 'OptionsPlayersMenu');
2581 AddButton(nil, _lc
[I_MENU_LANGUAGE_OPTIONS
], 'OptionsLanguageMenu');
2583 AddButton(nil, _lc
[I_MENU_SAVED_OPTIONS
], 'SavedOptionsMenu').Color
:= _RGB(255, 0, 0);
2584 AddButton(nil, _lc
[I_MENU_DEFAULT_OPTIONS
], 'DefaultOptionsMenu').Color
:= _RGB(255, 0, 0);
2586 Menu
.OnClose
:= ProcApplyOptions
;
2587 Menu
.DefControl
:= 'mmOptionsMenu';
2588 g_GUI_AddWindow(Menu
);
2590 Menu
:= CreateYNMenu('SavedOptionsMenu', _lc
[I_MENU_LOAD_SAVED_PROMT
], Round(gScreenWidth
*0.6),
2591 gMenuSmallFont
, @ProcSavedMenuKeyDown
);
2592 g_GUI_AddWindow(Menu
);
2594 Menu
:= TGUIWindow
.Create('OptionsVideoMenu');
2595 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_VIDEO_OPTIONS
]))) do
2597 Name
:= 'mOptionsVideoMenu';
2598 AddButton(@ProcVideoOptionsRes
, _lc
[I_MENU_VIDEO_RESOLUTION
], 'OptionsVideoResMenu');
2599 with AddSwitch(_lc
[I_MENU_VIDEO_BPP
]) do
2605 with AddSwitch(_lc
[I_MENU_VIDEO_VSYNC
]) do
2608 AddItem(_lc
[I_MENU_YES
]);
2609 AddItem(_lc
[I_MENU_NO
]);
2611 with AddSwitch(_lc
[I_MENU_VIDEO_FILTER_SKY
]) do
2613 Name
:= 'swTextureFilter';
2614 AddItem(_lc
[I_MENU_YES
]);
2615 AddItem(_lc
[I_MENU_NO
]);
2617 with AddSwitch(_lc
[I_MENU_VIDEO_LEGACY_COMPATIBLE
]) do
2619 Name
:= 'swLegacyNPOT';
2620 AddItem(_lc
[I_MENU_NO
]);
2621 AddItem(_lc
[I_MENU_YES
]);
2624 AddText(_lc
[I_MENU_VIDEO_NEED_RESTART
], Round(gScreenWidth
*0.6));
2627 Menu
.DefControl
:= 'mOptionsVideoMenu';
2628 g_GUI_AddWindow(Menu
);
2630 Menu
:= TGUIWindow
.Create('OptionsVideoResMenu');
2631 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_RESOLUTION_SELECT
]))) do
2633 Name
:= 'mOptionsVideoResMenu';
2634 with AddLabel(_lc
[I_MENU_RESOLUTION_CURRENT
]) do
2636 Name
:= 'lbCurrentRes';
2640 with AddList(_lc
[I_MENU_RESOLUTION_LIST
], 12, 6) do
2642 Name
:= 'lsResolution';
2645 with AddSwitch(_lc
[I_MENU_RESOLUTION_FULLSCREEN
]) do
2647 Name
:= 'swFullScreen';
2648 AddItem(_lc
[I_MENU_YES
]);
2649 AddItem(_lc
[I_MENU_NO
]);
2652 AddButton(@ProcApplyVideoOptions
, _lc
[I_MENU_RESOLUTION_APPLY
]);
2655 Menu
.DefControl
:= 'mOptionsVideoResMenu';
2656 g_GUI_AddWindow(Menu
);
2658 Menu
:= TGUIWindow
.Create('OptionsSoundMenu');
2659 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_SOUND_OPTIONS
]))) do
2661 Name
:= 'mOptionsSoundMenu';
2662 with AddScroll(_lc
[I_MENU_SOUND_MUSIC_LEVEL
]) do
2664 Name
:= 'scMusicLevel';
2666 OnChange
:= ProcChangeSoundSettings
;
2668 with AddScroll(_lc
[I_MENU_SOUND_SOUND_LEVEL
]) do
2670 Name
:= 'scSoundLevel';
2672 OnChange
:= ProcChangeSoundSettings
;
2674 with AddScroll(_lc
[I_MENU_SOUND_MAX_SIM_SOUNDS
]) do
2676 Name
:= 'scMaxSimSounds';
2679 with AddSwitch (_lc
[I_MENU_SOUND_ANNOUNCE
]) do
2681 Name
:= 'swAnnouncer';
2682 AddItem(_lc
[I_MENU_ANNOUNCE_NONE
]);
2683 AddItem(_lc
[I_MENU_ANNOUNCE_ME
]);
2684 AddItem(_lc
[I_MENU_ANNOUNCE_MEPLUS
]);
2685 AddItem(_lc
[I_MENU_ANNOUNCE_ALL
]);
2687 // Ïåðåêëþ÷àòåëü çâóêîâûõ ýôôåêòîâ (DF / Doom 2)
2688 with AddSwitch (_lc
[I_MENU_SOUND_COMPAT
]) do
2690 Name
:= 'swSoundEffects';
2691 AddItem(_lc
[I_MENU_COMPAT_DOOM2
]);
2692 AddItem(_lc
[I_MENU_COMPAT_DF
]);
2694 // Ïåðåêëþ÷àòåëü çâóêîâ ÷àòà
2695 with AddSwitch (_lc
[I_MENU_SOUND_CHAT
]) do
2697 Name
:= 'swChatSpeech';
2698 AddItem(_lc
[I_MENU_YES
]);
2699 AddItem(_lc
[I_MENU_NO
]);
2701 with AddSwitch(_lc
[I_MENU_SOUND_INACTIVE_SOUNDS
]) do
2703 Name
:= 'swInactiveSounds';
2704 AddItem(_lc
[I_MENU_SOUND_INACTIVE_SOUNDS_ON
]);
2705 AddItem(_lc
[I_MENU_SOUND_INACTIVE_SOUNDS_OFF
]);
2709 Menu
.DefControl
:= 'mOptionsSoundMenu';
2710 g_GUI_AddWindow(Menu
);
2712 Menu
:= TGUIWindow
.Create('OptionsGameMenu');
2713 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_GAME_OPTIONS
]))) do
2715 Name
:= 'mOptionsGameMenu';
2716 with AddScroll(_lc
[I_MENU_GAME_PARTICLES_COUNT
]) do
2718 Name
:= 'scParticlesCount';
2721 with AddSwitch(_lc
[I_MENU_GAME_BLOOD_COUNT
]) do
2723 Name
:= 'swBloodCount';
2724 AddItem(_lc
[I_MENU_COUNT_NONE
]);
2725 AddItem(_lc
[I_MENU_COUNT_SMALL
]);
2726 AddItem(_lc
[I_MENU_COUNT_NORMAL
]);
2727 AddItem(_lc
[I_MENU_COUNT_BIG
]);
2728 AddItem(_lc
[I_MENU_COUNT_VERYBIG
]);
2730 with AddScroll(_lc
[I_MENU_GAME_MAX_SHELLS
]) do
2732 Name
:= 'scShellsMax';
2735 with AddScroll(_lc
[I_MENU_GAME_GIBS_COUNT
]) do
2737 Name
:= 'scGibsMax';
2740 with AddScroll(_lc
[I_MENU_GAME_MAX_CORPSES
]) do
2742 Name
:= 'scCorpsesMax';
2745 with AddSwitch(_lc
[I_MENU_GAME_MAX_GIBS
]) do
2747 Name
:= 'swGibsCount';
2748 AddItem(_lc
[I_MENU_COUNT_NONE
]);
2749 AddItem(_lc
[I_MENU_COUNT_SMALL
]);
2750 AddItem(_lc
[I_MENU_COUNT_NORMAL
]);
2751 AddItem(_lc
[I_MENU_COUNT_BIG
]);
2752 AddItem(_lc
[I_MENU_COUNT_VERYBIG
]);
2754 with AddSwitch(_lc
[I_MENU_GAME_CORPSE_TYPE
]) do
2756 Name
:= 'swCorpseType';
2757 AddItem(_lc
[I_MENU_GAME_CORPSE_TYPE_SIMPLE
]);
2758 AddItem(_lc
[I_MENU_GAME_CORPSE_TYPE_ADV
]);
2760 with AddSwitch(_lc
[I_MENU_GAME_GIBS_TYPE
]) do
2762 Name
:= 'swGibsType';
2763 AddItem(_lc
[I_MENU_GAME_GIBS_TYPE_SIMPLE
]);
2764 AddItem(_lc
[I_MENU_GAME_GIBS_TYPE_ADV
]);
2766 with AddSwitch(_lc
[I_MENU_GAME_BLOOD_TYPE
]) do
2768 Name
:= 'swBloodType';
2769 AddItem(_lc
[I_MENU_GAME_BLOOD_TYPE_SIMPLE
]);
2770 AddItem(_lc
[I_MENU_GAME_BLOOD_TYPE_ADV
]);
2772 with AddSwitch(_lc
[I_MENU_GAME_SCREEN_FLASH
]) do
2774 Name
:= 'swScreenFlash';
2775 AddItem(_lc
[I_MENU_NO
]);
2776 AddItem(_lc
[I_MENU_COMPAT_DF
]);
2777 AddItem(_lc
[I_MENU_COMPAT_DOOM2
]);
2779 with AddSwitch(_lc
[I_MENU_GAME_BACKGROUND
]) do
2781 Name
:= 'swBackground';
2782 AddItem(_lc
[I_MENU_YES
]);
2783 AddItem(_lc
[I_MENU_NO
]);
2785 with AddSwitch(_lc
[I_MENU_GAME_MESSAGES
]) do
2787 Name
:= 'swMessages';
2788 AddItem(_lc
[I_MENU_YES
]);
2789 AddItem(_lc
[I_MENU_NO
]);
2791 with AddSwitch(_lc
[I_MENU_GAME_REVERT_PLAYERS
]) do
2793 Name
:= 'swRevertPlayers';
2794 AddItem(_lc
[I_MENU_YES
]);
2795 AddItem(_lc
[I_MENU_NO
]);
2797 with AddSwitch(_lc
[I_MENU_GAME_CHAT_BUBBLE
]) do
2799 Name
:= 'swChatBubble';
2800 AddItem(_lc
[I_MENU_GAME_CHAT_TYPE_NONE
]);
2801 AddItem(_lc
[I_MENU_GAME_CHAT_TYPE_SIMPLE
]);
2802 AddItem(_lc
[I_MENU_GAME_CHAT_TYPE_ADV
]);
2803 AddItem(_lc
[I_MENU_GAME_CHAT_TYPE_COLOR
]);
2804 AddItem(_lc
[I_MENU_GAME_CHAT_TYPE_TEXTURE
]);
2806 with AddSwitch(_lc
[I_MENU_GAME_PLAYER_INDICATOR
]) do
2808 Name
:= 'swPlayerIndicator';
2809 AddItem(_lc
[I_MENU_GAME_INDICATOR_NONE
]);
2810 AddItem(_lc
[I_MENU_GAME_INDICATOR_OWN
]);
2811 AddItem(_lc
[I_MENU_GAME_INDICATOR_ALL
]);
2813 with AddSwitch(_lc
[I_MENU_GAME_INDICATOR_STYLE
]) do
2815 Name
:= 'swPlayerIndicatorStyle';
2816 AddItem(_lc
[I_MENU_GAME_INDICATOR_ARROW
]);
2817 AddItem(_lc
[I_MENU_GAME_INDICATOR_NAME
]);
2819 with AddScroll(_lc
[I_MENU_GAME_SCALE_FACTOR
]) do
2821 Name
:= 'scScaleFactor';
2823 OnChange
:= ProcChangeGameSettings
;
2827 Menu
.DefControl
:= 'mOptionsGameMenu';
2828 g_GUI_AddWindow(Menu
);
2830 Menu
:= TGUIWindow
.Create('OptionsControlsMenu');
2831 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_CONTROLS_OPTIONS
]))) do
2833 Name
:= 'mOptionsControlsMenu';
2834 AddLine(_lc
[I_MENU_CONTROL_GLOBAL
]);
2835 AddKeyRead(_lc
[I_MENU_CONTROL_SCREENSHOT
]).Name
:= _lc
[I_MENU_CONTROL_SCREENSHOT
];
2836 AddKeyRead(_lc
[I_MENU_CONTROL_STAT
]).Name
:= _lc
[I_MENU_CONTROL_STAT
];
2837 AddKeyRead(_lc
[I_MENU_CONTROL_CHAT
]).Name
:= _lc
[I_MENU_CONTROL_CHAT
];
2838 AddKeyRead(_lc
[I_MENU_CONTROL_TEAMCHAT
]).Name
:= _lc
[I_MENU_CONTROL_TEAMCHAT
];
2840 AddButton(nil, _lc
[I_MENU_PLAYER_1_KBD
], 'OptionsControlsP1Menu');
2841 {AddButton(nil, _lc[I_MENU_PLAYER_1_ALT], 'OptionsControlsP1MenuAlt');}
2842 AddButton(nil, _lc
[I_MENU_PLAYER_1_WEAPONS
], 'OptionsControlsP1MenuWeapons');
2843 AddButton(nil, _lc
[I_MENU_PLAYER_2_KBD
], 'OptionsControlsP2Menu');
2844 {AddButton(nil, _lc[I_MENU_PLAYER_2_ALT], 'OptionsControlsP2MenuAlt');}
2845 AddButton(nil, _lc
[I_MENU_PLAYER_2_WEAPONS
], 'OptionsControlsP2MenuWeapons');
2846 if e_HasJoysticks
then
2849 AddButton(nil, _lc
[I_MENU_CONTROL_JOYSTICKS
], 'OptionsControlsJoystickMenu');
2851 if g_touch_enabled
then
2854 AddButton(nil, _lc
[I_MENU_CONTROL_TOUCH
], 'OptionsControlsTouchMenu');
2857 Menu
.DefControl
:= 'mOptionsControlsMenu';
2858 g_GUI_AddWindow(Menu
);
2860 Menu
:= TGUIWindow
.Create('OptionsControlsP1Menu');
2861 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_PLAYER_1_KBD
]))) do
2863 Name
:= 'mOptionsControlsP1Menu';
2864 AddKeyRead2(_lc
[I_MENU_CONTROL_LEFT
]).Name
:= _lc
[I_MENU_CONTROL_LEFT
];
2865 AddKeyRead2(_lc
[I_MENU_CONTROL_RIGHT
]).Name
:= _lc
[I_MENU_CONTROL_RIGHT
];
2866 AddKeyRead2(_lc
[I_MENU_CONTROL_UP
]).Name
:= _lc
[I_MENU_CONTROL_UP
];
2867 AddKeyRead2(_lc
[I_MENU_CONTROL_DOWN
]).Name
:= _lc
[I_MENU_CONTROL_DOWN
];
2868 AddKeyRead2(_lc
[I_MENU_CONTROL_JUMP
]).Name
:= _lc
[I_MENU_CONTROL_JUMP
];
2869 AddKeyRead2(_lc
[I_MENU_CONTROL_FIRE
]).Name
:= _lc
[I_MENU_CONTROL_FIRE
];
2870 AddKeyRead2(_lc
[I_MENU_CONTROL_USE
]).Name
:= _lc
[I_MENU_CONTROL_USE
];
2871 AddKeyRead2(_lc
[I_MENU_CONTROL_NEXT_WEAPON
]).Name
:= _lc
[I_MENU_CONTROL_NEXT_WEAPON
];
2872 AddKeyRead2(_lc
[I_MENU_CONTROL_PREV_WEAPON
]).Name
:= _lc
[I_MENU_CONTROL_PREV_WEAPON
];
2873 AddKeyRead2(_lc
[I_MENU_CONTROL_STRAFE
]).Name
:= _lc
[I_MENU_CONTROL_STRAFE
];
2875 Menu
.DefControl
:= 'mOptionsControlsP1Menu';
2876 g_GUI_AddWindow(Menu
);
2878 Menu
:= TGUIWindow
.Create('OptionsControlsP1MenuWeapons');
2879 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_PLAYER_1_WEAPONS
]))) do
2881 Name
:= 'mOptionsControlsP1MenuWeapons';
2882 for i
:= WP_FIRST
to WP_LAST
do
2883 AddKeyRead2(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)]).Name
:=
2884 _lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)];
2886 Menu
.DefControl
:= 'mOptionsControlsP1MenuWeapons';
2887 g_GUI_AddWindow(Menu
);
2889 Menu
:= TGUIWindow
.Create('OptionsControlsP2Menu');
2890 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_PLAYER_2_KBD
]))) do
2892 Name
:= 'mOptionsControlsP2Menu';
2893 AddKeyRead2(_lc
[I_MENU_CONTROL_LEFT
]).Name
:= _lc
[I_MENU_CONTROL_LEFT
];
2894 AddKeyRead2(_lc
[I_MENU_CONTROL_RIGHT
]).Name
:= _lc
[I_MENU_CONTROL_RIGHT
];
2895 AddKeyRead2(_lc
[I_MENU_CONTROL_UP
]).Name
:= _lc
[I_MENU_CONTROL_UP
];
2896 AddKeyRead2(_lc
[I_MENU_CONTROL_DOWN
]).Name
:= _lc
[I_MENU_CONTROL_DOWN
];
2897 AddKeyRead2(_lc
[I_MENU_CONTROL_JUMP
]).Name
:= _lc
[I_MENU_CONTROL_JUMP
];
2898 AddKeyRead2(_lc
[I_MENU_CONTROL_FIRE
]).Name
:= _lc
[I_MENU_CONTROL_FIRE
];
2899 AddKeyRead2(_lc
[I_MENU_CONTROL_USE
]).Name
:= _lc
[I_MENU_CONTROL_USE
];
2900 AddKeyRead2(_lc
[I_MENU_CONTROL_NEXT_WEAPON
]).Name
:= _lc
[I_MENU_CONTROL_NEXT_WEAPON
];
2901 AddKeyRead2(_lc
[I_MENU_CONTROL_PREV_WEAPON
]).Name
:= _lc
[I_MENU_CONTROL_PREV_WEAPON
];
2902 AddKeyRead2(_lc
[I_MENU_CONTROL_STRAFE
]).Name
:= _lc
[I_MENU_CONTROL_STRAFE
];
2904 Menu
.DefControl
:= 'mOptionsControlsP2Menu';
2905 g_GUI_AddWindow(Menu
);
2907 Menu
:= TGUIWindow
.Create('OptionsControlsP2MenuWeapons');
2908 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_PLAYER_2_WEAPONS
]))) do
2910 Name
:= 'mOptionsControlsP2MenuWeapons';
2911 for i
:= WP_FIRST
to WP_LAST
do
2912 AddKeyRead2(_lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)]).Name
:=
2913 _lc
[TStrings_Locale(Cardinal(I_GAME_WEAPON0
) + i
)];
2915 Menu
.DefControl
:= 'mOptionsControlsP2MenuWeapons';
2916 g_GUI_AddWindow(Menu
);
2918 Menu
:= TGUIWindow
.Create('OptionsControlsJoystickMenu');
2919 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_CONTROL_JOYSTICKS
]))) do
2921 Name
:= 'mOptionsControlsJoystickMenu';
2922 for i
:= 0 to e_MaxJoys
- 1 do
2923 with AddScroll(Format(_lc
[I_MENU_CONTROL_DEADZONE
], [i
+ 1])) do
2925 Name
:= 'scDeadzone' + IntToStr(i
);
2929 Menu
.DefControl
:= 'mOptionsControlsJoystickMenu';
2930 g_GUI_AddWindow(Menu
);
2932 Menu
:= TGUIWindow
.Create('OptionsControlsTouchMenu');
2933 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_CONTROL_TOUCH
]))) do
2935 Name
:= 'mOptionsControlsTouchMenu';
2936 with AddSwitch(_lc
[I_MENU_CONTROL_TOUCH_ALT
]) do
2938 Name
:= 'swTouchAlt';
2939 AddItem(_lc
[I_MENU_NO
]);
2940 AddItem(_lc
[I_MENU_YES
]);
2941 OnChange
:= ProcChangeTouchSettings
;
2943 with AddScroll(_lc
[I_MENU_CONTROL_TOUCH_SIZE
]) do
2945 Name
:= 'scTouchSize';
2947 OnChange
:= ProcChangeTouchSettings
;
2949 with AddSwitch(_lc
[I_MENU_CONTROL_TOUCH_FIRE
]) do
2951 Name
:= 'swTouchFire';
2952 AddItem(_lc
[I_MENU_NO
]);
2953 AddItem(_lc
[I_MENU_YES
]);
2955 with AddScroll(_lc
[I_MENU_CONTROL_TOUCH_OFFSET
]) do
2957 Name
:= 'scTouchOffset';
2959 OnChange
:= ProcChangeTouchSettings
;
2962 Menu
.DefControl
:= 'mOptionsControlsTouchMenu';
2963 g_GUI_AddWindow(Menu
);
2965 Menu
:= TGUIWindow
.Create('OptionsPlayersMenu');
2966 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_PLAYER_OPTIONS
]))) do
2968 Name
:= 'mOptionsPlayersMenu';
2969 AddButton(nil, _lc
[I_MENU_PLAYER_1
], 'OptionsPlayersP1Menu');
2970 AddButton(nil, _lc
[I_MENU_PLAYER_2
], 'OptionsPlayersP2Menu');
2972 Menu
.DefControl
:= 'mOptionsPlayersMenu';
2973 g_GUI_AddWindow(Menu
);
2975 CreatePlayerOptionsMenu('P1');
2976 CreatePlayerOptionsMenu('P2');
2978 Menu
:= TGUIWindow
.Create('OptionsPlayersMIMenu');
2979 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_MODEL_INFO
]))) do
2981 Name
:= 'mOptionsPlayersMIMenu';
2982 with AddLabel(_lc
[I_MENU_MODEL_NAME
]) do
2987 with AddLabel(_lc
[I_MENU_MODEL_AUTHOR
]) do
2992 with AddMemo(_lc
[I_MENU_MODEL_COMMENT
], 14, 6) do
2994 Name
:= 'meComment';
2997 AddLine(_lc
[I_MENU_MODEL_OPTIONS
]);
2998 with AddLabel(_lc
[I_MENU_MODEL_WEAPON
]) do
3001 FixedLength
:= Max(Length(_lc
[I_MENU_YES
]), Length(_lc
[I_MENU_NO
]));
3005 Menu
.DefControl
:= 'mOptionsPlayersMIMenu';
3006 g_GUI_AddWindow(Menu
);
3008 Menu
:= TGUIWindow
.Create('OptionsLanguageMenu');
3009 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_LANGUAGE_OPTIONS
]))) do
3011 Name
:= 'mOptionsLanguageMenu';
3012 AddButton(@ProcSetRussianLanguage
, _lc
[I_MENU_LANGUAGE_RUSSIAN
]);
3013 AddButton(@ProcSetEnglishLanguage
, _lc
[I_MENU_LANGUAGE_ENGLISH
]);
3016 Menu
.DefControl
:= 'mOptionsLanguageMenu';
3017 g_GUI_AddWindow(Menu
);
3019 Menu
:= CreateYNMenu('DefaultOptionsMenu', _lc
[I_MENU_SET_DEFAULT_PROMT
], Round(gScreenWidth
*0.6),
3020 gMenuSmallFont
, @ProcDefaultMenuKeyDown
);
3021 g_GUI_AddWindow(Menu
);
3023 Menu
:= TGUIWindow
.Create('AuthorsMenu');
3024 Menu
.BackTexture
:= 'INTER';
3025 Menu
.OnClose
:= ProcAuthorsClose
;
3029 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_CAP_1
], gMenuFont
))) do
3031 Color
:= _RGB(255, 0, 0);
3032 X
:= (gScreenWidth
div 2)-(GetWidth() div 2);
3034 _y
:= _y
+GetHeight();
3036 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(Format(_lc
[I_CREDITS_CAP_2
], [GAME_VERSION
, NET_PROTOCOL_VER
]), gMenuSmallFont
))) do
3038 Color
:= _RGB(255, 0, 0);
3039 X
:= (gScreenWidth
div 2)-(GetWidth() div 2);
3041 _y
:= _y
+GetHeight()+32;
3043 // ×òî äåëàë: Êòî äåëàë
3044 cx
:= gScreenWidth
div 2 - 320 + 64;
3045 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_1
], gMenuSmallFont
))) do
3047 Color
:= _RGB(255, 0, 0);
3052 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_1_1
], gMenuSmallFont
))) do
3054 Color
:= _RGB(255, 255, 255);
3059 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_2
], gMenuSmallFont
))) do
3061 Color
:= _RGB(255, 0, 0);
3066 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_2_1
], gMenuSmallFont
))) do
3068 Color
:= _RGB(255, 255, 255);
3073 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_2_2
], gMenuSmallFont
))) do
3075 Color
:= _RGB(255, 255, 255);
3080 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_3
], gMenuSmallFont
))) do
3082 Color
:= _RGB(255, 0, 0);
3087 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_3_1
], gMenuSmallFont
))) do
3089 Color
:= _RGB(255, 255, 255);
3094 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_4
], gMenuSmallFont
))) do
3096 Color
:= _RGB(255, 0, 0);
3101 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_A_4_1
], gMenuSmallFont
))) do
3103 Color
:= _RGB(255, 255, 255);
3106 _y
:= gScreenHeight
- 128;
3109 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_CAP_3
], gMenuSmallFont
))) do
3111 Color
:= _RGB(255, 0, 0);
3116 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_CLO_1
], gMenuSmallFont
))) do
3118 Color
:= _RGB(255, 255, 255);
3121 _y
:= _y
+GetHeight();
3123 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_CLO_2
], gMenuSmallFont
))) do
3125 Color
:= _RGB(255, 255, 255);
3128 _y
:= _y
+GetHeight();
3130 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_CLO_3
], gMenuSmallFont
))) do
3132 Color
:= _RGB(255, 255, 255);
3135 _y
:= gScreenHeight
- 32;
3137 with TGUILabel(Menu
.AddChild(TGUILabel
.Create(_lc
[I_CREDITS_CLO_4
], gMenuSmallFont
))) do
3139 Color
:= _RGB(255, 0, 0);
3140 X
:= gScreenWidth
div 2 - GetWidth() div 2;
3143 g_GUI_AddWindow(Menu
);
3145 Menu
:= CreateYNMenu('ExitMenu', _lc
[I_MENU_EXIT_PROMT
], Round(gScreenWidth
*0.6),
3146 gMenuSmallFont
, @ProcExitMenuKeyDown
);
3147 g_GUI_AddWindow(Menu
);
3149 Menu
:= TGUIWindow
.Create('GameSingleMenu');
3150 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_MAIN_MENU
]))) do
3152 Name
:= 'mmGameSingleMenu';
3153 AddButton(nil, _lc
[I_MENU_LOAD_GAME
], 'LoadMenu');
3154 AddButton(nil, _lc
[I_MENU_SAVE_GAME
], 'SaveMenu').Name
:= 'save';
3155 AddButton(@ReadGameSettings
, _lc
[I_MENU_SET_GAME
], 'GameSetGameMenu');
3156 AddButton(@ReadOptions
, _lc
[I_MENU_OPTIONS
], 'OptionsMenu');
3157 AddButton(nil, _lc
[I_MENU_RESTART
], 'RestartGameMenu');
3158 AddButton(nil, _lc
[I_MENU_END_GAME
], 'EndGameMenu');
3160 Menu
.DefControl
:= 'mmGameSingleMenu';
3161 Menu
.MainWindow
:= True;
3162 Menu
.OnClose
:= ProcGMClose
;
3163 Menu
.OnShow
:= ProcGMShow
;
3164 g_GUI_AddWindow(Menu
);
3166 Menu
:= CreateYNMenu('EndGameMenu', _lc
[I_MENU_END_GAME_PROMT
], Round(gScreenWidth
*0.6),
3167 gMenuSmallFont
, @ProcEndMenuKeyDown
);
3168 g_GUI_AddWindow(Menu
);
3170 Menu
:= CreateYNMenu('RestartGameMenu', _lc
[I_MENU_RESTART_GAME_PROMT
], Round(gScreenWidth
*0.6),
3171 gMenuSmallFont
, @ProcRestartMenuKeyDown
);
3172 g_GUI_AddWindow(Menu
);
3174 Menu
:= TGUIWindow
.Create('GameCustomMenu');
3175 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_MAIN_MENU
]))) do
3177 Name
:= 'mmGameCustomMenu';
3178 AddButton(nil, _lc
[I_MENU_CHANGE_PLAYERS
], 'TeamMenu');
3179 AddButton(nil, _lc
[I_MENU_LOAD_GAME
], 'LoadMenu');
3180 AddButton(nil, _lc
[I_MENU_SAVE_GAME
], 'SaveMenu').Name
:= 'save';
3181 AddButton(@ReadGameSettings
, _lc
[I_MENU_SET_GAME
], 'GameSetGameMenu');
3182 AddButton(@ReadOptions
, _lc
[I_MENU_OPTIONS
], 'OptionsMenu');
3183 AddButton(nil, _lc
[I_MENU_RESTART
], 'RestartGameMenu');
3184 AddButton(nil, _lc
[I_MENU_END_GAME
], 'EndGameMenu');
3186 Menu
.DefControl
:= 'mmGameCustomMenu';
3187 Menu
.MainWindow
:= True;
3188 Menu
.OnClose
:= ProcGMClose
;
3189 Menu
.OnShow
:= ProcGMShow
;
3190 g_GUI_AddWindow(Menu
);
3192 Menu
:= TGUIWindow
.Create('GameServerMenu');
3193 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_MAIN_MENU
]))) do
3195 Name
:= 'mmGameServerMenu';
3196 AddButton(nil, _lc
[I_MENU_CHANGE_PLAYERS
], 'TeamMenu');
3197 AddButton(@ReadGameSettings
, _lc
[I_MENU_SET_GAME
], 'GameSetGameMenu');
3198 AddButton(@ReadOptions
, _lc
[I_MENU_OPTIONS
], 'OptionsMenu');
3199 AddButton(nil, _lc
[I_MENU_RESTART
], 'RestartGameMenu');
3200 AddButton(nil, _lc
[I_MENU_END_GAME
], 'EndGameMenu');
3202 Menu
.DefControl
:= 'mmGameServerMenu';
3203 Menu
.MainWindow
:= True;
3204 Menu
.OnClose
:= ProcGMClose
;
3205 Menu
.OnShow
:= ProcGMShow
;
3206 g_GUI_AddWindow(Menu
);
3208 Menu
:= TGUIWindow
.Create('GameClientMenu');
3209 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_MAIN_MENU
]))) do
3211 Name
:= 'mmGameClientMenu';
3212 AddButton(nil, _lc
[I_MENU_CHANGE_PLAYERS
], 'TeamMenu');
3213 AddButton(@ReadOptions
, _lc
[I_MENU_OPTIONS
], 'OptionsMenu');
3214 AddButton(nil, _lc
[I_MENU_END_GAME
], 'EndGameMenu');
3216 Menu
.DefControl
:= 'mmGameClientMenu';
3217 Menu
.MainWindow
:= True;
3218 Menu
.OnClose
:= ProcGMClose
;
3219 Menu
.OnShow
:= ProcGMShow
;
3220 g_GUI_AddWindow(Menu
);
3222 Menu
:= TGUIWindow
.Create('ClientPasswordMenu');
3223 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuSmallFont
, gMenuSmallFont
, _lc
[I_MENU_ENTERPASSWORD
]))) do
3225 Name
:= 'mClientPasswordMenu';
3226 with AddEdit(_lc
[I_NET_SERVER_PASSWORD
]) do
3234 AddButton(@ProcEnterPassword
, _lc
[I_MENU_START_GAME
]);
3237 Menu
.DefControl
:= 'mClientPasswordMenu';
3238 g_GUI_AddWindow(Menu
);
3240 Menu
:= TGUIWindow
.Create('GameSetGameMenu');
3241 with TGUIMenu(Menu
.AddChild(TGUIMenu
.Create(gMenuFont
, gMenuSmallFont
, _lc
[I_MENU_SET_GAME
]))) do
3243 Name
:= 'mGameSetGameMenu';
3244 with AddSwitch(_lc
[I_MENU_TEAM_DAMAGE
]) do
3246 Name
:= 'swTeamDamage';
3247 AddItem(_lc
[I_MENU_YES
]);
3248 AddItem(_lc
[I_MENU_NO
]);
3251 with AddEdit(_lc
[I_MENU_TIME_LIMIT
]) do
3253 Name
:= 'edTimeLimit';
3258 with AddEdit(_lc
[I_MENU_GOAL_LIMIT
]) do
3260 Name
:= 'edGoalLimit';
3265 with AddEdit(_lc
[I_MENU_MAX_LIVES
]) do
3267 Name
:= 'edMaxLives';
3272 with AddSwitch(_lc
[I_MENU_BOTS_VS
]) do
3275 AddItem(_lc
[I_MENU_BOTS_VS_PLAYERS
]);
3276 AddItem(_lc
[I_MENU_BOTS_VS_MONSTERS
]);
3277 AddItem(_lc
[I_MENU_BOTS_VS_ALL
]);
3283 Menu
.DefControl
:= 'mGameSetGameMenu';
3284 Menu
.OnClose
:= ProcApplyGameSet
;
3285 g_GUI_AddWindow(Menu
);
3287 Menu
:= TGUIWindow
.Create('TeamMenu');
3288 with TGUIMainMenu(Menu
.AddChild(TGUIMainMenu
.Create(gMenuFont
, '', _lc
[I_MENU_CHANGE_PLAYERS
]))) do
3290 Name
:= 'mmTeamMenu';
3291 AddButton(@ProcJoinRed
, _lc
[I_MENU_JOIN_RED
], '').Name
:= 'tmJoinRed';
3292 AddButton(@ProcJoinBlue
, _lc
[I_MENU_JOIN_BLUE
], '').Name
:= 'tmJoinBlue';
3293 AddButton(@ProcJoinGame
, _lc
[I_MENU_JOIN_GAME
], '').Name
:= 'tmJoinGame';
3294 AddButton(@ProcSwitchP2
, _lc
[I_MENU_ADD_PLAYER_2
], '').Name
:= 'tmPlayer2';
3295 AddButton(@ProcSpectate
, _lc
[I_MENU_SPECTATE
], '').Name
:= 'tmSpectate';
3297 Menu
.DefControl
:= 'mmTeamMenu';
3298 Menu
.OnShow
:= ProcChangePlayers
;
3299 g_GUI_AddWindow(Menu
);
3302 procedure g_Menu_Show_SaveMenu();
3304 if g_Game_IsTestMap
then
3306 if gGameSettings
.GameType
= GT_SINGLE
then
3307 g_GUI_ShowWindow('GameSingleMenu')
3310 if g_Game_IsClient
then
3313 if g_Game_IsNet
then
3316 g_GUI_ShowWindow('GameCustomMenu');
3318 g_GUI_ShowWindow('SaveMenu');
3319 g_Sound_PlayEx('MENU_OPEN');
3322 procedure g_Menu_Show_LoadMenu (standalone
: Boolean=false);
3324 if (g_ActiveWindow
<> nil) and (g_ActiveWindow
.name
= 'LoadMenu') then exit
; // nothing to do
3325 if gGameSettings
.GameType
= GT_SINGLE
then
3327 if not standalone
then g_GUI_ShowWindow('GameSingleMenu')
3331 if g_Game_IsClient
then exit
;
3332 if g_Game_IsNet
then exit
;
3333 if not standalone
then g_GUI_ShowWindow('GameCustomMenu');
3335 g_GUI_ShowWindow('LoadMenu');
3336 g_Sound_PlayEx('MENU_OPEN');
3339 procedure g_Menu_Show_GameSetGame();
3341 if gGameSettings
.GameType
= GT_SINGLE
then
3342 g_GUI_ShowWindow('GameSingleMenu')
3345 if g_Game_IsClient
then
3348 if g_Game_IsNet
then
3349 g_GUI_ShowWindow('GameServerMenu')
3351 g_GUI_ShowWindow('GameCustomMenu');
3354 g_GUI_ShowWindow('GameSetGameMenu');
3355 g_Sound_PlayEx('MENU_OPEN');
3358 procedure g_Menu_Show_OptionsVideo();
3360 if gGameSettings
.GameType
= GT_SINGLE
then
3361 g_GUI_ShowWindow('GameSingleMenu')
3364 if g_Game_IsClient
then
3365 g_GUI_ShowWindow('GameClientMenu')
3367 if g_Game_IsNet
then
3368 g_GUI_ShowWindow('GameServerMenu')
3370 g_GUI_ShowWindow('GameCustomMenu');
3373 g_GUI_ShowWindow('OptionsMenu');
3374 g_GUI_ShowWindow('OptionsVideoMenu');
3375 g_Sound_PlayEx('MENU_OPEN');
3378 procedure g_Menu_Show_OptionsSound();
3380 if gGameSettings
.GameType
= GT_SINGLE
then
3381 g_GUI_ShowWindow('GameSingleMenu')
3384 if g_Game_IsClient
then
3385 g_GUI_ShowWindow('GameClientMenu')
3387 if g_Game_IsNet
then
3388 g_GUI_ShowWindow('GameServerMenu')
3390 g_GUI_ShowWindow('GameCustomMenu');
3393 g_GUI_ShowWindow('OptionsMenu');
3394 g_GUI_ShowWindow('OptionsSoundMenu');
3395 g_Sound_PlayEx('MENU_OPEN');
3398 procedure g_Menu_Show_EndGameMenu();
3400 g_GUI_ShowWindow('EndGameMenu');
3401 g_Sound_PlayEx('MENU_OPEN');
3404 procedure g_Menu_Show_QuitGameMenu();
3406 g_GUI_ShowWindow('ExitMenu');
3407 g_Sound_PlayEx('MENU_OPEN');
3410 procedure g_Menu_Init();
3417 procedure g_Menu_Free();
3421 e_WriteLog('Releasing menu data...', TMsgType
.Notify
);
3426 procedure g_Menu_Reset();
3430 g_GUI_SaveMenuPos();
3431 ex
:= g_GUI_Destroy();
3435 e_WriteLog('Recreating menu...', TMsgType
.Notify
);
3440 g_Game_SetDebugMode();
3442 g_GUI_LoadMenuPos();