DEADSOFTWARE

c29bb4da0a1c1bb8032142f5c9ee42f77954770f
[d2df-sdl.git] / src / game / g_options.pas
1 (* Copyright (C) Doom 2D: Forever Developers
2 *
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.
6 *
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.
11 *
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/>.
14 *)
15 {$INCLUDE ../shared/a_modes.inc}
16 unit g_options;
18 interface
20 uses
21 g_language, g_weapons, utils;
23 function GenPlayerName (n: Integer): String;
25 procedure g_Options_SetDefault;
26 procedure g_Options_SetDefaultVideo;
27 procedure g_Options_ApplyGameSettings;
29 const DF_Default_Megawad_Start = 'megawads/DOOM2D.WAD:\MAP01';
31 var
32 gBPP: Integer;
33 gFreq: Byte;
34 gFullscreen: Boolean;
35 gWinSizeX, gWinSizeY: Integer;
36 gWinMaximized: Boolean;
37 gVSync: Boolean;
38 glLegacyNPOT: Boolean;
39 glRenderToFBO: Boolean = True;
40 gTextureFilter: Boolean;
41 gLerpActors: Boolean = True;
42 gFrameTime: Integer = 5;
43 gMaxFPS: Integer = 200;
44 gNoSound: Boolean;
45 gSoundLevel: Integer;
46 gMusicLevel: Integer;
47 gMaxSimSounds: Integer;
48 gMuteWhenInactive: Boolean;
49 gAdvCorpses: Boolean;
50 gAdvBlood: Boolean;
51 gAdvGibs: Boolean;
52 gGibsCount: Integer;
53 gBloodCount: Integer;
54 gFlash: Integer;
55 gDrawBackGround: Boolean;
56 gShowMessages: Boolean;
57 gRevertPlayers: Boolean;
58 gLanguage: String;
59 gAskLanguage: Boolean;
60 gSaveStats: Boolean = False;
61 gScreenshotStats: Boolean = False;
62 gsSDLSampleRate: Integer;
63 gsSDLBufferSize: Integer;
64 gDefaultMegawadStart: AnsiString;
65 gBerserkAutoswitch: Boolean;
66 glNPOTOverride: Boolean = false;
68 (* Latched game settings *)
69 gsMap: String;
70 gsGameMode: String;
71 gsTimeLimit: Word;
72 gsGoalLimit: Word;
73 gsMaxLives: Byte;
74 gsPlayers: Byte;
75 gsGameFlags: LongWord;
76 gsSpawnInvul: Integer = 0;
77 gsItemRespawnTime: Word = 60;
78 gsWarmupTime: Word = 30;
80 implementation
82 uses
83 {$INCLUDE ../nogl/noGLuses.inc}
84 {$IFDEF USE_SDL2}
85 SDL2,
86 {$ENDIF}
87 e_log, e_input, g_console, g_window, g_sound, g_gfx, g_player, Math,
88 g_map, g_net, g_netmaster, SysUtils, CONFIG, g_game, g_main, e_texture,
89 g_items, wadreader, e_graphics, g_touch, envvars, g_system;
91 var
92 machine: Integer;
94 function GenPlayerName (n: Integer): String;
95 begin
96 ASSERT(n >= 1);
97 Result := GetUserName;
98 if Result = '' then
99 Result := 'Player' + IntToStr(machine MOD 10000);
100 if n = 1 then
101 Result := Copy(Result, 1, 12) + ' '
102 else
103 Result := Copy(Result, 1, 10) + ' ' + IntToStr(n)
104 end;
106 {$IFDEF USE_SDL2}
107 procedure g_Options_SetDefaultVideo;
108 var display: TSDL_DisplayMode;
109 {$IFNDEF ANDROID}
110 var target, closest: TSDL_DisplayMode; percentage: Integer;
111 {$ENDIF}
112 begin
113 (* Display 0 = Primary display *)
114 gScreenWidth := 640;
115 gScreenHeight := 480;
116 gWinSizeX := 640;
117 gWinSizeY := 480;
118 //gBPP := SDL_BITSPERPIXEL(dispaly.format);
119 gBPP := 32;
120 {$IFDEF ANDROID}
121 gFullScreen := True; (* rotation not allowed? *)
122 {$ELSE}
123 gFullScreen := False;
124 {$ENDIF}
125 if SDL_GetDesktopDisplayMode(0, @display) = 0 then
126 begin
127 {$IFDEF ANDROID}
128 gWinSizeX := display.w;
129 gWinSizeY := display.h;
130 {$ELSE}
131 (* Window must be smaller than display *)
132 closest.w := display.w;
133 closest.h := display.h;
134 percentage := 75;
135 while (display.w - closest.w < 48) or (display.h - closest.h < 48) do
136 begin
137 if percentage < 25 then
138 begin
139 closest.w := display.w * 75 div 100;
140 closest.h := display.h * 75 div 100;
141 break;
142 end;
143 target.w := display.w * percentage div 100;
144 target.h := display.h * percentage div 100;
145 target.format := 0; (* didn't care *)
146 target.refresh_rate := 0; (* didn't care *)
147 target.driverdata := nil; (* init *)
148 SDL_GetClosestDisplayMode(0, @target, @closest);
149 Dec(percentage);
150 end;
151 gWinSizeX := closest.w;
152 gWinSizeY := closest.h;
153 //gBPP := SDL_BITSPERPIXEL(closest.format); (* Resolution list didn't work for some reason *)
154 {$ENDIF}
155 end
156 else
157 begin
158 e_LogWritefln('SDL: Failed to get desktop display mode: %s', [SDL_GetError])
159 end;
160 (* Must be positioned on primary display *)
161 gWinMaximized := False;
162 gVSync := True;
163 gTextureFilter := True;
164 glLegacyNPOT := False;
165 gRC_Width := gWinSizeX;
166 gRC_Height := gWinSizeY;
167 gRC_FullScreen := gFullScreen;
168 gRC_Maximized := gWinMaximized;
169 e_LogWriteLn('g_Options_SetDefaultVideo: w = ' + IntToStr(gWinSizeX) + ' h = ' + IntToStr(gWinSizeY));
170 g_Console_ResetBinds;
171 end;
172 {$ELSE}
173 procedure g_Options_SetDefaultVideo;
174 begin
175 gWinSizeX := 640;
176 gWinSizeY := 480;
177 gBPP := 32;
178 gFullScreen := False;
179 gWinMaximized := False;
180 gVSync := True;
181 gTextureFilter := True;
182 glLegacyNPOT := False;
183 gScreenWidth := gWinSizeX;
184 gScreenHeight := gWinSizeY;
185 gRC_Width := gWinSizeX;
186 gRC_Height := gWinSizeY;
187 gRC_FullScreen := gFullScreen;
188 gRC_Maximized := gWinMaximized;
189 e_LogWriteLn('g_Options_SetDefaultVideo: w = ' + IntToStr(gWinSizeX) + ' h = ' + IntToStr(gWinSizeY));
190 g_Console_ResetBinds;
191 end;
192 {$ENDIF}
194 procedure g_Options_SetDefault();
195 var
196 i: Integer;
197 begin
198 (* section Sound *)
199 gNoSound := False;
200 gSoundLevel := 75;
201 gMusicLevel := 65;
202 gMaxSimSounds := 8;
203 gMuteWhenInactive := False;
204 gAnnouncer := ANNOUNCE_MEPLUS;
205 gSoundEffectsDF := True;
206 gUseChatSounds := True;
207 gsSDLSampleRate := 44100;
208 gsSDLBufferSize := 2048;
210 g_Sound_SetupAllVolumes(gSoundLevel, gMusicLevel);
212 with gPlayer1Settings do
213 begin
214 Name := GenPlayerName(1);
215 Model := STD_PLAYER_MODEL;
216 Color.R := PLAYER1_DEF_COLOR.R;
217 Color.G := PLAYER1_DEF_COLOR.G;
218 Color.B := PLAYER1_DEF_COLOR.B;
219 Team := TEAM_RED;
220 end;
222 with gPlayer2Settings do
223 begin
224 Name := GenPlayerName(2);
225 Model := STD_PLAYER_MODEL;
226 Color.R := PLAYER2_DEF_COLOR.R;
227 Color.G := PLAYER2_DEF_COLOR.G;
228 Color.B := PLAYER2_DEF_COLOR.B;
229 Team := TEAM_BLUE;
230 end;
232 (* section Joysticks *)
233 for i := 0 to e_MaxJoys - 1 do
234 begin
235 e_JoystickDeadzones[i] := 8192
236 end;
238 (* section Game *)
239 g_GFX_SetMax(2000);
240 g_Shells_SetMax(300);
241 g_Gibs_SetMax(150);
242 g_Corpses_SetMax(20);
243 gGibsCount := 32;
244 gBloodCount := 4;
245 gAdvBlood := True;
246 gAdvCorpses := True;
247 gAdvGibs := True;
248 gFlash := 1;
249 gDrawBackGround := True;
250 gShowMessages := True;
251 gRevertPlayers := False;
252 gChatBubble := 4;
253 wadoptDebug := False;
254 wadoptFast := False;
255 e_FastScreenshots := True;
256 gDefaultMegawadStart := DF_Default_Megawad_Start;
257 gBerserkAutoswitch := True;
258 g_dbg_scale := 1.0;
259 gSaveStats := False;
261 gAskLanguage := True;
262 gLanguage := LANGUAGE_ENGLISH;
264 gsMap := '';
265 gsGameMode := _lc[I_MENU_GAME_TYPE_DM];
266 gsTimeLimit := 0;
267 gsGoalLimit := 0;
268 gsMaxLives := 0;
269 gsPlayers := 1;
270 gsSpawnInvul := 0;
271 gsItemRespawnTime := 60;
272 gsGameFlags := GAME_OPTION_ALLOWEXIT or GAME_OPTION_DMKEYS or
273 GAME_OPTION_BOTVSPLAYER or GAME_OPTION_BOTVSMONSTER or
274 GAME_OPTION_TEAMHITTRACE or GAME_OPTION_TEAMHITPROJECTILE;
275 gsPlayers := 1;
277 (* section MasterServer *)
278 NetMasterList := 'mpms.doom2d.org:25665, deadsoftware.ru:25665';
279 g_Net_Slist_Set(NetMasterList);
281 (* section Server *)
282 NetServerName := 'Unnamed Server';
283 NetPassword := '';
284 NetPort := 25666;
285 NetMaxClients := 16;
286 NetAllowRCON := False;
287 NetRCONPassword := 'default';
288 NetUseMaster := True;
289 NetUpdateRate := 0;
290 NetRelupdRate := 18;
291 NetMasterRate := 60000;
292 NetForwardPorts := False;
294 (* section Client *)
295 NetInterpLevel := 2;
296 NetForcePlayerUpdate := False;
297 NetPredictSelf := True;
298 NetClientIP := '127.0.0.1';
299 NetClientPort := NetPort;
300 end;
302 procedure g_Options_ApplyGameSettings;
303 begin
304 with gGameSettings do
305 begin
306 GameMode := g_Game_TextToMode(gsGameMode);
307 if GameMode = GM_NONE then
308 GameMode := GM_DM;
309 if GameMode = GM_SINGLE then
310 GameMode := GM_COOP;
311 TimeLimit := gsTimeLimit;
312 GoalLimit := gsGoalLimit;
313 MaxLives := gsMaxLives;
314 SpawnInvul := gsSpawnInvul;
315 ItemRespawnTime := gsItemRespawnTime;
316 WarmupTime := gsWarmupTime;
317 Options := gsGameFlags;
318 end;
319 end;
321 initialization
322 Randomize;
323 machine := Random(10000);
325 (* Video *)
326 conRegVar('r_width', @gRC_Width, '', '');
327 conRegVar('r_height', @gRC_Height, '', '');
328 conRegVar('r_fullscreen', @gRC_FullScreen, '', '');
329 conRegVar('r_maximized', @gRC_Maximized, '', '');
330 conRegVar('r_bpp', @gBPP, '', '');
331 conRegVar('r_vsync', @gVSync, '', '');
332 conRegVar('r_texfilter', @gTextureFilter, '', '');
333 conRegVar('r_npot', @glNPOTOverride, '', '');
334 conRegVar('r_interp', @gLerpActors, '', 'interpolate actors');
336 (* Sound *)
337 conRegVar('s_nosound', @gNoSound, '', '');
338 conRegVar('s_soundvolume', @gSoundLevel, '', '');
339 conRegVar('s_musicvolume', @gMusicLevel, '', '');
340 conRegVar('s_maxsim', @gMaxSimSounds, '', ''); // e_sound_fmod/sdl?
341 conRegVar('s_muteinactive', @gMuteWhenInactive, '', '');
342 conRegVar('s_announcer', @gAnnouncer, '', '');
343 conRegVar('s_sfx', @gSoundEffectsDF, '', '');
344 conRegVar('s_chatsounds', @gUseChatSounds, '', '');
345 {$IFDEF USE_SDLMIXER}
346 conRegVar('sdl_mixer_samplerate', @gsSDLSampleRate, '', '');
347 conRegVar('sdl_mixer_buffersize', @gsSDLBufferSize, '', '');
348 {$ENDIF}
350 (* Game *)
351 conRegVar('g_gibs_count', @gGibsCount, '', '');
352 conRegVar('g_blood_count', @gBloodCount, '', '');
353 conRegVar('g_adv_blood', @gAdvBlood, '', '');
354 conRegVar('g_adv_corpses', @gAdvCorpses, '', '');
355 conRegVar('g_adv_gibs', @gAdvGibs, '', '');
356 conRegVar('r_flash', @gFlash, '', '');
357 conRegVar('r_background', @gDrawBackGround, '', '');
358 conRegVar('g_show_messages', @gShowMessages, '', '');
359 conRegVar('r_revert_players', @gRevertPlayers, '', '');
360 conRegVar('r_chat_bubble', @gChatBubble, '', '');
361 conRegVar('sfs_debug', @wadoptDebug, '', '');
362 conRegVar('sfs_fastmode', @wadoptFast, '', '');
363 conRegVar('g_fast_screenshots', @e_FastScreenshots, '', '');
364 conRegVar('g_default_megawad', @gDefaultMegawadStart, '', '');
365 conRegVar('g_save_stats', @gSaveStats, '', '');
366 conRegVar('g_screenshot_stats', @gScreenshotStats, '', '');
367 conRegVar('g_lastmap', @gsMap, '', '');
368 end.