Help:Patching the motorcycle area checks: Difference between revisions

remove a pretty much unused category
imported>Leoetlino
No edit summary
imported>Leoetlino
(remove a pretty much unused category)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
The Master Cycle Zero cannot be used in some areas. This article lists and documents checks that must be patched to remove usage restrictions.
Because of arbitrary, hardcoded limitations, the Master Cycle Zero cannot be used in some areas. This article lists and documents checks that must be patched to remove usage restrictions.


Most of them are located in a component that is nicknamed the “ride manager” (or “RideMgr” when following BotW’s naming conventions) since it manages both horses{{check}} and the Master Cycle Zero.
Most of them are located in the MotorcycleMgr.


== Check ==
The game uses the current climate for the area check<ref>[https://github.com/leoetlino/botw-re-notes/blob/2c0b98c1d5e4cb35a11d4a3ea764323432a596ea/tools/check_master_cycle_ok_areas Extracted check from Switch 1.5.0]</ref>:
The game uses the current climate for the area check<ref>[https://github.com/leoetlino/botw-re-notes/blob/2c0b98c1d5e4cb35a11d4a3ea764323432a596ea/tools/check_master_cycle_ok_areas Extracted check from Switch 1.5.0]</ref>:


Line 25: Line 26:
* ✅ KorogForest
* ✅ KorogForest
* 🚫 GerudoDesertClimateLv2
* 🚫 GerudoDesertClimateLv2
''Note: the addresses in this article are only valid for Switch 1.5.0. Other versions (on Switch or Wii U) can be patched in a similar way, though.''


== Patching ==
== Patching ==
Line 32: Line 31:
* On Wii U, the checks are implemented in the exact same way (which makes sense since it's the same codebase), but only a single instruction has to be patched because the Wii U compiler is not quite as good at inlining functions. Simply patch the instruction at <code>0x02A32A30</code> to <code>li r3, 1</code>.
* On Wii U, the checks are implemented in the exact same way (which makes sense since it's the same codebase), but only a single instruction has to be patched because the Wii U compiler is not quite as good at inlining functions. Simply patch the instruction at <code>0x02A32A30</code> to <code>li r3, 1</code>.


== Disappearing when entering a blacklisted climate ==
== Technical details ==
''Note: the addresses below are only valid for Switch 1.5.0. Other versions (on Switch or Wii U) can be patched in a similar way, though.''
 
=== Disappearing when entering a blacklisted climate ===


Called from the Motorcycle AI root code.
Called from the Motorcycle AI root code.


<source lang="cpp">if ( v6 && !RideMgr::motorcycleCanBeUsed(v6, (float *)&v68, 0LL) )  // 0x71004ADF18
<source lang="cpp">if ( v6 && !MotorcycleMgr::motorcycleCanBeUsed(v6, (float *)&v68, 0LL) )  // 0x71004ADF18
   goto triggerDisappear;</source>
   goto triggerDisappear;</source>
Either change the condition to be always false, or change <code>RideMgr::motorcycleCanBeUsed</code> (preferred to avoid side effects):
Either change the condition to be always false, or change <code>MotorcycleMgr::motorcycleCanBeUsed</code> (preferred to avoid side effects):


<source lang="cpp">bool RideMgr::motorcycleCanBeUsed(RideMgr* this, Vec3 *positions, __int64 a3) // 0x7100679D10
<source lang="cpp">bool MotorcycleMgr::motorcycleCanBeUsed(MotorcycleMgr* this, Vec3 *positions, __int64 a3) // 0x7100679D10
{
{
   if ( (a3 || (a3 = ActorSystem::sInstance->field_C0) != 0)
   if ( (a3 || (a3 = ActorSystem::sInstance->field_C0) != 0)
Line 56: Line 58:
Patch:
Patch:


<pre>.text:0000007100679D84                AND            W0, W8, #1</pre>
<source lang="armasm">.text:0000007100679D84                AND            W0, W8, #1</source>
To:
To:


<pre>.text:0000007100679D84                 MOV             W0, #1</pre>
<source lang="armasm">.text:0000007100679D84                 MOV             W0, #1</source>
== Rune UI/sound effect ==
 
=== Rune UI/sound effect ===


Same climate based check as above, but done in a different RideMgr function. Just change:
Same climate based check as above, but done in a different MotorcycleMgr function. Just change:


<pre>.text:0000007100679650 TBNZ           W8, #0, loc_710067965C</pre>
<source lang="armasm">.text:0000007100679650 TBNZ            W8, #0, loc_710067965C</source>
to:
to:


<pre>.text:0000007100679650 B               loc_710067965C</pre>
<source lang="armasm">.text:0000007100679650 B               loc_710067965C</source>
== Refusing to spawn when in a blacklisted climate ==
=== Refusing to spawn when in a blacklisted climate ===


=== Check 1 ===
==== Check 1 ====


Deep in some RideMgr function, called from the PlayerNormal AI:
Deep in some MotorcycleMgr function, called from the PlayerNormal AI:


<source lang="cpp">else if ( !WorldMgr::sInstance
<source lang="cpp">else if ( !WorldMgr::sInstance
Line 83: Line 86:
Patch:
Patch:


<pre>.text:0000007100679BA8                 CBZ             X0, loc_7100679BD8</pre>
<source lang="armasm">.text:0000007100679BA8                 CBZ             X0, loc_7100679BD8</source>
to:
to:


<pre>.text:0000007100679BA8                 B               loc_7100679BD8</pre>
<source lang="armasm">.text:0000007100679BA8                 B               loc_7100679BD8</source>
so that the game always executes the code inside of the if block.
so that the game always executes the code inside of the if block.


=== Check 2 ===
==== Check 2 ====


Found in another RideMgr member function and also called from the PlayerNormal AI code.
Found in another MotorcycleMgr member function and also called from the PlayerNormal AI code.


<source lang="cpp">bool RideMgr::checkUsable2(RideMgr *this, __int64 a2)
<source lang="cpp">bool MotorcycleMgr::checkUsable2(MotorcycleMgr *this, __int64 a2)
{
{
   if ( this->someFlag == 1 )
   if ( this->someFlag == 1 )
     return 0;
     return 0;
   float* v4 = this->gap12C;
   float* v4 = this->gap12C;
   RideMgr::x_7(this, (float *)this->gap12C, (__int64)&this->field_134 + 4);
   MotorcycleMgr::x_7(this, (float *)this->gap12C, (__int64)&this->field_134 + 4);
   if ( a2 || (a2 = ActorSystem::sInstance->field_C0) != 0 )
   if ( a2 || (a2 = ActorSystem::sInstance->field_C0) != 0 )
   {
   {
Line 111: Line 114:
Change:
Change:


<pre>.text:000000710067B5FC                 CBZ             X0, loc_710067B62C</pre>
<source lang="armasm">.text:000000710067B5FC                 CBZ             X0, loc_710067B62C</source>
to:
to:


<pre>.text:000000710067B5FC                 B               loc_710067B62C</pre>
<source lang="armasm">.text:000000710067B5FC                 B               loc_710067B62C</source>
to make the game always return “true”.
to make the game always return “true”.


== Disappearing when being away from the motorcycle ==
=== Disappearing when being away from the motorcycle ===


This is checked by Motorcycle AI root code (at 0x71004ADF28).
This is checked by Motorcycle AI root code (at 0x71004ADF28).
Line 127: Line 130:
It is easy to change this condition to be always false.
It is easy to change this condition to be always false.


== Other checks ==
=== Other checks ===


There are a few more conditions for spawning the motorcycle<ref>0x7100678E80 in Switch 1.5.0</ref>; however patching them is not recommended as they are implemented for good reasons.
There are a few more conditions for spawning the motorcycle<ref>0x7100678E80 in Switch 1.5.0</ref>; however patching them is not recommended as they are implemented for good reasons.


=== Actor check ===
==== Actor check ====


If the actor cannot be loaded, the game will not allow the player to use the motorcycle and will show the regular “You can’t use that here” message.
If the actor cannot be loaded, the game will not allow the player to use the motorcycle and will show the regular “You can’t use that here” message.


=== 6 or 7 other checks ===
==== 6 or 7 other checks ====


The RideMgr function at 0x7100678E80 (which can be identified with a xref to "GameROMMotorcycle") calls 6 member functions that must all return true; otherwise, the motorcycle cannot be used.
The MotorcycleMgr function at 0x7100678E80 (which can be identified with a xref to "GameROMMotorcycle") calls 6 member functions that must all return true; otherwise, the motorcycle cannot be used.


The first 4 functions appear to be using the Havok AI NavMesh system. Something called “motorcycle shape cast” is used in the 3 other functions.
The first 4 functions appear to be using the Havok AI NavMesh system. Something called “motorcycle shape cast” is used in the 3 other functions.


[[Category:Guides]]
[[Category:Guides]]
[[Category:Guides (executable hacking)]]
Anonymous user