2019-10-23 08:20:34 +00:00
|
|
|
{{
|
|
|
|
const dotUtils = require('./dotUtils.js');
|
|
|
|
const queues = require('./.queues.json');
|
|
|
|
|
|
|
|
const groupedQueues = queues.groupBy(({ map, description }) => {
|
2019-10-27 08:52:55 +00:00
|
|
|
const name = dotUtils.changeCase.constantCase((map || '').replace("'", ''))
|
|
|
|
+ '_' + dotUtils.changeCase.constantCase((description || '').replace(/\s+(?=\d)/g, ''));
|
2019-10-23 08:20:34 +00:00
|
|
|
return name;
|
|
|
|
});
|
|
|
|
}}{{= dotUtils.preamble() }}
|
2019-10-25 20:37:23 +00:00
|
|
|
|
|
|
|
use serde_repr::{ Serialize_repr, Deserialize_repr };
|
2019-10-26 16:23:58 +00:00
|
|
|
use num_enum::{ IntoPrimitive, TryFromPrimitive };
|
2019-10-23 08:20:34 +00:00
|
|
|
|
|
|
|
/// League of Legends matchmaking queue.
|
2019-11-07 20:45:13 +00:00
|
|
|
#[cfg_attr(feature = "nightly", non_exhaustive)]
|
2019-10-25 20:37:23 +00:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
|
|
|
#[derive(Eq, PartialEq)]
|
|
|
|
#[derive(Serialize_repr, Deserialize_repr)]
|
2019-10-26 16:23:58 +00:00
|
|
|
#[derive(IntoPrimitive, TryFromPrimitive)]
|
2019-10-25 20:37:23 +00:00
|
|
|
#[repr(u16)]
|
2019-10-23 08:20:34 +00:00
|
|
|
pub enum Queue {
|
|
|
|
{{
|
|
|
|
for (let [ groupName, colQueues ] of groupedQueues) {
|
|
|
|
}}
|
|
|
|
|
|
|
|
{{
|
|
|
|
for (let { queueId, map, description, notes } of colQueues) {
|
|
|
|
const doc = (description ? description + ' games on ' : '') + map;
|
|
|
|
const deprecated = (notes || '').toUpperCase().indexOf('DEPRECATED') >= 0;
|
2020-03-31 18:58:15 +00:00
|
|
|
const name = groupName + ((colQueues.length > 1 && deprecated) ? `_DEPRECATED_${queueId}` : '');
|
2019-10-23 08:20:34 +00:00
|
|
|
}}
|
|
|
|
/// {{= doc }}.
|
|
|
|
{{? notes }}
|
2019-10-23 08:24:15 +00:00
|
|
|
/// <br>{{= notes }}
|
2019-10-23 08:20:34 +00:00
|
|
|
{{?}}
|
|
|
|
{{? deprecated}}
|
|
|
|
#[deprecated(note="{{= notes }}")]
|
|
|
|
{{?}}
|
|
|
|
{{= name }} = {{= queueId }},
|
|
|
|
{{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
}
|