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
mod geographical;
mod landmark;
mod settlement;

use initiative_macros::WordList;
use rand::Rng;
use serde::{Deserialize, Serialize};

use crate::world::Demographics;

use super::{PlaceData, PlaceType};

#[derive(Clone, Copy, Debug, Deserialize, Eq, PartialEq, Serialize, WordList)]
#[serde(into = "&'static str", try_from = "&str")]
pub enum LocationType {
    #[term = "location"]
    Any,

    Geographical(geographical::GeographicalType),
    Landmark(landmark::LandmarkType),
    Settlement(settlement::SettlementType),
}

impl LocationType {
    pub const fn get_emoji(&self) -> Option<&'static str> {
        match self {
            Self::Any => None,
            Self::Geographical(subtype) => subtype.get_emoji(),
            Self::Landmark(subtype) => subtype.get_emoji(),
            Self::Settlement(subtype) => subtype.get_emoji(),
        }
    }
}

pub fn generate(place: &mut PlaceData, rng: &mut impl Rng, demographics: &Demographics) {
    #[expect(clippy::collapsible_match)]
    if let Some(PlaceType::Location(subtype)) = place.subtype.value() {
        #[expect(clippy::single_match)]
        match subtype {
            LocationType::Geographical(_) => geographical::generate(place, rng, demographics),
            _ => {}
        }
    }
}