### Changes/Fixes:
* Adds timer pooling.
* Allows pool to be configurable in ModernUO.json
* Pool replenishes itself asynchronously if depleted.
* Fixes an issue with barkeeps and town criers
* Fixes an issue with incognito buff icons not being removed
* Fixes an issue with polymorph name mod not being removed
* Fixes several places where timers go on forever even after an object is deleted, keeping a reference (memory leak)
* Eliminates the timer for MiningCart altogether.
* Deletes `AcidSlime` since it is a duplicate of `PoolOfAcid`
* Fixes HonorableExecution and standardizes the code for other Bushido moves.
## Changes to the Timer API:
```cs
public class Timer
{
// Creates a timer that will be returned to the pool once execution stops.
public static void StartTimer(Action callback);
public static void StartTimer(TimeSpan delay, Action callback);
public static void StartTimer(TimeSpan delay, TimeSpan interval, Action callback);
public static void StartTimer(TimeSpan interval, int count, Action callback);
public static void StartTimer(TimeSpan delay, TimeSpan interval, int count, Action callback);
// Creates a timer and returns a token for more control. Requires manual cancellation in order for the timer to be returned to the pool.
// If the token is dereferenced, the timer will be dereferenced too. While not returning a timer to the pool is not considered hazardous, it does defeat the purpose of pooled timers.
public static void StartTimer(Action callback, out TimerExecutionToken token);
public static void StartTimer(TimeSpan delay, Action callback, out TimerExecutionToken token);
public static void StartTimer(TimeSpan delay, TimeSpan interval, Action callback, out TimerExecutionToken token);
public static void StartTimer(TimeSpan interval, int count, Action callback, out TimerExecutionToken token);
public static void StartTimer(TimeSpan delay, TimeSpan interval, int count, Action callback, out TimerExecutionToken token);
// If you aren't sure how to use the API above, or you don't care about performance, then you can use the old RunUO Timer.DelayCall
public static DelayCallTimer DelayCall(Action callback);
public static DelayCallTimer DelayCall(TimeSpan delay, Action callback);
public static DelayCallTimer DelayCall(TimeSpan delay, TimeSpan interval, Action callback);
public static DelayCallTimer DelayCall(TimeSpan interval, int count, Action callback);
public static DelayCallTimer DelayCall(TimeSpan delay, TimeSpan interval, int count, Action callback);
}
public struct TimerExecutionToken
{
public bool Running { get; }
public int Index { get; }
public int RemainingCount { get; }
public DateTime Next { get; }
}
```
## When to use `TimerExecutionToken`?
Use tokens when you want to gain the performance benefit of using a pooled timer, but you need one of the following:
* Access to the next time the timer will tick:`token.Next`
* Access to which interval, how many intervals there are, or how many are remaining: `token.Index`, `token.Count`, and `token.RemainingCount`
* Stop a timer manually.
* Determine if the timer is running: `timer.Running`
* See notes below about requirements for using tokens!
## Notes about using the TimerExecutionToken:
When you opt-in to receive a token, you must call `Cancel()` to return the timer. This can be done inside of the callback, or outside of the callback at any time.
If this is not called and your timer is an infinite interval, then you will create a potential memory leak, or null pointer exception in your callback.
If the timer ends and is stopped, but cancel is not called, then the timer will never return to the pool and stay referenced until the token is deleted or cancel is called. (Memory leak)
## Is this thread safe?
No. The ModernUO timer system is not thread safe at all. If you require a thread safe timer system, contact me and I'll help adapt this system. Keep in mind that there is a massive performance hit to make this thread safe when there are literally no use cases for it.
If you need to synchronize execution, meaning you want to execute code from another thread on the core thread. Let's say you have a discord bot that is pushing commands to the game server. Then use `EventLoopContext.Post(SendOrPostCallback callback, object state);`.
361 lines
9.7 KiB
C#
361 lines
9.7 KiB
C#
using System;
|
|
using Server.Gumps;
|
|
using Server.Items;
|
|
using Server.Mobiles;
|
|
using Server.Network;
|
|
|
|
namespace Server.Engines.Quests.Doom
|
|
{
|
|
public class Chyloth : BaseQuester
|
|
{
|
|
private static readonly int[] m_Offsets =
|
|
{
|
|
-1, -1,
|
|
-1, 0,
|
|
-1, 1,
|
|
0, -1,
|
|
0, 1,
|
|
1, -1,
|
|
1, 0,
|
|
1, 1
|
|
};
|
|
|
|
[Constructible]
|
|
public Chyloth() : base("the Ferryman")
|
|
{
|
|
}
|
|
|
|
public Chyloth(Serial serial) : base(serial)
|
|
{
|
|
}
|
|
|
|
public override string DefaultName => "Chyloth";
|
|
|
|
public BellOfTheDead Bell { get; set; }
|
|
|
|
public Mobile AngryAt { get; set; }
|
|
|
|
public override void InitBody()
|
|
{
|
|
InitStats(100, 100, 25);
|
|
|
|
Hue = 0x8455;
|
|
Body = 0x190;
|
|
}
|
|
|
|
public override void InitOutfit()
|
|
{
|
|
EquipItem(new ChylothShroud());
|
|
EquipItem(new ChylothStaff());
|
|
}
|
|
|
|
public virtual void BeginGiveWarning()
|
|
{
|
|
if (Deleted || AngryAt == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
Timer.StartTimer(TimeSpan.FromSeconds(4.0), EndGiveWarning);
|
|
}
|
|
|
|
public virtual void EndGiveWarning()
|
|
{
|
|
if (Deleted || AngryAt == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
PublicOverheadMessage(
|
|
MessageType.Regular,
|
|
0x3B2,
|
|
1050013,
|
|
AngryAt.Name
|
|
); // You have summoned me in vain ~1_NAME~! Only the dead may cross!
|
|
PublicOverheadMessage(MessageType.Regular, 0x3B2, 1050014); // Why have you disturbed me, mortal?!?
|
|
|
|
BeginSummonDragon();
|
|
}
|
|
|
|
public virtual void BeginSummonDragon()
|
|
{
|
|
if (Deleted || AngryAt == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
Timer.StartTimer(TimeSpan.FromSeconds(30.0), EndSummonDragon);
|
|
}
|
|
|
|
public virtual void BeginRemove(TimeSpan delay)
|
|
{
|
|
Timer.StartTimer(delay, EndRemove);
|
|
}
|
|
|
|
public virtual void EndRemove()
|
|
{
|
|
if (Deleted)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var loc = Location;
|
|
var map = Map;
|
|
|
|
Effects.SendLocationParticles(
|
|
EffectItem.Create(loc, map, EffectItem.DefaultDuration),
|
|
0x3728,
|
|
10,
|
|
10,
|
|
0,
|
|
0,
|
|
2023,
|
|
0
|
|
);
|
|
Effects.PlaySound(loc, map, 0x1FE);
|
|
|
|
Delete();
|
|
}
|
|
|
|
public virtual void EndSummonDragon()
|
|
{
|
|
if (Deleted || AngryAt == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var map = AngryAt.Map;
|
|
|
|
if (map == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (!AngryAt.Region.IsPartOf("Doom"))
|
|
{
|
|
return;
|
|
}
|
|
|
|
PublicOverheadMessage(MessageType.Regular, 0x3B2, 1050015); // Feel the wrath of my legions!!!
|
|
PublicOverheadMessage(MessageType.Regular, 0x3B2, false, "MUHAHAHAHA HAHAH HAHA"); // A wee bit crazy, aren't we?
|
|
|
|
var dragon = new SkeletalDragon();
|
|
|
|
var offset = Utility.Random(8) * 2;
|
|
|
|
var foundLoc = false;
|
|
|
|
for (var i = 0; i < m_Offsets.Length; i += 2)
|
|
{
|
|
var x = AngryAt.X + m_Offsets[(offset + i) % m_Offsets.Length];
|
|
var y = AngryAt.Y + m_Offsets[(offset + i + 1) % m_Offsets.Length];
|
|
|
|
if (map.CanSpawnMobile(x, y, AngryAt.Z))
|
|
{
|
|
dragon.MoveToWorld(new Point3D(x, y, AngryAt.Z), map);
|
|
foundLoc = true;
|
|
break;
|
|
}
|
|
|
|
var z = map.GetAverageZ(x, y);
|
|
|
|
if (map.CanSpawnMobile(x, y, z))
|
|
{
|
|
dragon.MoveToWorld(new Point3D(x, y, z), map);
|
|
foundLoc = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!foundLoc)
|
|
{
|
|
dragon.MoveToWorld(AngryAt.Location, map);
|
|
}
|
|
|
|
dragon.Combatant = AngryAt;
|
|
|
|
if (Bell != null)
|
|
{
|
|
Bell.Dragon = dragon;
|
|
}
|
|
}
|
|
|
|
public static void TeleportToFerry(Mobile from)
|
|
{
|
|
var loc = new Point3D(408, 251, 2);
|
|
var map = Map.Malas;
|
|
|
|
Effects.SendLocationParticles(
|
|
EffectItem.Create(loc, map, EffectItem.DefaultDuration),
|
|
0x3728,
|
|
10,
|
|
10,
|
|
0,
|
|
0,
|
|
2023,
|
|
0
|
|
);
|
|
Effects.PlaySound(loc, map, 0x1FE);
|
|
|
|
TeleportPets(from, loc, map);
|
|
|
|
from.MoveToWorld(loc, map);
|
|
}
|
|
|
|
public override bool OnDragDrop(Mobile from, Item dropped)
|
|
{
|
|
if (dropped is GoldenSkull)
|
|
{
|
|
dropped.Delete();
|
|
|
|
PublicOverheadMessage(
|
|
MessageType.Regular,
|
|
0x3B2,
|
|
1050046,
|
|
from.Name
|
|
); // Very well, ~1_NAME~, I accept your token. You may cross.
|
|
BeginRemove(TimeSpan.FromSeconds(4.0));
|
|
|
|
var p = PartySystem.Party.Get(from);
|
|
|
|
for (var i = 0; i < p?.Members.Count; ++i)
|
|
{
|
|
var pmi = p.Members[i];
|
|
var member = pmi.Mobile;
|
|
|
|
if (member != from && member.Map == Map.Malas && member.Region.IsPartOf("Doom"))
|
|
{
|
|
if (AngryAt == member)
|
|
{
|
|
AngryAt = null;
|
|
}
|
|
|
|
member.CloseGump<ChylothPartyGump>();
|
|
member.SendGump(new ChylothPartyGump(from, member));
|
|
}
|
|
}
|
|
|
|
if (AngryAt == from)
|
|
{
|
|
AngryAt = null;
|
|
}
|
|
|
|
TeleportToFerry(from);
|
|
|
|
return false;
|
|
}
|
|
|
|
return base.OnDragDrop(from, dropped);
|
|
}
|
|
|
|
public override bool CanTalkTo(PlayerMobile to) => false;
|
|
|
|
public override void OnTalk(PlayerMobile player, bool contextMenu)
|
|
{
|
|
}
|
|
|
|
public override void Serialize(IGenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write(0); // version
|
|
}
|
|
|
|
public override void Deserialize(IGenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
var version = reader.ReadInt();
|
|
}
|
|
}
|
|
|
|
public class ChylothPartyGump : Gump
|
|
{
|
|
private readonly Mobile m_Leader;
|
|
private readonly Mobile m_Member;
|
|
|
|
public ChylothPartyGump(Mobile leader, Mobile member) : base(150, 50)
|
|
{
|
|
m_Leader = leader;
|
|
m_Member = member;
|
|
|
|
Closable = false;
|
|
|
|
AddPage(0);
|
|
|
|
AddImage(0, 0, 3600);
|
|
|
|
AddImageTiled(0, 14, 15, 200, 3603);
|
|
AddImageTiled(380, 14, 14, 200, 3605);
|
|
AddImage(0, 201, 3606);
|
|
AddImageTiled(15, 201, 370, 16, 3607);
|
|
AddImageTiled(15, 0, 370, 16, 3601);
|
|
AddImage(380, 0, 3602);
|
|
AddImage(380, 201, 3608);
|
|
AddImageTiled(15, 15, 365, 190, 2624);
|
|
|
|
AddRadio(30, 140, 9727, 9730, true, 1);
|
|
AddHtmlLocalized(65, 145, 300, 25, 1050050, 0x7FFF); // Yes, let's go!
|
|
|
|
AddRadio(30, 175, 9727, 9730, false, 0);
|
|
AddHtmlLocalized(65, 178, 300, 25, 1050049, 0x7FFF); // No thanks, I'd rather stay here.
|
|
|
|
AddHtmlLocalized(
|
|
30,
|
|
20,
|
|
360,
|
|
35,
|
|
1050047,
|
|
0x7FFF
|
|
); // Another player has paid Chyloth for your passage across lake Mortis:
|
|
|
|
AddHtmlLocalized(30, 105, 345, 40, 1050048, 0x5B2D); // Do you wish to accept their invitation at this time?
|
|
|
|
AddImage(65, 72, 5605);
|
|
|
|
AddImageTiled(80, 90, 200, 1, 9107);
|
|
AddImageTiled(95, 92, 200, 1, 9157);
|
|
|
|
AddLabel(90, 70, 1645, leader.Name);
|
|
|
|
AddButton(290, 175, 247, 248, 2);
|
|
|
|
AddImageTiled(15, 14, 365, 1, 9107);
|
|
AddImageTiled(380, 14, 1, 190, 9105);
|
|
AddImageTiled(15, 205, 365, 1, 9107);
|
|
AddImageTiled(15, 14, 1, 190, 9105);
|
|
AddImageTiled(0, 0, 395, 1, 9157);
|
|
AddImageTiled(394, 0, 1, 217, 9155);
|
|
AddImageTiled(0, 216, 395, 1, 9157);
|
|
AddImageTiled(0, 0, 1, 217, 9155);
|
|
}
|
|
|
|
public override void OnResponse(NetState sender, RelayInfo info)
|
|
{
|
|
if (info.ButtonID == 2 && info.IsSwitched(1))
|
|
{
|
|
if (m_Member.Region.IsPartOf("Doom"))
|
|
{
|
|
m_Leader.SendLocalizedMessage(
|
|
1050054,
|
|
m_Member.Name
|
|
); // ~1_NAME~ has accepted your invitation to cross lake Mortis.
|
|
|
|
Chyloth.TeleportToFerry(m_Member);
|
|
}
|
|
else
|
|
{
|
|
m_Member.SendLocalizedMessage(1050051); // The invitation has been revoked.
|
|
}
|
|
}
|
|
else
|
|
{
|
|
m_Member.SendLocalizedMessage(1050052); // You have declined their invitation.
|
|
m_Leader.SendLocalizedMessage(
|
|
1050053,
|
|
m_Member.Name
|
|
); // ~1_NAME~ has declined your invitation to cross lake Mortis.
|
|
}
|
|
}
|
|
}
|
|
}
|