Programmer Guide/General Descriptions/Shell Environment: Difference between revisions
Line 47: | Line 47: | ||
The value returned by the previous macro. See [[Programmer_Guide/General_Descriptions/Return_Codes#RESULT|Macro Results]] for details. | The value returned by the previous macro. See [[Programmer_Guide/General_Descriptions/Return_Codes#RESULT|Macro Results]] for details. | ||
== <var>SCRIPTDIRECTORY</var> == | |||
The shell variable <code>SCRIPTDIRECTORY</code> is available when an {{STX}} script (*.sts) is running. It contains the directory path where the running script file is. | |||
== <var>SCRIPTFILEPATH</var> == | |||
The shell variable <code>SCRIPTFILEPATH</code> is available when an {{STX}} script (*.sts) is running. It contains the name of the name of the running script file including the path. | |||
==<var>SCRIPTMAINNAME</var> == | |||
The variable <code> | The shell variable <code>SCRIPTMAINNAME</code> is available when an {{STX}} script (*.sts) is running. It contains the name of the running macro. | ||
== <var>SCRIPTREVISION</var> == | |||
The shell variable <code>SCRIPTREVISION</code> contains the Subversion repository revision number of the {{STX}} version used to create the current script. For scripts created before r751, this variable is set to 0. | |||
The value returned by the system when the command <code>SYSTEM</code> | == <var>SHELL</var> == | ||
The variable <code>SHELL</code> is generated during the startup code execution of the shell called via the command [[Programmer_Guide/Command_Reference/SHELL|<code>SHELL</code>]]. Its format is <code><var>thisshellid</var> <var>callershellid</var></code>, <var>callershellid</var> being the ID of the calling shell, and <var>thisshellid</var> being the ID of the new shell. The one exception is the master shell (the first one to be started (automatically) during program initialization) which only stores its own id in <var>SHELL</var>. | |||
== <var>STXREVISION</var> == | |||
The shell variable <code>STXREVISION</code> contains the Subversion repository revision number of the running {{STX}} version. | |||
== <var>XRC</var>, the system return code == | |||
The value returned by the operating system when the command [[Programmer_Guide/Command_Reference/SYSTEM|<code>SYSTEM</code>]] has been called. | |||
[[Category:Programmer Guide]][[Category:General Descriptions]] | [[Category:Programmer Guide]][[Category:General Descriptions]] |
Revision as of 18:47, 28 April 2014
Variables which do not begin with @
, #
or &
(i.e. all variables beginning with an alphanumeric character) are so-called shell environment variables.
Contents
- 1 APPMODE, the application run-mode
- 2 APPNAME, the application name
- 3 CSF, the name of the current soundfile
- 4 CSFH, properties of the current soundfile
- 5 EMSG, the current error message string
- 6 PARENT, the parent window
- 7 RC, the return code
- 8 RESULT, the macro result
- 9 SCRIPTDIRECTORY
- 10 SCRIPTFILEPATH
- 11 SCRIPTMAINNAME
- 12 SCRIPTREVISION
- 13 SHELL
- 14 STXREVISION
- 15 XRC, the system return code
APPMODE, the application run-mode
The shell variable APPMODE
indicates the current mode the application APPMAIN
is in. A value of 0
indicates that APPNAME
is inactive or finished; a value of 1
indicates that APPNAME
is currently active..
APPNAME, the application name
The shell variable APPNAME
is defined in the registration entry in the configuration files. To start the shell application defined and registered in the configuration files, the macro APPMAIN
is used. Before calling the application's main macro (called: RUNappname), APPMAIN
assigns the application name to the variable APPNAME
and sets the application mode APPMODE
to active (1
). The variable APPMODE
is used by the macro GETMESSAGE
to check the application mode. If APPMODE
is set to 0
(e.g. in a message handler) GETMESSAGE
stops receiving messages and returns the value * * * *
.
Applications started via APPMAIN
must never use EXIT 0
to terminate the shell. They must return to APPMAIN
(using a normal EXIT 1
command from the main macro) which performs some clean-up functions before the shell is terminated.
CSF, the name of the current soundfile
The name (full path) of the current, i.e. active soundfile is assigned to the variable CSF when a LOAD
(open) or UNLOAD
(close) command is executed. If CSF is not set (i.e. empty), no soundfile is active.
CSFH, properties of the current soundfile
CSFH = srate channels samples code type mode
The parameters of the current/active soundfile are assigned to the variable CSFH
when a LOAD
(open) or UNLOAD
(close) command is executed.
EMSG, the current error message string
If an error occurs, the textual description corresponding to the return code RC is stored in EMSG.
Note that you can use the command EMSG
to retrieve a description of an error code.
PARENT, the parent window
PARENT = windowitemname
The variable PARENT
is used by the window-management functions (e.g. in GETMESSAGE
or by DOMODALDIALOG
) to identify the parent (main) window of an application. In each application the name of the item (of type display or dialog) used as main window should be assigned to this variable (directly after creation). If PARENT is not set, some functions or user interactions will not work correctly (e.g. minimize/restore).
Special processing applied to the main window:
- The main-window item's close message is translated by
GETMESSAGE
into the messageSHELL thisshell EXIT
. - If the application is minimized, the main window is displayed in the taskbar while all other window are set to invisible. On restore, all windows are restored to their last status/position.
RC, the return code
The return code of the last executed command. See Command Return Codes for details.
RESULT, the macro result
The value returned by the previous macro. See Macro Results for details.
SCRIPTDIRECTORY
The shell variable SCRIPTDIRECTORY
is available when an STx script (*.sts) is running. It contains the directory path where the running script file is.
SCRIPTFILEPATH
The shell variable SCRIPTFILEPATH
is available when an STx script (*.sts) is running. It contains the name of the name of the running script file including the path.
SCRIPTMAINNAME
The shell variable SCRIPTMAINNAME
is available when an STx script (*.sts) is running. It contains the name of the running macro.
SCRIPTREVISION
The shell variable SCRIPTREVISION
contains the Subversion repository revision number of the STx version used to create the current script. For scripts created before r751, this variable is set to 0.
SHELL
The variable SHELL
is generated during the startup code execution of the shell called via the command SHELL
. Its format is thisshellid callershellid
, callershellid being the ID of the calling shell, and thisshellid being the ID of the new shell. The one exception is the master shell (the first one to be started (automatically) during program initialization) which only stores its own id in SHELL.
STXREVISION
The shell variable STXREVISION
contains the Subversion repository revision number of the running STx version.
XRC, the system return code
The value returned by the operating system when the command SYSTEM
has been called.