/** * admin-groups.sp * Reads the admin_groups.cfg file. Do not compile this directly. * This file is part of SourceMod, Copyright (C) 2004-2007 AlliedModders LLC * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Version: $Id$ */ #define GROUP_STATE_NONE 0 #define GROUP_STATE_GROUPS 1 #define GROUP_STATE_INGROUP 2 #define GROUP_STATE_OVERRIDES 3 #define GROUP_PASS_FIRST 1 #define GROUP_PASS_SECOND 2 static Handle:g_hGroupParser = INVALID_HANDLE; static GroupId:g_CurGrp = INVALID_GROUP_ID; static g_GroupState = GROUP_STATE_NONE; static g_GroupPass = 0; static bool:g_NeedReparse = false; public SMCResult:ReadGroups_NewSection(Handle:smc, const String:name[], bool:opt_quotes) { if (g_IgnoreLevel) { g_IgnoreLevel++; return SMCParse_Continue; } if (g_GroupState == GROUP_STATE_NONE) { if (StrEqual(name, "Groups")) { g_GroupState = GROUP_STATE_GROUPS; } else { g_IgnoreLevel++; } } else if (g_GroupState == GROUP_STATE_GROUPS) { if ((g_CurGrp = CreateAdmGroup(name)) == INVALID_GROUP_ID) { g_CurGrp = FindAdmGroup(name); } g_GroupState = GROUP_STATE_INGROUP; } else if (g_GroupState == GROUP_STATE_INGROUP) { if (StrEqual(name, "Overrides")) { g_GroupState = GROUP_STATE_OVERRIDES; } else { g_IgnoreLevel++; } } else { g_IgnoreLevel++; } return SMCParse_Continue; } public SMCResult:ReadGroups_KeyValue(Handle:smc, const String:key[], const String:value[], bool:key_quotes, bool:value_quotes) { if (g_CurGrp == INVALID_GROUP_ID || g_IgnoreLevel) { return SMCParse_Continue; } new AdminFlag:flag; if (g_GroupPass == GROUP_PASS_FIRST) { if (g_GroupState == GROUP_STATE_INGROUP) { if (StrEqual(key, "flags")) { new len = strlen(value); for (new i=0; i