This page has been translated automatically.
Programming
Fundamentials
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Bounds-Related Classes
Containers
Controls-Related Classes
Core Library
GUI-Related Classes
Node-Related Classes
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
Rendering-Related Classes
Utility Classes
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Game Class

Game Class

Members


Player getPlayer ()

Returns the current player.

Return value

Current player.

void setScale (float scale)

Sets a value that is used to scale frame duration. It scales up or down the speed of rendering, physics and game logic. This function allows to create effects of slow/accelerated motion.

For example, if the scale equals 2, the rate of simulation of all effects (such as particles) speeds up to two times faster. As for physics, in reality it will be simulated with the same fixed physics FPS, but the number of iterations will be two times higher. (It is possible to scale the physics FPS separately via engine.physics.setScale() function).

This function scales both setIFps and setFTime.

Arguments

  • float scale - Scaling factor. The provided values is clamped within range [0;32].

int getRandomInt (int from, int to)

Arguments

  • int from
  • int to

Return value

float getScale ()

Gets a value used to scale a frame duration.

Return value

Value to scale the frame duration.

double getRandomDouble (double from, double to)

Arguments

  • double from
  • double to

Return value

void setSeed (int seed)

Sets the seed for pseudo-random number generator.

Arguments

  • int seed - Number used to initialize a pseudo-random sequence of numbers. Non-negative value should be provided, as unsigned integer is used for it.

void setData (string data)

Updates user data associated with the game. This string is written directly into a *.world file. Namely, into the data child tag of the game tag, for example:
Source code(XML)
<world version="1.21">
	<game>
		<data>User data</data>
	</game>
</world>

Arguments

  • string data - User data. Data can contain an XML formatted string.

float getIFps ()

Returns a scaled fixed frame duration.

Return value

Frame duration in seconds (1 / FPS). If the game is paused, 0.

int getSeed ()

Returns the seed for pseudo-random number generator.

Return value

Number used to initialize a pseudo-random sequence of numbers.

void setFrame (int frame)

Sets a specified game frame.

Arguments

  • int frame - Frame number.

void setTime (float time)

Sets a specified time for the game. The time is counted off starting from the world loading and does not take game pauses into account.

Arguments

  • float time - Time in seconds.

float getNoise1 (float pos, float size, int frequency)

Arguments

  • float pos
  • float size
  • int frequency

Return value

float getNoise3 (vec3 pos, vec3 size, int frequency)

Arguments

  • vec3 pos
  • vec3 size
  • int frequency

Return value

void setIFps (float ifps)

Sets a fixed FPS that does not depend on the real FPS the hardware is capable of. That is, it forces constant frame time increments between rendered frames, used for animation/expression update etc.

This function is useful when grabbing the video reel with a fixed FPS value (for example, 25 frames per second). When this mode is activated, engine.game.getFTime() will return a fixed frame time value set with this function.

To remove fixed frame duration, use -1.

Arguments

  • float ifps - Frame duration in seconds (1/FPS). -1 removes the FPS limitation.

float getRandomFloat (float from, float to)

Arguments

  • float from
  • float to

Return value

unsigned int getRandom ()

Returns a pseudo-random number within a given range, supports int, float, vec3, and vec4.

Return value

Random number (type depends on arguments).

void setPlayer (Player player)

Sets the current player.

Arguments

  • Player player - Player to set as current.

void setFTime (float ftime)

Sets the maximum rendering frame duration value, that is, it restricts the frame rendering rate to a fixed one. There is no difference if the real rendering FPS is lower than the fixed frame FPS. But if the real rendering FPS is higher than the fixed frame FPS, the engine will wait until the fixed frame time is over.

To remove fixed frame duration, use -1.

Arguments

  • float ftime - Frame time in seconds. -1 removes the FPS limitation.

void setEnabled (int enabled)

Pauses or resumes the current game.

Arguments

  • int enabled - Positive integer to resume the game, 0 to pause it.

string getData ()

Returns user data associated with the game. This string is written directly into a *.world file. Namely, into the data child tag of the game tag, for example:
Source code(XML)
<world version="1.21">
	<game>
		<data>User data</data>
	</game>
</world>

Return value

User data. Data can contain an XML formatted string.

float getFTime ()

Returns time spent between a previous update and a current one. This function takes time scaling into account.

Return value

Frame duration in seconds.

float getTime ()

Returns the current time spent in the game. It is counted off starting from the world loading and does not take game pauses into account.

Return value

Time in seconds.

int isEnabled ()

Returns a value indicating if the game is paused or not.

Return value

Positive integer if the game is not paused; otherwise, 0.

Obstacle getIntersection (Vec3 p0, Vec3 p1, float radius, int mask, GameIntersection intersection)

Performs intersection to find if a pathfinding obstacle is located within the cylinder between two points.

Notice
World space coordinates are used for this function.

Usage Example

The following example shows how you can get the intersection point (vec3) of the cylinder between two points with an obstacle. In this example the cylinder is an invisible traced cylinder from the point of the camera (vec3 p0) to the point of the mouse pointer (vec3 p1) with the specific radius. The executing sequence is the following:

  • Define and initialize two points (p0 and p1) by using the getPlayerMouseDirection() function from core/scripts/utils.h.
  • Create an instance of the GameIntersection class to get the intersection point coordinates.
  • Check, if there is a intersection with an obstacle. The engine.game.getIntersection() function returns an intersected obstacle when the obstacle appears in the area of the cylinder.
  • After that GameIntersection instance gets the point of the nearest intersection point and you can get it by using the getPoint() function.
Source code(UnigineScript)
#include <core/scripts/utils.h>
/* ... */
// define two vec3 coordinates
vec3 p0,p1;
// get the mouse direction from camera (p0) to cursor pointer (p1)
getPlayerMouseDirection(p0,p1);

// create an instance of the GameIntersection class
GameIntersection intersection = new GameIntersection();
 
// try to get the intersection with an obstacle.
// cylinder has radius 0.1f, intersection mask equals to 1
Obstacle obstacle = engine.game.getIntersection(p0,p1,0.1f, 1, intersection);

// check, if the intersection of mouse direction with any obstacle was occurred;
if(obstacle !=NULL)
{
  // show the coordinates of the intersection in console 
  log.message("The intersection with obstacle was here: %s\n", typeinfo(intersection.getPoint()));
}
/* ... */

Arguments

  • Vec3 p0 - Start point.
  • Vec3 p1 - End point.
  • float radius - Radius of the intersection cylinder.
  • int mask - Obstacle intersection mask. The obstacle is ignored if its mask does not match.
  • GameIntersection intersection - GameIntersection class instance to put the result into.

Return value

Intersected obstacle.

float getNoise2 (vec2 pos, vec2 size, int frequency)

Arguments

  • vec2 pos
  • vec2 size
  • int frequency

Return value

int getFrame ()

Returns the current game frame.

Return value

Frame number.
Last update: 2017-07-03
Build: ()