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
use super::*;
use crate::{
    assets::AssetHandle,
    site2::gen::PrimitiveTransform,
    util::{sampler::Sampler, RandomField},
    Land,
};
use common::{
    generation::EntityInfo,
    terrain::{Structure as PrefabStructure, StructuresGroup},
};
use lazy_static::lazy_static;
use rand::prelude::*;
use vek::*;

pub struct TrollCave {
    bounds: Aabr<i32>,
    pub(crate) alt: i32,
    temp: f32,
}
impl TrollCave {
    pub fn generate(
        land: &Land,
        _rng: &mut impl Rng,
        site: &Site,
        tile_aabr: Aabr<i32>,
        site_temp: f32,
    ) -> Self {
        let bounds = Aabr {
            min: site.tile_wpos(tile_aabr.min),
            max: site.tile_wpos(tile_aabr.max),
        };
        let temp = site_temp;
        Self {
            bounds,
            alt: land.get_alt_approx(site.tile_center_wpos(tile_aabr.center())) as i32 + 2,
            temp,
        }
    }
}

impl Structure for TrollCave {
    #[cfg(feature = "use-dyn-lib")]
    const UPDATE_FN: &'static [u8] = b"render_troll_cave\0";

    #[cfg_attr(feature = "be-dyn-lib", export_name = "render_troll_cave")]
    fn render_inner(&self, _site: &Site, land: &Land, painter: &Painter) {
        let center = self.bounds.center();
        let base = land.get_alt_approx(center) as i32;
        let mut thread_rng = thread_rng();
        let model_pos = center.with_z(base);
        // model
        lazy_static! {
            pub static ref MODEL: AssetHandle<StructuresGroup> =
                PrefabStructure::load_group("site_structures.troll_cave.troll_cave");
        }
        let rng = RandomField::new(0).get(model_pos) % 10;
        let model = MODEL.read();
        let model = model[rng as usize % model.len()].clone();
        painter
            .prim(Primitive::Prefab(Box::new(model.clone())))
            .translate(model_pos)
            .fill(Fill::Prefab(Box::new(model), model_pos, rng));
        let temp = self.temp;
        // npcs
        let troll = if temp >= CONFIG.tropical_temp {
            "common.entity.wild.aggressive.swamp_troll"
        } else if temp <= (CONFIG.snow_temp) {
            "common.entity.wild.aggressive.mountain_troll"
        } else {
            "common.entity.wild.aggressive.cave_troll"
        };

        // troll
        painter.spawn(
            EntityInfo::at(center.with_z(base - 15).as_()).with_asset_expect(
                troll,
                &mut thread_rng,
                None,
            ),
        );
        // bat
        painter.spawn(
            EntityInfo::at((center - 2).with_z(base + 5).as_()).with_asset_expect(
                "common.entity.wild.peaceful.bat",
                &mut thread_rng,
                None,
            ),
        )
    }
}