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

แชร์
ฝัง
  • เผยแพร่เมื่อ 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
  • เกม

ความคิดเห็น • 432

  • @Dark.Shingo
    @Dark.Shingo 8 หลายเดือนก่อน +217

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

    • @artstrutzenberg7197
      @artstrutzenberg7197 8 หลายเดือนก่อน +13

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

    • @KodakYarr
      @KodakYarr 8 หลายเดือนก่อน +8

      The answer is _just enough_

    • @scruffydad9435
      @scruffydad9435 8 หลายเดือนก่อน +7

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

    • @KodakYarr
      @KodakYarr 8 หลายเดือนก่อน +1

      As long as it compiles it's probably good enough

    • @LorenHelgeson
      @LorenHelgeson 8 หลายเดือนก่อน +8

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

  • @TARINunit9
    @TARINunit9 8 หลายเดือนก่อน +117

    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 9 วันที่ผ่านมา

      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.

  • @Patashu
    @Patashu 8 หลายเดือนก่อน +32

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

  • @Strakester
    @Strakester 8 หลายเดือนก่อน +16

    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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +9

      Exactly. These can be extremely hard to debug

    • @JH-pe3ro
      @JH-pe3ro 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +2

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

  • @bf1701
    @bf1701 8 หลายเดือนก่อน +105

    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  8 หลายเดือนก่อน +45

      Hey... What's that smell?

    • @SianaGearz
      @SianaGearz 8 หลายเดือนก่อน +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 😂

  • @tonybarnes2920
    @tonybarnes2920 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +5

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

    • @LonelySpaceDetective
      @LonelySpaceDetective 8 หลายเดือนก่อน

      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

  • @vtmarik
    @vtmarik 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน

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

  • @larryb5677
    @larryb5677 8 หลายเดือนก่อน +155

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

    • @DisplacedGamers
      @DisplacedGamers  8 หลายเดือนก่อน +60

      See you in 2045.

    • @mytwodogs4907
      @mytwodogs4907 8 หลายเดือนก่อน +7

      I would happily watch all 9 hours@@DisplacedGamers

    • @sirramslot5480
      @sirramslot5480 8 หลายเดือนก่อน +4

      ​@@DisplacedGamersMore like 2048 in Kazakhstan, right?

  • @anonymone453
    @anonymone453 8 หลายเดือนก่อน +14

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

  • @nickfarace9339
    @nickfarace9339 8 หลายเดือนก่อน +19

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

    • @gordontaylor2815
      @gordontaylor2815 8 หลายเดือนก่อน +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.

  • @dengeki1
    @dengeki1 8 หลายเดือนก่อน +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 17 วันที่ผ่านมา

      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.

  • @dionelr
    @dionelr 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +11

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

  • @TheDannMannn
    @TheDannMannn 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +2

      Amen! :)

    • @brendn
      @brendn 8 หลายเดือนก่อน

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

  • @carn9507
    @carn9507 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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!

  • @VincentGuillotine
    @VincentGuillotine 8 หลายเดือนก่อน +43

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

    • @DisplacedGamers
      @DisplacedGamers  8 หลายเดือนก่อน +19

      Seems like a case study.

  • @ShinoSarna
    @ShinoSarna 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +3

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

    • @abadenoughdude300
      @abadenoughdude300 8 หลายเดือนก่อน +4

      There's code behind Action 52?

    • @AliceErishech
      @AliceErishech 8 หลายเดือนก่อน +5

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

    • @Damaniel3
      @Damaniel3 8 หลายเดือนก่อน +2

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

    • @diamondsmasher
      @diamondsmasher 8 หลายเดือนก่อน +2

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

  • @thecunninlynguist
    @thecunninlynguist 8 หลายเดือนก่อน +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

  • @DisplacedGamers
    @DisplacedGamers  8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน

      This is basically coder church. PREACH IT BROTHER AMEN!

    • @djmips
      @djmips 8 หลายเดือนก่อน

      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.

  • @TheDannMannn
    @TheDannMannn 8 หลายเดือนก่อน +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  8 หลายเดือนก่อน +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.

  • @Peter_Morris
    @Peter_Morris 8 หลายเดือนก่อน +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.

  • @IpfxTwin
    @IpfxTwin 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +19

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

  • @nervaaugustus7089
    @nervaaugustus7089 8 หลายเดือนก่อน +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.

  • @Askanon
    @Askanon 8 หลายเดือนก่อน +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.

  • @Dargonhuman
    @Dargonhuman 8 หลายเดือนก่อน +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...

  • @LorenHelgeson
    @LorenHelgeson 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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  8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +2

      @@DisplacedGamers Haha, fair enough.

    • @nervaaugustus7089
      @nervaaugustus7089 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +31

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

  • @RaposaCadela
    @RaposaCadela 8 หลายเดือนก่อน +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)

  • @shona-sof
    @shona-sof 8 หลายเดือนก่อน +4

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

  • @vineheart01
    @vineheart01 8 หลายเดือนก่อน +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.

  • @lilylyons8885
    @lilylyons8885 8 หลายเดือนก่อน +3

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

  • @jtothebell
    @jtothebell 8 หลายเดือนก่อน +2

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

  • @DarkScorpion64
    @DarkScorpion64 8 หลายเดือนก่อน +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.

  • @dycedargselderbrother5353
    @dycedargselderbrother5353 8 หลายเดือนก่อน +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?

  • @TheRedSoxMan
    @TheRedSoxMan 8 หลายเดือนก่อน +6

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

  • @dayveeman
    @dayveeman 8 หลายเดือนก่อน +2

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

  • @happycheese4u32
    @happycheese4u32 8 หลายเดือนก่อน +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

  • @budkin
    @budkin 8 หลายเดือนก่อน +4

    Man I love your videos. Absolutely fascinating!

  • @Absnerdity
    @Absnerdity 8 หลายเดือนก่อน +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.

  • @BlackieBloomberg
    @BlackieBloomberg 8 หลายเดือนก่อน +2

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

  • @Ketirz
    @Ketirz 8 หลายเดือนก่อน +1

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

  • @FartSmucker
    @FartSmucker 8 หลายเดือนก่อน +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

  • @schwartzritterx5905
    @schwartzritterx5905 8 หลายเดือนก่อน +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.

  • @OneLotJason
    @OneLotJason 8 หลายเดือนก่อน +4

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

  • @oobgarm1
    @oobgarm1 8 หลายเดือนก่อน +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

  • @daveloomis
    @daveloomis 8 หลายเดือนก่อน +2

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

  • @joshmiller887
    @joshmiller887 8 หลายเดือนก่อน +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!

  • @dorkidori
    @dorkidori 8 หลายเดือนก่อน +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).

  • @Boonehams
    @Boonehams 8 หลายเดือนก่อน +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.

  • @fmsyntheses
    @fmsyntheses 8 หลายเดือนก่อน +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

  • @Jordan10704
    @Jordan10704 8 หลายเดือนก่อน +1

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

  • @stephenfrechette8181
    @stephenfrechette8181 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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.

  • @CraftMine1000
    @CraftMine1000 8 หลายเดือนก่อน +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

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

  • @zazelby
    @zazelby 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +2

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

    • @gordontaylor2815
      @gordontaylor2815 8 หลายเดือนก่อน +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.

  • @crtinkering7323
    @crtinkering7323 8 หลายเดือนก่อน +1

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

  • @LanceThumping
    @LanceThumping 8 หลายเดือนก่อน

    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.

  • @seanewing204
    @seanewing204 8 หลายเดือนก่อน +2

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

  • @AmeHart
    @AmeHart 8 หลายเดือนก่อน +2

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

  • @PhaizKannon
    @PhaizKannon 7 หลายเดือนก่อน

    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.

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

  • @SomeGuy712x
    @SomeGuy712x 8 หลายเดือนก่อน

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

  • @ThickCutOhio
    @ThickCutOhio 8 หลายเดือนก่อน +2

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

  • @anon_y_mousse
    @anon_y_mousse 8 หลายเดือนก่อน +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  8 หลายเดือนก่อน +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 8 หลายเดือนก่อน +4

      Mesen is just amazing in that regard @@DisplacedGamers

    • @CptJistuce
      @CptJistuce 8 หลายเดือนก่อน +2

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

    • @anon_y_mousse
      @anon_y_mousse 8 หลายเดือนก่อน +1

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

    • @CptJistuce
      @CptJistuce 8 หลายเดือนก่อน +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...

  • @sporedoutofmymind
    @sporedoutofmymind 8 หลายเดือนก่อน

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

  • @protolegacy9184
    @protolegacy9184 8 หลายเดือนก่อน +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.

  • @DaWhiteTyger
    @DaWhiteTyger 8 หลายเดือนก่อน

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

  • @OptimusNiaa
    @OptimusNiaa 8 หลายเดือนก่อน +1

    Excellently done, as always.

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

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

  • @michaelsinnreich6626
    @michaelsinnreich6626 8 หลายเดือนก่อน +1

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

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

  • @Hristian123
    @Hristian123 8 หลายเดือนก่อน

    Great video, as always! 👍

  • @bpelectric
    @bpelectric 8 หลายเดือนก่อน +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.

  • @BasementBrothers
    @BasementBrothers 8 หลายเดือนก่อน

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

  • @MrMarket1987
    @MrMarket1987 8 หลายเดือนก่อน

    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.

  • @DaWhiteTyger
    @DaWhiteTyger 8 หลายเดือนก่อน

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

    • @DaWhiteTyger
      @DaWhiteTyger 8 หลายเดือนก่อน

      You ARE the MAN! With the master PLAN!

  • @DiceDrivenGameDev
    @DiceDrivenGameDev 5 หลายเดือนก่อน

    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.

  • @habeang304
    @habeang304 8 หลายเดือนก่อน

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

  • @David-ln8qh
    @David-ln8qh 8 หลายเดือนก่อน

    I absolutely love these Strider videos.

  • @lacquerware6962
    @lacquerware6962 4 หลายเดือนก่อน

    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.

  • @BigHailFan
    @BigHailFan 8 หลายเดือนก่อน +1

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

  • @slot9
    @slot9 8 หลายเดือนก่อน

    Great video!

  • @slipperynickels
    @slipperynickels 8 หลายเดือนก่อน

    "we are just getting started" nearly 1/3rd of the way through the video is so ominous, lol

  • @OriginalMasters
    @OriginalMasters 8 หลายเดือนก่อน +1

    A wall-jumping animation would be nice.

  • @markgervais9094
    @markgervais9094 8 หลายเดือนก่อน +4

    I'm just gonna wait a few more months until you've finished fixing this game before I give it another playthrough.

  • @7thangelad586
    @7thangelad586 8 หลายเดือนก่อน

    The triangle jump reminds me of the wall jump in Super Metroid. It took me over 25 years to execute it properly.

  • @toronaldaris
    @toronaldaris 8 หลายเดือนก่อน +2

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

    • @DisplacedGamers
      @DisplacedGamers  8 หลายเดือนก่อน +1

      Quite a bit of work!

    • @docwhogr
      @docwhogr 8 หลายเดือนก่อน

      is the game any good otherwise to worth the time?

    • @tonybarnes2920
      @tonybarnes2920 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน

      @@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 8 หลายเดือนก่อน

      @@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 8 หลายเดือนก่อน

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

  • @Altirix_
    @Altirix_ 8 หลายเดือนก่อน +3

    you just know this became practically impossible to debug

  • @TwinOpinion
    @TwinOpinion 8 หลายเดือนก่อน

    That look up table blew my mind. 🤣

  • @multicoloredwiz
    @multicoloredwiz 8 หลายเดือนก่อน

    lots of great work, god bless!

  • @apollolux
    @apollolux 8 หลายเดือนก่อน +1

    I’ve seen enough of these videos to recognize the speech cadence, but if I didn’t know better I could swear you sounded a bit more angry or bitter at this particular game’s jump physics than in usual videos, and I wouldn’t blame you one bit given how frustrating the Strider NES coding has been shown to be.

  • @stakfallt2040
    @stakfallt2040 4 หลายเดือนก่อน

    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.

  • @Iristallite
    @Iristallite 8 หลายเดือนก่อน

    Hearing the short version of doing the Triangle Jump: "Oh, so it's like Super Metroid?"
    Hearing how broken it is: "Wow, that's... not a good implementation"

  • @VinsCool
    @VinsCool 8 หลายเดือนก่อน +1

    What a huge mess of code, and here I was feeling like my own code from yesterday's experiment I had uploaded on TH-cam earlier was completely busted.
    Maybe I didn't do that bad after all considering it's actually working exactly as intended, lmao

  • @MrRodrigues520
    @MrRodrigues520 8 หลายเดือนก่อน +1

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