summaryrefslogtreecommitdiff
path: root/sourcemod-1.5-dev/scripting/include/smlib/edicts.inc
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-1.5-dev/scripting/include/smlib/edicts.inc
parent341db13a008dc12bb22ceb50452d93d01476308c (diff)
move source stuff to its own folder
Diffstat (limited to 'sourcemod-1.5-dev/scripting/include/smlib/edicts.inc')
-rw-r--r--sourcemod-1.5-dev/scripting/include/smlib/edicts.inc127
1 files changed, 0 insertions, 127 deletions
diff --git a/sourcemod-1.5-dev/scripting/include/smlib/edicts.inc b/sourcemod-1.5-dev/scripting/include/smlib/edicts.inc
deleted file mode 100644
index 7b719aa..0000000
--- a/sourcemod-1.5-dev/scripting/include/smlib/edicts.inc
+++ /dev/null
@@ -1,127 +0,0 @@
-#if defined _smlib_edicts_included
- #endinput
-#endif
-#define _smlib_edicts_included
-
-#include <sourcemod>
-#include <smlib/entities>
-
-/*
- * Finds an edict by it's name
- * It only finds the first occurence.
- *
- * @param name Name of the entity you want so search.
- * @return Edict Index or INVALID_ENT_REFERENCE if no entity was found.
- */
-stock Edict_FindByName(const String:name[])
-{
- new maxEntities = GetMaxEntities();
- for (new edict=0; edict < maxEntities; edict++) {
-
- if (!IsValidEdict(edict)) {
- continue;
- }
-
- if (Entity_NameMatches(edict, name)) {
- return edict;
- }
- }
-
- return INVALID_ENT_REFERENCE;
-}
-
-/*
- * Finds an edict by its HammerID.
- * The newer version of Valve's Hammer editor
- * sets a unique ID for each entity in a map.
- * It only finds the first occurence.
- *
- * @param hammerId Hammer editor ID
- * @return Edict Index or INVALID_ENT_REFERENCE if no entity was found.
- */
-stock Edict_FindByHammerId(hammerId)
-{
- new maxEntities = GetMaxEntities();
- for (new edict=0; edict < maxEntities; edict++) {
-
- if (!IsValidEdict(edict)) {
- continue;
- }
-
- if (Entity_GetHammerId(edict) == hammerId) {
- return edict;
- }
- }
-
- return INVALID_ENT_REFERENCE;
-}
-
-/**
- * Searches for the closest edict in relation to the given origin
- *
- * @param vecOrigin_center 3 dimensional origin array
- * @param clientsOnly True if you only want to search for clients
- * @param ignoreEntity Ignore this entity
- * @return Edict Index or INVALID_ENT_REFERENCE if no entity was found.
- */
-stock Edict_GetClosest(Float:vecOrigin_center[3], bool:clientsOnly=false, ignoreEntity=-1)
-{
- decl Float:vecOrigin_edict[3];
- new Float:smallestDistance = 0.0;
- new closestEdict = INVALID_ENT_REFERENCE;
-
- new maxEntities;
-
- if (clientsOnly) {
- maxEntities = MaxClients;
- }
- else {
- maxEntities = GetMaxEntities();
- }
-
- for (new edict=1; edict <= maxEntities; edict++) {
-
- if (!IsValidEdict(edict)) {
- continue;
- }
-
- if (ignoreEntity >= 0 && edict == ignoreEntity) {
- continue;
- }
-
- if (GetEntSendPropOffs(edict, "m_vecOrigin") == -1) {
- continue;
- }
-
- Entity_GetAbsOrigin(edict, vecOrigin_edict);
-
- new Float:edict_distance = GetVectorDistance(vecOrigin_center, vecOrigin_edict, true);
-
- if (edict_distance < smallestDistance || smallestDistance == 0.0) {
- smallestDistance = edict_distance;
- closestEdict = edict;
- }
- }
-
- return closestEdict;
-}
-
-/**
- * Searches for the closest edict in relation to the given edict.
- *
- * @param edict Edict index
- * @param clientsOnly True if you only want to search for clients
- * @return The closest edict or INVALID_ENT_REFERENCE
- */
-stock Edict_GetClosestToEdict(edict, bool:clientsOnly=false)
-{
- decl Float:vecOrigin[3];
-
- if (GetEntSendPropOffs(edict, "m_vecOrigin") == -1) {
- return INVALID_ENT_REFERENCE;
- }
-
- Entity_GetAbsOrigin(edict, vecOrigin);
-
- return Edict_GetClosest(vecOrigin, clientsOnly, edict);
-}