-
Notifications
You must be signed in to change notification settings - Fork 9
System
static void System.Log(LogLevel level, const string format, ...)
Prints the message string in format
to the log, with the defined LogLevel, to the group script
.
Example:
System.Log(eLogInfo, "Entering the Room %d", player.Room);
Compatibility: Supported by AGS 3.6.0 and later versions.
See also: The run-time engine, LogLevel Enum
static void System.SaveConfigToFile()
Writes current engine settings to the player's configuration file, so that they may be applied next time the game is launched.
This saves only the options that may be changed at runtime, such as translation and fullscreen/windowed graphic mode.
Compatibility: Supported by AGS 3.5.1 and later versions.
See also: File.Open
readonly static int System.AudioChannelCount;
Gets the number of Audio Channels available to the game (in the current version of AGS this is 16).
This is useful if you want to loop through all the audio channels and check what is playing on them.
Example:
Display("There are %d audio channels.", System.AudioChannelCount);
will display a message with the number of audio channels.
Compatibility: Supported by AGS 3.2.0 and later versions.
See also: System.AudioChannels
readonly static AudioChannel* System.AudioChannels[];
Gets the AudioChannel instance for the specified channel number. This allows you to query the audio channel and find out what is playing on it.
Example:
AudioChannel *channel = System.AudioChannels[2];
Display("Channel 2's current volume is %d.", channel.Volume);
will display a message with Audio Channel 2's current volume.
Compatibility: Supported by AGS 3.2.0 and later versions.
See also: AudioChannel
,
System.AudioChannelCount
readonly static bool System.CapsLock;
Gets whether Caps Lock is active on the player's system.
You might want to use this to warn the player to switch it off before typing a password in, for example.
Example:
if (System.CapsLock)
{
Display("The CAPS LOCK light is on.");
}
will display a message if Caps Lock is on.
Compatibility: Supported by AGS 3.0.1 and later versions.
See also: System.NumLock
,
System.ScrollLock
(Formerly known as system.color_depth
, which is now obsolete)
readonly static int System.ColorDepth;
Returns the native game's color depth. This is the overall game color depth setting, and it is possible for individual sprites or backgrounds to be different (although not recommended).
NOTE: Be aware that for historical reasons, and similar to System.ScreenHeight
and System.ScreenWidth
, this is NOT the final color depth of a display mode, but the internal color depth of a game. For instance, a game may have a 8-bit or 16-bit native color depth, but be displayed in a 32-bit mode.
The native color depth may be useful to know, for example, when you are writing a script module performing raw drawing: then you'd know which ranges of colors will work.
Example:
Display("Game's native resolution is: %d x %d, %d-bit color", System.ScreenWidth,
System.ScreenHeight, System.ColorDepth);
will display the game's native resolution and color depth.
See also: System.ScreenHeight
,
System.ScreenWidth
static int System.Gamma;
Gets/sets the current screen Gamma level. This is 100 by default, and you can set it anywhere from 0 (pitch black) to 200 (double normal brightness).
System.SupportsGammaControl
must return true in order for this property to have any effect.
Because every player's monitor will be different, you should normally use this property linked to a GUI Slider in order to allow the player to adjust it to suit their system.
Example:
if (System.SupportsGammaControl) {
System.Gamma = 150;
}
will turn the screen brightness up to 50%
higher than normal
See also:
System.SupportsGammaControl
readonly static bool System.HardwareAcceleration;
Returns whether the game is running with hardware acceleration (e.g. Direct3D or OpenGL). If this is the case then changing on-screen images with DrawingSurface functions are likely to be slower, but sprite scaling, transparency and alpha blending effects, as well as just displaying larger sprites, are likely to be faster, than when the non-accelerated driver is used.
Cross-Platform Support
Windows: Direct3D, OpenGL driver
Linux: OpenGL driver
MacOS: OpenGL driver
Android: OpenGL driver
iOS: OpenGL driver
Example:
if (System.HardwareAcceleration) {
Display("Yay, we can draw loads of alpha blended sprites fast!");
}
will display a message if the game is being run with hardware acceleration
See also: AGS Graphics Drivers
readonly static bool System.HasInputFocus;
Tells whether the game window currently has input focus, meaning it is active and player can control the game.
If your game is made to continue running in the background, when the user switches out from game, you may use this property in scripts to know if that actually happened.
Examples:
if (!System.HasInputFocus)
return;
skips the rest of the function if player has switched out from the game.
function repeatedly_execute()
{
if (!System.HasInputFocus && IsGamePaused() == 0) {
PauseGame();
} else if (System.HasInputFocus && IsGamePaused() == 1) {
UnPauseGame();
}
}
pauses game when player switches out, and unpauses it when player switches back to game.
Compatibility: Supported by AGS 3.3.5 and later versions.
See also: SetMultitaskingMode
readonly static bool System.NumLock;
Gets whether Num Lock is active on the player's system.
You might want to use this to warn the player to switch it off before using the numeric keypad arrow keys, for example.
Example:
if (System.NumLock)
{
Display("The NUM LOCK light is on.");
}
will display a message if Num Lock is on.
Compatibility: Supported by AGS 3.0.1 and later versions.
See also: System.CapsLock
,
System.ScrollLock
(Formerly known as system.os
, which is now obsolete)
readonly static eOperatingSystem System.OperatingSystem;
Returns which operating system the game is currently running under. It can be one of the following values:
eOSDOS (exists, but no longer supported)
eOSWindows
eOSLinux
eOSMacOS
eOSAndroid
eOSiOS
eOSPSP (exists, but no longer supported)
eOSWeb
eOSFreeBSD
Example:
if (System.OperatingSystem == eOSWindows) {
Display("Running on Windows!");
}
else {
Display("Not running on Windows!");
}
static bool System.RenderAtScreenResolution;
Gets/sets whether sprites are rendered at screen resolution (if it's true) or native game resolution (if it's false).
When your game has low native resolution and player is running it in high display mode (for example 320x200 game being run in 1920x1080), then turning this property on will let engine to take advantage of higher display resolution and draw characters and objects less pixelated when they are scaled up or down (e.g. on walkable area with scaling).
IMPORTANT: unless you have locked this parameter to certain value in your game's General settings, players may also change it in the setup program. In such case it is suggested that you do not unconditionally modify this property in script, but rather provide a menu option for toggling it at runtime.
Compatibility: Supported by AGS 3.4.1 and later versions.
readonly static String System.RuntimeInfo;
Returns the string containing short description of the environment the game is currently running in, such as engine version, graphics mode, and available game resources.
This is meant mainly for debug purposes.
NOTE: System.RuntimeInfo is a more convenient analogue of Debug(1,0) command, being more explicit and working on both release and debug modes of the game.
Example:
function on_key_press(eKeyCode keycode) {
if (keycode == eKeyCtrlV) {
Display(System.RuntimeInfo);
}
}
Compatibility: Supported by AGS 3.4.0 and later versions.
See also: Debug
This property is obsolete since AGS 3.5.0. Use Screen.Height
instead.
(Formerly known as system.screen_height
, which is now obsolete)
readonly static int System.ScreenHeight;
Returns the game's screen height in native coordinates, not accounting for the scaling applied by graphic renderer. Historically it also included a size of the black letterbox borders, making it a confusing parameter.
See also: System.ColorDepth
, Screen.Width
, Screen.Height
,
Viewport.Width
, Viewport.Height
This property is obsolete since AGS 3.5.0. Use Screen.Width
instead.
(Formerly known as system.screen_width
, which is now obsolete)
readonly static int System.ScreenWidth;
Returns the game's screen width in native coordinates, not accounting for the scaling applied by graphic renderer. Historically it also included a size of the black widescreen side borders, making it a confusing parameter.
See also: System.ColorDepth
, Screen.Width
, Screen.Height
,
Viewport.Width
, Viewport.Height
readonly static bool System.ScrollLock;
Gets whether Scroll Lock is active on the player's system.
Note that when running your game under the debugger, the Scroll Lock key will break out of the game into the debugger, so it is not advised that you use it for any other purpose in your game.
Example:
if (System.ScrollLock)
{
Display("The SCROLL LOCK light is on.");
}
will display a message if Scroll Lock is on.
Compatibility: Supported by AGS 3.0.1 and later versions.
See also: System.CapsLock
,
System.NumLock
readonly static bool System.SupportsGammaControl;
Gets whether the player's PC supports changing the screen's gamma control settings.
This must return true before you try and change the
System.Gamma
property. The situations in which
this will be supported are listed below.
Cross-Platform Support
Windows: Full-screen only
Linux: No
MacOS: No
Example:
if (System.SupportsGammaControl) {
Display("We can change the system gamma level!");
}
will display a message if the system supports changing the gamma
See also: System.Gamma
(Formerly known as system.version
, which is now obsolete)
readonly static String System.Version;
Returns the AGS engine version number. This could be useful from within script modules in order to use features available on a particular engine version, or work around any known bugs.
The string returned is the full version number, for example "2.71.833".
Example:
Display("AGS version: %s", System.Version);
will display the AGS version number
This property is obsolete since AGS 3.5.0. Use Screen.Height
instead.
(Formerly known as system.viewport_height
, which is now obsolete)
readonly static int System.ViewportHeight;
Returns the game's screen height in native coordinates, not accounting for the scaling applied by graphic renderer.
Note that before AGS 3.5.0 there was no differentiation between "game's viewport" (as in - full game's screen) and "room viewport", that's why Viewport.Height
is not a direct equivalent.
See also: Screen.Width
, Screen.Height
,
Viewport.Width
, Viewport.Height
This property is obsolete since AGS 3.5.0. Use Screen.Width
instead.
(Formerly known as system.viewport_width
, which is now obsolete)
readonly static int System.ViewportWidth;
Returns the game's screen width in native coordinates, not accounting for the scaling applied by graphic renderer.
Note that before AGS 3.5.0 there was no differentiation between "game's viewport" (as in - full game's screen) and "room viewport", that's why Viewport.Width
is not a direct equivalent.
See also: Screen.Width
, Screen.Height
,
Viewport.Width
, Viewport.Height
(Formerly known as SetDigitalMasterVolume
, which is now obsolete)
(Formerly known as SetMusicMasterVolume
, which is now obsolete)
static int System.Volume;
Gets/sets the overall system volume, from 0 to 100. This is the master volume control, that affects all audio in the game. You would usually attach this to a GUI Slider to enable the player to control the volume from some sort of Control Panel GUI.
Example:
System.Volume = 80;
will set the overall output volume to 80.
Compatibility: Supported by AGS 3.2.0 and later versions.
See also: AudioChannel.Volume
,
Game.SetAudioTypeVolume
(Formerly known as system.vsync
, which is now obsolete)
static bool System.VSync;
Gets/sets whether AGS waits for the vertical retrace before rendering each frame.
When vsync is on, it can help to reduce the "tearing" effect that you can get when the screen scrolls. However, doing so will lock the game frame rate to the monitor's refresh rate, which will mean you cannot reliably set a game speed higher than 60 fps.
Vertical sync is off by default. When the game starts engine reads vsync option value from the config file, if one exists.
Not all renderers support changing vsync at runtime. If current one does not, then trying to change System.VSync
will have no effect.
Example:
if (System.VSync) {
Display("Vertical retrace sync is enabled!");
}
will display a message if vsync is on.
(Formerly known as system.windowed
, which is now obsolete)
static bool System.Windowed;
Gets/sets whether the game is running in a window (true) or full-screen (false).
If you set this property at runtime, the game will try to switch to alternate window mode. If it fails, it will return to previous one.
Example:
if (System.Windowed) {
Display("Game is running in a window!");
}
will display a message if the game is running in a window
Example:
function on_key_press(eKeyCode keycode) {
if (keycode == eKeyEscape) {
System.Windowed = !System.Windowed;
}
}
will switch from windowed to fullscreen mode and vice-versa whenever player presses Escape key.
Compatibility: This property was read-only before AGS 3.4.1; it can be set in AGS 3.4.1 and later versions.
Getting Started in AGS
Editor
- New Game templates
- Editor Preferences
- General Settings
- Default Setup
- Colours Editor
- Room Editor
- Character Editor
- Cursor Editor
- Dialog Editor
- Font Preview
- GUI Editor
- Inventory Items Editor
- View Editor
- Sprite Manager
- Music and sound
- Voice speech
- Script Modules
- System limits
- Log Panel
- Plugins
- Other Features
Engine
Scripting
- Scripting Tutorial
- Scripting Language
-
Scripting API
- Script API Overview
- Standard Constants
- Standard Enumerated Types
- Standard Types
- Game variables
- Global arrays
- Global event handlers
- repeatedly_execute / repeatedly_execute_always
- Custom dialog options rendering
- Global functions: general
- Global functions: message display
- Global functions: multimedia actions
- Global functions: palette operations
- Global functions: room actions
- Global functions: screen effects
- Global functions: wait
- AudioChannel functions and properties
- AudioClip functions and properties
- Camera functions and properties
- Character functions and properties
- DateTime functions and properties
- Dialog functions and properties
- DialogOptionsRenderingInfo functions and properties
- Dictionary functions and properties
- DrawingSurface functions and properties
- DynamicSprite functions and properties
- File functions and properties
- Game functions and properties
- GUI functions and properties
- GUI control functions and properties
- GUI Button functions and properties
- GUI InvWindow functions and properties
- GUI Label functions and properties
- GUI List Box functions and properties
- GUI Slider properties
- GUI Text Box functions and properties
- Hotspot functions and properties
- Inventory item functions and properties
- Maths functions and properties
- Mouse functions and properties
- Object functions and properties
- Overlay functions and properties
- Parser functions
- Region functions and properties
- Room functions and properties
- Screen functions and properties
- Set functions and properties
- Speech functions and properties
- String functions
- System functions and properties
- TextWindowGUI functions and properties
- ViewFrame functions and properties
- Viewport functions and properties
- Obsolete Script API
- Event Types
- Key code table
- Audio in script
Legal Notice
Getting in touch
Misc