forked from mirror/Riven
1
0
Fork 0
Riven/srcgen/consts/map.rs.dt

29 lines
700 B
Plaintext
Raw Normal View History

2019-10-26 02:52:43 +00:00
{{
const dotUtils = require('./dotUtils.js');
const maps = require('./.maps.json');
}}{{= dotUtils.preamble() }}
2019-10-26 05:19:00 +00:00
use serde_repr::{ Serialize_repr, Deserialize_repr };
use num_enum::{ IntoPrimitive, TryFromPrimitive };
2019-10-26 05:19:00 +00:00
2019-10-26 02:52:43 +00:00
/// League of Legends maps.
#[non_exhaustive]
2019-10-26 02:52:43 +00:00
#[derive(Debug, Copy, Clone)]
#[derive(Eq, PartialEq, Hash, PartialOrd, Ord)]
2019-10-26 05:19:00 +00:00
#[derive(Serialize_repr, Deserialize_repr)]
#[derive(IntoPrimitive, TryFromPrimitive)]
2019-10-26 02:52:43 +00:00
#[repr(u8)]
pub enum Map {
{{
for (const e of maps) {
const desc = e['x-desc'] ? e['x-desc'].split('\n') : [];
2019-10-26 02:52:43 +00:00
}}
{{~ desc :line }}
/// {{= line }}
{{~}}
{{= e['x-name'] }} = {{= e['x-value'] }},
2019-10-26 02:52:43 +00:00
{{
}
}}
}