Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sandbox_unix(6) [debian man page]

SANDBOX_UNIX(6) 						   Games Manual 						   SANDBOX_UNIX(6)

NAME
sandbox_unix - Launcher Script for Platinum Arts Sandbox Game Maker SYNOPSIS
sandbox_unix [options] DESCRIPTION
This manual page documents briefly the sandbox_unix command. sandboxgamemaker is a program that allows collaborative creation of video games. Please see http://sandboxgamemaker.com for further infor- mation. SCRIPT OPTIONS
To add a command line option type (-) followed by the argument with no spaces. -h|-?|-help|--help show this help message -g<string> set gamemode to <string> (default: fps) available modes: ssp, fps, rpg, movie, krs --server launch dedicated server binary instead --launcher start the graphical launcher GUI instead --master launch a masterserver for server registration NOTE: compiled masterserver not included CLIENT OPTIONS
To add a command line option type (-) followed by the argument with no spaces. -q<string> use <string> as the home directory (default: ~/.platinumarts) -k<string> mounts <string> as a package directory -r<string> executes <string> before launching, use instead of arguments such as -t, -a, -h, etc -t<num> sets fullscreen to <num> -d<num> runs a dedicated server (0), or a listen server (1) -w<num> sets window width, height is set to width * 3 / 4 unless also provided -h<num> sets window height, width is set to height * 4 / 3 unless also provided -z<num> sets depth (z) buffer bits (do not touch) -b<num> sets colour bits (usually 32 bit) -a<num> sets anti aliasing to <num> -v<num> sets vsync to <num> -- -1 for auto -t<num> sets fullscreen to <num> -s<num> sets stencil buffer bits to <num> (do not touch) -f<num> turns of shaders (0), or sets shader precision to <num> - 1 (1-3) -l<string> loads map <string> after initialisation -x<string> executes script <string> after initialisation SERVER OPTIONS
To add a command line option type (-) followed by the argument with no spaces. -u<num> sets the upload rate to <num> -c<num> sets the maximum amount of clients (max: 127 humans) -i<string> sets the server's ip address (use with caution) -j<num> sets the port to use for server connections -m<string> sets the masterserver's URL to <string> -q<string> use <string> as the home directory (default: ~/.platinumarts) -k<string> mounts <string> as a package directory SEE ALSO
/usr/share/doc/sandboxgamemaker/ AUTHOR
Sandbox Game Maker was written by: Platinum Arts, LLC <PlatinumArts@gmail.com> sandbox_unix by Kevin "Hirato Kirata" Meyer (c) 2008-2010 - zlib/libpng licensed This manual page was written by Scott Howard <showard314@gmail.com>, for the Debian project (and may be used by others). March 6, 2010 SANDBOX_UNIX(6)

Check Out this Related Man Page

textutil::tabify(n)				    Text and string utilities, macro processing 			       textutil::tabify(n)

__________________________________________________________________________________________________________________________________________________

NAME
textutil::tabify - Procedures to (un)tabify strings SYNOPSIS
package require Tcl 8.2 package require textutil::tabify ?0.7? ::textutil::tabify::tabify string ?num? ::textutil::tabify::tabify2 string ?num? ::textutil::tabify::untabify string ?num? ::textutil::tabify::untabify2 string ?num? _________________________________________________________________ DESCRIPTION
The package textutil::tabify provides commands that convert between tabulation and ordinary whitespace in strings. The complete set of procedures is described below. ::textutil::tabify::tabify string ?num? Tabify the string by replacing any substring of num space chars by a tabulation and return the result as a new string. num defaults to 8. ::textutil::tabify::tabify2 string ?num? Similar to ::textutil::tabify this command tabifies the string and returns the result as a new string. A different algorithm is used however. Instead of replacing any substring of num spaces this command works more like an editor. num defaults to 8. Each line of the text in string is treated as if there are tabstops every num columns. Only sequences of space characters containing more than one space character and found immediately before a tabstop are replaced with tabs. ::textutil::tabify::untabify string ?num? Untabify the string by replacing any tabulation char by a substring of num space chars and return the result as a new string. num defaults to 8. ::textutil::tabify::untabify2 string ?num? Untabify the string by replacing any tabulation char by a substring of at most num space chars and return the result as a new string. Unlike textutil::tabify::untabify each tab is not replaced by a fixed number of space characters. The command overlays each line in the string with tabstops every num columns instead and replaces tabs with just enough space characters to reach the next tabstop. This is the complement of the actions taken by ::textutil::tabify::tabify2. num defaults to 8. There is one asymmetry though: A tab can be replaced with a single space, but not the other way around. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category textutil of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. SEE ALSO
regexp(n), split(n), string(n) KEYWORDS
formatting, string, tabstops CATEGORY
Text processing textutil 0.7 textutil::tabify(n)
Man Page