Sly 1:LOCKG

Revision as of 22:12, 18 July 2022 by TheOnlyZac (talk | contribs) (Created article for data structure)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

LOCKG (likely short for Lock Goal) is a data structure in Sly Cooper and the Thievius Raccoonus that handles interaction between Sly and obstacles locked with treasure keys.

Structure

The structure of a LOCKG is as follows:

Implementation

When the trigger volume associated with a LOCKG is triggered it sets off a sequence of events. It starts with the animation that spawns a KEY for each LOCK in the apLock array. These keys fly to their assigned locks and then despawn.

At some point a message with ID 0xXXX[check] is sent to the JT struct. This message is processed by HandleJtMessage, which checks if the ckey on the current WS (World State) is greater than the cpLock[check] on the LOCKG (ie. it checks if you have enough keys to open the lock).

If the check passes, it uses the LOCKG’s FWS as a bit mask to set the corresponding flag on the current WS’ FWS. It then unlocks the locks and sets the SMA goal based on the LOCKG’s smaGoal pointer. The SMA goal, which seems to be processed by Splice, determines the outcome (ie. what happens as a result of the locks being opened).

Once all locks have are unlocked, they are removed from from the game world along with the LOCKG itself.[check]

Example

In Prowling the Grounds, the LOCKG which handles for unlocking the cannon is based at address 0xXXXXXX[check]. It’s cpLock[check] value is 7, meaning there are 7 locks, so when you approach the cannon, it checks if you have 7 keys.

If the check fails, nothing happens. If the check passes, it sets the SMA goal to 0xXXXXXX[check], which apparently to handles removing the lid from the cannon.

Notes

  • The apLock field is an array of 8 LOCK pointers. You can change these to point to any other entity in the level and they key will fly to and delete that entity instead. If you use this method to delete JT, the cutscene can’t complete and the game soft locks.