Provides a pair of patterns and a set of commands to convert custom code into (pattern or literal) list iota; requires player to have a focus item in hand.
(Old KubeJS version HERE)
Example Code | Example Iota | Example Iota (Colorful Nested) |
---|---|---|
The
highlight VSCode extension
has only basic functions, and needs to be put into "%USERPROFILE%\.vscode\extensions\hexParse_highlight"
manually.
/hexParse <code string> [rename]
: parse input code into focus item; optionalrename
argument to rename focus item./hexParse clipboard [rename]
: read client clipboard text and parse into focus; optionalrename
argument to rename focus item./hexParse clipboard_angles [rename]
: same as above, but only accept patterns input with raw angle string like"wedsaq"
./hexParse read
: read handheld focus item's iota, parse into code and show in chat window; the result will be copied when clicked./hexParse donate [amount]
: donate custom amount of media to the nature. Pay if you feel guilty using this mod ::)/hexParse lehmer [...nums]
: calculate lehmer code for given permutation (from ascending, e.g.0 1 2 3 4
); input should be separated with space./hexParse share
: (experimental) same as above but broadcasts iota's raw content and click-copy-able parsed code to every player in the server.
/hexParse refreshMappings
: reload pattern mappings when plugins updated; should be auto-executed before first usage of above commands in each server, and this command can be ignored in normal cases./hexParse unlock_great (unlockAll|lockAll|unlock <pattern id>|lock <pattern id>)
: controls great pattern unlocking process of current world by locking/unlocking all at once, or a single great pattern each execution.
code2focus
: Equivalent to/hexParse clipboard
.focus2code
: Equivalent to/hexParse read
.remove_comments
: Clears comment iotas from a (nested) list input.learn_patterns
: Read handheld items and learns great pattern(s) inside.
Introduction also written in HexParse Patterns
section inside the book.
see this file for all available symbols.
- At each pattern's page, press
Shift
to display the pattern's registry ID
When failing to parse restricted great spells from code to iota, the parser leaves a placeholder comment in-place, which can be read as original input later.
Example |
---|
The config entry ParseGreatSpells
determines the mode this mod deals with great patterns.
Parsing iota with great patterns to code is not limited.
All great patterns are restricted at first, and have to be unlocked by a Learn Great Patterns
pattern after acquiring
certain items containing great patterns.
Parsing is not limited, and great patterns can be used freely regardless of world exploration and looting progress.
Parsing is not limited.
Entry | Type | Description |
---|---|---|
parseCommentsAndIndents | bool |
Whether to enable comment iotas (as comments and tabs) |
parserBaseCost | int |
Base cost for each iota (except comments/tabs) |
showColorfulNested | bool |
Whether to colorize nested list (and intro/retros in 1.20) |
CommentIota
displays string inside, and parses into a null iota (with id: "hexparse:comment"
) which executes doing
nothing.
Comment iotas includes text comments, line-breaks & indents, and unknown great spell placeholders.
When player holds Shift
key, all comments will be hidden.
- more complex tokenizer to replace simple regex queues
- legal number pattern generator