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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
use alloc::{
format,
vec::Vec,
};
use anyhow::Result;
use crate::{
effect::fxlang::{
effect::Program,
statement_parser::StatementParser,
tree,
},
error::{
WrapResultError,
general_error,
},
};
/// A parsed program block, which should be executed as a unit.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ParsedProgramBlock {
Leaf(tree::Statement),
Branch(Vec<ParsedProgramBlock>),
}
impl ParsedProgramBlock {
/// The number of statements in the block.
///
/// Note that this recursively looks into all blocks if this block is a branch, so this can
/// potentially be expensive.
pub fn len(&self) -> usize {
match self {
Self::Leaf(_) => 1,
Self::Branch(blocks) => blocks.iter().map(|block| block.len()).sum(),
}
}
/// Checks if the program is completely empty.
///
/// A program is empty only if it consists of empty statements.
pub fn is_empty(&self) -> bool {
match self {
Self::Leaf(tree::Statement::Empty) => true,
Self::Leaf(_) => false,
Self::Branch(blocks) => blocks.iter().all(|block| block.is_empty()),
}
}
}
impl Default for ParsedProgramBlock {
fn default() -> Self {
Self::Leaf(tree::Statement::default())
}
}
/// A parsed version of [`Program`], which can be evaluated in the context of an ongoing battle.
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct ParsedProgram {
pub block: ParsedProgramBlock,
}
impl ParsedProgram {
/// Parses a [`Program`] into several syntax trees, one per statement.
///
/// The produced program is syntactically valid, but it may not be semantically valid. For
/// instance, some operations may fail due to mismatched types (e.g., `'string' + 10`).
pub fn from(program: &Program) -> Result<Self> {
let mut parser = ProgramParser::new();
parser.parse(program)
}
}
struct ProgramParser {
line: u16,
depth: u8,
}
impl ProgramParser {
const MAX_DEPTH: u8 = 10;
const MAX_LENGTH: u16 = 999;
fn new() -> Self {
Self { line: 0, depth: 0 }
}
fn down_one_level(&mut self) -> Result<()> {
if self.depth == Self::MAX_DEPTH {
Err(general_error(format!(
"exceeded maximum depth of {}",
Self::MAX_DEPTH,
)))
} else {
self.depth += 1;
Ok(())
}
}
fn up_one_level(&mut self) {
if self.depth > 0 {
self.depth -= 1;
}
}
fn down_one_line(&mut self) -> Result<()> {
if self.line > Self::MAX_LENGTH {
Err(general_error(format!(
"program too long: exceeded maximum length of {}",
Self::MAX_LENGTH,
)))
} else {
self.line += 1;
Ok(())
}
}
pub fn parse(&mut self, program: &Program) -> Result<ParsedProgram> {
let block = self.parse_program(program)?;
match block {
ParsedProgramBlock::Leaf(tree::Statement::Empty) => {
return Err(general_error("program cannot be empty"));
}
_ => (),
}
let program = ParsedProgram { block };
Ok(program)
}
fn parse_program(&mut self, program: &Program) -> Result<ParsedProgramBlock> {
self.down_one_level()?;
let block = match program {
Program::Leaf(line) => {
let statement = self.parse_line(line)?;
ParsedProgramBlock::Leaf(statement)
}
Program::Branch(programs) => {
let mut parsed = Vec::new();
for program in programs {
let program = self.parse_program(program)?;
match program {
ParsedProgramBlock::Leaf(tree::Statement::Empty) => (),
_ => parsed.push(program),
}
}
ParsedProgramBlock::Branch(parsed)
}
};
self.up_one_level();
Ok(block)
}
fn parse_line(&mut self, line: &str) -> Result<tree::Statement> {
self.down_one_line()?;
StatementParser::new(line)
.parse()
.wrap_error_with_format(format_args!("invalid statement on line {}", self.line))
}
}
#[cfg(test)]
mod program_parser_test {
use alloc::{
borrow::ToOwned,
boxed::Box,
format,
vec,
};
use battler_data::Fraction;
use pretty_assertions::assert_eq;
use crate::effect::fxlang::{
ParsedProgram,
ParsedProgramBlock,
tree,
};
#[test]
fn fails_empty_program() {
assert_matches::assert_matches!(
ParsedProgram::from(&serde_json::from_str(r#""""#).unwrap()),
Err(err) => assert_eq!(format!("{err:#}"), "program cannot be empty")
)
}
#[test]
fn fails_comment_only() {
assert_matches::assert_matches!(
ParsedProgram::from(
&serde_json::from_str(
r#"
" # This is a comment."
"#,
)
.unwrap(),
),
Err(err) => assert_eq!(format!("{err:#}"), "program cannot be empty")
)
}
#[test]
fn parses_one_statement() {
assert_eq!(
ParsedProgram::from(
&serde_json::from_str(
r#"
"function_call"
"#
)
.unwrap()
)
.unwrap(),
ParsedProgram {
block: ParsedProgramBlock::Leaf(tree::Statement::FunctionCall(
tree::FunctionCall {
function: tree::Identifier("function_call".to_owned()),
args: tree::Values(vec![]),
}
))
}
)
}
#[test]
fn parses_multiple_statements() {
assert_eq!(
ParsedProgram::from(
&serde_json::from_str(
r#"
[
"function_1",
"$a = 2/5",
" # Comment, which should be ignored.",
"function_2: $a"
]
"#
)
.unwrap()
)
.unwrap(),
ParsedProgram {
block: ParsedProgramBlock::Branch(vec![
ParsedProgramBlock::Leaf(tree::Statement::FunctionCall(tree::FunctionCall {
function: tree::Identifier("function_1".to_owned()),
args: tree::Values(vec![]),
})),
ParsedProgramBlock::Leaf(tree::Statement::Assignment(tree::Assignment {
lhs: tree::Var {
name: tree::Identifier("a".to_owned()),
member_access: vec![],
},
rhs: tree::Expr::Value(tree::Value::NumberLiteral(
tree::NumberLiteral::Unsigned(Fraction::new(2, 5))
))
})),
ParsedProgramBlock::Leaf(tree::Statement::FunctionCall(tree::FunctionCall {
function: tree::Identifier("function_2".to_owned()),
args: tree::Values(vec![tree::Value::Var(tree::Var {
name: tree::Identifier("a".to_owned()),
member_access: vec![],
})]),
})),
])
}
)
}
#[test]
fn parses_multiple_branches() {
assert_eq!(
ParsedProgram::from(
&serde_json::from_str(
r#"
[
" # Example program with branches.",
"if func_call(rand: 0 1) == 0:",
[
"$damage = 20"
],
"else:",
[
"$damage = 40"
],
"damage: $target $damage"
]
"#
)
.unwrap()
)
.unwrap(),
ParsedProgram {
block: ParsedProgramBlock::Branch(vec![
ParsedProgramBlock::Leaf(tree::Statement::IfStatement(tree::IfStatement(
tree::Expr::BinaryExpr(tree::BinaryExpr {
lhs: Box::new(tree::Expr::Value(tree::Value::ValueFunctionCall(
tree::ValueFunctionCall(tree::FunctionCall {
function: tree::Identifier("rand".to_owned()),
args: tree::Values(vec![
tree::Value::NumberLiteral(tree::NumberLiteral::Unsigned(
0u64.into()
)),
tree::Value::NumberLiteral(tree::NumberLiteral::Unsigned(
1u64.into()
)),
])
})
))),
rhs: vec![tree::BinaryExprRhs {
op: tree::Operator::Equal,
expr: Box::new(tree::Expr::Value(tree::Value::NumberLiteral(
tree::NumberLiteral::Unsigned(0u64.into())
)))
}]
})
))),
ParsedProgramBlock::Branch(vec![ParsedProgramBlock::Leaf(
tree::Statement::Assignment(tree::Assignment {
lhs: tree::Var {
name: tree::Identifier("damage".to_owned()),
member_access: vec![],
},
rhs: tree::Expr::Value(tree::Value::NumberLiteral(
tree::NumberLiteral::Unsigned(20u64.into())
)),
})
)]),
ParsedProgramBlock::Leaf(tree::Statement::ElseIfStatement(
tree::ElseIfStatement(None)
)),
ParsedProgramBlock::Branch(vec![ParsedProgramBlock::Leaf(
tree::Statement::Assignment(tree::Assignment {
lhs: tree::Var {
name: tree::Identifier("damage".to_owned()),
member_access: vec![],
},
rhs: tree::Expr::Value(tree::Value::NumberLiteral(
tree::NumberLiteral::Unsigned(40u64.into())
)),
})
)]),
ParsedProgramBlock::Leaf(tree::Statement::FunctionCall(tree::FunctionCall {
function: tree::Identifier("damage".to_owned()),
args: tree::Values(vec![
tree::Value::Var(tree::Var {
name: tree::Identifier("target".to_owned()),
member_access: vec![],
}),
tree::Value::Var(tree::Var {
name: tree::Identifier("damage".to_owned()),
member_access: vec![],
})
])
}))
])
}
)
}
#[test]
fn parses_nested_branches() {
assert_eq!(
ParsedProgram::from(
&serde_json::from_str(
r#"
[
" # Example program with branches.",
"if true:",
[
"if true:",
[
"foreach $mon in $team:",
[
"if $mon.fainted:",
[
"return 2 + 2"
]
]
]
]
]
"#
)
.unwrap()
)
.unwrap(),
ParsedProgram {
block: ParsedProgramBlock::Branch(vec![
ParsedProgramBlock::Leaf(tree::Statement::IfStatement(tree::IfStatement(
tree::Expr::Value(tree::Value::BoolLiteral(tree::BoolLiteral(true)))
))),
ParsedProgramBlock::Branch(vec![
ParsedProgramBlock::Leaf(tree::Statement::IfStatement(tree::IfStatement(
tree::Expr::Value(tree::Value::BoolLiteral(tree::BoolLiteral(true)))
))),
ParsedProgramBlock::Branch(vec![
ParsedProgramBlock::Leaf(tree::Statement::ForEachStatement(
tree::ForEachStatement {
var: tree::Var {
name: tree::Identifier("mon".to_owned()),
member_access: vec![],
},
range: tree::Value::Var(tree::Var {
name: tree::Identifier("team".to_owned()),
member_access: vec![],
})
}
)),
ParsedProgramBlock::Branch(vec![
ParsedProgramBlock::Leaf(tree::Statement::IfStatement(
tree::IfStatement(tree::Expr::Value(tree::Value::Var(
tree::Var {
name: tree::Identifier("mon".to_owned()),
member_access: vec![tree::Identifier(
"fainted".to_owned()
)]
}
)))
),),
ParsedProgramBlock::Branch(vec![ParsedProgramBlock::Leaf(
tree::Statement::ReturnStatement(tree::ReturnStatement(Some(
tree::Expr::BinaryExpr(tree::BinaryExpr {
lhs: Box::new(tree::Expr::Value(
tree::Value::NumberLiteral(
tree::NumberLiteral::Unsigned(2u64.into())
)
)),
rhs: vec![tree::BinaryExprRhs {
op: tree::Operator::Add,
expr: Box::new(tree::Expr::Value(
tree::Value::NumberLiteral(
tree::NumberLiteral::Unsigned(2u64.into())
)
))
}]
})
)))
)])
])
]),
])
])
}
)
}
#[test]
fn fails_maximum_depth_exceeded() {
assert_matches::assert_matches!(
ParsedProgram::from(
&serde_json::from_str(
r#"
[
"if true:",
[
"if true:",
[
"if true:",
[
"if true:",
[
"if true:",
[
"if true:",
[
"if true:",
[
"if true:",
[
"if true:",
[
"if true:"
]
]
]
]
]
]
]
]
]
]
"#,
)
.unwrap(),
),
Err(err) => assert_eq!(format!("{err:#}"), "exceeded maximum depth of 10")
)
}
#[test]
fn reports_invalid_statement() {
assert_matches::assert_matches!(
ParsedProgram::from(
&serde_json::from_str(
r#"
[
" # This program doesn't compile.",
"if $mon.id == pikachu:",
[
"$a == test"
],
"return true"
]
"#,
)
.unwrap(),
),
Err(err) => assert_eq!(format!("{err:#}"), "invalid statement on line 3: unexpected token at index 3: == (expected =)")
)
}
}