- [X] Deletes serialization annotations - [X] Updates to ModernUO.Serialization.Annotations nuget - [X] Updates serializer to v2.0 - [X] Changes all `Serializable()` to `SerializationGenerator()` - [X] Updates to schema generator v2.0
116 lines
3.2 KiB
C#
116 lines
3.2 KiB
C#
using System;
|
|
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public delegate void SpinCallback(ISpinningWheel sender, Mobile from, int hue);
|
|
|
|
public interface ISpinningWheel
|
|
{
|
|
bool Spinning { get; }
|
|
void BeginSpin(SpinCallback callback, Mobile from, int hue);
|
|
}
|
|
|
|
[SerializationGenerator(0)]
|
|
[TypeAlias("Server.Items.ElvenSpinningwheelEastAddon")]
|
|
public partial class ElvenSpinningWheelEastAddon : BaseAddon, ISpinningWheel
|
|
{
|
|
private Timer m_Timer;
|
|
|
|
[Constructible]
|
|
public ElvenSpinningWheelEastAddon()
|
|
{
|
|
AddComponent(new AddonComponent(0x2E3D), 0, 0, 0);
|
|
}
|
|
|
|
public override int LabelNumber => 1031737; // elven spinning wheel
|
|
public override BaseAddonDeed Deed => new ElvenSpinningWheelEastDeed();
|
|
|
|
public bool Spinning => m_Timer != null;
|
|
|
|
public void BeginSpin(SpinCallback callback, Mobile from, int hue)
|
|
{
|
|
m_Timer = new SpinTimer(this, callback, from, hue);
|
|
m_Timer.Start();
|
|
|
|
foreach (var c in Components)
|
|
{
|
|
switch (c.ItemID)
|
|
{
|
|
case 0x2E3D:
|
|
case 0x2E3F:
|
|
--c.ItemID;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void OnComponentLoaded(AddonComponent c)
|
|
{
|
|
switch (c.ItemID)
|
|
{
|
|
case 0x2E3C:
|
|
case 0x2E3E:
|
|
++c.ItemID;
|
|
break;
|
|
}
|
|
}
|
|
|
|
public void EndSpin(SpinCallback callback, Mobile from, int hue)
|
|
{
|
|
m_Timer?.Stop();
|
|
|
|
m_Timer = null;
|
|
|
|
foreach (var c in Components)
|
|
{
|
|
switch (c.ItemID)
|
|
{
|
|
case 0x2E3C:
|
|
case 0x2E3E:
|
|
++c.ItemID;
|
|
break;
|
|
}
|
|
}
|
|
|
|
callback?.Invoke(this, from, hue);
|
|
}
|
|
|
|
private class SpinTimer : Timer
|
|
{
|
|
private readonly SpinCallback m_Callback;
|
|
private readonly Mobile m_From;
|
|
private readonly int m_Hue;
|
|
private readonly ElvenSpinningWheelEastAddon m_Wheel;
|
|
|
|
public SpinTimer(ElvenSpinningWheelEastAddon wheel, SpinCallback callback, Mobile from, int hue) : base(
|
|
TimeSpan.FromSeconds(3.0)
|
|
)
|
|
{
|
|
m_Wheel = wheel;
|
|
m_Callback = callback;
|
|
m_From = from;
|
|
m_Hue = hue;
|
|
}
|
|
|
|
protected override void OnTick()
|
|
{
|
|
m_Wheel.EndSpin(m_Callback, m_From, m_Hue);
|
|
}
|
|
}
|
|
}
|
|
|
|
[SerializationGenerator(0)]
|
|
[TypeAlias("Server.Items.ElvenSpinningwheelEastDeed")]
|
|
public partial class ElvenSpinningWheelEastDeed : BaseAddonDeed
|
|
{
|
|
[Constructible]
|
|
public ElvenSpinningWheelEastDeed()
|
|
{
|
|
}
|
|
|
|
public override BaseAddon Addon => new ElvenSpinningWheelEastAddon();
|
|
public override int LabelNumber => 1073393; // elven spinning wheel (east)
|
|
}
|
|
}
|
|
|