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
//! Cargo definitions.

use getset::{CopyGetters, Getters};
use serde::{Deserialize, Serialize};

use crate::atlas::IconRef;
use crate::{lang, IdString};

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

impl_identifiable!(Def);

/// A type of cargo.
#[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 cargo type.
    #[getset(get_copy = "pub")]
    #[cfg_attr(feature = "xy", xylem(args(new = true)))]
    id:          Id,
    /// String ID of the cargo type.
    #[getset(get = "pub")]
    #[cfg_attr(feature = "xy", xylem(serde(default)))]
    id_str:      IdString<Def>,
    /// Name of the cargo type.
    #[getset(get = "pub")]
    name:        lang::Item,
    /// Short summary of the cargo type.
    #[getset(get = "pub")]
    summary:     lang::Item,
    /// Long description of the cargo type.
    #[getset(get = "pub")]
    description: lang::Item,
    /// Category of the cargo type.
    #[getset(get_copy = "pub")]
    category:    category::Id,
    /// The texture of the cargo.
    #[getset(get = "pub")]
    texture:     IconRef,
}

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

    use crate::{lang, IdString};

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

    impl_identifiable!(Def);

    /// A category of cargo.
    #[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 cargo category.
        #[getset(get_copy = "pub")]
        #[cfg_attr(feature = "xy", xylem(args(new = true)))]
        id:          Id,
        /// String ID of the cargo category.
        #[getset(get = "pub")]
        #[cfg_attr(feature = "xy", xylem(serde(default)))]
        id_str:      IdString<Def>,
        /// Title of the cargo category.
        #[getset(get = "pub")]
        title:       lang::Item,
        /// Description of the cargo category.
        #[getset(get = "pub")]
        description: lang::Item,
    }
}