Workbench Plugin – Arma Reforger
Lou Montana (talk | contribs) m (Text replacement - "<syntaxhighlight lang="C#">" to "<enforce>") |
Lou Montana (talk | contribs) m (Text replacement - "</syntaxhighlight>" to "</enforce>") |
||
Line 37: | Line 37: | ||
<enforce> | <enforce> | ||
WorkbenchPluginAttribute(string name, string description = "", string shortcut = "", string icon = "", array<string> wbModules = null, string category = "", int awesomeFontCode = 0) | WorkbenchPluginAttribute(string name, string description = "", string shortcut = "", string icon = "", array<string> wbModules = null, string category = "", int awesomeFontCode = 0) | ||
</ | </enforce> | ||
* name is mandatory: it is the plugin's display name | * name is mandatory: it is the plugin's display name | ||
Line 66: | Line 66: | ||
<enforce> | <enforce> | ||
ModuleType moduleType = Workbench.GetModule(ModuleType); | ModuleType moduleType = Workbench.GetModule(ModuleType); | ||
</ | </enforce> | ||
Where {{hl|ModuleType}} can be one of the following classes, all children of the {{hl|WBModuleDef}} class): | Where {{hl|ModuleType}} can be one of the following classes, all children of the {{hl|WBModuleDef}} class): | ||
Line 105: | Line 105: | ||
} | } | ||
} | } | ||
</ | </enforce> | ||
In the below code, the {{hl|GetCurrentLine}} method is used to get the cursor location's line number. The {{hl|GetLineText}}/{{hl|SetLineText}} methods is used to obtain and change the line's value by adding an inline comment indicating the current line number ("hardcoded" into the comment). | In the below code, the {{hl|GetCurrentLine}} method is used to get the cursor location's line number. The {{hl|GetLineText}}/{{hl|SetLineText}} methods is used to obtain and change the line's value by adding an inline comment indicating the current line number ("hardcoded" into the comment). | ||
Line 123: | Line 123: | ||
} | } | ||
} | } | ||
</ | </enforce> | ||
{{Feature|important|Every operation goes into one Ctrl+Z '''each''', making reverting a multi-line text operation successive Ctrl+Zs.}} | {{Feature|important|Every operation goes into one Ctrl+Z '''each''', making reverting a multi-line text operation successive Ctrl+Zs.}} | ||
Line 167: | Line 167: | ||
} | } | ||
} | } | ||
</ | </enforce> | ||
{{Feature|informative| | {{Feature|informative| | ||
Line 178: | Line 178: | ||
<enforce> | <enforce> | ||
ButtonAttribute(string label = "ScriptButton", bool focused = false) | ButtonAttribute(string label = "ScriptButton", bool focused = false) | ||
</ | </enforce> | ||
A button method's return type can be anything, but the value will be treated as a boolean int (1 = true, 0 = false). A {{hl|void}} method will return 0. An empty string result will convert as a 1. | A button method's return type can be anything, but the value will be treated as a boolean int (1 = true, 0 = false). A {{hl|void}} method will return 0. An empty string result will convert as a 1. | ||
Line 187: | Line 187: | ||
return 42; // Workbench.ScriptDialog will return 1/true | return 42; // Workbench.ScriptDialog will return 1/true | ||
} | } | ||
</ | </enforce> | ||
The {{hl|Workbench.ScriptDialog}}'s return value can then be used to know if the user confirmed or cancelled an interface. | The {{hl|Workbench.ScriptDialog}}'s return value can then be used to know if the user confirmed or cancelled an interface. | ||
Revision as of 19:18, 30 July 2022
Workbench Plugins are script files that can be triggered from within any editor (Resource Browser, World Editor, Script Editor, etc).
Existing plugins are listed in scripts > WorkbenchGame and are sorted by directories.
Editor | Directory |
---|---|
Common Plugins | Editor |
Resource Manager | ResourceManager |
String Editor | LocalizationEditor |
Script Editor | ScriptEditor |
World Editor | WorldEditor |
A Plugin must be named ClassnamePlugin, and its file too.
A Tool must be named ClassnameTool, and its file too.
Anatomy
Type
Plugin
A plugin inherits from WorkbenchPlugin and is decorated with a WorkbenchPluginAttribute attribute which signature is as follow:
- name is mandatory: it is the plugin's display name
- description
- shortcut: none (empty string) can be defined, the plugin will then need to be triggered from the Plugin top menu
- icon
- wbModules: to which editors does this plugin apply (e.g wbModules = { "ScriptEditor" })
- category: the plugins menu entry in which this plugin will find itself (e.g Plugins > Text > TutorialPlugin)
- awesomeFontCode: the FontAwesome icon associated with the plugin (see FontAwesome's Cheatsheet)
A plugin must also override either or both Run or RunCommandLine methods in order to have an impact. It can also, but is not mandatory, override the Configure method to display a settings entry.
Tool
A tool is a system that allows for direct manipulation with a config panel available on the side.
A tool inherits from the editor-related class (e.g World Editor: WorldEditorTool) in order to be found in said editor's Tools menu.
It is decorated with a WorkbenchToolAttribute attribute which signature is identical to WorkbenchPluginAttribute (see above).
Scripting
A plugin has access to the currently loaded game/project resources, but in order to be as adaptable as possible it should also be generic.
Each Workbench module (editor) API can be accessed through the following script:
Where ModuleType can be one of the following classes, all children of the WBModuleDef class):
Editor | Class |
---|---|
Resource Manager | ResourceManager |
String Editor | LocalizationEditor |
Script Editor | ScriptEditor |
World Editor | WorldEditor |
Each module has obviously a different API. This tutorial will work with the Script Editor.
Create a Plugin
Run Method
The following is a very basic plugin that does nothing but print "It works!" in the debug console on trigger. It is linked to the Ctrl + ⇧ Shift + H keyboard shortcut, and applies only to "ScriptEditor" Workbench module (a.k.a Script Editor).
In the below code, the GetCurrentLine method is used to get the cursor location's line number. The GetLineText/SetLineText methods is used to obtain and change the line's value by adding an inline comment indicating the current line number ("hardcoded" into the comment).
Configure Method
The Configure method is the one called when clicking Plugins > Settings > Plugin Name. If this method is not overriden with a non-empty code, the option does not appear in this menu.
Dialog
Setup
The Workbench.ScriptDialog methods allows for displaying UI dialogs for the user to confirm an action or set values. It can be used in any method (e.g not only Configure).
Displayed parameters are declared values decorated with an Attribute; a full setup is done as follow:
Buttons
A button method is decorated with a ButtonAttribute attribute which signature is as follow:
A button method's return type can be anything, but the value will be treated as a boolean int (1 = true, 0 = false). A void method will return 0. An empty string result will convert as a 1.
The Workbench.ScriptDialog's return value can then be used to know if the user confirmed or cancelled an interface.