My submission is inspired by Acmlm's excellent, longstanding record (and NESCardinality's awesome live speedrun).

Game objectives

  • Recorded with FCEUX 2.2.3 (using new PPU)
  • Fastest time to reach the ending (any%)
  • Uses death as shortcut
  • (A lot of) Luck manipulation

Improvements

I saved 33 seconds by not getting Erdrick's armor. That saves about a minute and a half, by itself, but I lose more than half that time making up for not having the armor:
  • Killing a second goldman (getting max gold from one of them)
  • Buying 5 herbs in Garinham (only 3 steps out of the way).
  • Picking up a 6th herb in Garinham (0 steps out of the way).
  • It's slower to walk through swamps and barriers without Erdrick's armor.
  • Using all 6 herbs -- 1 outside Charlock and 5 in the barriers on the first floor of Charlock.
  • Picking up a last herb in the bottom level of Charlock (0 steps out of the way, near the wings) and using it.

Techniques

I did not copy Acmlm's video and modify pieces (though I referred to it a lot). I started over with a different character name ('Y' vs '!'), which gave a different random seed. I used Ryan8bit's disassembly and guide for Dragon Warrior (https://gamefaqs.gamespot.com/nes/563408-dragon-warrior/faqs/61640) and wrote thousands of lines of perl and python code to simulate the game.
First, I optimized each step separately (e.g. each combat) using A* search, then tried to hook it all together. The runtime increases exponentially with the # steps, so I was only able to run that through the first deathwarp. I hope to make further improvements and simulate the whole game, but my last few months' tinkering have been less about Dragon Warrior and more about optimizing my optimizer, so here is my submission!
See Acmlm's record (Forum/Topics/9190]) for background on luck manipulation. My biggest simulation problem was not knowing how many random numbers a pause would skip -- 86 or 87. I believe there is some concurrency/threading affecting this, because in the middle of a long pause, you can sometimes see the random number in the middle of being updated. Also, pauses skip a different number of random numbers depending on whether you use the old or new PPU. So my simulation has to compute a lot of potential solutions to the game, some of which may or may not actually be possible depending on how the pauses work out.
Traveling is the least certain part. I approximated each leg of the journey as needing a certain number of short pauses to avoid combats. Fortunately, most travel steps are followed by extra pause frames to get to a good point in the random number sequence. A long pause (5+ frames) can be split into two pauses, using 1 more frame and skipping 1-2 more random numbers. This often let me get to a desired point in the random number sequence. It also let me shave frames in some cases, which is why my run has a few strings of short pauses separated by individual steps.
I also wrote a separate program to tell me, for a given point on a path, how many steps I could take before having an encounter. That told me whether to stop for an extra frame when going down stairs, or to extend a pause by a frame or two. That is faster than having a separate pausing, since a minimal pause uses 3 frames.
As Acmlm noted, we could get a more optimal solution if the movie input wasn't tied to frames and we could unpause after skipping a desired number of random numbers. It would also help to know when a pause will skip 86 vs. 87 random numbers. I thought about writing a program to drive FCEUX and get exact answers, but that would run probably a thousand times slower *and* add many decision points.

Masterjun: Judging.
Masterjun: Nice improvements. Take a look at this reply, there is a core in BizHawk allowing for subframe inputs, so that input is not tied to frames. It might help improving the run even further. But that can be done in a different submission.
Accepted to Moons as an improvement to the previous run.
Dacicus: Processing...

TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14853
Location: 127.0.0.1
This topic is for the purpose of discussing #6525: RationalMonkey's NES Dragon Warrior (USA) in 17:12.97
juef
He/Him
Player (131)
Joined: 1/29/2007
Posts: 205
Location: Québec, Canada
I would not have thought such a sizable improvement could be made to this game! Congratulations, this is quite the achievement.
Dimon12321
He/Him
Active player (479)
Joined: 4/5/2014
Posts: 1124
Location: Ukraine
Link to video UPD: replaced the temporary encode with the published one.
TASing is like making a film: only the best takes are shown in the final movie.
adelikat
He/Him
Emulator Coder, Site Developer, Site Owner, Expert player (3584)
Joined: 11/3/2004
Posts: 4738
Location: Tennessee
"As Acmlm noted, we could get a more optimal solution if the movie input wasn't tied to frames and we could unpause after skipping a desired number of random numbers" You could use BizHawk, and the "SubNesHawk" core, that is tied to input polls rather than frames. Would that help get better rng with fewer delays? Also, I loved this TAS. Not getting Erdrick's Armor is surprising and even more entertaining. Thank you for submitting this!
It's hard to look this good. My TAS projects
Kung_Knut
He/Him
Joined: 8/10/2016
Posts: 85
Location: Sweden
Thou hast done well in defeating the Acmlm. Thy Experience increases by 1 yes vote.
Joined: 8/1/2004
Posts: 178
Done watching. Now everything I see is in old English.
<^>v AB X LR s
Post subject: Movie published
TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14853
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. ---- [4050] NES Dragon Warrior by RationalMonkey in 17:12.97
Player (66)
Joined: 10/2/2019
Posts: 6
Thanks, all! Optimizing this game has been a blast. I am willing to share my code with people who are interested. It is kind of messy, though. Thanks for the suggestion on subframe inputs. I will check it out! I also like that it could make simulated paths deterministic. Some of my simulations turned up paths that weren't actually possible (e.g. travel required too many pauses). My hunch is that I can get this under 17 minutes.