AquaShell documentation
AquaShell is an extendable scripting shell for Windows using dnyScriptInterpreter. The shell can be used either in interactive mode or just as a host for running DNYS script files. The functionality of the shell can be extended via native DLL plugins. It is best suited for automation tasks as well as complex script development.
# Example script code
# Demonstrate recursive function calls
const MAX_COUNT int <= 10;
function recursive void(count int)
{
if (%count, -ls, %MAX_COUNT) {
++ count;
print "Count value: %count";
call recursive(%count) => void;
};
};
call recursive(0) => void;
print "Done.";
pause;
__ALL__
to load all available plugins.Script files can be executed by running
dnyAquaShell.exe "path/to/a/script.dnys" [opt:args]
Arguments are optional, but can be provided if required.
dnyAquaShell.exe "path/to/a/script.dnys" "A string with multiple words" 1234 false true 5.23
In the context of a script, you can access the actual expressions as well as the argument count as follows:
%argc: Amount of arguments
%argv[num]: Actual argument expression
If you have added the shell path to your environment PATH variable, then you can also perform actions from any directory as follows:
aquashell [args]
The following command line arguments exist:
-path user | machine: Adds the shell path to your PATH environment variable, either for current user or local machine |
You can run them via
dnyAquaShell.exe -[cmd] [opt:args]
Plugins must be written in compatibility with the shell application.
A plugin needs to export the functions dnyAS_PluginLoad
and dnyAS_PluginUnload
.
bool dnyAS_PluginLoad(dnyVersionInfo version, IShellPluginAPI* pInterfaceData, plugininfo_s* pPluginInfos);
void dnyAS_PluginUnload(void);
The dnyAS_PluginLoad
function is called when the plugin gets loaded. The function recieves the current shell interface version, a pointer to the plugin API class instance and a pointer to a plugin information structure where the plugin stores its information data. The function must return true on success, otherwise it must return false.
IShellPluginAPI* g_pShellPluginAPI;
//Example void-command interface
class IExampleVoidCommandInterface : public IVoidCommandInterface {
public:
IExampleVoidCommandInterface() {}
virtual bool CommandCallback(void* pCodeContext, void* pInterfaceObject)
{
ICodeContext* pContext = (ICodeContext*)pCodeContext;
//Replace all possible variables with their expressions that are used in the command context
pCodeContext->ReplaceAllVariables(pInterfaceObject);
//Print the first string-argument of the command
std::wcout << pContext->GetPartString(1) << std::endl;
//Return true to indicate that the command executed successfully.
//Returning false will cause the shell to stop script execution and show an error
return true;
}
} g_oExampleVoidCommand;
//Example result-type-command interface
class IExampleResultCommandInterface : public IResultCommandInterface<dnyFloat> {
public:
IExampleResultCommandInterface() {}
virtual bool CommandCallback(void* pCodeContext, void* pInterfaceObject)
{
ICodeContext* pContext = (ICodeContext*)pCodeContext;
//Replace all possible variables with their expressions that are used in the command context
pCodeContext->ReplaceAllVariables(pInterfaceObject);
//Access the first float-argument, multiplicate it by two, and then store it into the passed result variable of type float
IResultCommandInterface<dnyFloat>::SetResult(pContext->GetPartFloat(1) * 2);
//Return true to indicate that the command executed successfully.
//Returning false will cause the shell to stop script execution and show an error
return true;
}
} g_oExampleResultCommand;
plugininfo_s g_sPluginInfos = {
L"Plugin name",
L"1.0",
L"Author name",
L"Contact info",
L"Plugin description"
};
bool dnyAS_PluginLoad(dnyVersionInfo version, IShellPluginAPI* pInterfaceData, plugininfo_s* pPluginInfos)
{
//Called when plugin gets loaded
if ((!pInterfaceData) || (!pPluginInfos))
return false;
//Check version
if (version != DNY_AS_PRODUCT_VERSION_W) {
return false;
}
//Store interface pointer
g_pShellPluginAPI = pInterfaceData;
//Store plugin infos
memcpy(pPluginInfos, &g_sPluginInfos, sizeof(plugininfo_s));
//Register example commands
g_pShellPluginAPI->Cmd_RegisterCommand(L"mycommand", &g_oExampleVoidCommand, CT_VOID);
g_pShellPluginAPI->Cmd_RegisterCommand(L"mycommand2", &g_oExampleResultCommand, CT_FLOAT);
return true;
}
When the plugin is available, the example commands would be used as follows:
# Example of using mycommand
mycommand "This will be printed";
# Example of using mycommand2
global fResultVar float;
mycommand2 50 fResultVar; # fResultVar will then contain 100.0
The dnyAS_PluginUnload
function is called when the plugin gets unloaded. Use it to free all resources, clean up memory, etc.
void dnyAS_PluginUnload(void)
{
//Called when plugin gets unloaded
g_pShellPluginAPI->Cmd_UnregisterCommand(L"mycommand");
g_pShellPluginAPI->Cmd_UnregisterCommand(L"mycommand2");
}
Please refer to the demo plugin sourcecode in order to view a full documented example.