-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtscn.pegjs
169 lines (131 loc) · 2.45 KB
/
tscn.pegjs
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
// PEG grammar for Godot .tscn files
scene
= descriptor:entity
entities:(ws entity:entity ws { return entity; })*
{ return { descriptor: descriptor, entities: entities } }
entity
= begin_entity ws
type:name ws
heading:props
end_entity ws
props:props
{ return props ?
{ type: type, heading: heading, props: props } :
{ type: type, heading: heading }
}
props
= props:(
head:member
tail:(ws m:member { return m; })*
{
var result = {};
[head].concat(tail).forEach(function(element) {
result[element.name] = element.value;
});
return result;
}
)?
{ return props; }
member
= name:name name_separator value:value {
return { name: name, value: value };
}
value
= false
/ null
/ true
/ number
/ string
/ internal
/ array
// Array
array
= begin_array
values:value_list?
end_array
{ return values !== null ? values : []; }
value_list
= head:value
tail:(value_separator v:value { return v; })*
{ return [head].concat(tail); }
// Godot internal types: Color, ExtResource, etc.
internal
= type:name
"(" ws
params:value_list? ws
")"
{ return { type: type, params: params } }
// Common
false
= "false" { return false; }
true
= "true" { return true; }
null
= "null" { return null; }
begin_array
= ws "[" ws
end_array
= ws "]" ws
begin_entity
= ws "[" ws
end_entity
= ws "]" ws
name_separator
= ws "=" ws
value_separator
= ws "," ws
ws "whitespace"
= [ \t\n\r]*
// Numbers
number "number"
= minus? int frac? exp? { return parseFloat(text()); }
decimal_point
= "."
digit1_9
= [1-9]
e
= [eE]
exp
= e (minus / plus)? DIGIT+
frac
= decimal_point DIGIT+
int
= zero / (digit1_9 DIGIT*)
minus
= "-"
plus
= "+"
zero
= "0"
// Strings
name
= chars:[/_a-z0-9-]i* { return chars.join(''); }
string "string"
= quotation_mark chars:char* quotation_mark { return chars.join(''); }
char
= unescaped
/ escape
sequence:(
'"'
/ "\\"
/ "/"
/ "b" { return "\b"; }
/ "f" { return "\f"; }
/ "n" { return "\n"; }
/ "r" { return "\r"; }
/ "t" { return "\t"; }
/ "u" digits:$(HEXDIG HEXDIG HEXDIG HEXDIG) {
return String.fromCharCode(parseInt(digits, 16));
}
)
{ return sequence; }
escape
= "\\"
quotation_mark
= '"'
unescaped
= [^\0-\x1F\x22\x5C]
DIGIT
= [0-9]
HEXDIG
= [0-9a-f]i