Backed out changeset: 19331eae67ad

This commit is contained in:
Matt Woodrow 2008-10-08 20:59:56 +13:00
parent 29e57e77f7
commit db5a0be4ca
4 changed files with 67 additions and 196 deletions

View File

@ -73,7 +73,7 @@ native bool:EndOfMapVoteEnabled();
* Called when mapchooser removes a nomination from its list. * Called when mapchooser removes a nomination from its list.
* Nominations cleared on map start will not trigger this forward * Nominations cleared on map start will not trigger this forward
*/ */
forward OnNominationRemoved(const String:map[], owner); forward OnNominationRemoved(String:map[], owner);
public SharedPlugin:__pl_mapchooser = public SharedPlugin:__pl_mapchooser =

View File

@ -884,8 +884,7 @@ NominateResult:InternalNominateMap(String:map[], bool:force, owner)
new index; new index;
/* Look to replace an existing nomination by this client - Nominations made with owner = 0 aren't replaced */ if ((index = FindValueInArray(g_NominateOwners, owner)) != -1)
if (owner && ((index = FindValueInArray(g_NominateOwners, owner)) != -1))
{ {
new String:oldmap[33]; new String:oldmap[33];
GetArrayString(g_NominateList, index, oldmap, sizeof(oldmap)); GetArrayString(g_NominateList, index, oldmap, sizeof(oldmap));
@ -894,6 +893,7 @@ NominateResult:InternalNominateMap(String:map[], bool:force, owner)
Call_PushCell(owner); Call_PushCell(owner);
Call_Finish(); Call_Finish();
SetArrayString(g_NominateList, index, map); SetArrayString(g_NominateList, index, map);
return Nominate_Replaced; return Nominate_Replaced;
} }

View File

@ -52,14 +52,6 @@ new Handle:g_MapList = INVALID_HANDLE;
new Handle:g_MapMenu = INVALID_HANDLE; new Handle:g_MapMenu = INVALID_HANDLE;
new g_mapFileSerial = -1; new g_mapFileSerial = -1;
#define MAPSTATUS_ENABLED (1<<0)
#define MAPSTATUS_DISABLED (1<<1)
#define MAPSTATUS_EXCLUDE_CURRENT (1<<2)
#define MAPSTATUS_EXCLUDE_PREVIOUS (1<<3)
#define MAPSTATUS_EXCLUDE_NOMINATED (1<<4)
new Handle:g_mapTrie;
public OnPluginStart() public OnPluginStart()
{ {
LoadTranslations("common.phrases"); LoadTranslations("common.phrases");
@ -77,8 +69,6 @@ public OnPluginStart()
RegConsoleCmd("sm_nominate", Command_Nominate); RegConsoleCmd("sm_nominate", Command_Nominate);
RegAdminCmd("sm_nominate_addmap", Command_Addmap, ADMFLAG_CHANGEMAP, "sm_nominate_addmap <mapname> - Forces a map to be on the next mapvote."); RegAdminCmd("sm_nominate_addmap", Command_Addmap, ADMFLAG_CHANGEMAP, "sm_nominate_addmap <mapname> - Forces a map to be on the next mapvote.");
g_mapTrie = CreateTrie();
} }
public OnConfigsExecuted() public OnConfigsExecuted()
@ -98,23 +88,9 @@ public OnConfigsExecuted()
BuildMapMenu(); BuildMapMenu();
} }
public OnNominationRemoved(/* const */String:map[], owner) public OnNominationRemoved(String:map[], owner)
{ {
new status; AddMenuItem(g_MapMenu, map, map);
/* Is the map in our list? */
if (!GetTrieValue(g_mapTrie, map, status))
{
return;
}
/* Was the map disabled due to being nominated */
if ((status & MAPSTATUS_EXCLUDE_NOMINATED) != MAPSTATUS_EXCLUDE_NOMINATED)
{
return;
}
SetTrieValue(g_mapTrie, map, MAPSTATUS_ENABLED);
} }
public Action:Command_Addmap(client, args) public Action:Command_Addmap(client, args)
@ -128,9 +104,7 @@ public Action:Command_Addmap(client, args)
decl String:mapname[64]; decl String:mapname[64];
GetCmdArg(1, mapname, sizeof(mapname)); GetCmdArg(1, mapname, sizeof(mapname));
if (FindStringInArray(g_MapList, mapname) == -1)
new status;
if (!GetTrieValue(g_mapTrie, mapname, status))
{ {
ReplyToCommand(client, "%t", "Map was not found", mapname); ReplyToCommand(client, "%t", "Map was not found", mapname);
return Plugin_Handled; return Plugin_Handled;
@ -146,9 +120,16 @@ public Action:Command_Addmap(client, args)
return Plugin_Handled; return Plugin_Handled;
} }
decl String:item[64];
SetTrieValue(g_mapTrie, mapname, MAPSTATUS_DISABLED|MAPSTATUS_EXCLUDE_NOMINATED); for (new i = 0; i < GetMenuItemCount(g_MapMenu); i++)
{
GetMenuItem(g_MapMenu, i, item, sizeof(item));
if (strcmp(item, mapname) == 0)
{
RemoveMenuItem(g_MapMenu, i);
break;
}
}
ReplyToCommand(client, "%t", "Map Inserted", mapname); ReplyToCommand(client, "%t", "Map Inserted", mapname);
LogAction(client, -1, "\"%L\" inserted map \"%s\".", client, mapname); LogAction(client, -1, "\"%L\" inserted map \"%s\".", client, mapname);
@ -204,58 +185,41 @@ public Action:Command_Nominate(client, args)
decl String:mapname[64]; decl String:mapname[64];
GetCmdArg(1, mapname, sizeof(mapname)); GetCmdArg(1, mapname, sizeof(mapname));
new status; decl String:item[64];
if (!GetTrieValue(g_mapTrie, mapname, status)) for (new i = 0; i < GetMenuItemCount(g_MapMenu); i++)
{ {
ReplyToCommand(client, "%t", "Map was not found", mapname); GetMenuItem(g_MapMenu, i, item, sizeof(item));
return Plugin_Handled; if (strcmp(item, mapname) == 0)
{
new NominateResult:result = NominateMap(mapname, false, client);
if (result > Nominate_Replaced)
{
if (result == Nominate_AlreadyInVote)
{
ReplyToCommand(client, "%t", "Map Already In Vote", mapname);
}
else
{
ReplyToCommand(client, "[SM] %t", "Map Already Nominated");
}
return Plugin_Handled;
}
RemoveMenuItem(g_MapMenu, i);
decl String:name[64];
GetClientName(client, name, sizeof(name));
PrintToChatAll("[SM] %t", "Map Nominated", name, mapname);
return Plugin_Continue;
}
} }
if ((status & MAPSTATUS_DISABLED) == MAPSTATUS_DISABLED) ReplyToCommand(client, "%t", "Map was not found", mapname);
{ return Plugin_Handled;
if ((status & MAPSTATUS_EXCLUDE_CURRENT) == MAPSTATUS_EXCLUDE_CURRENT)
{
ReplyToCommand(client, "[SM] %t", "Can't Nominate Current Map");
}
if ((status & MAPSTATUS_EXCLUDE_PREVIOUS) == MAPSTATUS_EXCLUDE_PREVIOUS)
{
ReplyToCommand(client, "[SM] %t", "Map in Exclude List");
}
if ((status & MAPSTATUS_EXCLUDE_NOMINATED) == MAPSTATUS_EXCLUDE_NOMINATED)
{
ReplyToCommand(client, "[SM] %t", "Map Already Nominated");
}
return Plugin_Handled;
}
new NominateResult:result = NominateMap(mapname, false, client);
if (result > Nominate_Replaced)
{
if (result == Nominate_AlreadyInVote)
{
ReplyToCommand(client, "%t", "Map Already In Vote", mapname);
}
else
{
ReplyToCommand(client, "[SM] %t", "Map Already Nominated");
}
return Plugin_Handled;
}
/* Map was nominated! - Disable the menu item and update the trie */
SetTrieValue(g_mapTrie, mapname, MAPSTATUS_DISABLED|MAPSTATUS_EXCLUDE_NOMINATED);
decl String:name[64];
GetClientName(client, name, sizeof(name));
PrintToChatAll("[SM] %t", "Map Nominated", name, mapname);
return Plugin_Continue;
} }
AttemptNominate(client) AttemptNominate(client)
@ -274,9 +238,7 @@ BuildMapMenu()
g_MapMenu = INVALID_HANDLE; g_MapMenu = INVALID_HANDLE;
} }
ClearTrie(g_mapTrie); g_MapMenu = CreateMenu(Handler_MapSelectMenu);
g_MapMenu = CreateMenu(Handler_MapSelectMenu, MENU_ACTIONS_DEFAULT|MenuAction_DrawItem|MenuAction_DisplayItem);
decl String:map[64]; decl String:map[64];
@ -294,32 +256,27 @@ BuildMapMenu()
GetCurrentMap(currentMap, sizeof(currentMap)); GetCurrentMap(currentMap, sizeof(currentMap));
} }
for (new i = 0; i < GetArraySize(g_MapList); i++) for (new i = 0; i < GetArraySize(g_MapList); i++)
{ {
new status = MAPSTATUS_ENABLED;
GetArrayString(g_MapList, i, map, sizeof(map)); GetArrayString(g_MapList, i, map, sizeof(map));
if (GetConVarBool(g_Cvar_ExcludeOld))
{
if (FindStringInArray(excludeMaps, map) != -1)
{
continue;
}
}
if (GetConVarBool(g_Cvar_ExcludeCurrent)) if (GetConVarBool(g_Cvar_ExcludeCurrent))
{ {
if (StrEqual(map, currentMap)) if (StrEqual(map, currentMap))
{ {
status = MAPSTATUS_DISABLED|MAPSTATUS_EXCLUDE_CURRENT; continue;
}
}
/* Dont bother with this check if the current map check passed */
if (GetConVarBool(g_Cvar_ExcludeOld) && status == MAPSTATUS_ENABLED)
{
if (FindStringInArray(excludeMaps, map) != -1)
{
status = MAPSTATUS_DISABLED|MAPSTATUS_EXCLUDE_PREVIOUS;
} }
} }
AddMenuItem(g_MapMenu, map, map); AddMenuItem(g_MapMenu, map, map);
SetTrieValue(g_mapTrie, map, status);
} }
SetMenuExitButton(g_MapMenu, true); SetMenuExitButton(g_MapMenu, true);
@ -334,94 +291,33 @@ public Handler_MapSelectMenu(Handle:menu, MenuAction:action, param1, param2)
decl String:map[64], String:name[64]; decl String:map[64], String:name[64];
GetMenuItem(menu, param2, map, sizeof(map)); GetMenuItem(menu, param2, map, sizeof(map));
GetClientName(param1, name, 64); GetClientName(param1, name, 64);
new NominateResult:result = NominateMap(map, false, param1); new NominateResult:result = NominateMap(map, false, param1);
/* Don't need to check for InvalidMap because the menu did that already */ /* Don't need to check for InvalidMap because the menu did that already */
if (result == Nominate_AlreadyInVote) if (result == Nominate_AlreadyInVote)
{ {
PrintToChat(param1, "[SM] %t", "Map Already Nominated"); PrintToChat(param1, "[SM] %t", "Map Already Nominated");
return 0; return;
} }
else if (result == Nominate_VoteFull) else if (result == Nominate_VoteFull)
{ {
PrintToChat(param1, "[SM] %t", "Max Nominations"); PrintToChat(param1, "[SM] %t", "Max Nominations");
return 0; return;
} }
SetTrieValue(g_mapTrie, map, MAPSTATUS_DISABLED|MAPSTATUS_EXCLUDE_NOMINATED); RemoveMenuItem(menu, param2);
if (result == Nominate_Replaced) if (result == Nominate_Replaced)
{ {
PrintToChatAll("[SM] %t", "Map Nomination Changed", name, map); PrintToChatAll("[SM] %t", "Map Nomination Changed", name, map);
return 0; return;
} }
PrintToChatAll("[SM] %t", "Map Nominated", name, map); PrintToChatAll("[SM] %t", "Map Nominated", name, map);
} }
case MenuAction_DrawItem:
{
decl String:map[64];
GetMenuItem(menu, param2, map, sizeof(map));
new status;
if (!GetTrieValue(g_mapTrie, map, status))
{
LogError("Menu selection of item not in trie. Major logic problem somewhere.");
return ITEMDRAW_DEFAULT;
}
if ((status & MAPSTATUS_DISABLED) == MAPSTATUS_DISABLED)
{
return ITEMDRAW_DISABLED;
}
return ITEMDRAW_DEFAULT;
}
case MenuAction_DisplayItem:
{
decl String:map[64];
GetMenuItem(menu, param2, map, sizeof(map));
new status;
if (!GetTrieValue(g_mapTrie, map, status))
{
LogError("Menu selection of item not in trie. Major logic problem somewhere.");
return 0;
}
decl String:display[100];
if ((status & MAPSTATUS_DISABLED) == MAPSTATUS_DISABLED)
{
if ((status & MAPSTATUS_EXCLUDE_CURRENT) == MAPSTATUS_EXCLUDE_CURRENT)
{
Format(display, sizeof(display), "%s (%T)", map, "Current Map", param1);
return RedrawMenuItem(display);
}
if ((status & MAPSTATUS_EXCLUDE_PREVIOUS) == MAPSTATUS_EXCLUDE_PREVIOUS)
{
Format(display, sizeof(display), "%s (%T)", map, "Recently Played", param1);
return RedrawMenuItem(display);
}
if ((status & MAPSTATUS_EXCLUDE_NOMINATED) == MAPSTATUS_EXCLUDE_NOMINATED)
{
Format(display, sizeof(display), "%s (%T)", map, "Nominated", param1);
return RedrawMenuItem(display);
}
}
return 0;
}
} }
return 0;
} }

View File

@ -45,29 +45,4 @@
{ {
"en" "Nominate Map:" "en" "Nominate Map:"
} }
"Can't Nominate Current Map"
{
"en" "The map you chose is the current map and cannot be nominated"
}
"Map in Exclude List"
{
"en" "The map you chose was recently played and cannot be nominated"
}
"Current Map"
{
"en" "Current Map"
}
"Recently Played"
{
"en" "Recently Played"
}
"Nominated"
{
"en" "Nominated"
}
} }