gpt4 book ai didi

serialization - JSON.Net 引用变为空

转载 作者:行者123 更新时间:2023-12-04 05:59:28 25 4
gpt4 key购买 nike

我正在使用 JSON.Net 序列化我的游戏状态,但奇怪的是一些引用变为空。它们似乎可以很好地序列化(检查输出 json 时 $id 和 $ref 似乎已正确设置),但反序列化的对象在不应包含的地方包含空引用。

我的状态如下:我有一个星球,其中包含一个瓷砖列表。每个图 block 都知道它的邻居(同样是一个图 block 列表)。

这是 json 的一小部分,初始序列化:(最重要的部分是最后一行,neighbors has uses a ref number)

"Tiles": {
"$id": "3",
"$values": [
{
"$id": "4",
"$type": "WarSystems.Tile, Assembly-CSharp",
"_type": 0,
"ID": "161d8ca1-f086-49eb-94ba-0b5b3bbb0921",
"Position": {
"x": 0.0,
"y": 0.0,
"z": -1.71737635
},
"Normal": {
"x": 0.0,
"y": 0.0,
"z": -1.0
},
"Neighbours": [
{
"$id": "5",
"$type": "WarSystems.Tile, Assembly-CSharp",
"_type": 2,
"ID": "f34a2bb1-4a10-49db-b2d5-7980ccc55760",
"Position": {
"x": 0.2789981,
"y": -0.8586796,
"z": -1.460893
},
"Normal": {
"x": 0.1624527,
"y": -0.4999933,
"z": -0.850656152
},
"Neighbours": [
{
"$ref": "4"
},

“Tiles”是星球上的瓷砖列表。如您所见,第一 block 瓷砖有一个邻居,他们的邻居将第一 block 瓷砖作为他的邻居。序列化正常,所有邻居都设置正确。

但是,当我反序列化它,然后重新序列化它时,我得到以下信息:(现在注意 neighbors 有一个 null)

"Tiles": {
"$id": "3",
"$values": [
{
"$id": "4",
"$type": "WarSystems.Tile, Assembly-CSharp",
"_type": 0,
"ID": "161d8ca1-f086-49eb-94ba-0b5b3bbb0921",
"Position": {
"x": 0.0,
"y": 0.0,
"z": -1.71737635
},
"Normal": {
"x": 0.0,
"y": 0.0,
"z": -1.0
},
"Neighbours": [
{
"$id": "5",
"$type": "WarSystems.Tile, Assembly-CSharp",
"_type": 2,
"ID": "f34a2bb1-4a10-49db-b2d5-7980ccc55760",
"Position": {
"x": 0.2789981,
"y": -0.8586796,
"z": -1.460893
},
"Normal": {
"x": 0.1624527,
"y": -0.4999933,
"z": -0.850656152
},
"Neighbours": [
null,

如您所见,第一个邻居现在为空。 (我也检查了实际的反序列化对象,它也有空引用,所以反序列化似乎出错了。当然还有很多,但这部分显示出了什么问题,整个json会有点多发布.)

最后,这是我(反)序列化的方式:

private static string SerializeState(State state)
{
return JsonConvert.SerializeObject(state, SerializerSettings);
}


private static State DeserializeState(string serialized)
{
return JsonConvert.DeserializeObject<State>(serialized, SerializerSettings);
}

在它们之间共享 SerializerSettings:

private static JsonSerializerSettings SerializerSettings = new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
PreserveReferencesHandling = PreserveReferencesHandling.All,
ReferenceLoopHandling = ReferenceLoopHandling.Serialize,
Converters = new List<JsonConverter>() { new Vector3Converter() },
Formatting = Formatting.Indented
};

(Vector3Converter 用于序列化 Unity 的 Vector3。它只是将其序列化为具有 3 个字段的对象:x、y 和 z。作为图 block 中的 Position 属性。)

有谁知道出了什么问题,以及如何解决?

谢谢!

编辑,Planet 和 Tile 类:

public class Planet
{
public Vector3 Position { get; set; }

public List<Tile> Tiles { get; set; }

public Planet(Vector3 pos, List<Tile> tiles)
{
Position = pos;
Tiles = tiles;
}
}

public class Tile
{
public Guid ID { get; set; }

[JsonRequired]
private TileType _type;
[JsonIgnore]
public TileType Type
{
get { return _type; }
set
{
if (_type != value)
{
_type = value;
if (TypeChanged != null) TypeChanged(_type);
}
}
}

public Vector3 Position { get; set; }
public Vector3 Normal { get; set; }

private List<Tile> _neighbours = new List<Tile>(6); //6 since we use a hex grid
public List<Tile> Neighbours { get { return _neighbours; } set { _neighbours = value; } }

// Events
public event System.Action<TileType> TypeChanged;

public Tile(TileType type, Vector3 pos, Vector3 normal)
{
ID = Guid.NewGuid();
Position = pos;
Normal = normal;
}

public void AddNeighbour(Tile neighbour)
{
_neighbours.Add(neighbour);
}
}

最佳答案

我已经解决了。在我的 Tile 类中添加一个空的构造函数后,一切都按预期工作。

public Tile() { } //for deserialization

关于serialization - JSON.Net 引用变为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35178930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com