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
use crate::fillable::{Fillable, Filler};
use crate::HasUnknown;
use crate::SchemaExample;
use df_st_derive::{Fillable, Filler};
use juniper::GraphQLObject;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::collections::HashMap;
use std::fmt;
use std::hash::Hash;

/// A coordinate of a region tile
/// The coordinates are of region tiles (129x129 for medium maps)
/// More info about region tiles can be found
/// [here](https://dwarffortresswiki.org/index.php/DF2014:World_generation#World_size).
#[derive(
    Serialize,
    Deserialize,
    Clone,
    Hash,
    Fillable,
    Filler,
    Default,
    PartialEq,
    JsonSchema,
    GraphQLObject,
)]
pub struct Coordinate {
    pub id: i32,
    pub x: i32,
    pub y: i32,
}

#[derive(
    Serialize,
    Deserialize,
    Clone,
    Debug,
    Hash,
    Fillable,
    Filler,
    Default,
    PartialEq,
    JsonSchema,
    GraphQLObject,
)]
pub struct Rectangle {
    pub id: i32,
    pub x1: i32,
    pub y1: i32,
    pub x2: i32,
    pub y2: i32,
}

#[derive(
    Serialize,
    Deserialize,
    Clone,
    Debug,
    Hash,
    Fillable,
    Filler,
    Default,
    PartialEq,
    JsonSchema,
    GraphQLObject,
)]
pub struct Path {
    pub id: i32,
    pub x: i32,
    pub y: i32,
    pub flow: i32,
    pub exit_tile: i32,
    pub elevation: i32,
}

impl HasUnknown for Coordinate {
    fn print_unknown(&self, _prefix: &str, _unknown_map: &mut HashMap<String, u32>) {}
    fn combine_unknown(
        &self,
        _prefix: &str,
        _unknown_combiner: &mut HashMap<String, Vec<(String, Value)>>,
    ) {
    }
}

impl HasUnknown for Rectangle {
    fn print_unknown(&self, _prefix: &str, _unknown_map: &mut HashMap<String, u32>) {}
    fn combine_unknown(
        &self,
        _prefix: &str,
        _unknown_combiner: &mut HashMap<String, Vec<(String, Value)>>,
    ) {
    }
}

impl HasUnknown for Path {
    fn print_unknown(&self, _prefix: &str, _unknown_map: &mut HashMap<String, u32>) {}
    fn combine_unknown(
        &self,
        _prefix: &str,
        _unknown_combiner: &mut HashMap<String, Vec<(String, Value)>>,
    ) {
    }
}

/// Force a new format for `Coordinate` to not clutter the screen
impl fmt::Debug for Coordinate {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&format! {"({},{})", self.x, self.y})
    }
}

impl fmt::Display for Coordinate {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "({}, {})", self.x, self.y)
    }
}

impl fmt::Display for Rectangle {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "({}, {}, {}, {})", self.x1, self.y1, self.x2, self.y2)
    }
}

impl fmt::Display for Path {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "({}, {}, {}, {}, {})",
            self.x, self.y, self.flow, self.exit_tile, self.elevation
        )
    }
}

impl Coordinate {
    pub fn new() -> Self {
        Self::default()
    }
}

impl SchemaExample for Coordinate {
    fn example() -> Self {
        Self::default()
    }
}

impl Rectangle {
    pub fn new() -> Self {
        Self::default()
    }
}

impl SchemaExample for Rectangle {
    fn example() -> Self {
        Self::default()
    }
}

impl Path {
    pub fn new() -> Self {
        Self::default()
    }
}

impl SchemaExample for Path {
    fn example() -> Self {
        Self::default()
    }
}