pixel perfect collision detection
The routines now report a collision only when sprite pixels overlap.
I've modified the joystick routines to use the right joystick to move Evil Otto. When he's moved the score will turn green to denote that his collisions are the ones being displayed.
Not touching (technically this should be touching - but the revolving eye is not stored as part of the sprite image).
Touching
Evil Otto collides with humanoid
Evil Otto collides with 3 sprites
Humanoid collides with 3 sprites
For those experimenting with the source, I've finished the OPTIMIZE routines. Set OPTIMIZE = 1 and the time remaining (value in INTIM) for Vertical Blank(blue) and Over Scan(red) will be displayed below the score. E(14 in decimal) is left for VB while 16 (22) remains for OS. VB must have at least 7 left (it's the time required to refill the Digital Sample Buffer), so theres really only 7 available for VB.
Note: OPTIMIZE isn't helpful with Stella as Stella doesn't emulate the time required to run ARM code. Stella reports 1A (26) and 16 (22) for VB and OS. The difference between Stella and actual hardware can be used to tell us how long the ARM routines take to run. For VB 1A-0E = C, so the ARM code is taking 12x64*=768 cycles (6507 cycles that is) of time, or about 10 scan lines.
*we're using TIM64T so each tick of INTIM represents 64 cycles.
Next up will be detecting collisions with the playfield. After that I'll work on the missile collisions - they should work using the current collision routines, I just need to create "sprite images" that are shaped like the missiles.
ROM
ROM w/Time Remaining
frantic_harmony20110814_TR.bin
Source
2 Comments
Recommended Comments