Core/AreaTriggers: Implementation for sever side area triggers
Port From (https://github.com/TrinityCore/TrinityCore/commit/0417c5ff5fd68cd3344dede35afaab364870561b)
This commit is contained in:
@@ -47,7 +47,8 @@ namespace Framework.Constants
|
|||||||
{
|
{
|
||||||
Cast = 0,
|
Cast = 0,
|
||||||
AddAura = 1,
|
AddAura = 1,
|
||||||
Max = 2
|
Teleport = 2,
|
||||||
|
Max = 3
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum AreaTriggerActionUserTypes
|
public enum AreaTriggerActionUserTypes
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ using Framework.Constants;
|
|||||||
using Framework.Database;
|
using Framework.Database;
|
||||||
using Framework.GameMath;
|
using Framework.GameMath;
|
||||||
using Game.Entities;
|
using Game.Entities;
|
||||||
|
using Game.Maps;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Game.DataStorage
|
namespace Game.DataStorage
|
||||||
@@ -27,6 +28,24 @@ namespace Game.DataStorage
|
|||||||
{
|
{
|
||||||
AreaTriggerDataStorage() { }
|
AreaTriggerDataStorage() { }
|
||||||
|
|
||||||
|
public AreaTriggerTemplate GetAreaTriggerServerTemplate(uint areaTriggerId)
|
||||||
|
{
|
||||||
|
return _areaTriggerTemplateMap.LookupByKey(new AreaTriggerTemplateKey(areaTriggerId, true));
|
||||||
|
}
|
||||||
|
|
||||||
|
public SortedSet<ulong> GetAreaTriggersForMapAndCell(uint mapId, uint cellId)
|
||||||
|
{
|
||||||
|
if (!_areaTriggersGrid.ContainsKey(mapId))
|
||||||
|
return null;
|
||||||
|
|
||||||
|
return _areaTriggersGrid[mapId].LookupByKey(cellId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AreaTriggerServerPosition GetAreaTriggerServerPosition(uint spawnId)
|
||||||
|
{
|
||||||
|
return _areaTriggerSpawnMap.LookupByKey(spawnId);
|
||||||
|
}
|
||||||
|
|
||||||
public void LoadAreaTriggerTemplates()
|
public void LoadAreaTriggerTemplates()
|
||||||
{
|
{
|
||||||
uint oldMSTime = Time.GetMSTime();
|
uint oldMSTime = Time.GetMSTime();
|
||||||
@@ -60,6 +79,17 @@ namespace Game.DataStorage
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (action.ActionType == AreaTriggerActionTypes.Teleport)
|
||||||
|
{
|
||||||
|
WorldSafeLocsEntry safeLoc = Global.ObjectMgr.GetWorldSafeLoc(action.Param);
|
||||||
|
if (safeLoc == null)
|
||||||
|
{
|
||||||
|
Log.outError(LogFilter.Sql, $"Table `areatrigger_template_actions` has invalid entry ({areaTriggerId}) with TargetType=Teleport and Param ({action.Param}) not a valid world safe loc entry");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
actionsByAreaTrigger.Add(areaTriggerId, action);
|
actionsByAreaTrigger.Add(areaTriggerId, action);
|
||||||
}
|
}
|
||||||
while (templateActions.NextRow());
|
while (templateActions.NextRow());
|
||||||
@@ -110,15 +140,16 @@ namespace Game.DataStorage
|
|||||||
Log.outInfo(LogFilter.ServerLoading, "Loaded 0 AreaTrigger templates splines. DB table `spell_areatrigger_splines` is empty.");
|
Log.outInfo(LogFilter.ServerLoading, "Loaded 0 AreaTrigger templates splines. DB table `spell_areatrigger_splines` is empty.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 0 1 2 3 4 5 6 7 8 9
|
// 0 1 2 3 4 5 6 7 8 9 10
|
||||||
SQLResult templates = DB.World.Query("SELECT Id, Type, Flags, Data0, Data1, Data2, Data3, Data4, Data5, ScriptName FROM `areatrigger_template`");
|
SQLResult templates = DB.World.Query("SELECT Id, IsServer, Type, Flags, Data0, Data1, Data2, Data3, Data4, Data5, ScriptName FROM `areatrigger_template`");
|
||||||
if (!templates.IsEmpty())
|
if (!templates.IsEmpty())
|
||||||
{
|
{
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
AreaTriggerTemplate areaTriggerTemplate = new AreaTriggerTemplate();
|
AreaTriggerTemplate areaTriggerTemplate = new AreaTriggerTemplate();
|
||||||
areaTriggerTemplate.Id = templates.Read<uint>(0);
|
areaTriggerTemplate.Id = templates.Read<uint>(0);
|
||||||
AreaTriggerTypes type = (AreaTriggerTypes)templates.Read<byte>(1);
|
bool isServer = templates.Read<byte>(1) == 1;
|
||||||
|
AreaTriggerTypes type = (AreaTriggerTypes)templates.Read<byte>(2);
|
||||||
|
|
||||||
if (type >= AreaTriggerTypes.Max)
|
if (type >= AreaTriggerTypes.Max)
|
||||||
{
|
{
|
||||||
@@ -127,25 +158,82 @@ namespace Game.DataStorage
|
|||||||
}
|
}
|
||||||
|
|
||||||
areaTriggerTemplate.TriggerType = type;
|
areaTriggerTemplate.TriggerType = type;
|
||||||
areaTriggerTemplate.Flags = (AreaTriggerFlags)templates.Read<uint>(2);
|
areaTriggerTemplate.Flags = (AreaTriggerFlags)templates.Read<uint>(3);
|
||||||
|
|
||||||
|
if (isServer && areaTriggerTemplate.Flags != 0)
|
||||||
|
{
|
||||||
|
Log.outError(LogFilter.Sql, $"Table `areatrigger_template` has listed server-side areatrigger (Id: {areaTriggerTemplate.Id}) with none-zero flags");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
unsafe
|
unsafe
|
||||||
{
|
{
|
||||||
for (byte i = 0; i < SharedConst.MaxAreatriggerEntityData; ++i)
|
for (byte i = 0; i < SharedConst.MaxAreatriggerEntityData; ++i)
|
||||||
areaTriggerTemplate.DefaultDatas.Data[i] = templates.Read<float>(3 + i);
|
areaTriggerTemplate.DefaultDatas.Data[i] = templates.Read<float>(4 + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
areaTriggerTemplate.ScriptId = Global.ObjectMgr.GetScriptId(templates.Read<string>(9));
|
areaTriggerTemplate.ScriptId = Global.ObjectMgr.GetScriptId(templates.Read<string>(10));
|
||||||
areaTriggerTemplate.PolygonVertices = verticesByAreaTrigger[areaTriggerTemplate.Id];
|
areaTriggerTemplate.PolygonVertices = verticesByAreaTrigger[areaTriggerTemplate.Id];
|
||||||
areaTriggerTemplate.PolygonVerticesTarget = verticesTargetByAreaTrigger[areaTriggerTemplate.Id];
|
areaTriggerTemplate.PolygonVerticesTarget = verticesTargetByAreaTrigger[areaTriggerTemplate.Id];
|
||||||
areaTriggerTemplate.Actions = actionsByAreaTrigger[areaTriggerTemplate.Id];
|
areaTriggerTemplate.Actions = actionsByAreaTrigger[areaTriggerTemplate.Id];
|
||||||
|
areaTriggerTemplate.IsServerSide = isServer;
|
||||||
|
|
||||||
areaTriggerTemplate.InitMaxSearchRadius();
|
areaTriggerTemplate.InitMaxSearchRadius();
|
||||||
_areaTriggerTemplateStore[areaTriggerTemplate.Id] = areaTriggerTemplate;
|
_areaTriggerTemplateMap[new AreaTriggerTemplateKey(areaTriggerTemplate.Id, isServer)] = areaTriggerTemplate;
|
||||||
}
|
}
|
||||||
while (templates.NextRow());
|
while (templates.NextRow());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Load area trigger positions (to put them on the server)
|
||||||
|
// 0 1 2 3 4 5 6 7 8 9 10
|
||||||
|
SQLResult templatePos = DB.World.Query("SELECT SpawnId, Id, IsServer, MapId, PosX, PosY, PosZ, PhaseId, PhaseGroup, PhaseUseFlags, Comment FROM `areatrigger_positions`");
|
||||||
|
if (!templatePos.IsEmpty())
|
||||||
|
{
|
||||||
|
do
|
||||||
|
{
|
||||||
|
AreaTriggerServerPosition position = new AreaTriggerServerPosition();
|
||||||
|
position.SpawnId = templatePos.Read<ulong>(0);
|
||||||
|
position.Id = templatePos.Read<uint>(1);
|
||||||
|
position.IsServer = templatePos.Read<byte>(2) == 1;
|
||||||
|
uint mapId = templatePos.Read<uint>(3);
|
||||||
|
|
||||||
|
float posX = templatePos.Read<float>(4);
|
||||||
|
float posY = templatePos.Read<float>(5);
|
||||||
|
float posZ = templatePos.Read<float>(6);
|
||||||
|
position.Location = new WorldLocation(mapId, posX, posY, posZ);
|
||||||
|
|
||||||
|
if (!GridDefines.IsValidMapCoord(position.Location))
|
||||||
|
{
|
||||||
|
Log.outError(LogFilter.Sql, $"Table `areatrigger_srv_position` has listed an invalid position: Id: {position.Id}, IsServer: {position.IsServer}. MapId ({mapId}), Position ({posX}, {posY}, {posZ})");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
position.PhaseId = templatePos.Read<uint>(7);
|
||||||
|
position.PhaseGroup = templatePos.Read<uint>(8);
|
||||||
|
position.PhaseUseFlags = templatePos.Read<byte>(9);
|
||||||
|
|
||||||
|
var template = _areaTriggerTemplateMap.LookupByKey(new AreaTriggerTemplateKey(position.Id, position.IsServer));
|
||||||
|
if (template == null)
|
||||||
|
{
|
||||||
|
Log.outError(LogFilter.Sql, $"Table `areatrigger_srv_position` has listed areatrigger that doesn't exist: Id: {position.Id}, IsServer: {position.IsServer}");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the trigger to a map::cell map, which is later used by GridLoader to query
|
||||||
|
CellCoord cellCoord = GridDefines.ComputeCellCoord(position.Location.GetPositionX(), position.Location.GetPositionY());
|
||||||
|
if (!_areaTriggersGrid.ContainsKey(mapId))
|
||||||
|
_areaTriggersGrid[mapId] = new Dictionary<uint, SortedSet<ulong>>();
|
||||||
|
|
||||||
|
if (!_areaTriggersGrid[mapId].ContainsKey(cellCoord.GetId()))
|
||||||
|
_areaTriggersGrid[mapId][cellCoord.GetId()] = new SortedSet<ulong>();
|
||||||
|
|
||||||
|
_areaTriggersGrid[mapId][cellCoord.GetId()].Add(position.SpawnId);
|
||||||
|
|
||||||
|
// add the position to the map
|
||||||
|
_areaTriggerSpawnMap[(uint)position.SpawnId] = position;
|
||||||
|
} while (templates.NextRow());
|
||||||
|
}
|
||||||
|
|
||||||
// 0 1 2 3 4 5 6 7 8 9 10
|
// 0 1 2 3 4 5 6 7 8 9 10
|
||||||
SQLResult areatriggerSpellMiscs = DB.World.Query("SELECT SpellMiscId, AreaTriggerId, MoveCurveId, ScaleCurveId, MorphCurveId, FacingCurveId, AnimId, AnimKitId, DecalPropertiesId, TimeToTarget, TimeToTargetScale FROM `spell_areatrigger`");
|
SQLResult areatriggerSpellMiscs = DB.World.Query("SELECT SpellMiscId, AreaTriggerId, MoveCurveId, ScaleCurveId, MorphCurveId, FacingCurveId, AnimId, AnimKitId, DecalPropertiesId, TimeToTarget, TimeToTargetScale FROM `spell_areatrigger`");
|
||||||
if (!areatriggerSpellMiscs.IsEmpty())
|
if (!areatriggerSpellMiscs.IsEmpty())
|
||||||
@@ -256,12 +344,12 @@ namespace Game.DataStorage
|
|||||||
Log.outInfo(LogFilter.ServerLoading, "Loaded 0 AreaTrigger templates circular movement infos. DB table `spell_areatrigger_circular` is empty.");
|
Log.outInfo(LogFilter.ServerLoading, "Loaded 0 AreaTrigger templates circular movement infos. DB table `spell_areatrigger_circular` is empty.");
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.outInfo(LogFilter.ServerLoading, "Loaded {0} spell areatrigger templates in {1} ms.", _areaTriggerTemplateStore.Count, Time.GetMSTimeDiffToNow(oldMSTime));
|
Log.outInfo(LogFilter.ServerLoading, "Loaded {0} spell areatrigger templates in {1} ms.", _areaTriggerTemplateMap.Count, Time.GetMSTimeDiffToNow(oldMSTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
public AreaTriggerTemplate GetAreaTriggerTemplate(uint areaTriggerId)
|
public AreaTriggerTemplate GetAreaTriggerTemplate(uint areaTriggerId)
|
||||||
{
|
{
|
||||||
return _areaTriggerTemplateStore.LookupByKey(areaTriggerId);
|
return _areaTriggerTemplateMap.LookupByKey(new AreaTriggerTemplateKey(areaTriggerId, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
public AreaTriggerMiscTemplate GetAreaTriggerMiscTemplate(uint spellMiscValue)
|
public AreaTriggerMiscTemplate GetAreaTriggerMiscTemplate(uint spellMiscValue)
|
||||||
@@ -269,7 +357,9 @@ namespace Game.DataStorage
|
|||||||
return _areaTriggerTemplateSpellMisc.LookupByKey(spellMiscValue);
|
return _areaTriggerTemplateSpellMisc.LookupByKey(spellMiscValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
Dictionary<uint, AreaTriggerTemplate> _areaTriggerTemplateStore = new Dictionary<uint, AreaTriggerTemplate>();
|
Dictionary<uint, Dictionary<uint, SortedSet<ulong>>> _areaTriggersGrid = new Dictionary<uint, Dictionary<uint, SortedSet<ulong>>>();
|
||||||
|
Dictionary<uint, AreaTriggerServerPosition> _areaTriggerSpawnMap = new Dictionary<uint, AreaTriggerServerPosition>();
|
||||||
|
Dictionary<AreaTriggerTemplateKey, AreaTriggerTemplate> _areaTriggerTemplateMap = new Dictionary<AreaTriggerTemplateKey, AreaTriggerTemplate>();
|
||||||
Dictionary<uint, AreaTriggerMiscTemplate> _areaTriggerTemplateSpellMisc = new Dictionary<uint, AreaTriggerMiscTemplate>();
|
Dictionary<uint, AreaTriggerMiscTemplate> _areaTriggerTemplateSpellMisc = new Dictionary<uint, AreaTriggerMiscTemplate>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,16 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
using Framework.Constants;
|
using Framework.Constants;
|
||||||
|
using Framework.Dynamic;
|
||||||
using Framework.GameMath;
|
using Framework.GameMath;
|
||||||
using Game.AI;
|
using Game.AI;
|
||||||
using Game.Maps;
|
using Game.Maps;
|
||||||
using Game.Movement;
|
using Game.Movement;
|
||||||
|
using Game.Networking;
|
||||||
using Game.Networking.Packets;
|
using Game.Networking.Packets;
|
||||||
using Game.Spells;
|
using Game.Spells;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Framework.Dynamic;
|
|
||||||
using Game.Networking;
|
|
||||||
|
|
||||||
namespace Game.Entities
|
namespace Game.Entities
|
||||||
{
|
{
|
||||||
@@ -98,6 +98,8 @@ namespace Game.Entities
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_areaTriggerTemplate = _areaTriggerMiscTemplate.Template;
|
||||||
|
|
||||||
_Create(ObjectGuid.Create(HighGuid.AreaTrigger, GetMapId(), GetTemplate().Id, caster.GetMap().GenerateLowGuid(HighGuid.AreaTrigger)));
|
_Create(ObjectGuid.Create(HighGuid.AreaTrigger, GetMapId(), GetTemplate().Id, caster.GetMap().GenerateLowGuid(HighGuid.AreaTrigger)));
|
||||||
|
|
||||||
SetEntry(GetTemplate().Id);
|
SetEntry(GetTemplate().Id);
|
||||||
@@ -210,11 +212,58 @@ namespace Game.Entities
|
|||||||
return at;
|
return at;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool LoadFromDB(uint spawnId, Map map, bool addToMap, bool allowDuplicate)
|
||||||
|
{
|
||||||
|
AreaTriggerServerPosition position = Global.AreaTriggerDataStorage.GetAreaTriggerServerPosition(spawnId);
|
||||||
|
if (position == null)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
AreaTriggerTemplate areaTriggerTemplate = Global.AreaTriggerDataStorage.GetAreaTriggerServerTemplate(position.Id);
|
||||||
|
if (areaTriggerTemplate == null)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return CreateServer(map, areaTriggerTemplate, position);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CreateServer(Map map, AreaTriggerTemplate areaTriggerTemplate, AreaTriggerServerPosition position)
|
||||||
|
{
|
||||||
|
SetMap(map);
|
||||||
|
Relocate(position.Location);
|
||||||
|
if (!IsPositionValid())
|
||||||
|
{
|
||||||
|
Log.outError(LogFilter.AreaTrigger, $"AreaTriggerServer (id {areaTriggerTemplate.Id}) not created. Invalid coordinates (X: {GetPositionX()} Y: {GetPositionY()})");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
_areaTriggerTemplate = areaTriggerTemplate;
|
||||||
|
|
||||||
|
_Create(ObjectGuid.Create(HighGuid.AreaTrigger, GetMapId(), areaTriggerTemplate.Id, GetMap().GenerateLowGuid(HighGuid.AreaTrigger)));
|
||||||
|
|
||||||
|
SetEntry(areaTriggerTemplate.Id);
|
||||||
|
|
||||||
|
SetObjectScale(1.0f);
|
||||||
|
|
||||||
|
if (position.PhaseId != 0 || position.PhaseGroup != 0 || position.PhaseUseFlags != 0)
|
||||||
|
PhasingHandler.InitDbPhaseShift(GetPhaseShift(), (PhaseUseFlagsValues)position.PhaseUseFlags, position.PhaseId, position.PhaseGroup);
|
||||||
|
|
||||||
|
UpdateShape();
|
||||||
|
|
||||||
|
AI_Initialize();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public override void Update(uint diff)
|
public override void Update(uint diff)
|
||||||
{
|
{
|
||||||
base.Update(diff);
|
base.Update(diff);
|
||||||
_timeSinceCreated += diff;
|
_timeSinceCreated += diff;
|
||||||
|
|
||||||
|
if (IsServerSide())
|
||||||
|
{
|
||||||
|
UpdateTargetList();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// "If" order matter here, Orbit > Attached > Splines
|
// "If" order matter here, Orbit > Attached > Splines
|
||||||
if (HasOrbit())
|
if (HasOrbit())
|
||||||
{
|
{
|
||||||
@@ -423,7 +472,7 @@ namespace Game.Entities
|
|||||||
|
|
||||||
public AreaTriggerTemplate GetTemplate()
|
public AreaTriggerTemplate GetTemplate()
|
||||||
{
|
{
|
||||||
return _areaTriggerMiscTemplate.Template;
|
return _areaTriggerTemplate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public uint GetScriptId()
|
public uint GetScriptId()
|
||||||
@@ -565,12 +614,12 @@ namespace Game.Entities
|
|||||||
|
|
||||||
void DoActions(Unit unit)
|
void DoActions(Unit unit)
|
||||||
{
|
{
|
||||||
Unit caster = GetCaster();
|
Unit caster = IsServerSide() ? unit : GetCaster();
|
||||||
if (caster)
|
if (caster)
|
||||||
{
|
{
|
||||||
foreach (AreaTriggerAction action in GetTemplate().Actions)
|
foreach (AreaTriggerAction action in GetTemplate().Actions)
|
||||||
{
|
{
|
||||||
if (UnitFitToActionRequirement(unit, caster, action))
|
if (IsServerSide() || UnitFitToActionRequirement(unit, caster, action))
|
||||||
{
|
{
|
||||||
switch (action.ActionType)
|
switch (action.ActionType)
|
||||||
{
|
{
|
||||||
@@ -580,6 +629,15 @@ namespace Game.Entities
|
|||||||
case AreaTriggerActionTypes.AddAura:
|
case AreaTriggerActionTypes.AddAura:
|
||||||
caster.AddAura(action.Param, unit);
|
caster.AddAura(action.Param, unit);
|
||||||
break;
|
break;
|
||||||
|
case AreaTriggerActionTypes.Teleport:
|
||||||
|
WorldSafeLocsEntry safeLoc = Global.ObjectMgr.GetWorldSafeLoc(action.Param);
|
||||||
|
if (safeLoc != null)
|
||||||
|
{
|
||||||
|
Player player = caster.ToPlayer();
|
||||||
|
if (player != null)
|
||||||
|
player.TeleportTo(safeLoc.Loc);
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -909,6 +967,10 @@ namespace Game.Entities
|
|||||||
|
|
||||||
AreaTriggerAI GetAI() { return _ai; }
|
AreaTriggerAI GetAI() { return _ai; }
|
||||||
|
|
||||||
|
public bool IsServerSide() { return _areaTriggerTemplate.IsServerSide; }
|
||||||
|
|
||||||
|
public override bool IsNeverVisibleFor(WorldObject seer) { return IsServerSide(); }
|
||||||
|
|
||||||
[System.Diagnostics.Conditional("DEBUG")]
|
[System.Diagnostics.Conditional("DEBUG")]
|
||||||
void DebugVisualizePosition()
|
void DebugVisualizePosition()
|
||||||
{
|
{
|
||||||
@@ -975,5 +1037,7 @@ namespace Game.Entities
|
|||||||
List<ObjectGuid> _insideUnits = new List<ObjectGuid>();
|
List<ObjectGuid> _insideUnits = new List<ObjectGuid>();
|
||||||
|
|
||||||
AreaTriggerAI _ai;
|
AreaTriggerAI _ai;
|
||||||
|
|
||||||
|
AreaTriggerTemplate _areaTriggerTemplate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,12 +16,12 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
using Framework.Constants;
|
using Framework.Constants;
|
||||||
|
using Framework.Dynamic;
|
||||||
using Framework.GameMath;
|
using Framework.GameMath;
|
||||||
|
using Game.Networking;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using Framework.Dynamic;
|
|
||||||
using Game.Networking;
|
|
||||||
|
|
||||||
namespace Game.Entities
|
namespace Game.Entities
|
||||||
{
|
{
|
||||||
@@ -187,6 +187,27 @@ namespace Game.Entities
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct AreaTriggerTemplateKey
|
||||||
|
{
|
||||||
|
public uint Id;
|
||||||
|
public bool IsServer;
|
||||||
|
|
||||||
|
public AreaTriggerTemplateKey(uint id, bool isServer)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
IsServer = isServer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool operator ==(AreaTriggerTemplateKey A, AreaTriggerTemplateKey B)
|
||||||
|
{
|
||||||
|
return A.Id == B.Id && A.IsServer == B.IsServer;
|
||||||
|
}
|
||||||
|
public static bool operator !=(AreaTriggerTemplateKey A, AreaTriggerTemplateKey B)
|
||||||
|
{
|
||||||
|
return A.Id != B.Id && A.IsServer != B.IsServer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public class AreaTriggerTemplate : AreaTriggerData
|
public class AreaTriggerTemplate : AreaTriggerData
|
||||||
{
|
{
|
||||||
public unsafe void InitMaxSearchRadius()
|
public unsafe void InitMaxSearchRadius()
|
||||||
@@ -244,6 +265,7 @@ namespace Game.Entities
|
|||||||
public List<Vector2> PolygonVertices = new List<Vector2>();
|
public List<Vector2> PolygonVertices = new List<Vector2>();
|
||||||
public List<Vector2> PolygonVerticesTarget = new List<Vector2>();
|
public List<Vector2> PolygonVerticesTarget = new List<Vector2>();
|
||||||
public List<AreaTriggerAction> Actions = new List<AreaTriggerAction>();
|
public List<AreaTriggerAction> Actions = new List<AreaTriggerAction>();
|
||||||
|
public bool IsServerSide;
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe class AreaTriggerMiscTemplate
|
public unsafe class AreaTriggerMiscTemplate
|
||||||
@@ -283,6 +305,17 @@ namespace Game.Entities
|
|||||||
public List<Vector3> SplinePoints = new List<Vector3>();
|
public List<Vector3> SplinePoints = new List<Vector3>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class AreaTriggerServerPosition
|
||||||
|
{
|
||||||
|
public ulong SpawnId;
|
||||||
|
public uint Id;
|
||||||
|
public bool IsServer;
|
||||||
|
public WorldLocation Location;
|
||||||
|
public uint PhaseId;
|
||||||
|
public uint PhaseGroup;
|
||||||
|
public byte PhaseUseFlags;
|
||||||
|
}
|
||||||
|
|
||||||
public struct AreaTriggerAction
|
public struct AreaTriggerAction
|
||||||
{
|
{
|
||||||
public uint Param;
|
public uint Param;
|
||||||
|
|||||||
@@ -76,13 +76,23 @@ namespace Game.Maps
|
|||||||
LoadHelper<Creature>(cellguids.creatures, cellCoord, ref i_creatures, i_map);
|
LoadHelper<Creature>(cellguids.creatures, cellCoord, ref i_creatures, i_map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override void Visit(IList<AreaTrigger> objs)
|
||||||
|
{
|
||||||
|
CellCoord cellCoord = i_cell.GetCellCoord();
|
||||||
|
SortedSet<ulong> areaTriggers = Global.AreaTriggerDataStorage.GetAreaTriggersForMapAndCell(i_map.GetId(), cellCoord.GetId());
|
||||||
|
if (areaTriggers.Empty())
|
||||||
|
return;
|
||||||
|
|
||||||
|
LoadHelper<AreaTrigger>(areaTriggers, cellCoord, ref i_areaTriggers, i_map);
|
||||||
|
}
|
||||||
|
|
||||||
void LoadHelper<T>(SortedSet<ulong> guid_set, CellCoord cell, ref uint count, Map map) where T : WorldObject, new()
|
void LoadHelper<T>(SortedSet<ulong> guid_set, CellCoord cell, ref uint count, Map map) where T : WorldObject, new()
|
||||||
{
|
{
|
||||||
foreach (var guid in guid_set)
|
foreach (var guid in guid_set)
|
||||||
{
|
{
|
||||||
T obj = new T();
|
T obj = new T();
|
||||||
// Don't spawn at all if there's a respawn time
|
// Don't spawn at all if there's a respawn time
|
||||||
if ((obj.IsTypeId(TypeId.Unit) && map.GetCreatureRespawnTime(guid) == 0) || (obj.IsTypeId(TypeId.GameObject) && map.GetGORespawnTime(guid) == 0))
|
if ((obj.IsTypeId(TypeId.Unit) && map.GetCreatureRespawnTime(guid) == 0) || (obj.IsTypeId(TypeId.GameObject) && map.GetGORespawnTime(guid) == 0) || obj.IsTypeId(TypeId.AreaTrigger))
|
||||||
{
|
{
|
||||||
//TC_LOG_INFO("misc", "DEBUG: LoadHelper from table: %s for (guid: %u) Loading", table, guid);
|
//TC_LOG_INFO("misc", "DEBUG: LoadHelper from table: %s for (guid: %u) Loading", table, guid);
|
||||||
if (obj.IsTypeId(TypeId.Unit))
|
if (obj.IsTypeId(TypeId.Unit))
|
||||||
@@ -156,6 +166,7 @@ namespace Game.Maps
|
|||||||
uint i_gameObjects;
|
uint i_gameObjects;
|
||||||
uint i_creatures;
|
uint i_creatures;
|
||||||
public uint i_corpses;
|
public uint i_corpses;
|
||||||
|
uint i_areaTriggers;
|
||||||
}
|
}
|
||||||
|
|
||||||
class ObjectWorldLoader : Notifier
|
class ObjectWorldLoader : Notifier
|
||||||
|
|||||||
@@ -364,6 +364,7 @@ namespace Game.Scripting
|
|||||||
|
|
||||||
// Called when the area trigger is activated by a player.
|
// Called when the area trigger is activated by a player.
|
||||||
public virtual bool OnTrigger(Player player, AreaTriggerRecord trigger, bool entered) { return false; }
|
public virtual bool OnTrigger(Player player, AreaTriggerRecord trigger, bool entered) { return false; }
|
||||||
|
public virtual bool OnTriggerServer(Player player, AreaTriggerTemplate triggerTemplate, bool entered) { return false; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class OnlyOnceAreaTriggerScript : AreaTriggerScript
|
public class OnlyOnceAreaTriggerScript : AreaTriggerScript
|
||||||
|
|||||||
Reference in New Issue
Block a user