rust/land2d/src/lib.rs
author alfadur
Thu, 08 Nov 2018 07:15:22 +0300
changeset 14170 a4c1a2d0ac24
parent 14160 c24a76f131d6
child 14207 bb2f301d4fe0
permissions -rw-r--r--
implement basic land bordering
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13936
78c798d655ad Make use of LinePoints in Land2D::draw_line
unc0rr
parents: 13934
diff changeset
     1
extern crate integral_geometry;
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
     2
extern crate vec2d;
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
     3
14144
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
     4
use std::{
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
     5
    cmp,
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
     6
    ops::Index
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
     7
};
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
     8
14137
3119d665d3c6 collapse rectangle types back together with consistent usage of size
alfadur
parents: 14135
diff changeset
     9
use integral_geometry::{ArcPoints, EquidistantPoints, Line, Point, Rect, Size, SizeMask};
13938
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13936
diff changeset
    10
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    11
pub struct Land2D<T> {
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    12
    pixels: vec2d::Vec2D<T>,
14137
3119d665d3c6 collapse rectangle types back together with consistent usage of size
alfadur
parents: 14135
diff changeset
    13
    play_box: Rect,
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    14
    mask: SizeMask,
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    15
}
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    16
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    17
impl<T: Copy + PartialEq> Land2D<T> {
14052
alfadur
parents: 14050 14032
diff changeset
    18
    pub fn new(play_size: Size, fill_value: T) -> Self {
alfadur
parents: 14050 14032
diff changeset
    19
        let real_size = play_size.next_power_of_two();
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    20
        let top_left = Point::new(
14101
ceda58e398e0 fix play area rect
alfadur
parents: 14078
diff changeset
    21
            ((real_size.width - play_size.width) / 2) as i32,
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    22
            (real_size.height - play_size.height) as i32,
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    23
        );
14137
3119d665d3c6 collapse rectangle types back together with consistent usage of size
alfadur
parents: 14135
diff changeset
    24
        let play_box = Rect::from_size(top_left, play_size);
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    25
        Self {
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    26
            play_box,
14052
alfadur
parents: 14050 14032
diff changeset
    27
            pixels: vec2d::Vec2D::new(real_size, fill_value),
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    28
            mask: real_size.to_mask(),
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    29
        }
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    30
    }
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    31
14121
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14101
diff changeset
    32
    pub fn raw_pixels(&self) -> &[T] {
14160
c24a76f131d6 implement basic land texturing
alfadur
parents: 14150
diff changeset
    33
        &self.pixels.as_slice()
14121
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14101
diff changeset
    34
    }
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14101
diff changeset
    35
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    36
    #[inline]
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    37
    pub fn width(&self) -> usize {
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    38
        self.pixels.width()
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    39
    }
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    40
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    41
    #[inline]
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    42
    pub fn height(&self) -> usize {
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    43
        self.pixels.height()
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    44
    }
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    45
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    46
    #[inline]
14052
alfadur
parents: 14050 14032
diff changeset
    47
    pub fn size(&self) -> Size {
alfadur
parents: 14050 14032
diff changeset
    48
        self.pixels.size()
alfadur
parents: 14050 14032
diff changeset
    49
    }
alfadur
parents: 14050 14032
diff changeset
    50
alfadur
parents: 14050 14032
diff changeset
    51
    #[inline]
14050
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    52
    pub fn play_width(&self) -> usize {
14135
7f5a591e1c43 separate rectangle types based on right/bottom edge inclusivity
alfadur
parents: 14121
diff changeset
    53
        self.play_box.width()
14050
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    54
    }
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    55
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    56
    #[inline]
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    57
    pub fn play_height(&self) -> usize {
14135
7f5a591e1c43 separate rectangle types based on right/bottom edge inclusivity
alfadur
parents: 14121
diff changeset
    58
        self.play_box.height()
14052
alfadur
parents: 14050 14032
diff changeset
    59
    }
alfadur
parents: 14050 14032
diff changeset
    60
alfadur
parents: 14050 14032
diff changeset
    61
    #[inline]
alfadur
parents: 14050 14032
diff changeset
    62
    pub fn play_size(&self) -> Size {
14135
7f5a591e1c43 separate rectangle types based on right/bottom edge inclusivity
alfadur
parents: 14121
diff changeset
    63
        self.play_box.size()
14050
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    64
    }
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    65
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
    66
    #[inline]
14137
3119d665d3c6 collapse rectangle types back together with consistent usage of size
alfadur
parents: 14135
diff changeset
    67
    pub fn play_box(&self) -> Rect {
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    68
        self.play_box
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    69
    }
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    70
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
    71
    #[inline]
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    72
    pub fn is_valid_x(&self, x: i32) -> bool {
14032
2869c2ccb1b8 extract size struct for common usage
alfadur
parents: 14031
diff changeset
    73
        self.mask.contains_x(x as usize)
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    74
    }
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    75
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    76
    #[inline]
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    77
    pub fn is_valid_y(&self, y: i32) -> bool {
14032
2869c2ccb1b8 extract size struct for common usage
alfadur
parents: 14031
diff changeset
    78
        self.mask.contains_y(y as usize)
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    79
    }
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    80
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    81
    #[inline]
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
    82
    pub fn is_valid_coordinate(&self, x: i32, y: i32) -> bool {
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    83
        self.is_valid_x(x) && self.is_valid_y(y)
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    84
    }
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    85
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    86
    #[inline]
14170
a4c1a2d0ac24 implement basic land bordering
alfadur
parents: 14160
diff changeset
    87
    pub fn rows(&self) -> impl DoubleEndedIterator<Item = &[T]> {
14030
2ebd505e62c1 make theme editor render some random map lines
alfadur
parents: 13951
diff changeset
    88
        self.pixels.rows()
2ebd505e62c1 make theme editor render some random map lines
alfadur
parents: 13951
diff changeset
    89
    }
2ebd505e62c1 make theme editor render some random map lines
alfadur
parents: 13951
diff changeset
    90
2ebd505e62c1 make theme editor render some random map lines
alfadur
parents: 13951
diff changeset
    91
    #[inline]
13940
1c30793b1cea put back land2d.map accidentally replaced by testing code
alfadur
parents: 13938
diff changeset
    92
    pub fn map<U: Default, F: FnOnce(&mut T) -> U>(&mut self, y: i32, x: i32, f: F) -> U {
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
    93
        if self.is_valid_coordinate(x, y) {
13934
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
    94
            unsafe {
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
    95
                // hey, I just checked that coordinates are valid!
13940
1c30793b1cea put back land2d.map accidentally replaced by testing code
alfadur
parents: 13938
diff changeset
    96
                f(self.pixels.get_unchecked_mut(y as usize, x as usize))
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
    97
            }
13934
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
    98
        } else {
13940
1c30793b1cea put back land2d.map accidentally replaced by testing code
alfadur
parents: 13938
diff changeset
    99
            U::default()
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   100
        }
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   101
    }
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   102
13944
4162ea9ae333 Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents: 13943
diff changeset
   103
    #[inline]
4162ea9ae333 Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents: 13943
diff changeset
   104
    pub fn map_point<U: Default, F: FnOnce(&mut T) -> U>(&mut self, point: Point, f: F) -> U {
4162ea9ae333 Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents: 13943
diff changeset
   105
        self.map(point.y, point.x, f)
13934
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
   106
    }
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
   107
13938
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13936
diff changeset
   108
    pub fn fill_from_iter<I>(&mut self, i: I, value: T) -> usize
13943
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   109
    where
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   110
        I: std::iter::Iterator<Item = Point>,
13938
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13936
diff changeset
   111
    {
13943
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   112
        i.map(|p| {
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   113
            self.map(p.y, p.x, |v| {
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   114
                *v = value;
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   115
                1
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   116
            })
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   117
        }).count()
13938
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13936
diff changeset
   118
    }
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13936
diff changeset
   119
14076
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   120
    pub fn draw_line(&mut self, line: Line, value: T) -> usize {
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   121
        self.fill_from_iter(line.into_iter(), value)
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   122
    }
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   123
13948
c6e1769ac9aa Change Land2D::fill() arguments a bit
unc0rr
parents: 13946
diff changeset
   124
    pub fn fill(&mut self, start_point: Point, border_value: T, fill_value: T) {
14150
6205a5230d23 make fill point asserts persistent
alfadur
parents: 14149
diff changeset
   125
        assert!(self.is_valid_coordinate(start_point.x - 1, start_point.y));
6205a5230d23 make fill point asserts persistent
alfadur
parents: 14149
diff changeset
   126
        assert!(self.is_valid_coordinate(start_point.x, start_point.y));
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   127
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   128
        let mask = self.mask;
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   129
        let width = self.width();
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   130
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   131
        let mut stack: Vec<(usize, usize, usize, isize)> = Vec::new();
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   132
        fn push(
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   133
            mask: SizeMask,
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   134
            stack: &mut Vec<(usize, usize, usize, isize)>,
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   135
            xl: usize,
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   136
            xr: usize,
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   137
            y: usize,
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   138
            dir: isize,
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   139
        ) {
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   140
            let yd = y as isize + dir;
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   141
            if mask.contains_y(yd as usize) {
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   142
                stack.push((xl, xr, yd as usize, dir));
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   143
            }
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   144
        };
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   145
13948
c6e1769ac9aa Change Land2D::fill() arguments a bit
unc0rr
parents: 13946
diff changeset
   146
        let start_x_l = (start_point.x - 1) as usize;
c6e1769ac9aa Change Land2D::fill() arguments a bit
unc0rr
parents: 13946
diff changeset
   147
        let start_x_r = start_point.x as usize;
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   148
        for dir in [-1, 1].iter().cloned() {
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   149
            push(mask, &mut stack, start_x_l, start_x_r, start_point.y as usize, dir);
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   150
        }
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   151
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   152
        while let Some((mut xl, mut xr, y, dir)) = stack.pop() {
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   153
            let row = &mut self.pixels[y][..];
14149
8e2e98760003 a bit more simplification without an apparent performance gain
alfadur
parents: 14148
diff changeset
   154
            while xl > 0 && row[xl] != border_value && row[xl] != fill_value
13951
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   155
            {
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   156
                xl -= 1;
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   157
            }
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   158
14149
8e2e98760003 a bit more simplification without an apparent performance gain
alfadur
parents: 14148
diff changeset
   159
            while xr < width - 1 && row[xr] != border_value && row[xr] != fill_value
13951
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   160
            {
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   161
                xr += 1;
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   162
            }
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   163
13951
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   164
            while xl < xr {
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   165
                while xl <= xr && (row[xl] == border_value || row[xl] == fill_value)
13951
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   166
                {
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   167
                    xl += 1;
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   168
                }
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   169
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   170
                let x = xl;
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   171
14149
8e2e98760003 a bit more simplification without an apparent performance gain
alfadur
parents: 14148
diff changeset
   172
                while xl <= xr && row[xl] != border_value && row[xl] != fill_value
13951
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   173
                {
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   174
                    row[xl] = fill_value;
13951
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   175
                    xl += 1;
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   176
                }
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   177
13951
03e41712eef8 Fix silly loop
unc0rr
parents: 13949
diff changeset
   178
                if x < xl {
14148
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   179
                    push(mask, &mut stack, x, xl - 1, y, dir);
d3c9025abd13 seems like about 25% speedup in land filling
alfadur
parents: 14144
diff changeset
   180
                    push(mask, &mut stack, x, xl - 1, y, -dir);
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   181
                }
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   182
            }
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   183
        }
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   184
    }
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   185
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   186
    #[inline]
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   187
    fn fill_circle_line<F: Fn(&mut T) -> usize>(
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   188
        &mut self,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   189
        y: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   190
        x_from: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   191
        x_to: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   192
        f: &F,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   193
    ) -> usize {
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   194
        let mut result = 0;
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   195
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   196
        if self.is_valid_y(y) {
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   197
            for i in cmp::min(x_from, 0) as usize..cmp::max(x_to as usize, self.width() - 1) {
13934
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
   198
                unsafe {
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
   199
                    // coordinates are valid at this point
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   200
                    result += f(self.pixels.get_unchecked_mut(y as usize, i));
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   201
                }
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   202
            }
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   203
        }
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   204
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   205
        result
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   206
    }
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   207
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   208
    #[inline]
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   209
    fn fill_circle_lines<F: Fn(&mut T) -> usize>(
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   210
        &mut self,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   211
        x: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   212
        y: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   213
        dx: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   214
        dy: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   215
        f: &F,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   216
    ) -> usize {
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   217
        self.fill_circle_line(y + dy, x - dx, x + dx, f)
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   218
            + self.fill_circle_line(y - dy, x - dx, x + dx, f)
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   219
            + self.fill_circle_line(y + dx, x - dy, x + dy, f)
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   220
            + self.fill_circle_line(y - dx, x - dy, x + dy, f)
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   221
    }
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   222
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   223
    pub fn change_round<F: Fn(&mut T) -> usize>(
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   224
        &mut self,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   225
        x: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   226
        y: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   227
        radius: i32,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   228
        f: F,
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   229
    ) -> usize {
13943
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   230
        ArcPoints::new(radius)
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   231
            .map(&mut |p: Point| self.fill_circle_lines(x, y, p.x, p.y, &f))
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   232
            .sum()
13934
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
   233
    }
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   234
14031
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   235
    fn fill_row(&mut self, center: Point, offset: Point, value: T) -> usize {
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   236
        let row_index = center.y + offset.y;
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   237
        if self.is_valid_y(row_index) {
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   238
            let from_x = cmp::max(0, center.x - offset.x) as usize;
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   239
            let to_x = cmp::min(self.width() - 1, (center.x + offset.x) as usize);
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   240
            self.pixels[row_index as usize][from_x..=to_x]
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   241
                .iter_mut()
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   242
                .for_each(|v| *v = value);
14031
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   243
            to_x - from_x + 1
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   244
        } else {
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   245
            0
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   246
        }
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   247
    }
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   248
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   249
    pub fn fill_circle(&mut self, center: Point, radius: i32, value: T) -> usize {
14078
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   250
        let transforms = [[0, 1, 1, 0], [0, 1, -1, 0], [1, 0, 0, 1], [1, 0, 0, -1]];
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   251
        ArcPoints::new(radius)
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   252
            .map(|vector| {
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   253
                transforms
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   254
                    .iter()
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   255
                    .map(|m| self.fill_row(center, vector.transform(m), value))
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   256
                    .sum::<usize>()
bf40b5f938b0 - Add methods to work with Rect as box
unC0Rr
parents: 14076
diff changeset
   257
            }).sum()
14031
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   258
    }
c47283feafac add circle filling to land2d
alfadur
parents: 14030
diff changeset
   259
14076
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   260
    pub fn draw_thick_line(&mut self, line: Line, radius: i32, value: T) -> usize {
13944
4162ea9ae333 Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents: 13943
diff changeset
   261
        let mut result = 0;
13931
9230aed8a32e Implement Land2D::change_round()
unc0rr
parents: 13924
diff changeset
   262
13949
a1895019bb94 change draw_thick_line iteration order to benchmark winner
alfadur
parents: 13948
diff changeset
   263
        for vector in ArcPoints::new(radius) {
a1895019bb94 change draw_thick_line iteration order to benchmark winner
alfadur
parents: 13948
diff changeset
   264
            for delta in EquidistantPoints::new(vector) {
14076
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   265
                for point in line.into_iter() {
13946
54e2a3698425 revert 2354264ab0b0
alfadur
parents: 13945
diff changeset
   266
                    self.map_point(point + delta, |p| {
54e2a3698425 revert 2354264ab0b0
alfadur
parents: 13945
diff changeset
   267
                        if *p != value {
54e2a3698425 revert 2354264ab0b0
alfadur
parents: 13945
diff changeset
   268
                            *p = value;
54e2a3698425 revert 2354264ab0b0
alfadur
parents: 13945
diff changeset
   269
                            result += 1;
54e2a3698425 revert 2354264ab0b0
alfadur
parents: 13945
diff changeset
   270
                        }
54e2a3698425 revert 2354264ab0b0
alfadur
parents: 13945
diff changeset
   271
                    })
13944
4162ea9ae333 Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents: 13943
diff changeset
   272
                }
13943
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   273
            }
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   274
        }
a325ed57ebfe Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents: 13940
diff changeset
   275
13944
4162ea9ae333 Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents: 13943
diff changeset
   276
        result
13934
9c112f2ae02d Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents: 13931
diff changeset
   277
    }
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   278
}
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   279
14144
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   280
impl<T> Index<usize> for Land2D<T> {
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   281
    type Output = [T];
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   282
    #[inline]
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   283
    fn index(&self, row: usize) -> &[T] {
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   284
        &self.pixels[row]
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   285
    }
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   286
}
165e43c3ed59 pull land into collision detector
alfadur
parents: 14140
diff changeset
   287
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   288
#[cfg(test)]
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   289
mod tests {
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   290
    use super::*;
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   291
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   292
    #[test]
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   293
    fn basics() {
14052
alfadur
parents: 14050 14032
diff changeset
   294
        let l: Land2D<u8> = Land2D::new(Size::new(30, 50), 0);
14050
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
   295
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
   296
        assert_eq!(l.play_width(), 30);
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
   297
        assert_eq!(l.play_height(), 50);
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
   298
        assert_eq!(l.width(), 32);
4b40bdd214df Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents: 13951
diff changeset
   299
        assert_eq!(l.height(), 64);
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   300
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   301
        assert!(l.is_valid_coordinate(0, 0));
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   302
        assert!(!l.is_valid_coordinate(-1, -1));
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   303
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   304
        assert!(l.is_valid_coordinate(31, 63));
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   305
        assert!(!l.is_valid_coordinate(32, 63));
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   306
        assert!(!l.is_valid_coordinate(31, 64));
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   307
    }
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   308
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   309
    #[test]
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   310
    fn fill() {
14032
2869c2ccb1b8 extract size struct for common usage
alfadur
parents: 14031
diff changeset
   311
        let mut l: Land2D<u8> = Land2D::new(Size::square(128), 0);
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   312
14076
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   313
        l.draw_line(Line::new(Point::new(0, 0), Point::new(32, 96)), 1);
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   314
        l.draw_line(Line::new(Point::new(32, 96), Point::new(64, 32)), 1);
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   315
        l.draw_line(Line::new(Point::new(64, 32), Point::new(96, 80)), 1);
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   316
        l.draw_line(Line::new(Point::new(96, 80), Point::new(128, 0)), 1);
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   317
14076
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   318
        l.draw_line(Line::new(Point::new(0, 128), Point::new(64, 96)), 1);
e5904ead4864 Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents: 14052
diff changeset
   319
        l.draw_line(Line::new(Point::new(128, 128), Point::new(64, 96)), 1);
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   320
13948
c6e1769ac9aa Change Land2D::fill() arguments a bit
unc0rr
parents: 13946
diff changeset
   321
        l.fill(Point::new(32, 32), 1, 2);
c6e1769ac9aa Change Land2D::fill() arguments a bit
unc0rr
parents: 13946
diff changeset
   322
        l.fill(Point::new(16, 96), 1, 3);
c6e1769ac9aa Change Land2D::fill() arguments a bit
unc0rr
parents: 13946
diff changeset
   323
        l.fill(Point::new(60, 100), 1, 4);
13924
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   324
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   325
        assert_eq!(l.pixels[0][0], 1);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   326
        assert_eq!(l.pixels[96][64], 1);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   327
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   328
        assert_eq!(l.pixels[40][32], 2);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   329
        assert_eq!(l.pixels[40][96], 2);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   330
        assert_eq!(l.pixels[5][0], 3);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   331
        assert_eq!(l.pixels[120][0], 3);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   332
        assert_eq!(l.pixels[5][127], 3);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   333
        assert_eq!(l.pixels[120][127], 3);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   334
        assert_eq!(l.pixels[35][64], 3);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   335
        assert_eq!(l.pixels[120][20], 4);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   336
        assert_eq!(l.pixels[120][100], 4);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   337
        assert_eq!(l.pixels[100][64], 4);
a140f28decc4 Implement Land2D::fill() + tests
unc0rr
parents: 13917
diff changeset
   338
    }
13917
a83ba9ba1566 Start land2d library implementation: draw_line() method
unc0rr
parents:
diff changeset
   339
}