TFE Custom Logics: Difference between revisions

From DF21 Wiki
mNo edit summary
No edit summary
Line 56: Line 56:
For example, "alertsound", "ALERTSOUND", "AlertSound", "alertSound" will all be accepted.
For example, "alertsound", "ALERTSOUND", "AlertSound", "alertSound" will all be accepted.


Further tips about getting the JSON format right are found can be found on the [[TFE Mod Overrides#How_do_I_create_or_edit_a_MOD_CONF.txt_file_and_what_is_JSON?|TFE MOD Overrides]] article.
Further tips about getting the JSON format right can be found on the [[TFE Mod Overrides#How_do_I_create_or_edit_a_MOD_CONF.txt_file_and_what_is_JSON?|TFE MOD Overrides]] article.




Line 68: Line 68:
{| border=1 cellpadding=6px
{| border=1 cellpadding=6px
|-
|-
! Property !! Type !! Description
! Property !! Type !! Default value !! Description
|-  
|-  
| hasGravity || boolean || If true, will be affected by gravity
| hasGravity || boolean || true || If true, will be affected by gravity
|-
|-
| isFlying || boolean || If true, will be a flying enemy (like probe droid)
| isFlying || boolean || false || If true, will be a flying enemy (like probe droid)
|-
|-
| fieldOfView || number (integer) || Field of view, in degrees. If set to 360, the enemy will be able to see you even if you are standing behind it.
| fieldOfView || number (integer) || 210 || Field of view, in degrees. If set to 360, the enemy will be able to see you even if you are standing behind it.
|-  
|-  
| awareRange || number (integer) || If you are within this distance from the enemy (in DFU), it will be alerted even if you are outside its field of view. (However, this can be affected by other things, such as the ambient light.)
| awareRange || number (integer) || 20 || If you are within this distance from the enemy (in DFU), it will be alerted even if you are outside its field of view. (However, this can be affected by other things, such as the ambient light.)
|-
|-
| alertSound || string || VOC file to play when enemy is alerted
| alertSound || string || ''no sound'' || VOC file to play when enemy is alerted
|-
|-
| painSound || string || VOC file to play when enemy takes pain
| painSound || string || ''no sound'' || VOC file to play when enemy takes pain
|-  
|-  
| dieSound || string || VOC file to play when enemy dies
| dieSound || string || ''no sound'' || VOC file to play when enemy dies
|-
|-
| attack1Sound || string || VOC file to play for primary attack
| attack1Sound || string || ''no sound'' || VOC file to play for primary attack
|-  
|-  
| attack2Sound || string || VOC file to play for secondary attack
| attack2Sound || string || ''no sound'' || VOC file to play for secondary attack
|-
|-
| hitPoints || number (integer) || Hitpoints. The enemy will die when it reaches 0.
| hitPoints || number (integer) || 4 || Hitpoints. The enemy will die when it reaches 0.
|-
|-
| dropItem || string or number || What item is dropped when the enemy dies. See table below for options.
| dropItem || string or number || -1 (nothing) || What item is dropped when the enemy dies. See table below for options.
|-  
|-  
| dieEffect || string or number || An effect (eg. explosion) that will play when the enemy dies. See table below for options.
| dieEffect || string or number || -1 (nothing) || An effect (eg. explosion) that will play when the enemy dies. See table below for options.
|-
|-
| hasMeleeAttack || boolean || If true, the enemy will have a melee attack. If the enemy has a melee attack, it will always be the primary attack.
| hasMeleeAttack || boolean || false || If true, the enemy will have a melee attack. If the enemy has a melee attack, it will always be the primary attack.
|-
|-
| hasRangedAttack || boolean || If true, the enemy will have a ranged attack. If the enemy has a melee attack, the ranged attack will be the secondary attack. If it does not have a melee attack, the ranged attack will be the primary attack.
| hasRangedAttack || boolean || true || If true, the enemy will have a ranged attack. If the enemy has a melee attack, the ranged attack will be the secondary attack. If it does not have a melee attack, the ranged attack will be the primary attack.
|-  
|-  
| litWithMeleeAttack || boolean || If true, the sprite will light up when it attacks with melee.
| litWithMeleeAttack || boolean || false || If true, the sprite will light up when it attacks with melee.
|-  
|-  
| litWithRangedAttack || boolean || If true, the sprite will light up when it does its ranged attack.
| litWithRangedAttack || boolean || true || If true, the sprite will light up when it does its ranged attack.
|-
|-
| projectile || string or number || What projectile the enemy will fire for its ranged attack. See table below for options.
| projectile || string or number || "rifle_bolt" || What projectile the enemy will fire for its ranged attack. See table below for options.
|-
|-
| wanderTime || number (integer) || How long (in seconds) the enemy will keep looking for the player, before it returns to its idle or "asleep" state. This time is reset when the enemy is re-alerted by the player.
| wanderTime || number (integer) || 300 || How long (in seconds) the enemy will keep looking for the player, before it returns to its idle or "asleep" state. This time is reset when the enemy is re-alerted by the player.
|-
|-
| rangedAttackDelay || number (decimal) || Time delay in seconds between range attacks (the game engine adds some variability to this)
| rangedAttackDelay || number (decimal) || 2 || Time delay in seconds between range attacks (the game engine adds some variability to this)
|-
|-
| meleeAttackDelay || number (decimal) || Time delay in seconds between melee attacks
| meleeAttackDelay || number (decimal) || 0 || Time delay in seconds between melee attacks
|-
|-
| meleeRange || number (integer) || Range (in DFU) of melee attack - how far the player can be from the enemy to be hit by it.
| meleeRange || number (integer) || 0 || Range (in DFU) of melee attack - how far the player can be from the enemy to be hit by it.
|-  
|-  
| meleeDamage || number (integer) || Damage that each melee attack will inflict.
| meleeDamage || number (integer) || 0 || Damage that each melee attack will inflict.
|-
|-
| minAttackDist || number (integer) || Minimum distance from the player (DFU) where the enemy will attack with its ranged weapon.
| minAttackDist || number (integer) || 0 || Minimum distance from the player (DFU) where the enemy will attack with its ranged weapon.
|-
|-
| maxAttackDist || number (integer) || Maximum distance from the player (DFU) where the enemy will attack with its ranged weapon.
| maxAttackDist || number (integer) || 160 || Maximum distance from the player (DFU) where the enemy will attack with its ranged weapon.
|-
|-
| fireSpread || number (integer) || Accuracy of fire. Lower numbers are more accurate.
| fireSpread || number (integer) || 30 || Accuracy of fire. Lower numbers are more accurate.
|-  
|-  
| speed || number (integer) || Speed of enemy's movement, appears to be in DFU per second. For flying enemies, this is their horizontal speed.
| speed || number (integer) || 4 || Speed of enemy's movement, appears to be in DFU per second. For flying enemies, this is their horizontal speed.
|-
|-
| verticalSpeed || number (integer) || For flying enemies only, this is their vertical speed.
| verticalSpeed || number (integer) || 10 || For flying enemies only, this is their vertical speed.
|-
|-
| rotationSpeed || number (integer) || Speed at which the enemy can rotate. Degrees per second.
| rotationSpeed || number (integer) || 720 || Speed at which the enemy can rotate. Degrees per second.
|}
|}

Revision as of 06:27, 28 October 2024

This article explains how to use custom (user-defined) AI logics in TFE.

This feature allows modders to create new enemy logics that behave similarly to the "standard" (non-boss) enemies in Dark Forces, for example Officers, Stormtroopers, Bossk, Probe Droids.

JSON locations

Custom logics are defined in JSON files. TFE will search for and load logics from all logic .JSON files found in these locations

  • DARK\Logics
  • TheForceEngine\Mods\Logics

where DARK is your Dark Forces game directory which TFE is pointing to.

In addition, if you are running a Mod from a ZIP, TFE will look for a \Logics subfolder inside the ZIP and load logics from any .JSON files found there.

Logics loaded from a Mod will take preference over any logics found in other locations that have the same name.

You can have as many logic .JSON files as you want, and each .JSON file can contain as many logics as you want. If multiple logics are loaded that have the same name, only the first one encountered with that name will be used. If you have multiple .JSON files, the order in which they are loaded by TFE is unpredictable, so the only way to be sure that your logics work the way you intend is to avoid duplicate names.

Logic JSON structure

A logic JSON should consist of a single array called "logics".

Each element of the "logics" array must consist of two items, in this order

  • "logicName" - a string which is the name of the logic
  • "data" - an object containing properties that are set for the logic

Example:

{
   "logics": [
      {
         "logicName": "LogicA",
         "data": {
            "alertSound": "alert1.voc",
            "painSound": "pain1.voc",
            "hitpoints": 25,
            "projectile": "rifle_bolt"
         }
      },
      {
         "logicName": "LogicB",
         "data": {
            "alertSound": "alert2.voc",
            "painSound": "pain2.voc",
            "hitpoints": 39,
            "speed": 20,
            "projectile": "thermal_det",
            "dropItem": "red_key"
         }
      }
   ]
}

Logic JSONs are not case sensitive. The text inside the JSON can be all uppercase, all lowercase, or any mix of upper and lowercase; it will all be read the same.

For example, "alertsound", "ALERTSOUND", "AlertSound", "alertSound" will all be accepted.

Further tips about getting the JSON format right can be found on the TFE MOD Overrides article.


Data properties

Here is a list of the properties that you can set for each logic.

You do not need to set every property. Unset properties will default to the values shown.

Properties can be listed in any order. Property names are not case sensitive, but need to be spelled correctly.

Property Type Default value Description
hasGravity boolean true If true, will be affected by gravity
isFlying boolean false If true, will be a flying enemy (like probe droid)
fieldOfView number (integer) 210 Field of view, in degrees. If set to 360, the enemy will be able to see you even if you are standing behind it.
awareRange number (integer) 20 If you are within this distance from the enemy (in DFU), it will be alerted even if you are outside its field of view. (However, this can be affected by other things, such as the ambient light.)
alertSound string no sound VOC file to play when enemy is alerted
painSound string no sound VOC file to play when enemy takes pain
dieSound string no sound VOC file to play when enemy dies
attack1Sound string no sound VOC file to play for primary attack
attack2Sound string no sound VOC file to play for secondary attack
hitPoints number (integer) 4 Hitpoints. The enemy will die when it reaches 0.
dropItem string or number -1 (nothing) What item is dropped when the enemy dies. See table below for options.
dieEffect string or number -1 (nothing) An effect (eg. explosion) that will play when the enemy dies. See table below for options.
hasMeleeAttack boolean false If true, the enemy will have a melee attack. If the enemy has a melee attack, it will always be the primary attack.
hasRangedAttack boolean true If true, the enemy will have a ranged attack. If the enemy has a melee attack, the ranged attack will be the secondary attack. If it does not have a melee attack, the ranged attack will be the primary attack.
litWithMeleeAttack boolean false If true, the sprite will light up when it attacks with melee.
litWithRangedAttack boolean true If true, the sprite will light up when it does its ranged attack.
projectile string or number "rifle_bolt" What projectile the enemy will fire for its ranged attack. See table below for options.
wanderTime number (integer) 300 How long (in seconds) the enemy will keep looking for the player, before it returns to its idle or "asleep" state. This time is reset when the enemy is re-alerted by the player.
rangedAttackDelay number (decimal) 2 Time delay in seconds between range attacks (the game engine adds some variability to this)
meleeAttackDelay number (decimal) 0 Time delay in seconds between melee attacks
meleeRange number (integer) 0 Range (in DFU) of melee attack - how far the player can be from the enemy to be hit by it.
meleeDamage number (integer) 0 Damage that each melee attack will inflict.
minAttackDist number (integer) 0 Minimum distance from the player (DFU) where the enemy will attack with its ranged weapon.
maxAttackDist number (integer) 160 Maximum distance from the player (DFU) where the enemy will attack with its ranged weapon.
fireSpread number (integer) 30 Accuracy of fire. Lower numbers are more accurate.
speed number (integer) 4 Speed of enemy's movement, appears to be in DFU per second. For flying enemies, this is their horizontal speed.
verticalSpeed number (integer) 10 For flying enemies only, this is their vertical speed.
rotationSpeed number (integer) 720 Speed at which the enemy can rotate. Degrees per second.