Actions

SCHG How-to

Difference between revisions of "S1 Split Guides/Basic ASM Editing (Spin Dash)"

From Sonic Retro

m (Steps)
(Steps: +caps)
Line 83: Line 83:
  
  
.....Oh dear. This doesn't look right. But whenever you hold down and press A, B or C, Whoosh, sonic goes off! But at least the code works! Ok, So to change the animation , go to <asm>move.b    #9,$1c(a0)</asm> and change it to <asm>move.b    #3,$1c(a0)</asm> so it's the jumping animation, to make it like the Sonic CD Spindash.
+
.....Oh dear. This doesn't look right. But whenever you hold down and press A, B or C, Whoosh, Sonic goes off! But at least the code works! Ok, So to change the animation , go to <asm>move.b    #9,$1c(a0)</asm> and change it to <asm>move.b    #3,$1c(a0)</asm> so it's the jumping animation, to make it like the Sonic CD Spindash.
  
  

Revision as of 12:37, 18 August 2013

(Original guide by Qjimbo)

You might not think the words "basic" and "assembly" could belong in the same sentence, however what we plan to do in this tutorial takes a more modular approach to our disassembly than you might have thought was possible.

Porting the Spin Dash from the Early Prototype

And that is today's project! We are going to use the Early Prototype disassembly that drx made, reason being that he took care over to ensure it used all the same label names as Hivebrain's Sonic 1 disassembly. This means porting data from it is a lot more straightforward than from the existing Sonic 2 disassembly.

Recommended Tools and Files

You can use any text editor to edit the disassembly, however I recommend using ConTEXT and Ambil's M68K Highlighter.

Text editor for editing the disassembly.

Highlighter that allows clearer code editing. After installing ConTEXT, place this in your C:\Program Files\ConTEXT\Highlighters folder.

The disassembly of the Sonic 2 Nick Arcade Beta

Useful resource for understanding 68k assembly instructions.

Steps

1. First things first, we need to extract the disassembly out of the rar file. Extract it into the same folder as our Sonic 1 project (C:\SonED2-1\s1h\).
2. Now, we can open all the files we are going to use in ConTEXT. Open C:\SonED2-1\s1h\sonic1.asm and C:\SonED2-1\s1h\Sonic 2 (Early prototype).asm . ConTEXT uses tabs so it's easy to switch between which file we are editing.
Asmtut01.png


3. Now to find the Spin Dash routine in the Nick Arcade beta. Select the Sonic 2 (Early prototype).asm tab and do a search for Sonic_Spindash
Asmtut02.png


The set of data we reach is this: <asm>Obj01_MdNormal: ; DATA XREF: ROM:Obj01_Modes?o bsr.w Sonic_Spindash bsr.w Sonic_Jump bsr.w Sonic_SlopeResist bsr.w Sonic_Move bsr.w Sonic_Roll bsr.w Sonic_LevelBoundaries jsr SpeedToPos bsr.w Sonic_AnglePos bsr.w Sonic_SlopeRepel rts</asm>

Obj01 is the most important object, it's the Sonic object! This table contains all of Sonic's moves. For example, <asm>bsr.w Sonic_Jump</asm> is the line for Sonic jumping, however it is not the real code for it. It is where it says <asm>Sonic_Jump:</asm> and there is THE real code.

4. Now anyway, Hit F3 on ConTEXT to find the next occurance and we're taken to the Spindash routine itself!
Asmtut03.png


The next step is to select from Sonic_Spindash: all the way down to ; End of function Sonic_Spindash. Copy this into the clipboard.

5. Now click the sonic1.asm tab. What we have to do now is place the Spindash routine in it's equivalent place in Sonic 1. Search for ; End of function Sonic_JumpHeight in sonic1.asm and right under that line, paste the spindash routine there!
Asmtut04.png


<asm>; End of function Sonic_JumpHeight

[CODE]

---------------------------------------------------------------------------
Subroutine to slow Sonic walking up a slope</asm>
6. Now we've pasted the code in, we have to edit the table of Sonic's routines in Sonic 1. Remember the table we saw earlier in Nick Arcade beta? Sonic 1 doesn't have the spindash line! So, go to <asm>Obj01_MdNormal</asm> and here it is again!
Asmtut05.png


7. Now we insert 1 line ourselves: <asm>bsr.w Sonic_Spindash</asm> Put this on top of "Sonic_Jump".
Asmtut06.png


8. Now is a good time to save sonic1.asm, stop and take a look at what we've done. Run build.bat and let's take a look at our new s1built.bin.
SCHG Spin Dash Result.png


.....Oh dear. This doesn't look right. But whenever you hold down and press A, B or C, Whoosh, Sonic goes off! But at least the code works! Ok, So to change the animation , go to <asm>move.b #9,$1c(a0)</asm> and change it to <asm>move.b #3,$1c(a0)</asm> so it's the jumping animation, to make it like the Sonic CD Spindash.


9. Now save the assembly file and build it again and then open "s1built.bin" in your emulator....You will see the working spindash!

What you will see

Spinanim.gif

We have now put a perfect spindash in Sonic 1! In part 2, we will show you how to reset the camera when dashing, as well as share some more ASM goodies! Bye for now!

SCHG How-To Guide: Sonic the Hedgehog (16-bit)
Fixing Bugs
Fix Demo Playback | Fix a Race Condition with Pattern Load Cues | Fix the SEGA Sound | Display the Press Start Button Text | Fix the Level Select Menu | Fix the Hidden Points Bug | Fix Accidental Deletion of Scattered Rings | Fix Ring Timers | Fix the Walk-Jump Bug | Correct Drowning Bugs | Fix the Death Boundary Bug | Fix the Camera Follow Bug | Fix Song Restoration Bugs | Fix the HUD Blinking | Fix the Level Select Graphics Bug | Fix a remember sprite related bug
Changing Design Choices
Change Spike Behavior | Collide with Water After Being Hurt | Fix Special Stage Jumping Physics | Improve the Fade In\Fade Out Progression Routines | Fix Scattered Rings' Underwater Physics | Remove the Speed Cap | Port the REV01 Background Effects | Port Sonic 2's Level Art Loader | Retain Rings Between Acts | Add Sonic 2 (Simon Wai Prototype) Level Select | Improve ObjectMove Subroutines | Port Sonic 2 Level Select
Adding Features
Add Spin Dash ( Part 1 / Part 2 / Part 3 / Part 4 ) | Add Eggman Monitor | Add Super Sonic | Add the Air Roll
Sound Features
Expand the Sound Index | Play Different Songs Per Act | Port Sonic 2 Final Sound Driver | Port Sonic 3's Sound Driver | Port Flamewing's Sonic 3 & Knuckles Sound Driver | Change The SEGA Sound
Extending the Game
Load Chunks From ROM | Add Extra Characters | Make an Alternative Title Screen | Use Dynamic Tilesets | Make GHZ Load Alternate Art | Make Ending Load Alternate Art | Add a New Zone | Set Up the Goggle Monitor | Add New Moves | Add a Dynamic Collision System | Dynamic Special Stage Walls System | Extend Sprite Mappings and Art Limit | Enigma Credits | Use Dynamic Palettes
Miscellaneous
Convert the Hivebrain 2005 Disassembly to ASM68K
Split Disassembly Guides
Set Up a Split Disassembly | Basic Level Editing | Basic Art Editing | Basic ASM Editing (Spin Dash)