screeps-game-api 0.23.3

WASM bindings to the in-game Screeps API
Documentation
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
use std::{
    cmp::Ordering,
    fmt,
    ops::{Index, IndexMut},
};

use serde::{de, Deserialize, Deserializer, Serialize, Serializer};

use super::room_coordinate::{OutOfBoundsError, RoomCoordinate};
use crate::constants::{Direction, ROOM_AREA, ROOM_USIZE};

mod approximate_offsets;
mod extra_math;
mod game_math;

/// Converts a [`RoomXY`] coordinate pair to a linear index appropriate for use
/// with the internal representation of a [`CostMatrix`] or [`LocalCostMatrix`].
///
/// [`CostMatrix`]: crate::objects::CostMatrix
/// [`LocalCostMatrix`]: crate::local::LocalCostMatrix
#[inline]
pub const fn xy_to_linear_index(xy: RoomXY) -> usize {
    xy.x.u8() as usize * ROOM_USIZE + xy.y.u8() as usize
}

/// Converts a linear index from the internal representation of a [`CostMatrix`]
/// or [`LocalCostMatrix`] to a [`RoomXY`] coordinate pair for the position the
/// index represents.
///
/// [`CostMatrix`]: crate::objects::CostMatrix
/// [`LocalCostMatrix`]: crate::local::LocalCostMatrix
#[inline]
pub fn linear_index_to_xy(idx: usize) -> RoomXY {
    assert!(idx < ROOM_AREA, "Out of bounds index: {idx}");
    // SAFETY: bounds checking above ensures both are within range.
    RoomXY {
        x: unsafe { RoomCoordinate::unchecked_new((idx / (ROOM_USIZE)) as u8) },
        y: unsafe { RoomCoordinate::unchecked_new((idx % (ROOM_USIZE)) as u8) },
    }
}

/// Converts a [`RoomXY`] coordinate pair to a terrain index appropriate for use
/// with the internal representation of [`RoomTerrain`] or [`LocalRoomTerrain`].
///
/// [`RoomTerrain`]: crate::objects::RoomTerrain
/// [`LocalRoomTerrain`]: crate::local::LocalRoomTerrain
#[inline]
pub const fn xy_to_terrain_index(xy: RoomXY) -> usize {
    xy.y.u8() as usize * ROOM_USIZE + xy.x.u8() as usize
}

/// Converts a terrain index from the internal representation of a
/// [`RoomTerrain`] or [`LocalRoomTerrain`] to a [`RoomXY`] coordinate pair for
/// the position the index represents.
///
/// [`RoomTerrain`]: crate::objects::RoomTerrain
/// [`LocalRoomTerrain`]: crate::local::LocalRoomTerrain
#[inline]
pub fn terrain_index_to_xy(idx: usize) -> RoomXY {
    assert!(idx < ROOM_AREA, "Out of bounds index: {idx}");
    // SAFETY: bounds checking above ensures both are within range.
    RoomXY {
        x: unsafe { RoomCoordinate::unchecked_new((idx % (ROOM_USIZE)) as u8) },
        y: unsafe { RoomCoordinate::unchecked_new((idx / (ROOM_USIZE)) as u8) },
    }
}

/// An X/Y pair representing a given coordinate relative to any room.
#[derive(Debug, Default, Hash, Clone, Copy, PartialEq, Eq)]
pub struct RoomXY {
    pub x: RoomCoordinate,
    pub y: RoomCoordinate,
}

impl RoomXY {
    /// Create a new `RoomXY` from a pair of `RoomCoordinate`.
    #[inline]
    pub fn new(x: RoomCoordinate, y: RoomCoordinate) -> Self {
        RoomXY { x, y }
    }

    /// Create a new `RoomXY` from a pair of `u8`, checking that they're in
    /// the range of valid values.
    #[inline]
    pub fn checked_new(x: u8, y: u8) -> Result<RoomXY, OutOfBoundsError> {
        RoomXY::try_from((x, y))
    }

    /// Create a `RoomXY` from a pair of `u8`, without checking whether it's in
    /// the range of valid values.
    ///
    /// # Safety
    /// Calling this method with `x >= ROOM_SIZE` or `y >= ROOM_SIZE` can
    /// result in undefined behaviour when the resulting `RoomXY` is used.
    #[inline]
    pub unsafe fn unchecked_new(x: u8, y: u8) -> Self {
        RoomXY {
            x: RoomCoordinate::unchecked_new(x),
            y: RoomCoordinate::unchecked_new(y),
        }
    }

    /// Get whether this coordinate pair represents an edge position (0 or 49
    /// for either coordinate)
    pub const fn is_room_edge(self) -> bool {
        self.x.is_room_edge() || self.y.is_room_edge()
    }

    /// Get the coordinate adjusted by a certain value, returning `None` if the
    /// result is outside the valid room area.
    ///
    /// Example usage:
    ///
    /// ```
    /// use screeps::local::RoomXY;
    ///
    /// let zero = unsafe { RoomXY::unchecked_new(0, 0) };
    /// let one = unsafe { RoomXY::unchecked_new(1, 1) };
    /// let forty_nine = unsafe { RoomXY::unchecked_new(49, 49) };
    ///
    /// assert_eq!(zero.checked_add((1, 1)), Some(one));
    /// assert_eq!(zero.checked_add((-1, 0)), None);
    /// assert_eq!(zero.checked_add((49, 49)), Some(forty_nine));
    /// assert_eq!(forty_nine.checked_add((1, 1)), None);
    /// ```
    pub fn checked_add(self, rhs: (i8, i8)) -> Option<RoomXY> {
        let x = self.x.checked_add(rhs.0)?;
        let y = self.y.checked_add(rhs.1)?;
        Some(RoomXY { x, y })
    }

    /// Get the coordinate adjusted by a certain value, saturating at the edges
    /// of the room if the result would be outside the valid room area.
    ///
    /// Example usage:
    ///
    /// ```
    /// use screeps::local::RoomXY;
    ///
    /// let zero = unsafe { RoomXY::unchecked_new(0, 0) };
    /// let one = unsafe { RoomXY::unchecked_new(1, 1) };
    /// let forty_nine = unsafe { RoomXY::unchecked_new(49, 49) };
    ///
    /// assert_eq!(zero.saturating_add((1, 1)), one);
    /// assert_eq!(zero.saturating_add((-1, 0)), zero);
    /// assert_eq!(zero.saturating_add((49, 49)), forty_nine);
    /// assert_eq!(zero.saturating_add((i8::MAX, i8::MAX)), forty_nine);
    /// assert_eq!(forty_nine.saturating_add((1, 1)), forty_nine);
    /// assert_eq!(forty_nine.saturating_add((i8::MIN, i8::MIN)), zero);
    /// ```
    pub fn saturating_add(self, rhs: (i8, i8)) -> RoomXY {
        let x = self.x.saturating_add(rhs.0);
        let y = self.y.saturating_add(rhs.1);
        RoomXY { x, y }
    }

    /// Get the neighbor of a given `RoomXY` in the given direction, returning
    /// `None` if the result is outside the valid room area.
    ///
    /// Example usage:
    ///
    /// ```
    /// use screeps::{constants::Direction::*, local::RoomXY};
    ///
    /// let zero = unsafe { RoomXY::unchecked_new(0, 0) };
    /// let one = unsafe { RoomXY::unchecked_new(1, 1) };
    /// let forty_nine = unsafe { RoomXY::unchecked_new(49, 49) };
    ///
    /// assert_eq!(zero.checked_add_direction(BottomRight), Some(one));
    /// assert_eq!(zero.checked_add_direction(TopLeft), None);
    /// assert_eq!(one.checked_add_direction(TopLeft), Some(zero));
    /// assert_eq!(forty_nine.checked_add_direction(BottomRight), None);
    /// ```
    pub fn checked_add_direction(self, rhs: Direction) -> Option<RoomXY> {
        let (dx, dy) = rhs.into();
        self.checked_add((dx as i8, dy as i8))
    }

    /// Get the neighbor of a given `RoomXY` in the given direction, saturating
    /// at the edges if the result is outside the valid room area.
    ///
    /// Example usage:
    ///
    /// ```
    /// use screeps::{constants::Direction::*, local::RoomXY};
    ///
    /// let zero = unsafe { RoomXY::unchecked_new(0, 0) };
    /// let one = unsafe { RoomXY::unchecked_new(1, 1) };
    /// let forty_nine = unsafe { RoomXY::unchecked_new(49, 49) };
    ///
    /// assert_eq!(zero.saturating_add_direction(BottomRight), one);
    /// assert_eq!(zero.saturating_add_direction(TopLeft), zero);
    /// assert_eq!(one.saturating_add_direction(TopLeft), zero);
    /// assert_eq!(forty_nine.saturating_add_direction(BottomRight), forty_nine);
    /// ```
    pub fn saturating_add_direction(self, rhs: Direction) -> RoomXY {
        let (dx, dy) = rhs.into();
        self.saturating_add((dx as i8, dy as i8))
    }

    /// Get all the valid neighbors of a given `RoomXY`.
    ///
    /// Example usage:
    ///
    /// ```
    /// use screeps::local::RoomXY;
    ///
    /// let zero_zero = unsafe { RoomXY::unchecked_new(0, 0) };
    /// let zero_one = unsafe { RoomXY::unchecked_new(0, 1) };
    /// let one_zero = unsafe { RoomXY::unchecked_new(1, 0) };
    /// let one_one = unsafe { RoomXY::unchecked_new(1, 1) };
    ///
    /// let zero_two = unsafe { RoomXY::unchecked_new(0, 2) };
    /// let one_two = unsafe { RoomXY::unchecked_new(1, 2) };
    /// let two_two = unsafe { RoomXY::unchecked_new(2, 2) };
    /// let two_one = unsafe { RoomXY::unchecked_new(2, 1) };
    /// let two_zero = unsafe { RoomXY::unchecked_new(2, 0) };
    ///
    /// let zero_zero_neighbors = zero_zero.neighbors();
    ///
    /// assert_eq!(zero_zero_neighbors.len(), 3);
    /// assert!(zero_zero_neighbors.contains(&zero_one));
    /// assert!(zero_zero_neighbors.contains(&one_one));
    /// assert!(zero_zero_neighbors.contains(&one_zero));
    ///
    /// let one_one_neighbors = one_one.neighbors();
    ///
    /// assert_eq!(one_one_neighbors.len(), 8);
    /// assert!(one_one_neighbors.contains(&zero_zero));
    /// assert!(one_one_neighbors.contains(&zero_one));
    /// assert!(one_one_neighbors.contains(&one_zero));
    /// assert!(one_one_neighbors.contains(&zero_two));
    /// assert!(one_one_neighbors.contains(&one_two));
    /// assert!(one_one_neighbors.contains(&two_two));
    /// assert!(one_one_neighbors.contains(&two_one));
    /// assert!(one_one_neighbors.contains(&two_zero));
    /// ```
    pub fn neighbors(self) -> Vec<RoomXY> {
        Direction::iter()
            .filter_map(|dir| self.checked_add_direction(*dir))
            .collect()
    }
}

impl PartialOrd for RoomXY {
    #[inline]
    fn partial_cmp(&self, other: &RoomXY) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for RoomXY {
    fn cmp(&self, other: &Self) -> Ordering {
        (self.y, self.x).cmp(&(other.y, other.x))
    }
}

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

impl From<RoomXY> for (u8, u8) {
    fn from(xy: RoomXY) -> (u8, u8) {
        (xy.x.u8(), xy.y.u8())
    }
}

impl TryFrom<(u8, u8)> for RoomXY {
    type Error = OutOfBoundsError;

    fn try_from(xy: (u8, u8)) -> Result<RoomXY, OutOfBoundsError> {
        Ok(RoomXY {
            x: RoomCoordinate::try_from(xy.0)?,
            y: RoomCoordinate::try_from(xy.1)?,
        })
    }
}

impl From<(RoomCoordinate, RoomCoordinate)> for RoomXY {
    fn from(xy: (RoomCoordinate, RoomCoordinate)) -> RoomXY {
        RoomXY { x: xy.0, y: xy.1 }
    }
}

impl From<RoomXY> for (RoomCoordinate, RoomCoordinate) {
    fn from(xy: RoomXY) -> (RoomCoordinate, RoomCoordinate) {
        (xy.x, xy.y)
    }
}

#[derive(Serialize, Deserialize)]
struct ReadableXY {
    x: RoomCoordinate,
    y: RoomCoordinate,
}

impl From<ReadableXY> for RoomXY {
    fn from(ReadableXY { x, y }: ReadableXY) -> RoomXY {
        RoomXY { x, y }
    }
}

impl From<RoomXY> for ReadableXY {
    fn from(RoomXY { x, y }: RoomXY) -> ReadableXY {
        ReadableXY { x, y }
    }
}

impl Serialize for RoomXY {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        if serializer.is_human_readable() {
            ReadableXY::from(*self).serialize(serializer)
        } else {
            let xy: (u8, u8) = (*self).into();
            let packed: u16 = ((xy.0 as u16) << 8) | (xy.1 as u16);
            packed.serialize(serializer)
        }
    }
}

impl<'de> Deserialize<'de> for RoomXY {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        if deserializer.is_human_readable() {
            ReadableXY::deserialize(deserializer).map(Into::into)
        } else {
            let packed = u16::deserialize(deserializer)?;
            let xy = (((packed >> 8) & 0xFF) as u8, (packed & 0xFF) as u8);
            RoomXY::try_from(xy).map_err(|err: OutOfBoundsError| {
                de::Error::invalid_value(
                    de::Unexpected::Unsigned(err.0 as u64),
                    &format!("a non-negative integer less-than {ROOM_USIZE}").as_str(),
                )
            })
        }
    }
}

/// A wrapper struct indicating that the inner array should be indexed X major,
/// i.e.
/// ```
/// use screeps::{
///     constants::ROOM_USIZE,
///     local::{RoomXY, XMajor},
/// };
///
/// let mut x_major = XMajor([[0_u8; ROOM_USIZE]; ROOM_USIZE]);
/// x_major.0[10][0] = 1;
/// let xy = RoomXY::checked_new(10, 0).unwrap();
/// assert_eq!(x_major[xy], 1);
/// ```
#[repr(transparent)]
pub struct XMajor<T>(pub [[T; ROOM_USIZE]; ROOM_USIZE]);

impl<T> XMajor<T> {
    pub fn from_ref(arr: &[[T; ROOM_USIZE]; ROOM_USIZE]) -> &Self {
        // SAFETY: XMajor is a repr(transparent) wrapper around [[T; ROOM_USIZE];
        // ROOM_USIZE], so casting references of one to the other is safe.
        unsafe { &*(arr as *const [[T; ROOM_USIZE]; ROOM_USIZE] as *const Self) }
    }

    pub fn from_flat_ref(arr: &[T; ROOM_AREA]) -> &Self {
        // SAFETY: ROOM_AREA = ROOM_USIZE * ROOM_USIZE, so [T; ROOM_AREA] is identical
        // in data layout to [[T; ROOM_USIZE]; ROOM_USIZE].
        Self::from_ref(unsafe {
            &*(arr as *const [T; ROOM_AREA] as *const [[T; ROOM_USIZE]; ROOM_USIZE])
        })
    }

    pub fn from_mut(arr: &mut [[T; ROOM_USIZE]; ROOM_USIZE]) -> &mut Self {
        // SAFETY: XMajor is a repr(transparent) wrapper around [[T; ROOM_USIZE];
        // ROOM_USIZE], so casting references of one to the other is safe.
        unsafe { &mut *(arr as *mut [[T; ROOM_USIZE]; ROOM_USIZE] as *mut Self) }
    }

    pub fn from_flat_mut(arr: &mut [T; ROOM_AREA]) -> &mut Self {
        // SAFETY: ROOM_AREA = ROOM_USIZE * ROOM_USIZE, so [T; ROOM_AREA] is identical
        // in data layout to [[T; ROOM_USIZE]; ROOM_USIZE].
        Self::from_mut(unsafe {
            &mut *(arr as *mut [T; ROOM_AREA] as *mut [[T; ROOM_USIZE]; ROOM_USIZE])
        })
    }
}

impl<T> Index<RoomXY> for XMajor<T> {
    type Output = T;

    fn index(&self, index: RoomXY) -> &Self::Output {
        &self.0[index.x][index.y]
    }
}

impl<T> IndexMut<RoomXY> for XMajor<T> {
    fn index_mut(&mut self, index: RoomXY) -> &mut Self::Output {
        &mut self.0[index.x][index.y]
    }
}

/// A wrapper struct indicating that the inner array should be indexed Y major,
/// i.e.
/// ```
/// use screeps::{
///     constants::ROOM_USIZE,
///     local::{RoomXY, YMajor},
/// };
///
/// let mut y_major = YMajor([[0_u8; ROOM_USIZE]; ROOM_USIZE]);
/// y_major.0[0][10] = 1;
/// let xy = RoomXY::checked_new(10, 0).unwrap();
/// assert_eq!(y_major[xy], 1);
/// ```
#[repr(transparent)]
pub struct YMajor<T>(pub [[T; ROOM_USIZE]; ROOM_USIZE]);

impl<T> YMajor<T> {
    pub fn from_ref(arr: &[[T; ROOM_USIZE]; ROOM_USIZE]) -> &Self {
        // SAFETY: XMajor is a repr(transparent) wrapper around [[T; ROOM_USIZE];
        // ROOM_USIZE], so casting references of one to the other is safe.
        unsafe { &*(arr as *const [[T; ROOM_USIZE]; ROOM_USIZE] as *const Self) }
    }

    pub fn from_flat_ref(arr: &[T; ROOM_AREA]) -> &Self {
        // SAFETY: ROOM_AREA = ROOM_USIZE * ROOM_USIZE, so [T; ROOM_AREA] is identical
        // in data layout to [[T; ROOM_USIZE]; ROOM_USIZE].
        Self::from_ref(unsafe {
            &*(arr as *const [T; ROOM_AREA] as *const [[T; ROOM_USIZE]; ROOM_USIZE])
        })
    }

    pub fn from_mut(arr: &mut [[T; ROOM_USIZE]; ROOM_USIZE]) -> &mut Self {
        // SAFETY: XMajor is a repr(transparent) wrapper around [[T; ROOM_USIZE];
        // ROOM_USIZE], so casting references of one to the other is safe.
        unsafe { &mut *(arr as *mut [[T; ROOM_USIZE]; ROOM_USIZE] as *mut Self) }
    }

    pub fn from_flat_mut(arr: &mut [T; ROOM_AREA]) -> &mut Self {
        // SAFETY: ROOM_AREA = ROOM_USIZE * ROOM_USIZE, so [T; ROOM_AREA] is identical
        // in data layout to [[T; ROOM_USIZE]; ROOM_USIZE].
        Self::from_mut(unsafe {
            &mut *(arr as *mut [T; ROOM_AREA] as *mut [[T; ROOM_USIZE]; ROOM_USIZE])
        })
    }
}

impl<T> Index<RoomXY> for YMajor<T> {
    type Output = T;

    fn index(&self, index: RoomXY) -> &Self::Output {
        &self.0[index.y][index.x]
    }
}

impl<T> IndexMut<RoomXY> for YMajor<T> {
    fn index_mut(&mut self, index: RoomXY) -> &mut Self::Output {
        &mut self.0[index.y][index.x]
    }
}