|
@@ -11,21 +11,62 @@ TODO:
|
|
## Usage
|
|
## Usage
|
|
|
|
|
|
``` text
|
|
``` text
|
|
-Usage: minilase.exe [OPTIONS] --input <INPUT>
|
|
|
|
|
|
+Usage: minilase.exe [OPTIONS] --input <INPUT> <COMMAND>
|
|
|
|
+
|
|
|
|
+Commands:
|
|
|
|
+ diff Diff two .mlp files and print differences between the two
|
|
|
|
+ query Queries input .mlp file for pen or object info
|
|
|
|
+ apply Applies configuration YAML to input .mlp file
|
|
|
|
+ help Print this message or the help of the given subcommand(s)
|
|
|
|
+
|
|
|
|
+Options:
|
|
|
|
+ -i, --input <INPUT> Input .mlp file to parse
|
|
|
|
+ -v, --verbose... Increase logging verbosity
|
|
|
|
+ -q, --quiet... Decrease logging verbosity
|
|
|
|
+ -h, --help Print help
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+### Sub-Commands
|
|
|
|
+
|
|
|
|
+Diff two .mlp files and print differences between the two
|
|
|
|
+
|
|
|
|
+``` text
|
|
|
|
+Usage: minilase.exe --input <INPUT> diff [OPTIONS] --diff-file <DIFF_FILE>
|
|
|
|
+
|
|
|
|
+Options:
|
|
|
|
+ -d, --diff-file <DIFF_FILE> File to diff input against
|
|
|
|
+ -v, --verbose... Increase logging verbosity
|
|
|
|
+ -q, --quiet... Decrease logging verbosity
|
|
|
|
+ -h, --help Print help
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+Queries input .mlp file for pen or object info
|
|
|
|
+
|
|
|
|
+``` text
|
|
|
|
+Usage: minilase.exe --input <INPUT> query [OPTIONS]
|
|
|
|
|
|
Options:
|
|
Options:
|
|
- -i, --input <INPUT> Input file to parse
|
|
|
|
- -d, --diff <DIFF> File to diff input against
|
|
|
|
- -o, --output <OUTPUT> Output file to write to
|
|
|
|
- -c, --config <CONFIG> Configuration file
|
|
|
|
- -p, --pen <PEN> Print pen info
|
|
|
|
- -l, --object-layer <OBJECT_LAYER> Layer of object to print info
|
|
|
|
- -b, --object <OBJECT> Print object info
|
|
|
|
|
|
+ -p, --pen <PEN> Print info for pens
|
|
|
|
+ -o, --object <OBJECT> Print info for objects
|
|
|
|
+ -b, --object-layer <OBJECT_LAYER> Object layer to query object on
|
|
-v, --verbose... Increase logging verbosity
|
|
-v, --verbose... Increase logging verbosity
|
|
-q, --quiet... Decrease logging verbosity
|
|
-q, --quiet... Decrease logging verbosity
|
|
-h, --help Print help
|
|
-h, --help Print help
|
|
```
|
|
```
|
|
|
|
|
|
|
|
+Applies configuration YAML to input .mlp file
|
|
|
|
+
|
|
|
|
+``` text
|
|
|
|
+Usage: minilase.exe --input <INPUT> apply [OPTIONS] --config <CONFIG>
|
|
|
|
+
|
|
|
|
+Options:
|
|
|
|
+ -c, --config <CONFIG> Configuration file
|
|
|
|
+ -o, --output <OUTPUT> Output file to write to
|
|
|
|
+ -v, --verbose... Increase logging verbosity
|
|
|
|
+ -q, --quiet... Decrease logging verbosity
|
|
|
|
+ -h, --help Print help
|
|
|
|
+```
|
|
|
|
+
|
|
## Configuration File
|
|
## Configuration File
|
|
|
|
|
|
Operations defined in the configuration file are applied in order of definition.
|
|
Operations defined in the configuration file are applied in order of definition.
|