diff options
| author | aura <nw@moneybot.cc> | 2026-02-17 23:42:09 +0100 |
|---|---|---|
| committer | aura <nw@moneybot.cc> | 2026-02-17 23:42:09 +0100 |
| commit | 5e2eb7d67ae933b7566f1944d0bb7744da03d586 (patch) | |
| tree | 054acff1113270a9cd07933df760f3768c1b6853 /sourcemod/scripting/gokz-hud/spectate_text.sp | |
| parent | 341db13a008dc12bb22ceb50452d93d01476308c (diff) | |
move source stuff to its own folder
Diffstat (limited to 'sourcemod/scripting/gokz-hud/spectate_text.sp')
| -rw-r--r-- | sourcemod/scripting/gokz-hud/spectate_text.sp | 119 |
1 files changed, 0 insertions, 119 deletions
diff --git a/sourcemod/scripting/gokz-hud/spectate_text.sp b/sourcemod/scripting/gokz-hud/spectate_text.sp deleted file mode 100644 index 9700c38..0000000 --- a/sourcemod/scripting/gokz-hud/spectate_text.sp +++ /dev/null @@ -1,119 +0,0 @@ -/* - Responsible for spectator list on the HUD. -*/ - -#define SPECATATOR_LIST_MAX_COUNT 5 - -// =====[ PUBLIC ]===== - -char[] FormatSpectatorTextForMenu(KZPlayer player, HUDInfo info) -{ - int specCount; - char spectatorTextString[224]; - if (player.GetHUDOption(HUDOption_ShowSpectators) >= ShowSpecs_Number) - { - for (int i = 1; i <= MaxClients; i++) - { - if (gI_ObserverTarget[i] == info.ID) - { - specCount++; - if (player.GetHUDOption(HUDOption_ShowSpectators) == ShowSpecs_Full) - { - char buffer[64]; - if (specCount < SPECATATOR_LIST_MAX_COUNT) - { - GetClientName(i, buffer, sizeof(buffer)); - Format(spectatorTextString, sizeof(spectatorTextString), "%s\n%s", spectatorTextString, buffer); - } - else if (specCount == SPECATATOR_LIST_MAX_COUNT) - { - StrCat(spectatorTextString, sizeof(spectatorTextString), "\n..."); - } - } - } - } - if (specCount > 0) - { - if (player.GetHUDOption(HUDOption_ShowSpectators) == ShowSpecs_Full) - { - Format(spectatorTextString, sizeof(spectatorTextString), "%t\n ", "Spectator List - Menu (Full)", specCount, spectatorTextString); - } - else - { - Format(spectatorTextString, sizeof(spectatorTextString), "%t\n ", "Spectator List - Menu (Number)", specCount); - } - } - else - { - FormatEx(spectatorTextString, sizeof(spectatorTextString), ""); - } - } - return spectatorTextString; -} - -char[] FormatSpectatorTextForInfoPanel(KZPlayer player, KZPlayer targetPlayer) -{ - int specCount; - char spectatorTextString[160]; - if (player.GetHUDOption(HUDOption_ShowSpectators) >= ShowSpecs_Number) - { - for (int i = 1; i <= MaxClients; i++) - { - if (gI_ObserverTarget[i] == targetPlayer.ID) - { - specCount++; - if (player.GetHUDOption(HUDOption_ShowSpectators) == ShowSpecs_Full) - { - char buffer[64]; - if (specCount < SPECATATOR_LIST_MAX_COUNT) - { - GetClientName(i, buffer, sizeof(buffer)); - if (specCount == 1) - { - Format(spectatorTextString, sizeof(spectatorTextString), "%s", buffer); - } - else - { - Format(spectatorTextString, sizeof(spectatorTextString), "%s, %s", spectatorTextString, buffer); - } - } - else if (specCount == SPECATATOR_LIST_MAX_COUNT) - { - Format(spectatorTextString, sizeof(spectatorTextString), " ..."); - } - } - } - } - if (specCount > 0) - { - if (player.GetHUDOption(HUDOption_ShowSpectators) == ShowSpecs_Full) - { - Format(spectatorTextString, sizeof(spectatorTextString), "%t\n", "Spectator List - Info Panel (Full)", specCount, spectatorTextString); - } - else - { - Format(spectatorTextString, sizeof(spectatorTextString), "%t\n", "Spectator List - Info Panel (Number)", specCount); - } - } - else - { - FormatEx(spectatorTextString, sizeof(spectatorTextString), ""); - } - } - return spectatorTextString; -} - -void UpdateSpecList() -{ - for (int client = 1; client <= MaxClients; client++) - { - if (IsValidClient(client) && !IsFakeClient(client)) - { - gI_ObserverTarget[client] = GetObserverTarget(client); - } - else - { - gI_ObserverTarget[client] = -1; - } - } -}
\ No newline at end of file |
