-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.php
65 lines (57 loc) · 1.66 KB
/
example.php
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
<?php
//This example shows basic usage of JASS parser, by showing how you can get players start locations, using callback
include 'jass.php';
$file = $argv[1];
echo "Processing file $file\n";
$parser = new JASSParser(array('call_cb' => 'call_cb'/*, 'string_const_cb' => 'string_const_cb'*/));
$lexer = new JASSLexer(file_get_contents($file));
$start_locs = array();
$players_locs = array();
$parser->parse($lexer);
echo "Saving\n";
$parser->save('saved.j', array('indent' => false));
foreach($players_locs as $player=>$loc_id) {
echo 'Player '.$player.' starts at '.$start_locs[$loc_id][0].':'.$start_locs[$loc_id][1]."\n";
}
function string_const_cb($str) {
echo $str."\n";
}
function call_cb($function, $arguments) {
$calculated_args = array();
foreach($arguments as $k=>$arg) {
$arg = JASSParser::recursive_calc_expr($arg);
if (isset($arg['value'])) {
$arg = $arg['value'];
} else {
$arg = null;
}
$calculated_args[$k] = $arg;
}
if ($function == 'DefineStartLocation') {
list($id, $x, $y) = $calculated_args;
if (($id === null) || ($x === null) || ($y === null)) {
return;
}
global $start_locs;
$start_locs[$id] = array($x, $y);
} elseif (($function == 'SetPlayerStartLocation') || ($function == 'ForcePlayerStartLocation')) {
list($id, $loc_id) = $calculated_args;
if ($loc_id === null) {
return;
}
if ($id == null) {
$id = $arguments[0];
if (($id['type'] == 'call') && ($id['id'] == 'Player')) {
$pid = JASSParser::recursive_calc_expr($id['args'][0]);
if (!isset($pid['value'])) {
return;
}
$id = $pid['value'];
} else {
return;
}
}
global $players_locs;
$players_locs[$id] = $loc_id;
}
}