mirror of https://github.com/MingweiSamuel/Riven
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
{{
|
|
const dotUtils = require('./dotUtils.js');
|
|
const queues = require('./.queues.json');
|
|
|
|
const groupedQueues = queues.groupBy(({ map, description }) => {
|
|
const name = dotUtils.changeCase.pascalCase((map || '').replace("'", ''))
|
|
+ dotUtils.changeCase.pascalCase((description || '').replace(/\s+(?=\d)/g, ''));
|
|
return name;
|
|
});
|
|
}}{{= dotUtils.preamble() }}
|
|
|
|
/// League of Legends matchmaking queue.
|
|
pub enum Queue {
|
|
{{
|
|
for (let [ groupName, colQueues ] of groupedQueues) {
|
|
}}
|
|
|
|
{{
|
|
for (let { queueId, map, description, notes } of colQueues) {
|
|
const name = groupName + (colQueues.length > 1 ? queueId : '');
|
|
const doc = (description ? description + ' games on ' : '') + map;
|
|
const deprecated = (notes || '').toUpperCase().indexOf('DEPRECATED') >= 0;
|
|
}}
|
|
/// {{= doc }}.
|
|
{{? notes }}
|
|
/// <br>{{= notes }}
|
|
{{?}}
|
|
{{? deprecated}}
|
|
#[deprecated(note="{{= notes }}")]
|
|
{{?}}
|
|
{{= name }} = {{= queueId }},
|
|
{{
|
|
}
|
|
}
|
|
}}
|
|
} |