Jump to content

AI: Difference between revisions

4,524 bytes added ,  28 September 2011
(I hope it works ^_^)
Line 530: Line 530:


==Combat behavior part 4 : "Everybody was kung fu fighting..."==
==Combat behavior part 4 : "Everybody was kung fu fighting..."==
Ah yes. After all those OTHER things, we finally got to how A.I. system handles core gameplay feature of this game, hand to hand combat.
Ah yes. After all those OTHER things, we finally got to how A.I. system handles the core gameplay feature of this game, hand to hand combat.
First things first. As usual, player can see her/his enemy trying to perform some move, so player can then react. A.I. character cannot see a thing beacuse it does not have human eyes nor human brain. Thus the first question is how the A.I. knows about incoming attacks?
First things first. As usual, player can see her/his enemy trying to perform some move, so player can then react. A.I. character cannot see a thing beacuse it does not have human eyes nor human brain. Thus the first question is how the A.I. knows about incoming attacks?
:Answer lies within [[TRAM]] files. Each animation which can hurt somebody should have EXTENTS. Extents are invisible marks which tell A.I. character how the attack's ''trajectory'' looks. There are two types, horizontal and vertical, but more important thing A.I. wise is that without extents attack TRAMs will not be registered by A.I. characters as attacks, so A.I. will not try to block them or dodge. But if the attack has extents, then the moment A.I. character registers this enemy's attack, the A.I. gets a complete knowledge of a whole path of attacking bodyparts of this enemy's attack (see attack part of [[TRAM]]).
[[File:Melee zones.JPG|thumb|right|alt=Melee zones around a character|Rough idea of melee zones.]]
:Answer lies within [[TRAM]] files. Each animation which can hurt somebody should have EXTENTS. Extents are invisible marks which tell A.I. character how the attack's ''trajectory'' looks. There are two types, horizontal and vertical, but more important thing A.I. wise is that without extents attack TRAMs will not be registered by A.I. characters as attacks, so A.I. will not try to block them or dodge or attack with the [[TRAM]] animation properly. But if the attack has extents, then A.I. gets a complete knowledge of a whole path of attacking bodyparts of this enemy's attack (see attack part of [[TRAM]]).
:This info is used by melee part of A.I. for defense purposes (deciding what kind of dodge move to choose and whether to crouch or not) and for attack purposes - position move in melee techniques are used to give general info about the melee technique's positioning, but A.I. character will not execute the attack move of the technique till enemy is within chosen attack move's extent range.


Now back to A.I. and hand to hand combat. Fistfighting is handled via [[MELE]] profiles which are assigned to the spawnable character in her/his [[CHAR]] profile. When in melee mode, A.I. character uses vector type of movement. Unless specified otherwise, A.I. character is made to run towards its enemy.
 
:[[MELE]] profile alwas contains these parameters regarding A.I. (xml tags in brackets):
:Also, for hand to hand purposes engine recognizes roughly four zones around a character, see picture on right. These zones are then corresponding with position moves, so when melee techique has for example CloseBack, then the only time this melee techique is listed for possible execution is when enemy is in the back of the A.I. character. In all other cases (enemy in left, right or front zone), this techique is NOT listed for use. Exception is a technique with GenerousDir flag, see below for more info.
 
 
Fistfighting A.I. mode is handled via [[MELE]] profiles. MELE profile is assigned to the spawnable character in its [[CHAR]] profile. When in melee mode, A.I. character uses vector type of movement. Unless specified otherwise, A.I. character is made to run towards its enemy.
:[[MELE]] profile always contains these parameters (xml tags in brackets):
:*Character class (CharacterClass) - Link to an [[ONCC]] class. Level of importance of this parameter not known, but maybe it is neccessary in order to allow for performance of some attack moves (engine checks referenced [[ONCC]] class and its [[TRAC]]).
:*Character class (CharacterClass) - Link to an [[ONCC]] class. Level of importance of this parameter not known, but maybe it is neccessary in order to allow for performance of some attack moves (engine checks referenced [[ONCC]] class and its [[TRAC]]).
:*Notice (Notice) - percentual chance that A.I. will register incoming attack. In retail profiles it is always set 100.
:*Notice (Notice) - percentual chance that A.I. will register incoming attack. In retail profiles it is always set 100.
Line 543: Line 549:
:*Single block skill - (Single inside BlockSkill) - percentual chance of attempt to block incoming enemy's attack
:*Single block skill - (Single inside BlockSkill) - percentual chance of attempt to block incoming enemy's attack
:*Group block skill - (Group inside BlockSkill) - percentual chance of ???. Not sure, maybe of blocking more attackers?
:*Group block skill - (Group inside BlockSkill) - percentual chance of ???. Not sure, maybe of blocking more attackers?


:*Not blocked (NotBlocked) - Multiplier which affects probability of executing a technique which will not be blocked by the enemy under current circuumstances (punch combo against opponent who is running forward).
:*Not blocked (NotBlocked) - Multiplier which affects probability of executing a technique which will not be blocked by the enemy under current circuumstances (punch combo against opponent who is running forward).
Line 552: Line 557:
:*Blocked (Blocked) - Multiplier which affects probability of executing a technique that will be certainly blocked by the enemy under currend circuumstances and will not stagger or stun the enemy.
:*Blocked (Blocked) - Multiplier which affects probability of executing a technique that will be certainly blocked by the enemy under currend circuumstances and will not stagger or stun the enemy.
:*Throw Danger (ThrowDanger) - Something with throws, but only Bungie West knows what's the meaning of this field.
:*Throw Danger (ThrowDanger) - Something with throws, but only Bungie West knows what's the meaning of this field.
:There are probably two more parameters, but their meaning is a mystery up to this date.
:There are probably two more parameters, but their meaning is a mystery up to this date.


Basic melee setup is done. Now the profile branches into '''attack''' part, '''evade''' part and '''maneouver''' part. Each part has a certain number of "melee techniques". Melee technique is a compound of one or more melee moves. Melee moves are simple elements of hand to hand combat - attacks, throws, positioning, maneuvring. Maximal amount of techniques in one melee profile is 32. If this limit is exceeded, Oni crashes. Now for those three branches:
 
Basic melee setup is done. Now the profile branches into '''attack''' part, '''evade''' part and '''maneouver''' part. Each part has a certain number of "melee techniques". Melee technique is a compound of one or more melee moves. Melee moves are simple elements of hand to hand combat - attacks, throws, positioning, maneuvring. Maximal amount of techniques in one melee profile is 32. If this limit is exceeded, Oni crashes. Mentioned three parts of [[MELE]] profile are:
:*Attack branch - Techniques from this branch are executed when A.I. is trying to attack and hurt it enemy. Attack branch contains not only attack techniques, but maneuver techniques as well (morea bout this later).
:*Attack branch - Techniques from this branch are executed when A.I. is trying to attack and hurt it enemy. Attack branch contains not only attack techniques, but maneuver techniques as well (morea bout this later).
:*Evade branch - Techniques contain moves which are used to evade attack. That means escape moves (SHIFT + some direction) and various jumps/slides.
:*Evade branch - Techniques contain moves which are used to evade attack. That means escape moves (SHIFT + some direction) and/or various jumps/slides.
:*Maneuver branch - Techniques from this branch should be used by A.I. to move not only in a straightforward fashion towards the enemy, but also circle around, retreat or advance. Unfortunately, it seems this branch is never used and all maneouvring is done via Attack branch.
:*Maneuver branch - Techniques from this branch should be used by A.I. to move not only in a straightforward fashion towards the enemy, but also circle around, retreat or advance. Unfortunately, it seems this branch is never used and all maneouvring is done via Attack branch.


Line 563: Line 570:
:*Name (debugging purposes only)
:*Name (debugging purposes only)
:*Flags - possibilities are:
:*Flags - possibilities are:
::*Interruptible - This technique can "home" to some extent and if enemy gets away from its reach, technique is ended prematurely
::*Interruptible - This technique can "home" to some extent and if enemy gets away from its reach, technique is ended prematurely.
::*Unknown2 - Either GenerousDir or Fearless, meaning of this flag unknown.
::*GenerousDir - This technique is enlisted for possible execution even when facing of the A.I. does not match position move of this technique (technique uses CloseLeft, enemy is directly in front). If technique is used, A.I. character positions itself in order to perform the techique (in our example case, A.I. chracter turns left side towards enemy and perform the technique).
:*Weight - Techniques are chosen randomly but with "weight" of techique taken into account. Techniques with higher "weight" are used more often than those with lower "weight".
:*Weight - Techniques are chosen randomly but with "weight" of technique taken into account. Techniques with higher "weight" are used more often than those with lower "weight".
:*Unknown - only Bungie West folks know what this parameter should affect.
:*Unknown - only Bungie West folks know what this parameter should affect.
:*RepeatDelay - In frames, how long should be the technique unavailable after its use (to prevent from predictability).
:*RepeatDelay - In frames, how long should be the technique unavailable after its use (to prevent from predictability). For this time the technique is not enlisted in a list of performable techniques.
:*Moves, possible types of moves are:
:*Moves, possible types of moves are:
::*Position - usually takes three parameters: minimal distance, maximal distance, tolerance range, but does not have to (StartToCrouch takes no parameter). These moves are used to set up correct distances and correct stances (crouch, stand, jump) for execution of subsequent attacks or throw moves [[OBD:BINA/OBJC/MELE/MoveList/Position|HERE is a list]] of all available position melee moves.
::*Position - usually takes three parameters: minimal distance, maximal distance, tolerance range. Meaning of Minimal/Maximal distances is clear, tolerance range specifies extra distance (beyond chosen TRAM attack's extents) where A.I. chases the enemy till the enemy gets inside the extent range of the [[TRAM]] attack this A.I. charater wants to use. Then A.I. uses the TRAM attack ^_^.
:::Some position moves don't have any parameters (Crouch, StartToCrouch) and are used strictly for stance purposes - to make A.I. perform crouched or special attacks. Position moves are used to give the A.I. general sorting of available attacks, so based on the melee zone the enemy is in (see picture at the beginning of this section) only corresponding techniques are taken into account as "possible to be used" and the rest is ignored. [[OBD:BINA/OBJC/MELE/MoveList/Position|HERE is a list]] of all available position melee moves.
::*Attack - no parameter, simply some kind of attack action. [[OBD:BINA/OBJC/MELE/MoveList/Attack|HERE is a list]] of all available attack melee moves.
::*Attack - no parameter, simply some kind of attack action. [[OBD:BINA/OBJC/MELE/MoveList/Attack|HERE is a list]] of all available attack melee moves.
::*Throw - no parameter, simply some throw. [[OBD:BINA/OBJC/MELE/MoveList/Throw|HERE is a list]] of all available throw melee moves.
:::Attack move can be the only move of a techique (no position move). If that is the case, then this techique is put into a list of possibly used techniques only when its prerequisities (positioning and stance) are met via other means. For example Kick_forward can be used without a Position move, but then it is evaluated only when the A.I. character gets within the extent range of its Kick_forward [[TRAM]] move. Then the A.I. chracter has to somehow get into correct position within extent range of the Kick_forward's TRAM (maybe via other melee techniques), otherwise the technique with Kick_forward is labeled as MISSBOUNDS. When all that is OK, this a melee technique is listed for possible use.
::*Throw - no parameter, simply some throw. [[OBD:BINA/OBJC/MELE/MoveList/Throw|HERE is a list]] of all available throw melee moves. Again can be standalone, under circuumstances described above.
::*Evade - no parameter, simply some evasive action. [[OBD:BINA/OBJC/MELE/MoveList/Evade|HERE is a list]] of all available evasion melee moves.
::*Evade - no parameter, simply some evasive action. [[OBD:BINA/OBJC/MELE/MoveList/Evade|HERE is a list]] of all available evasion melee moves.
::*Maneouver - up to three parameters, these moves are used to make A.I. character move around somehow (advance, retreat, circle left/right, rouch, jump etc.) [[OBD:BINA/OBJC/MELE/MoveList/Attack|HERE is a list]] of all available maneuver melee moves.
::*Maneouver - up to three parameters, these moves are used to make A.I. character move around somehow (advance, retreat, circle left/right) or perform various movements (crouch, jump, taunt, use uncommon getup moves etc.) [[OBD:BINA/OBJC/MELE/MoveList/Attack|HERE is a list]] of all available maneuver melee moves. Almost all maneouver moves have a Duration ('''in seconds''') as a first parameter.
:In melee techniques there can be a mixture of melee moves, so one technique can contain position move followed by attack move and concluded by some maneuver move.
:In melee techniques there can be a mixture of melee moves. Very first move (shuold be position or maneouver) is evaluated to make sure if the technique can be performed under current positioning of the A.I. character and its enemy. However, throws and maneuvers are checked as well even if they are not the first tehnique, so if technique contains Throw_punch_behind, it will be listed for use only if the A.I. is in theback of its enemy. Surprisingly enough, pairing Kick_forward and Kick_back makes A.I. character kick forward when position is correct for kick forward move, then it kicks back even tough there is nothing to hit ^_^. Same with other directional attacks.






And...that's all ^_^. According to technique's weight, enemy's position and MELE setup (multipliers such as Not blocked, Blocked but has stagger etc) some "Attack branch" technique is chosen and executed. In "Attack branch" there are some maneuver techniques as well, those do not (and must not) have position move as the first move in the technique.
And...that's all ^_^. According to technique's position move (and special moves within it), a list of available techniques is generated. Acording to enlisted techniques' weights and coefficients from MELE setup (multipliers such as Not blocked, Blocked but has stagger etc) some "Attack branch" technique is chosen and executed. In "Attack branch" can be some maneuver techniques as well, those do not (and must not) have position move as the first move in the technique, because maneuvers have their own method of checking if they can be used or not. After the technique is executed it is put off the list for a time specified in its delay, list is refreshed with respect to new combat situation (positions of A.I. character and its enemy), new melee technique is chosen and so on and so on...


Next, if enemy's attack is registered by A.I., it can either let it pass completely or block it or attempt to dodge it (chooses some technique from "Evade branch").
On the other side, if enemy's attack is registered by A.I. character which is not attacking, it can either let it pass completely or block it or attempt to dodge it - then A.I. code chooses some technique from "Evade branch" according to incoming [[TRAM]] attack's extents.


Maneuver branch appears to be unused.
Maneuver branch appears to be unused.




Code behind all this must be pretty complex, hands down before Oni developers. However we, outsiders, can only guess how much work was poured into it.
Also there is one special condition to executing melee techniques. When there is an edge of a platform nearby it is usually covered in pathfinding grid as a seires of special tiles from blue (border) to orange (danger). Engine seems to check if [[TRAM]] attack's extent extends into blue or orange pathfinding tiles and according to it it waters down such techniques which would make A.I. character end in orange field (i.e. going over the edge and falling down). If there are orange tiles and enemy is behind them, engine seems to upweight jumping techniques (given the MELE has some jumping techniques) so A.I. character has some limited possibility to jump across gaps in order to reach the enemy.
:Code behind all this must be pretty complex, hands down before Oni developers who managed to pull this off.




271

edits