2019-06-10 10:50:16 +00:00
|
|
|
use common::{assets, terrain::Structure};
|
|
|
|
use lazy_static::lazy_static;
|
2019-06-09 10:24:18 +00:00
|
|
|
use std::sync::Arc;
|
2019-06-06 14:52:29 +00:00
|
|
|
use vek::*;
|
|
|
|
|
|
|
|
lazy_static! {
|
2019-06-10 10:50:48 +00:00
|
|
|
pub static ref TREES: [Arc<Structure>; 9] = [
|
2019-06-06 14:52:29 +00:00
|
|
|
// green oaks
|
|
|
|
assets::load_map("world/tree/oak_green/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 18, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 18, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(16, 20, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(18, 21, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(18, 18, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(16, 21, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(20, 19, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(22, 20, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/oak_green/9.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(26, 26, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
// green pines
|
2019-06-10 10:50:48 +00:00
|
|
|
/*assets::load_map("world/tree/pine_green/1.vox", |s: Structure| s
|
2019-06-06 14:52:29 +00:00
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(17, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 8, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 12, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(11, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(16, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
// green pines 2
|
|
|
|
assets::load_map("world/tree/pine_green_2/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green_2/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green_2/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(17, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green_2/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 8, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green_2/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 12, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green_2/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(11, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green_2/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(16, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_green_2/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
// blue pines
|
|
|
|
assets::load_map("world/tree/pine_blue/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_blue/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_blue/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(17, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_blue/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 8, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_blue/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 12, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_blue/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(11, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_blue/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(16, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/pine_blue/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
// temperate small
|
|
|
|
assets::load_map("world/tree/temperate_small/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(4, 4, 7)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/temperate_small/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(4, 4, 7)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/temperate_small/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(4, 4, 7)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/temperate_small/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(4, 4, 7)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/temperate_small/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(4, 4, 7)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/temperate_small/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(4, 4, 7)))
|
|
|
|
.unwrap(),
|
|
|
|
// birch
|
|
|
|
assets::load_map("world/tree/birch/1.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(12, 9, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/2.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(11, 10, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/3.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(9, 10, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/4.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(9, 10, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/5.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(9, 11, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/6.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(9, 9, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/7.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/8.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(9, 9, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/9.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(9, 10, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/10.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(10, 9, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/11.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(9, 10, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/birch/12.vox", |s: Structure| s
|
2019-06-10 10:50:16 +00:00
|
|
|
.with_center(Vec3::new(10, 9, 10)))
|
2019-06-06 14:52:29 +00:00
|
|
|
.unwrap(),
|
|
|
|
// poplar
|
|
|
|
assets::load_map("world/tree/poplar/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/9.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(6, 6, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/poplar/10.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(7, 7, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
// palm trees
|
2019-06-10 10:50:48 +00:00
|
|
|
assets::load_map("world/tree/desert_palm/1.vox", |s: Structure| s
|
2019-06-06 14:52:29 +00:00
|
|
|
.with_center(Vec3::new(12, 12, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 12, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/9.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/desert_palm/10.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 10)))
|
|
|
|
.unwrap(),
|
|
|
|
// snow pines
|
|
|
|
assets::load_map("world/tree/snow_pine/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_pine/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 15, 14)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_pine/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(17, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_pine/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 8, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_pine/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 12, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_pine/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(11, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_pine/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(16, 15, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_pine/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 10, 12)))
|
|
|
|
.unwrap(),
|
|
|
|
// snow birches -> need roots!
|
|
|
|
assets::load_map("world/tree/snow_birch/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(12, 9, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(11, 10, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/3.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(9, 10, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/4.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(9, 10, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/5.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(9, 11, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/6.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(9, 9, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/7.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 10, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/8.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(9, 9, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/9.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(9, 10, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/10.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 9, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/11.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(9, 10, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/snow_birch/12.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(10, 9, 4)))
|
|
|
|
.unwrap(),
|
|
|
|
// willows
|
|
|
|
assets::load_map("world/tree/willow/1.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(15, 14, 1)))
|
|
|
|
.unwrap(),
|
|
|
|
assets::load_map("world/tree/willow/2.vox", |s: Structure| s
|
|
|
|
.with_center(Vec3::new(11, 12, 1)))
|
|
|
|
.unwrap(),
|
|
|
|
*/
|
|
|
|
|
|
|
|
];
|
|
|
|
}
|