-Heavy RNG manipulation
-Takes damage to save time
This is an improvement of 225 frames (3.75 seconds) over the current TAS.
I first started improving this TAS when I noticed some obvious improvements used in the RTA boss fights but not the TAS. I became slightly obsessed with shaving frames, and in doing so taught myself to script in Lua.
The two scripts I wrote are:
1) A hitbox script for all objects, which includes not only objects but the stage borders themselves (solid graphic tiles), with multiple other on-screen data.
2) A script that simulates the game's random number generator and how it is manipulated in order to find a way to manipulate some of the boss fights I wanted with the smallest frame investments - namely, the eel and seahorse fights.
STAGE 1
In this stage (and every other stage) I managed to shave off frames using careful subpixel analysis to cut corners as closely as possible. I also worked on reducing lag frames. For example, the octopus rooms often cause multiple lag frames which can be reduced with subtle changes in movement. Also, I found that it's possible to very carefully squeeze past the final fish, removing the need to slow down to bubble it.
STAGE 1 - Boss
I saved time here by waiting to throw the third fish at the Shark as so not to delay the spawning of the 4th and final fish.
Even though it didn't save me any time right away, I performed some very subtle RNG manipulation in Stage 1. More details in the Stage 2 Boss section below.
I also discovered that subpixel values carry over from the end of a boss fight to the next stage, so I maximized them accordingly. Specifically, setting the x subpixel to 0xFF and the y subpixel to 0x7F results in "maximized" (bottom-right) values of 0xFF for both at the first actionable frame of the next stage.
STAGE 2
My movement through the first octopus room looks unoptimized (I ram into a barrel I could have avoided), but by doing so I managed to prevent one of the octopus' rocks from spawning, which allows me to cut the next corner more closely and save time overall.
STAGE 2 - Boss
This was the most complex setup of the TAS. First of all, I discovered an interesting glitch regarding the crabs spawned during this fight. Normally, the crabs' timer (for how long they stay ducking before they start walking and can be bubbled) is randomly either 64 or 128 frames, though this can be toggled by moving to the other side of the crab as it hits the ground. However, the row of object values used for this timer is the same row used by the timer for bubbled enemies, to determine how long they stay bobbing before they begin floating upwards. Normally, when an object spawns in a previously occupied object slot, all relevant values are wiped; however, when the crab spawner object in this room spawns a new crab, it does not overwrite the timer value. This means that, if this value already contains a nonzero value, the crab will adopt this value as its initial timer value rather than the randomly selected value. Thus, by letting the bubble timers for the first two crabs run as close to zero as possible before grabbing them, I set these values very low, so that when the crabs in the 3rd cycle finally spawn they are able to be bubbled right away.
Incorporating this glitch, I happened to find a setup for a fast fight. However, this had multiple RNG requirements. In order to set up this specific fight, I wrote an LUA script that looks at every possible place from the beginning of the game to the eel fight that frames can be "invested" in order to alter the RNG from that point onward, then ran it in order to find every possible configuration that would result in the crab patterns I wanted. Then I investigated each of those viable results to find one from which an optimal eel pattern could be derived (specifically, I wanted an eel to appear in the bottom-middle spot, since my fight strategy involves ramming a crab directly into it here). I finally found one, which is the one I use here.
The places that frames can be "invested" to alter RNG are: 1) delaying frames before the starfish spawner, 2) delaying frames before the shark fight, 3) making use of optional RNG routines during the shark fight*, 4) delaying frames before the eel fight, and 5) delaying frames before crab cycle 2 (by waiting to bubble the 2nd crab of cycle 1)
  • there is a section of code that runs if Ariel comes within 32 vertical pixels of the shark as it's counting down to spawn fish. When this happens, it does an RNG check. There is a 50% chance that the timer will stop and no fish will be spawned that cycle, and a 50% chance that the timer will reset but fish will still spawn. Regardless of the result, doing so alters the RNG seed. Since you can delay which frame this happens on, this also becomes a possible place to invest frames. And since there are two fish-spawn cycles in the shark fight, you can do it up to two times.
Also, I found out by complete accident that if you kill both Eels at once, it spawns two level-end objects. This doesn't result in anything special happening (grabbing the 2nd one simply replays the jingle and resets the level end timer) but it's funny.
Stage 3 - Boss
Again, saved time here using RTA techniques of waiting to throw the shell as not to delay item spawns.
Stage 4 - Boss
I used a similar script to the one before to help me get the seahorse fight I wanted. The random elements in the seahorse fight are not only the enemy spawns but also the seahorse's timer (the time between shots is either 32, 64 or 96 frames). It was nowhere near as complex as my eel script though.
Stage 5 - Boss
I didn't really have any big plan for how to manipulate Ursula, I just did trial and error and found a fight faster than the current TAS, and without having to invest any frames prior to the fight.
URSULA 2
I invested 4 frames before grabbing the urn in the previous level to get a better fight & somehow shaved time off here from the published TAS as well.
POSSIBLE IMPROVEMENTS
- More thorough RNG analysis. It's possible I could use the same methodology to write a script that looks at all of the RNG for the entire game & finds a way to manipulate better fights in even fewer frames. But the script I wrote began crashing within a 12 frame max analysis.
- For the eel fight, I actually found a way to manipulate one of the crabs in cycle 2 to have a timer of 1 with a very convoluted setup in the room prior involving the creation of dust clouds (which also use the same row for their timers). However the setup took so long that I doubt it would have saved any time. If I find a different way to set it up it could result in a complete reworking of the eel fight (though a very tiny time save even if successful).
- Probably still possible to shave a frame here and there with even more careful subpixel & frame management.
Anyway, I learned a lot about analyzing NES assembly code while writing my Lua scripts & I'd like to see if I can improve any of the other NES Capcom TASes that I know use shared code from this one.
Another glitch I found: there is a screen-wrapping glitch (found it in Ursula 2, possibly elsewhere) where if you shoot a bubble off the very left side of the screen, it can bubble an enemy just as they spawn on the right side of the screen. (& possibly vice versa?) No known application of this yet.

Memory: Judging
Memory: Optimization looks good as an improvement to the published movie.
Entertainment on the other hand is about on par with the current movie. The movie moves at a decent pace but it doesn't feel like anything particularly special happens in it. The current publication is in the Vault with a borderline entertainment rating of 6.2. Audience feedback was fairly mixed as well. In this case I will simply have this movie inherit its predecessor's tier.
Accepting to Vault as an improvement to [3298] NES The Little Mermaid, Disney's by McBobX in 06:41.32.
feos: Pub.

TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14852
Location: 127.0.0.1
This topic is for the purpose of discussing #6195: Jigwally's NES Disney's The Little Mermaid in 06:37.58
Spikestuff
They/Them
Editor, Publisher, Expert player (2283)
Joined: 10/12/2011
Posts: 6335
Location: The land down under.
WebNations/Sabih wrote:
+fsvgm777 never censoring anything.
Disables Comments and Ratings for the YouTube account. Something better for yourself and also others.
Joined: 7/12/2011
Posts: 142
Location: Indianapolis
I’ve been following the progress of this on Twitter. Solid improvement for a great game. Gets a yes from me! Great work Dug
Memory
She/Her
Site Admin, Skilled player (1522)
Joined: 3/20/2014
Posts: 1762
Location: Dumpster
Do you have a youtube encode for this? Would you like someone else to make one for you?
[16:36:31] <Mothrayas> I have to say this argument about robot drug usage is a lot more fun than whatever else we have been doing in the past two+ hours
[16:08:10] <BenLubar> a TAS is just the limit of a segmented speedrun as the segment length approaches zero
Jigwally
He/Him
Active player (417)
Joined: 3/11/2012
Posts: 119
Thanks, added link
Alyosha
He/Him
Editor, Expert player (3520)
Joined: 11/30/2014
Posts: 2724
Location: US
Impressive improvement JigWally, especially since the previous 2 authors were AnS and McBobX.
Judge, Skilled player (1278)
Joined: 9/12/2016
Posts: 1645
Location: Italy
This game is actually good, as of graphics and music... However the movie itself doesn't feature any surprising technique... I have to vote Meh.
my personal page - my YouTube channel - my GitHub - my Discord: thunderaxe31 <Masterjun> if you look at the "NES" in a weird angle, it actually clearly says "GBA"
Memory
She/Her
Site Admin, Skilled player (1522)
Joined: 3/20/2014
Posts: 1762
Location: Dumpster
I voted meh as well. The game seems decent and the movement is smooth but there's nothing that particularly stands out to me about the movie.
[16:36:31] <Mothrayas> I have to say this argument about robot drug usage is a lot more fun than whatever else we have been doing in the past two+ hours
[16:08:10] <BenLubar> a TAS is just the limit of a segmented speedrun as the segment length approaches zero
Post subject: Movie published
TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14852
Location: 127.0.0.1
This movie has been published. The posts before this message apply to the submission, and posts after this message apply to the published movie. ---- [3870] NES The Little Mermaid, Disney's by Jigwally in 06:37.58