1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use crate::deserializers::coordinates_deserializer;
use df_st_core::{Coordinate, Filler, HasUnknown};
use df_st_derive::{HasUnknown, HashAndPartialEqById};
use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::collections::HashMap;

#[derive(Serialize, Deserialize, Clone, Debug, HasUnknown, HashAndPartialEqById)]
pub struct WorldConstruction {
    pub id: i32,
    pub name: Option<String>,
    #[serde(alias = "type")]
    pub type_: Option<String>,
    #[serde(deserialize_with = "coordinates_deserializer")]
    #[serde(default)]
    pub coords: Option<Vec<Coordinate>>,

    #[serde(flatten)]
    pub unknown: HashMap<String, Value>,
}

#[derive(Serialize, Deserialize, Clone, Debug, HasUnknown)]
pub struct WorldConstructions {
    pub world_construction: Option<Vec<WorldConstruction>>,

    #[serde(flatten)]
    pub unknown: HashMap<String, Value>,
}

impl Filler<df_st_core::WorldConstruction, WorldConstruction> for df_st_core::WorldConstruction {
    fn add_missing_data(&mut self, source: &WorldConstruction) {
        self.id.add_missing_data(&source.id);
        self.name.add_missing_data(&source.name);
        self.type_.add_missing_data(&source.type_);
        self.coords.add_missing_data(&source.coords);
    }
}

impl PartialEq<df_st_core::WorldConstruction> for WorldConstruction {
    fn eq(&self, other: &df_st_core::WorldConstruction) -> bool {
        self.id == other.id
    }
}

impl Filler<Vec<df_st_core::WorldConstruction>, WorldConstructions>
    for Vec<df_st_core::WorldConstruction>
{
    fn add_missing_data(&mut self, source: &WorldConstructions) {
        self.add_missing_data(&source.world_construction);
    }
}

impl Filler<IndexMap<u64, df_st_core::WorldConstruction>, WorldConstructions>
    for IndexMap<u64, df_st_core::WorldConstruction>
{
    fn add_missing_data(&mut self, source: &WorldConstructions) {
        self.add_missing_data(&source.world_construction);
    }
}