This shows you the differences between two versions of the page.
ixe:features:custom:apexevolution [2025/03/07 06:56] – created qople | ixe:features:custom:apexevolution [2025/03/07 20:46] (current) – [Shot System] Added shot system documentation. qople | ||
---|---|---|---|
Line 505: | Line 505: | ||
AEV contains a robust event-based shot system that can efficiently handle hundreds of shots at a time. In version 1.0 it is hard-coded to only apply to the cannon, rocket, bertha, and sentrygun, but an update is planned soon to let mapmakers register new modules to use this feature. | AEV contains a robust event-based shot system that can efficiently handle hundreds of shots at a time. In version 1.0 it is hard-coded to only apply to the cannon, rocket, bertha, and sentrygun, but an update is planned soon to let mapmakers register new modules to use this feature. | ||
- | TODO: Shot behavior | + | ==== Overview ==== |
+ | Each shot type in AEV consists of: | ||
+ | * A base shot class, such as " | ||
+ | * A module name that stats for the shot are pulled from automatically. The proper variables must be defined on the module for the shot to work properly. | ||
+ | * A series of behaviors that modify the shot, each made of a name, a trigger, and a function to run when that trigger happens. | ||
+ | |||
+ | ==== Shot Classes ==== | ||
+ | Currently, only two types of shots are supported: cannon and rocket. Each has a set of variables that must be defined on them for the shot, or for most behaviors, to work properly. These values will be automatically updated in the shot system when changed __by an upgrade__. If an external source changes a stat value used by the shot system, it must be manually updated by calling the message " | ||
+ | |||
+ | === cannon === | ||
+ | A cannon shot has the following base logic, without behaviors: | ||
+ | |||
+ | * Creates a shot (or several) in the direction the unit creating the shot is facing. | ||
+ | * Each shot moves in a straight line until it hits a wall or leaves the map, then destroys itself. | ||
+ | |||
+ | This logic can be added onto with behaviors, to do things like " | ||
+ | |||
+ | The following variables must be defined on a module that creates a cannon shot: | ||
+ | |||
+ | <tabbox num_shots> | ||
+ | The number of shots created with each call to the " | ||
+ | |||
+ | <tabbox spread> | ||
+ | The spread in degrees between each shot. Total spread of the volley is always numShots * spread. | ||
+ | |||
+ | <tabbox spead_rand_mode> | ||
+ | If set to 0, shot spread is uniform. If set to 1, shot angle is random over the area of the volley. Total spread still scales with num_shots with random spread mode on, spread between bullets is just made random. | ||
+ | |||
+ | <tabbox shot_speed> | ||
+ | The distance each shot moves at, in cells per frame. | ||
+ | |||
+ | <tabbox shot_gravity> | ||
+ | The force of gravity on each shot, in cells per frame squared. | ||
+ | |||
+ | <tabbox shot_damage> | ||
+ | The damage done or AC depth deposited by the shot. Used by damage and ac behaviors. | ||
+ | |||
+ | <tabbox shot_damage_distance> | ||
+ | The radius of damage done or AC deposited by the shot. Used by damage and ac behaviors. | ||
+ | |||
+ | <tabbox shot_damage_count> | ||
+ | The maximum number of cells that can be damaged by damage behaviors. Used exclusively by damage behaviors. | ||
+ | </ | ||
+ | |||
+ | === rocket === | ||
+ | Rocket shots have the following base logic, with no behaviors: | ||
+ | |||
+ | * One or more shots are made, targeting deepest creeper in range of the unit creating the shot using the module' | ||
+ | * The shot follows a path to the target using GetRaPath. | ||
+ | * When it reaches the end of the path, the shot destroys itself. | ||
+ | |||
+ | This logic can be added onto with behaviors, to do things like " | ||
+ | |||
+ | |||
+ | The following variables must be defined on a module that creates a cannon shot: | ||
+ | |||
+ | <tabbox num_shots> | ||
+ | The number of shots created with each call to the " | ||
+ | |||
+ | <tabbox target_rand> | ||
+ | The radius of a square (so side length is 2 * target_rand) that a random offset is added to the target location. Helps reduce many shots targeting the same cell. 0 means no offset is used. | ||
+ | |||
+ | <tabbox shot_speed> | ||
+ | The distance each shot moves at, in cells per frame. | ||
+ | |||
+ | <tabbox shot_damage> | ||
+ | The damage done or AC depth deposited by the shot. Used by damage and ac behaviors. | ||
+ | |||
+ | <tabbox shot_damage_distance> | ||
+ | The radius of damage done or AC deposited by the shot. Used by damage and ac behaviors. | ||
+ | |||
+ | <tabbox shot_damage_count> | ||
+ | The maximum number of cells that can be damaged by damage behaviors. Used exclusively by damage behaviors. | ||
+ | </ | ||
+ | |||
+ | ==== Behaviors ==== | ||
+ | Shot behaviors are at the core of the AEV shot system. They allow every shot to be modified in complex ways, using declarative syntax without sacrificing on efficiency. Each behavior | ||
+ | |||
+ | The basic syntax of a behavior is as follows: | ||
+ | < | ||
+ | " | ||
+ | </ | ||
+ | |||
+ | Many behavior functions have arguments, but not all are required. As an example, this is a behavior on the cannon: | ||
+ | < | ||
+ | " | ||
+ | </ | ||
+ | |||
+ | This is a behavior with a reference name of " | ||
+ | |||
+ | === Reference Name === | ||
+ | The reference name of a behavior can be anything, and doesn' | ||
+ | |||
+ | === Triggers === | ||
+ | A trigger is simply an event that can happen over the course of a shot's lifetime. If and when it happens, if there are any behaviors on a shot associated with that trigger, the behaviors' | ||
+ | |||
+ | The current triggers supported by the shot system are: | ||
+ | |||
+ | <tabbox create> | ||
+ | Called when the shot is first created. | ||
+ | |||
+ | <tabbox ondestroy> | ||
+ | Called when the shot is destroyed. | ||
+ | |||
+ | <tabbox hitcreeper> | ||
+ | Called on the frame where the shot first contacts creeper (not anticreeper). | ||
+ | |||
+ | <tabbox frametravel> | ||
+ | Called once every frame while the shot exists, after the shot moves but before it checks for the hitcreeper trigger. | ||
+ | |||
+ | <tabbox celltravel> | ||
+ | Called once for every cell the shot travels through. Called more often each frame depending on the speed of the shot. | ||
+ | |||
+ | </ | ||
+ | |||
+ | === Functions === | ||
+ | A behavior' | ||
+ | |||
+ | Currently suported behaviors are: | ||
+ | |||
+ | <tabbox damage> | ||
+ | Runs a DamageCreeper function at the shot's current position, using the module' | ||
+ | |||
+ | Optional arguments are: multiplier to damage, multiplier to distance, and multiplier to count, in order. All default to 1 if not listed. | ||
+ | |||
+ | <tabbox ac> | ||
+ | Adds anticreeper in range at the shot's position. Uses the module' | ||
+ | |||
+ | Optional arguments are: multiplier to damage, and multiplier to distance. Both default to 0 if not given. | ||
+ | |||
+ | <tabbox destroy> | ||
+ | Destroys the shot, calling all behaviors attached to the ondestroy trigger. | ||
+ | |||
+ | Optional argument is whether to call the walkback behavior before detonation on cannon shots. Defaults to true. | ||
+ | |||
+ | <tabbox walkback> | ||
+ | Cannon class shots only. | ||
+ | |||
+ | Attempts to "walk back" the shot to the last cell there was no creeper on. Checks every cell up to one frame back in time. When used the frame the shot hits creeper, this lines up the shot with the edge of the creeper pool, preventing shots from hitting random small distances into the creeper instead of at the visual edge. | ||
+ | |||
+ | No arguments. | ||
+ | |||
+ | <tabbox afterdelay> | ||
+ | Triggers a second behavior after a certain amount of time, several times with a delay in between, or both. | ||
+ | |||
+ | Arguments are the initial delay in frames, the number of activations, | ||
+ | |||
+ | For instance, the behavior " | ||
+ | |||
+ | Any behavior run after a delay will use the position of the shot **after the delay has elapsed**, not when the afterdelay timer was started. If the shot was destroyed in that time, it will use the position the shot was destroyed at. | ||
+ | |||
+ | </ | ||
+ | |||
+ | All these behaviors can be combined and added together to produce many of the effects seen in weapon artifacts like piercing shots on the cannon, the AC trail on the maker, or the delayed detonation on the rocket, just with an AddBehavior effect or two. | ||
+ | |||
+ | ==== Making Your Own Shot Types ==== | ||
+ | |||
+ | To be added in a future update. For now, this only applies to the cannon, sentrygun, rocket, and bertha. |