-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstonescript.sublime-syntax
299 lines (275 loc) · 8.22 KB
/
stonescript.sublime-syntax
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
%YAML 1.2
---
# See http://www.sublimetext.com/docs/3/syntax.html
file_extensions:
- txt
- ss
- ''
first_line_match: '//stonescript'
scope: text.plain
contexts:
# The prototype context is prepended to all contexts but those setting
# meta_include_prototype: false.
prototype:
- include: comments
main:
# The main context is the initial starting point of our syntax.
# Include other contexts from here (or specify them directly).
- include: keywords
- include: numbers
- include: strings
- include: heredoc_string
- include: operators
- include: global_variables
- include: attributes
- include: control
- include: output_basic
- include: funtion_call
- include: game_actions
- include: loc
- include: foe
- include: item
- include: harvest_pickup
- include: armor
global_variables:
- match: '\b(time|hp|maxhp|maxarmor|totaltime|face|key)\b'
scope: entity.name.class
- match: '\b(ai)\.(enabled|paused|idle|walking)\b'
captures:
1: entity.name.class
2: entity.other.attribute-name
- match: '\b(pos)\.([xyz])\b'
captures:
1: entity.name.class
2: entity.other.attribute-name
- match: '\b(res)\.(stone|wood|tar|ki|bronze|crystals)\b'
captures:
1: entity.name.class
2: entity.other.attribute-name
game_actions:
- match: '\b(rng|loadout)\b'
scope: variable.function
- match: '\b(equip[LR]?|brew|activate)\b'
scope: variable.function
push:
- match: '\b(potion|active|R)\b'
scope: variable.parameter
pop: true
- match: '\b(big|vigor|poison|ice|fire|aether)\b'
scope: markup.underline.link
- match: '\b(sword|hammer|staff|wand|shovel|bow|axe|grap|dashing shield|crossbow)\b'
scope: variable.parameter
push:
- match: '\d+[\*\+\-~]?'
scope: constant.other
- match: '\b(D|dp|dP|dh|dL|du|dU|df|dF|di|dI|A|ap|aP|ah|aL|au|aU|af|aF|ai|aI)\b'
scope: constant.other
- match: '^\0'
pop: true
- match: '(molly)\s?(vini)\b'
captures:
1: markup.underline.link
2: variable.parameter
- match: '^\0'
pop: true
operators:
- match: '\s*(&|\||<|>=|<=|=|\^|\!|\!=)\s*'
scope: keyword.operator
pop: true
- match: '((?<=\w)\s?(\+\+|--|\*\*))'
scope: keyword.operator
pop: true
control:
- match: '(\?|:\?|:)'
scope: keyword.control.c
pop: true
- match: '\b(var|func|for|return)\b'
scope: variable.language.plain
- match: '\b(new|import)\b'
scope: variable.language.plain
push:
- match: '(\w+)\\?'
scope: markup.underline.link
- match: '\n'
pop: true
funtion_call:
- match: '(\w+)\('
captures:
1: variable.function
push:
- include: strings
- match: '[\w_]+'
scope: variable.parameter
- match: '\)'
pop: true
variable_reference:
- meta_include_prototype: false
- match: '@'
scope: variable.function
push:
- match: '(\w+)\.?'
scope: variable.function
- match: '@'
scope: variable.function
pop: true
output_basic:
- meta_include_prototype: false
- match: '>[`ohcf\(]?'
scope: variable.language.plain
push:
- match: '\n'
scope: punctuation.definition.string.end
pop: true
- match: '(\d+),(\d+),'
captures:
1: constant.numeric
2: constant.numeric
- include: hex_colours
- include: variable_reference
- match: ',?(?=.*)\n'
push:
- meta_include_prototype: false
- meta_scope: string.quoted.double
- match: '\n'
scope: punctuation.definition.string.end
pop: 2
- match: '\w+'
scope: string.quoted.double
keywords:
# Keywords are if, else for and while.
# Note that blackslashes don't need to be escaped within single quoted
# strings in YAML. When using single quoted strings, only single quotes
# need to be escaped: this is done by using two single quotes next to each
# other.
- match: '\b(disable|enable)\s(hud|player|loadout print)\b'
scope: keyword.other
numbers:
- meta_include_prototype: false
- match: '\b(-)?[0-9.]+\b'
scope: constant.numeric
- match: '\b(true|false)\b'
scope: constant.numeric
hex_colours:
- meta_include_prototype: false
- match: '(#[0-9a-fA-F]{6})\b'
scope: constant.other.array.rgb
- match: '(#red|#white|#cyan|#yellow|#green|#blue)\b'
scope: constant.other.array.rgb
- match: '(#rain[0-9a-fA-F]{2})\b'
scope: constant.other.array.hex
strings:
# Strings begin and end with quotes, and use backslashes as an escape
# character.
- match: '"'
scope: punctuation.definition.string.begin
push: inside_string
inside_string:
- include: variable_reference
- include: hex_colours
- meta_include_prototype: false
- meta_scope: string.quoted.double
- match: '"'
scope: punctuation.definition.string.end
pop: true
- match: '\\n'
scope: string.unquoted.yaml
- match: '#'
scope: punctuation.definition.comment
push: comment
- match: '\^'
scope: keyword
heredoc_string:
- meta_include_prototype: false
- meta_scope: string.quoted.double
- match: '\bascii$'
scope: punctuation.definition.string.begin
push: inside_heredoc
inside_heredoc:
- include: variable_reference
- include: hex_colours
- meta_include_prototype: false
- meta_scope: string.quoted.double
- match: '\basciiend$'
scope: punctuation.definition.string.end
pop: true
- match: '#'
scope: punctuation.definition.comment
push: comment
- match: '\^'
scope: keyword
comment:
- meta_scope: comment.line.double-slash
- match: $\n?
pop: true
comments:
- meta_include_prototype: false
# Comments begin with a '//' and finish at the end of the line.
- match: '//'
scope: punctuation.definition.comment
push: comment
loc:
- match: '\b(loc)\s?([\!<=]?[=>]?)?\s?(rocky|deadwood|cave|halls|shroom|haunted|crypt|bronze|icy|temple|nagaraja|icy_ridge)\b'
captures:
1: entity.name.class
2: keyword.operator
3: variable.parameter
- match: '\bloc(?=\.)'
scope: entity.name.class
push:
- match: '\.(id|name|stars|begin|loop|isQuest|averageTime|bestTime)\b'
scope: entity.other.attribute-name
pop: true
- match: ''
pop: true
- match: '\bloc\b'
scope: entity.name.class
foe:
- match: '\bfoe(?=\.)'
scope: entity.name.class
push:
- match: '\.(buffs|debuffs)\.(count|string)\b'
captures:
1: entity.other.attribute-name
2: entity.other.attribute-name
pop: true
- match: '\.(name|damage|buffs|debuffs|distance|count|hp|maxhp|armor|maxarmor|state|time|level)\b'
scope: entity.other.attribute-name
pop: true
- match: ''
pop: true
- match: '\bfoe\b'
scope: entity.name.class
item:
- match: '\bitem(?=\.)'
scope: entity.name.class
push:
- match: 'GetCooldown'
scope: invalid.illegal
- match: '\.(left|right)\.(id|name)\b'
captures:
1: entity.other.attribute-name
2: entity.other.attribute-name
pop: true
- match: '\.(left|right|potion)\b'
scope: entity.other.attribute-name
pop: true
- match: ''
pop: true
harvest_pickup:
- match: '\b(harvest|pickup)\.(distance|count)\b'
captures:
1: entity.name.class
2: entity.other.attribute-name
- match: '\b(harvest|pickup)\b'
scope: entity.name.class
armor:
- match: '\b(armor)(?=\.)'
scope: entity.name.class
push:
- match: '\.(f|count|string)\b'
scope: entity.other.attribute-name
pop: true
- match: ''
pop: true
- match: '\b(armor)\b'
scope: entity.name.class