X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_console.pas;h=cde25fedb4c279a6a55cb17da39a41b5019aa45c;hb=3d9a4caf6b9c79640ea51cd8b5cdf602c5ed19a2;hp=288eb547acfd7194a764d4e424e2917540bad514;hpb=03988912c6a1d85d8ba35362e45690c414f13d0b;p=d2df-sdl.git diff --git a/src/game/g_console.pas b/src/game/g_console.pas index 288eb54..cde25fe 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -85,7 +85,7 @@ var implementation uses - g_textures, g_main, e_graphics, e_input, g_game, + g_textures, g_main, e_graphics, e_input, g_game, g_gfx, g_player, g_items, SysUtils, g_basic, g_options, Math, g_touch, e_res, g_menu, g_gui, g_language, g_net, g_netmsg, e_log, conbuf; @@ -860,6 +860,14 @@ begin AddCommand('segfault', segfault, 'make segfault'); + AddCommand('r_reset', g_Options_Commands); + AddCommand('g_language', g_Options_Commands); + AddCommand('g_max_particles', g_Options_Commands); + AddCommand('g_max_shells', g_Options_Commands); + AddCommand('g_max_gibs', g_Options_Commands); + AddCommand('g_max_corpses', g_Options_Commands); + AddCommand('g_item_respawn_time', g_Options_Commands); + AddCommand('bind', BindCommands); AddCommand('bindlist', BindCommands); AddCommand('unbind', BindCommands); @@ -902,6 +910,8 @@ begin AddCommand('p2_name', GameCVars); AddCommand('p1_color', GameCVars); AddCommand('p2_color', GameCVars); + AddCommand('p1_model', GameCVars); + AddCommand('p2_model', GameCVars); AddCommand('r_showscore', GameCVars); AddCommand('r_showlives', GameCVars); AddCommand('r_showstat', GameCVars); @@ -912,6 +922,7 @@ begin AddCommand('g_friendlyfire', GameCVars); AddCommand('g_weaponstay', GameCVars); AddCommand('g_allow_exit', GameCVars); + AddCommand('g_dm_keys', GameCVars); AddCommand('g_allow_monsters', GameCVars); AddCommand('g_bot_vsmonsters', GameCVars); AddCommand('g_bot_vsplayers', GameCVars); @@ -919,6 +930,7 @@ begin AddCommand('g_timelimit', GameCVars); AddCommand('g_maxlives', GameCVars); AddCommand('g_warmuptime', GameCVars); + AddCommand('g_spawn_invul', GameCVars); AddCommand('net_interp', GameCVars); AddCommand('net_forceplayerupdate', GameCVars); AddCommand('net_predictself', GameCVars); @@ -962,6 +974,7 @@ begin AddCommand('reconnect', GameCommands); AddCommand('say', GameCommands); AddCommand('tell', GameCommands); + AddCommand('centerprint', GameCommands); AddCommand('overtime', GameCommands); AddCommand('rcon_password', GameCommands); AddCommand('rcon', GameCommands); @@ -1008,6 +1021,7 @@ begin WhitelistCommand('restart'); WhitelistCommand('kick'); WhitelistCommand('ban'); + WhitelistCommand('centerprint'); WhitelistCommand('addbot'); WhitelistCommand('bot_add'); @@ -1022,6 +1036,9 @@ begin WhitelistCommand('g_allow_monsters'); WhitelistCommand('g_scorelimit'); WhitelistCommand('g_timelimit'); + WhitelistCommand('g_dm_keys'); + WhitelistCommand('g_spawn_invul'); + WhitelistCommand('g_warmuptime'); g_Console_ResetBinds; g_Console_ReadConfig(configScript); @@ -1931,6 +1948,25 @@ begin Write(f, ' ', QuoteStr(GetCommandString(gInputBinds[i].up))); WriteLn(f, ''); end; + if gAskLanguage then + WriteLn(f, 'g_language ask') + else + WriteLn(f, 'g_language ', gLanguage); + WriteLn(f, 'g_max_particles ', g_GFX_GetMax()); + WriteLn(f, 'g_max_shells ', g_Shells_GetMax()); + WriteLn(f, 'g_max_gibs ', g_Gibs_GetMax()); + WriteLn(f, 'g_max_corpses ', g_Corpses_GetMax()); + WriteLn(f, 'g_item_respawn_time ', ITEM_RESPAWNTIME div 36); + with gPlayer1Settings do + begin + WriteLn(f, 'p1_name ', QuoteStr(Name)); + WriteLn(f, 'p1_color ', Color.R, ' ', Color.G, ' ', Color.B); + end; + with gPlayer2Settings do + begin + WriteLn(f, 'p2_name ', QuoteStr(Name)); + WriteLn(f, 'p2_color ', Color.R, ' ', Color.G, ' ', Color.B); + end; for i := 0 to High(commands) do begin if not commands[i].cheat then @@ -1957,6 +1993,7 @@ begin end end end; + WriteLn(f, 'r_reset'); CloseFile(f) end; @@ -1970,12 +2007,13 @@ begin end end; -initialization +procedure Init; + var i: Integer; +begin conRegVar('chat_at_top', @ChatTop, 'draw chat at top border', 'draw chat at top border'); conRegVar('console_height', @ConsoleHeight, 0.0, 1.0, 'set console size', 'set console size'); conRegVar('console_trans', @ConsoleTrans, 0.0, 1.0, 'set console transparency', 'set console transparency'); conRegVar('console_step', @ConsoleStep, 0.0, 1.0, 'set console animation speed', 'set console animation speed'); - conRegVar('d_eres', @debug_e_res, '', ''); {$IFDEF ANDROID} ChatTop := True; ConsoleHeight := 0.35; @@ -1985,4 +2023,11 @@ initialization {$ENDIF} ConsoleTrans := 0.1; ConsoleStep := 0.07; + conRegVar('d_eres', @debug_e_res, '', ''); + for i := 1 to e_MaxJoys do + conRegVar('joy' + IntToStr(i) + '_deadzone', @e_JoystickDeadzones[i - 1], '', '') +end; + +initialization + Init end.