Actions

SCHG

Difference between revisions of "Sonic Riders/Memory Editing/Functions"

From Sonic Retro

m (Append Template)
(Whoopsie, I'm blind.)
Line 1: Line 1:
{{SCHG Riders}}
 
== Disclaimer ==
 
  
The following structures are illustrated through the use of C# code in order to simplify maintenance of this SCHG.
 
 
Exported from the following Github project: https://github.com/sewer56lol/Sewer56.SonicRiders and mirrored by hand.
 
 
=== Hoverboarding Speed Formulae ===
 
 
<pre>
 
 
/// <summary>
 
/// Calculates the speed of an individual extreme gear for a specific formation.
 
/// </summary>
 
/// <param name="extremeGear">The extreme gear for which to calculate the gear speed for (Enumerable).</param>
 
/// <param name="formationType">The type of the character to calculate the gear speed for (Speed, Fly, or Power).</param>
 
public static float GetGearSpeed(ExtremeGear* extremeGear, FormationTypes formationType)
 
{
 
    float characterTypeSpeedMultiplier = Players.CharacterTypeStats[(int)formationType].MaxSpeedMultiplier;
 
    float speed = 216 * (characterTypeSpeedMultiplier + extremeGear->SpeedHandlingMultiplier);
 
 
    // Apply Speed Multiplier
 
    return speed * (extremeGear->SpeedMultiplier + 1);
 
}
 
</pre>
 

Revision as of 15:16, 14 July 2018