Difference between revisions of "Category:Detection"

4,747 bytes added ,  06:20, 9 December 2014
m
imported>JRoush
m
imported>Saebel
 
(15 intermediate revisions by 4 users not shown)
Line 2: Line 2:


Quite a few variables go into calculating detection levels.  They fall into three basic categories: Sight, Sound, and Sneak Skill.  Sight describes how well the detector can see the target, and only matter if the detector actually has a direct line-of-sight.  Sound measures how much noise the target is making from movement and from being in combat.  Skill measures the sneak skills of the detector  and the target.  In all three categories the distance from the detector to target plays a very important role.  
Quite a few variables go into calculating detection levels.  They fall into three basic categories: Sight, Sound, and Sneak Skill.  Sight describes how well the detector can see the target, and only matter if the detector actually has a direct line-of-sight.  Sound measures how much noise the target is making from movement and from being in combat.  Skill measures the sneak skills of the detector  and the target.  In all three categories the distance from the detector to target plays a very important role.  
Some of the conditions in the formula are still under investigation.  In particular, the detection does not always correctly recognize when the target is in combat.  Whether this is specific to the player or due to some other bug is not yet known.
   
   
The complete formula for Detection Level is given below.  Because the formula is so complicated, it is broken into smaller pieces and organized in a table.  Conditional terms are enclosed in square brackets, e.g. "[ + 400, if target is yellow]" means "add 400 if the target is yellow, otherwise ignore this term".
The complete formula for Detection Level is given below.  Because the formula is so complicated, it is broken into smaller pieces and organized in a table.  Conditional terms are enclosed in square brackets, e.g. "[ + 400, if target is yellow]" means "add 400 if the target is yellow, otherwise ignore this term".
Line 21: Line 23:
Otherwise:
Otherwise:
  [[fSneakBaseValue]]  
  [[fSneakBaseValue]]  
  [ + [[fSneakTargetAttackBonus]], if target attacked detector]
  [ + [[fSneakTargetAttackBonus]], for a single frame the first time the target attacks the detector]
  [ + SoundBonus, if target is not swimming]
  [ + SoundBonus, if target is not swimming]
  [ + [[fSneakSleepBonus]], if detector is sleeping]
  [ + [[fSneakSleepBonus]], if detector is sleeping]
Line 32: Line 34:
  [[fSneakSoundsMult]] * DistanceFactor *
  [[fSneakSoundsMult]] * DistanceFactor *
  (
  (
   [ MovementFactor, if target is moving]
   [ MovementFactor, if target is moving and target Sneak mastery < Expert]
   [ + [[fSneakTargetInCombatBonus]], if target is in combat]
   [ + [[fSneakTargetInCombatBonus]], if target is in combat]
  )
  )
  [ * [[fSneakSoundLosMult]], if detector has no line of sight to target]
  [ * [[fSneakSoundLosMult]], if detector has no line of sight to target]
 
The sound bonus cannot be negative.  If it is less than zero, it is set to zero.
|-
|-
| Movement Factor
| Movement Factor
| align="left" |
| align="left" |
  (
  (
   [[fSneakBootWeightBase]]  
   [[fSneakBootWeightBase]]
   [ + [[fSneakBootWeightMult]] * (tgt boot weight), if tgt Sneak mastery < Journeyman]
   [ + ([[fSneakBootWeightMult]] * (tgt boot weight)), if tgt Sneak mastery < Journeyman ]
  )
  )
  [ * [[fSneakRunningMult]], if target is running and target Sneak mastery < Expert]
  [ * [[fSneakRunningMult]], if target is running ]


|-  
|-  
Line 51: Line 53:
  [[fSneakLightMult]] * DistanceFactor * LightFactor * ChameleonFactor * BlindnessFactor
  [[fSneakLightMult]] * DistanceFactor * LightFactor * ChameleonFactor * BlindnessFactor
  [ * [[fSneakSwimmingLightMult]], if target is swimming]   
  [ * [[fSneakSwimmingLightMult]], if target is swimming]   
   
The sight bonus cannot be negative. If it is less than zero, it is set to zero.
|-
|-
| Light Factor
| Light Factor
Line 60: Line 62:
   [ * [[fDetectionNightEyeBonus]], if detector has Night Eye]
   [ * [[fDetectionNightEyeBonus]], if detector has Night Eye]
  )
  )
Light Factor is forced into the range [0 - 1]


'light level on target' measures the ambient light, plus changes from the Darkness effect.
'light level on target' measures the ambient light, plus changes from the Darkness effect.  Falls in range from 0 to 100.


|-  
|-  
Line 73: Line 74:
| Blindness Factor
| Blindness Factor
| align="left" |
| align="left" |
  1 - (Blindness level of target)/100
  1 - (Blindness level of detector)/100
Blindness Factor is forced into the range [0 - 1]
Blindness Factor is forced into the range [0 - 1]


Line 81: Line 82:
  [[fSneakSkillMult]] *  
  [[fSneakSkillMult]] *  
  (
  (
   (detector Sneak skill) * DistanceFactor
   (detector Sneak skill * DistanceFactor)
   [ - target Sneak skill, if target is sneaking]
   [ - target Sneak skill, if target is sneaking and not in combat]
  )
  )


Line 105: Line 106:
! style="background:#efefef;" | <center> Threshold </center>  
! style="background:#efefef;" | <center> Threshold </center>  
! style="background:#efefef;" | <center> Used By </center>
! style="background:#efefef;" | <center> Used By </center>
|-
| 0
| Zero seems to be an upper limit for detection thresholds.  If the detection level is greater than zero, the target is always(?) detected.
|-
|-
| [[fSneakUnseenMin]]
| [[fSneakUnseenMin]]
| all actors that are unaware of target
| all actors that are unaware of target
all non-hostile actors
all non-hostile actors
|-
| [[fSneakNoticedMin]]
| actors are aware that target is near and speak accordingly
|-
|-
| [[fSneakLostMin]]
| [[fSneakLostMin]]
Line 120: Line 127:
A final note: The target-is-in-combat bonus is fairly significant.  Combined with the much lower combat threshold, this can make it ''very'' difficult for an actor to return to hiding once a hostile actor has seen them.
A final note: The target-is-in-combat bonus is fairly significant.  Combined with the much lower combat threshold, this can make it ''very'' difficult for an actor to return to hiding once a hostile actor has seen them.


==Performance==
Every NPC/Creature that is high processing makes a round of detection calls every .3 seconds.  Those detection calls will be made against everyone within the detection range of the actor, not just against the player.  It also doesn't matter whether the target is sneaking or not.  Sneaking merely modifies the target's ability to be detected.


Therefore, as the number of active actors in an area increase, the number of detection calls made increases exponentially.
{|border="1" cellpadding="5" cellspacing="0"
|-
! style="background:#efefef;" | <center> # of actors in the area </center>
! style="background:#efefef;" | <center> # of detection calls </center>
! style="background:#efefef;" | <center> ~ # per second </center>
|-
| 1 actor + player
| 1
1 call vs player
| 3
|-
| 2 actors + player
| 4
2 calls vs player, 1 call per NPC vs other NPC
| 12
|-
| 3 actors + player
| 9
3 calls vs player, 2 calls per NPC vs other NPCs
| 27
|-
| 4 actors + player
| 16
4 calls vs player, 3 calls per NPC vs other NPCs
| 48
|-
| 10 actors + player
| 100
10 calls vs player, 9 calls per NPC vs other NPCs
| 300
|-
| 15 actors + player
| 225
15 calls vs player, 14 calls per NPC vs other NPCs
| 675
|-
| 20 actors + player
| 400
20 calls vs player, 19 calls per NPC vs other NPCs
| 1200
|-
| 30 actors + player
| 900
30 calls vs player, 29 calls per NPC vs other NPCs
| 2700
|}
In the above examples, this assumes that everyone is within the detection range of everyone else.
In exterior locations, actors are rarely so clumped together except in high traffic areas such as the Market District.  But then again, exteriors have default range of 2x the interior detection distance, which is roughly four times the area.
With default Oblivion, you will rarely run into large numbers of NPCs/creatures that are densely packed.  But in a heavily modded Oblivion, this can have a noticeable effect on performance when the player enters highly populated areas.  Detection is probably not the only Oblivion feature that behaves like this, but it's the one that we for sure know behaves this way consistently all the time.
Any mod that alters the detection formula (such as SDR) in combination with mods that increase the population density will therefore potentially impact performance as well, depending on how the mod is designed and implemented.
==Detection Functions==
[[IsActorDetected]] does not appear to call the detection formula, since it does not require both the target and detector to function.  It is the simplest method of determining whether an actor is being detected at any given time.
[[GetDetectionLevel]] does not appear to call the detection formula either, and may be the most efficient method of determining the detection result of a detector/target pair, especially when a mod that alters detection (like SDR) is in the load order.  Although it is unknown whether or not the result is based on Oblivion's native detection results or the detection altering mod's results.  The theory is that each detection result of target to detector is tracked internally, and is merely looked up by the GetDetectionLevel function.
[[GetDetected]], on the other hand, forces Oblivion to run the entire detection formula, and therefore any mod that alters or hooks that formula will have its sub-scripts called.  Depending on how often it is used, this could potentially cause performance issues.
==Notes==
* Dead actors seem to have their detection status "locked in" at whatever value it was when they died. This means an actor aware of the player when the player kills him, will ''always'' be considered aware of the player (though this does not matter since the actor is dead). It is therefore important in scripts which check detection levels to also make sure that the "detector" is, in fact, alive, in addition to checking other detection settings.
* The bug above also applies when [[SetUnconscious]] is used on an actor, until the effects of that command are reverted.


==See Also==
==See Also==
[[Sneak]]
[[Sneak]]
[[GetDetectionLevel]]
[[GetDetected]]
[[IsActorDetected]]




Anonymous user