mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
948e7e646f
- Airship dock - Coastal house - Coastal workshop
63 lines
1.3 KiB
Rust
63 lines
1.3 KiB
Rust
use crate::{terrain::TerrainChunkSize, vol::RectVolSize};
|
|
use serde::{Deserialize, Serialize};
|
|
use strum::EnumIter;
|
|
use vek::*;
|
|
|
|
// In chunks
|
|
pub const ZONE_SIZE: u32 = 32;
|
|
|
|
bitflags::bitflags! {
|
|
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
|
|
pub struct InstFlags: u8 {
|
|
const SNOW_COVERED = 0b00000001;
|
|
const GLOW = 0b00000010;
|
|
}
|
|
}
|
|
|
|
#[derive(Copy, Clone, Hash, PartialEq, Eq, Debug, Serialize, Deserialize, EnumIter)]
|
|
#[repr(u16)]
|
|
pub enum ObjectKind {
|
|
GenericTree,
|
|
Pine,
|
|
Dead,
|
|
House,
|
|
GiantTree,
|
|
Mangrove,
|
|
Acacia,
|
|
Birch,
|
|
Redwood,
|
|
Baobab,
|
|
Frostpine,
|
|
Haniwa,
|
|
Desert,
|
|
Palm,
|
|
Arena,
|
|
SavannahHut,
|
|
SavannahPit,
|
|
TerracottaPalace,
|
|
TerracottaHouse,
|
|
TerracottaYard,
|
|
AirshipDock,
|
|
CoastalHouse,
|
|
CoastalWorkshop,
|
|
}
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
pub struct Object {
|
|
pub kind: ObjectKind,
|
|
pub pos: Vec3<i16>,
|
|
pub flags: InstFlags,
|
|
pub color: Rgb<u8>,
|
|
}
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
pub struct Zone {
|
|
pub objects: Vec<Object>,
|
|
}
|
|
|
|
pub fn to_wpos(wpos: i32) -> i32 { wpos * (TerrainChunkSize::RECT_SIZE.x * ZONE_SIZE) as i32 }
|
|
|
|
pub fn from_wpos(zone_pos: i32) -> i32 {
|
|
zone_pos.div_euclid((TerrainChunkSize::RECT_SIZE.x * ZONE_SIZE) as i32)
|
|
}
|