/* * shavit's Timer - Map Zones * by: shavit * * This file is part of shavit's Timer. * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License, version 3.0, as published by the * Free Software Foundation. * * 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, see . * */ #include #include #include #undef REQUIRE_PLUGIN #include #include #undef REQUIRE_EXTENSIONS #include #include #pragma semicolon 1 #pragma dynamic 131072 #pragma newdecls required EngineVersion gEV_Type = Engine_Unknown; Database gH_SQL = null; bool gB_Connected = false; bool gB_MySQL = false; char gS_Map[160]; char gS_ZoneNames[][] = { "Start Zone", // starts timer "End Zone", // stops timer "Glitch Zone (Respawn Player)", // respawns the player "Glitch Zone (Stop Timer)", // stops the player's timer "Slay Player", // slays (kills) players which come to this zone "Freestyle Zone", // ignores style physics when at this zone. e.g. WASD when SWing "Custom Speed Limit", // overwrites velocity limit in the zone "Teleport Zone", // teleports to a defined point "SPAWN POINT", // << unused "Easybhop Zone", // forces easybhop whether if the player is in non-easy styles or if the server has different settings "Slide Zone", // allows players to slide, in order to fix parts like the 5th stage of bhop_arcane "Custom Airaccelerate" // custom sv_airaccelerate inside this }; enum struct zone_cache_t { bool bZoneInitialized; int iZoneType; int iZoneTrack; // 0 - main, 1 - bonus etc int iEntityID; int iDatabaseID; int iZoneFlags; int iZoneData; } enum struct zone_settings_t { bool bVisible; int iRed; int iGreen; int iBlue; int iAlpha; float fWidth; bool bFlatZone; } enum { ZF_ForceRender = (1 << 0) }; int gI_ZoneType[MAXPLAYERS+1]; // 0 - nothing // 1 - wait for E tap to setup first coord // 2 - wait for E tap to setup second coord // 3 - confirm int gI_MapStep[MAXPLAYERS+1]; float gF_Modifier[MAXPLAYERS+1]; int gI_GridSnap[MAXPLAYERS+1]; bool gB_SnapToWall[MAXPLAYERS+1]; bool gB_CursorTracing[MAXPLAYERS+1]; int gI_ZoneFlags[MAXPLAYERS+1]; int gI_ZoneData[MAXPLAYERS+1]; bool gB_WaitingForChatInput[MAXPLAYERS+1]; // cache float gV_Point1[MAXPLAYERS+1][3]; float gV_Point2[MAXPLAYERS+1][3]; float gV_Teleport[MAXPLAYERS+1][3]; float gV_WallSnap[MAXPLAYERS+1][3]; bool gB_Button[MAXPLAYERS+1]; bool gB_InsideZone[MAXPLAYERS+1][ZONETYPES_SIZE][TRACKS_SIZE]; bool gB_InsideZoneID[MAXPLAYERS+1][MAX_ZONES]; float gF_PrebuiltZones[TRACKS_SIZE][2][3]; float gF_CustomSpawn[TRACKS_SIZE][3]; int gI_ZoneTrack[MAXPLAYERS+1]; int gI_ZoneDatabaseID[MAXPLAYERS+1]; // zone cache zone_settings_t gA_ZoneSettings[ZONETYPES_SIZE][TRACKS_SIZE]; zone_cache_t gA_ZoneCache[MAX_ZONES]; // Vectors will not be inside this array. int gI_MapZones = 0; float gV_MapZones[MAX_ZONES][2][3]; float gV_MapZones_Visual[MAX_ZONES][8][3]; float gV_Destinations[MAX_ZONES][3]; float gV_ZoneCenter[MAX_ZONES][3]; int gI_EntityZone[4096]; bool gB_ZonesCreated = false; char gS_BeamSprite[PLATFORM_MAX_PATH]; int gI_BeamSprite = -1; int gI_HaloSprite = -1; // admin menu TopMenu gH_AdminMenu = null; TopMenuObject gH_TimerCommands = INVALID_TOPMENUOBJECT; // misc cache bool gB_Late = false; ConVar sv_gravity = null; // cvars ConVar gCV_Interval = null; ConVar gCV_TeleportToStart = null; ConVar gCV_TeleportToEnd = null; ConVar gCV_UseCustomSprite = null; ConVar gCV_Height = null; ConVar gCV_Offset = null; ConVar gCV_EnforceTracks = null; // handles Handle gH_DrawEverything = null; // table prefix char gS_MySQLPrefix[32]; // chat settings chatstrings_t gS_ChatStrings; // forwards Handle gH_Forwards_EnterZone = null; Handle gH_Forwards_LeaveZone = null; // kz support float gF_ClimbButtonCache[MAXPLAYERS+1][TRACKS_SIZE][2][3]; // 0 - location, 1 - angles int gI_KZButtons[TRACKS_SIZE][2]; // 0 - start, 1 - end public Plugin myinfo = { name = "[shavit] Map Zones", author = "shavit", description = "Map zones for shavit's bhop timer.", version = SHAVIT_VERSION, url = "https://github.com/shavitush/bhoptimer" } public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max) { // zone natives CreateNative("Shavit_GetZoneData", Native_GetZoneData); CreateNative("Shavit_GetZoneFlags", Native_GetZoneFlags); CreateNative("Shavit_InsideZone", Native_InsideZone); CreateNative("Shavit_InsideZoneGetID", Native_InsideZoneGetID); CreateNative("Shavit_IsClientCreatingZone", Native_IsClientCreatingZone); CreateNative("Shavit_ZoneExists", Native_ZoneExists); CreateNative("Shavit_Zones_DeleteMap", Native_Zones_DeleteMap); // registers library, check "bool LibraryExists(const char[] name)" in order to use with other plugins RegPluginLibrary("shavit-zones"); gB_Late = late; return APLRes_Success; } public void OnPluginStart() { LoadTranslations("shavit-common.phrases"); LoadTranslations("shavit-zones.phrases"); // game specific gEV_Type = GetEngineVersion(); // menu RegAdminCmd("sm_zones", Command_Zones, ADMFLAG_RCON, "Opens the mapzones menu."); RegAdminCmd("sm_mapzones", Command_Zones, ADMFLAG_RCON, "Opens the mapzones menu. Alias of sm_zones."); RegAdminCmd("sm_deletezone", Command_DeleteZone, ADMFLAG_RCON, "Delete a mapzone"); RegAdminCmd("sm_deleteallzones", Command_DeleteAllZones, ADMFLAG_RCON, "Delete all mapzones"); RegAdminCmd("sm_modifier", Command_Modifier, ADMFLAG_RCON, "Changes the axis modifier for the zone editor. Usage: sm_modifier "); RegAdminCmd("sm_addspawn", Command_AddSpawn, ADMFLAG_RCON, "Adds a custom spawn location"); RegAdminCmd("sm_delspawn", Command_DelSpawn, ADMFLAG_RCON, "Deletes a custom spawn location"); RegAdminCmd("sm_zoneedit", Command_ZoneEdit, ADMFLAG_RCON, "Modify an existing zone."); RegAdminCmd("sm_editzone", Command_ZoneEdit, ADMFLAG_RCON, "Modify an existing zone. Alias of sm_zoneedit."); RegAdminCmd("sm_modifyzone", Command_ZoneEdit, ADMFLAG_RCON, "Modify an existing zone. Alias of sm_zoneedit."); RegAdminCmd("sm_reloadzonesettings", Command_ReloadZoneSettings, ADMFLAG_ROOT, "Reloads the zone settings."); // events if(gEV_Type == Engine_TF2) { HookEvent("teamplay_round_start", Round_Start); } else { HookEvent("round_start", Round_Start); } HookEvent("player_spawn", Player_Spawn); // forwards gH_Forwards_EnterZone = CreateGlobalForward("Shavit_OnEnterZone", ET_Event, Param_Cell, Param_Cell, Param_Cell, Param_Cell, Param_Cell); gH_Forwards_LeaveZone = CreateGlobalForward("Shavit_OnLeaveZone", ET_Event, Param_Cell, Param_Cell, Param_Cell, Param_Cell, Param_Cell); // cvars and stuff gCV_Interval = CreateConVar("shavit_zones_interval", "1.0", "Interval between each time a mapzone is being drawn to the players.", 0, true, 0.5, true, 5.0); gCV_TeleportToStart = CreateConVar("shavit_zones_teleporttostart", "1", "Teleport players to the start zone on timer restart?\n0 - Disabled\n1 - Enabled", 0, true, 0.0, true, 1.0); gCV_TeleportToEnd = CreateConVar("shavit_zones_teleporttoend", "1", "Teleport players to the end zone on sm_end?\n0 - Disabled\n1 - Enabled", 0, true, 0.0, true, 1.0); gCV_UseCustomSprite = CreateConVar("shavit_zones_usecustomsprite", "1", "Use custom sprite for zone drawing?\nSee `configs/shavit-zones.cfg`.\n0 - Disabled\n1 - Enabled", 0, true, 0.0, true, 1.0); gCV_Height = CreateConVar("shavit_zones_height", "128.0", "Height to use for the start zone.", 0, true, 0.0, false); gCV_Offset = CreateConVar("shavit_zones_offset", "0.5", "When calculating a zone's *VISUAL* box, by how many units, should we scale it to the center?\n0.0 - no downscaling. Values above 0 will scale it inward and negative numbers will scale it outwards.\nAdjust this value if the zones clip into walls."); gCV_EnforceTracks = CreateConVar("shavit_zones_enforcetracks", "1", "Enforce zone tracks upon entry?\n0 - allow every zone except for start/end to affect users on every zone.\n1- require the user's track to match the zone's track.", 0, true, 0.0, true, 1.0); gCV_Interval.AddChangeHook(OnConVarChanged); gCV_UseCustomSprite.AddChangeHook(OnConVarChanged); gCV_Offset.AddChangeHook(OnConVarChanged); AutoExecConfig(); // admin menu if(LibraryExists("adminmenu") && ((gH_AdminMenu = GetAdminTopMenu()) != null)) { OnAdminMenuReady(gH_AdminMenu); } // misc cvars sv_gravity = FindConVar("sv_gravity"); for(int i = 0; i < ZONETYPES_SIZE; i++) { for(int j = 0; j < TRACKS_SIZE; j++) { gA_ZoneSettings[i][j].bVisible = true; gA_ZoneSettings[i][j].iRed = 255; gA_ZoneSettings[i][j].iGreen = 255; gA_ZoneSettings[i][j].iBlue = 255; gA_ZoneSettings[i][j].iAlpha = 255; gA_ZoneSettings[i][j].fWidth = 2.0; gA_ZoneSettings[i][j].bFlatZone = false; } } for(int i = 1; i <= MaxClients; i++) { if(IsClientConnected(i) && IsClientInGame(i)) { OnClientPutInServer(i); } } SQL_DBConnect(); } public void OnConVarChanged(ConVar convar, const char[] oldValue, const char[] newValue) { if(convar == gCV_Interval) { delete gH_DrawEverything; gH_DrawEverything = CreateTimer(gCV_Interval.FloatValue, Timer_DrawEverything, INVALID_HANDLE, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE); } else if(convar == gCV_Offset && gI_MapZones > 0) { for(int i = 0; i < gI_MapZones; i++) { if(!gA_ZoneCache[i].bZoneInitialized) { continue; } gV_MapZones_Visual[i][0][0] = gV_MapZones[i][0][0]; gV_MapZones_Visual[i][0][1] = gV_MapZones[i][0][1]; gV_MapZones_Visual[i][0][2] = gV_MapZones[i][0][2]; gV_MapZones_Visual[i][7][0] = gV_MapZones[i][1][0]; gV_MapZones_Visual[i][7][1] = gV_MapZones[i][1][1]; gV_MapZones_Visual[i][7][2] = gV_MapZones[i][1][2]; CreateZonePoints(gV_MapZones_Visual[i], gCV_Offset.FloatValue); } } else if(convar == gCV_UseCustomSprite && !StrEqual(oldValue, newValue)) { LoadZoneSettings(); } } public void OnAdminMenuCreated(Handle topmenu) { if(gH_AdminMenu == null || (topmenu == gH_AdminMenu && gH_TimerCommands != INVALID_TOPMENUOBJECT)) { return; } gH_TimerCommands = gH_AdminMenu.AddCategory("Timer Commands", CategoryHandler, "shavit_admin", ADMFLAG_RCON); } public void CategoryHandler(Handle topmenu, TopMenuAction action, TopMenuObject object_id, int param, char[] buffer, int maxlength) { if(action == TopMenuAction_DisplayTitle) { FormatEx(buffer, maxlength, "%T:", "TimerCommands", param); } else if(action == TopMenuAction_DisplayOption) { FormatEx(buffer, maxlength, "%T", "TimerCommands", param); } } public void OnAdminMenuReady(Handle topmenu) { if((gH_AdminMenu = GetAdminTopMenu()) != null) { if(gH_TimerCommands == INVALID_TOPMENUOBJECT) { gH_TimerCommands = gH_AdminMenu.FindCategory("Timer Commands"); if(gH_TimerCommands == INVALID_TOPMENUOBJECT) { OnAdminMenuCreated(topmenu); } } gH_AdminMenu.AddItem("sm_zones", AdminMenu_Zones, gH_TimerCommands, "sm_zones", ADMFLAG_RCON); gH_AdminMenu.AddItem("sm_deletezone", AdminMenu_DeleteZone, gH_TimerCommands, "sm_deletezone", ADMFLAG_RCON); gH_AdminMenu.AddItem("sm_deleteallzones", AdminMenu_DeleteAllZones, gH_TimerCommands, "sm_deleteallzones", ADMFLAG_RCON); gH_AdminMenu.AddItem("sm_zoneedit", AdminMenu_ZoneEdit, gH_TimerCommands, "sm_zoneedit", ADMFLAG_RCON); } } public void AdminMenu_Zones(Handle topmenu, TopMenuAction action, TopMenuObject object_id, int param, char[] buffer, int maxlength) { if(action == TopMenuAction_DisplayOption) { FormatEx(buffer, maxlength, "%T", "AddMapZone", param); } else if(action == TopMenuAction_SelectOption) { Command_Zones(param, 0); } } public void AdminMenu_DeleteZone(Handle topmenu, TopMenuAction action, TopMenuObject object_id, int param, char[] buffer, int maxlength) { if(action == TopMenuAction_DisplayOption) { FormatEx(buffer, maxlength, "%T", "DeleteMapZone", param); } else if(action == TopMenuAction_SelectOption) { Command_DeleteZone(param, 0); } } public void AdminMenu_DeleteAllZones(Handle topmenu, TopMenuAction action, TopMenuObject object_id, int param, char[] buffer, int maxlength) { if(action == TopMenuAction_DisplayOption) { FormatEx(buffer, maxlength, "%T", "DeleteAllMapZone", param); } else if(action == TopMenuAction_SelectOption) { Command_DeleteAllZones(param, 0); } } public void AdminMenu_ZoneEdit(Handle topmenu, TopMenuAction action, TopMenuObject object_id, int param, char[] buffer, int maxlength) { if(action == TopMenuAction_DisplayOption) { FormatEx(buffer, maxlength, "%T", "ZoneEdit", param); } else if(action == TopMenuAction_SelectOption) { Reset(param); OpenEditMenu(param); } } public int Native_ZoneExists(Handle handler, int numParams) { return (GetZoneIndex(GetNativeCell(1), GetNativeCell(2)) != -1); } public int Native_GetZoneData(Handle handler, int numParams) { return gA_ZoneCache[GetNativeCell(1)].iZoneData; } public int Native_GetZoneFlags(Handle handler, int numParams) { return gA_ZoneCache[GetNativeCell(1)].iZoneFlags; } public int Native_InsideZone(Handle handler, int numParams) { return InsideZone(GetNativeCell(1), GetNativeCell(2), GetNativeCell(3)); } public int Native_InsideZoneGetID(Handle handler, int numParams) { int client = GetNativeCell(1); int iType = GetNativeCell(2); int iTrack = GetNativeCell(3); for(int i = 0; i < MAX_ZONES; i++) { if(gB_InsideZoneID[client][i] && gA_ZoneCache[i].iZoneType == iType && (gA_ZoneCache[i].iZoneTrack == iTrack || iTrack == -1)) { SetNativeCellRef(4, i); return true; } } return false; } public int Native_Zones_DeleteMap(Handle handler, int numParams) { char sMap[160]; GetNativeString(1, sMap, 160); char sQuery[256]; FormatEx(sQuery, 256, "DELETE FROM %smapzones WHERE map = '%s';", gS_MySQLPrefix, sMap); gH_SQL.Query(SQL_DeleteMap_Callback, sQuery, StrEqual(gS_Map, sMap, false), DBPrio_High); } public void SQL_DeleteMap_Callback(Database db, DBResultSet results, const char[] error, any data) { if(results == null) { LogError("Timer (zones deletemap) SQL query failed. Reason: %s", error); return; } if(view_as(data)) { OnMapStart(); } } bool InsideZone(int client, int type, int track) { if(track != -1) { return gB_InsideZone[client][type][track]; } else { for(int i = 0; i < TRACKS_SIZE; i++) { if(gB_InsideZone[client][type][i]) { return true; } } } return false; } public int Native_IsClientCreatingZone(Handle handler, int numParams) { return (gI_MapStep[GetNativeCell(1)] != 0); } bool LoadZonesConfig() { char sPath[PLATFORM_MAX_PATH]; BuildPath(Path_SM, sPath, PLATFORM_MAX_PATH, "configs/shavit-zones.cfg"); KeyValues kv = new KeyValues("shavit-zones"); if(!kv.ImportFromFile(sPath)) { delete kv; return false; } kv.JumpToKey("Sprites"); kv.GetString("beam", gS_BeamSprite, PLATFORM_MAX_PATH); char sDownloads[PLATFORM_MAX_PATH * 8]; kv.GetString("downloads", sDownloads, (PLATFORM_MAX_PATH * 8)); char sDownloadsExploded[PLATFORM_MAX_PATH][PLATFORM_MAX_PATH]; int iDownloads = ExplodeString(sDownloads, ";", sDownloadsExploded, PLATFORM_MAX_PATH, PLATFORM_MAX_PATH, false); for(int i = 0; i < iDownloads; i++) { if(strlen(sDownloadsExploded[i]) > 0) { TrimString(sDownloadsExploded[i]); AddFileToDownloadsTable(sDownloadsExploded[i]); } } kv.GoBack(); kv.JumpToKey("Colors"); kv.JumpToKey("Start"); // A stupid and hacky way to achieve what I want. It works though. int i = 0; do { // retroactively don't respect custom spawn settings char sSection[32]; kv.GetSectionName(sSection, 32); if(StrContains(sSection, "SPAWN POINT", false) != -1) { continue; } if((i % ZONETYPES_SIZE) == Zone_CustomSpawn) { i++; } int track = (i / ZONETYPES_SIZE); if(track >= TRACKS_SIZE) { break; } int index = (i % ZONETYPES_SIZE); gA_ZoneSettings[index][track].bVisible = view_as(kv.GetNum("visible", 1)); gA_ZoneSettings[index][track].iRed = kv.GetNum("red", 255); gA_ZoneSettings[index][track].iGreen = kv.GetNum("green", 255); gA_ZoneSettings[index][track].iBlue = kv.GetNum("blue", 255); gA_ZoneSettings[index][track].iAlpha = kv.GetNum("alpha", 255); gA_ZoneSettings[index][track].fWidth = kv.GetFloat("width", 2.0); gA_ZoneSettings[index][track].bFlatZone = view_as(kv.GetNum("flat", false)); i++; } while(kv.GotoNextKey(false)); delete kv; return true; } void LoadZoneSettings() { if(!LoadZonesConfig()) { SetFailState("Cannot open \"configs/shavit-zones.cfg\". Make sure this file exists and that the server has read permissions to it."); } if(gCV_UseCustomSprite.BoolValue) { gI_BeamSprite = PrecacheModel(gS_BeamSprite, true); gI_HaloSprite = 0; } else { if(IsSource2013(gEV_Type)) { gI_BeamSprite = PrecacheModel("sprites/laser.vmt", true); gI_HaloSprite = PrecacheModel("sprites/halo01.vmt", true); } else { gI_BeamSprite = PrecacheModel("sprites/laserbeam.vmt", true); gI_HaloSprite = PrecacheModel("sprites/glow01.vmt", true); } } } public void OnMapStart() { if(!gB_Connected) { return; } GetCurrentMap(gS_Map, 160); GetMapDisplayName(gS_Map, gS_Map, 160); gI_MapZones = 0; ReloadPrebuiltZones(); UnloadZones(0); RefreshZones(); LoadZoneSettings(); if(gEV_Type == Engine_TF2) { PrecacheModel("models/error.mdl"); } else { PrecacheModel("models/props/cs_office/vending_machine.mdl"); } // draw // start drawing mapzones here if(gH_DrawEverything == null) { gH_DrawEverything = CreateTimer(gCV_Interval.FloatValue, Timer_DrawEverything, INVALID_HANDLE, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE); } if(gB_Late) { Shavit_OnChatConfigLoaded(); } } public void OnMapEnd() { delete gH_DrawEverything; } public void OnEntityCreated(int entity, const char[] classname) { if(StrEqual(classname, "func_button", false)) { RequestFrame(Frame_HookButton, EntIndexToEntRef(entity)); } else if(StrEqual(classname, "trigger_multiple", false)) { RequestFrame(Frame_HookTrigger, EntIndexToEntRef(entity)); } } public void Frame_HookButton(any data) { int entity = EntRefToEntIndex(data); if(entity == INVALID_ENT_REFERENCE) { return; } char sName[32]; GetEntPropString(entity, Prop_Data, "m_iName", sName, 32); if(StrContains(sName, "climb_") == -1) { return; } int zone = -1; int track = Track_Main; if(StrContains(sName, "startbutton") != -1) { zone = Zone_Start; } else if(StrContains(sName, "endbutton") != -1) { zone = Zone_End; } if(StrContains(sName, "bonus") != -1) { track = Track_Bonus; } if(zone != -1) { gI_KZButtons[track][zone] = entity; Shavit_MarkKZMap(); SDKHook(entity, SDKHook_UsePost, UsePost); } } public void Frame_HookTrigger(any data) { int entity = EntRefToEntIndex(data); if(entity == INVALID_ENT_REFERENCE) { return; } char sName[32]; GetEntPropString(entity, Prop_Data, "m_iName", sName, 32); if(StrContains(sName, "mod_zone_") == -1) { return; } int zone = -1; int track = Track_Main; if(StrContains(sName, "start") != -1) { zone = Zone_Start; } else if(StrContains(sName, "end") != -1) { zone = Zone_End; } if(StrContains(sName, "bonus") != -1) { track = Track_Bonus; } if(zone != -1) { gI_KZButtons[track][zone] = entity; Shavit_MarkKZMap(); float maxs[3]; GetEntPropVector(entity, Prop_Send, "m_vecMaxs", maxs); float origin[3]; GetEntPropVector(entity, Prop_Send, "m_vecOrigin", origin); origin[2] -= (maxs[2] - 2.0); // so you don't get stuck in the ground gF_PrebuiltZones[track][zone] = origin; for(int i = 1; i <= MaxClients; i++) { gB_InsideZone[i][zone][track] = false; } SDKHook(entity, SDKHook_StartTouchPost, StartTouchPost_Trigger); SDKHook(entity, SDKHook_EndTouchPost, EndTouchPost_Trigger); SDKHook(entity, SDKHook_TouchPost, TouchPost_Trigger); } } public void Shavit_OnChatConfigLoaded() { Shavit_GetChatStrings(sMessagePrefix, gS_ChatStrings.sPrefix, sizeof(chatstrings_t::sPrefix)); Shavit_GetChatStrings(sMessageText, gS_ChatStrings.sText, sizeof(chatstrings_t::sText)); Shavit_GetChatStrings(sMessageWarning, gS_ChatStrings.sWarning, sizeof(chatstrings_t::sWarning)); Shavit_GetChatStrings(sMessageVariable, gS_ChatStrings.sVariable, sizeof(chatstrings_t::sVariable)); Shavit_GetChatStrings(sMessageVariable2, gS_ChatStrings.sVariable2, sizeof(chatstrings_t::sVariable2)); Shavit_GetChatStrings(sMessageStyle, gS_ChatStrings.sStyle, sizeof(chatstrings_t::sStyle)); } void ClearZone(int index) { for(int i = 0; i < 3; i++) { gV_MapZones[index][0][i] = 0.0; gV_MapZones[index][1][i] = 0.0; gV_Destinations[index][i] = 0.0; gV_ZoneCenter[index][i] = 0.0; } gA_ZoneCache[index].bZoneInitialized = false; gA_ZoneCache[index].iZoneType = -1; gA_ZoneCache[index].iZoneTrack = -1; gA_ZoneCache[index].iEntityID = -1; gA_ZoneCache[index].iDatabaseID = -1; gA_ZoneCache[index].iZoneFlags = 0; gA_ZoneCache[index].iZoneData = 0; } void UnhookEntity(int entity) { SDKUnhook(entity, SDKHook_StartTouchPost, StartTouchPost); SDKUnhook(entity, SDKHook_EndTouchPost, EndTouchPost); SDKUnhook(entity, SDKHook_TouchPost, TouchPost); } void KillZoneEntity(int index) { int entity = gA_ZoneCache[index].iEntityID; if(entity > MaxClients && IsValidEntity(entity)) { for(int i = 1; i <= MaxClients; i++) { for(int j = 0; j < TRACKS_SIZE; j++) { gB_InsideZone[i][gA_ZoneCache[index].iZoneType][j] = false; } gB_InsideZoneID[i][index] = false; } char sTargetname[32]; GetEntPropString(entity, Prop_Data, "m_iName", sTargetname, 32); if(StrContains(sTargetname, "shavit_zones_") == -1) { return; } UnhookEntity(entity); AcceptEntityInput(entity, "Kill"); } } // 0 - all zones void UnloadZones(int zone) { if(zone == Zone_CustomSpawn) { ClearCustomSpawn(-1); } else { for(int i = 0; i < MAX_ZONES; i++) { if((zone == 0 || gA_ZoneCache[i].iZoneType == zone) && gA_ZoneCache[i].bZoneInitialized) { KillZoneEntity(i); ClearZone(i); } } ClearCustomSpawn(-1); if(zone == 0) { gB_ZonesCreated = false; char sTargetname[32]; int iEntity = INVALID_ENT_REFERENCE; while((iEntity = FindEntityByClassname(iEntity, "trigger_multiple")) != INVALID_ENT_REFERENCE) { GetEntPropString(iEntity, Prop_Data, "m_iName", sTargetname, 32); if(StrContains(sTargetname, "shavit_zones_") != -1) { AcceptEntityInput(iEntity, "Kill"); } } } return; } } void RefreshZones() { char sQuery[512]; FormatEx(sQuery, 512, "SELECT type, corner1_x, corner1_y, corner1_z, corner2_x, corner2_y, corner2_z, destination_x, destination_y, destination_z, track, %s, flags, data FROM %smapzones WHERE map = '%s';", (gB_MySQL)? "id":"rowid", gS_MySQLPrefix, gS_Map); gH_SQL.Query(SQL_RefreshZones_Callback, sQuery, 0, DBPrio_High); } public void SQL_RefreshZones_Callback(Database db, DBResultSet results, const char[] error, any data) { if(results == null) { LogError("Timer (zone refresh) SQL query failed. Reason: %s", error); return; } gI_MapZones = 0; while(results.FetchRow()) { int type = results.FetchInt(0); if(type == Zone_CustomSpawn) { int track = results.FetchInt(10); gF_CustomSpawn[track][0] = results.FetchFloat(7); gF_CustomSpawn[track][1] = results.FetchFloat(8); gF_CustomSpawn[track][2] = results.FetchFloat(9); } else { gV_MapZones[gI_MapZones][0][0] = gV_MapZones_Visual[gI_MapZones][0][0] = results.FetchFloat(1); gV_MapZones[gI_MapZones][0][1] = gV_MapZones_Visual[gI_MapZones][0][1] = results.FetchFloat(2); gV_MapZones[gI_MapZones][0][2] = gV_MapZones_Visual[gI_MapZones][0][2] = results.FetchFloat(3); gV_MapZones[gI_MapZones][1][0] = gV_MapZones_Visual[gI_MapZones][7][0] = results.FetchFloat(4); gV_MapZones[gI_MapZones][1][1] = gV_MapZones_Visual[gI_MapZones][7][1] = results.FetchFloat(5); gV_MapZones[gI_MapZones][1][2] = gV_MapZones_Visual[gI_MapZones][7][2] = results.FetchFloat(6); CreateZonePoints(gV_MapZones_Visual[gI_MapZones], gCV_Offset.FloatValue); gV_ZoneCenter[gI_MapZones][0] = (gV_MapZones[gI_MapZones][0][0] + gV_MapZones[gI_MapZones][1][0]) / 2.0; gV_ZoneCenter[gI_MapZones][1] = (gV_MapZones[gI_MapZones][0][1] + gV_MapZones[gI_MapZones][1][1]) / 2.0; gV_ZoneCenter[gI_MapZones][2] = (gV_MapZones[gI_MapZones][0][2] + gV_MapZones[gI_MapZones][1][2]) / 2.0; if(type == Zone_Teleport) { gV_Destinations[gI_MapZones][0] = results.FetchFloat(7); gV_Destinations[gI_MapZones][1] = results.FetchFloat(8); gV_Destinations[gI_MapZones][2] = results.FetchFloat(9); } gA_ZoneCache[gI_MapZones].bZoneInitialized = true; gA_ZoneCache[gI_MapZones].iZoneType = type; gA_ZoneCache[gI_MapZones].iZoneTrack = results.FetchInt(10); gA_ZoneCache[gI_MapZones].iDatabaseID = results.FetchInt(11); gA_ZoneCache[gI_MapZones].iZoneFlags = results.FetchInt(12); gA_ZoneCache[gI_MapZones].iZoneData = results.FetchInt(13); gA_ZoneCache[gI_MapZones].iEntityID = -1; gI_MapZones++; } } CreateZoneEntities(); } public void OnClientPutInServer(int client) { for(int i = 0; i < TRACKS_SIZE; i++) { for(int j = 0; j < ZONETYPES_SIZE; j++) { gB_InsideZone[client][j][i] = false; } for(int j = 0; j < 3; j++) { gF_ClimbButtonCache[client][i][0][j] = 0.0; gF_ClimbButtonCache[client][i][1][j] = 0.0; } } for(int i = 0; i < MAX_ZONES; i++) { gB_InsideZoneID[client][i] = false; } Reset(client); } public Action Command_Modifier(int client, int args) { if(!IsValidClient(client)) { return Plugin_Handled; } if(args == 0) { Shavit_PrintToChat(client, "%T", "ModifierCommandNoArgs", client); return Plugin_Handled; } char sArg1[16]; GetCmdArg(1, sArg1, 16); float fArg1 = StringToFloat(sArg1); if(fArg1 <= 0.0) { Shavit_PrintToChat(client, "%T", "ModifierTooLow", client); return Plugin_Handled; } gF_Modifier[client] = fArg1; Shavit_PrintToChat(client, "%T %s%.01f%s.", "ModifierSet", client, gS_ChatStrings.sVariable, fArg1, gS_ChatStrings.sText); return Plugin_Handled; } // Krypt Custom Spawn Functions (https://github.com/Kryptanyte) public Action Command_AddSpawn(int client, int args) { if(!IsValidClient(client)) { return Plugin_Handled; } return DisplayCustomSpawnMenu(client); } Action DisplayCustomSpawnMenu(int client) { Menu menu = new Menu(MenuHandler_AddCustomSpawn); menu.SetTitle("%T\n ", "ZoneCustomSpawnMenuTitle", client); for(int i = 0; i < TRACKS_SIZE; i++) { char sInfo[8]; IntToString(i, sInfo, 8); char sTrack[32]; GetTrackName(client, i, sTrack, 32); menu.AddItem(sInfo, sTrack); } menu.ExitButton = true; menu.Display(client, 60); return Plugin_Handled; } public int MenuHandler_AddCustomSpawn(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { if(!IsPlayerAlive(param1)) { Shavit_PrintToChat(param1, "%T", "ZoneDead", param1); return 0; } char sInfo[8]; menu.GetItem(param2, sInfo, 8); int iTrack = StringToInt(sInfo); if(!EmptyVector(gF_CustomSpawn[iTrack])) { char sTrack[32]; GetTrackName(param1, iTrack, sTrack, 32); Shavit_PrintToChat(param1, "%T", "ZoneCustomSpawnExists", param1, gS_ChatStrings.sVariable, sTrack, gS_ChatStrings.sText); return 0; } gI_ZoneType[param1] = Zone_CustomSpawn; gI_ZoneTrack[param1] = iTrack; GetClientAbsOrigin(param1, gV_Point1[param1]); InsertZone(param1); } else if(action == MenuAction_End) { delete menu; } return 0; } public Action Command_DelSpawn(int client, int args) { if(!IsValidClient(client)) { return Plugin_Handled; } return DisplayCustomSpawnDeleteMenu(client); } Action DisplayCustomSpawnDeleteMenu(int client) { Menu menu = new Menu(MenuHandler_DeleteCustomSpawn); menu.SetTitle("%T\n ", "ZoneCustomSpawnMenuDeleteTitle", client); for(int i = 0; i < TRACKS_SIZE; i++) { char sInfo[8]; IntToString(i, sInfo, 8); char sTrack[32]; GetTrackName(client, i, sTrack, 32); menu.AddItem(sInfo, sTrack, (EmptyVector(gF_CustomSpawn[i]))? ITEMDRAW_DISABLED:ITEMDRAW_DEFAULT); } menu.ExitButton = true; menu.Display(client, 60); return Plugin_Handled; } public int MenuHandler_DeleteCustomSpawn(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char sInfo[8]; menu.GetItem(param2, sInfo, 8); int iTrack = StringToInt(sInfo); if(EmptyVector(gF_CustomSpawn[iTrack])) { char sTrack[32]; GetTrackName(param1, iTrack, sTrack, 32); Shavit_PrintToChat(param1, "%T", "ZoneCustomSpawnMissing", param1, gS_ChatStrings.sVariable, sTrack, gS_ChatStrings.sText); return 0; } gI_ZoneTrack[param1] = iTrack; Shavit_LogMessage("%L - deleted custom spawn from map `%s`.", param1, gS_Map); char sQuery[256]; FormatEx(sQuery, 256, "DELETE FROM %smapzones WHERE type = '%d' AND map = '%s' AND track = %d;", gS_MySQLPrefix, Zone_CustomSpawn, gS_Map, iTrack); gH_SQL.Query(SQL_DeleteCustom_Spawn_Callback, sQuery, GetClientSerial(param1)); } else if(action == MenuAction_End) { delete menu; } return 0; } public void SQL_DeleteCustom_Spawn_Callback(Database db, DBResultSet results, const char[] error, any data) { if(results == null) { LogError("Timer (custom spawn delete) SQL query failed. Reason: %s", error); return; } int client = GetClientFromSerial(data); if(client == 0) { return; } ClearCustomSpawn(gI_ZoneTrack[client]); Shavit_PrintToChat(client, "%T", "ZoneCustomSpawnDelete", client); } void ClearCustomSpawn(int track) { if(track != -1) { gF_CustomSpawn[track] = NULL_VECTOR; return; } for(int i = 0; i < TRACKS_SIZE; i++) { gF_CustomSpawn[i] = NULL_VECTOR; } } void ReloadPrebuiltZones() { for(int i = 0; i < TRACKS_SIZE; i++) { gF_PrebuiltZones[i][Zone_Start] = NULL_VECTOR; gF_PrebuiltZones[i][Zone_End] = NULL_VECTOR; } char sTargetname[32]; int iEntity = INVALID_ENT_REFERENCE; while((iEntity = FindEntityByClassname(iEntity, "trigger_multiple")) != INVALID_ENT_REFERENCE) { GetEntPropString(iEntity, Prop_Data, "m_iName", sTargetname, 32); if(StrContains(sTargetname, "mod_zone_") != -1) { Frame_HookTrigger(EntIndexToEntRef(iEntity)); } } } public Action Command_ZoneEdit(int client, int args) { if(!IsValidClient(client)) { return Plugin_Handled; } Reset(client); return OpenEditMenu(client); } public Action Command_ReloadZoneSettings(int client, int args) { LoadZoneSettings(); ReplyToCommand(client, "Reloaded zone settings."); return Plugin_Handled; } public Action Command_Zones(int client, int args) { if(!IsValidClient(client)) { return Plugin_Handled; } if(!IsPlayerAlive(client)) { Shavit_PrintToChat(client, "%T", "ZonesCommand", client, gS_ChatStrings.sWarning, gS_ChatStrings.sText); return Plugin_Handled; } Reset(client); Menu menu = new Menu(MenuHandler_SelectZoneTrack); menu.SetTitle("%T", "ZoneMenuTrack", client); for(int i = 0; i < TRACKS_SIZE; i++) { char sInfo[8]; IntToString(i, sInfo, 8); char sDisplay[16]; GetTrackName(client, i, sDisplay, 16); menu.AddItem(sInfo, sDisplay); } menu.ExitButton = true; menu.Display(client, 20); return Plugin_Handled; } public int MenuHandler_SelectZoneTrack(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char sInfo[8]; menu.GetItem(param2, sInfo, 8); gI_ZoneTrack[param1] = StringToInt(sInfo); char sTrack[16]; GetTrackName(param1, gI_ZoneTrack[param1], sTrack, 16); Menu submenu = new Menu(MenuHandler_SelectZoneType); submenu.SetTitle("%T\n ", "ZoneMenuTitle", param1, sTrack); for(int i = 0; i < sizeof(gS_ZoneNames); i++) { if(i == Zone_CustomSpawn) { continue; } IntToString(i, sInfo, 8); submenu.AddItem(sInfo, gS_ZoneNames[i]); } submenu.ExitButton = true; submenu.Display(param1, 20); } else if(action == MenuAction_End) { delete menu; } return 0; } Action OpenEditMenu(int client) { Menu menu = new Menu(MenuHandler_ZoneEdit); menu.SetTitle("%T\n ", "ZoneEditTitle", client); char sDisplay[64]; FormatEx(sDisplay, 64, "%T", "ZoneEditRefresh", client); menu.AddItem("-2", sDisplay); for(int i = 0; i < sizeof(gS_ZoneNames); i++) { if(!gA_ZoneCache[i].bZoneInitialized) { continue; } char sInfo[8]; IntToString(i, sInfo, 8); char sTrack[32]; GetTrackName(client, gA_ZoneCache[i].iZoneTrack, sTrack, 32); FormatEx(sDisplay, 64, "#%d - %s (%s)", (i + 1), gS_ZoneNames[gA_ZoneCache[i].iZoneType], sTrack); if(gB_InsideZoneID[client][i]) { Format(sDisplay, 64, "%s %T", sDisplay, "ZoneInside", client); } menu.AddItem(sInfo, sDisplay); } if(menu.ItemCount == 0) { FormatEx(sDisplay, 64, "%T", "ZonesMenuNoneFound", client); menu.AddItem("-1", sDisplay); } menu.ExitButton = true; menu.Display(client, 120); return Plugin_Handled; } public int MenuHandler_ZoneEdit(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char info[8]; menu.GetItem(param2, info, 8); int id = StringToInt(info); switch(id) { case -2: { OpenEditMenu(param1); } case -1: { Shavit_PrintToChat(param1, "%T", "ZonesMenuNoneFound", param1); } default: { // a hack to place the player in the last step of zone editing gI_MapStep[param1] = 3; gV_Point1[param1] = gV_MapZones[id][0]; gV_Point2[param1] = gV_MapZones[id][1]; gI_ZoneType[param1] = gA_ZoneCache[id].iZoneType; gI_ZoneTrack[param1] = gA_ZoneCache[id].iZoneTrack; gV_Teleport[param1] = gV_Destinations[id]; gI_ZoneDatabaseID[param1] = gA_ZoneCache[id].iDatabaseID; gI_ZoneFlags[param1] = gA_ZoneCache[id].iZoneFlags; gI_ZoneData[param1] = gA_ZoneCache[id].iZoneData; // to stop the original zone from drawing gA_ZoneCache[id].bZoneInitialized = false; // draw the zone edit CreateTimer(0.1, Timer_Draw, GetClientSerial(param1), TIMER_REPEAT); CreateEditMenu(param1); } } } else if(action == MenuAction_End) { delete menu; } return 0; } public Action Command_DeleteZone(int client, int args) { if(!IsValidClient(client)) { return Plugin_Handled; } return OpenDeleteMenu(client); } Action OpenDeleteMenu(int client) { Menu menu = new Menu(MenuHandler_DeleteZone); menu.SetTitle("%T\n ", "ZoneMenuDeleteTitle", client); char sDisplay[64]; FormatEx(sDisplay, 64, "%T", "ZoneEditRefresh", client); menu.AddItem("-2", sDisplay); for(int i = 0; i < gI_MapZones; i++) { if(gA_ZoneCache[i].bZoneInitialized) { char sTrack[32]; GetTrackName(client, gA_ZoneCache[i].iZoneTrack, sTrack, 32); FormatEx(sDisplay, 64, "#%d - %s (%s)", (i + 1), gS_ZoneNames[gA_ZoneCache[i].iZoneType], sTrack); char sInfo[8]; IntToString(i, sInfo, 8); if(gB_InsideZoneID[client][i]) { Format(sDisplay, 64, "%s %T", sDisplay, "ZoneInside", client); } menu.AddItem(sInfo, sDisplay); } } if(menu.ItemCount == 0) { char sMenuItem[64]; FormatEx(sMenuItem, 64, "%T", "ZonesMenuNoneFound", client); menu.AddItem("-1", sMenuItem); } menu.ExitButton = true; menu.Display(client, 20); return Plugin_Handled; } public int MenuHandler_DeleteZone(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char info[8]; menu.GetItem(param2, info, 8); int id = StringToInt(info); switch(id) { case -2: { OpenDeleteMenu(param1); } case -1: { Shavit_PrintToChat(param1, "%T", "ZonesMenuNoneFound", param1); } default: { Shavit_LogMessage("%L - deleted %s (id %d) from map `%s`.", param1, gS_ZoneNames[gA_ZoneCache[id].iZoneType], gA_ZoneCache[id].iDatabaseID, gS_Map); char sQuery[256]; FormatEx(sQuery, 256, "DELETE FROM %smapzones WHERE %s = %d;", gS_MySQLPrefix, (gB_MySQL)? "id":"rowid", gA_ZoneCache[id].iDatabaseID); DataPack hDatapack = new DataPack(); hDatapack.WriteCell(GetClientSerial(param1)); hDatapack.WriteCell(gA_ZoneCache[id].iZoneType); gH_SQL.Query(SQL_DeleteZone_Callback, sQuery, hDatapack); } } } else if(action == MenuAction_End) { delete menu; } return 0; } public void SQL_DeleteZone_Callback(Database db, DBResultSet results, const char[] error, DataPack data) { data.Reset(); int client = GetClientFromSerial(data.ReadCell()); int type = data.ReadCell(); delete data; if(results == null) { LogError("Timer (single zone delete) SQL query failed. Reason: %s", error); return; } UnloadZones(type); RefreshZones(); if(client == 0) { return; } Shavit_PrintToChat(client, "%T", "ZoneDeleteSuccessful", client, gS_ChatStrings.sVariable, gS_ZoneNames[type], gS_ChatStrings.sText); } public Action Command_DeleteAllZones(int client, int args) { if(!IsValidClient(client)) { return Plugin_Handled; } Menu menu = new Menu(MenuHandler_DeleteAllZones); menu.SetTitle("%T", "ZoneMenuDeleteALLTitle", client); char sMenuItem[64]; for(int i = 1; i <= GetRandomInt(1, 4); i++) { FormatEx(sMenuItem, 64, "%T", "ZoneMenuNo", client); menu.AddItem("-1", sMenuItem); } FormatEx(sMenuItem, 64, "%T", "ZoneMenuYes", client); menu.AddItem("yes", sMenuItem); for(int i = 1; i <= GetRandomInt(1, 3); i++) { FormatEx(sMenuItem, 64, "%T", "ZoneMenuNo", client); menu.AddItem("-1", sMenuItem); } menu.ExitButton = true; menu.Display(client, 20); return Plugin_Handled; } public int MenuHandler_DeleteAllZones(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char info[8]; menu.GetItem(param2, info, 8); int iInfo = StringToInt(info); if(iInfo == -1) { return; } Shavit_LogMessage("%L - deleted all zones from map `%s`.", param1, gS_Map); char sQuery[256]; FormatEx(sQuery, 256, "DELETE FROM %smapzones WHERE map = '%s';", gS_MySQLPrefix, gS_Map); gH_SQL.Query(SQL_DeleteAllZones_Callback, sQuery, GetClientSerial(param1)); } else if(action == MenuAction_End) { delete menu; } } public void SQL_DeleteAllZones_Callback(Database db, DBResultSet results, const char[] error, any data) { if(results == null) { LogError("Timer (single zone delete) SQL query failed. Reason: %s", error); return; } UnloadZones(0); int client = GetClientFromSerial(data); if(client == 0) { return; } Shavit_PrintToChat(client, "%T", "ZoneDeleteAllSuccessful", client); } public int MenuHandler_SelectZoneType(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char info[8]; menu.GetItem(param2, info, 8); gI_ZoneType[param1] = StringToInt(info); ShowPanel(param1, 1); } else if(action == MenuAction_End) { delete menu; } return 0; } void Reset(int client) { gI_ZoneTrack[client] = Track_Main; gF_Modifier[client] = 16.0; gI_MapStep[client] = 0; gI_GridSnap[client] = 16; gB_SnapToWall[client] = false; gB_CursorTracing[client] = true; gI_ZoneFlags[client] = 0; gI_ZoneData[client] = 0; gI_ZoneDatabaseID[client] = -1; gB_WaitingForChatInput[client] = false; for(int i = 0; i < 3; i++) { gV_Point1[client][i] = 0.0; gV_Point2[client][i] = 0.0; gV_Teleport[client][i] = 0.0; gV_WallSnap[client][i] = 0.0; } } void ShowPanel(int client, int step) { gI_MapStep[client] = step; if(step == 1) { CreateTimer(0.1, Timer_Draw, GetClientSerial(client), TIMER_REPEAT); } Panel pPanel = new Panel(); char sPanelText[128]; char sFirst[64]; char sSecond[64]; FormatEx(sFirst, 64, "%T", "ZoneFirst", client); FormatEx(sSecond, 64, "%T", "ZoneSecond", client); if(gEV_Type == Engine_TF2) { FormatEx(sPanelText, 128, "%T", "ZonePlaceTextTF2", client, (step == 1)? sFirst:sSecond); } else { FormatEx(sPanelText, 128, "%T", "ZonePlaceText", client, (step == 1)? sFirst:sSecond); } pPanel.DrawItem(sPanelText, ITEMDRAW_RAWLINE); char sPanelItem[64]; FormatEx(sPanelItem, 64, "%T", "AbortZoneCreation", client); pPanel.DrawItem(sPanelItem); char sDisplay[64]; FormatEx(sDisplay, 64, "%T", "GridSnapPlus", client, gI_GridSnap[client]); pPanel.DrawItem(sDisplay); FormatEx(sDisplay, 64, "%T", "GridSnapMinus", client); pPanel.DrawItem(sDisplay); FormatEx(sDisplay, 64, "%T", "WallSnap", client, (gB_SnapToWall[client])? "ZoneSetYes":"ZoneSetNo", client); pPanel.DrawItem(sDisplay); FormatEx(sDisplay, 64, "%T", "CursorZone", client, (gB_CursorTracing[client])? "ZoneSetYes":"ZoneSetNo", client); pPanel.DrawItem(sDisplay); pPanel.Send(client, ZoneCreation_Handler, 600); delete pPanel; } public int ZoneCreation_Handler(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { switch(param2) { case 1: { Reset(param1); return 0; } case 2: { gI_GridSnap[param1] *= 2; if(gI_GridSnap[param1] > 64) { gI_GridSnap[param1] = 1; } } case 3: { gI_GridSnap[param1] /= 2; if(gI_GridSnap[param1] < 1) { gI_GridSnap[param1] = 64; } } case 4: { gB_SnapToWall[param1] = !gB_SnapToWall[param1]; if(gB_SnapToWall[param1]) { gB_CursorTracing[param1] = false; if(gI_GridSnap[param1] < 32) { gI_GridSnap[param1] = 32; } } } case 5: { gB_CursorTracing[param1] = !gB_CursorTracing[param1]; if(gB_CursorTracing[param1]) { gB_SnapToWall[param1] = false; } } } ShowPanel(param1, gI_MapStep[param1]); } else if(action == MenuAction_End) { delete menu; } return 0; } float[] SnapToGrid(float pos[3], int grid, bool third) { float origin[3]; origin = pos; origin[0] = float(RoundToNearest(pos[0] / grid) * grid); origin[1] = float(RoundToNearest(pos[1] / grid) * grid); if(third) { origin[2] = float(RoundToNearest(pos[2] / grid) * grid); } return origin; } bool SnapToWall(float pos[3], int client, float final[3]) { bool hit = false; float end[3]; float temp[3]; float prefinal[3]; prefinal = pos; for(int i = 0; i < 4; i++) { end = pos; int axis = (i / 2); end[axis] += (((i % 2) == 1)? -gI_GridSnap[client]:gI_GridSnap[client]); TR_TraceRayFilter(pos, end, MASK_SOLID, RayType_EndPoint, TraceFilter_NoClients, client); if(TR_DidHit()) { TR_GetEndPosition(temp); prefinal[axis] = temp[axis]; hit = true; } } if(hit && GetVectorDistance(prefinal, pos) <= gI_GridSnap[client]) { final = SnapToGrid(prefinal, gI_GridSnap[client], false); return true; } return false; } public bool TraceFilter_NoClients(int entity, int contentsMask, any data) { return (entity != data && !IsValidClient(data)); } float[] GetAimPosition(int client) { float pos[3]; GetClientEyePosition(client, pos); float angles[3]; GetClientEyeAngles(client, angles); TR_TraceRayFilter(pos, angles, MASK_SHOT, RayType_Infinite, TraceFilter_NoClients, client); if(TR_DidHit()) { float end[3]; TR_GetEndPosition(end); return SnapToGrid(end, gI_GridSnap[client], true); } return pos; } public bool TraceFilter_World(int entity, int contentsMask) { return (entity == 0); } public Action Shavit_OnUserCmdPre(int client, int &buttons, int &impulse, float vel[3], float angles[3], TimerStatus status, int track, int style, stylesettings_t stylesettings) { if(gI_MapStep[client] > 0 && gI_MapStep[client] != 3) { int button = (gEV_Type == Engine_TF2)? IN_ATTACK2:IN_USE; if((buttons & button) > 0) { if(!gB_Button[client]) { float vPlayerOrigin[3]; GetClientAbsOrigin(client, vPlayerOrigin); float origin[3]; if(gB_CursorTracing[client]) { origin = GetAimPosition(client); } else if(!(gB_SnapToWall[client] && SnapToWall(vPlayerOrigin, client, origin))) { origin = SnapToGrid(vPlayerOrigin, gI_GridSnap[client], false); } else { gV_WallSnap[client] = origin; } origin[2] = vPlayerOrigin[2]; if(gI_MapStep[client] == 1) { gV_Point1[client] = origin; gV_Point1[client][2] += 1.0; ShowPanel(client, 2); } else if(gI_MapStep[client] == 2) { origin[2] += gCV_Height.FloatValue; gV_Point2[client] = origin; gI_MapStep[client]++; CreateEditMenu(client); } } gB_Button[client] = true; } else { gB_Button[client] = false; } } if(InsideZone(client, Zone_Slide, (gCV_EnforceTracks.BoolValue)? track:-1) && GetEntPropEnt(client, Prop_Send, "m_hGroundEntity") == -1) { // trace down, see if there's 8 distance or less to ground float fPosition[3]; GetClientAbsOrigin(client, fPosition); TR_TraceRayFilter(fPosition, view_as({90.0, 0.0, 0.0}), MASK_PLAYERSOLID, RayType_Infinite, TRFilter_NoPlayers, client); float fGroundPosition[3]; if(TR_DidHit() && TR_GetEndPosition(fGroundPosition) && GetVectorDistance(fPosition, fGroundPosition) <= 8.0) { float fSpeed[3]; GetEntPropVector(client, Prop_Data, "m_vecAbsVelocity", fSpeed); fSpeed[2] = 8.0 * GetEntityGravity(client) * GetEntPropFloat(client, Prop_Data, "m_flLaggedMovementValue") * (sv_gravity.FloatValue / 800); TeleportEntity(client, NULL_VECTOR, NULL_VECTOR, fSpeed); } } return Plugin_Continue; } public bool TRFilter_NoPlayers(int entity, int mask, any data) { return (entity != view_as(data) || (entity < 1 || entity > MaxClients)); } public int CreateZoneConfirm_Handler(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char sInfo[16]; menu.GetItem(param2, sInfo, 16); if(StrEqual(sInfo, "yes")) { InsertZone(param1); gI_MapStep[param1] = 0; return 0; } else if(StrEqual(sInfo, "no")) { Reset(param1); return 0; } else if(StrEqual(sInfo, "adjust")) { CreateAdjustMenu(param1, 0); return 0; } else if(StrEqual(sInfo, "tpzone")) { UpdateTeleportZone(param1); } else if(StrEqual(sInfo, "datafromchat")) { gI_ZoneData[param1] = 0; gB_WaitingForChatInput[param1] = true; Shavit_PrintToChat(param1, "%T", "ZoneEnterDataChat", param1); return 0; } else if(StrEqual(sInfo, "forcerender")) { gI_ZoneFlags[param1] ^= ZF_ForceRender; } CreateEditMenu(param1); } else if(action == MenuAction_End) { delete menu; } return 0; } public Action OnClientSayCommand(int client, const char[] command, const char[] sArgs) { if(gB_WaitingForChatInput[client] && gI_MapStep[client] == 3) { gI_ZoneData[client] = StringToInt(sArgs); CreateEditMenu(client); return Plugin_Handled; } return Plugin_Continue; } void GetTrackName(int client, int track, char[] output, int size) { if(track < 0 || track >= TRACKS_SIZE) { FormatEx(output, size, "%T", "Track_Unknown", client); return; } static char sTrack[16]; FormatEx(sTrack, 16, "Track_%d", track); FormatEx(output, size, "%T", sTrack, client); } void UpdateTeleportZone(int client) { float vTeleport[3]; GetClientAbsOrigin(client, vTeleport); vTeleport[2] += 2.0; bool bInside = true; for(int i = 0; i < 3; i++) { if(gV_Point1[client][i] >= vTeleport[i] == gV_Point2[client][i] >= vTeleport[i]) { bInside = false; } } if(bInside) { Shavit_PrintToChat(client, "%T", "ZoneTeleportInsideZone", client); } else { gV_Teleport[client] = vTeleport; Shavit_PrintToChat(client, "%T", "ZoneTeleportUpdated", client); } } void CreateEditMenu(int client) { char sTrack[32]; GetTrackName(client, gI_ZoneTrack[client], sTrack, 32); Menu menu = new Menu(CreateZoneConfirm_Handler); menu.SetTitle("%T\n%T\n ", "ZoneEditConfirm", client, "ZoneEditTrack", client, sTrack); char sMenuItem[64]; if(gI_ZoneType[client] == Zone_Teleport) { if(EmptyVector(gV_Teleport[client])) { FormatEx(sMenuItem, 64, "%T", "ZoneSetTP", client); menu.AddItem("-1", sMenuItem, ITEMDRAW_DISABLED); } else { FormatEx(sMenuItem, 64, "%T", "ZoneSetYes", client); menu.AddItem("yes", sMenuItem); } FormatEx(sMenuItem, 64, "%T", "ZoneSetTPZone", client); menu.AddItem("tpzone", sMenuItem); } else { FormatEx(sMenuItem, 64, "%T", "ZoneSetYes", client); menu.AddItem("yes", sMenuItem); } FormatEx(sMenuItem, 64, "%T", "ZoneSetNo", client); menu.AddItem("no", sMenuItem); FormatEx(sMenuItem, 64, "%T", "ZoneSetAdjust", client); menu.AddItem("adjust", sMenuItem); FormatEx(sMenuItem, 64, "%T", "ZoneForceRender", client, ((gI_ZoneFlags[client] & ZF_ForceRender) > 0)? "+":"-"); menu.AddItem("forcerender", sMenuItem); if(gI_ZoneType[client] == Zone_Airaccelerate) { FormatEx(sMenuItem, 64, "%T", "ZoneSetAiraccelerate", client, gI_ZoneData[client]); menu.AddItem("datafromchat", sMenuItem); } else if(gI_ZoneType[client] == Zone_CustomSpeedLimit) { if(gI_ZoneData[client] == 0) { FormatEx(sMenuItem, 64, "%T", "ZoneSetSpeedLimitUnlimited", client, gI_ZoneData[client]); } else { FormatEx(sMenuItem, 64, "%T", "ZoneSetSpeedLimit", client, gI_ZoneData[client]); } menu.AddItem("datafromchat", sMenuItem); } menu.ExitButton = true; menu.Display(client, 600); } void CreateAdjustMenu(int client, int page) { Menu hMenu = new Menu(ZoneAdjuster_Handler); char sMenuItem[64]; hMenu.SetTitle("%T", "ZoneAdjustPosition", client); FormatEx(sMenuItem, 64, "%T", "ZoneAdjustDone", client); hMenu.AddItem("done", sMenuItem); FormatEx(sMenuItem, 64, "%T", "ZoneAdjustCancel", client); hMenu.AddItem("cancel", sMenuItem); char sAxis[4]; strcopy(sAxis, 4, "XYZ"); char sDisplay[32]; char sInfo[16]; for(int iPoint = 1; iPoint <= 2; iPoint++) { for(int iAxis = 0; iAxis < 3; iAxis++) { for(int iState = 1; iState <= 2; iState++) { FormatEx(sDisplay, 32, "%T %c%.01f", "ZonePoint", client, iPoint, sAxis[iAxis], (iState == 1)? '+':'-', gF_Modifier[client]); FormatEx(sInfo, 16, "%d;%d;%d", iPoint, iAxis, iState); hMenu.AddItem(sInfo, sDisplay); } } } hMenu.ExitButton = false; hMenu.DisplayAt(client, page, MENU_TIME_FOREVER); } public int ZoneAdjuster_Handler(Menu menu, MenuAction action, int param1, int param2) { if(action == MenuAction_Select) { char sInfo[16]; menu.GetItem(param2, sInfo, 16); if(StrEqual(sInfo, "done")) { CreateEditMenu(param1); } else if(StrEqual(sInfo, "cancel")) { Reset(param1); } else { char sAxis[4]; strcopy(sAxis, 4, "XYZ"); char sExploded[3][8]; ExplodeString(sInfo, ";", sExploded, 3, 8); int iPoint = StringToInt(sExploded[0]); int iAxis = StringToInt(sExploded[1]); bool bIncrease = view_as(StringToInt(sExploded[2]) == 1); ((iPoint == 1)? gV_Point1:gV_Point2)[param1][iAxis] += ((bIncrease)? gF_Modifier[param1]:-gF_Modifier[param1]); Shavit_PrintToChat(param1, "%T", (bIncrease)? "ZoneSizeIncrease":"ZoneSizeDecrease", param1, gS_ChatStrings.sVariable2, sAxis[iAxis], gS_ChatStrings.sText, iPoint, gS_ChatStrings.sVariable, gF_Modifier[param1], gS_ChatStrings.sText); CreateAdjustMenu(param1, GetMenuSelectionPosition()); } } else if(action == MenuAction_End) { delete menu; } return 0; } void InsertZone(int client) { int iType = gI_ZoneType[client]; int iIndex = GetZoneIndex(iType, gI_ZoneTrack[client]); bool bInsert = (gI_ZoneDatabaseID[client] == -1 && (iIndex == -1 || iType >= Zone_Respawn)); char sQuery[512]; if(iType == Zone_CustomSpawn) { Shavit_LogMessage("%L - added custom spawn {%.2f, %.2f, %.2f} to map `%s`.", client, gV_Point1[client][0], gV_Point1[client][1], gV_Point1[client][2], gS_Map); FormatEx(sQuery, 512, "INSERT INTO %smapzones (map, type, destination_x, destination_y, destination_z, track) VALUES ('%s', %d, '%.03f', '%.03f', '%.03f', %d);", gS_MySQLPrefix, gS_Map, Zone_CustomSpawn, gV_Point1[client][0], gV_Point1[client][1], gV_Point1[client][2], gI_ZoneTrack[client]); } else if(bInsert) // insert { Shavit_LogMessage("%L - added %s to map `%s`.", client, gS_ZoneNames[iType], gS_Map); FormatEx(sQuery, 512, "INSERT INTO %smapzones (map, type, corner1_x, corner1_y, corner1_z, corner2_x, corner2_y, corner2_z, destination_x, destination_y, destination_z, track, flags, data) VALUES ('%s', %d, '%.03f', '%.03f', '%.03f', '%.03f', '%.03f', '%.03f', '%.03f', '%.03f', '%.03f', %d, %d, %d);", gS_MySQLPrefix, gS_Map, iType, gV_Point1[client][0], gV_Point1[client][1], gV_Point1[client][2], gV_Point2[client][0], gV_Point2[client][1], gV_Point2[client][2], gV_Teleport[client][0], gV_Teleport[client][1], gV_Teleport[client][2], gI_ZoneTrack[client], gI_ZoneFlags[client], gI_ZoneData[client]); } else // update { Shavit_LogMessage("%L - updated %s in map `%s`.", client, gS_ZoneNames[iType], gS_Map); if(gI_ZoneDatabaseID[client] == -1) { for(int i = 0; i < gI_MapZones; i++) { if(gA_ZoneCache[i].bZoneInitialized && gA_ZoneCache[i].iZoneType == iType && gA_ZoneCache[i].iZoneTrack == gI_ZoneTrack[client]) { gI_ZoneDatabaseID[client] = gA_ZoneCache[i].iDatabaseID; } } } FormatEx(sQuery, 512, "UPDATE %smapzones SET corner1_x = '%.03f', corner1_y = '%.03f', corner1_z = '%.03f', corner2_x = '%.03f', corner2_y = '%.03f', corner2_z = '%.03f', destination_x = '%.03f', destination_y = '%.03f', destination_z = '%.03f', track = %d, flags = %d, data = %d WHERE %s = %d;", gS_MySQLPrefix, gV_Point1[client][0], gV_Point1[client][1], gV_Point1[client][2], gV_Point2[client][0], gV_Point2[client][1], gV_Point2[client][2], gV_Teleport[client][0], gV_Teleport[client][1], gV_Teleport[client][2], gI_ZoneTrack[client], gI_ZoneFlags[client], gI_ZoneData[client], (gB_MySQL)? "id":"rowid", gI_ZoneDatabaseID[client]); } gH_SQL.Query(SQL_InsertZone_Callback, sQuery, GetClientSerial(client)); } public void SQL_InsertZone_Callback(Database db, DBResultSet results, const char[] error, any data) { if(results == null) { LogError("Timer (zone insert) SQL query failed. Reason: %s", error); return; } int client = GetClientFromSerial(data); if(client == 0) { return; } if(gI_ZoneType[client] == Zone_CustomSpawn) { Shavit_PrintToChat(client, "%T", "ZoneCustomSpawnSuccess", client); } UnloadZones(0); RefreshZones(); Reset(client); } public Action Timer_DrawEverything(Handle Timer) { if(gI_MapZones == 0) { return Plugin_Continue; } static int iCycle = 0; static int iMaxZonesPerFrame = 5; if(iCycle >= gI_MapZones) { iCycle = 0; } for(int i = iCycle; i < gI_MapZones; i++) { if(gA_ZoneCache[i].bZoneInitialized) { int type = gA_ZoneCache[i].iZoneType; int track = gA_ZoneCache[i].iZoneTrack; if(gA_ZoneSettings[type][track].bVisible || (gA_ZoneCache[i].iZoneFlags & ZF_ForceRender) > 0) { DrawZone(gV_MapZones_Visual[i], GetZoneColors(type, track), RoundToCeil(float(gI_MapZones) / iMaxZonesPerFrame) * gCV_Interval.FloatValue, gA_ZoneSettings[type][track].fWidth, gA_ZoneSettings[type][track].bFlatZone, gV_ZoneCenter[i]); } } if(++iCycle % iMaxZonesPerFrame == 0) { return Plugin_Continue; } } iCycle = 0; return Plugin_Continue; } int[] GetZoneColors(int type, int track, int customalpha = 0) { int colors[4]; colors[0] = gA_ZoneSettings[type][track].iRed; colors[1] = gA_ZoneSettings[type][track].iGreen; colors[2] = gA_ZoneSettings[type][track].iBlue; colors[3] = (customalpha > 0)? customalpha:gA_ZoneSettings[type][track].iAlpha; return colors; } public Action Timer_Draw(Handle Timer, any data) { int client = GetClientFromSerial(data); if(client == 0 || gI_MapStep[client] == 0) { Reset(client); return Plugin_Stop; } float vPlayerOrigin[3]; GetClientAbsOrigin(client, vPlayerOrigin); float origin[3]; if(gB_CursorTracing[client]) { origin = GetAimPosition(client); } else if(!(gB_SnapToWall[client] && SnapToWall(vPlayerOrigin, client, origin))) { origin = SnapToGrid(vPlayerOrigin, gI_GridSnap[client], false); } else { gV_WallSnap[client] = origin; } if(gI_MapStep[client] == 1 || gV_Point2[client][0] == 0.0) { origin[2] = (vPlayerOrigin[2] + gCV_Height.FloatValue); } else { origin = gV_Point2[client]; } if(!EmptyVector(gV_Point1[client]) || !EmptyVector(gV_Point2[client])) { float points[8][3]; points[0] = gV_Point1[client]; points[7] = origin; CreateZonePoints(points, gCV_Offset.FloatValue); // This is here to make the zone setup grid snapping be 1:1 to how it looks when done with the setup. origin = points[7]; int type = gI_ZoneType[client]; int track = gI_ZoneTrack[client]; DrawZone(points, GetZoneColors(type, track, 125), 0.1, gA_ZoneSettings[type][track].fWidth, false, origin); if(gI_ZoneType[client] == Zone_Teleport && !EmptyVector(gV_Teleport[client])) { TE_SetupEnergySplash(gV_Teleport[client], NULL_VECTOR, false); TE_SendToAll(0.0); } } if(gI_MapStep[client] != 3 && !EmptyVector(origin)) { origin[2] -= gCV_Height.FloatValue; TE_SetupBeamPoints(vPlayerOrigin, origin, gI_BeamSprite, gI_HaloSprite, 0, 0, 0.1, 1.0, 1.0, 0, 0.0, {255, 255, 255, 75}, 0); TE_SendToAll(0.0); // visualize grid snap float snap1[3]; float snap2[3]; for(int i = 0; i < 3; i++) { snap1 = origin; snap1[i] -= (gI_GridSnap[client] / 2); snap2 = origin; snap2[i] += (gI_GridSnap[client] / 2); TE_SetupBeamPoints(snap1, snap2, gI_BeamSprite, gI_HaloSprite, 0, 0, 0.1, 1.0, 1.0, 0, 0.0, {255, 255, 255, 75}, 0); TE_SendToAll(0.0); } } return Plugin_Continue; } void DrawZone(float points[8][3], int color[4], float life, float width, bool flat, float center[3]) { static int pairs[][] = { { 0, 2 }, { 2, 6 }, { 6, 4 }, { 4, 0 }, { 0, 1 }, { 3, 1 }, { 3, 2 }, { 3, 7 }, { 5, 1 }, { 5, 4 }, { 6, 7 }, { 7, 5 } }; int[] clients = new int[MaxClients]; int count = 0; for(int i = 1; i <= MaxClients; i++) { if(IsClientInGame(i) && !IsFakeClient(i)) { float eyes[3]; GetClientEyePosition(i, eyes); if(GetVectorDistance(eyes, center) <= 1024.0 || (TR_TraceRayFilter(eyes, center, CONTENTS_SOLID, RayType_EndPoint, TraceFilter_World) && !TR_DidHit())) { clients[count++] = i; } } } for(int i = 0; i < ((flat)? 4:12); i++) { TE_SetupBeamPoints(points[pairs[i][0]], points[pairs[i][1]], gI_BeamSprite, gI_HaloSprite, 0, 0, life, width, width, 0, 0.0, color, 0); TE_Send(clients, count, 0.0); } } // original by blacky // creates 3d box from 2 points void CreateZonePoints(float point[8][3], float offset = 0.0) { // calculate all zone edges for(int i = 1; i < 7; i++) { for(int j = 0; j < 3; j++) { point[i][j] = point[((i >> (2 - j)) & 1) * 7][j]; } } // apply beam offset if(offset != 0.0) { float center[2]; center[0] = ((point[0][0] + point[7][0]) / 2); center[1] = ((point[0][1] + point[7][1]) / 2); for(int i = 0; i < 8; i++) { for(int j = 0; j < 2; j++) { if(point[i][j] < center[j]) { point[i][j] += offset; } else if(point[i][j] > center[j]) { point[i][j] -= offset; } } } } } void SQL_DBConnect() { GetTimerSQLPrefix(gS_MySQLPrefix, 32); gH_SQL = GetTimerDatabaseHandle(); gB_MySQL = IsMySQLDatabase(gH_SQL); char sQuery[1024]; FormatEx(sQuery, 1024, "CREATE TABLE IF NOT EXISTS `%smapzones` (`id` INT AUTO_INCREMENT, `map` VARCHAR(128), `type` INT, `corner1_x` FLOAT, `corner1_y` FLOAT, `corner1_z` FLOAT, `corner2_x` FLOAT, `corner2_y` FLOAT, `corner2_z` FLOAT, `destination_x` FLOAT NOT NULL DEFAULT 0, `destination_y` FLOAT NOT NULL DEFAULT 0, `destination_z` FLOAT NOT NULL DEFAULT 0, `track` INT NOT NULL DEFAULT 0, `flags` INT NOT NULL DEFAULT 0, `data` INT NOT NULL DEFAULT 0, PRIMARY KEY (`id`))%s;", gS_MySQLPrefix, (gB_MySQL)? " ENGINE=INNODB":""); gH_SQL.Query(SQL_CreateTable_Callback, sQuery); } public void SQL_CreateTable_Callback(Database db, DBResultSet results, const char[] error, any data) { if(results == null) { LogError("Timer (zones module) error! Map zones' table creation failed. Reason: %s", error); return; } gB_Connected = true; OnMapStart(); } public void Shavit_OnRestart(int client, int track) { if(gCV_TeleportToStart.BoolValue) { int iIndex = -1; // custom spawns if(!EmptyVector(gF_CustomSpawn[track])) { TeleportEntity(client, gF_CustomSpawn[track], NULL_VECTOR, view_as({0.0, 0.0, 0.0})); } // standard zoning else if((iIndex = GetZoneIndex(Zone_Start, track)) != -1) { float fCenter[3]; fCenter[0] = gV_ZoneCenter[iIndex][0]; fCenter[1] = gV_ZoneCenter[iIndex][1]; fCenter[2] = gV_MapZones[iIndex][0][2]; TeleportEntity(client, fCenter, NULL_VECTOR, view_as({0.0, 0.0, 0.0})); } // prebuilt map zones else if(!EmptyVector(gF_PrebuiltZones[track][Zone_Start])) { TeleportEntity(client, gF_PrebuiltZones[track][Zone_Start], NULL_VECTOR, view_as({0.0, 0.0, 0.0})); } // kz buttons else if(Shavit_IsKZMap() && !EmptyVector(gF_ClimbButtonCache[client][track][0]) && !EmptyVector(gF_ClimbButtonCache[client][track][1])) { TeleportEntity(client, gF_ClimbButtonCache[client][track][0], gF_ClimbButtonCache[client][track][1], view_as({0.0, 0.0, 0.0})); return; } Shavit_StartTimer(client, track); } } public void Shavit_OnEnd(int client, int track) { if(gCV_TeleportToEnd.BoolValue) { int iIndex = -1; if((iIndex = GetZoneIndex(Zone_End, track)) != -1) { float fCenter[3]; fCenter[0] = gV_ZoneCenter[iIndex][0]; fCenter[1] = gV_ZoneCenter[iIndex][1]; fCenter[2] = gV_MapZones[iIndex][0][2]; TeleportEntity(client, fCenter, NULL_VECTOR, view_as({0.0, 0.0, 0.0})); } else if(!EmptyVector(gF_PrebuiltZones[track][Zone_End])) { TeleportEntity(client, gF_PrebuiltZones[track][Zone_End], NULL_VECTOR, view_as({0.0, 0.0, 0.0})); } } } bool EmptyVector(float vec[3]) { return (IsNullVector(vec) || (vec[0] == 0.0 && vec[1] == 0.0 && vec[2] == 0.0)); } // returns -1 if there's no zone int GetZoneIndex(int type, int track, int start = 0) { if(gI_MapZones == 0) { return -1; } for(int i = start; i < gI_MapZones; i++) { if(gA_ZoneCache[i].bZoneInitialized && gA_ZoneCache[i].iZoneType == type && (gA_ZoneCache[i].iZoneTrack == track || track == -1)) { return i; } } return -1; } public void Player_Spawn(Event event, const char[] name, bool dontBroadcast) { Reset(GetClientOfUserId(event.GetInt("userid"))); } public void Round_Start(Event event, const char[] name, bool dontBroadcast) { for(int i = 0; i < TRACKS_SIZE; i++) { gI_KZButtons[i][0] = -1; gI_KZButtons[i][1] = -1; } gB_ZonesCreated = false; RequestFrame(Frame_CreateZoneEntities); } public void Frame_CreateZoneEntities(any data) { CreateZoneEntities(); } float Abs(float input) { if(input < 0.0) { return -input; } return input; } public void CreateZoneEntities() { if(gB_ZonesCreated) { return; } for(int i = 0; i < gI_MapZones; i++) { for(int j = 1; j <= MaxClients; j++) { for(int k = 0; k < TRACKS_SIZE; k++) { gB_InsideZone[j][gA_ZoneCache[i].iZoneType][k] = false; } gB_InsideZoneID[j][i] = false; } if(gA_ZoneCache[i].iEntityID != -1) { KillZoneEntity(i); gA_ZoneCache[i].iEntityID = -1; } if(!gA_ZoneCache[i].bZoneInitialized) { continue; } int entity = CreateEntityByName("trigger_multiple"); if(entity == -1) { LogError("\"trigger_multiple\" creation failed, map %s.", gS_Map); continue; } DispatchKeyValue(entity, "wait", "0"); DispatchKeyValue(entity, "spawnflags", "4097"); if(!DispatchSpawn(entity)) { LogError("\"trigger_multiple\" spawning failed, map %s.", gS_Map); continue; } ActivateEntity(entity); SetEntityModel(entity, (gEV_Type == Engine_TF2)? "models/error.mdl":"models/props/cs_office/vending_machine.mdl"); SetEntProp(entity, Prop_Send, "m_fEffects", 32); TeleportEntity(entity, gV_ZoneCenter[i], NULL_VECTOR, NULL_VECTOR); float distance_x = Abs(gV_MapZones[i][0][0] - gV_MapZones[i][1][0]) / 2; float distance_y = Abs(gV_MapZones[i][0][1] - gV_MapZones[i][1][1]) / 2; float distance_z = Abs(gV_MapZones[i][0][2] - gV_MapZones[i][1][2]) / 2; float height = ((IsSource2013(gEV_Type))? 62.0:72.0) / 2; float min[3]; min[0] = -distance_x + 16.0; min[1] = -distance_y + 16.0; min[2] = -distance_z + height; SetEntPropVector(entity, Prop_Send, "m_vecMins", min); float max[3]; max[0] = distance_x - 16.0; max[1] = distance_y - 16.0; max[2] = distance_z - height; SetEntPropVector(entity, Prop_Send, "m_vecMaxs", max); SetEntProp(entity, Prop_Send, "m_nSolidType", 2); SDKHook(entity, SDKHook_StartTouchPost, StartTouchPost); SDKHook(entity, SDKHook_EndTouchPost, EndTouchPost); SDKHook(entity, SDKHook_TouchPost, TouchPost); gI_EntityZone[entity] = i; gA_ZoneCache[i].iEntityID = entity; char sTargetname[32]; FormatEx(sTargetname, 32, "shavit_zones_%d_%d", gA_ZoneCache[i].iZoneTrack, gA_ZoneCache[i].iZoneType); DispatchKeyValue(entity, "targetname", sTargetname); gB_ZonesCreated = true; } } public void StartTouchPost(int entity, int other) { if(other < 1 || other > MaxClients || gI_EntityZone[entity] == -1 || !gA_ZoneCache[gI_EntityZone[entity]].bZoneInitialized || IsFakeClient(other) || (gCV_EnforceTracks.BoolValue && gA_ZoneCache[gI_EntityZone[entity]].iZoneType > Zone_End && gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack != Shavit_GetClientTrack(other))) { return; } TimerStatus status = Shavit_GetTimerStatus(other); switch(gA_ZoneCache[gI_EntityZone[entity]].iZoneType) { case Zone_Respawn: { CS_RespawnPlayer(other); } case Zone_Teleport: { TeleportEntity(other, gV_Destinations[gI_EntityZone[entity]], NULL_VECTOR, NULL_VECTOR); } case Zone_Slay: { Shavit_StopTimer(other); ForcePlayerSuicide(other); Shavit_PrintToChat(other, "%T", "ZoneSlayEnter", other, gS_ChatStrings.sWarning, gS_ChatStrings.sVariable2, gS_ChatStrings.sWarning); } case Zone_Stop: { if(status != Timer_Stopped) { Shavit_StopTimer(other); Shavit_PrintToChat(other, "%T", "ZoneStopEnter", other, gS_ChatStrings.sWarning, gS_ChatStrings.sVariable2, gS_ChatStrings.sWarning); } } case Zone_End: { if(status != Timer_Stopped && Shavit_GetClientTrack(other) == gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack) { Shavit_FinishMap(other, gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack); } } } gB_InsideZone[other][gA_ZoneCache[gI_EntityZone[entity]].iZoneType][gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack] = true; gB_InsideZoneID[other][gI_EntityZone[entity]] = true; Call_StartForward(gH_Forwards_EnterZone); Call_PushCell(other); Call_PushCell(gA_ZoneCache[gI_EntityZone[entity]].iZoneType); Call_PushCell(gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack); Call_PushCell(gI_EntityZone[entity]); Call_PushCell(entity); Call_Finish(); } public void EndTouchPost(int entity, int other) { if(other < 1 || other > MaxClients || gI_EntityZone[entity] == -1 || gI_EntityZone[entity] >= sizeof(gA_ZoneCache) || IsFakeClient(other)) { return; } int entityzone = gI_EntityZone[entity]; int type = gA_ZoneCache[entityzone].iZoneType; int track = gA_ZoneCache[entityzone].iZoneTrack; gB_InsideZone[other][type][track] = false; gB_InsideZoneID[other][entityzone] = false; Call_StartForward(gH_Forwards_LeaveZone); Call_PushCell(other); Call_PushCell(type); Call_PushCell(track); Call_PushCell(entityzone); Call_PushCell(entity); Call_Finish(); } public void TouchPost(int entity, int other) { if(other < 1 || other > MaxClients || gI_EntityZone[entity] == -1 || IsFakeClient(other) || (gCV_EnforceTracks.BoolValue && gA_ZoneCache[gI_EntityZone[entity]].iZoneType > Zone_End && gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack != Shavit_GetClientTrack(other))) { return; } // do precise stuff here, this will be called *A LOT* switch(gA_ZoneCache[gI_EntityZone[entity]].iZoneType) { case Zone_Start: { // start timer instantly for main track, but require bonuses to have the current timer stopped // so you don't accidentally step on those while running if(Shavit_GetTimerStatus(other) == Timer_Stopped || Shavit_GetClientTrack(other) != Track_Main) { Shavit_StartTimer(other, gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack); } else if(gA_ZoneCache[gI_EntityZone[entity]].iZoneTrack == Track_Main) { Shavit_StartTimer(other, Track_Main); } } } } void GetButtonInfo(int entity, int &zone, int &track) { for(int i = 0; i < TRACKS_SIZE; i++) { for(int j = 0; j < 2; j++) { if(gI_KZButtons[i][j] == entity) { zone = j; track = i; return; } } } } public void UsePost(int entity, int activator, int caller, UseType type, float value) { if(activator < 1 || activator > MaxClients || IsFakeClient(activator) || GetEntPropEnt(activator, Prop_Send, "m_hGroundEntity") == -1) { return; } int zone = -1; int track = Track_Main; GetButtonInfo(entity, zone, track); if(zone == Zone_Start) { GetClientAbsOrigin(activator, gF_ClimbButtonCache[activator][track][0]); GetClientEyeAngles(activator, gF_ClimbButtonCache[activator][track][1]); Shavit_StartTimer(activator, track); } if(zone == Zone_End && Shavit_GetTimerStatus(activator) == Timer_Running && Shavit_GetClientTrack(activator) == track) { Shavit_FinishMap(activator, track); } } public void StartTouchPost_Trigger(int entity, int other) { if(other < 1 || other > MaxClients || IsFakeClient(other)) { return; } int zone = -1; int track = Track_Main; GetButtonInfo(entity, zone, track); if(zone == -1 || GetZoneIndex(zone, track) != -1) { return; } TimerStatus status = Shavit_GetTimerStatus(other); if(zone == Zone_End && status != Timer_Stopped && Shavit_GetClientTrack(other) == track) { Shavit_FinishMap(other, track); } gB_InsideZone[other][zone][track] = true; Call_StartForward(gH_Forwards_EnterZone); Call_PushCell(other); Call_PushCell(zone); Call_PushCell(track); Call_PushCell(0); Call_PushCell(entity); Call_Finish(); } public void EndTouchPost_Trigger(int entity, int other) { if(other < 1 || other > MaxClients || IsFakeClient(other)) { return; } int zone = -1; int track = Track_Main; GetButtonInfo(entity, zone, track); if(zone == -1 || GetZoneIndex(zone, track) != -1) { return; } gB_InsideZone[other][zone][track] = false; Call_StartForward(gH_Forwards_LeaveZone); Call_PushCell(other); Call_PushCell(zone); Call_PushCell(track); Call_PushCell(0); Call_PushCell(entity); Call_Finish(); } public void TouchPost_Trigger(int entity, int other) { if(other < 1 || other > MaxClients || IsFakeClient(other)) { return; } int zone = -1; int track = Track_Main; GetButtonInfo(entity, zone, track); if(zone == -1 || GetZoneIndex(zone, track) != -1) { return; } if(zone == Zone_Start) { if(Shavit_GetTimerStatus(other) == Timer_Stopped || Shavit_GetClientTrack(other) != Track_Main) { Shavit_StartTimer(other, track); } else if(track == Track_Main) { Shavit_StartTimer(other, Track_Main); } } }