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
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
//! Building definitions

use getset::{CopyGetters, Getters};
use serde::{Deserialize, Serialize};
use traffloat_types::space::Matrix;
use traffloat_types::{geometry, units};

use crate::atlas::ModelRef;
use crate::feature::Feature;
use crate::{lang, IdString};

/// Identifies a building type.
pub type Id = crate::Id<Def>;

impl_identifiable!(Def);

/// A type of building.
#[derive(Debug, Clone, CopyGetters, Getters, Serialize, Deserialize)]
#[cfg_attr(feature = "xy", derive(xylem::Xylem))]
#[cfg_attr(feature = "xy", xylem(derive(Deserialize), process))]
pub struct Def {
    /// ID of the building type.
    #[getset(get_copy = "pub")]
    #[cfg_attr(feature = "xy", xylem(args(new = true)))]
    id:          Id,
    /// String ID of the building type.
    #[getset(get = "pub")]
    #[cfg_attr(feature = "xy", xylem(serde(default)))]
    id_str:      IdString<Def>,
    /// Name of the building type.
    #[getset(get = "pub")]
    name:        lang::Item,
    /// Short summary of the building type.
    #[getset(get = "pub")]
    summary:     lang::Item,
    /// Long description of the building type.
    #[getset(get = "pub")]
    description: lang::Item,
    /// Category of the building type.
    #[getset(get_copy = "pub")]
    category:    category::Id,
    /// Shape of the building.
    ///
    /// If multiple shapes are provided, they are all rendered together in order.
    #[getset(get = "pub")]
    shapes:      Vec<Shape>,
    /// Maximum hitpoint of a building.
    ///
    /// The actual hitpoint is subject to asteroid and fire damage.
    /// It can be restored by construction work.
    #[getset(get_copy = "pub")]
    hitpoint:    units::Hitpoint,
    /// Storage provided by a building
    #[getset(get = "pub")]
    storage:     Storage,
    /// Extra features associated with the building.
    #[getset(get = "pub")]
    #[cfg_attr(feature = "xy", xylem(serde(default)))]
    features:    Vec<Feature>,
}

/// Xylem-specific objects.
#[cfg(feature = "xy")]
pub mod xy {
    use std::any::TypeId;
    use std::collections::BTreeMap;

    use xylem::{Context, DefaultContext, Processable};

    use super::Id;
    use crate::{lang, Schema};

    /// A mapping of building type IDs to their names.
    #[derive(Default)]
    pub struct BuildingNameMap {
        map: BTreeMap<Id, lang::Item>,
    }

    impl BuildingNameMap {
        /// Insert a building ID.
        pub fn insert(&mut self, id: Id, item: lang::Item) { self.map.insert(id, item); }

        /// Lookup a building ID.
        pub fn get(&self, id: Id) -> Option<&lang::Item> { self.map.get(&id) }
    }

    impl Processable<Schema> for super::Def {
        fn postprocess(&mut self, context: &mut DefaultContext) -> anyhow::Result<()> {
            let map = context.get_mut::<BuildingNameMap, _>(TypeId::of::<()>(), Default::default);
            map.insert(self.id, self.name.clone());
            Ok(())
        }
    }
}

/// Shape of a building.
#[derive(Debug, Clone, CopyGetters, Getters, Serialize, Deserialize)]
#[cfg_attr(feature = "xy", derive(xylem::Xylem))]
#[cfg_attr(feature = "xy", xylem(derive(Deserialize)))]
pub struct Shape {
    /// The unit model type.
    #[getset(get_copy = "pub")]
    unit:      geometry::Unit,
    /// The transformation matrix from the unit model to this shape.
    #[getset(get_copy = "pub")]
    #[cfg_attr(feature = "xy", xylem(serde(default)))]
    transform: Matrix,
    /// The texture of the building.
    #[getset(get_copy = "pub")]
    texture:   ModelRef,
}

/// Storage provided by a building.
///
/// This storage is also used as a buffer for liquid and gas transfer.
/// The storage size is the maximum total amount of liquid and gas that
/// pipe systems passing through this building can transfer per frame.
#[derive(Debug, Clone, Getters, CopyGetters, Serialize, Deserialize)]
#[cfg_attr(feature = "xy", derive(xylem::Xylem))]
#[cfg_attr(feature = "xy", xylem(derive(Deserialize)))]
pub struct Storage {
    /// Cargo storage provided
    #[getset(get_copy = "pub")]
    cargo:      units::CargoSize,
    /// Gas storage provided
    #[getset(get_copy = "pub")]
    gas:        units::GasVolume,
    /// Liquid storages provided
    #[getset(get = "pub")]
    #[cfg_attr(feature = "xy", xylem(serde(default)))]
    liquid:     Vec<storage::liquid::Def>,
    /// Population storages provided
    #[getset(get = "pub")]
    #[cfg_attr(feature = "xy", xylem(serde(default)))]
    population: Vec<storage::population::Def>,
}

/// Storages in buildings.
pub mod storage {
    /// Liquid storage.
    pub mod liquid {
        use getset::{CopyGetters, Getters};
        use serde::{Deserialize, Serialize};
        use traffloat_types::units;

        use crate::{lang, IdString};

        /// Identifies a liquid storage.
        pub type Id = crate::Id<Def>;

        impl_identifiable!(Def, crate::building::Def);

        /// A liquid storage.
        ///
        /// A building can have multiple, inhomogeneous liquid storages,
        /// which can be individually addressed by their IDs.
        /// Reactions involving liquids can consume, store or use (for catalyst)
        /// specific liquid types from the named  storages.
        #[derive(Debug, Clone, Getters, CopyGetters, Serialize, Deserialize)]
        #[cfg_attr(feature = "xy", derive(xylem::Xylem))]
        #[cfg_attr(feature = "xy", xylem(derive(Deserialize)))]
        pub struct Def {
            /// ID of the liquid storage.
            #[getset(get_copy = "pub")]
            #[cfg_attr(feature = "xy", xylem(args(new = true, track = true)))]
            id:       Id,
            /// String ID of the liquid storage.
            #[getset(get = "pub")]
            #[cfg_attr(feature = "xy", xylem(serde(default)))]
            id_str:   IdString<Def>,
            /// The capacity of this storage.
            #[getset(get_copy = "pub")]
            capacity: units::LiquidVolume,
            /// The name of this storage.
            #[getset(get = "pub")]
            name:     lang::Item,
        }
    }

    /// Population storage.
    pub mod population {
        use getset::{CopyGetters, Getters};
        use serde::{Deserialize, Serialize};

        use crate::{lang, IdString};

        /// Identifies a population storage.
        pub type Id = crate::Id<Def>;

        impl_identifiable!(Def, crate::building::Def);

        /// A population storage, allowing inhabitants to temporarily stay in a node.
        ///
        /// All inhabitants entering a building by swimming or disembarking from a vehicle in the
        /// building would enter a population storage.
        #[derive(Debug, Clone, Getters, CopyGetters, Serialize, Deserialize)]
        #[cfg_attr(feature = "xy", derive(xylem::Xylem))]
        #[cfg_attr(feature = "xy", xylem(derive(Deserialize)))]
        pub struct Def {
            /// ID of the population storage.
            #[getset(get_copy = "pub")]
            #[cfg_attr(feature = "xy", xylem(args(new = true)))]
            id:       Id,
            /// String ID of the population storage.
            #[getset(get = "pub")]
            #[cfg_attr(feature = "xy", xylem(serde(default)))]
            id_str:   IdString<Def>,
            /// The capacity of this storage.
            #[getset(get_copy = "pub")]
            capacity: u32,
            /// The name of this storage.
            #[getset(get = "pub")]
            name:     lang::Item,
        }
    }

    // TODO vehicle storage, for moving vehicles from rail to rail.
}

/// Categories of buildings.
pub mod category {
    use getset::{CopyGetters, Getters};
    use serde::{Deserialize, Serialize};

    use crate::{lang, IdString};

    /// Identifies a building category.
    pub type Id = crate::Id<Def>;

    impl_identifiable!(Def);

    /// A category of building.
    #[derive(Debug, Clone, CopyGetters, Getters, Serialize, Deserialize)]
    #[cfg_attr(feature = "xy", derive(xylem::Xylem))]
    #[cfg_attr(feature = "xy", xylem(derive(Deserialize)))]
    pub struct Def {
        /// ID of the building category.
        #[getset(get_copy = "pub")]
        #[cfg_attr(feature = "xy", xylem(args(new = true)))]
        id:          Id,
        /// String ID of the building category.
        #[getset(get = "pub")]
        #[cfg_attr(feature = "xy", xylem(serde(default)))]
        id_str:      IdString<Def>,
        /// Title of the building category.
        #[getset(get = "pub")]
        title:       lang::Item,
        /// Description of the building category.
        #[getset(get = "pub")]
        description: lang::Item,
    }
}