-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
502 additions
and
2 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Prism.languages.uorazor = { | ||
'comment-hash': { | ||
pattern: /#.*/, | ||
alias: 'comment', | ||
greedy: true | ||
}, | ||
'comment-slash': { | ||
pattern: /\/\/.*/, | ||
alias: 'comment', | ||
greedy: true | ||
}, | ||
'string': { | ||
pattern: /("|')(?:\\.|(?!\1)[^\\\r\n])*\1/, | ||
inside: { | ||
'punctuation': /^['"]|['"]$/ | ||
}, | ||
greedy: true | ||
}, | ||
'source-layers': { | ||
pattern: /\b(?:arms|backpack|blue|bracelet|cancel|clear|cloak|criminal|earrings|enemy|facialhair|friend|friendly|gloves|gray|grey|ground|hair|head|innerlegs|innertorso|innocent|lefthand|middletorso|murderer|neck|nonfriendly|onehandedsecondary|outerlegs|outertorso|pants|red|righthand|ring|self|shirt|shoes|talisman|waist)\b/i, | ||
alias: 'function' | ||
}, | ||
'source-commands': { | ||
pattern: /\b(?:alliance|attack|cast|clearall|clearignore|clearjournal|clearlist|clearsysmsg|createlist|createtimer|dclick|dclicktype|dclickvar|dress|dressconfig|drop|droprelloc|emote|getlabel|guild|gumpclose|gumpresponse|hotkey|ignore|lasttarget|lift|lifttype|menu|menuresponse|msg|org|organize|organizer|overhead|pause|poplist|potion|promptresponse|pushlist|removelist|removetimer|rename|restock|say|scav|scavenger|script|setability|setlasttarget|setskill|settimer|setvar|sysmsg|target|targetloc|targetrelloc|targettype|undress|unignore|unsetvar|useobject|useonce|useskill|usetype|virtue|wait|waitforgump|waitformenu|waitforprompt|waitforstat|waitforsysmsg|waitfortarget|walk|wfsysmsg|wft|whisper|yell)\b/, | ||
alias: 'function' | ||
}, | ||
'tag-name': { | ||
pattern: /(^\{%-?\s*)\w+/, | ||
lookbehind: true, | ||
alias: 'keyword' | ||
}, | ||
'delimiter': { | ||
pattern: /^\{[{%]-?|-?[%}]\}$/, | ||
alias: 'punctuation' | ||
}, | ||
'function': /\b(?:atlist|close|closest|count|counter|counttype|dead|dex|diffhits|diffmana|diffstam|diffweight|find|findbuff|finddebuff|findlayer|findtype|findtypelist|followers|gumpexists|hidden|hits|hp|hue|human|humanoid|ingump|inlist|insysmessage|insysmsg|int|invul|lhandempty|list|listexists|mana|maxhits|maxhp|maxmana|maxstam|maxweight|monster|mounted|name|next|noto|paralyzed|poisoned|position|prev|previous|queued|rand|random|rhandempty|skill|stam|str|targetexists|timer|timerexists|varexist|warmode|weight)\b/, | ||
'keyword': /\b(?:and|as|break|continue|else|elseif|endfor|endif|endwhile|for|if|loop|not|or|replay|stop|while)\b/, | ||
'boolean': /\b(?:false|null|true)\b/, | ||
'number': /\b0x[\dA-Fa-f]+|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee][-+]?\d+)?/, | ||
'operator': [ | ||
{ | ||
pattern: /(\s)(?:and|b-and|b-or|b-xor|ends with|in|is|matches|not|or|same as|starts with)(?=\s)/, | ||
lookbehind: true | ||
}, | ||
/[=<>]=?|!=|\*\*?|\/\/?|\?:?|[-+~%|]/ | ||
], | ||
'punctuation': /[()\[\]{}:.,]/ | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<h2>Full example</h2> | ||
<pre><code> | ||
# UO Razor Script Highlighting by Jaseowns | ||
// These two are comments | ||
// Example script: | ||
setvar "my_training_target" | ||
while skill "anatomy" < 100 | ||
useskill "anatomy" | ||
wft 500 | ||
target "my_training_target" | ||
wait 2000 | ||
endwhile | ||
</code></pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
false | ||
true | ||
|
||
---------------------------------------------------- | ||
|
||
[ | ||
["boolean", "false"], | ||
["boolean", "true"] | ||
] | ||
|
||
---------------------------------------------------- | ||
|
||
Checks for boolean values |
54 changes: 54 additions & 0 deletions
54
tests/languages/uorazor/breakdown_script_example_feature.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
setvar "my_training_target" | ||
while skill "anatomy" < 100 | ||
useskill "anatomy" | ||
wft 500 | ||
target "my_training_target" | ||
wait 2000 | ||
endwhile | ||
|
||
---------------------------------------------------- | ||
|
||
[ | ||
["source-commands", "setvar"], | ||
["string", [ | ||
["punctuation", "\""], | ||
"my_training_target", | ||
["punctuation", "\""] | ||
]], | ||
|
||
["keyword", "while"], | ||
["function", "skill"], | ||
["string", [ | ||
["punctuation", "\""], | ||
"anatomy", | ||
["punctuation", "\""] | ||
]], | ||
["operator", "<"], | ||
["number", "100"], | ||
|
||
["source-commands", "useskill"], | ||
["string", [ | ||
["punctuation", "\""], | ||
"anatomy", | ||
["punctuation", "\""] | ||
]], | ||
|
||
["source-commands", "wft"], | ||
["number", "500"], | ||
|
||
["source-commands", "target"], | ||
["string", [ | ||
["punctuation", "\""], | ||
"my_training_target", | ||
["punctuation", "\""] | ||
]], | ||
|
||
["source-commands", "wait"], | ||
["number", "2000"], | ||
|
||
["keyword", "endwhile"] | ||
] | ||
|
||
---------------------------------------------------- | ||
|
||
Checks for each type of syntax breakdown |
Oops, something went wrong.