rust/landgen/src/template_based.rs
author alfadur
Tue, 30 Oct 2018 19:05:52 +0300
changeset 14032 2869c2ccb1b8
parent 14026 3b3d97ed2286
child 14052 9c817b2eedae
permissions -rw-r--r--
extract size struct for common usage

use integral_geometry::{Point, Size};
use land2d::Land2D;
use LandGenerationParameters;
use LandGenerator;

struct OutlineTemplate {
    islands: Vec<Vec<Point>>,
    fill_points: Vec<Point>,
    size: Size,
    can_flip: bool,
    can_invert: bool,
    can_mirror: bool,
    is_negative: bool,
}

struct TemplatedLandGenerator {
    outline_template: OutlineTemplate,
}

impl OutlineTemplate {}

impl TemplatedLandGenerator {
    fn new(outline_template: OutlineTemplate) -> Self {
        Self { outline_template }
    }
}

impl LandGenerator for TemplatedLandGenerator {
    fn generate_land<T: Copy + PartialEq, I: Iterator<Item = u32>>(
        &self,
        parameters: LandGenerationParameters<T>,
        random_numbers: &mut I,
    ) -> Land2D<T> {
        let mut pa = Vec::new();

        for island in &self.outline_template.islands {
            let mut island_points = Vec::new();

            for p in island {
                island_points.push(p);
            }

            pa.push(island_points);
        }

        let mut land = Land2D::new(
            self.outline_template.size,
            parameters.basic,
        );

        land
    }
}