A_FireProjectile

From ZDoom Wiki
Jump to navigation Jump to search

StateProvider

action Actor, Actor A_FireProjectile(class<Actor> missiletype, double angle = 0, bool useammo = true, double spawnofs_xy = 0, double spawnheight = 0, EFireCustomMissileFlags flags = 0, double pitch = 0)

Usage

Fires a projectile from a Weapon or a CustomInventory. Optionally you can specify an angle and a spawn offset.

This serves as a replacement for A_FireCustomMissile which has a pitch miscalculation in it.

Parameters

  • class<Actor> missiletype
The class name of the projectile to fire.
  • double angle
Adds this much offset to the actor's angle, which is aimed at the target first. Default is 0.
  • bool useammo
If true, the function will consume ammo. The type of ammo is determined by the AmmoType1/AmmoType2 properties, and the amount consumed is determined by AmmoUse1/AmmoUse2.
If there's a need to consume ammo manually, pass false to this argument and use DepleteAmmo to consume ammo.
  • double spawnofs_xy
Moves the projectile spawn point to the right if positive, left if negative. Default is 0.
  • double spawnheight
Raises the projectile spawn point on the actor by this amount in units. Default is 0, which spawns at the player's attack height.
  • EFireCustomMissileFlags flags
Customizes the behavior of the function. Multiple flags can be combined by using the bitwise OR operator (|) between the constant names:
  • FPF_AIMATANGLE — Alternate autoaim behavior, relevant when playing with autoaim. Autoaiming is based off of the projectile's trajectory instead of the player's aim. If this flag is set, the engine looks at the horizontal line of fire projected for the projectile, independent of the player's aim. If the horizontal line of fire cuts close enough to a valid target (again ignoring vertical aim), that projectile will fire directly towards that target. If this flag is not set, the engine looks at the player's horizontal aim. If the horizontal line of fire cuts close enough to a valid target (ignoring vertical aim), the resulting projectile will fire with the vertical angle adjusted to aim directly at the target.
  • FPF_TRANSFERTRANSLATION — Transfer Translation. The projectile fired uses the same translation as the actor that fired it. In most cases, this will be the player.
  • FPF_NOAUTOAIM — Disables autoaim for this attack.
  • double pitch
Offsets the projectile's aim vertically by this amount. Positive values aim down, while negative values aim up. The value is added on top of player's pitch and isn't absolute.

Return values

A_FireProjectile returns two Actor pointers, both pointing to the projectile that was fired. While they point to the same actor, they're created with different conditions:

  • The first pointer is only created if the projectile managed to enter its Spawn state sequence. If the projectile is fired an an enemy, object or a wall at a point-blank range, it'll instead immediately enter its Death (Crash, XDeath, etc.) state sequence, completely skipping Spawn, and this pointer will be null.
  • The second pointer is always created, regardless of the state sequence the projectile entered.

As such, if there's a need to modify some properties of the projectile, the second pointer should be used, because the first one is simply not guaranteed to exist. (The second pointer should still be null-checked for safety, but normally it will never be null).

Example:

// Create two pointers:
Actor p1, p2;
// Cast both of them to the projectile:
[p1, p2] = A_FireProjectile("Rocket");
// Modify the resulting projectile's damage:
if (p2)
{
	p2.SetDamage(80);
}

Examples

   Fire:
      TRIF A 5 Bright A_FireProjectile("RifleBullet", spawnofs_xy:8, spawnheight:8);
      TRIF B 5 Bright;
      TRIG A 10;
      TRIG B 0 A_Refire;
      Goto Ready;