Knowledge Base - Actor Mover

Actor Mover

Edited by Richard Clark

An ActorMover will move any thing along a path of InterpolationPoints. If you move a monster, the monster will automatically be made dormant while it is on the path.

The ActorMover (9074) takes four parameters:

  1. low byte: low byte of tid of first InterpolationPoint in path.
  2. high byte: high byte of tid of first InterpolationPoint in path.
  3. options: (Add any of the following values; i.e. for options 2 and 4, this parameter would be 6):
    • 1: path is linear instead of curved.
    • 2: Thing will adjust its angle to match those of the points it passes.
    • 4: Thing will adjust its pitch to match those of the points it passes.
    • 8: When used with 2 and/or 4, the thing faces in the direction of movement instead of the direction the InterpolationPoints are facing.
    • 128: If the thing being moved is normally solid, make it nonsolid so that it can't be blocked.
  4. tid: the tid of the thing to move.

The ActorMover uses a set of Interpolation points (9070) that define a path to follow. They operate similar to the pathnode of a monster patrol route.

  1. pitch: pitch of camera in degrees, 0 is straight ahead, 1-89 is down, and 166-255 is up (angle subtracted from 256).
  2. time: time (in octics) to travel to next node.
  3. pause: time (in octics) to stop at this node before continuing
  4. low byte: low byte of tid of next InterpolationPoint in the path.
  5. high byte: high byte of tid of next InterpolationPoint in the path.

Parameter 4 has the low byte, and parameter 5 has the high byte, so the tid is parm4+(parm5*256). This lets you use more than 255 points for all paths. For example, if the next point had a tid of 4 then the low byte is 4 and the high byte is 0.

In addition, there is now a SymbioticPoint (9075) that will activate when any InterpolationPoint with its same TID is used by any of the moving objects (MovingCamera, PathFollwer or ActorMover). The thing special for the SymbioticPoint will be triggered. It will be repeatable, so if you only want it to trigger once, handle that in scripting.

Use the Thing_Activate special to start the actormover.

The Thing_Activate takes a single parameter, the tid of the thing to activate.

To stop a actormover use Thing_Deactivate. Thing_Deactivate takes one parameter, the tid of the thing to deactivate. If the camera is restarted using Thing_Activate, it will automatically start at the beginning of the path.

Sources

ZDoom reference by Marisa Heit.

Back