The Physics Nightmare and Bizarre Jumping of Strider (NES) - Behind the Code

  Рет қаралды 75,782

Displaced Gamers

Displaced Gamers

Күн бұрын

Пікірлер: 442
@Patashu
@Patashu Жыл бұрын
'This completes our review of things Strider can do OK.' made me cackle
@TARINunit9
@TARINunit9 Жыл бұрын
From a few minutes of my own research, Strider NES was originally made by some Japanese team, never finished, then handed over to an American team who "finished" it by just translating it and leaving everything else incomplete. This entire game is just some cursed spaghetti code casserole that wasn't even put in the oven. It's _fascinating_
@THEGREATMAX
@THEGREATMAX 7 ай бұрын
Yeah, it feels a lot more like a prototype than a full release. Still a really interesting game tho
@kidfenris
@kidfenris 6 ай бұрын
According to the game's composer, work on NES/Famicom Strider was pretty much finished when Capcom decided to only release it overseas. There's a prototype of the Japanese version that's clearly unfinished compared to the American release. NES Strider is a finished game. It's just a poorly programmed one. It's more likely that Capcom didn't release it in Japan due to the manga not being a huge hit (it lasted one volume) and the Famicom market being tighter. In Japan the game industry was more competitive by the end of the 1980s because of the PC Engine's success, but in America the NES still dominated everything. The NES version of Legendary Wings was a similar deal, developed by Capcom in Japan but never released there.
@marscaleb
@marscaleb Ай бұрын
It's really a shame; I absolutely LOVED the direction they took the NES game, far more than what the Arcade game did. It would be really nice to see a properly-made version of this game, following the expansive sort-of-metroidvania style that the NES version was trying to accomplish.
@Dark.Shingo
@Dark.Shingo Жыл бұрын
This went from "I imagine it might be broken" to "Sweet Jesus, how this even managed to work?".
@artstrutzenberg7197
@artstrutzenberg7197 Жыл бұрын
you should see his previous video (on sprite management) to see even more entertaining shenanigans :D
@KodakYarr
@KodakYarr Жыл бұрын
The answer is _just enough_
@scruffydad9435
@scruffydad9435 Жыл бұрын
You've managed to encapsulate the entire process I go through every time I look at my old code.
@KodakYarr
@KodakYarr Жыл бұрын
As long as it compiles it's probably good enough
@LorenHelgeson
@LorenHelgeson Жыл бұрын
What's crazy is the cancelled Famicom version handled things even worse.
@bf1701
@bf1701 Жыл бұрын
So, the sprite logic starts late in the frame, the controller inputs are read late in the frame, and the physics calculations happen late in the frame.... What is Strider doing early in the frame? Microwaving fish soup in the NES's breakroom?
@DisplacedGamers
@DisplacedGamers Жыл бұрын
Hey... What's that smell?
@SianaGearz
@SianaGearz Жыл бұрын
Late in the frame is specifically when you want to do all the input and input-dependent tasks. The later you can do them, the less total input to output latency you're going to have. But before the vblank hits and you have to update the scroll and upload the sprite table quickly. If you're wondering what you might be doing early in the frame... well the very first thing you want to do is pick a good time to run the sound/music routine to update the soundchip registers, maybe you do this on a line interrupt to reduce jitter, then you want to load the graphics tiles for the things getting scrolled in, which takes a while, update the tilemap. You might even be doing enemy animation sprite and position updates early in the frame before you process inputs, projectile updates as well. You do this in the shadow buffer in main RAM. Enemy logic too, because if the enemy seems to react to your actions rather than catch them mid flight as if it was mind reading you, its just a tad more convincing. You can process pickups before inputs as well, making them also a frame delayed, it's fine, looks even a little weighty, nice.
@revenevan11
@revenevan11 9 ай бұрын
It's finishing the overdue and now pointless sprite worn from the previous frame 😂
@Strakester
@Strakester Жыл бұрын
If you're looking to investigate fascinatingly broken games, might I recommend Super Pitfall? Everything in that game seems to be held together by string. Why do the lava bubbles corrupt the music? Why do you just randomly jump through the floor sometimes? Why do the waterfall sprites disappear so much? Why do none of the enemy sprites ever line up with the terrain properly? The game is a real treasure trove of brokenness.
@sentropez1337
@sentropez1337 Жыл бұрын
This video should be shown in software engineering classes, as an object lesson for why the concept of Finite State Machines is important to understand. The programmers here clearly didn't think in terms of "here's the checks to do if the player-character is jumping; here's the checks when he's walking; here's the checks when he's standing still on the ground; etc - and he can only be doing one of those at a time"; but instead just did every check in every "state", as the ASM equivalent of a long series of if-statements, with many possible overlapping "states" active at once.
@wphanoo
@wphanoo Жыл бұрын
Exactly. These can be extremely hard to debug
@JH-pe3ro
@JH-pe3ro Жыл бұрын
It's not really an issue that an FSM addresses directly. It's a constraint programming issue, because the physics in Strider are supporting several features simultaneously that produce multiple competing answers: are we ascending a slope, is a wall colliding, are we jumping, are we trying to triangle jump? What a constraint solver does is frame the problem in terms of "filter down many competing and potentially valid answers into a single definitive one by turning it into a sorting-and-ranking problem". Applying sorting makes it much easier to reason about than trying to break it down into a large number of finite states. What Strider actually does, and what everyone tends to do when addressing constraint logic one feature at a time, is to add more and more state to try to adjust one answer as you go along, losing a lot of information in the process. You don't want to lose information in your physics until you know you can make the optimization(and this is why the common axis-aligned platforming logic of "run X axis physics, then run Y axis physics" manages to work well, but imperfectly - it's an optimization on solving for both permutations and selecting the one that gives free movement, it just drops one permutation from ever being considered).
@slipperynickels
@slipperynickels Жыл бұрын
it's very good for my imposter syndrome that the way these types of bugs are created require programming in ways that immediately set off alarm bells in my head.
@BetweenTheBorders
@BetweenTheBorders Жыл бұрын
It's worthwhile to note there are good times to use this kind of code, like when you want to blend logic. A string of conditionals in the right order can keep code very tight and produce muliple effects. For example, if the player is not touching the ceiling, skip to the next check, otherwise set vertical velocity to zero. This allows all previous X movement to continue to propagate while allowing downstream gravity or ejection to start from a known point. It requires extensive planning, but it allows for overlaid logic to address complicated states.
@jimbotron70
@jimbotron70 Жыл бұрын
So in a nutshell they anticipated quantum computing in a videogame.
@vtmarik
@vtmarik Жыл бұрын
I used to laugh out loud at every juddering sprite and shaking pickup when i played this as a kid, now that i have a little bit more knowledge in coding and such this just makes me realize how up against the wall the devs had to have been to have all this conflicting code. Just seeing Hiryu running against a wall like in every other NES game made me realize just how robbed we were of an optimized version of this.
@MaxOakland
@MaxOakland Жыл бұрын
To me it seems like the coder had no idea what they were doing and created their own "creative" ways out of lack of experience. It doesn't make sense to me that they would program it this way first and then try to fix it later. If someone knew best practices they'd do it right the first time
@MurderWho
@MurderWho Жыл бұрын
@@MaxOakland back in those days, no one knew the "best practices" for making video games, (platformers weren't even a decade old at that point, and it's not like many of the previous entries in the genre could be looked to as positive inspiration), and they were moreorless programming on the bare metal, not much different from the changes we see in the video, so it may not have been totally obvious what each function was doing without a lot of tracing . . . probably on graph paper. Emulators didn't exist, and nintendo didn't produce software to run the games on PC, so you had to load prototype carts, insert those into dev machines, and test that way, and that could take hours from start to starting to play the prototype. Strider is . . . particularly bad, but a LOT of bugs in old video games, even otherwise well-polished ones, are simple off-by-one or swap-two-instructions errors, which I think is a good indication of how difficult it was to debug on the platform.
@djrmarketing598
@djrmarketing598 Жыл бұрын
Times were definitely different back then. I don't think programming this logic, you would even get a chance to "run" it, you would be sitting there with grid paper and flowcharts making the jump mechanics, and maybe different people actually coded it vs writing the grids. Like think about this - an engineer with a math background "designs" the jump, hands it to some coders to "make" the jump and at this point nothing is even running on hardware yet. A month later long after thinking about the grid paper and math, you find out the code doesn't work that great and then you are finding out it needs a ton of band aids, the code the other guy wrote was sloppy and meanwhile the scroller guys decided to skip your frames once in a while. Meanwhile, another month later, a QA team plays it, says "it's not that great... " and the boss says "but is it playable?" and the QA team says "well kinda". And then 3 months later, it's on the shelves ready for Christmas.
@MaxOakland
@MaxOakland Жыл бұрын
@@djrmarketing598 beta testing was very common. But even if they didn't have beta testing, this is a weird and uncommon way to do physics logic. That's what makes it so buggy and so interesting
@mrwizard5012
@mrwizard5012 Жыл бұрын
@@djrmarketing598 Right? You didnt exactly have Game Maker Studio 2 to test this in at the time.
@anonymone453
@anonymone453 Жыл бұрын
That first 50 seconds plays out like baby's first Gamemaker platformer. Certainly looked a hell of a lot like mine.
@tonybarnes2920
@tonybarnes2920 Жыл бұрын
I had to spend literally THOUSANDS of hours playing NES Strider, even though I'd avoided it for decades. I felt it was my duty to make sure I encompassed everything "Strider" that I could, when I made the Strider 2014 game, not just what I've loved about Strider since 1989. Oh so very painful...
@HelpTheWretched
@HelpTheWretched Жыл бұрын
So you're THAT Tony Barnes. Well, those efforts paid off pretty well!
@LonelySpaceDetective
@LonelySpaceDetective Жыл бұрын
Would that have included Tiertex's Strider II/Returns? Good lord.
@thatitalianlameguy2235
@thatitalianlameguy2235 10 ай бұрын
Your game is a pretty mediocre metroidvania with cheap design ngl
@larryb5677
@larryb5677 Жыл бұрын
I can't wait for the eventual nine hour long Strider omnibus episode!
@DisplacedGamers
@DisplacedGamers Жыл бұрын
See you in 2045.
@mytwodogs4907
@mytwodogs4907 Жыл бұрын
I would happily watch all 9 hours@@DisplacedGamers
@sirramslot5480
@sirramslot5480 Жыл бұрын
​@@DisplacedGamersMore like 2048 in Kazakhstan, right?
@dschult3
@dschult3 Жыл бұрын
I LOVED this game as a kid, but I absolutely HATED the physics. It was so bad, that I put it away for years until I was a teenager and gave it another shot. I beat it and loved it, to a point. The physics made it where I couldn't recommend it to anyone. Thanks for explaining the issues.
@TheSpooniest
@TheSpooniest Жыл бұрын
Right there with you. I was too young to really have the words to describe what I didn't like, but this is pretty much it.
@blankenstein1649
@blankenstein1649 Жыл бұрын
same. i loved the visuals, sound, story, setting, etc. but it just felt like such garbage gameplay. and now i know why.
@anon_y_mousse
@anon_y_mousse Жыл бұрын
There were so many games like that for me. I've always been bad at video games, which is at least partly why I like RPG's more than platformers, less frustration.
@blankenstein1649
@blankenstein1649 Жыл бұрын
@@anon_y_mousse well, in the case of strider, it definitely wasn't just your fault. the game is legitimately programmed terribly haha.
@cactoidpinata
@cactoidpinata Жыл бұрын
Yep, same for me. As broken as this game is, it's a miracle that it can be beaten. But, it's actually pretty fun and satisfying to beat!
@dengeki1
@dengeki1 Жыл бұрын
Despite NES games being somewhat of a niche, this is honestly more valuable than most game development tutorials and "essays" I've found. It's not about the code per say, as in, what I should type. It's more about the problem I'm trying to solve. The way you structure your videos gives me better ideas about how I should try to think about specific problems, and the logic required to make the code blocks I write work with each other, instead of just trying to find the right "Fix", the right math formula, whatever. I can't say I understand everything, but you often put me on the right path, and that's all I can ask for.
@linhero797
@linhero797 6 ай бұрын
Honestly what I love about channels like Displaced Gamers and RGME, they focus less on what the code says exactly and more on the logic of the CPU and likely what the developers were thinking when designing things. It makes it very helpful to actually learn and understand these things. Very useful, even if you aren't familiar with 6502, or even retro games in general.
@TheDannMannn
@TheDannMannn Жыл бұрын
You know it’s going to be a good day when you see a new behind the code in your feed.
@borderline_normie
@borderline_normie Жыл бұрын
Amen! :)
@brendn
@brendn Жыл бұрын
Absolutely. Deepest and most thoughtful analysis on the entire site.
@DisplacedGamers
@DisplacedGamers Жыл бұрын
This one was a blast. What do you think of holding down A for the Triangle Jump? Should I have gone for something else? There are so many other issues to address in Strider. Speaking of things to address in Strider - I think I will upload some of my Strider work to the Displaced Gamers GitHub (by the way... Displaced Gamers "is on GitHub"). This project took a lot more reversing than usual. Perhaps someone can take the work and run with it. github.com/DisplacedGamers Hope everyone has a great day!
@WillowEpp
@WillowEpp Жыл бұрын
Seems like a relatively sane solution to the problem and an elegant fix that you can do it in a single GG code. As far as overall "feel" of wall jumping, I think nothing has beaten the Mega Man X series for me, so I would consider it an improvement if your fall speed actually reduced down when in contact with a wall instead of sped up, but I also think Super Metroid feels awful when a lot of people tell me they have no problems with it, so maybe it's a "me" problem.
@GeekSHO
@GeekSHO Жыл бұрын
@@WillowEpp Super Metroid's wall jump is tricky, but the game helps you a little with a unique frame of animation to let you know the window to press the jump button. If you're spin jumping along a wall, then press away from the wall, there is a window of about 2 frames where Samus' sprite switches to one where here feet look planted on the wall. That's when you hit jump.
@WillowEpp
@WillowEpp Жыл бұрын
@@GeekSHO Oh, I know exactly *HOW* it works. I _can_ *do* it. I just hate how it feels. It _feels awful_ to me. This is a subjective thing. (I still think that if there were more than three months between the release Rockman X and Super Metroid there's a good chance it would have turned out differently, but we'll never know for sure. ㄟ( ▔, ▔ )ㄏ )
@scotshabalam2432
@scotshabalam2432 Жыл бұрын
This is basically coder church. PREACH IT BROTHER AMEN!
@djmips
@djmips Жыл бұрын
I agree that the solution is better and a good patch but it's too easy and some timing constraint should make it more fun.
@carn9507
@carn9507 Жыл бұрын
Heh, so the Nintendo Power tip for triangle jump is basically to button mash and hope for the best. Really was a poor implementation of wall-jumping. I still love that way Batman does it. That lil stop as his sprite animates to change direction is strangely satisfying :O
@nickfarace9339
@nickfarace9339 Жыл бұрын
My god this game is a gold mine of bad freaking code decisions.
@gordontaylor2815
@gordontaylor2815 Жыл бұрын
As seen in the comments sections of the first video, NES Strider seems to have been initially programmed by someone with no (or very little) previous experience with the system and then a more experienced programmer at Capcom (who was responsible for that game) had to jury-rig fixes just to get a "sellable" product out the door in a relatively tight time frame.
@thecunninlynguist
@thecunninlynguist Жыл бұрын
even 30+ years later the NES ninja gaiden sprites are so lovely. Even if it's just a screenshot/photo. I was chuckling when it switched over to strider and that pill pickup was all shakey
@dionelr
@dionelr Жыл бұрын
“I have an untested solution that will probably break 5 other things…. Let’s try it!”. I haven’t laughed that hard in a while. 😂
@nickwallette6201
@nickwallette6201 Жыл бұрын
Followed up by "ehh, that's enough." haha Which is absolutely what they said when they shipped this game.
@TheDannMannn
@TheDannMannn Жыл бұрын
I’d love to see a series where you take what’s been learned from these videos and slowly build up the most optimal/feature rich nes side scroller possible. (Though that would be a monolithic project)
@DisplacedGamers
@DisplacedGamers Жыл бұрын
That would be a crazy project, indeed. That said, perhaps these videos are a good resource for any other developer to do that very thing. I'll keep making more of them.
@vuurniacsquarewave5091
@vuurniacsquarewave5091 Жыл бұрын
@@DisplacedGamers I'm listening.
@IpfxTwin
@IpfxTwin Жыл бұрын
You're honestly the best at this particular niche, and it's a huge window for many people my age to get into programming with content we can relate to that isn't at the "Hello world" level of baby steps. The understanding and presentation is simply unmatched.
@nervaaugustus7089
@nervaaugustus7089 Жыл бұрын
This is a delightful look into a game so hilariously broken it's a miracle it runs at all. Please, cover this aberration as much as you'd like; it's absolutely fascinating to watch you go through this code - it's less 'sphagetti' and more like a pile of hashbrowns.
@VincentGuillotine
@VincentGuillotine Жыл бұрын
I kind of like how strider gets so much mileage as examples on what not to do
@DisplacedGamers
@DisplacedGamers Жыл бұрын
Seems like a case study.
@LorenHelgeson
@LorenHelgeson Жыл бұрын
MY MAN! I had a sneaking feeling you'd be the one to crack this. Very impressive work! I remember renting this a couple times as a kid, without the manual, and not knowing what to do when that first required jump came up in the Egypt map. It always felt off, because everything else for those first ten minutes was so easy.
@michaelcalvin42
@michaelcalvin42 Жыл бұрын
Thanks for another deep dive on this broken mess of a game! This has been a fun mini-series so far, and I suspect I'm not alone in saying that I would love to see a part 3 with some further analysis on the bugs you didn't get to in this video.
@DisplacedGamers
@DisplacedGamers Жыл бұрын
I wouldn't mind making a third part at some point, but I need to get this game out of my dreams. lol
@michaelcalvin42
@michaelcalvin42 Жыл бұрын
@@DisplacedGamers Haha, fair enough.
@nervaaugustus7089
@nervaaugustus7089 Жыл бұрын
Oh you're definitely not alone in wanting to see more of the code that produces this busted aberration. That said, I can totally understand if DisplacedGamers needs a break from it. There's plenty of other wonk games out there, after all.
@jtothebell
@jtothebell Жыл бұрын
lol @ 4:36 "It gets better (as in worse)". Great video as always
@treesapthief
@treesapthief Жыл бұрын
I always find these videos so well laid out and easy to follow.
@Peter_Morris
@Peter_Morris Жыл бұрын
You know, watching these videos about Strider, I really don’t know how my friend and I beat it as kids. I know we beat it because I remember the story and everything. But holy crap that triangle jump must’ve given us fits! Thankfully, I did have a subscription to Nintendo Power and I did have that issue.
@ShinoSarna
@ShinoSarna Жыл бұрын
This series on Strider is pioneering a new genre among programming/tech youtube : code gore. Will we examine code behind Action 52 next? :P
@ShinoSarna
@ShinoSarna Жыл бұрын
@@stephen-ngFuck, you're right. I even watched the Action 52 video and I just forgot about it :P
@abadenoughdude300
@abadenoughdude300 Жыл бұрын
There's code behind Action 52?
@AliceErishech
@AliceErishech Жыл бұрын
@@ShinoSarnaApparently it was so traumatic that your brain made you forget it, lol.
@Damaniel3
@Damaniel3 Жыл бұрын
I can't imagine how many Game Genie codes it would take to make any of those games playable.
@diamondsmasher
@diamondsmasher Жыл бұрын
He will never do another video if you make him analyze Action52
@Dargonhuman
@Dargonhuman Жыл бұрын
Oh God ... those wall jumps! Bane of my childhood! Whenever I got to one of them, I had to have my stepdad do them for me because I just could not get the hang of them, I always thought I was just bad at the game but now it's a small comfort to know it wasn't me at all...
@RaposaCadela
@RaposaCadela Жыл бұрын
I love this game, rad themes, rad graphics, rad music, rad ideas, but JESUSCHRIST.... *THE JANK.* The game is now much funnier to me knowing all of this weird logic is going on while we play it, it's one of those games so broken it would need to be entirely re-coded in order to work properly PS: I'd love if you did a video comparing Menace Beach with Sunday Funday. They're unlicensed games, originally by Color Dreams, then modified by Wisdom Tree. They're essentially the exact same game with a few graphical differences, but Sunday Funday runs much smoother and detects inputs quickier, I'd love to know why (and see if that can be done for other Color Dreams/Wisdom Tree games that use the same engine)
@Brocknoth
@Brocknoth Жыл бұрын
Early day programming was so obtuse compared to what we can do now. It's still really fascinating to see the weird ways early game code tried to solve problems. Videos like this make me wonder how much different older games would be with a "code update" I know that there are plenty of examples in the ROM hacking community but it's still fun to think about.
@vineheart01
@vineheart01 Жыл бұрын
"It gets better, as in worse" is a pretty good way to describe this games coding. Highly doubt its the worst offender of bad NES code but its probably the worst on a game that was actually somewhat known. I never had Strider as a kid but i knew it was another NES game my friends liked.
@budkin
@budkin Жыл бұрын
Man I love your videos. Absolutely fascinating!
@JustinKoenigSilica
@JustinKoenigSilica Жыл бұрын
This is the kind of janky collision physics code i wrote when i first dabbled in gamemaker edit: OH NO IT'S WORSE
@DisplacedGamers
@DisplacedGamers Жыл бұрын
lol
@TheRedSoxMan
@TheRedSoxMan Жыл бұрын
I can't believe I, not only beat this game, but moderately enjoyed it
@oobgarm1
@oobgarm1 Жыл бұрын
Loved this game as a youth despite the wonky physics. I was excited to see that you were going to tackle this one, excellent video.
@THEGREATMAX
@THEGREATMAX 7 ай бұрын
The music is the game is insanely good
@Jordan10704
@Jordan10704 Жыл бұрын
1:18 “Implemenation” 😅 Great video though, thanks for all the hard work on these.
@crtinkering7323
@crtinkering7323 Жыл бұрын
New Displaced Gamers video! Great way to start the Weekend!
@moxxichannel5950
@moxxichannel5950 17 күн бұрын
Back in the day we just learned how to do it. It wasn't easy but I beat the game. I can attest that the technique did not stay in "muscle memory" as I tried playing it again and could not pull off the triangle jump with any sort of consistency.
@BlackieBloomberg
@BlackieBloomberg Жыл бұрын
As neat as this is to see laid out I never had a problem with the game as it was
@michaelsinnreich6626
@michaelsinnreich6626 Жыл бұрын
This was an exercise in frustration. No idea how i beat this as a kid.
@lilylyons8885
@lilylyons8885 Жыл бұрын
With physics this overcomplicated I'm not surprised that Strider has the rendering issues mentioned in the last video
@joshmiller887
@joshmiller887 Жыл бұрын
All this “simplifies” information is way over my head, but I LOVE IT! I just need to consume it until it makes sense to me 😂. Great video! Thank you!
@DarkScorpion64
@DarkScorpion64 Жыл бұрын
It really looks like they were learning as they went along and just added band-aid fixes as they encountered things. Reminds me of my first try writing a pac-man clone.
@stakfallt2040
@stakfallt2040 11 ай бұрын
Wow. Just crazy. First, the amount of work you went through to set up all that testing and output just to figure out just what in the world is going on with the game lol Second, I'm experiencing that weird feeling of remembering how the jumping felt and now having the understanding of the code's logic present the connection between the experience and the problematic code. Sort of like that innate feeling you eventually gain in physics class when understand what it feels like for falling objects and centripetal force and then applying it to say being on the moon and almost being able to envision-experience the feeling of what it would feel like. I always chalked up the triangle-jump jankyness to the frame rates of the game and me needing to be slower because the game just couldn't keep up with the input. Now I see (and can almost feel) the effects of the routines in place causing that sense I had so many years ago, and now understanding just how affected the jumping was, not because of the performance, but because of the code design. On a similar note of performance. There's a little known-game that might be worthwhile looking at is Bio Force Ape. Back in the NES vs Sega days, there was that whole rivalry that was taking place and the blast processing marketing that Sega kept marketing to compete against NES' slower performance. They used Sonic's speed as their main marketing tactic. However, Bio Force Ape which was never released but someone discovered a playable copy in 2001 (I think it was 2011), and it's speed is, what looks like to me anyhow, right on par with Sonic. It might be interesting to see a breakdown of the tricks they used to achieve the speed increase. My guess is a lower sprite count, but that's probably way oversimplifying it since they probably did tons of other things too.
@daveloomis
@daveloomis Жыл бұрын
30 years later... There's wall-jumping in this game, and I now know why I never beat it...
@dycedargselderbrother5353
@dycedargselderbrother5353 Жыл бұрын
"Holding A and just using the controller to wall jump" is basically what I did as a kid...with the A button on turbo. I wonder how they handled it in testing. I mean, someone had to have at least played through the stages, right?
@dorkidori
@dorkidori Жыл бұрын
Thank you for making this video. Its one of the few i completely understood, regardless of my lack of programming knowledge. I played the game enough as a kid (and still remember) to get exactly what you were referring to via the code... and just how stupid it all is in regards to Capcom making things overly complicated, plus being absolutely sloppy as hell! would be really cool if you wrote a patch for the game to fix all these issues to make Strider actually worth playing AND worthy of Capcoms name down the road. Im sure a lot of us would be elated to play a PROPERLY FUNCTIONING version of this game versus one that (as you put) tied its shoe laces together and face planted! LOL! Btw, excellent use of Out of This World as a visual reference (I got a damn good laugh out of that).
@shona-sof
@shona-sof Жыл бұрын
You should turn these fixes into an IPS patch that people could apply to their games.
@Absnerdity
@Absnerdity Жыл бұрын
There is no defense for this game, but I still love it dearly. It's like a comfy blanket... except it's really ratty and falling apart.
@CraftMine1000
@CraftMine1000 Жыл бұрын
The more I watch this the more I get the feeling that the devs had some severe cases of "I forgor" when developing this
@SomeGuy712x
@SomeGuy712x Жыл бұрын
(18:26) This part gave me a chuckle. It'll be quite interesting when you finally cover those wacky oddities.
@happycheese4u32
@happycheese4u32 Жыл бұрын
Always fun to find out my poor gaming skills are only half of why this game was so hard 30 years ago. ...sill love it though :P
@erichb4530
@erichb4530 Жыл бұрын
Thanks for covering strider! One of the few games we had as a kid and most people have never heard of it. Those wall jumps were sooo tough, I'd run out of time for the level trying to do them
@eightcoins4401
@eightcoins4401 3 ай бұрын
The og Arcade game is well known, not so much the nes port though
@dayveeman
@dayveeman Жыл бұрын
I don't know if this channel has merch, but a "Better grab a TACO!" shirt should be on it.
@PhaizKannon
@PhaizKannon Жыл бұрын
I actually took the time to finish the game despite the awful experience of movement and every sprite interaction feeling glitchy. I had recorded the last stage on a VHS tape of games I had completed, so I got to watch it again over the years. This video doesn't even get into the difficulty of jumping effectively off of slopes which are prevalent in the game and usually interacted with while scrolling is happening. I had to figure out the wall jumping without knowing any of this too. I would just try and try again when physics broke and I definitely remember making sure to stop the screen scrolling before difficult jumps despite not knowing why this helped. Thanks for making all those hours of frustration finally feel like it wasn't my failure to learn... it helps to know that I was actually learning to subconsciously manage a handful of horrible bugs and somehow still be able to beat it without having to restart my VCR recording too many times to make it possible.
@AmeHart
@AmeHart Жыл бұрын
Would love to see another deep dive and a way to patch the game to fix these ! Thanks for this video. Learning lots :)
@Boonehams
@Boonehams Жыл бұрын
I'd be curious to see the difference in coding of Strider NES to other games that had decent wall jumping, like Batman NES.
@idontwantahandlethough
@idontwantahandlethough Жыл бұрын
@11:27 was that.. was that a _walking taco_ reference? Man, I could go for one of those right now. Oh great video as usual btw
@DisplacedGamers
@DisplacedGamers Жыл бұрын
It wasn't, however now I am also hungry.
@BasementBrothers
@BasementBrothers Жыл бұрын
Amazing after all these years to finally get an explanation of what was actually going on!
@ThickCutOhio
@ThickCutOhio Жыл бұрын
Cool video I’ve learned so much watching these videos.
@SiLvErWaRe000
@SiLvErWaRe000 Жыл бұрын
This is super cool. I always thought the wall jump felt off when I was a kid, but didn't have an issue executing it.
@fmsyntheses
@fmsyntheses Жыл бұрын
I like that the end of this video seems to be you realizing that this is not a productive use of your time or expertise
@schwartzritterx5905
@schwartzritterx5905 Жыл бұрын
That code is an absolute mess. The fact that the game is functional at all is amazing. I know with the triangle jumps the easiest way to get consistency with it was to hesitate about a half a second when trying them. The presses indeed needed to be precise.
@seanewing204
@seanewing204 Жыл бұрын
Sounds like Stryder is a solid candidate for a ground-up remake, not just a graphical overhaul or port.
@protolegacy9184
@protolegacy9184 Жыл бұрын
Whoa.Somebody actually explained the games"springy" jumping. The game felt a little glitchy with the scrolling and graphic tiles. Still,cool game and it's different that the other Strider games.
@bpelectric
@bpelectric Жыл бұрын
Awesome. Thanks for continuing to look into Strider. I mentioned in previous comments as well, but definitely have a look at the leaked Japanese unreleased ROM sometime too, it's broken, but in different ways. Now having seen some of the weird choices you found in this video (+1.5, wtf) I'd guess the JP ROM might be a build before it got given to someone who didn't know the code to "polish" before dumping it out to the US market.
@OneLotJason
@OneLotJason Жыл бұрын
You could make two years worth of videos about Strider's code.
@OptimusNiaa
@OptimusNiaa Жыл бұрын
Excellently done, as always.
@sporedoutofmymind
@sporedoutofmymind Жыл бұрын
I've always loved your voice - it's like Phil Hartman giving a computer science lecture
@LanceThumping
@LanceThumping Жыл бұрын
This is a fun reminder for the GDQ "Learn to Speedrun Strider" segment from a few years ago. IIRC they literally had someone new to the game come up and do a run beat it in minutes because of how completely borked it is. Hope to see you going over moonwalking through walls as well as the others.
@stephenfrechette8181
@stephenfrechette8181 Жыл бұрын
When I watch these videos, I wish I could play the game with these fixes. It would be cool if I could go someplace or someone had these rooms fixed
@michaelcalvin42
@michaelcalvin42 Жыл бұрын
You can! He provides Game Genie codes for most of the fixes, and the ones that he doesn't, he usually shows where in memory he's making changes. You could either hex edit a ROM or use Mesen (or another emulator that allows on-the-fly memory edits) to apply his patches.
@David-ln8qh
@David-ln8qh Жыл бұрын
I absolutely love these Strider videos.
@Ketirz
@Ketirz Жыл бұрын
Now, I'm not some incredible programming genius, but even I hear "jump frame lookup table" and find myself lost for words.
@DaWhiteTyger
@DaWhiteTyger Жыл бұрын
"Welcome to the table of two sub-routines..." You done fricked us on this one!
@DaWhiteTyger
@DaWhiteTyger Жыл бұрын
10:28 STILL WANT THE CODE! Just requesting again... I probabily will never be able to, but I LOVE your vids, just keep on Keepin' ON!
@DaWhiteTyger
@DaWhiteTyger Жыл бұрын
Oh good greif man, My apologies. This is the one thing that's always kept me from completing Stryder and was a bit inebriated when asking. You gave it, thank you. This is the best surprise game genie code from your videos ever!
@zazelby
@zazelby Жыл бұрын
I remember when I first played Strider on the NES, I was seriously considering taking it back to the store, because I was *sure* it was a defective copy. That's how bad the physics are in this game, and it's nice to see some explanation, even if the explanation itself is baffling - why would Capcom do this instead of just using a normal jump physics routine? Was it all to (badly) implement wall jumping?
@zazelby
@zazelby Жыл бұрын
... also, I was amused that Strider bounces off walls the same way as the square in Adventure, for what I suspect is the exact same reason (specifically, that it has wall ejection without wall collision). Even later Atari 2600 games like Haunted House don't do that.
@MaxOakland
@MaxOakland Жыл бұрын
It seems like a completely inept programmer did the work for some reason. Maybe it was an intern
@gordontaylor2815
@gordontaylor2815 Жыл бұрын
@@MaxOakland The game's credits highly suggest that the initial programmer was indeed very inexperienced with NES development and that a more senior programmer had to jury-rig "fixes" to get the game to a "sellable" state.
@DiceDrivenGameDev
@DiceDrivenGameDev 11 ай бұрын
Haha all the problem described are the pretty similar to the ones I'm having trying to implement jump/collisions in GM, thanks for the detailed analysis on this and the Ninja Gaiden games. Its a great guide platforming designing.
@zabustifu
@zabustifu Ай бұрын
A solution that comes to mind to fix the triangle jump logic: only require the button press, not the direction change. The player will still naturally hold the wanted direction to reach the opposite wall. To prevent abuse, we could also ensure that you can't jump more than once in a row from the same wall (by comparing the x position of the wall jump with the previous one?)
@MrMarket1987
@MrMarket1987 Жыл бұрын
The fact people can reach the end of the game is frankly a miracle when the spaghetti is mixed in with spider webbing, silly string, cheese string, shoe string, and worms.
@HattoriZero
@HattoriZero Жыл бұрын
11:13 & 15:51 This is not a good suggestion to do the Triangle Jump because this is also what I did initially by myself without relying on any guide or advice as a kid playing the game in 1992. Wildly rocking left & right while jumping only brings frustration and finger injury. The method that works for me is : There is no need to hold down the jump button. Tapping jump or holding jump will give the same jumping height results. Do not walk against the wall before jumping, your jumping height will cut short to about 1/3 making it impossible. Do not rock the direction left & right multiple times wildly within 1 second, the actual timing is changing the directions calmly around each second. Doing it too fast will make you fail. So watch from 11:36 - 12:01 carefully to understand the steps below. Do not be afraid of dropping down a few pixels; it is important, more reliable and comfortable to do the triangle jump this way. Start by walking towards the wall and tap jump. Let the character touch the wall, then stall and start dropping down a few pixels. Then only press the opposite direction, and then tap jump within half or quarter seconds to make a successful jump. (You can attempt to press the opposite direction & jump at the same time, but you will fail if the jump button is pressed first instead before the opposite direction button is pressed) Repeat the touch wall, stalling, dropping down a few pixels, then changing directions, tap jump within quarter second of direction change. Using a turbo jump will help doing this easier as it will help you concentrate on the touching wall, stalling, dropping down a few pixels, then changing directions. I have reconfirmed my methods above just a few minutes ago on my NES.
@LonelySpaceDetective
@LonelySpaceDetective Жыл бұрын
Having recently played through Strider NES myself last week as part of a full series playthrough, I can confirm that (at least for me) this method was more reliable than the few times I tried to rock the d-pad around. Triangle Jumping still wasn't _great,_ but I was able to get through the game without ever using the Jump Trick for platforming.
@ThePoly-Tessollate
@ThePoly-Tessollate 2 ай бұрын
I'd love to see a part 2 for this.
@anon_y_mousse
@anon_y_mousse Жыл бұрын
I've started writing my own emulator, although for the PS2 and not NES, but I'm definitely going to incorporate a debugger into it because of your video series. The more I see of this series, the more I wish every emulator had a debugger built in. I know it sounds silly, but I'm also going to write a PS1 emulator at the same time because if it does PS2 games it should also handle PS1, since the original hardware could, and I don't accept the later revisions that removed those chips as valid for the purpose of writing my emulator.
@DisplacedGamers
@DisplacedGamers Жыл бұрын
That's awesome! Good luck with your work. I feel the same about debuggers in emulators. I also wish they were all as good as Mesen's.
@MaxOakland
@MaxOakland Жыл бұрын
Mesen is just amazing in that regard @@DisplacedGamers
@CptJistuce
@CptJistuce Жыл бұрын
I think all revisions of the PS2 can play PS1 games.
@anon_y_mousse
@anon_y_mousse Жыл бұрын
@@CptJistuce If they could then it was with emulation, because they removed the PS1 chips in later revisions.
@CptJistuce
@CptJistuce Жыл бұрын
@@anon_y_mousse really think you're thinking of the PS3's loss of PS2 compatibility, as most of the PS1 hardware in the PS2 was a pare of the IO Processor and integral to operation in PS2 mode. That's where the R3000 lived, as well as the DMA controller, sound processor, controller and memory card port handlers...
@MrRodrigues520
@MrRodrigues520 Жыл бұрын
great explanation, if they ever release a strider collection that would be a good fix
@lacquerware6962
@lacquerware6962 11 ай бұрын
This is FASCINATING. I've always loved this game, warts and all, and think it'd be a prime candidate for something like a Blaster Master Zero-style remake. I take some pride in having gotten pretty good at this game's finicky triangle jump, and although it's a happy accident at best, conceptually I like the idea of it being a very hard technique to pull off. I mean, it would be! Incidentally, I never took to the arcade/Genesis Strider, despite trying to get into it roughly once a year.
@civildisorder
@civildisorder Жыл бұрын
There has to be a "Strider if the game code was fixed" version floating around by now. It must feel great to play.
@atalleywak
@atalleywak Жыл бұрын
This informative video just made me even more impressed with 13-year-old me for having finished this game, bugs and all.
@TwinOpinion
@TwinOpinion Жыл бұрын
That look up table blew my mind. 🤣
@theghostofthomasjenkins9643
@theghostofthomasjenkins9643 Жыл бұрын
this is gold. pure gold. my sides legit hurt at how busted this game is, lol.
@DaWhiteTyger
@DaWhiteTyger Жыл бұрын
I simply love you and your explinations.................. Kudos!
@DaWhiteTyger
@DaWhiteTyger Жыл бұрын
You ARE the MAN! With the master PLAN!
@Altirix_
@Altirix_ Жыл бұрын
you just know this became practically impossible to debug
@retrofraction
@retrofraction Жыл бұрын
Lookup tables does reduce the CPU load, which was probably the solution they picked to keep the game running as fast as possible. But yea 😅 if you mess up the value’s it’s probably worse than slowdown
@BigHailFan
@BigHailFan Жыл бұрын
Nintendo: "Do the physics in your game work?" Devs: "......We have physics, yes."
@Chubby_Bub
@Chubby_Bub Жыл бұрын
"Some physics are bypassed when scrolling" sounds like a cool gimmick for a platformer that actually knows what it's doing.
@andriypredmyrskyy7791
@andriypredmyrskyy7791 Жыл бұрын
I love your commentary. "Grab a taco", lovely.
@slipperynickels
@slipperynickels Жыл бұрын
"we are just getting started" nearly 1/3rd of the way through the video is so ominous, lol
@matthewlane518
@matthewlane518 Жыл бұрын
Played it, loved it, beat it, and never had a problem with the triangle jump
@habeang304
@habeang304 Жыл бұрын
My childhood game and I'm so glad to see I'm not the problem the game is 😆. So happy to see you explain and fix the game. Looking forward to seeing more😄😄
@Hristian123
@Hristian123 Жыл бұрын
Great video, as always! 👍
@DadGamingLtd
@DadGamingLtd 2 ай бұрын
Can we take a moment to appreciate the teleporting leg brace at around 3:45?
The Garbage Sprites in Strider (NES) - Behind the Code
15:00
Displaced Gamers
Рет қаралды 80 М.
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 23 МЛН
快乐总是短暂的!😂 #搞笑夫妻 #爱美食爱生活 #搞笑达人
00:14
朱大帅and依美姐
Рет қаралды 14 МЛН
How Much Tape To Stop A Lamborghini?
00:15
MrBeast
Рет қаралды 261 МЛН
Reprogramming Mega Man 4's Charged Shot - Behind the Code
19:37
Displaced Gamers
Рет қаралды 78 М.
Reprogramming Dr. Jekyll and Mr. Hyde (NES) - Behind the Code
18:52
Displaced Gamers
Рет қаралды 77 М.
The Airmailing Enemies Bug of Super Mario Bros. 2 - Behind the Code
12:18
MMC2 Magic - How Punch-Out's Graphics Work
14:57
Displaced Gamers
Рет қаралды 57 М.
Why is Contra Force so Slow? Konami, Mappers, and Money - Behind the Code
24:06
Mega Man 2 - Quick Man A.I. Explained - Behind the Code
19:29
Displaced Gamers
Рет қаралды 127 М.
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 23 МЛН