S2PLOT:Environment Variables
From S2PLOT
(Difference between revisions)
Revision as of 03:38, 10 March 2008 S2plot admin (Talk | contribs) (→Optional (runtime-related)) ← Previous diff |
Current revision S2plot admin (Talk | contribs) (→Optional (runtime-related)) |
||
Line 16: | Line 16: | ||
<tt>darwin-gnu-univ</tt>. | <tt>darwin-gnu-univ</tt>. | ||
* Darwin users with Intel architecture should generally choose <tt>darwin-gnu-i386</tt> over <tt>darwin-gnu-univ</tt>. | * Darwin users with Intel architecture should generally choose <tt>darwin-gnu-i386</tt> over <tt>darwin-gnu-univ</tt>. | ||
- | * Windows users must install Cygwin to use S2PLOT. | ||
* See [[S2PLOT:Builds | here]] for more information on tested build environments. | * See [[S2PLOT:Builds | here]] for more information on tested build environments. | ||
</td></tr> | </td></tr> | ||
Line 31: | Line 30: | ||
* Mac OS X: /usr/X11R6 (ie. installed with Apple X) | * Mac OS X: /usr/X11R6 (ie. installed with Apple X) | ||
* Linux: /usr | * Linux: /usr | ||
- | * Cygwin: /usr | ||
If you have freetype2 installed somewhere else you may need to modify your s2plot.csh or ${S2ARCH}.in file. | If you have freetype2 installed somewhere else you may need to modify your s2plot.csh or ${S2ARCH}.in file. | ||
</td></tr> | </td></tr> | ||
<tr><td valign=top>S2MESHLIB</td><td>Only set this if recommended by your MirrorDome supplier.</td></tr> | <tr><td valign=top>S2MESHLIB</td><td>Only set this if recommended by your MirrorDome supplier.</td></tr> | ||
+ | <tr><td valign=top>S2EXTRAINC</td><td>Additional compiler flags for <tt>cbuild.csh</tt> and <tt>ccbuild.csh</tt> scripts, typically used to provide additional include paths for compiling S2PLOT programs.</td></tr> | ||
+ | <tr><td valign=top>S2EXTRALIB</td><td>Additional flags for <tt>cbuild.csh</tt> and <tt>ccbuild.csh</tt> scripts typically used to provide additional library search paths and libraries for linking S2PLOT programs | ||
+ | </td></tr> | ||
</table> | </table> | ||
Line 43: | Line 44: | ||
<tr><td width=15% valign=top>S2PLOT_WIDTH</td><td> Provide initial width (in pixels) of S2PLOT display windows. If not given, width is by default 800 pixels.</td><tr> | <tr><td width=15% valign=top>S2PLOT_WIDTH</td><td> Provide initial width (in pixels) of S2PLOT display windows. If not given, width is by default 800 pixels.</td><tr> | ||
<tr><td valign=top>S2PLOT_HEIGHT</td><td>Provide initial height (in pixels) of S2PLOT display windows. If not given, height is by default 3/4 of width.</td></tr> | <tr><td valign=top>S2PLOT_HEIGHT</td><td>Provide initial height (in pixels) of S2PLOT display windows. If not given, height is by default 3/4 of width.</td></tr> | ||
+ | <tr><td valign=top>S2PLOT_ESCQUIT</td><td>If set, S2PLOT programs can be quit by hitting the ESC key alone, without requiring Shift-ESC.</td></tr> | ||
<tr><td valign=top>S2PLOT_DEV</td><td>Set this to choose your default S2PLOT output device. Only relevant when programs specify an empty device string, or prompt on the terminal for the device choice.</td></tr> | <tr><td valign=top>S2PLOT_DEV</td><td>Set this to choose your default S2PLOT output device. Only relevant when programs specify an empty device string, or prompt on the terminal for the device choice.</td></tr> | ||
<tr><td valign=top>S2PLOT_TEXPATH</td><td>Set this to provide an "external" path to texture files, | <tr><td valign=top>S2PLOT_TEXPATH</td><td>Set this to provide an "external" path to texture files, | ||
Line 93: | Line 95: | ||
S2PLOT_INTERSCANATI</td><td>If you are using /s2inter mode on an ATI graphics card on darwin (and possibly linux), you must set this environment variable (to anything): this enables a workaround for a defect in the ATI OpenGL driver code for anti-aliasing. | S2PLOT_INTERSCANATI</td><td>If you are using /s2inter mode on an ATI graphics card on darwin (and possibly linux), you must set this environment variable (to anything): this enables a workaround for a defect in the ATI OpenGL driver code for anti-aliasing. | ||
</td></tr> | </td></tr> | ||
+ | <tr><td valign=top> | ||
+ | S2PLOT_REMOTEPORT</td><td>If set, then S2PLOT will listen on the provided port number for remote control commands. The text strings received can be processed by S2PLOT, and/or forwarded to the callback registered with [[Function:s2srcb | s2srcb]].</td></tr> | ||
+ | <tr><td valign=top> | ||
+ | S2PLOT_PRCDRIVER</td><td>If set, then S2PLOT will search for a loadable module called <tt>${S2PLOT_PRCDRIVER}.so</tt> (in <tt>$S2PATH/$S2ARCH</tt>) at runtime when the user requests PRC output (typically by pressing Shift-P in an interactive S2PLOT session). The S2PLOT PRC driver module is distributed and built separately to S2PLOT.</td></tr> |
Current revision
Contents |
Environment Variables
This is intended to be a comprehensive list of all the environment variables in S2PLOT as well as a description of how they are used. For the relevant version of the environment variables for your S2PLOT installation, see the ENVIRONMENT.TXT file that came with the distribution.
Required (Build-related)
S2PATH | Full path to S2PLOT directory |
Recommended (Build-related)
S2ARCH | Operating system, compiler and architecture specification for compiling and linking S2PLOT programs. Valid options are as follows. If not set, s2plot.csh attempts to figure out S2ARCH, but may fail to do so. See installation notes for recommended values for each operating system.
darwin-gnu-univ.
|
S2SHARED | Set to "no" or "yes" to indicate preference for static or dynamic linking of binaries. |
Optional (build-related)
S2FREEGLUT | Set to "no" or "yes" to choose whether the re-entrant s2disp function will be used on Linux systems that use the freeglut library. NB. only works on Linux systems with freeglut version >= 2.2.0. |
S2FREETYPE | Set to "no" or "yes" to choose whether the freetype2 extensions will be linked in with programs.
Freetype2 is assumed to be installed in the following base directories:
If you have freetype2 installed somewhere else you may need to modify your s2plot.csh or ${S2ARCH}.in file. |
S2MESHLIB | Only set this if recommended by your MirrorDome supplier. |
S2EXTRAINC | Additional compiler flags for cbuild.csh and ccbuild.csh scripts, typically used to provide additional include paths for compiling S2PLOT programs. |
S2EXTRALIB | Additional flags for cbuild.csh and ccbuild.csh scripts typically used to provide additional library search paths and libraries for linking S2PLOT programs |
Optional (runtime-related)
S2PLOT_WIDTH | Provide initial width (in pixels) of S2PLOT display windows. If not given, width is by default 800 pixels. |
S2PLOT_HEIGHT | Provide initial height (in pixels) of S2PLOT display windows. If not given, height is by default 3/4 of width. |
S2PLOT_ESCQUIT | If set, S2PLOT programs can be quit by hitting the ESC key alone, without requiring Shift-ESC. |
S2PLOT_DEV | Set this to choose your default S2PLOT output device. Only relevant when programs specify an empty device string, or prompt on the terminal for the device choice. |
S2PLOT_TEXPATH | Set this to provide an "external" path to texture files,
colourmap files and LaTeX template files. When using textures / colormaps / LaTeX templates in S2PLOT, the following strategy is used to find named files:
|
S2PLOT_LATEXBIN | Set this to the fully-qualified path of the LaTeX binary (latex) if you want to use LaTeX features in S2PLOT. If your latex binary is in a standard path location, eg. /usr/bin, then this environment variable can be left unset. |
S2PLOT_DVIPNGBIN | Set this to the fully-qualified path of the DVI to PNG conversion binary (dvipng) if you want to use LaTeX features in S2PLOT. If your dvipng binary is in a standard path location, eg. /usr/bin, then this environment variable can be left unset. |
S2PLOT_IMPATH | Set this to the path containing your ImageMagick binaries. Without this setting, texturise script/s and LaTeX support may fail silently. |
S2PLOT_FADETIME | Set this to control the fade-in and fade-out time (in seconds) of S2PLOT programs. The default is to fade-in and fade-out over approximately 0.2 seconds. |
S2PLOT_RUNTIME | If set, S2PLOT programs will be forcibly quit after this period in seconds. The S2PLOT_RUNTIME period *does not* include the S2PLOT_FADETIME period at start and end of the program. |
S2PLOT_EVENTFILE | If set, this is the name of a file containing events that are pushed into the S2PLOT event stream. Currently only simple (ASCII code) keypresses are supported. Zero time commences at the end of the fade-in time. |
S2PLOT_X1 S2PLOT_X2 S2PLOT_Y1 S2PLOT_Y2 | In range [0,1], these environment variables can be used to constrain the area of screen used for S2PLOT graphics. Typically these would be used in concert with S2PLOT_BGIMG to provide a full-screen background image, eg. from Powerpoint, then draw S2PLOT graphics in only a particular region. |
S2PLOT_BGIMG | Filename of a background image to use instead of clearing the screen. |
S2PLOT_INTERSCANBUMP | If scan-line interleaved stereo is being used, bump the first line down the screen by one row, thus flipping the left and right lines in the display. Only useful when fullscreen windows are being created, or windows are known to be created at a particular position on the screen. |
S2PLOT_INTERSCANATI | If you are using /s2inter mode on an ATI graphics card on darwin (and possibly linux), you must set this environment variable (to anything): this enables a workaround for a defect in the ATI OpenGL driver code for anti-aliasing. |
S2PLOT_REMOTEPORT | If set, then S2PLOT will listen on the provided port number for remote control commands. The text strings received can be processed by S2PLOT, and/or forwarded to the callback registered with s2srcb. |
S2PLOT_PRCDRIVER | If set, then S2PLOT will search for a loadable module called ${S2PLOT_PRCDRIVER}.so (in $S2PATH/$S2ARCH) at runtime when the user requests PRC output (typically by pressing Shift-P in an interactive S2PLOT session). The S2PLOT PRC driver module is distributed and built separately to S2PLOT. |