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
//! Tool used to store and sample grid-like data.

use crate::Scalar;
use serde::{Deserialize, Serialize};
use std::ops::{Add, Index, IndexMut, Mul};

/// Collection that holds data in 2d grid-like manner.
/// Grid can be:
/// - accessed by inspection of each element;
/// - filled with same value for all fields;
/// - filled with values got from closure that produces value for each field individually;
/// - sampled with any type that implements `GridSampler` trai.
#[derive(Clone, Default, Serialize, Deserialize)]
pub struct Grid<T> {
    cols: usize,
    rows: usize,
    fields: Vec<T>,
}

impl<T> Grid<T> {
    /// Creates new grid.
    ///
    /// # Arguments
    /// * `cols` - Number of columns.
    /// * `rows` - Number of rows.
    /// * `value` - Initial value applied for each field.
    ///
    /// # Return
    /// Instance of grid.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::{Grid, GridSamplerCluster};
    ///
    /// let grid = Grid::new(2, 2, 1.0);
    /// let sampler = GridSamplerCluster::new((0, 0), (1, 1));
    /// assert_eq!(grid.sample(sampler).unwrap(), (4.0, 4));
    /// ```
    #[inline]
    pub fn new(cols: usize, rows: usize, value: T) -> Self
    where
        T: Clone,
    {
        Self {
            cols,
            rows,
            fields: vec![value; cols * rows],
        }
    }

    /// Gets number of columns.
    ///
    /// # Return
    /// Number of columns.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let grid = Grid::new(2, 2, 1.0);
    /// assert_eq!(grid.cols(), 2);
    /// ```
    #[inline]
    pub fn cols(&self) -> usize {
        self.cols
    }

    /// Gets number of rows.
    ///
    /// # Return
    /// Number of rows.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let grid = Grid::new(2, 2, 1.0);
    /// assert_eq!(grid.rows(), 2);
    /// ```
    #[inline]
    pub fn rows(&self) -> usize {
        self.rows
    }

    /// Gets slice of fields.
    ///
    /// # Return
    /// Reference to slice of fields that holds.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let grid = Grid::new(2, 2, 1.0);
    /// assert_eq!(grid.fields(), &[1.0, 1.0, 1.0, 1.0]);
    /// ```
    #[inline]
    pub fn fields(&self) -> &[T] {
        &self.fields
    }

    /// Gets slice of fields.
    ///
    /// # Return
    /// Mutable reference to slice of fields that holds.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let mut grid = Grid::new(2, 2, 0.0);
    /// let mut i = 1.0;
    /// for field in grid.fields_mut() {
    ///     *field = i;
    ///     i += 1.0;
    /// }
    /// assert_eq!(grid.fields(), &[1.0, 2.0, 3.0, 4.0]);
    /// ```
    #[inline]
    pub fn fields_mut(&mut self) -> &mut [T] {
        &mut self.fields
    }

    /// Fiils grid with same value.
    ///
    /// # Arguments
    /// * `value` - Value that will be applied to each field.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let mut grid = Grid::new(2, 2, 0.0);
    /// grid.fill_all(1.0);
    /// assert_eq!(grid.fields(), &[1.0, 1.0, 1.0, 1.0]);
    /// ```
    #[inline]
    pub fn fill_all(&mut self, value: T)
    where
        T: Clone,
    {
        self.fields = vec![value; self.cols * self.rows];
    }

    /// Fiils grid with same value to fields contained by specified bounds.
    ///
    /// # Arguments
    /// * `col_row` - Starting column and row.
    /// * `size` - Number of columns and rows of bounds.
    /// * `value` - Value that will be applied to each field.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let mut grid = Grid::new(2, 2, 0.0);
    /// grid.fill((1, 0), (1, 2), 1.0);
    /// assert_eq!(grid.fields(), &[0.0, 1.0, 0.0, 1.0]);
    /// ```
    pub fn fill(&mut self, col_row: (usize, usize), size: (usize, usize), value: T)
    where
        T: Clone,
    {
        for y in col_row.1.min(self.rows)..(col_row.1 + size.1).min(self.rows) {
            for x in col_row.0.min(self.cols)..(col_row.0 + size.0).min(self.cols) {
                let index = y * self.cols + x;
                self.fields[index] = value.clone();
            }
        }
    }

    /// Fiils grid with values got from producer closure.
    ///
    /// # Arguments
    /// * `with` - Closure that will produce value for each field based on their col-row coords.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let mut grid = Grid::new(2, 2, 0.0);
    /// grid.fill_with(|col, row| Some((col + row) as f32));
    /// assert_eq!(grid.fields(), &[0.0, 1.0, 1.0, 2.0]);
    /// ```
    pub fn fill_with<F>(&mut self, mut with: F)
    where
        F: FnMut(usize, usize) -> Option<T>,
    {
        for y in 0..self.rows {
            for x in 0..self.cols {
                let index = y * self.cols + x;
                if let Some(value) = with(x, y) {
                    self.fields[index] = value;
                }
            }
        }
    }

    /// Inspect and/or edit fields with closure.
    ///
    /// # Arguments
    /// * `with` - Closure that will inspect and allow to edit each field.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::Grid;
    ///
    /// let mut grid = Grid::new(2, 2, 0.0);
    /// grid.with(|col, row, field| *field = (col + row) as f32);
    /// assert_eq!(grid.fields(), &[0.0, 1.0, 1.0, 2.0]);
    /// ```
    pub fn with<F>(&mut self, mut with: F)
    where
        F: FnMut(usize, usize, &mut T),
    {
        for (index, field) in self.fields.iter_mut().enumerate() {
            let x = index % self.cols;
            let y = index / self.rows;
            with(x, y, field);
        }
    }

    /// Sample grid fields using given sampler.
    ///
    /// # Arguments
    /// * `sampler` - Sampler object that implements `GridSampler` trait.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::{Grid, GridSamplerCluster};
    ///
    /// let grid = Grid::new(2, 2, 1.0);
    /// let sampler = GridSamplerCluster::new((0, 0), (1, 1));
    /// assert_eq!(grid.sample(sampler).unwrap(), (4.0, 4));
    /// ```
    pub fn sample<S, W>(&self, sampler: S) -> Option<(T, W)>
    where
        S: GridSampler<T, W>,
    {
        sampler.sample(self)
    }
}

impl<T> Index<(usize, usize)> for Grid<T> {
    type Output = T;

    #[inline]
    fn index(&self, index: (usize, usize)) -> &T {
        let index = index.1 * self.cols + index.0;
        self.fields.index(index)
    }
}

impl<T> IndexMut<(usize, usize)> for Grid<T> {
    #[inline]
    fn index_mut(&mut self, index: (usize, usize)) -> &mut T {
        let index = index.1 * self.cols + index.0;
        self.fields.index_mut(index)
    }
}

impl<T> Index<[usize; 2]> for Grid<T> {
    type Output = T;

    #[inline]
    fn index(&self, index: [usize; 2]) -> &T {
        let index = index[1] * self.cols + index[0];
        self.fields.index(index)
    }
}

impl<T> IndexMut<[usize; 2]> for Grid<T> {
    #[inline]
    fn index_mut(&mut self, index: [usize; 2]) -> &mut T {
        let index = index[1] * self.cols + index[0];
        self.fields.index_mut(index)
    }
}

/// Trait used to sample pair of single value and weight from grid.
pub trait GridSampler<T, W> {
    /// Sample value and weight from given grid.
    ///
    /// # Arguments
    /// * `grid` - Grid that we sample from.
    ///
    /// # Return
    /// Pair of single value and weight as result of grid sampling.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::{Grid, GridSampler};
    ///
    /// struct MySampler;
    ///
    /// impl GridSampler<f32, usize> for MySampler {
    ///     fn sample(self, grid: &Grid<f32>) -> Option<(f32, usize)> {
    ///         let value = grid.fields().iter().cloned().sum();
    ///         let weight = grid.fields().len();
    ///         Some((value, weight))
    ///     }
    /// }
    ///
    /// let grid = Grid::new(2, 2, 1.0);
    /// let sampler = MySampler {};
    /// assert_eq!(grid.sample(sampler).unwrap(), (4.0, 4));
    /// ```
    fn sample(self, grid: &Grid<T>) -> Option<(T, W)>;
}

/// Trait used to obtain zero value for given type. It is used by built-in samplers and it's
/// implemented for `f32` and `f64` types so if you want to sample any other type of grid, you have
/// implement this trait for that type.
pub trait GridSampleZeroValue<T> {
    /// produce zero value for given type.
    ///
    /// # Return
    /// Zero value of given type.
    ///
    /// # Example
    /// ```
    /// use psyche_utils::grid::{Grid, GridSamplerCluster, GridSampleZeroValue};
    /// use std::ops::Add;
    ///
    /// #[derive(Debug, Copy, Clone, Eq, PartialEq)]
    /// struct Integer(pub i32);
    ///
    /// impl Add for Integer {
    ///     type Output = Integer;
    ///     fn add(self, other: Integer) -> Integer { Integer(self.0 + other.0) }
    /// }
    ///
    /// impl GridSampleZeroValue<Self> for Integer {
    ///     fn sample_zero_value() -> Self { Integer(0) }
    /// }
    ///
    /// let grid = Grid::new(2, 2, Integer(1));
    /// let sampler = GridSamplerCluster::new((0, 0), (1, 1));
    /// assert_eq!(grid.sample(sampler).unwrap(), (Integer(4), 4));
    /// ```
    fn sample_zero_value() -> T;
}

impl GridSampleZeroValue<Self> for f32 {
    fn sample_zero_value() -> Self {
        0.0
    }
}

impl GridSampleZeroValue<Self> for f64 {
    fn sample_zero_value() -> Self {
        0.0
    }
}

/// Grid sampler that sum fields contained by cluster bounds.
///
/// # Note
/// Weight component of sampling result equals number of sampled fields.
///
/// # Example
/// ```
/// use psyche_utils::grid::{Grid, GridSamplerCluster};
///
/// let grid = Grid::new(2, 2, 1.0);
/// let sampler = GridSamplerCluster::new((0, 0), (1, 1));
/// assert_eq!(grid.sample(sampler).unwrap(), (4.0, 4));
/// ```
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct GridSamplerCluster {
    /// Bounds column and row starting point.
    pub from: (usize, usize),
    /// Bounds number of columns and rows that defines cluster size.
    pub to: (usize, usize),
}

impl GridSamplerCluster {
    #[inline]
    pub fn new(from: (usize, usize), to: (usize, usize)) -> Self {
        Self { from, to }
    }

    pub fn center(center: (usize, usize), size: (usize, usize)) -> Self {
        let extents = (size.0 / 2, size.1 / 2);
        let from = (
            if extents.0 > center.0 {
                0
            } else {
                center.0 - extents.0
            },
            if extents.1 > center.1 {
                0
            } else {
                center.1 - extents.1
            },
        );
        let to = (center.0 + extents.0, center.1 + extents.1);
        Self { from, to }
    }

    pub fn center_extents(center: (usize, usize), extents: (usize, usize)) -> Self {
        let from = (
            if extents.0 > center.0 {
                0
            } else {
                center.0 - extents.0
            },
            if extents.1 > center.1 {
                0
            } else {
                center.1 - extents.1
            },
        );
        let to = (center.0 + extents.0, center.1 + extents.1);
        Self { from, to }
    }

    pub fn valid_from(&self) -> (usize, usize) {
        (self.from.0.min(self.to.0), self.from.1.min(self.to.1))
    }

    pub fn valid_to(&self) -> (usize, usize) {
        (self.from.0.max(self.to.0), self.from.1.max(self.to.1))
    }

    pub fn cells(&self) -> usize {
        let from = self.valid_from();
        let to = self.valid_to();
        (to.0 - from.0) * (to.1 - from.1)
    }
}

impl<T> GridSampler<T, usize> for GridSamplerCluster
where
    T: GridSampleZeroValue<T> + Add<Output = T> + Clone,
{
    fn sample(self, grid: &Grid<T>) -> Option<(T, usize)> {
        if grid.cols() > 0 && grid.rows() > 0 {
            let from = self.valid_from();
            let mut to = self.valid_to();
            to.0 = to.0.min(grid.cols() - 1);
            to.1 = to.1.min(grid.rows() - 1);
            let mut result = T::sample_zero_value();
            let mut count = 0;
            for y in from.1..=to.1 {
                for x in from.0..=to.0 {
                    result = result + grid[(x, y)].clone();
                    count += 1;
                }
            }
            Some((result, count))
        } else {
            None
        }
    }
}

/// Grid sampler that uses field distance to center and maximum range - each field is scaled by
/// weight produced from that distance-in-range equation.
///
/// # Note
/// Weight component of sampling result equals sum of weights of each sampled fields.
///
/// # Example
/// ```
/// use psyche_utils::grid::{Grid, GridSamplerDistance};
///
/// let grid = Grid::new(2, 2, 1.0);
/// let sampler = GridSamplerDistance::new((0.0, 0.0), 1.0, (1.0, 1.0));
/// assert_eq!(grid.sample(sampler).unwrap(), (1.0, 1.0));
/// ```
#[derive(Debug, Clone, PartialEq)]
pub struct GridSamplerDistance {
    /// XY scalar position of sampler center.
    pub center: (Scalar, Scalar),
    /// Range of sampling.
    pub range: Scalar,
    /// Scale mapping between grid cell and world cell.
    pub cell_size: (Scalar, Scalar),
}

impl GridSamplerDistance {
    #[inline]
    pub fn new(center: (Scalar, Scalar), range: Scalar, cell_size: (Scalar, Scalar)) -> Self {
        Self {
            center,
            range,
            cell_size,
        }
    }
}

impl<T> GridSampler<T, Scalar> for GridSamplerDistance
where
    T: GridSampleZeroValue<T> + Add<Output = T> + Clone + Mul<Scalar, Output = T>,
{
    fn sample(self, grid: &Grid<T>) -> Option<(T, Scalar)> {
        if grid.cols() > 0 && grid.rows() > 0 {
            let mut result = T::sample_zero_value();
            let mut total_weight = 0.0;
            for y in 0..grid.rows() {
                for x in 0..grid.cols() {
                    let value = grid[(x, y)].clone();
                    let dx = x as Scalar * self.cell_size.0 - self.center.0;
                    let dy = y as Scalar * self.cell_size.1 - self.center.1;
                    let distance = (dx * dx + dy * dy).sqrt();
                    if distance < self.range {
                        let weight = 1.0 - distance / self.range;
                        result = result + value * weight;
                        total_weight += weight;
                    }
                }
            }
            Some((result, total_weight))
        } else {
            None
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_sample() {
        let sampler = GridSamplerCluster::center((1, 1), (2, 2));
        assert_eq!(sampler, GridSamplerCluster::new((0, 0), (2, 2)));

        let grid = Grid::new(3, 3, 1.0);
        let sample = grid.sample(sampler).unwrap();
        assert_eq!((sample.0 as i32, sample.1), (9, 9));

        let sampler = GridSamplerCluster::center((0, 0), (2, 2));
        let sample = grid.sample(sampler).unwrap();
        assert_eq!((sample.0 as i32, sample.1), (4, 4));

        let sampler = GridSamplerCluster::center((2, 2), (2, 2));
        let sample = grid.sample(sampler).unwrap();
        assert_eq!((sample.0 as i32, sample.1), (4, 4));

        let grid = Grid::new(9, 1, 1.0);
        let sampler = GridSamplerDistance::new((0.0, 0.0), 3.0, (1.0, 1.0));
        let sample = grid.sample(sampler).unwrap();

        assert_eq!((sample.0 as i32, sample.1 as i32), (2, 2));
        let sampler = GridSamplerDistance::new((4.0, 0.0), 3.0, (1.0, 1.0));
        let sample = grid.sample(sampler).unwrap();
        assert_eq!((sample.0 as i32, sample.1 as i32), (3, 3));
        let sampler = GridSamplerDistance::new((8.0, 0.0), 3.0, (1.0, 1.0));
        let sample = grid.sample(sampler).unwrap();
        assert_eq!((sample.0 as i32, sample.1 as i32), (2, 2));
    }
}