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

Поделиться
HTML-код
  • Опубликовано: 14 сен 2023
  • Strider Part TWO: Investigation and fixes for collision, jump canceling, and the Triangle Jump in Strider for NES.
    If you would like to support this channel, here is a link to the Displaced Gamers Patreon page - / displacedgamers
    Twitter: / displacedgamers
    Facebook: / displacedgamers
    Instagram: / displacedgamers
    Music by:
    / hariboosx
    / @wolfandraven
    #NES #Programming #Strider
  • ИгрыИгры

Комментарии • 433

  • @Dark.Shingo
    @Dark.Shingo 9 месяцев назад +218

    This went from "I imagine it might be broken" to "Sweet Jesus, how this even managed to work?".

    • @artstrutzenberg7197
      @artstrutzenberg7197 9 месяцев назад +13

      you should see his previous video (on sprite management) to see even more entertaining shenanigans :D

    • @KodakYarr
      @KodakYarr 9 месяцев назад +8

      The answer is _just enough_

    • @scruffydad9435
      @scruffydad9435 9 месяцев назад +7

      You've managed to encapsulate the entire process I go through every time I look at my old code.

    • @KodakYarr
      @KodakYarr 9 месяцев назад +1

      As long as it compiles it's probably good enough

    • @LorenHelgeson
      @LorenHelgeson 9 месяцев назад +8

      What's crazy is the cancelled Famicom version handled things even worse.

  • @Patashu
    @Patashu 9 месяцев назад +34

    'This completes our review of things Strider can do OK.' made me cackle

  • @TARINunit9
    @TARINunit9 9 месяцев назад +118

    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 Месяц назад

      Yeah, it feels a lot more like a prototype than a full release. Still a really interesting game tho

    • @kidfenris
      @kidfenris 24 дня назад

      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.

  • @Strakester
    @Strakester 8 месяцев назад +17

    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 9 месяцев назад +347

    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 9 месяцев назад +9

      Exactly. These can be extremely hard to debug

    • @JH-pe3ro
      @JH-pe3ro 9 месяцев назад +27

      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 9 месяцев назад +25

      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 9 месяцев назад +11

      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 9 месяцев назад +2

      So in a nutshell they anticipated quantum computing in a videogame.

  • @larryb5677
    @larryb5677 9 месяцев назад +155

    I can't wait for the eventual nine hour long Strider omnibus episode!

    • @DisplacedGamers
      @DisplacedGamers  9 месяцев назад +60

      See you in 2045.

    • @mytwodogs4907
      @mytwodogs4907 9 месяцев назад +7

      I would happily watch all 9 hours@@DisplacedGamers

    • @sirramslot5480
      @sirramslot5480 9 месяцев назад +4

      ​@@DisplacedGamersMore like 2048 in Kazakhstan, right?

  • @tonybarnes2920
    @tonybarnes2920 9 месяцев назад +27

    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 9 месяцев назад +5

      So you're THAT Tony Barnes. Well, those efforts paid off pretty well!

    • @LonelySpaceDetective
      @LonelySpaceDetective 9 месяцев назад

      Would that have included Tiertex's Strider II/Returns? Good lord.

    • @thatitalianlameguy2235
      @thatitalianlameguy2235 4 месяца назад

      Your game is a pretty mediocre metroidvania with cheap design ngl

  • @bf1701
    @bf1701 9 месяцев назад +106

    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  9 месяцев назад +45

      Hey... What's that smell?

    • @SianaGearz
      @SianaGearz 9 месяцев назад +35

      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 3 месяца назад +1

      It's finishing the overdue and now pointless sprite worn from the previous frame 😂

  • @vtmarik
    @vtmarik 9 месяцев назад +170

    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 9 месяцев назад +21

      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 9 месяцев назад +33

      @@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 9 месяцев назад +21

      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 9 месяцев назад +3

      @@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 9 месяцев назад

      @@djrmarketing598 Right? You didnt exactly have Game Maker Studio 2 to test this in at the time.

  • @anonymone453
    @anonymone453 9 месяцев назад +14

    That first 50 seconds plays out like baby's first Gamemaker platformer. Certainly looked a hell of a lot like mine.

  • @nickfarace9339
    @nickfarace9339 9 месяцев назад +19

    My god this game is a gold mine of bad freaking code decisions.

    • @gordontaylor2815
      @gordontaylor2815 9 месяцев назад +5

      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.

  • @dionelr
    @dionelr 9 месяцев назад +26

    “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 9 месяцев назад +11

      Followed up by "ehh, that's enough." haha Which is absolutely what they said when they shipped this game.

  • @thecunninlynguist
    @thecunninlynguist 9 месяцев назад +37

    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

  • @VincentGuillotine
    @VincentGuillotine 9 месяцев назад +43

    I kind of like how strider gets so much mileage as examples on what not to do

  • @dengeki1
    @dengeki1 9 месяцев назад +11

    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 Месяц назад

      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 9 месяцев назад +28

    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 9 месяцев назад +2

      Amen! :)

    • @brendn
      @brendn 9 месяцев назад

      Absolutely. Deepest and most thoughtful analysis on the entire site.

  • @carn9507
    @carn9507 9 месяцев назад +9

    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

  • @dschult3
    @dschult3 9 месяцев назад +67

    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 9 месяцев назад +5

      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 9 месяцев назад +6

      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 9 месяцев назад +2

      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 9 месяцев назад +5

      @@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 9 месяцев назад +6

      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!

  • @DisplacedGamers
    @DisplacedGamers  9 месяцев назад +33

    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 9 месяцев назад +2

      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 9 месяцев назад +3

      @@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 9 месяцев назад +1

      @@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 9 месяцев назад

      This is basically coder church. PREACH IT BROTHER AMEN!

    • @djmips
      @djmips 9 месяцев назад

      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.

  • @Peter_Morris
    @Peter_Morris 9 месяцев назад +8

    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.

  • @Askanon
    @Askanon 9 месяцев назад +4

    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.

  • @TheDannMannn
    @TheDannMannn 9 месяцев назад +27

    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  9 месяцев назад +29

      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 8 месяцев назад

      @@DisplacedGamers I'm listening.

  • @ShinoSarna
    @ShinoSarna 9 месяцев назад +24

    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 9 месяцев назад +3

      @@stephen-ngFuck, you're right. I even watched the Action 52 video and I just forgot about it :P

    • @abadenoughdude300
      @abadenoughdude300 9 месяцев назад +4

      There's code behind Action 52?

    • @AliceErishech
      @AliceErishech 9 месяцев назад +5

      @@ShinoSarnaApparently it was so traumatic that your brain made you forget it, lol.

    • @Damaniel3
      @Damaniel3 9 месяцев назад +2

      I can't imagine how many Game Genie codes it would take to make any of those games playable.

    • @diamondsmasher
      @diamondsmasher 9 месяцев назад +2

      He will never do another video if you make him analyze Action52

  • @nervaaugustus7089
    @nervaaugustus7089 9 месяцев назад +4

    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.

  • @Dargonhuman
    @Dargonhuman 9 месяцев назад +4

    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...

  • @IpfxTwin
    @IpfxTwin 9 месяцев назад +9

    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.

  • @JustinKoenigSilica
    @JustinKoenigSilica 9 месяцев назад +19

    This is the kind of janky collision physics code i wrote when i first dabbled in gamemaker
    edit: OH NO IT'S WORSE

  • @shona-sof
    @shona-sof 9 месяцев назад +4

    You should turn these fixes into an IPS patch that people could apply to their games.

  • @vineheart01
    @vineheart01 9 месяцев назад +16

    "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.

  • @LorenHelgeson
    @LorenHelgeson 9 месяцев назад +21

    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 9 месяцев назад +16

    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  9 месяцев назад +15

      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 9 месяцев назад +2

      @@DisplacedGamers Haha, fair enough.

    • @nervaaugustus7089
      @nervaaugustus7089 9 месяцев назад +1

      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.

  • @treesapthief
    @treesapthief 9 месяцев назад +31

    I always find these videos so well laid out and easy to follow.

  • @DarkScorpion64
    @DarkScorpion64 9 месяцев назад +2

    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.

  • @happycheese4u32
    @happycheese4u32 9 месяцев назад +5

    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

  • @BlackieBloomberg
    @BlackieBloomberg 9 месяцев назад +2

    As neat as this is to see laid out I never had a problem with the game as it was

  • @lilylyons8885
    @lilylyons8885 9 месяцев назад +3

    With physics this overcomplicated I'm not surprised that Strider has the rendering issues mentioned in the last video

  • @daveloomis
    @daveloomis 9 месяцев назад +2

    30 years later... There's wall-jumping in this game, and I now know why I never beat it...

  • @TheRedSoxMan
    @TheRedSoxMan 9 месяцев назад +6

    I can't believe I, not only beat this game, but moderately enjoyed it

  • @dycedargselderbrother5353
    @dycedargselderbrother5353 9 месяцев назад +2

    "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?

  • @budkin
    @budkin 9 месяцев назад +4

    Man I love your videos. Absolutely fascinating!

  • @jtothebell
    @jtothebell 9 месяцев назад +2

    lol @ 4:36 "It gets better (as in worse)". Great video as always

  • @RaposaCadela
    @RaposaCadela 9 месяцев назад +5

    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)

  • @crtinkering7323
    @crtinkering7323 9 месяцев назад +1

    New Displaced Gamers video! Great way to start the Weekend!

  • @schwartzritterx5905
    @schwartzritterx5905 9 месяцев назад +3

    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.

  • @joshmiller887
    @joshmiller887 9 месяцев назад +3

    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!

  • @oobgarm1
    @oobgarm1 9 месяцев назад +4

    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 Месяц назад +1

      The music is the game is insanely good

  • @dayveeman
    @dayveeman 9 месяцев назад +2

    I don't know if this channel has merch, but a "Better grab a TACO!" shirt should be on it.

  • @erichb4530
    @erichb4530 8 месяцев назад

    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

  • @ThickCutOhio
    @ThickCutOhio 9 месяцев назад +2

    Cool video I’ve learned so much watching these videos.

  • @OptimusNiaa
    @OptimusNiaa 9 месяцев назад +1

    Excellently done, as always.

  • @Ketirz
    @Ketirz 9 месяцев назад +1

    Now, I'm not some incredible programming genius, but even I hear "jump frame lookup table" and find myself lost for words.

  • @dorkidori
    @dorkidori 9 месяцев назад +4

    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).

  • @CraftMine1000
    @CraftMine1000 9 месяцев назад +2

    The more I watch this the more I get the feeling that the devs had some severe cases of "I forgor" when developing this

  • @Jordan10704
    @Jordan10704 9 месяцев назад +1

    1:18 “Implemenation” 😅 Great video though, thanks for all the hard work on these.

  • @Absnerdity
    @Absnerdity 9 месяцев назад +3

    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.

  • @anon_y_mousse
    @anon_y_mousse 9 месяцев назад +10

    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  9 месяцев назад +7

      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 9 месяцев назад +4

      Mesen is just amazing in that regard @@DisplacedGamers

    • @CptJistuce
      @CptJistuce 9 месяцев назад +2

      I think all revisions of the PS2 can play PS1 games.

    • @anon_y_mousse
      @anon_y_mousse 9 месяцев назад +1

      @@CptJistuce If they could then it was with emulation, because they removed the PS1 chips in later revisions.

    • @CptJistuce
      @CptJistuce 9 месяцев назад +3

      @@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...

  • @stephenfrechette8181
    @stephenfrechette8181 9 месяцев назад +5

    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 9 месяцев назад +4

      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.

  • @OneLotJason
    @OneLotJason 9 месяцев назад +4

    You could make two years worth of videos about Strider's code.

  • @DaWhiteTyger
    @DaWhiteTyger 8 месяцев назад

    I simply love you and your explinations.................. Kudos!

    • @DaWhiteTyger
      @DaWhiteTyger 8 месяцев назад

      You ARE the MAN! With the master PLAN!

  • @PhaizKannon
    @PhaizKannon 8 месяцев назад

    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.

  • @Hristian123
    @Hristian123 9 месяцев назад

    Great video, as always! 👍

  • @AmeHart
    @AmeHart 9 месяцев назад +2

    Would love to see another deep dive and a way to patch the game to fix these ! Thanks for this video. Learning lots :)

  • @fmsyntheses
    @fmsyntheses 9 месяцев назад +1

    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

  • @David-ln8qh
    @David-ln8qh 9 месяцев назад

    I absolutely love these Strider videos.

  • @slot9
    @slot9 9 месяцев назад

    Great video!

  • @sporedoutofmymind
    @sporedoutofmymind 9 месяцев назад

    I've always loved your voice - it's like Phil Hartman giving a computer science lecture

  • @BasementBrothers
    @BasementBrothers 8 месяцев назад

    Amazing after all these years to finally get an explanation of what was actually going on!

  • @bpelectric
    @bpelectric 9 месяцев назад +1

    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.

  • @habeang304
    @habeang304 9 месяцев назад

    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😄😄

  • @SiLvErWaRe000
    @SiLvErWaRe000 8 месяцев назад

    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.

  • @DiceDrivenGameDev
    @DiceDrivenGameDev 6 месяцев назад

    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.

  • @FartSmucker
    @FartSmucker 9 месяцев назад +7

    had this game as a kid and it was one of those games that because of the cover everyone thought would be awesome only to be disappointed. But me being able to beat it or at least get to red dragon other kids thought i was like a fucking genius or something given how hard even just the controls were to figure out. A weird one for sure

  • @Boonehams
    @Boonehams 9 месяцев назад +5

    I'd be curious to see the difference in coding of Strider NES to other games that had decent wall jumping, like Batman NES.

  • @SomeGuy712x
    @SomeGuy712x 9 месяцев назад

    (18:26) This part gave me a chuckle. It'll be quite interesting when you finally cover those wacky oddities.

  • @multicoloredwiz
    @multicoloredwiz 9 месяцев назад

    lots of great work, god bless!

  • @LanceThumping
    @LanceThumping 9 месяцев назад

    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.

  • @idontwantahandlethough
    @idontwantahandlethough 8 месяцев назад +1

    @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  8 месяцев назад

      It wasn't, however now I am also hungry.

  • @DaWhiteTyger
    @DaWhiteTyger 8 месяцев назад

    "Welcome to the table of two sub-routines..." You done fricked us on this one!

  • @seanewing204
    @seanewing204 9 месяцев назад +2

    Sounds like Stryder is a solid candidate for a ground-up remake, not just a graphical overhaul or port.

  • @DaWhiteTyger
    @DaWhiteTyger 8 месяцев назад

    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 8 месяцев назад

      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 9 месяцев назад +4

    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 9 месяцев назад +3

      ... 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 9 месяцев назад +2

      It seems like a completely inept programmer did the work for some reason. Maybe it was an intern

    • @gordontaylor2815
      @gordontaylor2815 9 месяцев назад +2

      @@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.

  • @protolegacy9184
    @protolegacy9184 9 месяцев назад +1

    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.

  • @MrRodrigues520
    @MrRodrigues520 9 месяцев назад +1

    great explanation, if they ever release a strider collection that would be a good fix

  • @civildisorder
    @civildisorder 8 месяцев назад

    There has to be a "Strider if the game code was fixed" version floating around by now. It must feel great to play.

  • @sigma20xx
    @sigma20xx 8 месяцев назад

    As a kid, i had no idea Stixer had all these problems. Despite that, i still managed to finish it. I still remember my save file code from over 30 years ago. I played the hell out of that game.😅

  • @lacquerware6962
    @lacquerware6962 5 месяцев назад

    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.

  • @Fordi
    @Fordi 9 месяцев назад

    Oh, wow! You did it! I think I asked about it like last year.

  • @MrMarket1987
    @MrMarket1987 9 месяцев назад

    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.

  • @stakfallt2040
    @stakfallt2040 5 месяцев назад

    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.

  • @BigHailFan
    @BigHailFan 9 месяцев назад +1

    Nintendo: "Do the physics in your game work?"
    Devs: "......We have physics, yes."

  • @TwinOpinion
    @TwinOpinion 9 месяцев назад

    That look up table blew my mind. 🤣

  • @michaelsinnreich6626
    @michaelsinnreich6626 9 месяцев назад +1

    This was an exercise in frustration. No idea how i beat this as a kid.

  • @Roach1
    @Roach1 8 месяцев назад

    i don't know if you take suggestions mr displaced but i'd love to see a deep dive on ghosts n goblins for the NES, things like why the game sometimes swallows your inputs, the crazy amount of slowdown and sprite flickering to rival mega man 3, and maybe the unforgiving game design like arthur having the belmont jump

  • @andriypredmyrskyy7791
    @andriypredmyrskyy7791 9 месяцев назад +1

    I love your commentary. "Grab a taco", lovely.

  • @chanceForNotBeingRapper
    @chanceForNotBeingRapper 5 месяцев назад

    okay this Usa Nes exclusive did need a romhack patch revamp
    thx for covering the solition

  • @InsaneFirebat
    @InsaneFirebat 9 месяцев назад +4

    Walljumping in Super Metroid has roughly the same requirements. You must turn away from the wall before you can jump. Likely because there's a special pose for preparing to wall kick. I like it this way, but it does get a lot of complaints.

    • @GeneralBolas
      @GeneralBolas 9 месяцев назад +1

      Interestingly, wall-jumping in Metroid: Dread is the exact opposite. You must still be pressing into the wall in order to jump off of it. Now, this works in Dread in part because the game won't allow you to move Samus towards a wall until you've reached the height of your jump (and therefore cannot wall-jump up a single wall).
      But it also exists because you can speed boost into a wall and wall jump off of it, retaining your speed boost. Having to switch directions to wall jump would mean potentially losing your speed boost if you pull back too early. So there's enough time to visually confirm that you speed-boosted/wall-jumped correctly *before* you have to switch directions.

    • @zanegandini5350
      @zanegandini5350 9 месяцев назад

      Was wall-jumping even an intentional part of Super Metroid or was it just something people figured out to do after it was released? It feels more like an exploit than anything else, seeing as no part of the game requires it.

    • @GeneralBolas
      @GeneralBolas 9 месяцев назад +5

      @@zanegandini5350 No, it was deliberate.
      There is an entire room and creatures that populate it which exists to *teach you* how to wall jump. A room you can't leave without demonstrating some mastery of wall jumping (or infinite bomb jumping). It may be optional, but it was an option explicitly put there by the designers.
      Indeed, this fact is a big part of why SM became what it became. An optional move like wall jumping that could be employed to bypass certain "required" stuff or get some stuff early encourages players to find *other* tricks to break the sequence.

    • @LonelySpaceDetective
      @LonelySpaceDetective 8 месяцев назад +1

      The difference between walljumps in Super Metroid and Triangle Jumps in Strider NES are that SM not only has a visual cue for the button timing but they're also _consistent;_ there's a technique to doing them well, and you don't feel like it's the game's fault if you miss a jump.
      While Strider NES's Triangle Jump is not _quite_ as bad as one may get the impression of from this video if they've never played the game, it's still janky and inconsistent-feeling even with the right technique, and there's no visual indicator for them to indicate timing or even that you're supposed to turn around before trying to jump off the wall. Not to mention that you can't immediately Triangle Jump again after doing one, so that's another bit of timing to learn and one that adds to the inconsistent feeling.

  • @toronaldaris
    @toronaldaris 9 месяцев назад +2

    Strider: Displaced Gamers Edition - I smell Collab potential for a re-write for this game.

    • @DisplacedGamers
      @DisplacedGamers  9 месяцев назад +1

      Quite a bit of work!

    • @docwhogr
      @docwhogr 9 месяцев назад

      is the game any good otherwise to worth the time?

    • @tonybarnes2920
      @tonybarnes2920 9 месяцев назад +2

      @@docwhogrNo, not really. I only included elements of it in Strider 2014 because I wanted Strider 2014 to be a love-letter to all things Strider.

    • @snackerfork
      @snackerfork 9 месяцев назад

      @@tonybarnes2920 thank you so much for your comments on this video! i was really surprised to see someone officially involved on a strider game in the comments to this video, much less someone who has been an industry veteran for so long. you really can't get a much better source than that - your comments are really fascinating and educational.

    • @scruffydad9435
      @scruffydad9435 9 месяцев назад

      @@DisplacedGamers You say that--and I believe you--but in my head I imagine you pawing through drawers full of cards, each containing a single bespoke Game Genie code, by lantern light. The room is silent except for a steady drip, drip, drip in some unseen corner. "It has to be in here somewhere," you mutter to no one in particular, "I did a video on this just last week!"
      "Ah ha!" You shout, holding up a yellowed card. "At last, I've found it... the One True Code." And yet, you put the card back. Not because you're afraid to use it, but because you know that for the game to continue just a bit longer, the princess must be in another castle.

  • @Chubby_Bub
    @Chubby_Bub 9 месяцев назад

    "Some physics are bypassed when scrolling" sounds like a cool gimmick for a platformer that actually knows what it's doing.

  • @matthewlane518
    @matthewlane518 9 месяцев назад

    Played it, loved it, beat it, and never had a problem with the triangle jump

  • @ChinballsGaming
    @ChinballsGaming 9 месяцев назад

    You are a legend