2022-10-10 21:47:08 -07:00
|
|
|
/*************************************************************************
|
|
|
|
|
* ModernUO *
|
2023-08-09 09:09:26 -07:00
|
|
|
* Copyright 2019-2023 - ModernUO Development Team *
|
2022-10-10 21:47:08 -07:00
|
|
|
* Email: hi@modernuo.com *
|
|
|
|
|
* File: SerializationExtensions.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/>. *
|
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
2022-04-18 00:05:44 -07:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Server.Guilds;
|
|
|
|
|
|
|
|
|
|
namespace Server;
|
|
|
|
|
|
|
|
|
|
public static class SerializationExtensions
|
|
|
|
|
{
|
2024-09-14 09:57:43 -07:00
|
|
|
private static readonly Dictionary<Type, Func<Serial, bool, ISerializable>> _directFinderTable = new();
|
|
|
|
|
private static readonly Dictionary<Type, Func<Serial, bool, ISerializable>> _searchTable = new();
|
2023-10-01 17:38:52 -07:00
|
|
|
|
2024-09-14 09:57:43 -07:00
|
|
|
public static void RegisterFindEntity(this Type type, Func<Serial, bool, ISerializable> func)
|
2023-10-01 17:38:52 -07:00
|
|
|
{
|
|
|
|
|
_searchTable[type] = func;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-18 00:05:44 -07:00
|
|
|
public static T ReadEntity<T>(this IGenericReader reader) where T : class, ISerializable
|
|
|
|
|
{
|
|
|
|
|
Serial serial = reader.ReadSerial();
|
|
|
|
|
var typeT = typeof(T);
|
|
|
|
|
|
|
|
|
|
T entity;
|
|
|
|
|
|
|
|
|
|
// Add to this list when creating new serializable types
|
|
|
|
|
if (typeof(BaseGuild).IsAssignableFrom(typeT))
|
|
|
|
|
{
|
|
|
|
|
// If we check for `entity.Deleted` here during deserialization then all guilds are deleted because
|
|
|
|
|
// Deleted -> Disbanded -> No leader, which is the case before deserialization.
|
2023-10-01 17:38:52 -07:00
|
|
|
// TODO: Use a deleted flag instead, and actively check for disbanded guilds properly.
|
|
|
|
|
return World.FindGuild(serial) as T;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (typeof(IEntity).IsAssignableFrom(typeT))
|
|
|
|
|
{
|
2024-09-14 09:57:43 -07:00
|
|
|
return World.FindEntity<IEntity>(serial) as T;
|
2022-04-18 00:05:44 -07:00
|
|
|
}
|
2023-10-01 17:38:52 -07:00
|
|
|
|
|
|
|
|
if (_directFinderTable.TryGetValue(typeT, out var finder))
|
2022-04-18 00:05:44 -07:00
|
|
|
{
|
2024-09-14 09:57:43 -07:00
|
|
|
return finder(serial, false) as T;
|
2023-10-01 17:38:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Type type = null;
|
|
|
|
|
foreach (var baseType in _searchTable.Keys)
|
|
|
|
|
{
|
|
|
|
|
if (baseType.IsAssignableFrom(typeT))
|
2022-04-18 00:05:44 -07:00
|
|
|
{
|
2023-10-01 17:38:52 -07:00
|
|
|
type = baseType;
|
|
|
|
|
break;
|
2022-04-18 00:05:44 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-01 17:38:52 -07:00
|
|
|
if (type == null)
|
|
|
|
|
{
|
|
|
|
|
type = typeT;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
var baseType = type?.BaseType;
|
|
|
|
|
|
|
|
|
|
// Find the parent class with ISerializable registered. To do this we break on it's parent class (or object)
|
|
|
|
|
// that doesn't have ISerializable implemented.
|
|
|
|
|
if (baseType?.GetInterface("ISerializable") == null && type?.GetInterface("ISerializable") != null)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type = baseType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
throw new Exception($"No FindEntity registered for '{type.FullName}'.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
finder = _searchTable[type];
|
|
|
|
|
_directFinderTable[type] = finder;
|
2024-09-14 09:57:43 -07:00
|
|
|
return finder(serial, false) as T;
|
2022-04-18 00:05:44 -07:00
|
|
|
}
|
|
|
|
|
|
2023-07-03 09:45:22 -07:00
|
|
|
public static List<T> ReadEntityList<T>(
|
|
|
|
|
this IGenericReader reader,
|
|
|
|
|
bool nullIfEmpty = false
|
|
|
|
|
) where T : class, ISerializable
|
2022-04-18 00:05:44 -07:00
|
|
|
{
|
|
|
|
|
var count = reader.ReadInt();
|
|
|
|
|
|
2023-07-03 09:45:22 -07:00
|
|
|
if (count == 0 && nullIfEmpty)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-18 00:05:44 -07:00
|
|
|
var list = new List<T>(count);
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < count; ++i)
|
|
|
|
|
{
|
|
|
|
|
var entity = reader.ReadEntity<T>();
|
|
|
|
|
if (entity != null)
|
|
|
|
|
{
|
|
|
|
|
list.Add(entity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-03 09:45:22 -07:00
|
|
|
public static HashSet<T> ReadEntitySet<T>(
|
|
|
|
|
this IGenericReader reader,
|
|
|
|
|
bool nullIfEmpty = false
|
|
|
|
|
) where T : class, ISerializable
|
2022-04-18 00:05:44 -07:00
|
|
|
{
|
|
|
|
|
var count = reader.ReadInt();
|
|
|
|
|
|
2023-07-03 09:45:22 -07:00
|
|
|
if (count == 0 && nullIfEmpty)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-18 00:05:44 -07:00
|
|
|
var set = new HashSet<T>(count);
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < count; ++i)
|
|
|
|
|
{
|
|
|
|
|
var entity = reader.ReadEntity<T>();
|
|
|
|
|
if (entity != null)
|
|
|
|
|
{
|
|
|
|
|
set.Add(entity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Write(this IGenericWriter writer, ISerializable value)
|
|
|
|
|
{
|
|
|
|
|
writer.Write(value?.Deleted != false ? Serial.MinusOne : value.Serial);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Write<T>(this IGenericWriter writer, ICollection<T> coll) where T : class, ISerializable
|
|
|
|
|
{
|
|
|
|
|
writer.Write(coll.Count);
|
|
|
|
|
foreach (var entry in coll)
|
|
|
|
|
{
|
|
|
|
|
writer.Write(entry);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Write<T>(
|
|
|
|
|
this IGenericWriter writer, ICollection<T> coll, Action<IGenericWriter, T> action
|
|
|
|
|
) where T : class, ISerializable
|
|
|
|
|
{
|
|
|
|
|
if (coll == null)
|
|
|
|
|
{
|
|
|
|
|
writer.Write(0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writer.Write(coll.Count);
|
|
|
|
|
foreach (var entry in coll)
|
|
|
|
|
{
|
|
|
|
|
action(writer, entry);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Write(this IGenericWriter writer, Poison p)
|
|
|
|
|
{
|
|
|
|
|
if (p == null)
|
|
|
|
|
{
|
|
|
|
|
writer.Write(false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
writer.Write(true);
|
|
|
|
|
writer.Write((byte)p.Level);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Poison ReadPoison(this IGenericReader reader) =>
|
|
|
|
|
reader.ReadBool() ? Poison.GetPoison(reader.ReadByte()) : null;
|
|
|
|
|
}
|