Checkpoints

From Wolfire Games Wiki
Revision as of 22:21, 9 September 2017 by Doctorgester (talk | contribs)
Jump to: navigation, search

Checkpoints allow you to set up goals that the player can achieve to advance progress in a level.

With them you can move the player spawn point upon death and allow defeated enemies to remain dead.

When the player advances progress, you can do nothing, play a dialog, spawn new enemies, or trigger a level win (load the next level).

You can make some of the checkpoints optional, so player progress is saved, but the player does not have to touch them to complete the level.

Using the checkpoint system

Start by creating a new level, or opening an existing level, and activating the editor by hitting "F1".

You might want to enable debug text (Settings -> Debug -> Enable "Draw In-Game Debug Window").

Debug keys (these will work once a level has checkpoints):

L reset the level to the currently achieved checkpoint
K swap to the next checkpoint, or wrap around to the first (remember to hit "L" after to reset)

To add the checkpoint system to a level:

Load -> Load Item... -> Data/Objects/Hotspots/overgrowth_level.xml

The table below shows the types of goals that can be used as checkpoints. Below the table are instructions for how to use each goal.

reach when touched, moves the player spawn point and saves defeated enemies. must touch it to complete the level/advance progress
reach_skippable same as "reach" checkpoint but the player never has to reach it to complete the level/advance progress
defeat the player must defeat a list of enemies to complete the level/advance progress
spawn_defeat same as "defeat" checkpoint but the enemies to defeat are spawned at the beginning of that checkpoint

"reach" checkpoint

  1. Add the checkpoint hotspot to the scene. This is the trigger for the checkpoint. Load -> Load Item... -> Data/Objects/Hotspots/overgrowth_level_checkpoint.xml
  2. Add the placeholder object to the scene. This is the player spawn. Load -> Utility -> Placeholder
  3. Set the checkpoint hotspot "checkpoint_id" parameter to a value starting at 0 and increasing for each checkpoint you add
  4. Set the checkpoint hotspot "level_hotspot_id" parameter to the object id of the overgrowth_level hotspot
  5. Add a "goal_<number>" parameter to the overgrowth_level hotspot and set the value to "reach <number>", with the number from step 3
  6. Add a value to the overgrowth_level hotspot "player_spawn" parameter, delimited with spaces, with the id of the placeholder object from step 2 ("437 243 121"). The order matters, and the id for checkpoint 0 should go in the first spot, checkpoint 1 in the second spot, etc. You can see that you've written the correct ID if a transparent character model appears in the placeholder hotspot.

The numbers in checkpoints are tricky to get right. To add an additional checkpoint:

  1. Add another goal param to the overgrowth_level hotspot, and give it a number one higher than the previous goal. So if your previous goal was goal_0, you would add another one with the name goal_1
  2. Set the goal param's value to one higher than the previous goal. So if the previous one was reach 5, this new param's value would be reach 6
  3. Load a checkpoint object, and set its checkpoint_id parameter to a value that matches the reach goal in step #2. So, if the goal is reach 6, then this would just be 6
  4. Set the checkpoint object's level_hotspot_id param
  5. Load a placeholder object for the player to spawn at
  6. Add the id of the placeholder object to the end of the overgrowth_level's player_spawn param. So if it was previously 123 456 then it would now be something like 123 456 784

"reach_skippable" checkpoint

Do all the same as a "reach" hotspot, but in step 5 set the value to "reach_skippable <number>" instead of "reach <number>"

"defeat" checkpoint

  1. Add an enemy to the level
  2. Add a "goal_<number>" parameter to the overgrowth_level hotspot and set the value to "defeat <number>", with the object id of the enemy from step 1
  3. Add additional enemy ids in the form of "defeat <some_enemy_id> <other_enemy_id>", just like in step two (e.g. "defeat 4 72 8")

"spawn_defeat" checkpoint

Do all the same as a "defeat" hotspot, but in step 2 set the value to "spawn_defeat <numbers...>" instead of "defeat <numbers...>"

Triggering dialogs

To trigger a dialog just before starting on a new goal (whether a "reach" or "defeat" goal):

  1. Add a dialog to the level and get it working with the dialog editor
  2. Add a "goal_<number>_pre" parameter to the overgrowth_level hotspot and set the value to "dialog <dialogname>", with the dialog name from step 1, and the number of the goal you want the dialog to be triggered before. (e.g. "goal_5_pre")
  3. Note that the dialog will be started again if you die and respawn, and the dialog can be used to set a new spawn point for the player

To trigger a dialog just after achieving a checkpoint goal (whether a "reach" or "defeat" checkpoint):

Do all the same as a dialog triggered before progressing to a given checkpoint, but name the parameter "goal_<number>_post" (e.g. "goal_5_post")