Difference between revisions of "HPL3/Scripting/Scripting Guide/The Update method"

From Frictional Wiki
Jump to navigation Jump to search
Line 16: Line 16:
  
 
===Breakdown===
 
===Breakdown===
*<code>afTimeStep</code> represents the time (in seconds) which takes the function to get called. It is called every frame, and the game can run up to 60 frames per seconds. Therefore, the value of <code>afTimeStep</code> will almost always be <code>0.0167 seconds</code> (60 fps in seconds).  
+
 
 +
*<code>afTimeStep</code> represents the time (in seconds) which takes the function to get called. It is called every frame, and the game can run up to 60 frames per seconds. Therefore, the value of <code>afTimeStep</code> will almost always be <code>0.0167 seconds</code> (60 fps in seconds).
  
 
However, we can also use it to calculate different things that aren’t related to physics.
 
However, we can also use it to calculate different things that aren’t related to physics.
  
 
===Example===
 
===Example===
If we wanted to increase the brightness of a light based on the distance of the player from that light, we could use the <code>Update</code> method to always update the brightness value at any given time:
+
If we wanted to increase the brightness of a light based on the distance of the player from that light, we could use the <code>Update</code> method to always update the brightness value at any given time:<syntaxhighlight lang="c++">
 
+
void Update(float afTimeStep)
 
+
{
 +
cLux_AddDebugMessage(afTimeStep + "");
 +
 +
cVector3f vPlayerPos = Player_GetPosition();
 +
cVector3f vLightPos = Map_GetLight("PointLight_4").GetLocalPosition();
 +
 +
float fDistance = (vLightPos - vPlayerPos).SqrLength(); // Calculate the square root distance of the player and the light.
 +
float fCurrentDistanceRatio = vPlayerPos.Length() / fDistance; // Calculate the ratio based on the current distance.
 +
float fBrightness = cMath_Clamp(fCurrentDistanceRatio, mfMinBrightness, mfMaxBrightness); // Make sure the brightness value is within bounds.
 +
 +
Light_SetBrightness("PointLight_4", fBrightness);
 +
}
 +
</syntaxhighlight>
 +
{{Todo|Add a video}}
  
 
{{NavBar|HPL3/Scripting/The OnAction method|The OnAction method|HPL3/Scripting/HPL3 Scripting Guide|HPL3 Scripting Guide|HPL3/Scripting/Trigger Areas|Trigger Areas}}
 
{{NavBar|HPL3/Scripting/The OnAction method|The OnAction method|HPL3/Scripting/HPL3 Scripting Guide|HPL3 Scripting Guide|HPL3/Scripting/Trigger Areas|Trigger Areas}}

Revision as of 23:13, 12 August 2020


Update

Update is one of the most commonly used methods in HPL3. It’s called once per-frame in every script that uses it. Almost anything that needs to be changed or adjusted regularly happens here.

The Update method gets called on a fixed timeline and has the same time between calls. Immediately after Update is called, any necessary calculations are made, such as physics or dynamic value changes. Anything that affects rigid bodies, meaning a physics object, should be executed in this method.

Below is the default code in a map script file for Update:

void Update(float afTimeStep) 
{
}

Breakdown

  • afTimeStep represents the time (in seconds) which takes the function to get called. It is called every frame, and the game can run up to 60 frames per seconds. Therefore, the value of afTimeStep will almost always be 0.0167 seconds (60 fps in seconds).

However, we can also use it to calculate different things that aren’t related to physics.

Example

If we wanted to increase the brightness of a light based on the distance of the player from that light, we could use the Update method to always update the brightness value at any given time:

void Update(float afTimeStep) 
{
	cLux_AddDebugMessage(afTimeStep + "");
		
	cVector3f vPlayerPos = Player_GetPosition();
	cVector3f vLightPos = Map_GetLight("PointLight_4").GetLocalPosition();
		
	float fDistance = (vLightPos - vPlayerPos).SqrLength(); // Calculate the square root distance of the player and the light.
	float fCurrentDistanceRatio = vPlayerPos.Length() / fDistance; // Calculate the ratio based on the current distance.
	float fBrightness = cMath_Clamp(fCurrentDistanceRatio, mfMinBrightness, mfMaxBrightness); // Make sure the brightness value is within bounds.
						
	Light_SetBrightness("PointLight_4", fBrightness);
}

To do: Add a video