-
Notifications
You must be signed in to change notification settings - Fork 2
ISSUE-042: fix Hunter Drones not exploding on dock, unrecallable, ign… #60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Sellafield
wants to merge
1
commit into
develop
Choose a base branch
from
hunter-dronex-fix
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
64 changes: 64 additions & 0 deletions
64
docs/db_structure/migrations/ISSUE-042-hunter-drone-faction.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| -- ISSUE-042: Hunter Drone chassis definitions are missing two options that every other | ||
| -- player-deployed drone chassis already sets, both fixed here. | ||
| -- | ||
| -- === Part 1: NPCs never aggro Hunter Drones (item 3) === | ||
| -- | ||
| -- Root cause: EntityDefaultOptions.Faction (src/Perpetuum/EntityFramework/EntityDefaultOptions.cs:151-159) | ||
| -- falls back to Faction.Niani when the `faction` key is absent from a definition's options string: | ||
| -- string typeString = _dictionary.GetOrDefault<string>("faction"); | ||
| -- return typeString != null ? (Faction)Enum.Parse(typeof(Faction), typeString) : Faction.Niani; | ||
| -- def_standard_hunter_drone_pve and def_standard_hunter_drone_pvp both had options = NULL (no | ||
| -- faction key at all), so both silently resolve to Faction.Niani -- the very faction the PvE | ||
| -- variant is designed to hunt. | ||
| -- | ||
| -- BodyPullThreatHelper.ProcessNpcThreats (src/Perpetuum/Zones/NpcSystem/AI/BodyPullThreatHelper.cs:149-156) | ||
| -- skips adding threat whenever the scanning NPC's faction equals the target's: | ||
| -- if (smartCreature.Behavior.Type != BehaviorType.RemoteControlledTurret && | ||
| -- smartCreature.ED.Options.Faction == unit.ED.Options.Faction) | ||
| -- { return; } | ||
| -- so any Niani-faction NPC treats a Hunter Drone as friendly and never retaliates. | ||
| -- | ||
| -- Every other player-deployed drone chassis already carries an explicit faction option -- verified | ||
| -- against def_nuimqol_assault_drone, def_pelistal_assault_drone, def_repair_support_drone, | ||
| -- def_mining_industrial_drone and def_harvesting_industrial_drone, all `#faction=sSyndicate`. | ||
| -- | ||
| -- === Part 2: Recalled Hunter Drones never leave the zone (found investigating item 2) === | ||
| -- | ||
| -- RemoteControlledCreature.Scoop() (src/Perpetuum/Zones/RemoteControl/RemoteControlledCreature.cs:69-89) | ||
| -- only calls RemoveFromZone() inside `if (ED.Options.PackedTurretId != 0)`. EntityDefaultOptions.PackedTurretId | ||
| -- (EntityDefaultOptions.cs:130-134) defaults to 0 when the `packedTurretId` key is absent -- which it | ||
| -- was for both hunter chassis rows -- so a drone that successfully retreats to guard range and calls | ||
| -- Scoop() (HunterRetreatAI.cs:67) would silently do nothing and sit there forever. | ||
| -- | ||
| -- This is NOT missing content: def_standard_hunter_drone_rcu_pve (8978) and | ||
| -- def_standard_hunter_drone_rcu_pvp (8979) are the same dual-purpose ammo items every other drone | ||
| -- type uses -- consumed on deploy AND returned to cargo on recall. Confirmed against the existing, | ||
| -- working pointer pair for def_nuimqol_assault_drone: chassis (8603) has `packedTurretId=i219c` | ||
| -- pointing at its ammo unit (8604), and that ammo unit has `turretId=i219b` pointing back at the | ||
| -- chassis -- a bidirectional pair. The hunter RCU items already carry the forward half | ||
| -- (`def_standard_hunter_drone_rcu_pve.turretId=i230f` -> chassis 8975, | ||
| -- `def_standard_hunter_drone_rcu_pvp.turretId=i2310` -> chassis 8976); only the chassis side's | ||
| -- `packedTurretId` pointing back was missing. 8978 = 0x2312, 8979 = 0x2313 (confirmed via SQL | ||
| -- Server's own FORMAT(), not hand arithmetic). | ||
| -- | ||
| -- Safe to re-run: each WHERE guard makes its statement a no-op once the option is already present. | ||
|
|
||
| UPDATE dbo.entitydefaults | ||
| SET options = COALESCE(options, '') + '#faction=sSyndicate' | ||
| WHERE definitionname IN ('def_standard_hunter_drone_pve', 'def_standard_hunter_drone_pvp') | ||
| AND (options IS NULL OR options NOT LIKE '%faction=%'); | ||
|
|
||
| UPDATE dbo.entitydefaults | ||
| SET options = COALESCE(options, '') + '#packedTurretId=i2312' | ||
| WHERE definitionname = 'def_standard_hunter_drone_pve' | ||
| AND (options IS NULL OR options NOT LIKE '%packedTurretId=%'); | ||
|
|
||
| UPDATE dbo.entitydefaults | ||
| SET options = COALESCE(options, '') + '#packedTurretId=i2313' | ||
| WHERE definitionname = 'def_standard_hunter_drone_pvp' | ||
| AND (options IS NULL OR options NOT LIKE '%packedTurretId=%'); | ||
|
|
||
| -- Verification: both rows should now show options containing both '#faction=sSyndicate' and | ||
| -- '#packedTurretId=i2312' / '#packedTurretId=i2313' respectively. | ||
| -- SELECT definition, definitionname, options FROM dbo.entitydefaults | ||
| -- WHERE definitionname IN ('def_standard_hunter_drone_pve', 'def_standard_hunter_drone_pvp'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.