Riven/srcgen/consts/season.rs.dt

26 lines
701 B
Plaintext
Raw Normal View History

2019-10-23 07:49:02 +00:00
{{
const dotUtils = require('./dotUtils.js');
const seasons = require('./.seasons.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-23 07:49:02 +00:00
/// League of Legends matchmaking seasons.
2019-10-26 02:25:48 +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:25:48 +00:00
#[repr(u8)]
2019-10-23 07:49:02 +00:00
pub enum Season {
{{
for (const { id, season } of seasons) {
let name = season.replace(' ', '');
name = dotUtils.changeCase.pascalCase(name).padEnd(13);
}}
{{= name }} = {{= id }},
{{
}
}}
2019-10-26 02:52:43 +00:00
}