134 lines
3.3 KiB
C#
134 lines
3.3 KiB
C#
using System;
|
|
using System.Diagnostics.Metrics;
|
|
using ModernUO.Serialization;
|
|
using Server.Accounting;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class Gold : Item
|
|
{
|
|
private static readonly Counter<long> goldCreatedCounter = Telemetry.EconomyMeter.CreateCounter<long>("gold_created_count");
|
|
private static readonly Histogram<long> goldCreatedHistogram = Telemetry.EconomyMeter.CreateHistogram<long>("gold_created_histogram");
|
|
private static readonly Counter<long> goldDeletedCounter = Telemetry.EconomyMeter.CreateCounter<long>("gold_deleted_count");
|
|
|
|
[Constructible]
|
|
public Gold(int amountFrom, int amountTo) : this(Utility.RandomMinMax(amountFrom, amountTo))
|
|
{
|
|
}
|
|
|
|
[Constructible]
|
|
public Gold(int amount = 1) : base(0xEED)
|
|
{
|
|
Stackable = true;
|
|
Amount = amount;
|
|
}
|
|
|
|
public override double DefaultWeight => Core.ML ? 0.02 / 3 : 0.02;
|
|
|
|
public override int GetDropSound()
|
|
{
|
|
return Amount switch
|
|
{
|
|
<= 1 => 0x2E4,
|
|
<= 5 => 0x2E5,
|
|
_ => 0x2E6
|
|
};
|
|
}
|
|
|
|
protected override void OnAmountChange(int oldValue)
|
|
{
|
|
var newValue = Amount;
|
|
|
|
UpdateTotal(this, TotalType.Gold, newValue - oldValue);
|
|
|
|
if (newValue > 1)
|
|
{
|
|
goldCreatedCounter.Add(newValue);
|
|
goldCreatedHistogram.Record(newValue);
|
|
}
|
|
}
|
|
|
|
public override void Delete()
|
|
{
|
|
goldDeletedCounter.Add(Amount);
|
|
|
|
base.Delete();
|
|
}
|
|
|
|
public override void OnAdded(IEntity parent)
|
|
{
|
|
base.OnAdded(parent);
|
|
|
|
if (!AccountGold.Enabled)
|
|
{
|
|
return;
|
|
}
|
|
|
|
Mobile owner = null;
|
|
SecureTradeInfo tradeInfo = null;
|
|
|
|
var root = parent as Container;
|
|
|
|
while (root?.Parent is Container container)
|
|
{
|
|
root = container;
|
|
}
|
|
|
|
parent = root ?? parent;
|
|
|
|
if (parent is SecureTradeContainer trade && AccountGold.ConvertOnTrade)
|
|
{
|
|
if (trade.Trade.From.Container == trade)
|
|
{
|
|
tradeInfo = trade.Trade.From;
|
|
owner = tradeInfo.Mobile;
|
|
}
|
|
else if (trade.Trade.To.Container == trade)
|
|
{
|
|
tradeInfo = trade.Trade.To;
|
|
owner = tradeInfo.Mobile;
|
|
}
|
|
}
|
|
else if (parent is BankBox box && AccountGold.ConvertOnBank)
|
|
{
|
|
owner = box.Owner;
|
|
}
|
|
|
|
if (owner?.Account?.DepositGold(Amount) != true)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (tradeInfo != null)
|
|
{
|
|
if (owner.NetState?.NewSecureTrading == false)
|
|
{
|
|
var plat = Math.DivRem(Amount, AccountGold.CurrencyThreshold, out var gold);
|
|
|
|
tradeInfo.Plat += plat;
|
|
tradeInfo.Gold += gold;
|
|
}
|
|
|
|
tradeInfo.VirtualCheck?.UpdateTrade(tradeInfo.Mobile);
|
|
}
|
|
|
|
owner.SendLocalizedMessage(1042763, $"{Amount:N0}");
|
|
|
|
Delete();
|
|
|
|
((Container)parent).UpdateTotals();
|
|
}
|
|
|
|
public override int GetTotal(TotalType type)
|
|
{
|
|
var baseTotal = base.GetTotal(type);
|
|
|
|
if (type == TotalType.Gold)
|
|
{
|
|
baseTotal += Amount;
|
|
}
|
|
|
|
return baseTotal;
|
|
}
|
|
}
|