rust/landgen/src/lib.rs
author unC0Rr
Wed, 01 May 2024 16:49:16 +0200
changeset 16012 caba603f461f
parent 15828 44b49f255e31
child 15903 230dc46487ea
permissions -rw-r--r--
Allow to move camera by dragging mouse cursor over game field
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14100
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
     1
mod outline;
14069
abb42ba345b6 Rework lib structure, no code changes
unC0Rr
parents: 14054
diff changeset
     2
pub mod outline_template;
14100
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
     3
pub mod template_based;
13908
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     4
14027
cef0c685fda8 make useful stuff public
alfadur
parents: 14026
diff changeset
     5
pub struct LandGenerationParameters<T> {
14026
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
     6
    zero: T,
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
     7
    basic: T,
14100
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
     8
    distance_divisor: u32,
14121
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14100
diff changeset
     9
    skip_distort: bool,
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14100
diff changeset
    10
    skip_bezier: bool,
14026
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
    11
}
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
    12
14100
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
    13
impl<T: Copy + PartialEq> LandGenerationParameters<T> {
15828
44b49f255e31 add type safe power of two sizes
alfadur
parents: 14207
diff changeset
    14
    pub fn new(
44b49f255e31 add type safe power of two sizes
alfadur
parents: 14207
diff changeset
    15
        zero: T,
44b49f255e31 add type safe power of two sizes
alfadur
parents: 14207
diff changeset
    16
        basic: T,
44b49f255e31 add type safe power of two sizes
alfadur
parents: 14207
diff changeset
    17
        distance_divisor: u32,
44b49f255e31 add type safe power of two sizes
alfadur
parents: 14207
diff changeset
    18
        skip_distort: bool,
44b49f255e31 add type safe power of two sizes
alfadur
parents: 14207
diff changeset
    19
        skip_bezier: bool,
44b49f255e31 add type safe power of two sizes
alfadur
parents: 14207
diff changeset
    20
    ) -> Self {
14100
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
    21
        Self {
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
    22
            zero,
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
    23
            basic,
14121
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14100
diff changeset
    24
            distance_divisor,
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14100
diff changeset
    25
            skip_distort,
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14100
diff changeset
    26
            skip_bezier,
14100
4d22be35cfa2 Finish porting FindPoint()
unc0rr
parents: 14069
diff changeset
    27
        }
14054
3185fb34f3b5 update theme editor to use new land generator implementation
alfadur
parents: 14051
diff changeset
    28
    }
3185fb34f3b5 update theme editor to use new land generator implementation
alfadur
parents: 14051
diff changeset
    29
}
3185fb34f3b5 update theme editor to use new land generator implementation
alfadur
parents: 14051
diff changeset
    30
14027
cef0c685fda8 make useful stuff public
alfadur
parents: 14026
diff changeset
    31
pub trait LandGenerator {
14026
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
    32
    fn generate_land<T: Copy + PartialEq, I: Iterator<Item = u32>>(
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
    33
        &self,
14121
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents: 14100
diff changeset
    34
        parameters: &LandGenerationParameters<T>,
14026
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
    35
        random_numbers: &mut I,
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
    36
    ) -> land2d::Land2D<T>;
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
    37
}
13938
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13908
diff changeset
    38
13908
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
    39
#[cfg(test)]
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
    40
mod tests {
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
    41
    #[test]
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
    42
    fn it_works() {
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
    43
        assert_eq!(2 + 2, 4);
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
    44
    }
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
    45
}