### Additions
- Automatically opts-out `Item/Mobile/Guild/Accounts` from dirty checking with a new property `UseDirtyChecking`
- Codegen now enables `UseDirtyChecking` via getter. This requires that the property is `virtual` for derived types.
### Fixes
- Fixes `EncodedInt` being broken
- Fixes issues with new custom serializable types that are not derived from Item/Mobile/etc.
- Removes double dirty checking.
### Example of a brand new serializable type that isn't an Item/Mobile/etc.
User created code:
```cs
using System;
namespace Server.Items
{
[Serializable(0)]
public partial class NewTestEntityObject : ISerializable
{
[EncodedInt]
[SerializableField(0)]
private int _someProperty;
public NewTestEntityObject()
{
SetTypeRef(GetType());
// Add to serial tracking like World.Item
/*
Serial = World.NewEntity;
World.AddEntity(this);
*/
}
[AfterDeserialization]
private void AfterDeserialization()
{
Console.WriteLine("This ran!");
}
public int TypeRef { get; }
public Serial Serial { get; }
public void Delete()
{
}
public bool Deleted { get; set; }
public void SetTypeRef(Type type)
{
// Type tracking for persistence goes here
/*
TypeRef = World.NewEntityTypes.IndexOf(type);
if (TypeRef == -1)
{
World.NewEntityTypes.Add(type);
TypeRef = World.NewEntityTypes.Count - 1;
}
*/
}
}
}
```
Generated code:
```cs
namespace Server.Items
{
public partial class NewTestEntityObject
{
#pragma warning disable 0414
private const int _version = 0;
#pragma warning restore 0414
public int SomeProperty
{
get => _someProperty;
set
{
if (value != _someProperty)
{
_someProperty = value;
((ISerializable)this).MarkDirty();
}
}
}
long ISerializable.SavePosition { get; set; } = -1;
BufferWriter ISerializable.SaveBuffer { get; set; }
bool ISerializable.UseDirtyChecking => true;
public NewTestEntityObject(Serial serial)
{
Serial = serial;
SetTypeRef(typeof(NewTestEntityObject));
}
public void Serialize(IGenericWriter writer)
{
writer.WriteEncodedInt(_version);
writer.WriteEncodedInt(SomeProperty);
}
public void Deserialize(IGenericReader reader)
{
var version = reader.ReadEncodedInt();
SomeProperty = reader.ReadEncodedInt();
Timer.DelayCall(AfterDeserialization);
}
}
}
```
134 lines
3.9 KiB
C#
134 lines
3.9 KiB
C#
/*************************************************************************
|
|
* ModernUO *
|
|
* Copyright (C) 2019-2021 - ModernUO Development Team *
|
|
* Email: hi@modernuo.com *
|
|
* File: Guild.cs *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, either version 3 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
*************************************************************************/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Server.Guilds
|
|
{
|
|
public enum GuildType
|
|
{
|
|
Regular,
|
|
Chaos,
|
|
Order
|
|
}
|
|
|
|
public abstract class BaseGuild : ISerializable
|
|
{
|
|
protected BaseGuild()
|
|
{
|
|
Serial = World.NewGuild;
|
|
World.AddGuild(this);
|
|
|
|
SetTypeRef(GetType());
|
|
}
|
|
|
|
protected BaseGuild(Serial serial)
|
|
{
|
|
Serial = serial;
|
|
SetTypeRef(GetType());
|
|
}
|
|
|
|
public void SetTypeRef(Type type)
|
|
{
|
|
TypeRef = World.GuildTypes.IndexOf(type);
|
|
|
|
if (TypeRef == -1)
|
|
{
|
|
World.GuildTypes.Add(type);
|
|
TypeRef = World.GuildTypes.Count - 1;
|
|
}
|
|
}
|
|
|
|
public abstract string Abbreviation { get; set; }
|
|
public abstract string Name { get; set; }
|
|
public abstract GuildType Type { get; set; }
|
|
public abstract bool Disbanded { get; }
|
|
public abstract void Delete();
|
|
|
|
public bool Deleted => Disbanded;
|
|
|
|
[CommandProperty(AccessLevel.Counselor)]
|
|
public Serial Serial { get; }
|
|
|
|
bool ISerializable.UseDirtyChecking => false;
|
|
|
|
long ISerializable.SavePosition { get; set; } = -1;
|
|
|
|
BufferWriter ISerializable.SaveBuffer { get; set; }
|
|
|
|
public int TypeRef { get; private set; }
|
|
|
|
public abstract void Serialize(IGenericWriter writer);
|
|
public abstract void Deserialize(IGenericReader reader);
|
|
public abstract void OnDelete(Mobile mob);
|
|
|
|
public static BaseGuild FindByName(string name)
|
|
{
|
|
foreach (var g in World.Guilds.Values)
|
|
{
|
|
if (g.Name == name)
|
|
{
|
|
return g;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public static BaseGuild FindByAbbrev(string abbr)
|
|
{
|
|
foreach (var g in World.Guilds.Values)
|
|
{
|
|
if (g.Abbreviation == abbr)
|
|
{
|
|
return g;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public static HashSet<BaseGuild> Search(string find)
|
|
{
|
|
var words = find.ToLower().Split(' ');
|
|
var results = new HashSet<BaseGuild>();
|
|
|
|
foreach (var g in World.Guilds.Values)
|
|
{
|
|
var name = g.Name;
|
|
|
|
bool all = true;
|
|
foreach (var t in words)
|
|
{
|
|
if (name.InsensitiveIndexOf(t) == -1)
|
|
{
|
|
all = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (all)
|
|
{
|
|
results.Add(g);
|
|
}
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
public override string ToString() => $"0x{Serial.Value:X} \"{Name} [{Abbreviation}]\"";
|
|
}
|
|
}
|