## Changes
- [X] Adds OPL convenience methods
- `opl.Add(cliloc, value)` and `opl.Add(value)` - value as an integer or string works just like `opl.Add(cliloc, $"{value}")`
- `opl.AddLocalized(cliloc, clilocValue)` - works the same as `opl.Add(cliloc, $"#{clilocValue}");`
- [X] Simplifies basic `list.Add()` situations
- [X] Changes cliloc as an argument so it works with custom IPropertyList implementations (HTML)
- [X] Fixes plants so they support the old localization and new (changed in 7.0.12.0+)
- [X] Exposes more methods to override for Item to make creating custom OPL possible.
## Important Notes
* Using a ternary as an argument, like this `opl.Add(number, showType ? $"{type}\t{value}" : $"{value}");` _will not use the correct string interpolation_. This means if you use a custom PropertyList (for HTML or some other purpose), the property list won't be localized properly.
* All localization values must be interpolated, even if they are literal strings, or integers. Example: `opl.Add(number, $"{"Charges"}\t{m_Charges}");` is correct. Using the following: `$"Charges\t{m_Charges}"` will not work for custom PropertyList implementations!
88 lines
2.2 KiB
C#
88 lines
2.2 KiB
C#
using Server.Gumps;
|
|
using Server.Network;
|
|
|
|
namespace Server.Engines.Quests.Collector
|
|
{
|
|
public class PaintedImage : Item
|
|
{
|
|
private ImageType m_Image;
|
|
|
|
[Constructible]
|
|
public PaintedImage(ImageType image) : base(0xFF3)
|
|
{
|
|
Weight = 1.0;
|
|
Hue = 0x8FD;
|
|
|
|
m_Image = image;
|
|
}
|
|
|
|
public PaintedImage(Serial serial) : base(serial)
|
|
{
|
|
}
|
|
|
|
[CommandProperty(AccessLevel.GameMaster)]
|
|
public ImageType Image
|
|
{
|
|
get => m_Image;
|
|
set
|
|
{
|
|
m_Image = value;
|
|
InvalidateProperties();
|
|
}
|
|
}
|
|
|
|
public override void AddNameProperty(IPropertyList list)
|
|
{
|
|
var info = ImageTypeInfo.Get(m_Image);
|
|
list.Add(1060847, $"{1055126:#}\t{info.Name:#}"); // a painted image of:
|
|
}
|
|
|
|
public override void OnSingleClick(Mobile from)
|
|
{
|
|
var info = ImageTypeInfo.Get(m_Image);
|
|
LabelTo(from, 1060847, $"#1055126\t#{info.Name}"); // a painted image of:
|
|
}
|
|
|
|
public override void OnDoubleClick(Mobile from)
|
|
{
|
|
if (!from.InRange(GetWorldLocation(), 2))
|
|
{
|
|
from.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1019045); // I can't reach that.
|
|
return;
|
|
}
|
|
|
|
from.SendGump(new InternalGump(m_Image));
|
|
}
|
|
|
|
public override void Serialize(IGenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write(0); // version
|
|
|
|
writer.WriteEncodedInt((int)m_Image);
|
|
}
|
|
|
|
public override void Deserialize(IGenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
var version = reader.ReadInt();
|
|
|
|
m_Image = (ImageType)reader.ReadEncodedInt();
|
|
}
|
|
|
|
private class InternalGump : Gump
|
|
{
|
|
public InternalGump(ImageType image) : base(75, 25)
|
|
{
|
|
var info = ImageTypeInfo.Get(image);
|
|
|
|
AddBackground(45, 20, 100, 100, 0xA3C);
|
|
AddBackground(52, 29, 86, 82, 0xBB8);
|
|
|
|
AddItem(info.X, info.Y, info.Figurine);
|
|
}
|
|
}
|
|
}
|
|
}
|