Actions

Difference between revisions of "Sonic Physics Guide"

From Sonic Retro

(Better descriptions, formatting, & added page contents links)
m (Reflecting page updates)
Line 90: Line 90:
 
'''[[SPG:Game Enemies|Game Enemies]]'''
 
'''[[SPG:Game Enemies|Game Enemies]]'''
 
:Badnik and bosses behaviour, collision, and specific interaction with the Player.
 
:Badnik and bosses behaviour, collision, and specific interaction with the Player.
:*[[SPG:Game Enemies#Sonic 1 Enemies|''Sonic 1 Enemies'']]
+
:*[[SPG:Game Enemies#Badniks|''Badniks'']]
 +
:*[[SPG:Game Enemies#Bosses|''Bosses'']]
  
 
'''[[SPG:Ring Loss|Ring Loss]]'''
 
'''[[SPG:Ring Loss|Ring Loss]]'''
Line 97: Line 98:
 
'''[[SPG:Special Abilities|Special Abilities]]'''
 
'''[[SPG:Special Abilities|Special Abilities]]'''
 
:General special abilities such as spindashing and elemental shields.
 
:General special abilities such as spindashing and elemental shields.
:*[[SPG:Special_Abilities#Spindash_.28Sonic_2.2C_3.2C_.26_K.29|Spindash]]
+
:*[[SPG:Special_Abilities#Spindash_.28Sonic_2.2C_3.2C_.26_K.29|''Spindash'']]
:*[[SPG:Special_Abilities#Shield_Abilities_.28Sonic_3_.26_K.29|Shield Abilities]]
+
:*[[SPG:Special_Abilities#Shield_Abilities_.28Sonic_3_.26_K.29|''Shield Abilities'']]
 
</div>
 
</div>
  
Line 108: Line 109:
 
'''[[SPG:Animations|Animations]]'''
 
'''[[SPG:Animations|Animations]]'''
 
:Animations system, and specific animation timings & rules.
 
:Animations system, and specific animation timings & rules.
:*[[SPG:Animations#Animation_System|Animation System]]
+
:*[[SPG:Animations#Animation_System|''Animation System'']]
:*[[SPG:Animations#Variable Speed Animation Timings|Variable Speed Animation Timings]]
+
:*[[SPG:Animations#Variable Speed Animation Timings|''Variable Speed Animation Timings'']]
:*[[SPG:Animations#Normal Animation Timings|Normal Animation Timings]]
+
:*[[SPG:Animations#Normal Animation Timings|''Normal Animation Timings'']]
:*[[SPG:Animations#Animation Rules|Animation Rules]]
+
:*[[SPG:Animations#Animation Rules|''Animation Rules'']]
 
</div>
 
</div>
  
Line 118: Line 119:
 
'''[[SPG:Overlay Scripts|Overlay Scripts]]'''
 
'''[[SPG:Overlay Scripts|Overlay Scripts]]'''
 
:Lua scripts which overlay the game in an emulator for an interactive visual of collision.
 
:Lua scripts which overlay the game in an emulator for an interactive visual of collision.
:*[[SPG:Overlay_Scripts#Sonic_1_Overlay|Sonic 1 Overlay]]
+
:*[[SPG:Overlay_Scripts#Sonic_1_Overlay|''Sonic 1 Overlay'']]
 
</div>
 
</div>
 
[[Category:Sonic Physics Guide| ]]
 
[[Category:Sonic Physics Guide| ]]

Revision as of 12:27, 26 February 2022

ROM Hacks make the process of developing a functional Sonic game with unique art, enemies, and modifications much easier, since the game engine and basic mechanics are already functional. However, if the game requires a different game engine, modifying existing low-level assembly may be inappropriate, and some game designers might choose to program their own unique game engine. The physics of a game engine are rules that describe how to transform the Player's input (either in the form of buttons, keyboard, or even a mouse if the designer feels inclined) into appropriate changes in the position of the sprites in the game (such as the Sonic sprite, or alternatively, how enemy sprites will respond). These physics guides will hopefully make the process of simulating the rules used in Sonic games easier.

Since the rules themselves are independent of how they are implemented, many people choose programming languages such as Java, C, C++, Python, or a Lisp dialect to implement game physics. In addition, people can choose to use more specialized applications like Adobe Flash (Animate), GameMaker Studio 2, or a Clickteam program like Multimedia Fusion 2.

Hopefully, these guides will provide adequate information to facilitate implementation.

Physics Guides

Basics

A prerequisite for much of the info on this guide, including common variables, how angles work, how precise values for positions and speeds work, how object sizes are displayed, and more.

Characters

Information about specific characters and their constants, variables, their varying sizes and jump height, and also detailing how their specific moves work.

Collision

Solid Tiles

A detailed description of how sloped terrain is constructed and detected.

Slope Collision

Slopes Part 1: How the Player object uses its sensor arrangement to detect and react to Solid Tiles and slopes.

Solid Objects

Object hitboxes, the Player's hitbox, object solidity, platforms, and other ways objects directly interact with other objects.

Physics

Slope Physics

Slopes Part 2: How the Player moves with momentum over angled surfaces, and collides with extreme slopes such as walls and ceilings.

Air State

Horizontal input & general physics of the Player while they are in the air.

Running

Horizontal input & general physics of the Player while walking/running.

Jumping

Jump physics, jumping at angles, and how controllable jump height is achieved.

Rolling

Horizontal input & general physics of the Player while rolling.

Getting Hit

What happens when the Player gets hit.

Rebound

The Player's physics bouncing off enemies and other destroy-able items.

Underwater

The Player's physics underwater.

Super Speeds

The Player's abilities when super.

Gameplay

Main Game Loop

The order that objects update each frame, and order of specific events like Player collision and movement.

Game Objects

Mechanics and sizes for things like rings, pushable blocks, buttons, and springs. How they are constructed, function, and interact with the Player.

Game Enemies

Badnik and bosses behaviour, collision, and specific interaction with the Player.

Ring Loss

Ring dispersal mechanics and physics when lost.

Special Abilities

General special abilities such as spindashing and elemental shields.

Presentation

Camera

Camera mechanics when following the Player.

Animations

Animations system, and specific animation timings & rules.

Special

Overlay Scripts

Lua scripts which overlay the game in an emulator for an interactive visual of collision.