summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/gokz-hud/options.sp
diff options
context:
space:
mode:
authoraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
committeraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
commit5e2eb7d67ae933b7566f1944d0bb7744da03d586 (patch)
tree054acff1113270a9cd07933df760f3768c1b6853 /sourcemod/scripting/gokz-hud/options.sp
parent341db13a008dc12bb22ceb50452d93d01476308c (diff)
move source stuff to its own folder
Diffstat (limited to 'sourcemod/scripting/gokz-hud/options.sp')
-rw-r--r--sourcemod/scripting/gokz-hud/options.sp190
1 files changed, 0 insertions, 190 deletions
diff --git a/sourcemod/scripting/gokz-hud/options.sp b/sourcemod/scripting/gokz-hud/options.sp
deleted file mode 100644
index 84bbf2b..0000000
--- a/sourcemod/scripting/gokz-hud/options.sp
+++ /dev/null
@@ -1,190 +0,0 @@
-/*
- Options for controlling appearance and behaviour of HUD and UI.
-*/
-
-
-
-// =====[ EVENTS ]=====
-
-void OnOptionsMenuReady_Options()
-{
- RegisterOptions();
-}
-
-void OnOptionChanged_Options(int client, HUDOption option, any newValue)
-{
- PrintOptionChangeMessage(client, option, newValue);
-}
-
-
-
-// =====[ PRIVATE ]=====
-
-static void RegisterOptions()
-{
- for (HUDOption option; option < HUDOPTION_COUNT; option++)
- {
- GOKZ_RegisterOption(gC_HUDOptionNames[option], gC_HUDOptionDescriptions[option],
- OptionType_Int, gI_HUDOptionDefaults[option], 0, gI_HUDOptionCounts[option] - 1);
- }
-}
-
-static void PrintOptionChangeMessage(int client, HUDOption option, any newValue)
-{
- // NOTE: Not all options have a message for when they are changed.
- switch (option)
- {
- case HUDOption_TPMenu:
- {
- switch (newValue)
- {
- case TPMenu_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Teleport Menu - Disable");
- }
- case TPMenu_Simple:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Teleport Menu - Enable (Simple)");
- }
- case TPMenu_Advanced:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Teleport Menu - Enable (Advanced)");
- }
- }
- }
- case HUDOption_InfoPanel:
- {
- switch (newValue)
- {
- case InfoPanel_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Info Panel - Disable");
- }
- case InfoPanel_Enabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Info Panel - Enable");
- }
- }
- }
- case HUDOption_TimerStyle:
- {
- switch (newValue)
- {
- case TimerStyle_Standard:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Timer Style - Standard");
- }
- case TimerStyle_Precise:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Timer Style - Precise");
- }
- }
- }
- case HUDOption_TimerType:
- {
- switch (newValue)
- {
- case TimerType_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Timer Type - Disabled");
- }
- case TimerType_Enabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Timer Type - Enabled");
- }
- }
- }
- case HUDOption_ShowWeapon:
- {
- switch (newValue)
- {
- case ShowWeapon_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Show Weapon - Disable");
- }
- case ShowWeapon_Enabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Show Weapon - Enable");
- }
- }
- }
- case HUDOption_ShowControls:
- {
- switch (newValue)
- {
- case ReplayControls_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Show Controls - Disable");
- }
- case ReplayControls_Enabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Show Controls - Enable");
- }
- }
- }
- case HUDOption_DeadstrafeColor:
- {
- switch (newValue)
- {
- case DeadstrafeColor_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Dead Strafe - Disable");
- }
- case DeadstrafeColor_Enabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Dead Strafe - Enable");
- }
- }
- }
- case HUDOption_ShowSpectators:
- {
- switch (newValue)
- {
- case ShowSpecs_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Show Spectators - Disable");
- }
- case ShowSpecs_Number:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Show Spectators - Number");
- }
- case ShowSpecs_Full:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Show Spectators - Full");
- }
- }
- }
- case HUDOption_SpecListPosition:
- {
- switch (newValue)
- {
- case SpecListPosition_InfoPanel:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Spectator List Position - Info Panel");
- }
- case SpecListPosition_TPMenu:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Spectator List Position - TP Menu");
- }
- }
- }
- case HUDOption_DynamicMenu:
- {
- switch (newValue)
- {
- case DynamicMenu_Legacy:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Dynamic Menu - Legacy");
- }
- case DynamicMenu_Disabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Dynamic Menu - Disable");
- }
- case DynamicMenu_Enabled:
- {
- GOKZ_PrintToChat(client, true, "%t", "Option - Dynamic Menu - Enable");
- }
- }
- }
- }
-} \ No newline at end of file