Timers

From Frictional Wiki
< HPL3
Revision as of 22:30, 13 August 2020 by TiMan (talk | contribs)
Jump to navigation Jump to search


Timers are set up to wait for a selected amount of time before executing code. It can be very useful if you want to wait a specified amount of time for something to happen in the level, such as intense countdown or to spawn / despawn particles in a dynamic way.

Creating Timers

In order to add timer to a map, we need to use the function Map_AddTimer. Let's see an example:

////////////////////////////
// Run first time starting map
void OnStart()
{
	Map_AddTimer("JumpVeryHigh", 5.0f, "Timer_JumpVeryHigh");
}

//...somewhere else in the code

void Timer_JumpVeryHigh(const tString&in asTimer)
{
	MyHelper_MakeThePlayerJumpVeryHigh();
}

Breakdown

  • We called the function and gave it three arguments: The internal name of the timer (JumpVeryHigh), the time in seconds (5) of the timer, and the function callback which will be called once the timer is done (Timer_JumpVeryHigh).
  • Our timer callback is called Timer_JumpVeryHigh and has one parameter called asTimer - this is the internal name of the timer. In our case, the internal name will be JumpVeryHigh.
  • Inside the timer callback, we use our helper function which makes the player jump very high.

If you will execute this code, the player will jump very high after five seconds once the map has been loaded.

Note icon.png You can have much more controls on timers than what was explained here. For a list of the full functions, check the Map Helper page of SOMA or Amnesia: Rebirth.

Timers are very easy to use as you can see, and it will help us to understand the concept of Sequences in next chapter.

See Also