ModernUO/Projects/UOContent/Engines/Factions/Core/FactionSystem.cs
Kamron Batman 20596e52fa
fix: Converts ethics system to generic entity persistence (#1824)
### Summary

Converts ethics system to entity persistence and removes the persistence item.


### TODO

1. The enable/disable toggle doesn't propagate to all code that does Ethics checks (notoriety, pvp, etc).
2. We need commands to remove them from an ethic.
2024-06-16 10:26:09 -07:00

126 lines
2.8 KiB
C#

using System;
namespace Server.Factions;
public class FactionSystem : GenericPersistence
{
private static FactionSystem _factionSystem;
public static bool Enabled { get; private set; }
public static void Configure()
{
Enabled = ServerConfiguration.GetSetting("factions.enabled", false);
if (Enabled)
{
_factionSystem = new();
}
}
public FactionSystem() : base("Factions", 10)
{
}
// This does not do the actual work of removing faction stuff, only turns off the persistence.
public static void Disable()
{
if (!Enabled)
{
return;
}
_factionSystem.Unregister();
Enabled = false;
ServerConfiguration.SetSetting("factions.enabled", false);
}
// This does not do the actual work of creating faction stuff, only turns on the persistence.
public static void Enable()
{
if (Enabled)
{
return;
}
_factionSystem ??= new FactionSystem();
_factionSystem.Register();
Enabled = true;
ServerConfiguration.SetSetting("factions.enabled", true);
}
public override void Serialize(IGenericWriter writer)
{
writer.WriteEncodedInt(0); // version
var factions = Faction.Factions;
for (var i = 0; i < factions.Count; i++)
{
factions[i].State.Serialize(writer);
}
var towns = Town.Towns;
for (var i = 0; i < towns.Count; i++)
{
towns[i].State.Serialize(writer);
}
}
public override void Deserialize(IGenericReader reader)
{
var version = reader.ReadEncodedInt();
var count = Faction.Factions.Count;
for (var i = 0; i < count; i++)
{
new FactionState(reader);
}
count = Town.Towns.Count;
for (var i = 0; i < count; i++)
{
new TownState(reader);
}
}
}
[ManualDirtyChecking]
[TypeAlias("Server.Factions.FactionPersistance")]
[Obsolete("Deprecated in favor of the static system. Only used for legacy deserialization")]
public class FactionPersistence : Item
{
public FactionPersistence()
{
Delete();
}
public FactionPersistence(Serial serial) : base(serial)
{
}
public override void Serialize(IGenericWriter writer)
{
}
public override void Deserialize(IGenericReader reader)
{
base.Deserialize(reader);
var version = reader.ReadInt();
int type;
while ((type = reader.ReadEncodedInt()) != 0)
{
if (type == 1)
{
new FactionState(reader);
}
else if (type == 2)
{
new TownState(reader);
}
}
Timer.DelayCall(Delete);
}
}