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}
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';
35 gWinSizeX
, gWinSizeY
: Integer;
36 gWinMaximized
: Boolean;
38 glLegacyNPOT
: Boolean;
39 glRenderToFBO
: Boolean = True;
40 gTextureFilter
: Boolean;
41 gLerpActors
: Boolean = True;
42 gFrameTime
: Integer = 5;
43 gMaxFPS
: Integer = 200;
47 gMaxSimSounds
: Integer;
48 gMuteWhenInactive
: Boolean;
55 gDrawBackGround
: Boolean;
56 gShowMessages
: Boolean;
57 gRevertPlayers
: Boolean;
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 *)
75 gsGameFlags
: LongWord;
76 gsSpawnInvul
: Integer = 0;
77 gsItemRespawnTime
: Word = 60;
78 gsWarmupTime
: Word = 30;
81 e_NoGraphics
: Boolean = True;
83 e_NoGraphics
: Boolean = False;
85 e_FastScreenshots
: Boolean = true; // it's REALLY SLOW with `false`
86 g_dbg_scale
: Single = 1.0;
87 r_pixel_scale
: Single = 1.0;
89 gwin_has_stencil
: Boolean = false;
90 gwin_k8_enable_light_experiments
: Boolean = false;
91 g_dbg_aimline_on
: Boolean = false;
92 g_dbg_input
: Boolean = False;
94 {--- Read-only dirs ---}
101 AllMapDirs
: SSArray
; // Maps + Megawads
103 {--- Read-Write dirs ---}
109 ScreenshotDirs
: SSArray
;
111 MapDownloadDirs
: SSArray
;
112 WadDownloadDirs
: SSArray
;
114 GameWADName
: string = 'GAME';
122 e_log
, e_input
, g_console
, g_sound
, g_gfx
, g_player
, Math
,
123 g_map
, g_net
, g_netmaster
, SysUtils
, CONFIG
, g_game
,
124 g_items
, wadreader
, g_touch
, envvars
, g_system
;
129 function GenPlayerName (n
: Integer): String;
132 Result
:= GetUserName
;
134 Result
:= 'Player' + IntToStr(machine
MOD 10000);
136 Result
:= Copy(Result
, 1, 12) + ' '
138 Result
:= Copy(Result
, 1, 10) + ' ' + IntToStr(n
)
142 procedure g_Options_SetDefaultVideo
;
143 var display
: TSDL_DisplayMode
;
145 var target
, closest
: TSDL_DisplayMode
; percentage
: Integer;
148 (* Display 0 = Primary display *)
150 gScreenHeight
:= 480;
153 //gBPP := SDL_BITSPERPIXEL(dispaly.format);
156 gFullScreen
:= True; (* rotation not allowed? *)
158 gFullScreen
:= False;
160 if SDL_GetDesktopDisplayMode(0, @display
) = 0 then
163 gWinSizeX
:= display
.w
;
164 gWinSizeY
:= display
.h
;
166 (* Window must be smaller than display *)
167 closest
.w
:= display
.w
;
168 closest
.h
:= display
.h
;
170 while (display
.w
- closest
.w
< 48) or (display
.h
- closest
.h
< 48) do
172 if percentage
< 25 then
174 closest
.w
:= display
.w
* 75 div 100;
175 closest
.h
:= display
.h
* 75 div 100;
178 target
.w
:= display
.w
* percentage
div 100;
179 target
.h
:= display
.h
* percentage
div 100;
180 target
.format
:= 0; (* didn't care *)
181 target
.refresh_rate
:= 0; (* didn't care *)
182 target
.driverdata
:= nil; (* init *)
183 SDL_GetClosestDisplayMode(0, @target
, @closest
);
186 gWinSizeX
:= closest
.w
;
187 gWinSizeY
:= closest
.h
;
188 //gBPP := SDL_BITSPERPIXEL(closest.format); (* Resolution list didn't work for some reason *)
193 e_LogWritefln('SDL: Failed to get desktop display mode: %s', [SDL_GetError
])
195 (* Must be positioned on primary display *)
196 gWinMaximized
:= False;
198 gTextureFilter
:= True;
199 glLegacyNPOT
:= False;
200 gRC_Width
:= gWinSizeX
;
201 gRC_Height
:= gWinSizeY
;
202 gRC_FullScreen
:= gFullScreen
;
203 gRC_Maximized
:= gWinMaximized
;
204 e_LogWriteLn('g_Options_SetDefaultVideo: w = ' + IntToStr(gWinSizeX
) + ' h = ' + IntToStr(gWinSizeY
));
205 g_Console_ResetBinds
;
208 procedure g_Options_SetDefaultVideo
;
213 gFullScreen
:= False;
214 gWinMaximized
:= False;
216 gTextureFilter
:= True;
217 glLegacyNPOT
:= False;
218 gScreenWidth
:= gWinSizeX
;
219 gScreenHeight
:= gWinSizeY
;
220 gRC_Width
:= gWinSizeX
;
221 gRC_Height
:= gWinSizeY
;
222 gRC_FullScreen
:= gFullScreen
;
223 gRC_Maximized
:= gWinMaximized
;
224 e_LogWriteLn('g_Options_SetDefaultVideo: w = ' + IntToStr(gWinSizeX
) + ' h = ' + IntToStr(gWinSizeY
));
225 g_Console_ResetBinds
;
229 procedure g_Options_SetDefault();
238 gMuteWhenInactive
:= False;
239 gAnnouncer
:= ANNOUNCE_MEPLUS
;
240 gSoundEffectsDF
:= True;
241 gUseChatSounds
:= True;
242 gsSDLSampleRate
:= 44100;
243 gsSDLBufferSize
:= 2048;
245 g_Sound_SetupAllVolumes(gSoundLevel
, gMusicLevel
);
247 with gPlayer1Settings
do
249 Name
:= GenPlayerName(1);
250 Model
:= STD_PLAYER_MODEL
;
251 Color
.R
:= PLAYER1_DEF_COLOR
.R
;
252 Color
.G
:= PLAYER1_DEF_COLOR
.G
;
253 Color
.B
:= PLAYER1_DEF_COLOR
.B
;
257 with gPlayer2Settings
do
259 Name
:= GenPlayerName(2);
260 Model
:= STD_PLAYER_MODEL
;
261 Color
.R
:= PLAYER2_DEF_COLOR
.R
;
262 Color
.G
:= PLAYER2_DEF_COLOR
.G
;
263 Color
.B
:= PLAYER2_DEF_COLOR
.B
;
267 (* section Joysticks *)
268 for i
:= 0 to e_MaxJoys
- 1 do
270 e_JoystickDeadzones
[i
] := 8192
275 g_Shells_SetMax(300);
277 g_Corpses_SetMax(20);
284 gDrawBackGround
:= True;
285 gShowMessages
:= True;
286 gRevertPlayers
:= False;
288 wadoptDebug
:= False;
290 e_FastScreenshots
:= True;
291 gDefaultMegawadStart
:= DF_Default_Megawad_Start
;
292 gBerserkAutoswitch
:= True;
296 gAskLanguage
:= True;
297 gLanguage
:= LANGUAGE_ENGLISH
;
300 gsGameMode
:= _lc
[I_MENU_GAME_TYPE_DM
];
306 gsItemRespawnTime
:= 60;
307 gsGameFlags
:= GAME_OPTION_ALLOWEXIT
or GAME_OPTION_DMKEYS
or
308 GAME_OPTION_BOTVSPLAYER
or GAME_OPTION_BOTVSMONSTER
or
309 GAME_OPTION_TEAMHITTRACE
or GAME_OPTION_TEAMHITPROJECTILE
;
312 (* section MasterServer *)
313 NetMasterList
:= 'mpms.doom2d.org:25665, deadsoftware.ru:25665';
314 g_Net_Slist_Set(NetMasterList
);
317 NetServerName
:= 'Unnamed Server';
321 NetAllowRCON
:= False;
322 NetRCONPassword
:= 'default';
323 NetUseMaster
:= True;
326 NetMasterRate
:= 60000;
327 NetForwardPorts
:= False;
331 NetForcePlayerUpdate
:= False;
332 NetPredictSelf
:= True;
333 NetClientIP
:= '127.0.0.1';
334 NetClientPort
:= NetPort
;
337 procedure g_Options_ApplyGameSettings
;
339 with gGameSettings
do
341 GameMode
:= g_Game_TextToMode(gsGameMode
);
342 if GameMode
= GM_NONE
then
344 if GameMode
= GM_SINGLE
then
346 TimeLimit
:= gsTimeLimit
;
347 GoalLimit
:= gsGoalLimit
;
348 MaxLives
:= gsMaxLives
;
349 SpawnInvul
:= gsSpawnInvul
;
350 ItemRespawnTime
:= gsItemRespawnTime
;
351 WarmupTime
:= gsWarmupTime
;
352 Options
:= gsGameFlags
;
358 machine
:= Random(10000);
361 conRegVar('r_width', @gRC_Width
, '', '');
362 conRegVar('r_height', @gRC_Height
, '', '');
363 conRegVar('r_fullscreen', @gRC_FullScreen
, '', '');
364 conRegVar('r_maximized', @gRC_Maximized
, '', '');
365 conRegVar('r_bpp', @gBPP
, '', '');
366 conRegVar('r_vsync', @gVSync
, '', '');
367 conRegVar('r_texfilter', @gTextureFilter
, '', '');
368 conRegVar('r_npot', @glNPOTOverride
, '', '');
369 conRegVar('r_interp', @gLerpActors
, '', 'interpolate actors');
370 conRegVar('r_scale', @g_dbg_scale
, 0.01, 100.0, 'render scale', '', false);
371 conRegVar('r_resolution_scale', @r_pixel_scale
, 0.01, 100.0, 'upscale factor', '', false);
374 conRegVar('s_nosound', @gNoSound
, '', '');
375 conRegVar('s_soundvolume', @gSoundLevel
, '', '');
376 conRegVar('s_musicvolume', @gMusicLevel
, '', '');
377 conRegVar('s_maxsim', @gMaxSimSounds
, '', ''); // e_sound_fmod/sdl?
378 conRegVar('s_muteinactive', @gMuteWhenInactive
, '', '');
379 conRegVar('s_announcer', @gAnnouncer
, '', '');
380 conRegVar('s_sfx', @gSoundEffectsDF
, '', '');
381 conRegVar('s_chatsounds', @gUseChatSounds
, '', '');
382 {$IFDEF USE_SDLMIXER}
383 conRegVar('sdl_mixer_samplerate', @gsSDLSampleRate
, '', '');
384 conRegVar('sdl_mixer_buffersize', @gsSDLBufferSize
, '', '');
388 conRegVar('g_gibs_count', @gGibsCount
, '', '');
389 conRegVar('g_blood_count', @gBloodCount
, '', '');
390 conRegVar('g_adv_blood', @gAdvBlood
, '', '');
391 conRegVar('g_adv_corpses', @gAdvCorpses
, '', '');
392 conRegVar('g_adv_gibs', @gAdvGibs
, '', '');
393 conRegVar('r_flash', @gFlash
, '', '');
394 conRegVar('r_background', @gDrawBackGround
, '', '');
395 conRegVar('g_show_messages', @gShowMessages
, '', '');
396 conRegVar('r_revert_players', @gRevertPlayers
, '', '');
397 conRegVar('r_chat_bubble', @gChatBubble
, '', '');
398 conRegVar('sfs_debug', @wadoptDebug
, '', '');
399 conRegVar('sfs_fastmode', @wadoptFast
, '', '');
400 conRegVar('g_fast_screenshots', @e_FastScreenshots
, '', '');
401 conRegVar('g_default_megawad', @gDefaultMegawadStart
, '', '');
402 conRegVar('g_save_stats', @gSaveStats
, '', '');
403 conRegVar('g_screenshot_stats', @gScreenshotStats
, '', '');
404 conRegVar('g_lastmap', @gsMap
, '', '');
406 conRegVar('d_input', @g_dbg_input
, '', '')