rust/lib-hwengine-future/src/lib.rs
author unC0Rr
Fri, 22 Nov 2024 17:29:30 +0100
branchtransitional_engine
changeset 16040 6c5b3c576fc6
parent 16039 a236360669cc
permissions -rw-r--r--
Add some progress on rust AI
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
     1
mod ai;
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
     2
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
     3
use integral_geometry::{Point, Size};
15923
d46ad15c6dec Get wavefront collapse generator to work in engine
unC0Rr
parents: 15922
diff changeset
     4
15922
da6b67f13c12 Refactor mapgen to allow for easy switching between generators
unC0Rr
parents: 15921
diff changeset
     5
use landgen::{
16026
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
     6
    outline_template_based::outline_template::OutlineTemplate,
16033
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
     7
    maze::MazeTemplate,
16029
9cbd18220eb7 Fix cavern templates
unC0Rr
parents: 16026
diff changeset
     8
    wavefront_collapse::generator::TemplateDescription as WfcTemplate, LandGenerationParameters,
9cbd18220eb7 Fix cavern templates
unC0Rr
parents: 16026
diff changeset
     9
    LandGenerator,
15922
da6b67f13c12 Refactor mapgen to allow for easy switching between generators
unC0Rr
parents: 15921
diff changeset
    10
};
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    11
use lfprng::LaggedFibonacciPRNG;
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    12
use mapgen::{theme::Theme, MapGenerator};
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    13
use std::fs;
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    14
use std::{ffi::CStr, path::Path};
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
    15
use ai::*;
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    16
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    17
#[repr(C)]
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    18
pub struct GameField {
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    19
    collision: land2d::Land2D<u16>,
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    20
    pixels: land2d::Land2D<u32>,
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    21
    landgen_parameters: Option<LandGenerationParameters<u16>>,
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    22
}
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    23
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    24
#[no_mangle]
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    25
pub extern "C" fn get_game_field_parameters(
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    26
    game_field: &GameField,
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    27
    width: *mut i32,
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    28
    height: *mut i32,
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    29
    play_width: *mut i32,
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    30
    play_height: *mut i32,
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    31
) {
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    32
    unsafe {
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    33
        *width = game_field.collision.width() as i32;
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    34
        *height = game_field.collision.height() as i32;
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    35
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    36
        *play_width = game_field.collision.play_width() as i32;
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    37
        *play_height = game_field.collision.play_height() as i32;
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    38
    }
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    39
}
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    40
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    41
#[no_mangle]
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    42
pub extern "C" fn create_empty_game_field(width: u32, height: u32) -> *mut GameField {
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    43
    let game_field = Box::new(GameField {
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    44
        collision: land2d::Land2D::new(&Size::new(width as usize, height as usize), 0),
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    45
        pixels: land2d::Land2D::new(&Size::new(width as usize, height as usize), 0),
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    46
        landgen_parameters: None,
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    47
    });
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    48
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
    49
    Box::into_raw(game_field)
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    50
}
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    51
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
    52
#[no_mangle]
16026
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    53
pub extern "C" fn generate_outline_templated_game_field(
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    54
    feature_size: u32,
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    55
    seed: *const i8,
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    56
    template_type: *const i8,
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    57
    data_path: *const i8,
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    58
) -> *mut GameField {
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    59
    let data_path: &str = unsafe { CStr::from_ptr(data_path) }.to_str().unwrap();
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    60
    let data_path = Path::new(&data_path);
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    61
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    62
    let seed: &str = unsafe { CStr::from_ptr(seed) }.to_str().unwrap();
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    63
    let template_type: &str = unsafe { CStr::from_ptr(template_type) }.to_str().unwrap();
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    64
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    65
    let mut random_numbers_gen = LaggedFibonacciPRNG::new(seed.as_bytes());
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    66
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    67
    let yaml_templates =
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    68
        fs::read_to_string(data_path.join(Path::new("map_templates.yaml")).as_path())
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    69
            .expect("Error reading map templates file");
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    70
    let mut map_gen = MapGenerator::<OutlineTemplate>::new(data_path);
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    71
    map_gen.import_yaml_templates(&yaml_templates);
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    72
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    73
    let distance_divisor = feature_size.pow(2) / 8 + 10;
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    74
    let params = LandGenerationParameters::new(0u16, 0x8000u16, distance_divisor, false, false);
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    75
    let template = map_gen
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    76
        .get_template(template_type, &mut random_numbers_gen)
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    77
        .expect("Error reading outline templates file")
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    78
        .clone();
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    79
    let landgen = map_gen.build_generator(template);
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    80
    let collision = landgen.generate_land(&params, &mut random_numbers_gen);
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    81
    let size = collision.size().size();
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    82
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    83
    let game_field = Box::new(GameField {
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    84
        collision,
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    85
        pixels: land2d::Land2D::new(&size, 0),
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    86
        landgen_parameters: Some(params),
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    87
    });
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    88
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
    89
    Box::into_raw(game_field)
16026
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    90
}
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    91
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    92
#[no_mangle]
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
    93
pub extern "C" fn generate_wfc_templated_game_field(
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    94
    feature_size: u32,
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    95
    seed: *const i8,
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
    96
    template_type: *const i8,
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    97
    data_path: *const i8,
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    98
) -> *mut GameField {
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
    99
    let data_path: &str = unsafe { CStr::from_ptr(data_path) }.to_str().unwrap();
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   100
    let data_path = Path::new(&data_path);
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   101
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   102
    let seed: &str = unsafe { CStr::from_ptr(seed) }.to_str().unwrap();
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   103
    let template_type: &str = unsafe { CStr::from_ptr(template_type) }.to_str().unwrap();
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   104
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   105
    let mut random_numbers_gen = LaggedFibonacciPRNG::new(seed.as_bytes());
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   106
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   107
    let yaml_templates =
15923
d46ad15c6dec Get wavefront collapse generator to work in engine
unC0Rr
parents: 15922
diff changeset
   108
        fs::read_to_string(data_path.join(Path::new("wfc_templates.yaml")).as_path())
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   109
            .expect("Error reading map templates file");
16024
3402b2185698 Pass full path to WFC for tile loading
unC0Rr
parents: 15923
diff changeset
   110
    let mut map_gen = MapGenerator::<WfcTemplate>::new(data_path);
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   111
    map_gen.import_yaml_templates(&yaml_templates);
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   112
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   113
    let distance_divisor = feature_size.pow(2) / 8 + 10;
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   114
    let params = LandGenerationParameters::new(0u16, 0x8000u16, distance_divisor, false, false);
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   115
    let template = map_gen
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   116
        .get_template(template_type, &mut random_numbers_gen)
16026
ce4b50823a95 Allow switching between outline and wfc map generators
unC0Rr
parents: 16024
diff changeset
   117
        .expect("Error reading wfc templates file")
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   118
        .clone();
15923
d46ad15c6dec Get wavefront collapse generator to work in engine
unC0Rr
parents: 15922
diff changeset
   119
    let landgen = map_gen.build_generator(template);
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   120
    let collision = landgen.generate_land(&params, &mut random_numbers_gen);
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   121
    let size = collision.size().size();
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   122
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   123
    let game_field = Box::new(GameField {
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   124
        collision,
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   125
        pixels: land2d::Land2D::new(&size, 0),
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   126
        landgen_parameters: Some(params),
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   127
    });
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   128
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   129
    Box::into_raw(game_field)
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   130
}
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   131
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   132
#[no_mangle]
16033
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   133
pub extern "C" fn generate_maze_game_field(
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   134
    feature_size: u32,
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   135
    seed: *const i8,
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   136
    template_type: *const i8,
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   137
    data_path: *const i8,
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   138
) -> *mut GameField {
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   139
    let data_path: &str = unsafe { CStr::from_ptr(data_path) }.to_str().unwrap();
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   140
    let data_path = Path::new(&data_path);
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   141
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   142
    let seed: &str = unsafe { CStr::from_ptr(seed) }.to_str().unwrap();
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   143
    let template_type: &str = unsafe { CStr::from_ptr(template_type) }.to_str().unwrap();
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   144
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   145
    let mut random_numbers_gen = LaggedFibonacciPRNG::new(seed.as_bytes());
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   146
16035
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   147
    let yaml_templates =
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   148
        fs::read_to_string(data_path.join(Path::new("maze_templates.yaml")).as_path())
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   149
            .expect("Error reading map templates file");
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   150
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   151
    let mut map_gen = MapGenerator::<MazeTemplate>::new(data_path);
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   152
    map_gen.import_yaml_templates(&yaml_templates);
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   153
16033
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   154
    let distance_divisor = feature_size.pow(2) / 8 + 10;
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   155
    let params = LandGenerationParameters::new(0u16, 0x8000u16, distance_divisor, false, false);
16035
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   156
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   157
    let template = map_gen
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   158
        .get_template(template_type, &mut random_numbers_gen)
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   159
        .expect("Error reading maze templates file")
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   160
        .clone();
0caa3dfb3ba2 Add templates for different maze styles
unC0Rr
parents: 16034
diff changeset
   161
16033
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   162
    let landgen = map_gen.build_generator(template);
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   163
    let collision = landgen.generate_land(&params, &mut random_numbers_gen);
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   164
    let size = collision.size().size();
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   165
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   166
    let game_field = Box::new(GameField {
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   167
        collision,
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   168
        pixels: land2d::Land2D::new(&size, 0),
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   169
        landgen_parameters: Some(params),
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   170
    });
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   171
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   172
    Box::into_raw(game_field)
16033
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   173
}
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   174
1860852892c0 Use rust implementation of maze generator in engine
unC0Rr
parents: 16029
diff changeset
   175
#[no_mangle]
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   176
pub extern "C" fn apply_theme(
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   177
    game_field: &mut GameField,
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   178
    data_path: *const i8,
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   179
    theme_name: *const i8,
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   180
) {
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   181
    let data_path: &str = unsafe { CStr::from_ptr(data_path) }.to_str().unwrap();
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   182
    let data_path = Path::new(&data_path);
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   183
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   184
    let theme_name: &str = unsafe { CStr::from_ptr(theme_name) }.to_str().unwrap();
16024
3402b2185698 Pass full path to WFC for tile loading
unC0Rr
parents: 15923
diff changeset
   185
    let map_gen = MapGenerator::<()>::new(data_path);
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   186
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   187
    let theme = Theme::load(
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   188
        data_path
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   189
            .join(Path::new("Themes"))
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   190
            .join(Path::new(theme_name))
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   191
            .as_path(),
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   192
    )
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   193
    .unwrap();
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   194
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   195
    let params = game_field
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   196
        .landgen_parameters
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   197
        .expect("Land generator parameters specified");
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   198
    let pixels = map_gen.make_texture(&game_field.collision, &params, &theme);
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   199
15905
022ec6b916b7 Split generation and painting phases, paint by old engine, use template filters
unC0Rr
parents: 15904
diff changeset
   200
    game_field.pixels = pixels.into();
15904
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   201
}
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   202
33798b649d9c Use rust land generator in hwengine
unC0Rr
parents: 15901
diff changeset
   203
#[no_mangle]
15912
6e22f4390b7e Add basics of wavefront collapse algorithm
unC0Rr
parents: 15905
diff changeset
   204
pub extern "C" fn land_get(game_field: &GameField, x: i32, y: i32) -> u16 {
6e22f4390b7e Add basics of wavefront collapse algorithm
unC0Rr
parents: 15905
diff changeset
   205
    game_field.collision.get(y, x)
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   206
}
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   207
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   208
#[no_mangle]
15901
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   209
pub extern "C" fn land_set(game_field: &mut GameField, x: i32, y: i32, value: u16) {
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   210
    game_field.collision.map(y, x, |p| *p = value);
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   211
}
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   212
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   213
#[no_mangle]
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   214
pub extern "C" fn land_row(game_field: &mut GameField, row: i32) -> *mut u16 {
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   215
    game_field.collision[row as usize].as_mut_ptr()
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   216
}
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   217
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   218
#[no_mangle]
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   219
pub extern "C" fn land_fill(
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   220
    game_field: &mut GameField,
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   221
    x: i32,
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   222
    y: i32,
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   223
    border_value: u16,
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   224
    fill_value: u16,
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   225
) {
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   226
    game_field
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   227
        .collision
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   228
        .fill(Point::new(x, y), border_value, fill_value)
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   229
}
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   230
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   231
#[no_mangle]
15912
6e22f4390b7e Add basics of wavefront collapse algorithm
unC0Rr
parents: 15905
diff changeset
   232
pub extern "C" fn land_pixel_get(game_field: &GameField, x: i32, y: i32) -> u32 {
6e22f4390b7e Add basics of wavefront collapse algorithm
unC0Rr
parents: 15905
diff changeset
   233
    game_field.pixels.get(y, x)
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   234
}
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   235
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   236
#[no_mangle]
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   237
pub extern "C" fn land_pixel_set(game_field: &mut GameField, x: i32, y: i32, value: u32) {
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   238
    game_field.pixels.map(y, x, |p| *p = value);
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   239
}
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   240
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   241
#[no_mangle]
15901
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   242
pub extern "C" fn land_pixel_row(game_field: &mut GameField, row: i32) -> *mut u32 {
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   243
    game_field.pixels[row as usize].as_mut_ptr()
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   244
}
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   245
f39f0f614dbf Use LandPixels array allocate in hwengine-future library
unC0Rr
parents: 15900
diff changeset
   246
#[no_mangle]
15900
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   247
pub extern "C" fn dispose_game_field(game_field: *mut GameField) {
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   248
    unsafe { drop(Box::from_raw(game_field)) };
128ace913837 Introduce hwengine-future library, use Land allocated in it
unC0Rr
parents:
diff changeset
   249
}
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   250
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   251
#[no_mangle]
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   252
pub extern "C" fn create_ai(game_field: &GameField) -> *mut AI {
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   253
    Box::into_raw(Box::new(AI::new(game_field)))
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   254
}
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   255
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   256
#[no_mangle]
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   257
pub extern "C" fn ai_clear_team(ai: &mut AI) {
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   258
    *ai.get_team_mut() = vec![];
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   259
}
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   260
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   261
#[no_mangle]
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   262
pub extern "C" fn ai_add_team_hedgehog(ai: &mut AI, x: f32, y: f32) {
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   263
    ai.get_team_mut().push(Hedgehog{x, y});
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   264
}
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   265
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   266
#[no_mangle]
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   267
pub extern "C" fn ai_think(ai: &AI) {
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   268
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   269
}
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   270
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   271
#[no_mangle]
16040
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   272
pub extern "C" fn ai_have_plan(ai: &AI) -> bool {
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   273
    ai.have_plan()
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   274
}
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   275
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   276
#[no_mangle]
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   277
pub extern "C" fn ai_get(ai: &AI) -> bool {
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   278
    ai.have_plan()
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   279
}
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   280
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   281
#[no_mangle]
16039
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   282
pub extern "C" fn dispose_ai(ai: *mut AI) {
a236360669cc Start on AI implementation in rust
unC0Rr
parents: 16035
diff changeset
   283
    unsafe { drop(Box::from_raw(ai)) };
16040
6c5b3c576fc6 Add some progress on rust AI
unC0Rr
parents: 16039
diff changeset
   284
}