krabmaga 0.6.2

A modern developing art for reliable and efficient Agent-based Model (ABM) simulation with the Rust language.
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
//! Sparse object grid keyed by [A5](https://github.com/jonititan/bevy_a5)
//! pentagonal cells.
//!
//! This is the spherical / GIS counterpart of [`SparseGrid2D`](super::sparse_object_grid_2d::SparseGrid2D).
//! Whereas `SparseGrid2D` indexes a flat `width × height` rectangle of
//! [`Int2D`](crate::engine::location::Int2D) cells, `SparseA5Grid` indexes
//! the descendants of a root [`GeoCell`] at a fixed A5 resolution. Default
//! root is `WORLD_CELL` (the whole planet); pass a finer root to bound the
//! grid to a region.
//!
//! # Storage backend
//!
//! Mirrors the 2D sparse grid: when any of the `parallel`, `visualization`,
//! or `visualization_wasm` features is enabled, storage switches from
//! single-threaded `RefCell<HashMap<...>>` double-buffering to a sharded,
//! thread-safe [`DBDashMap`](crate::utils::dbdashmap::DBDashMap). Same
//! public API, same `Field` semantics.
//!
//! Available under the `gis` cargo feature.

use crate::engine::fields::{field::Field, grid_option::GridOption};

use bevy_a5::prelude::GeoCell;
use bevy_a5::{query, WORLD_CELL};

use cfg_if::cfg_if;
use rand::Rng;
use std::hash::Hash;

cfg_if! {
    if #[cfg(any(feature = "parallel", feature = "visualization", feature = "visualization_wasm"))] {
        use crate::utils::dbdashmap::DBDashMap;
    } else {
        use hashbrown::HashMap;
        use std::cell::RefCell;
    }
}

cfg_if! {
    if #[cfg(any(feature = "parallel", feature = "visualization", feature = "visualization_wasm"))] {
        // -----------------------------------------------------------------
        // Parallel / visualization branch — DBDashMap-backed, thread-safe.
        //
        // Direct port of the `SparseGrid2D` parallel branch: two
        // DBDashMaps (`obj2loc` + `loc2objs`) handle their own
        // double-buffering. `lazy_update` / `update` swap their internal
        // shards.
        // -----------------------------------------------------------------

        /// Sparse A5-cell-keyed object field, parallel-safe variant.
        pub struct SparseA5Grid<O: Eq + Hash + Clone + Copy> {
            /// `object → location`. Read with `get_read`; write with `insert` / `remove`.
            pub obj2loc: DBDashMap<O, GeoCell>,
            /// `location → bag of objects`.
            pub loc2objs: DBDashMap<GeoCell, Vec<O>>,
            pub root: GeoCell,
            pub resolution: i32,
        }

        impl<O: Eq + Hash + Clone + Copy> SparseA5Grid<O> {
            /// Whole-planet grid at the given A5 resolution.
            pub fn new(resolution: i32) -> Self {
                Self::new_with_root(WORLD_CELL.into(), resolution)
            }

            /// Grid bounded to the descendants of `root`.
            pub fn new_with_root(root: GeoCell, resolution: i32) -> Self {
                SparseA5Grid {
                    obj2loc: DBDashMap::new(),
                    loc2objs: DBDashMap::new(),
                    root,
                    resolution,
                }
            }

            pub fn apply_to_all_values<F>(&self, closure: F, _option: GridOption)
            where
                F: Fn(&GeoCell, &O) -> Option<O>,
            {
                // The 2D parallel branch ignores GridOption and runs
                // `apply_to_all_keys` on `obj2loc`; we mirror that for
                // surface-compatibility. The closure receives
                // (location, object) — same as the single-threaded
                // branch — because `obj2loc`'s K is the object and V
                // is the location.
                self.obj2loc.apply_to_all_keys(closure);
            }

            pub fn set_object_location(&self, object: O, loc: &GeoCell) {
                match self.loc2objs.get_write(loc) {
                    Some(mut vec) => {
                        if !vec.is_empty() {
                            vec.retain(|&x| x != object);
                        }
                        vec.push(object);
                    }
                    None => {
                        self.loc2objs.insert(*loc, vec![object]);
                    }
                }
                self.obj2loc.insert(object, *loc);
            }

            pub fn remove_object_location(&self, object: O, loc: &GeoCell) {
                let now_empty = if let Some(mut vec) = self.loc2objs.get_write(loc) {
                    vec.retain(|&x| x != object);
                    vec.is_empty()
                } else {
                    false
                };
                if now_empty {
                    self.loc2objs.remove(loc);
                }
                self.obj2loc.remove(&object);
            }

            pub fn remove_object(&self, object: &O) {
                if let Some(loc_ref) = self.obj2loc.get_read(object) {
                    let loc = *loc_ref;
                    if let Some(mut vec) = self.loc2objs.get_write(&loc) {
                        vec.retain(|x| x != object);
                    }
                }
                self.obj2loc.remove(object);
            }

            pub fn get(&self, object: &O) -> Option<O> {
                self.obj2loc.get_key_value(object).map(|(k, _)| *k)
            }

            pub fn get_unbuffered(&self, object: &O) -> Option<O> {
                self.obj2loc.get_write(object).map(|_| *object)
            }

            pub fn get_location(&self, object: &O) -> Option<GeoCell> {
                self.obj2loc.get_read(object).copied()
            }

            pub fn get_location_unbuffered(&self, object: &O) -> Option<GeoCell> {
                self.obj2loc.get_write(object).map(|loc_ref| *loc_ref)
            }

            pub fn get_objects(&self, loc: &GeoCell) -> Option<Vec<O>> {
                match self.loc2objs.get_read(loc) {
                    Some(vec) if !vec.is_empty() => Some(vec.clone()),
                    _ => None,
                }
            }

            pub fn get_objects_unbuffered(&self, loc: &GeoCell) -> Option<Vec<O>> {
                match self.loc2objs.get_write(loc) {
                    Some(vec) if !vec.is_empty() => Some(vec.clone()),
                    _ => None,
                }
            }

            pub fn num_objects(&self) -> usize {
                let mut total = 0;
                for shard in self.loc2objs.r_shards.iter() {
                    for bag in shard.values() {
                        total += bag.len();
                    }
                }
                total
            }

            pub fn num_objects_at_location(&self, loc: &GeoCell) -> usize {
                self.loc2objs
                    .get_read(loc)
                    .map(|bag| bag.len())
                    .unwrap_or(0)
            }

            pub fn iter_objects<F>(&self, closure: F)
            where
                F: Fn(&GeoCell, &O),
            {
                for shard in self.loc2objs.r_shards.iter() {
                    for (key, bag) in shard.iter() {
                        for obj in bag {
                            closure(key, obj);
                        }
                    }
                }
            }

            pub fn iter_objects_unbuffered<F>(&self, closure: F)
            where
                F: Fn(&GeoCell, &O),
            {
                for shard_mutex in self.loc2objs.shards.iter() {
                    let shard = shard_mutex.lock().expect("lock loc2objs shard");
                    for (key, bag) in shard.iter() {
                        for obj in bag {
                            closure(key, obj);
                        }
                    }
                }
            }

            pub fn get_empty_bags(&self) -> Vec<GeoCell> {
                let mut empty = Vec::new();
                if let Some(cells) = self.all_cells() {
                    for cell in cells {
                        match self.loc2objs.get_read(&cell) {
                            Some(bag) if !bag.is_empty() => {}
                            _ => empty.push(cell),
                        }
                    }
                }
                empty
            }

            pub fn get_random_empty_bag(&self) -> Option<GeoCell> {
                let empty = self.get_empty_bags();
                if empty.is_empty() {
                    return None;
                }
                let mut rng = rand::rng();
                Some(empty[rng.random_range(0..empty.len())])
            }

            fn collect_objects(&self, cells: &[GeoCell]) -> Vec<O> {
                let mut out = Vec::new();
                for cell in cells {
                    if let Some(bag) = self.loc2objs.get_read(cell) {
                        out.extend(bag.iter().copied());
                    }
                }
                out
            }
        }

        impl<O: Eq + Hash + Clone + Copy> Field for SparseA5Grid<O> {
            fn lazy_update(&mut self) {
                self.obj2loc.lazy_update();
                self.loc2objs.lazy_update();
            }

            fn update(&mut self) {
                self.obj2loc.update();
                self.loc2objs.update();
            }
        }
    } else {
        // -----------------------------------------------------------------
        // Single-threaded branch — RefCell + HashMap, double-buffered.
        // -----------------------------------------------------------------

        /// Sparse A5-cell-keyed object field, single-threaded variant.
        pub struct SparseA5Grid<O: Eq + Hash + Clone + Copy> {
            /// Two buffers: index 0 = read, index 1 = write. Swapped on
            /// `lazy_update` / `update`.
            pub locs: Vec<RefCell<HashMap<GeoCell, Vec<O>>>>,
            read: usize,
            write: usize,
            pub root: GeoCell,
            pub resolution: i32,
        }

        impl<O: Eq + Hash + Clone + Copy> SparseA5Grid<O> {
            pub fn new(resolution: i32) -> Self {
                Self::new_with_root(WORLD_CELL.into(), resolution)
            }

            pub fn new_with_root(root: GeoCell, resolution: i32) -> Self {
                SparseA5Grid {
                    locs: vec![
                        RefCell::new(HashMap::new()),
                        RefCell::new(HashMap::new()),
                    ],
                    read: 0,
                    write: 1,
                    root,
                    resolution,
                }
            }

            pub fn apply_to_all_values<F>(&self, closure: F, option: GridOption)
            where
                F: Fn(&GeoCell, &O) -> Option<O>,
            {
                match option {
                    GridOption::READ => {
                        let mut rlocs = self.locs[self.read].borrow_mut();
                        for (key, value) in rlocs.iter_mut() {
                            for obj in value {
                                *obj = closure(key, obj).expect("error on closure");
                            }
                        }
                    }
                    GridOption::WRITE => {
                        let mut locs = self.locs[self.write].borrow_mut();
                        for (key, value) in locs.iter_mut() {
                            for obj in value {
                                *obj = closure(key, obj).expect("error on closure");
                            }
                        }
                    }
                    GridOption::READWRITE => {
                        let rlocs = self.locs[self.read].borrow();
                        let mut locs = self.locs[self.write].borrow_mut();
                        for (key, value) in rlocs.iter() {
                            if let Some(write_value) = locs.get_mut(key) {
                                for obj in write_value {
                                    *obj = closure(key, obj).expect("error on closure");
                                }
                            } else {
                                for obj in value {
                                    let new_bag = vec![closure(key, obj).expect("error on closure")];
                                    locs.insert(*key, new_bag);
                                }
                            }
                        }
                    }
                }
            }

            pub fn get_location(&self, object: &O) -> Option<GeoCell> {
                let rlocs = self.locs[self.read].borrow();
                for (key, objs) in rlocs.iter() {
                    for obj in objs {
                        if *obj == *object {
                            return Some(*key);
                        }
                    }
                }
                None
            }

            pub fn get_location_unbuffered(&self, object: &O) -> Option<GeoCell> {
                let locs = self.locs[self.write].borrow();
                for (key, objs) in locs.iter() {
                    for obj in objs {
                        if *obj == *object {
                            return Some(*key);
                        }
                    }
                }
                None
            }

            pub fn get(&self, object: &O) -> Option<O> {
                let rlocs = self.locs[self.read].borrow();
                for bag in rlocs.values() {
                    for obj in bag {
                        if *obj == *object {
                            return Some(*obj);
                        }
                    }
                }
                None
            }

            pub fn get_unbuffered(&self, object: &O) -> Option<O> {
                let locs = self.locs[self.write].borrow();
                for bag in locs.values() {
                    for obj in bag {
                        if *obj == *object {
                            return Some(*obj);
                        }
                    }
                }
                None
            }

            pub fn num_objects(&self) -> usize {
                self.locs[self.read]
                    .borrow()
                    .values()
                    .map(|bag| bag.len())
                    .sum()
            }

            pub fn num_objects_at_location(&self, loc: &GeoCell) -> usize {
                self.locs[self.read]
                    .borrow()
                    .get(loc)
                    .map(|bag| bag.len())
                    .unwrap_or(0)
            }

            pub fn get_objects(&self, loc: &GeoCell) -> Option<Vec<O>> {
                self.locs[self.read].borrow().get(loc).cloned()
            }

            pub fn get_objects_unbuffered(&self, loc: &GeoCell) -> Option<Vec<O>> {
                self.locs[self.write].borrow().get(loc).cloned()
            }

            pub fn get_empty_bags(&self) -> Vec<GeoCell> {
                let mut empty = Vec::new();
                let rlocs = self.locs[self.read].borrow();
                if let Some(cells) = self.all_cells() {
                    for cell in cells {
                        match rlocs.get(&cell) {
                            Some(bag) if !bag.is_empty() => {}
                            _ => empty.push(cell),
                        }
                    }
                }
                empty
            }

            pub fn get_random_empty_bag(&self) -> Option<GeoCell> {
                let empty = self.get_empty_bags();
                if empty.is_empty() {
                    return None;
                }
                let mut rng = rand::rng();
                Some(empty[rng.random_range(0..empty.len())])
            }

            pub fn iter_objects<F>(&self, closure: F)
            where
                F: Fn(&GeoCell, &O),
            {
                let rlocs = self.locs[self.read].borrow();
                for (key, bag) in rlocs.iter() {
                    for obj in bag {
                        closure(key, obj);
                    }
                }
            }

            pub fn iter_objects_unbuffered<F>(&self, closure: F)
            where
                F: Fn(&GeoCell, &O),
            {
                let locs = self.locs[self.write].borrow();
                for (key, bag) in locs.iter() {
                    for obj in bag {
                        closure(key, obj);
                    }
                }
            }

            pub fn set_object_location(&self, object: O, loc: &GeoCell) {
                let mut locs = self.locs[self.write].borrow_mut();
                match locs.get_mut(loc) {
                    Some(bag) => bag.push(object),
                    None => {
                        locs.insert(*loc, vec![object]);
                    }
                }
            }

            pub fn remove_object_location(&self, object: O, loc: &GeoCell) {
                let mut locs = self.locs[self.write].borrow_mut();
                if let Some(bag) = locs.get_mut(loc) {
                    bag.retain(|&obj| obj != object);
                    if bag.is_empty() {
                        locs.remove(loc);
                    }
                }
            }

            pub fn remove_object(&self, object: &O) {
                let mut locs = self.locs[self.write].borrow_mut();
                let mut empty_keys: Vec<GeoCell> = Vec::new();
                for (key, bag) in locs.iter_mut() {
                    bag.retain(|obj| obj != object);
                    if bag.is_empty() {
                        empty_keys.push(*key);
                    }
                }
                for key in empty_keys {
                    locs.remove(&key);
                }
            }

            fn collect_objects(&self, cells: &[GeoCell]) -> Vec<O> {
                let rlocs = self.locs[self.read].borrow();
                let mut out = Vec::new();
                for cell in cells {
                    if let Some(bag) = rlocs.get(cell) {
                        out.extend(bag.iter().copied());
                    }
                }
                out
            }
        }

        impl<O: Eq + Hash + Clone + Copy> Field for SparseA5Grid<O> {
            fn lazy_update(&mut self) {
                std::mem::swap(&mut self.read, &mut self.write);
                self.locs[self.write].borrow_mut().clear();
            }

            fn update(&mut self) {
                let mut rlocs = self.locs[self.read].borrow_mut();
                rlocs.clear();
                for (key, value) in self.locs[self.write].borrow().iter() {
                    rlocs.insert(*key, value.clone());
                }
                self.locs[self.write].borrow_mut().clear();
            }
        }
    }
}

// ---------------------------------------------------------------------------
// Storage-agnostic shared API (read-only; depends only on root + resolution).
// Defined once here; both backends pick this up.
// ---------------------------------------------------------------------------

impl<O: Eq + Hash + Clone + Copy> SparseA5Grid<O> {
    /// All cells covered by this grid (descendants of `root` at `resolution`).
    pub fn all_cells(&self) -> Option<Vec<GeoCell>> {
        self.root.children(self.resolution)
    }

    /// Bounding-box predicate: is `loc` a cell of this grid?
    ///
    /// Returns `true` when `loc.resolution() == self.resolution` **and**
    /// `loc` is a descendant of `self.root`. With `root = WORLD_CELL` the
    /// only check is the resolution match.
    ///
    /// Following the krABMaga convention, `set_object_location` does not
    /// validate locations on insert — agents are expected to call
    /// `contains` before stepping (see `Field2D`'s `toroidal` flag and the
    /// manual bounds checks in the canonical `wolfsheepgrass` example).
    pub fn contains(&self, loc: &GeoCell) -> bool {
        if loc.resolution() != self.resolution {
            return false;
        }
        if self.root.is_world_cell() {
            return true;
        }
        let root_res = self.root.resolution();
        if root_res > self.resolution {
            return false;
        }
        loc.parent(root_res) == Some(self.root)
    }

    // ---------- Cell-only spatial helpers (raw `GeoCell`s) ----------

    pub fn cell_neighbors(&self, loc: &GeoCell) -> Option<Vec<GeoCell>> {
        query::neighbors(loc)
    }

    pub fn cell_vertex_neighbors(&self, loc: &GeoCell) -> Option<Vec<GeoCell>> {
        query::vertex_neighbors(loc)
    }

    pub fn cell_grid_disk(&self, loc: &GeoCell, k: usize) -> Option<Vec<GeoCell>> {
        query::grid_disk(loc, k)
    }

    pub fn cell_spherical_cap(&self, loc: &GeoCell, radius_meters: f64) -> Option<Vec<GeoCell>> {
        query::spherical_cap(loc, radius_meters)
    }

    pub fn lonlat_to_cell(&self, longitude: f64, latitude: f64) -> Option<GeoCell> {
        GeoCell::from_lon_lat(longitude, latitude, self.resolution)
    }

    // ---------- Object-returning spatial queries (read buffer) ----------

    pub fn get_neighbors(&self, loc: &GeoCell) -> Vec<O> {
        match self.cell_neighbors(loc) {
            Some(cells) => self.collect_objects(&cells),
            None => Vec::new(),
        }
    }

    pub fn get_vertex_neighbors(&self, loc: &GeoCell) -> Vec<O> {
        match self.cell_vertex_neighbors(loc) {
            Some(cells) => self.collect_objects(&cells),
            None => Vec::new(),
        }
    }

    pub fn get_objects_within_disk(&self, loc: &GeoCell, k: usize) -> Vec<O> {
        match self.cell_grid_disk(loc, k) {
            Some(cells) => self.collect_objects(&cells),
            None => Vec::new(),
        }
    }

    /// Objects within `dist_meters` arc length of `loc`. Mirrors the krABMaga
    /// `Field2D::get_neighbors_within_distance` idiom; on the sphere
    /// "distance" is metric arc length (`bevy_a5::query::spherical_cap`).
    pub fn get_neighbors_within_distance(&self, loc: &GeoCell, dist_meters: f64) -> Vec<O> {
        if dist_meters <= 0.0 {
            return Vec::new();
        }
        match self.cell_spherical_cap(loc, dist_meters) {
            Some(cells) => self.collect_objects(&cells),
            None => Vec::new(),
        }
    }
}