DEADSOFTWARE

animated textures loader simplified alot
[d2df-sdl.git] / src / game / g_options.pas
1 {$MODE DELPHI}
2 unit g_options;
4 interface
6 uses
7 g_language;
9 type
10 TPlayerControl = record
11 KeyRight: Word;
12 KeyLeft: Word;
13 KeyUp: Word;
14 KeyDown: Word;
15 KeyFire: Word;
16 KeyJump: Word;
17 KeyNextWeapon: Word;
18 KeyPrevWeapon: Word;
19 KeyOpen: Word;
20 end;
22 TGameControls = record
23 TakeScreenshot: Word;
24 Stat: Word;
25 Chat: Word;
26 TeamChat: Word;
27 end;
29 TControls = record
30 GameControls: TGameControls;
31 P1Control: TPlayerControl;
32 P2Control: TPlayerControl;
33 end;
35 procedure g_Options_SetDefault();
36 procedure g_Options_Read(FileName: String);
37 procedure g_Options_Write(FileName: String);
38 procedure g_Options_Write_Language(FileName: String);
39 procedure g_Options_Write_Video(FileName: String);
40 procedure g_Options_Write_Gameplay_Custom(FileName: String);
41 procedure g_Options_Write_Gameplay_Net(FileName: String);
42 procedure g_Options_Write_Net_Server(FileName: String);
43 procedure g_Options_Write_Net_Client(FileName: String);
45 var
46 gGameControls: TControls;
47 gScreenWidth: Word = 800;
48 gScreenHeight: Word = 600;
49 gWinRealPosX: Integer = 0;
50 gWinRealPosY: Integer = 0;
51 gBPP: Byte = 32;
52 gFreq: Byte = 0;
53 gFullscreen: Boolean = False;
54 gWinMaximized: Boolean = False;
55 gVSync: Boolean = False;
56 glLegacyNPOT: Boolean = False;
57 gTextureFilter: Boolean = True;
58 gNoSound: Boolean = False;
59 gSoundLevel: Byte = 75;
60 gMusicLevel: Byte = 65;
61 gMaxSimSounds: Byte = 8;
62 gMuteWhenInactive: Boolean = False;
63 gAdvCorpses: Boolean = True;
64 gAdvBlood: Boolean = True;
65 gAdvGibs: Boolean = True;
66 gGibsCount: Integer = 32;
67 gBloodCount: Byte = 3;
68 gFlash: Byte = 1;
69 gDrawBackGround: Boolean = True;
70 gShowMessages: Boolean = True;
71 gRevertPlayers: Boolean = False;
72 gLanguage: String = LANGUAGE_ENGLISH;
73 gAskLanguage: Boolean = True;
74 gcMap: String = '';
75 gcGameMode: String = '';
76 gcTimeLimit: Word = 0;
77 gcGoalLimit: Word = 0;
78 gcMaxLives: Byte = 0;
79 gcPlayers: Byte = 1;
80 gcTeamDamage: Boolean = False;
81 gcAllowExit: Boolean = True;
82 gcWeaponStay: Boolean = False;
83 gcMonsters: Boolean = False;
84 gcBotsVS: String = 'Everybody';
85 gnMap: String = '';
86 gnGameMode: String = '';
87 gnTimeLimit: Word = 0;
88 gnGoalLimit: Word = 0;
89 gnMaxLives: Byte = 0;
90 gnPlayers: Byte = 1;
91 gnTeamDamage: Boolean = False;
92 gnAllowExit: Boolean = True;
93 gnWeaponStay: Boolean = False;
94 gnMonsters: Boolean = False;
95 gnBotsVS: String = 'Everybody';
96 gsSDLSampleRate: Integer = 44100;
97 gsSDLBufferSize: Integer = 2048;
98 gSFSDebug: Boolean = False;
99 gSFSFastMode: Boolean = False;
101 implementation
103 uses
104 e_log, e_input, g_window, g_sound, g_gfx, g_player, Math,
105 g_map, g_net, g_netmaster, SysUtils, CONFIG, g_game, g_main, e_textures,
106 g_items, GL, GLExt, wadreader;
108 procedure g_Options_SetDefault();
109 var
110 i: Integer;
111 begin
112 g_Sound_SetupAllVolumes(75, 65);
113 gMaxSimSounds := 8;
114 gMuteWhenInactive := False;
115 gAnnouncer := ANNOUNCE_MEPLUS;
116 gSoundEffectsDF := True;
117 g_GFX_SetMax(2000);
118 g_Gibs_SetMax(150);
119 g_Corpses_SetMax(20);
120 g_Shells_SetMax(300);
121 gGibsCount := 32;
122 gBloodCount := 3;
123 gAdvBlood := True;
124 gAdvCorpses := True;
125 gAdvGibs := True;
126 gFlash := 1;
127 gDrawBackGround := True;
128 gShowMessages := True;
129 gRevertPlayers := False;
131 for i := 0 to e_MaxJoys-1 do
132 e_JoystickDeadzones[i] := 8192;
134 with gGameControls.GameControls do
135 begin
136 TakeScreenshot := 183;
137 Stat := 15;
138 Chat := 20; // [T]
139 TeamChat := 21; // [Y]
140 end;
142 with gGameControls.P1Control do
143 begin
144 KeyRight := 77;
145 KeyLeft := 75;
146 KeyUp := 72;
147 KeyDown := 76;
148 KeyFire := 184;
149 KeyJump := 157;
150 KeyNextWeapon := 73;
151 KeyPrevWeapon := 71;
152 KeyOpen := 54;
153 end;
155 with gGameControls.P2Control do
156 begin
157 KeyRight := 33;
158 KeyLeft := 31;
159 KeyUp := 18;
160 KeyDown := 32;
161 KeyFire := 30;
162 KeyJump := 16;
163 KeyNextWeapon := 19;
164 KeyPrevWeapon := 17;
165 KeyOpen := 58;
166 end;
168 with gPlayer1Settings do
169 begin
170 Name := 'Player1';
171 Model := STD_PLAYER_MODEL;
172 Color.R := PLAYER1_DEF_COLOR.R;
173 Color.G := PLAYER1_DEF_COLOR.G;
174 Color.B := PLAYER1_DEF_COLOR.B;
175 Team := TEAM_RED;
176 end;
178 with gPlayer2Settings do
179 begin
180 Name := 'Player2';
181 Model := STD_PLAYER_MODEL;
182 Color.R := PLAYER2_DEF_COLOR.R;
183 Color.G := PLAYER2_DEF_COLOR.G;
184 Color.B := PLAYER2_DEF_COLOR.B;
185 Team := TEAM_BLUE;
186 end;
188 NetUseMaster := True;
189 g_Net_Slist_Set('mpms.doom2d.org', 25665);
190 end;
192 procedure g_Options_Read(FileName: String);
193 var
194 config: TConfig;
195 str: String;
196 i: Integer;
197 begin
198 gAskLanguage := True;
199 e_WriteLog('Reading config', MSG_NOTIFY);
201 if not FileExists(FileName) then
202 begin
203 e_WriteLog('Config file '+FileName+' not found', MSG_WARNING);
204 g_Options_SetDefault();
206 // Default video options:
207 gScreenWidth := 800;
208 gScreenHeight := 600;
209 gWinRealPosX := 0;
210 gWinRealPosY := 0;
211 gWinMaximized := False;
212 gFullScreen := False;
213 gBPP := 32;
214 gVSync := False;
215 gTextureFilter := True;
216 glLegacyNPOT := False;
218 Exit;
219 end;
221 config := TConfig.CreateFile(FileName);
223 gScreenWidth := config.ReadInt('Video', 'ScreenWidth', 800);
224 if gScreenWidth < 640 then
225 gScreenWidth := 640;
226 gScreenHeight := config.ReadInt('Video', 'ScreenHeight', 600);
227 if gScreenHeight < 480 then
228 gScreenHeight := 480;
229 gWinRealPosX := config.ReadInt('Video', 'WinPosX', 0);
230 if gWinRealPosX < 0 then
231 gWinRealPosX := 0;
232 gWinRealPosY := config.ReadInt('Video', 'WinPosY', 0);
233 if gWinRealPosY < 0 then
234 gWinRealPosY := 0;
235 gFullScreen := config.ReadBool('Video', 'Fullscreen', False);
236 gWinMaximized := config.ReadBool('Video', 'Maximized', False);
237 gBPP := config.ReadInt('Video', 'BPP', 32);
238 gFreq := config.ReadInt('Video', 'Freq', 0);
239 gVSync := config.ReadBool('Video', 'VSync', True);
240 gTextureFilter := config.ReadBool('Video', 'TextureFilter', True);
241 glLegacyNPOT := config.ReadBool('Video', 'LegacyCompatible', False);
243 gNoSound := config.ReadBool('Sound', 'NoSound', False);
244 gSoundLevel := Min(config.ReadInt('Sound', 'SoundLevel', 75), 255);
245 gMusicLevel := Min(config.ReadInt('Sound', 'MusicLevel', 65), 255);
246 gMaxSimSounds := Max(Min(config.ReadInt('Sound', 'MaxSimSounds', 8), 66), 2);
247 gMuteWhenInactive := config.ReadBool('Sound', 'MuteInactive', False);
248 gAnnouncer := Min(Max(config.ReadInt('Sound', 'Announcer', ANNOUNCE_MEPLUS), ANNOUNCE_NONE), ANNOUNCE_ALL);
249 gSoundEffectsDF := config.ReadBool('Sound', 'SoundEffectsDF', True);
250 gsSDLSampleRate := Min(Max(config.ReadInt('Sound', 'SDLSampleRate', 44100), 11025), 96000);
251 gsSDLBufferSize := Min(Max(config.ReadInt('Sound', 'SDLBufferSize', 2048), 64), 16384);
253 with gGameControls.GameControls do
254 begin
255 TakeScreenshot := config.ReadInt('GameControls', 'TakeScreenshot', 183);
256 Stat := config.ReadInt('GameControls', 'Stat', 15);
257 Chat := config.ReadInt('GameControls', 'Chat', 20);
258 TeamChat := config.ReadInt('GameControls', 'TeamChat', 21);
259 end;
261 with gGameControls.P1Control, config do
262 begin
263 KeyRight := ReadInt('Player1', 'KeyRight', 33);
264 KeyLeft := ReadInt('Player1', 'KeyLeft', 31);
265 KeyUp := ReadInt('Player1', 'KeyUp', 18);
266 KeyDown := ReadInt('Player1', 'KeyDown', 32);
267 KeyFire := ReadInt('Player1', 'KeyFire', 30);
268 KeyJump := ReadInt('Player1', 'KeyJump', 16);
269 KeyNextWeapon := ReadInt('Player1', 'KeyNextWeapon', 19);
270 KeyPrevWeapon := ReadInt('Player1', 'KeyPrevWeapon', 17);
271 KeyOpen := ReadInt('Player1', 'KeyOpen', 58);
272 end;
274 with gPlayer1Settings, config do
275 begin
276 Name := ReadStr('Player1', 'name', 'Player1');
277 Model := ReadStr('Player1', 'model', STD_PLAYER_MODEL);
278 Color.R := Min(Abs(ReadInt('Player1', 'red', PLAYER1_DEF_COLOR.R)), 255);
279 Color.G := Min(Abs(ReadInt('Player1', 'green', PLAYER1_DEF_COLOR.G)), 255);
280 Color.B := Min(Abs(ReadInt('Player1', 'blue', PLAYER1_DEF_COLOR.B)), 255);
281 Team := ReadInt('Player1', 'team', TEAM_RED);
282 if (Team < TEAM_RED) or (Team > TEAM_BLUE) then
283 Team := TEAM_RED;
284 end;
286 with gGameControls.P2Control, config do
287 begin
288 KeyRight := ReadInt('Player2', 'KeyRight', 205);
289 KeyLeft := ReadInt('Player2', 'KeyLeft', 203);
290 KeyUp := ReadInt('Player2', 'KeyUp', 200);
291 KeyDown := ReadInt('Player2', 'KeyDown', 208);
292 KeyFire := ReadInt('Player2', 'KeyFire', 184);
293 KeyJump := ReadInt('Player2', 'KeyJump', 157);
294 KeyNextWeapon := ReadInt('Player2', 'KeyNextWeapon', 73);
295 KeyPrevWeapon := ReadInt('Player2', 'KeyPrevWeapon', 71);
296 KeyOpen := ReadInt('Player2', 'KeyOpen', 54);
297 end;
299 with gPlayer2Settings, config do
300 begin
301 Name := ReadStr('Player2', 'name', 'Player2');
302 Model := ReadStr('Player2', 'model', STD_PLAYER_MODEL);
303 Color.R := Min(Abs(ReadInt('Player2', 'red', PLAYER2_DEF_COLOR.R)), 255);
304 Color.G := Min(Abs(ReadInt('Player2', 'green', PLAYER2_DEF_COLOR.G)), 255);
305 Color.B := Min(Abs(ReadInt('Player2', 'blue', PLAYER2_DEF_COLOR.B)), 255);
306 Team := ReadInt('Player2', 'team', TEAM_BLUE);
307 if (Team < TEAM_RED) or (Team > TEAM_BLUE) then
308 Team := TEAM_RED;
309 end;
311 for i := 0 to e_MaxJoys-1 do
312 e_JoystickDeadzones[i] := config.ReadInt('Joysticks', 'Deadzone' + IntToStr(i), 8192);
314 g_GFX_SetMax(Min(config.ReadInt('Game', 'MaxParticles', 1000), 50000));
315 g_Shells_SetMax(Min(config.ReadInt('Game', 'MaxShells', 300), 600));
316 g_Gibs_SetMax(Min(config.ReadInt('Game', 'MaxGibs', 150), 500));
317 g_Corpses_SetMax(Min(config.ReadInt('Game', 'MaxCorpses', 20), 100));
319 case config.ReadInt('Game', 'GibsCount', 3) of
320 0: gGibsCount := 0;
321 1: gGibsCount := 8;
322 2: gGibsCount := 16;
323 3: gGibsCount := 32;
324 else gGibsCount := 48;
325 end;
327 ITEM_RESPAWNTIME := 36*Max(config.ReadInt('Game', 'ItemRespawnTime', 60), 0);
328 gBloodCount := Min(config.ReadInt('Game', 'BloodCount', 4), 4);
329 gAdvBlood := config.ReadBool('Game', 'AdvancesBlood', True);
330 gAdvCorpses := config.ReadBool('Game', 'AdvancesCorpses', True);
331 gAdvGibs := config.ReadBool('Game', 'AdvancesGibs', True);
332 gFlash := Min(Max(config.ReadInt('Game', 'Flash', 1), 0), 2);
333 gDrawBackGround := config.ReadBool('Game', 'BackGround', True);
334 gShowMessages := config.ReadBool('Game', 'Messages', True);
335 gRevertPlayers := config.ReadBool('Game', 'RevertPlayers', False);
336 gChatBubble := Min(Max(config.ReadInt('Game', 'ChatBubble', 4), 0), 4);
337 gSFSDebug := config.ReadBool('Game', 'SFSDebug', False);
338 wadoptDebug := gSFSDebug;
339 gSFSFastMode := config.ReadBool('Game', 'SFSFastMode', False);
340 wadoptFast := gSFSFastMode;
342 // Ãåéìïëåé â ñâîåé èãðå
343 gcMap := config.ReadStr('GameplayCustom', 'Map', '');
344 gcGameMode := config.ReadStr('GameplayCustom', 'GameMode', _lc[I_MENU_GAME_TYPE_DM]);
345 gcTimeLimit := Min(Max(config.ReadInt('GameplayCustom', 'TimeLimit', 0), 0), 65535);
346 gcGoalLimit := Min(Max(config.ReadInt('GameplayCustom', 'GoalLimit', 0), 0), 65535);
347 gcMaxLives := Min(Max(config.ReadInt('GameplayCustom', 'MaxLives', 0), 0), 255);
348 gcPlayers := Min(Max(config.ReadInt('GameplayCustom', 'Players', 1), 0), 2);
349 gcTeamDamage := config.ReadBool('GameplayCustom', 'TeamDamage', False);
350 gcAllowExit := config.ReadBool('GameplayCustom', 'AllowExit', True);
351 gcWeaponStay := config.ReadBool('GameplayCustom', 'WeaponStay', False);
352 gcMonsters := config.ReadBool('GameplayCustom', 'Monsters', False);
353 gcBotsVS := config.ReadStr('GameplayCustom', 'BotsVS', 'Everybody');
355 with gGameSettings do
356 begin
357 GameMode := g_Game_TextToMode(gcGameMode);
358 if GameMode = GM_NONE then
359 GameMode := GM_DM;
360 if GameMode = GM_SINGLE then
361 GameMode := GM_COOP;
362 TimeLimit := gcTimeLimit;
363 GoalLimit := gcGoalLimit;
364 MaxLives := gcMaxLives;
366 Options := 0;
367 if gcTeamDamage then
368 Options := Options or GAME_OPTION_TEAMDAMAGE;
369 if gcAllowExit then
370 Options := Options or GAME_OPTION_ALLOWEXIT;
371 if gcWeaponStay then
372 Options := Options or GAME_OPTION_WEAPONSTAY;
373 if gcMonsters then
374 Options := Options or GAME_OPTION_MONSTERS;
375 if gcBotsVS = 'Everybody' then
376 Options := Options or GAME_OPTION_BOTVSPLAYER or GAME_OPTION_BOTVSMONSTER;
377 if gcBotsVS = 'Players' then
378 Options := Options or GAME_OPTION_BOTVSPLAYER;
379 if gcBotsVS = 'Monsters' then
380 Options := Options or GAME_OPTION_BOTVSMONSTER;
381 end;
383 // Ãåéìïëåé â ñåòåâîé èãðå
384 gnMap := config.ReadStr('GameplayNetwork', 'Map', '');
385 gnGameMode := config.ReadStr('GameplayNetwork', 'GameMode', _lc[I_MENU_GAME_TYPE_DM]);
386 gnTimeLimit := Min(Max(config.ReadInt('GameplayNetwork', 'TimeLimit', 0), 0), 65535);
387 gnGoalLimit := Min(Max(config.ReadInt('GameplayNetwork', 'GoalLimit', 0), 0), 65535);
388 gnMaxLives := Min(Max(config.ReadInt('GameplayNetwork', 'MaxLives', 0), 0), 255);
389 gnPlayers := Min(Max(config.ReadInt('GameplayNetwork', 'Players', 1), 0), 2);
390 gnTeamDamage := config.ReadBool('GameplayNetwork', 'TeamDamage', False);
391 gnAllowExit := config.ReadBool('GameplayNetwork', 'AllowExit', True);
392 gnWeaponStay := config.ReadBool('GameplayNetwork', 'WeaponStay', False);
393 gnMonsters := config.ReadBool('GameplayNetwork', 'Monsters', False);
394 gnBotsVS := config.ReadStr('GameplayNetwork', 'BotsVS', 'Everybody');
396 // Îáùèå ñåòåâûå
397 NetSlistIP := config.ReadStr('MasterServer', 'IP', 'mpms.doom2d.org');
398 NetSlistPort := config.ReadInt('MasterServer', 'Port', 25665);
400 // Ñåðâåð
401 NetServerName := config.ReadStr('Server', 'Name', 'Unnamed Server');
402 NetPassword := config.ReadStr('Server', 'Password', '');
403 NetPort := Min(Max(0, config.ReadInt('Server', 'Port', 25666)), 65535);
404 NetMaxClients := Min(Max(0, config.ReadInt('Server', 'MaxClients', 16)), NET_MAXCLIENTS);
405 NetAllowRCON := config.ReadBool('Server', 'RCON', False);
406 NetRCONPassword := config.ReadStr('Server', 'RCONPassword', 'default');
407 NetUseMaster := config.ReadBool('Server', 'SyncWithMaster', True);
408 NetUpdateRate := Max(0, config.ReadInt('Server', 'UpdateInterval', 0));
409 NetRelupdRate := Max(0, config.ReadInt('Server', 'ReliableUpdateInterval', 18));
410 NetMasterRate := Max(1, config.ReadInt('Server', 'MasterSyncInterval', 60000));
412 // Êëèåíò
413 NetInterpLevel := Max(0, config.ReadInt('Client', 'InterpolationSteps', 2));
414 NetForcePlayerUpdate := config.ReadBool('Client', 'ForcePlayerUpdate', False);
415 NetPredictSelf := config.ReadBool('Client', 'PredictSelf', True);
416 NetClientIP := config.ReadStr('Client', 'LastIP', '127.0.0.1');
417 NetClientPort := Max(0, config.ReadInt('Client', 'LastPort', 25666));
419 // ßçûê:
420 str := config.ReadStr('Game', 'Language', '');
421 if (str = LANGUAGE_RUSSIAN) or
422 (str = LANGUAGE_ENGLISH) then
423 begin
424 gLanguage := str;
425 gAskLanguage := False;
426 end
427 else
428 gLanguage := LANGUAGE_ENGLISH;
430 config.Free();
432 if gTextureFilter then
433 TEXTUREFILTER := GL_LINEAR
434 else
435 TEXTUREFILTER := GL_NEAREST;
436 end;
438 procedure g_Options_Write(FileName: String);
439 var
440 config: TConfig;
441 i: Integer;
442 begin
443 e_WriteLog('Writing config', MSG_NOTIFY);
445 config := TConfig.CreateFile(FileName);
447 config.WriteInt('Video', 'ScreenWidth', gScreenWidth);
448 config.WriteInt('Video', 'ScreenHeight', gScreenHeight);
449 config.WriteInt('Video', 'WinPosX', gWinRealPosX);
450 config.WriteInt('Video', 'WinPosY', gWinRealPosY);
451 config.WriteBool('Video', 'Fullscreen', gFullScreen);
452 config.WriteBool('Video', 'Maximized', gWinMaximized);
453 config.WriteInt('Video', 'BPP', gBPP);
454 config.WriteBool('Video', 'VSync', gVSync);
455 config.WriteBool('Video', 'TextureFilter', gTextureFilter);
456 config.WriteBool('Video', 'LegacyCompatible', glLegacyNPOT);
458 config.WriteBool('Sound', 'NoSound', gNoSound);
459 config.WriteInt('Sound', 'SoundLevel', gSoundLevel);
460 config.WriteInt('Sound', 'MusicLevel', gMusicLevel);
461 config.WriteInt('Sound', 'MaxSimSounds', gMaxSimSounds);
462 config.WriteBool('Sound', 'MuteInactive', gMuteWhenInactive);
463 config.WriteInt('Sound', 'Announcer', gAnnouncer);
464 config.WriteBool('Sound', 'SoundEffectsDF', gSoundEffectsDF);
465 config.WriteInt('Sound', 'SDLSampleRate', gsSDLSampleRate);
466 config.WriteInt('Sound', 'SDLBufferSize', gsSDLBufferSize);
468 with config, gGameControls.GameControls do
469 begin
470 WriteInt('GameControls', 'TakeScreenshot', TakeScreenshot);
471 WriteInt('GameControls', 'Stat', Stat);
472 WriteInt('GameControls', 'Chat', Chat);
473 WriteInt('GameControls', 'TeamChat', TeamChat);
474 end;
476 with config, gGameControls.P1Control, gPlayer1Settings do
477 begin
478 WriteInt('Player1', 'KeyRight', KeyRight);
479 WriteInt('Player1', 'KeyLeft', KeyLeft);
480 WriteInt('Player1', 'KeyUp', KeyUp);
481 WriteInt('Player1', 'KeyDown', KeyDown);
482 WriteInt('Player1', 'KeyFire', KeyFire);
483 WriteInt('Player1', 'KeyJump', KeyJump);
484 WriteInt('Player1', 'KeyNextWeapon', KeyNextWeapon);
485 WriteInt('Player1', 'KeyPrevWeapon', KeyPrevWeapon);
486 WriteInt('Player1', 'KeyOpen', KeyOpen);
488 WriteStr('Player1', 'Name', Name);
489 WriteStr('Player1', 'model', Model);
490 WriteInt('Player1', 'red', Color.R);
491 WriteInt('Player1', 'green', Color.G);
492 WriteInt('Player1', 'blue', Color.B);
493 WriteInt('Player1', 'team', Team);
494 end;
496 with config, gGameControls.P2Control, gPlayer2Settings do
497 begin
498 WriteInt('Player2', 'KeyRight', KeyRight);
499 WriteInt('Player2', 'KeyLeft', KeyLeft);
500 WriteInt('Player2', 'KeyUp', KeyUp);
501 WriteInt('Player2', 'KeyDown', KeyDown);
502 WriteInt('Player2', 'KeyFire', KeyFire);
503 WriteInt('Player2', 'KeyJump', KeyJump);
504 WriteInt('Player2', 'KeyNextWeapon', KeyNextWeapon);
505 WriteInt('Player2', 'KeyPrevWeapon', KeyPrevWeapon);
506 WriteInt('Player2', 'KeyOpen', KeyOpen);
508 WriteStr('Player2', 'Name', Name);
509 WriteStr('Player2', 'model', Model);
510 WriteInt('Player2', 'red', Color.R);
511 WriteInt('Player2', 'green', Color.G);
512 WriteInt('Player2', 'blue', Color.B);
513 WriteInt('Player2', 'team', Team);
514 end;
516 for i := 0 to e_MaxJoys-1 do
517 config.WriteInt('Joysticks', 'Deadzone' + IntToStr(i), e_JoystickDeadzones[i]);
519 with config do
520 case gGibsCount of
521 0: config.WriteInt('Game', 'GibsCount', 0);
522 8: config.WriteInt('Game', 'GibsCount', 1);
523 16: config.WriteInt('Game', 'GibsCount', 2);
524 32: config.WriteInt('Game', 'GibsCount', 3);
525 else config.WriteInt('Game', 'GibsCount', 4);
526 end;
528 config.WriteInt('Game', 'ItemRespawnTime', ITEM_RESPAWNTIME div 36);
529 config.WriteInt('Game', 'MaxParticles', g_GFX_GetMax());
530 config.WriteInt('Game', 'MaxShells', g_Shells_GetMax());
531 config.WriteInt('Game', 'MaxGibs', g_Gibs_GetMax());
532 config.WriteInt('Game', 'MaxCorpses', g_Corpses_GetMax());
533 config.WriteInt('Game', 'BloodCount', gBloodCount);
534 config.WriteBool('Game', 'AdvancesBlood', gAdvBlood);
535 config.WriteBool('Game', 'AdvancesCorpses', gAdvCorpses);
536 config.WriteBool('Game', 'AdvancesGibs', gAdvGibs);
537 config.WriteInt('Game', 'Flash', gFlash);
538 config.WriteBool('Game', 'BackGround', gDrawBackGround);
539 config.WriteBool('Game', 'Messages', gShowMessages);
540 config.WriteBool('Game', 'RevertPlayers', gRevertPlayers);
541 config.WriteInt('Game', 'ChatBubble', gChatBubble);
542 config.WriteBool('Game', 'SFSDebug', gSFSDebug);
543 config.WriteBool('Game', 'SFSFastMode', gSFSFastMode);
545 config.WriteStr ('GameplayCustom', 'Map', gcMap);
546 config.WriteStr ('GameplayCustom', 'GameMode', gcGameMode);
547 config.WriteInt ('GameplayCustom', 'TimeLimit', gcTimeLimit);
548 config.WriteInt ('GameplayCustom', 'GoalLimit', gcGoalLimit);
549 config.WriteInt ('GameplayCustom', 'MaxLives', gcMaxLives);
550 config.WriteInt ('GameplayCustom', 'Players', gcPlayers);
551 config.WriteBool('GameplayCustom', 'TeamDamage', gcTeamDamage);
552 config.WriteBool('GameplayCustom', 'AllowExit', gcAllowExit);
553 config.WriteBool('GameplayCustom', 'WeaponStay', gcWeaponStay);
554 config.WriteBool('GameplayCustom', 'Monsters', gcMonsters);
555 config.WriteStr ('GameplayCustom', 'BotsVS', gcBotsVS);
557 config.WriteStr ('GameplayNetwork', 'Map', gnMap);
558 config.WriteStr ('GameplayNetwork', 'GameMode', gnGameMode);
559 config.WriteInt ('GameplayNetwork', 'TimeLimit', gnTimeLimit);
560 config.WriteInt ('GameplayNetwork', 'GoalLimit', gnGoalLimit);
561 config.WriteInt ('GameplayNetwork', 'MaxLives', gnMaxLives);
562 config.WriteInt ('GameplayNetwork', 'Players', gnPlayers);
563 config.WriteBool('GameplayNetwork', 'TeamDamage', gnTeamDamage);
564 config.WriteBool('GameplayNetwork', 'AllowExit', gnAllowExit);
565 config.WriteBool('GameplayNetwork', 'WeaponStay', gnWeaponStay);
566 config.WriteBool('GameplayNetwork', 'Monsters', gnMonsters);
567 config.WriteStr ('GameplayNetwork', 'BotsVS', gnBotsVS);
569 config.WriteStr('MasterServer', 'IP', NetSlistIP);
570 config.WriteInt('MasterServer', 'Port', NetSlistPort);
572 config.WriteStr ('Server', 'Name', NetServerName);
573 config.WriteStr ('Server', 'Password', NetPassword);
574 config.WriteInt ('Server', 'Port', NetPort);
575 config.WriteInt ('Server', 'MaxClients', NetMaxClients);
576 config.WriteBool('Server', 'RCON', NetAllowRCON);
577 config.WriteStr ('Server', 'RCONPassword', NetRCONPassword);
578 config.WriteBool('Server', 'SyncWithMaster', NetUseMaster);
579 config.WriteInt ('Server', 'UpdateInterval', NetUpdateRate);
580 config.WriteInt ('Server', 'ReliableUpdateInterval', NetRelupdRate);
581 config.WriteInt ('Server', 'MasterSyncInterval', NetMasterRate);
583 config.WriteInt ('Client', 'InterpolationSteps', NetInterpLevel);
584 config.WriteBool ('Client', 'ForcePlayerUpdate', NetForcePlayerUpdate);
585 config.WriteBool ('Client', 'PredictSelf', NetPredictSelf);
586 config.WriteStr ('Client', 'LastIP', NetClientIP);
587 config.WriteInt ('Client', 'LastPort', NetClientPort);
589 config.SaveFile(FileName);
590 config.Free();
591 end;
593 procedure g_Options_Write_Language(FileName: String);
594 var
595 config: TConfig;
596 begin
597 e_WriteLog('Writing language config', MSG_NOTIFY);
599 config := TConfig.CreateFile(FileName);
600 config.WriteStr('Game', 'Language', gLanguage);
601 config.SaveFile(FileName);
602 config.Free();
603 end;
605 procedure g_Options_Write_Video(FileName: String);
606 var
607 config: TConfig;
608 sW, sH: Integer;
609 begin
610 e_WriteLog('Writing resolution to config', MSG_NOTIFY);
612 config := TConfig.CreateFile(FileName);
614 if gWinMaximized and (not gFullscreen) then
615 begin
616 sW := gWinSizeX;
617 sH := gWinSizeY;
618 end
619 else
620 begin
621 sW := gScreenWidth;
622 sH := gScreenHeight;
623 end;
625 config.WriteInt('Video', 'ScreenWidth', sW);
626 config.WriteInt('Video', 'ScreenHeight', sH);
627 config.WriteInt('Video', 'WinPosX', gWinRealPosX);
628 config.WriteInt('Video', 'WinPosY', gWinRealPosY);
629 config.WriteBool('Video', 'Fullscreen', gFullscreen);
630 config.WriteBool('Video', 'Maximized', gWinMaximized);
632 config.SaveFile(FileName);
633 config.Free();
634 end;
636 procedure g_Options_Write_Gameplay_Custom(FileName: String);
637 var
638 config: TConfig;
639 begin
640 e_WriteLog('Writing custom gameplay config', MSG_NOTIFY);
642 config := TConfig.CreateFile(FileName);
644 config.WriteStr ('GameplayCustom', 'Map', gcMap);
645 config.WriteStr ('GameplayCustom', 'GameMode', gcGameMode);
646 config.WriteInt ('GameplayCustom', 'TimeLimit', gcTimeLimit);
647 config.WriteInt ('GameplayCustom', 'GoalLimit', gcGoalLimit);
648 config.WriteInt ('GameplayCustom', 'MaxLives', gcMaxLives);
649 config.WriteInt ('GameplayCustom', 'Players', gcPlayers);
650 config.WriteBool('GameplayCustom', 'TeamDamage', gcTeamDamage);
651 config.WriteBool('GameplayCustom', 'AllowExit', gcAllowExit);
652 config.WriteBool('GameplayCustom', 'WeaponStay', gcWeaponStay);
653 config.WriteBool('GameplayCustom', 'Monsters', gcMonsters);
654 config.WriteStr ('GameplayCustom', 'BotsVS', gcBotsVS);
656 config.SaveFile(FileName);
657 config.Free();
658 end;
660 procedure g_Options_Write_Gameplay_Net(FileName: String);
661 var
662 config: TConfig;
663 begin
664 e_WriteLog('Writing network gameplay config', MSG_NOTIFY);
666 config := TConfig.CreateFile(FileName);
668 config.WriteStr ('GameplayNetwork', 'Map', gnMap);
669 config.WriteStr ('GameplayNetwork', 'GameMode', gnGameMode);
670 config.WriteInt ('GameplayNetwork', 'TimeLimit', gnTimeLimit);
671 config.WriteInt ('GameplayNetwork', 'GoalLimit', gnGoalLimit);
672 config.WriteInt ('GameplayNetwork', 'MaxLives', gnMaxLives);
673 config.WriteInt ('GameplayNetwork', 'Players', gnPlayers);
674 config.WriteBool('GameplayNetwork', 'TeamDamage', gnTeamDamage);
675 config.WriteBool('GameplayNetwork', 'AllowExit', gnAllowExit);
676 config.WriteBool('GameplayNetwork', 'WeaponStay', gnWeaponStay);
677 config.WriteBool('GameplayNetwork', 'Monsters', gnMonsters);
678 config.WriteStr ('GameplayNetwork', 'BotsVS', gnBotsVS);
680 config.SaveFile(FileName);
681 config.Free();
682 end;
684 procedure g_Options_Write_Net_Server(FileName: String);
685 var
686 config: TConfig;
687 begin
688 e_WriteLog('Writing server config', MSG_NOTIFY);
690 config := TConfig.CreateFile(FileName);
692 config.WriteStr ('Server', 'Name', NetServerName);
693 config.WriteStr ('Server', 'Password', NetPassword);
694 config.WriteInt ('Server', 'Port', NetPort);
695 config.WriteInt ('Server', 'MaxClients', NetMaxClients);
696 config.WriteBool('Server', 'SyncWithMaster', NetUseMaster);
698 config.SaveFile(FileName);
699 config.Free();
700 end;
702 procedure g_Options_Write_Net_Client(FileName: String);
703 var
704 config: TConfig;
705 begin
706 e_WriteLog('Writing client config', MSG_NOTIFY);
708 config := TConfig.CreateFile(FileName);
710 config.WriteStr('Client', 'LastIP', NetClientIP);
711 config.WriteInt('Client', 'LastPort', NetClientPort);
713 config.SaveFile(FileName);
714 config.Free();
715 end;
717 end.