HPL2/HPL2 Helper Scripts/Bobber

From Frictional Wiki
Jump to navigation Jump to search

This page documents "HelperScripts_Bobber.hps" - part of HPL2/HPL2 Helper Scripts, a modder-made package of .hps files by Aetheric Games, containing script classes and functions that may be useful to HPL2 modders and custom story creators. See the main page for more information, including set-up instructions.


Summary

The script class cBobber manages a list of entities that should bob up and down, as if they are floating in water or hovering in air. A use case for this might be for a haunted item that hovers in the air temporarily. Or for example, if you need an entity to float in water in a specific location and can't rely on the physics simulation.


Bobber vs buoyancy

The HPL2 physics simulation already allows for physics objects to be buoyant in liquid. Bobber is intended to complement this system. The main difference is that, for a physics item to float in liquid, it needs to have some freedom of movement. On the other hand, Bobber keeps objects right where they're told to be.

Example 1: Imagine a scenario in a flooded cellar, where the player has to manoeuvre a floating box into position to make a bridge. The level designer might prefer to the floating box to be a free-moving physics object while the player finds it and manipulates it into position. Then, once in position it could become managed by Bobber instead. This would allow, for example, non-simulated level elements to come into play, such as an invisible solid bridge that an enemy might cross. The Bobber-managed crate would have no risk of drifting out of position or flipping over whilst it was pretending to be a bridge.

Example 2: Imagine a scenario in a haunted room, where a poltergeist lifts a vase into the air, floating in the centre of the room. Rather than making the vase freeze in place, the level designer might want it to bob in the air. To do this using buoyancy, there would need to be a Liquid Area in the room, which could interfere with other objects or be noticeable to the player. On the other hand, using Bobber to float the vase would not have these side effects.


Player distance

Each bobbing entity can have a specific distance that the player must be within for the bobbing animation to occur. When the player is beyond this distance, the animation will pause. The level designer should balance the player distance against the size of the entity, the size of it's bobbing movement, and the size of the space the player might see it in. The default distance is 24m, but this can be overridden in the Add() arguments.


Save data

Bobber saves its data for each level to GameVars so that it can be automatically restored when the player returns to the level or reloads a game that was saved in the level. Any entities that were registered with Bobber at the time of saving will be re-registered and their bobbing state will be restored. The restoration of the loaded state occurs on the first frame once the game has started. If the game starts and Bobber hasn't yet been initialised, then it will check to see if there is saved data from a previous session, and restore it. If the game starts and Bobber was already initialised in OnStart() or OnEnter(), then the load will be skipped.


Advanced info

Advanced users may wish to examine "HelperScripts_Bobber.hps" to see how it makes use of other script classes. There are also some private variables that could to tweaked to fit the needs of a specific project, such as default player distance or the maximum number of bobbers.

The methods AddAbstract() and GetBob() can be used without a world entity, which means that Bobber can also be used just as a source of waving floats. Abstract bobbers are not saved.


Bobber

Bobber is the name of the object that manages the bobbing entities.


Behaviours

"HelperScripts_Bobber.hps" declares an object called Bobber, of the new script class cBobber. To access its properties and methods, just use "Bobber." followed by the function call or property. E.g.:

Bobber.Remove("NakedDeadGuy");
Bobber.Turbulence = 1.0f;


Properties

Bobber provides the following properties:


IsActive

bool IsActive

The read-only boolean property IsActive returns whether there are currently any active bobbers.

// Example:
if (Bobber.IsActive) DoStuff();
// The condition succeeds if Bobber is currently bobbing some entities.


BobberCount

uint BobberCount

The read-only integer property BobberCount returns the number of bobbers that have been registered in Bobber.

// Example:
if (Bobber.BobberCount < 8) MoarBobbers();
// The condition succeeds if Bobber is currently bobbing fewer than eight entities.


FrameRate

float FrameRate

The float property FrameRate can be used to get or set the animation frame rate that Bobber uses. Default = 30. For lower distances and speeds, 30 fps looks fine! For faster or more turbulent bobbing, or large wave distances, a higher frame rate may be desired. Obviously, the higher this is, the more it risks impacting performance.

// Example:
if (bUseHighFrameRate) Bobber.FrameRate = 120.0f;
else Bobber.FrameRate = 30.0f;
// The frame rate is set to either 120 or 30.


Turbulence

float Turbulence

The float property Turbulence can be used to get or set the turbulence value that Bobber uses. Applies to all bobbers together. Valid values are 0.0 - 1.0. Default = 0.0. The turbulence value introduces a chaotic element to the animation, to simulate choppy waters or erratic hovering.

// Example:
Bobber.Turbulence = 1.0f;
// The maximum turbulence has been applied.


Methods

Bobber provides the following methods:


Adding/removing bobbers

Add()

bool Add(string asEntity, bool abStartActive = true, float afScale = 1.0f, float afSpeed = 1.0f)
bool Add(string asEntity, bool abStartActive = true, float afScale = 1.0f, float afSpeed = 1.0f, cVector avMoveTo)
bool Add(string asEntity, bool abStartActive, cVector avMoveTo, cVector avDist, cVector avSpeed, cVector avPhase, float afMaxPlayerDist)

Adds a named entity to the bob list for bobbing. Returns true if the entity was successfully added.
The optional bool abStartActive defines whether the bobber starts out bobbing or not. If false, it is added to the list but doesn't start animating yet. If omitted, the default is true.
The optional cVector avMoveTo defines a position for the entity to bob around. If omitted, its current position is used. The entity will move towards its bob position as it starts bobbing.
If floats are provided, afScale and afSpeed multiply the default distance and frequency, and mfDefaultMaxPlayerDist informs how close the player has to be for the bobber to animate.
More precise movement can be arranged by providing cVectors avDist, avSpeed and avPhase. If specified, they will override the default distance and frequency, making any size or speed of movement possible.
avPhase will add an offset to time, making it possible to control how bobbing entities synchronised, or not.
Additionally, the float afMaxPlayerDist specifies a player distance for this bobber. This is the distance the player has to be within for the bobber to animate. EITHER:

  1. string asEntity - The entity to add.
  2. bool abStartActive - Whether the bobber be bobbin'. (Optional, default = true)
  3. float afScale - Multiplies the default wave size. (Optional, default = 1.0f)
  4. float afSpeed - Multiplies the default wave speed. (Optional, default = 1.0f)
  5. cVector avMoveTo - A world position for the entity to move to and bob around. (Optional, default = current location)

OR:

  1. string asEntity - The entity to add.
  2. bool abStartActive - Whether the bobber be bobbin'.
  3. cVector avMoveTo - A world position for the entity to move to and bob around.
  4. cVector avDist - Distance in X,Y,Z dimensions for size of the wave.
  5. cVector avSpeed - Velocity in X,Y,Z dimensions for speed of the wave.
  6. cVector avPhase - Distance in X,Y,Z dimensions for time offset of the wave.
  7. float afMaxPlayerDist - Distance the player must be within for the bobber to animate.
// Example 1:
Bobber.Add("floatyBoi");
// An entity called "floatyBoi" has been added to Bobber, at its current positiong, with the normal wave size and speed.

// Example 2:
if (!Bobber.Add("floatyBoi")) DoSomethingElse();
// If the Add failed, possibly because "floatyBoi" is already registered with Bobber, then the condition succeeds and the function DoSomethingElse() is called instead.

// Example 3:
Bobber.Add("floatyBoi", true, 2.0f, 0.5f, cVector(0.0f, 10.0f, 0.0f));
// An entity called "floatyBoi" has been added to Bobber, with twice the normal wave size, and half the normal speed, and will bob around 0,10,0.

// Example 4:
Bobber.Add("floatyBoi", false, cVector(0.0f, 10.0f, 0.0f), cVector(0.5f, 8.0f, 0.5f), cVector(16.0f, 2.0f, 16.0f), cVector(), 4.0f);
// An entity called "floatyBoi" has been added to Bobber, with some unusual parameters. It will bob around 0,10,0. It will drift up and down slowly, over a range of 8m, but it will vibrate rapidly in both horizontal directions, and it will only do this while the player is within a distance of 4m.


AddAbstract()

bool AddAbstract(string asName, cVector avDist, cVector avSpeed, cVector avPhase)

Adds an abstract bobber to the list. An abstract bobber doesn't have a corresponding entity in the world, but can be used with GetBob() to return the bobbing vector for use in other ways. Abstract bobbers are not saved in the game variables.

  1. string asName - The name to give the abstract bobber in the bob list.
  2. cVector avDist - Distance in X,Y,Z dimensions for size of the wave.
  3. cVector avSpeed - Velocity in X,Y,Z dimensions for speed of the wave.
  4. cVector avPhase - Distance in X,Y,Z dimensions for time offset of the wave.
// Example:
Bobber.AddAbstract("SomeWavyNumbers", cVector(1.0f, 1.0f, 1.0f), cVector(0.5f, 1.0f, 0.5f), cVector(0.3f, 0.0f, 0.7f));
float MyWavyNumber = Bobber.GetBob("SomeWavyNumbers").X;
// A bobber called "SomeWavyNumbers" has been added to the bob list, and the float MyWavyNumber is assigned the X value from the wave vector.


Remove()

bool Remove(string asEntity)
bool Remove(uint aulEntIdx)

Removes a bobbing entity from the bob list. Returns true if the entity was successfully removed, or false if it was not found. The entity to remove can be specified by name or by an index. (The index corresponds to the order the bobbers were added.)

  1. string asEntity, uint aulEntIdx - The entity to check for, by name or by index.
// Example 1:
Bobber.Remove(0);
// The entity that was first registered with Bobber will be de-registered.

// Example 2:
Bobber.Remove("floatyBoi");
// If the entity named "floatyBoi" is registered with Bobber, it will be de-registered.

// Example 3:
if (Bobber.Remove("floatyBoi")) Bobber.Add("floatyBoi2");
// If the entity named "floatyBoi" is registered with Bobber, it will be de-registered. In that case, the condition will succeed and "floatyBoi2" will be added instead.


ClearBobbing()

void ClearBobbing()

Cancels all bobers and empties the list. Bobbing entities will be left at their current position.

// Example:
Bobber.ClearBobbing();
// All bobbers have been de-registered. Even "floatyBoi"!


Querying bobbers

IsEntBobbing()

bool IsEntBobbing(string asEntity)

Returns true if the named entity is in the bob list.

  1. string asEntity - The entity to check for.
// Example:
if (Bobber.IsEntBobbing("barrel1")) DoStuff();
// The condition succeeds if the entity "barrel1" is a registered bobber.


IsEntBobbing()

bool IsEntBobbing(string asEntity)

Returns true if the named entity is in the bob list.

  1. string asEntity - The entity to check for.
// Example:
if (Bobber.IsEntBobbing("barrel1")) DoStuff();
// The condition succeeds if the entity "barrel1" is a registered bobber.


GetBob()

cVector GetBob(string asName)

Returns a 3d vector indicating the bobber's position. This is most useful with abstract bobbers and will be the current wave vector offset.
For a normal bobber that is active, this will be its current world position. For an inactive bobber, this will return zero.

// Example:
Bobber.AddAbstract("SomeWavyNumbers", cVector(1.0f, 1.0f, 1.0f), cVector(0.5f, 1.0f, 0.5f), cVector(0.3f, 0.0f, 0.7f));
float MyWavyNumber = Bobber.GetBob("SomeWavyNumbers").X;
// A bobber called "SomeWavyNumbers" has been added to the bob list, and the float MyWavyNumber is assigned the X value from the wave vector.


cNodeBobbing

cNodeBobbing is a list node class used by cBobber to manage individual bobbing entities. It is not recommended to work with cNodeBobbing directly. Instead, just use the methods of Bobber and let it manage them for you.

Advanced users who intend to access cNodeBobbing instances may find the following information useful.


Behaviours

cNodeBobbing has two constructors, one with full control and one with minimal args:

cNodeBobbing(string &in asEntity, cVector avDist, cVector avSpeed, float afMaxPlayerDist)
cNodeBobbing(string &in asEntity, bool abStartActive, cVector avMoveTo, cVector avDist, cVector avSpeed, cVector avPhase, float afMaxPlayerDist)

A third constructor exists for abstract bobbers (math only, no entities in the world):

cNodeBobbing(string &in asName, cVector avDist, cVector avSpeed, cVector avPhase)


Properties

cNodeBobbing has the following properties:


IsActive

bool IsActive

The read-only boolean property IsActive updates whether the bobber should be active based on the player distance and returns the result.


EntityName

string EntityName

The read-only string property EntityName returns the index of this bobber's actual entity.


Origin

cVector Origin

The read-only cVector property Origin returns the cVector defining the centre of the bobber's movement.


Distance

cVector Distance

The read-only cVector property Distance returns the cVector defining the bobber's wave amplitude on each axis.


Speed

cVector Speed

The read-only cVector property Speed returns the cVector defining the bobber's wave frequency on each axis.


Phase

cVector Phase

The read-only cVector property Phase returns the cVector offsetting the bobber's movement in time.


PlayerDistSqr

float PlayerDistSqr

The read-only float property PlayerDistSqr returns the square of the maximum player distance to animate this bobber.


Methods

CheckActive()

bool CheckActive()

Updates whether the bobber should be active based on the player distance and returns the result.


UpdatePos()

void UpdatePos(float afTime, float afInterpWeight)

Updates the bobber's wave position based on the the current time and Bobber's interpolation weight value.

  1. float afTime - The current Bobber time.
  2. float afInterpWeight - The interpolation weight value in Bobber. Higher numbers make more smoothing. 4.0f is recommended.



GetBob()

cVector GetBob(float afTime, float afInterpWeight)

Returns the bobber's current wave position without updating an entity position.

  1. float afTime - The current Bobber time.
  2. float afInterpWeight - The interpolation weight value in Bobber. Higher numbers make more smoothing. 4.0f is recommended.