common.rs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. use super::{Map, Rect, TileType};
  2. use std::cmp::{max, min};
  3. use std::collections::HashMap;
  4. pub fn apply_room_to_map(map : &mut Map, room : &Rect) {
  5. for y in room.y1 +1 ..= room.y2 {
  6. for x in room.x1 + 1 ..= room.x2 {
  7. let idx = map.xy_idx(x, y);
  8. if idx > 0 && idx < ((map.width * map.height)-1) as usize {
  9. map.tiles[idx] = TileType::Floor;
  10. }
  11. }
  12. }
  13. }
  14. pub fn apply_horizontal_tunnel(map : &mut Map, x1:i32, x2:i32, y:i32) {
  15. for x in min(x1,x2) ..= max(x1,x2) {
  16. let idx = map.xy_idx(x, y);
  17. if idx > 0 && idx < map.width as usize * map.height as usize {
  18. map.tiles[idx as usize] = TileType::Floor;
  19. }
  20. }
  21. }
  22. pub fn apply_vertical_tunnel(map : &mut Map, y1:i32, y2:i32, x:i32) {
  23. for y in min(y1,y2) ..= max(y1,y2) {
  24. let idx = map.xy_idx(x, y);
  25. if idx > 0 && idx < map.width as usize * map.height as usize {
  26. map.tiles[idx as usize] = TileType::Floor;
  27. }
  28. }
  29. }
  30. /// Searches a map, removes unreachable areas and returns the most distant tile.
  31. pub fn remove_unreachable_areas_returning_most_distant(map : &mut Map, start_idx : usize) -> usize {
  32. let map_starts : Vec<i32> = vec![start_idx as i32];
  33. let dijkstra_map = rltk::DijkstraMap::new(map.width, map.height, &map_starts , map, 300.0);
  34. let mut exit_tile = (0, 0.0f32);
  35. for (i, tile) in map.tiles.iter_mut().enumerate() {
  36. if *tile == TileType::Floor {
  37. let distance_to_start = dijkstra_map.map[i];
  38. // We can't get to this tile - so we'll make it a wall
  39. if distance_to_start == std::f32::MAX {
  40. *tile = TileType::Wall;
  41. } else {
  42. // If it is further away than our current exit candidate, move the exit
  43. if distance_to_start > exit_tile.1 {
  44. exit_tile.0 = i;
  45. exit_tile.1 = distance_to_start;
  46. }
  47. }
  48. }
  49. }
  50. exit_tile.0
  51. }
  52. /// Generates a Voronoi/cellular noise map of a region, and divides it into spawn regions.
  53. #[allow(clippy::map_entry)]
  54. pub fn generate_voronoi_spawn_regions(map: &Map, rng : &mut rltk::RandomNumberGenerator) -> HashMap<i32, Vec<usize>> {
  55. let mut noise_areas : HashMap<i32, Vec<usize>> = HashMap::new();
  56. let mut noise = rltk::FastNoise::seeded(rng.roll_dice(1, 65536) as u64);
  57. noise.set_noise_type(rltk::NoiseType::Cellular);
  58. noise.set_frequency(0.08);
  59. noise.set_cellular_distance_function(rltk::CellularDistanceFunction::Manhattan);
  60. for y in 1 .. map.height-1 {
  61. for x in 1 .. map.width-1 {
  62. let idx = map.xy_idx(x, y);
  63. if map.tiles[idx] == TileType::Floor {
  64. let cell_value_f = noise.get_noise(x as f32, y as f32) * 10240.0;
  65. let cell_value = cell_value_f as i32;
  66. if noise_areas.contains_key(&cell_value) {
  67. noise_areas.get_mut(&cell_value).unwrap().push(idx);
  68. } else {
  69. noise_areas.insert(cell_value, vec![idx]);
  70. }
  71. }
  72. }
  73. }
  74. noise_areas
  75. }