1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
use std::collections::HashMap;
use serde::Deserialize;
use crate::api::{
categories::CategoryId,
variables::{ValueId, VariableId},
};
use super::Link;
#[derive(Debug, Clone, PartialEq, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct Variable<'a> {
pub id: VariableId<'a>,
pub name: String,
pub category: Option<CategoryId<'a>>,
pub scope: Scope,
pub mandatory: bool,
pub user_defined: bool,
pub obsoletes: bool,
pub values: Values<'a>,
pub is_subcategory: bool,
pub links: Vec<Link>,
}
#[derive(Debug, Clone, PartialEq, Deserialize)]
#[serde(rename_all = "kebab-case")]
#[serde(tag = "type")]
pub enum Scope {
Global,
FullGame,
AllLevels,
SingleLevel { level: String },
}
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct Values<'a> {
pub values: HashMap<ValueId<'a>, Value>,
pub default: Option<ValueId<'a>>,
}
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct Value {
pub label: String,
pub rules: Option<String>,
pub flags: Option<Flags>,
}
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub struct Flags {
pub miscellaneous: Option<bool>,
}