LuaEvents.wiki
changeset 1749 91756d20ce3e
child 1753 ea373c205918
equal deleted inserted replaced
1748:e78a3fd5a0e4 1749:91756d20ce3e
       
     1 #summary List of event handlers in the Lua API
       
     2 
       
     3 = Lua API: Event handlers =
       
     4 Event handlers are [LuaAPI Lua] functions that Hedgewars calls on certain events. Lua scripts are supposed to _define_ these functions to do something. The functions are then _called_ by Hedgewars when a certain event has occured. For an example of how this works, see [LuaGuide].
       
     5 
       
     6 This page is a list of all supported event handlers in Hedgewars.
       
     7 
       
     8 == <tt>onGameInit()</tt> ==
       
     9 This function is called before the game loads its resources. One can read and modify various [LuaGlobals#Game_variables game variables] here. These variables will become globally available after `onGameInit` has been invoked, but changing them has only an effect in `onGameInit`.
       
    10 Most game variables are optional, but for missions, `Theme` must be set by the scripter if you want to use a random map, rather than an image map. All other variables do not need to be set by the scripter and have default values.
       
    11 
       
    12 For a list of game variables that can be set here, see [LuaGlobals#Game_variables].
       
    13 
       
    14 == <tt>onGameStart()</tt> ==
       
    15 This function is called when the first round starts.
       
    16 
       
    17 Can be used to show the mission and for more setup, for example initial target spawning.
       
    18 
       
    19 At this stage, the global variables `LeftX`, `RightX`, `TopY`, `LAND_WIDTH` and `LAND_HEIGHT` become available.
       
    20 
       
    21 == <tt>onPreviewInit()</tt> ==
       
    22 This function is called when the map preview in the frontend is initialized. This happens when the script is selected or you change a map generator parameter.
       
    23 
       
    24 It is useful for scripts which create their own maps (see `AddPoint` and `FlushPoints`). If you create a map in this function, a preview will be generated from this map and is exposed to the frontend.
       
    25 
       
    26 == <tt>onParameters()</tt> ==
       
    27 This function is called when the script parameters (as specified in the game scheme) become available. The script parameter string is stored in the global variable `ScriptParam`.
       
    28 
       
    29 Please note that it is normally not safe to call many of the other functions inside this function, this function is called very early in the game, only use this to initialize variables and other internal stuff like that.
       
    30 
       
    31 *Tip*: If you use the Params library  (`/Scripts/Params.lua`), you can make the task of dissecting the string into useful values a bit easier, but it’s not required. (The Params library is not documented yet, however).
       
    32 
       
    33 *Tip*: If you use this callback, make sure to document the interpretation of the parameters so others know how to set the parameters properly.
       
    34 
       
    35 == <tt>onGameTick()</tt> ==
       
    36 This function is called on every game tick, i.e. 1000 times a second. If you just need to check on something periodically, consider `onGameTick20`.
       
    37 
       
    38 == <tt>onGameTick20()</tt> ==
       
    39 This function is called every 20 game ticks, which equals 50 times a second. It reduces Lua overhead for simple monitoring that doesn’t need to happen every single tick.
       
    40 
       
    41 == <tt>onNewTurn()</tt> ==
       
    42 This function calls at the start of every turn. You can set `ReadyTimeLeft` here to change the ready time for this turn. (See also: `Ready`)
       
    43 
       
    44 == <tt>onCaseDrop(gear)</tt> ==
       
    45 This function calls between two turns right after the moment at which the game *might* drop a crate according to the game scheme settings. It does not matter if it actually wants to drop a crate.
       
    46 
       
    47 If a crate was dropped, `gear` is the crate gear that was dropped, if no crate was dropped, `gear` is `nil`.
       
    48 
       
    49 This function is useful to add custom crate drops as well.
       
    50 
       
    51 == <tt>onEndTurn()</tt> (0.9.24) ==
       
    52 This function calls at the end of every turn. The end of a turn is defined as the point of time after the current hedgehog lost control and all the important gears are either gone or have settled.
       
    53 
       
    54 `CurrentHedgehog` holds the gear ID of the hedgehog whose turn just ended.
       
    55 
       
    56 This function is called at one of the earliest possible moment after the end of a turn. After this callback, Hedgewars then performs all the other stuff between turns. This includes things like: Applying poison or Sudden Death damage, calculating total hog damage, rising the water in Sudden Death, dropping a crate, checking victory, giving control to the next hog.
       
    57 
       
    58 Because this function is called *before* victories are checked, this is useful to set up your victory conditions here.
       
    59 
       
    60 == <tt>onSkipTurn()</tt> (0.9.24) ==
       
    61 This function calls when a hog skips its turn.
       
    62 
       
    63 == <tt>onGameResult(winningClan)</tt> (0.9.25) ==
       
    64 This function calls when the game ends with a winner or in a draw. If a clan wins, `winningClan` is the clan ID of the winning clan. If the game ends in a draw, `winningClan` is set to -1.
       
    65 
       
    66 == <tt>onSuddenDeath()</tt> ==
       
    67 This function is called on the start of Sudden Death.
       
    68 
       
    69 == <tt>onGearAdd(gearUid)</tt> ==
       
    70 This function is called when a new gear is added. Useful in combination with `GetGearType(gearUid)`.
       
    71 
       
    72 == <tt>onGearDelete(gearUid)</tt> ==
       
    73 This function is called when a new gear is deleted. Useful in combination with `GetGearType(gearUid)`.
       
    74 
       
    75 == <tt>onVisualGearAdd(vgUid)</tt> (0.9.23) ==
       
    76 This function is called when a new visual gear is added. Useful in combination with `GetVisualGearType(vgUid)`.
       
    77 
       
    78 == <tt>onVisualGearDelete(vgUid)</tt> (0.9.23) ==
       
    79 This function is called when a new visual gear is deleted. Useful in combination with `GetVisualGearType(vgUid)`.
       
    80 
       
    81 == <tt>onGearDamage(gearUid, damage)</tt> ==
       
    82 This function is called when a gear is damaged.
       
    83 
       
    84 Example:
       
    85 
       
    86 <code language="lua">    function onGearDamage(gear, damage)
       
    87         if (GetGearType(gear) == gtHedgehog) then
       
    88             -- adds a message saying, e.g. "Hoggy H took 25 points of damage"
       
    89             AddCaption(GetHogName(gear) .. ' took ' .. damage .. ' points of damage')
       
    90         end
       
    91     end</code>
       
    92 == <tt>onGearResurrect(gearUid, spawnedVGear) </tt> ==
       
    93 This function is called when a gear is resurrected due to the hog effect `heResurrectable` being set (see `SetEffect`) and/or being an AI hog when the game modifier “AI Survival” (`gfAISurvival`) is active. It is *not* called when a hog was resurrected by the resurrector tool you can use in the game.
       
    94 
       
    95 `spawnedVGear` is a visual gear handle of the “resurrection effect”. You can use this handle to modify or delete the resurrection animation.
       
    96 
       
    97 == <tt>onAmmoStoreInit()</tt> ==
       
    98 This function is called when the game is initialized to request the available ammo and ammo probabilities. Use `SetAmmo` here.
       
    99 
       
   100 == <tt>onNewAmmoStore(team/clan index, hog index)</tt> ==
       
   101 This function is identical to `onAmmoStoreInit` in function, but is called once per ammo store.  This allows different ammo sets for each clan, team or hedgehog depending on the mode.
       
   102 If `gfSharedAmmo` is set, the parameters passed are the clan index, and `-1`, and the function will be called once for each clan.
       
   103 If `gfPerHogAmmo` is set, the parameters passed are the team index and the hog index in that team, and the function will be called once for each hedgehog.
       
   104 If neither is set, the parameters passed are the team index and `-1`, and the function will be called once for each team.
       
   105 
       
   106 These indexes can be used to look up details of the clan/team/hedgehog prior to gear creation. Routines to do these lookups will be created as needed.
       
   107 If you add this hook, the expectation is that you will call SetAmmo appropriately. Any values from `onAmmoStoreInit` are ignored.
       
   108 
       
   109 == <tt>onGearWaterSkip(gear)</tt> ==
       
   110 This function is called when the gear `gear` skips over water.
       
   111 
       
   112 == <tt>onScreenResize()</tt> ==
       
   113 This function is called when you resize the screen. Useful place to put a redraw function for any `vgtHealthTags` you're using.
       
   114 
       
   115 == <tt>onAttack()</tt> ==
       
   116 This function is called when your Hedgehog attacks.
       
   117 
       
   118 == <tt>onHJump()</tt> ==
       
   119 This function is called when you press the high jump key.
       
   120 
       
   121 == <tt>onLJump()</tt> ==
       
   122 This function is called when you press the long jump key.
       
   123 
       
   124 == <tt>onPrecise()</tt> ==
       
   125 This function is called when you press the precise key.
       
   126 
       
   127 == <tt>onLeft()</tt> ==
       
   128 This function is called when you press the left key.
       
   129 
       
   130 == <tt>onRight()</tt> ==
       
   131 This function is called when you press the right key.
       
   132 
       
   133 == <tt>onUp()</tt> ==
       
   134 This function is called when you press the up key.
       
   135 
       
   136 == <tt>onDown()</tt> ==
       
   137 This function is called when you press the down key.
       
   138 
       
   139 == <tt>onAttackUp()</tt> ==
       
   140 This function is called when you release the attack key.
       
   141 
       
   142 == <tt>onDownUp()</tt> ==
       
   143 This function is called when you release the down key.
       
   144  
       
   145 == <tt>onHogAttack(ammoType)</tt> ==
       
   146 This function is called when you press the attack key. Beginning with 0.9.21, the parameter `ammoType` is provided. It contains the ammo type of the weapon used for the attack. 
       
   147 
       
   148 Note: If you want to detect when a turn was skipped, use `onSkipTurn()`. There is no guarantee that `onHogAttack(amSkip)` is called in such an event.
       
   149 
       
   150 == <tt>onLeftUp()</tt> ==
       
   151 This function is called when you release the left key.
       
   152 
       
   153 == <tt>onPreciseUp()</tt> ==
       
   154 This function is called when you release the precise key.
       
   155 
       
   156 == <tt>onRightUp()</tt> ==
       
   157 This function is called when you release the right key.
       
   158 
       
   159 == <tt>onSetWeapon(msgParam)</tt> ==
       
   160 It is get called when a weapon is selected or switched.
       
   161 
       
   162 `msgParam` tells you which ammo type was selected.
       
   163 
       
   164 == <tt>onSlot(msgParam)</tt> ==
       
   165 This function is called when one of the weapon slot keys has been pressed.
       
   166 
       
   167 `msgParam` tells the slot number minus 1 (i.e. `0` is for slot number 1, `1` is for slot number 2, etc.).
       
   168 
       
   169 == <tt>onSwitch()</tt> ==
       
   170 This function is called when a hog is switched to another.
       
   171 
       
   172 == <tt>onTaunt(msgParam)</tt> ==
       
   173 This function is called when the player uses an animated emote for example by using the chat commands `/wave`, `/juggle`, etc.
       
   174 
       
   175 `msgParam` tells you which animation was played:
       
   176 
       
   177 || *`msgParam`* || *Animation* || *Associated chat command* ||
       
   178 || 0 || Rolling up || `/rollup` ||
       
   179 || 1 || Sad face || `/sad` ||
       
   180 || 2 || Waving hand || `/wave` ||
       
   181 || 3 || Stupid winner's grin / “Awesome” face || `/hurrah` ||
       
   182 || 4 || Peeing || `/ilovelotsoflemonade` ||
       
   183 || 5 || Shrug || `/shrug` ||
       
   184 || 6 || Juggling || `/juggle` ||
       
   185 
       
   186 == <tt>onTimer(msgParam)</tt> ==
       
   187 This function is called when one of the timer keys is pressed.
       
   188 
       
   189 `msgParams` tells the set timer in seconds (i.e. `3` for the 3 seconds timer key).
       
   190 
       
   191 == <tt>onUpUp()</tt> ==
       
   192 This function is called when you release the up key.
       
   193 
       
   194 == <tt>onUsedAmmo(ammoType)</tt> (0.9.23) ==
       
   195 Called after a weapon has been used completely, with `ammoType` as the used ammo type.
       
   196 
       
   197 For example, it is called right after a bazooka is fired, when both shots of a shotgun have been fired, when extra time is used, or when all 4 shots of a portable portal device have been fired. It is also called when using a multi-shot ammo has been aborted by changing the weapon selection mid-way, because this still uses up the ammo.
       
   198 
       
   199 *Warning:* In 0.9.24 or earlier, you must not manipulate any ammo within this callback, e.g. by using `AddAmmo`. The ammo storage might become garbled otherwise.
       
   200 
       
   201 == <tt>onHogHide(gearUid)</tt> ==
       
   202 This function is called when a hedgehog with the gear ID `gearUid` is hidden (removed from the map).
       
   203 
       
   204 == <tt>onHogRestore(gearUid)</tt> ==
       
   205 This function is called when a hedgehog with the specified gear ID `gearUid` is restored (unhidden).
       
   206 
       
   207 == <tt>onSpritePlacement(spriteId, centerX, centerY)</tt> ==
       
   208 This function is called when a [Sprites Sprite] has been placed.
       
   209 
       
   210 `spriteID` is the type of the sprite, you find a list at [Sprites Sprites]. `centerX` and `centerY` are the coordinates of the center of the sprite.
       
   211 
       
   212 == <tt>onGirderPlacement(frameIdx, centerX, centerY)</tt> ==
       
   213 This function is called when a girder has been placed.
       
   214 
       
   215 `frameIdx` is used for the length and orientation of the girder. The possible values are explained in `PlaceGirder`. `centerX` and `centerY` are the coordinates of the girder’s center.
       
   216 
       
   217 == <tt>onRubberPlacement(frameIdx, centerX, centerY)</tt> ==
       
   218 This function is called when a rubber has been placed.
       
   219 
       
   220 `frameIdx` is used for the rubber orientation. The possible values are explained in `PlaceRubber`. `centerX` and `centerY` are the coordinates of the rubber’s center.
       
   221 
       
   222 == <tt>onSpecialPoint(x, y, flags)</tt> ==
       
   223 This is used while a special hand-drawn map is loaded. The engine is building these hand-drawn maps by reading points from the map definition. Optionally, some of these points may be “special”. These are not actually drawn on the map, but are used to store additional information for a position on the map. Special points currently need to be added manually in the map, the in-game editor is not able to add those yet (as of 0.9.23).
       
   224 Now, when such a special point at the coordinates `x` and `y` with an assigned value of `flags` is added, this function is called. `flags` is a whole number between `0` and `255` inclusive.
       
   225 
       
   226 This function is used in Racer and !TechRacer to define waypoints.
       
   227 
       
   228 == <tt>onAchievementsDeclaration()</tt> ==
       
   229 This function is called after the stats for the stats screen (after the game) have been generated. You are supposed to call `DeclareAchievement` here.
       
   230 
       
   231