NES Scrolling Basics featuring Super Mario Bros. - Behind the Code

  Рет қаралды 115,537

Displaced Gamers

Displaced Gamers

2 жыл бұрын

NES PPU, Scrolling, and some background talk - how does it all work?
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 - / @wolfandraven
Stickmen Illustration by Zach McCue (Twitter & Instagram - @zoddman)
#NES #Programming #Mario

Пікірлер: 285
@BastetFurry
@BastetFurry 2 жыл бұрын
That scrolling behavior was the reason for the doors in Metroid, that way the devs could hide the change from vertical to horizontal and vice versa.
@makeitrein7366
@makeitrein7366 2 жыл бұрын
Man this brings in perspective when people glitch out games like Megaman 1 when the background doesn't match the logic. It all now makes sense.
@DELTARYZ
@DELTARYZ 2 жыл бұрын
In older consoles like the NES, there wasn't really a differentiation between different kinds of data - it was up to the programmer to handle those distinctions. Which means, if you can bug out something in a game and get it to start reading data from an unintended address in RAM, those RAM contents then get fed through code that expects graphical data. Since there's no hardware distinction between these different kinds of data, it just goes right through and has very interesting effects. since game mechanics are just writing values to specific places in RAM, you may actually be able to set specific RAM addresses to specific values (sort of like how Cheat Engine works) if you know which exact tile corresponds to the RAM address you want to change. This is how the SMB3 wrong-warp skip in the pipe level is achieved - they do this by clipping through the level in a particular way that scrolls the screen far beyond the normal boundaries of the level, until it begins to start reading other sections of the RAM. There is a specific section in RAM that can be changed to instantly trigger a warp to the end credits, and since that code is interpreted by the game as an object (like a question mark block), they can actually interact with that object and set the desired value into RAM directly.
@awesomedata8973
@awesomedata8973 2 жыл бұрын
Dude, we need MORE of exactly this kind of stuff! -- I've always been interested in how tiles, sprites, scrolling, etc. worked on the NES, and never knew the literal _hardware_ determined scrolling direction on some games! Such a fun bit of trivia! :D I'm actually developing a scripting language based upon some of these old-school programming techniques, so the more of this kind of stuff you share, the more likely I can integrate some of the neat tooling/concepts I learn into a modern language! -- I already know quite a bit about NES programming methodology (thanks to my sprite animator background), but I was surprised to know there was even more NES programming-related concepts/techniques I didn't know! -- PLEASE do more of this kind of stuff! :D :D :D
@sypwn
@sypwn 2 жыл бұрын
Check out the channel "Retro Game Mechanics Explained". He is going through all the SNES hardware in a similar style.
@downscale
@downscale 2 жыл бұрын
@@sypwn Hey thanks!
@junior1388666
@junior1388666 2 жыл бұрын
Idk if I'm too dumb or if it is a language barrier (as english is not my first language) but I can't understand half the things he says
@relic374
@relic374 2 жыл бұрын
@@junior1388666 A lot of what he says is pretty advanced and complicated, so it's not that you are dumb or anything
@CarbonRollerCaco
@CarbonRollerCaco 2 жыл бұрын
@@relic374 Language barrier is most likely. Even if the hardware and code use a lot of terms that stay consistent around the world, the majority of them are in English as that's the de facto international human language of our little ball of dirt.
@Pesthuf
@Pesthuf 2 жыл бұрын
When it clicked that the ppu controller registers first two bits don't just act as overflow indicators, but select the nametable, I realized just how clever the system really is. I never understood the mirrored nametables until this video.
@CarbonRollerCaco
@CarbonRollerCaco 2 жыл бұрын
Yeah, people look at the nametable mirroring and think "it's storing the data TWICE?!" when it's really just REFERENCING the data twice.
@stevenschiro1838
@stevenschiro1838 2 жыл бұрын
Never clicked on a video faster. This is rapidly becoming one of my favorite channels
@awesomedata8973
@awesomedata8973 2 жыл бұрын
Right?? :)
@djhaloeight
@djhaloeight 2 жыл бұрын
Same!
@VinsCool
@VinsCool 2 жыл бұрын
Same here!
@SynaMax
@SynaMax 2 жыл бұрын
Chris, please don't stop making this content!
@Bofner
@Bofner 2 жыл бұрын
Been working on some Master System assembly lately. It's interesting how different, and similar the NES and SMS were at a programming level. As far as I know, the SMS does not have a second name table to play around with, just a single column on the left hand side of the screen that can be blanked for loading in new tiles, and 4 rows in the overscan underneath the main screen that the player never sees that can be used for vertical scrolling
@DisplacedGamers
@DisplacedGamers 2 жыл бұрын
I'd definitely like to get into the workings of the Sega Master System a bit more in the future.
@Bofner
@Bofner 2 жыл бұрын
@@DisplacedGamers Wow! I would love to see that! There's a bunch of games that have really interesting and unique effects. Plus it's almost identical to the Gamegear which has some even more interesting effects
@CptJistuce
@CptJistuce 2 жыл бұрын
There's PROBABLY good reasons for the similarities, though it would be hard to prove definitively. The Master System's graphics chip is known to be a relatively straightforward extension of TI's 9918a VDP used in Sega's previous SG1000(as well as the Colecovision, MSX, and several other machines). In fact, the Master System VDP contains all four 9918a display modes alongside the new fifth mode that adds support for multicolor sprites and tiles. And the 9918a only had provision for a single screen of data at a time, at a resolution of 256x192. (This lineage, incidentally, is why Sega referred to graphics chips as VDPs. That was the TI terminology, short for Video Display Processor.) Nintendo's PPU is PROBABLY based on the 9918a to some degree or another, hence the similarities. This isn't really a slam, before the Nintendo fans get mad at me. As the inventor of the sprite as we understand the concept today, there was a LOT of stuff taking ideas from TI's video display processors. But the similarities in behavior certainly make it seem like Nintendo's engineers read the datasheet book for the 9918a and then designed a simpler, single-mode chip that was more tightly focused on games. And being designed a few years later, they were looking at the dawn of scrolling gameplay while the TI design came from an era where ALL games were single-screen. (Most suggestively to this "shared history", Nintendo implemented one-bit collision detection in hardware instead of a more robust solution such as seen in Atari's GTIA and Commodore's VIC-II. One would expect a gaming-focused chip not bound by a legacy to have ... well, USEFUL collision detection).
@allluckyseven
@allluckyseven 2 жыл бұрын
@@CptJistuce Could you elaborate a little bit more on the last part? Why is the NES hardware collision detection bad and why are the other console/computers' much better?
@CptJistuce
@CptJistuce 2 жыл бұрын
@@allluckyseven Because the only thing it can tell you is "did sprite zero hit the background". The TI solution, inherited by the Master System and Genesis, is a similarly useless single bit that tells you "two sprites touched, don't know which." In either case, a software collision routine is required to figure out what's going on. Atari's GTIA and Commodore's VIC-II chips both have a set of registers that will tell you which objects were involved in a collision and what kind of collision(sprite/sprite, sprite/BG). You don't have to spend CPU cycles figuring out collision.
@Casey_Jones
@Casey_Jones 2 жыл бұрын
Has anyone ever de-soldered the horizontal and then soldered together the vertical on the Super Mario Bros pcb before?
@MarklarMusic
@MarklarMusic 2 жыл бұрын
What happens? We need more data!!!
@BigOlSmellyFlashlight
@BigOlSmellyFlashlight 2 жыл бұрын
that would be really interesting i don't have a cartridge or nes or ability to solder but i do have a rom and i could configure it to use vertical however, if i do that I'll forget to update this comment
@timtanason7250
@timtanason7250 2 жыл бұрын
This is what I'm wondering about.
@smartperson1
@smartperson1 2 жыл бұрын
Expectation: Since the y coordinate doesn't increase in SMB, we would never access the data for "screen 2". Therefore: 1. The screen would look normal to start 2. As you moved to the right, less and less of the screen would look normal. 3. The right part of the screen would be a repetition of the left part of the screen 4. When you moved far enough to the right that the screen starts to wrap back to the top left, the wrapping part of the screen would look normal. When x=0, then the entire screen would look normal again. 5. Repeat 2 through 4 as you continue to move right.
@MarklarMusic
@MarklarMusic 2 жыл бұрын
@@smartperson1 So you’ll just loop the first screens because there is no physical pathway to read the appropriate data?
@Hatchet2k4
@Hatchet2k4 2 жыл бұрын
I'm a simple man, I see a Displaced Gamers video, I watch and like it immediately. As always, amazing explanation and content!
@DisplacedGamers
@DisplacedGamers 2 жыл бұрын
Ha! Thank you.
@CarbonRollerCaco
@CarbonRollerCaco 2 жыл бұрын
Poppycock. There's no such thing as a simple man that loves coding. ;
@Hatchet2k4
@Hatchet2k4 2 жыл бұрын
@@CarbonRollerCaco Ok fair, haha!
@xehP
@xehP 2 жыл бұрын
when I was a kid playing n64 and ps2 games, I always thought to myself, "am I moving or is the world moving?" always tripped me up as a kid ngl
@death-by-ego
@death-by-ego 2 жыл бұрын
You can apply that same question even without the games being involved. Just sit down on your couch, hands on your legs and just stare forward. Now realize the Earth is spinning at around 1,000 mph. And now understand the Earth is also rotating around the Sun at around 67,000 mph. Is the world moving or you or both.
@melissawickersham9912
@melissawickersham9912 Жыл бұрын
@@death-by-ego The answer of course, is both you and the world are moving. You are being carried by the planet as it moves.
@LethalBubbles
@LethalBubbles 7 ай бұрын
the reason why mario 3 opens with curtains and has an animatronic stage theme is because of how the NES's scrolling the level to the left looked to Shigeru Miyamoto
@zerobyte802
@zerobyte802 2 жыл бұрын
If you continue on this, I'd really be interested in seeing what the "game logic" is that tracks Mario and enemies' position in world coordinates and how it holds the world map in memory while playing through a level.
@possible-realities
@possible-realities 2 жыл бұрын
Nice! Talking about Super Mario Bros. and scrolling, I would love to see a breakdown of the code that fills in the new tile data in the game as you scroll to the right. The way I understand it, the reason that you can't scroll to the left is because the level data is being procedurally generated / unpacked based on a much more compact description as you scroll right, which was needed to make the game fit into the small ROM that it uses - there must be some interesting bits in that unpacking code!
@MaxOakland
@MaxOakland 2 жыл бұрын
I was always curious about that
@tenslider6722
@tenslider6722 Жыл бұрын
If memory serves me correctly, didn't Super Marios 3 have scrolling left capability?
@iamhere490
@iamhere490 10 ай бұрын
​@@tenslider6722Yes
@TVsBen
@TVsBen 2 жыл бұрын
Another killer video that dives deep into the inner workings of the NES. Love all of your videos are amazing.
@CarletonTorpin
@CarletonTorpin 8 ай бұрын
I benefited greatly from your explanation of "addressing" within the context of programming. Thank you!
@VinsCool
@VinsCool 2 жыл бұрын
I love this stuff. I'm getting into the rabbit hole of programming and design so this is the information that I really like to learn about.
@H4v0c21
@H4v0c21 2 жыл бұрын
These videos are put together so well! I'm really enjoying your content, keep up the good work!
@ericsbuds
@ericsbuds Жыл бұрын
ive really come to appreciate these videos. thanks for putting in so much effort :)
@gormster
@gormster 2 жыл бұрын
I think there’s a mistake in the graphic at 14:37 - $2400 in binary should be 0010 0100 0000 0000, not 0010 0101 0000 0000. Same for the others - the XY bits are duplicated in all the addresses, but they should only be there once. In other words, bits 9 and 10 should be zero for all of them.
@DisplacedGamers
@DisplacedGamers 2 жыл бұрын
Ahh goodness. That's what happens with binary numbers split up into like 20 photoshop layers. I think I migrated the grey font layer over from under the white font layer on accident and just didn't get my show/hide layers set correctly. Thanks for pointing this out, Morgan.
@gormster
@gormster 2 жыл бұрын
@@DisplacedGamers no wuckas mate you’re an absolute champion
@Th1s230
@Th1s230 11 ай бұрын
My new favorite series to binge watch, thanks man, I'm trying to code my game, and these vids showing how insanely precise and meticulous programmers codes their games makes me less stress about crazy glitches or bugs, I will be on the watch for them tho.
@Vextrove
@Vextrove 2 жыл бұрын
Awesome! I didn't know this channel uploaded more videos, I'm happy
@mazionach
@mazionach 2 жыл бұрын
Even knowing all the details and having made actual nes homebrew, it's still fun to see this explained in a simple way. Its allways nice to see more people getting interested in this type of technical stuff!
@ArthurCousseau
@ArthurCousseau 2 жыл бұрын
I have no words for how invaluable this video is.
@michaelemory3102
@michaelemory3102 2 жыл бұрын
Keep up the great work! I love watching your videos.
@Spike223
@Spike223 Жыл бұрын
These videos are helping me fix up my NES homebrew game I am working on and helping fix some issues for my older one
@user-ig5qg7bx5r
@user-ig5qg7bx5r 2 жыл бұрын
Please. Make a video about Mario's move and jump physics. And how it's calculated. Thanks for a great work
@ThePsychoghost
@ThePsychoghost 2 жыл бұрын
Yes! Another video! I love this channel ✌️
@RealityStudioLLC888
@RealityStudioLLC888 2 жыл бұрын
Great video, it's amazing that for the early games horizontal or vertical scrolling was chosen by a hardware jumper on the cart itself, wild.
@marek_ryn
@marek_ryn 2 жыл бұрын
I'm in the process of developing my own handheld console (some samples can be seen on my channel) and information provided on your channel are priceless. Excellent work on your explanations. Thank you!
@KoshakiDev
@KoshakiDev Жыл бұрын
This channel is exactly what I was looking for! As a programmer, this is invaluable info. Please continue!
@DisplacedGamers
@DisplacedGamers Жыл бұрын
Plenty more episodes to follow!
@danielsutherland2599
@danielsutherland2599 2 жыл бұрын
I inject this straight into my veins, right up my alley. If these were an hour long I would love it. No such thing as too much information when it comes to this.
@Carbine64
@Carbine64 Ай бұрын
aw, very nice reference to My Life In Gaming, they really are the comfort food for retro gaming nerds.
@nflynn
@nflynn Жыл бұрын
You had me at learn everything all at one, I'm In!
@kargaroc386
@kargaroc386 Жыл бұрын
You are a genius with how you explained mirroring.
@NtQueryInformationProcess
@NtQueryInformationProcess 2 жыл бұрын
amazing video, keep up the good work
@twentysixhundred7813
@twentysixhundred7813 2 жыл бұрын
Thank you so much for this video. Im trying to implement software horizontal scrolling on a system that hasn't hardware scrolling registers. This really helps to get an understanding of how the NES hardware achieves it. Now with a clearer understanding i can try to convert the function into software. I already know how to bit shift "tiles" although the endless loop method really opens my mind to achieve the results in a more logical way.
@_polpon
@_polpon 2 жыл бұрын
Interesting! Scrolling is really complex so it's nice to have a video for reference :)
@billybollockhead5628
@billybollockhead5628 6 ай бұрын
Just found your channel.. Loving the Mario stuff, would love to see much more mario..
@mindseye7909
@mindseye7909 Жыл бұрын
Makes me really appreciate the games they put out on the NES!
@aner_bda
@aner_bda 2 жыл бұрын
I was really cool to see the solder pads. Kinda cool that you control over scrolling in hardware.
@zorksox
@zorksox 2 жыл бұрын
I've often heard that NES games could only scroll in one direction at a time due to these limitations. But the second nametable seems like it holds enough tile data to wrap a couple tiles all around the screen. You don't need half a screens worth of tiles loaded off screen, only a tile or two. It would be complicated to code, but I feel like it would be possible.
@Ails1234
@Ails1234 2 жыл бұрын
Mario 3 and many other games scroll both in the X and Y axis at once, with the downside of having the tiles loading on the sides visible (but often hidden by CRT tvs)
@AceZephyr1
@AceZephyr1 2 жыл бұрын
kzbin.info/www/bejne/rZfVf6Gtf9eooNk This is a good video that explains why this happens to SMB3
@maciejstachowski183
@maciejstachowski183 2 жыл бұрын
The problem is that you can't really tell the PPU what's where in the nametable - there might be enough memory, but the PPU expects it to be laid out so that it can read the tiles left-to-right, top-to-bottom. There's no code for it to be customized so that you could have a clever algorithm that handles scrolling down by reading the first nametable from eg. line 5, then once it reaches the bottom of the nametable it reads the fragmented bits of the bottom 5 lines from the second nametable. It's all hardwired. The way some NES games handled two-way scrolling is by utilizing the mirroring functionality - either by simply wrapping around (more useful with horizontal mirroring - you can have a vertical level that constantly wraps around horizontally), or by loading the tiles at the edge of the screen in the mirrored direction and using overscan or NES's display toggles to hide the magic.
@jeremydavis3631
@jeremydavis3631 2 жыл бұрын
The Commodore 64 did something similar to having one extra tile on each side. The screen was normally 40×25 tiles, but it was possible to decrease that to 38×24 so tiles could be loaded in the border. Unfortunately, the hardware only supported scrolling up to 7 pixels in each direction--enough to make the scrolling work, but only if the program was prepared to move every tile on the screen during vertical blanking. I wonder if any systems took the approach of wrapping a layer of tiles around the screen while also supporting a full screen's worth of hardware scrolling (with wraparound)?
@randomnerd4600
@randomnerd4600 2 жыл бұрын
the screen can fix exactly one nametable. you can rely on PPUMASK to make it seamless, but you can also just not care and the overscan will cover it for you. the real question would be "if its possible why arent games doing it?"
@c128stuff
@c128stuff 2 жыл бұрын
I never did anything with a NES, nor did I ever own one.. but I am very familiar with 6502 assembler.. Was very interesting to see this, and for me, you got exactly the right level of detail, I started knowing nothing about this hardware beyond the cpu, by the end, every detail of your story was clear, well done.
@auroth6805
@auroth6805 7 ай бұрын
I have digged my self into a very complicated rabbit hole ill spend the rest of the week researching. as this video left me with many questions
@lean.drocalil
@lean.drocalil 2 жыл бұрын
More NES technical stuff! Keep going!! 👊😎
@Pedritox0953
@Pedritox0953 Жыл бұрын
Great video!
@woodwart
@woodwart Жыл бұрын
They had a computer programming class before class hours at my elementary school back in the 80s. We were focused on using basic and doing Lego logo. I think I’m too old and removed to fully grasp everything you’re going over but man I would have absorbed this like crazy as a kid. I wish this kind of material had been available to me at that age. But the hardware was probably quite expensive at the time. Even having a computer lab back in those days was very recent phenomenon and was probably quite expensive. It was all Apple computers as well of course, so maybe that was also a barrier Heck even if Nintendo Power published stuff like this it would have been awesome. I thought I was all technical talking about mode 7, this would have been another level!
@snowgoer540
@snowgoer540 2 жыл бұрын
I can’t wait to get home and watch this. This channel is super underrated. Can’t wait for when you have a million subs and I can say I was OG DG
@DisplacedGamers
@DisplacedGamers 2 жыл бұрын
Ha! I would love to make it to 100k if possible. Thank you!
@analog_ape
@analog_ape 2 жыл бұрын
Super interesting!
@gustavo9758
@gustavo9758 5 ай бұрын
I automatically subscribed after a few minutes.
@ultraokletsgo
@ultraokletsgo 2 жыл бұрын
Thank you for introducing me to Wolf & Raven.
@DisplacedGamers
@DisplacedGamers 2 жыл бұрын
Thank you!
@slot9
@slot9 2 жыл бұрын
This was great! I learned. I clapped. I didn't cry. Loved the MLIG reference.
@kri249
@kri249 2 жыл бұрын
The notification for this video was the most pleasant of surprises. I have always been curious about the loading of backgrounds off screen. Ever since I saw the boundary break episode on Minecraft when outside the first person view all the backgrounds disappear and reappear as you turn your head around. It's obviously a smart programming technique to save memory. I know you tend to focus on the NES and Sega master system games but I'd love to see a video delving into the manipulation of backgrounds and sprites, like with mode 7 games. Just a thought. Either way love your work Chris. Cheers.
@CarbonRollerCaco
@CarbonRollerCaco 2 жыл бұрын
Retro Game Mechanics Explained put out several videos about the SNES's graphical trickery. That last-moment manipulation with HRAM is galaxy brain product.
@kri249
@kri249 2 жыл бұрын
@@CarbonRollerCaco I never heard of them but I might check them out. Thanks.
@AboveEmAllProduction
@AboveEmAllProduction 2 жыл бұрын
Omg the king returns 👑
@Nesmaniac
@Nesmaniac Жыл бұрын
Very interesting indeed. When I was little and played Super Mario Bros for the 1st time I was blown away. You must remember that before that it was pacman and frogger on my brothers atari 2600. The NES was revolutionary.
@TheNuje
@TheNuje 2 жыл бұрын
It took me some time to realize what nametable mirroring was all about. But I wrapped my head around it a few months ago. Still, great video though! And familiar emulator, so I feel right at home!
@jamesowens7148
@jamesowens7148 2 жыл бұрын
"Beyond the far right". I like the sound of that. I'm stealing it.
@thatwasprettyneat
@thatwasprettyneat Жыл бұрын
I just realized after reading those names that you were the "My Life In Gaming" people. Very cool.
@michaelturner2806
@michaelturner2806 2 жыл бұрын
A lot of this is over my head but it's interesting as heck anyway and you make a really good effort explaining each part so I have a much better chance of grasping the whole. Thank you so much! I can't help but wonder now what would happen if you take the smb cart, unsolder the H blob and bridge the V instead.
@mazionach
@mazionach 2 жыл бұрын
You can do that in emulators! In smb, as the game tries to load new tiles on the unused part of the nametables, there is now space for only one screen, so you can see the graphics loading on the left side of the screen.
@brute_lin2023
@brute_lin2023 2 жыл бұрын
Nice video!!! It is interesting
@Zebban89
@Zebban89 Жыл бұрын
Holyshit, this video make me appreciate the early gamedevelopers even more. Very intelligent people indeed, to have the brains to keep track of all this while making the levels. Great video, did not understand much but it sounds good! XD
@redlatter3769
@redlatter3769 2 жыл бұрын
Your videos are amazing and easier to understand. I wish you do an episode about the mosaïc effect in Mega Man 5. It's gonna be very interesting.
@d00mf00d
@d00mf00d 2 жыл бұрын
The particular information at 11:27 is used in speed running mega man 2, and Castlevania. Kinda cool
@janesigabaro7593
@janesigabaro7593 2 жыл бұрын
Wow! Programmers and developers are very intelligent and great with numbers. Bc I feel like I need a beginner programming course
@awesomedata8973
@awesomedata8973 2 жыл бұрын
Now I want to know more about SMB3, Zelda, and Megaman tile scrolling methods!! :D
@BluesM18A1
@BluesM18A1 5 ай бұрын
A video going in depth on how certain games handled simultaneous horizontal and vertical scrolling or used different nametable RAM configurations would be fun to watch. Only so many games used extra RAM to make all 4 nametables unique with no mirroring but I always wondered why they chose to do that.
@SamJoex
@SamJoex 2 жыл бұрын
What a perfect video to watch before my Assembly Language class
@DisplacedGamers
@DisplacedGamers 2 жыл бұрын
Cool! What flavor of assembly does your class use?
@SamJoex
@SamJoex 2 жыл бұрын
x86
@BubblegumCrash332
@BubblegumCrash332 2 жыл бұрын
I would love to see a video on how sprite scaling works. I love the old Sega super Scaler games.
@monolyth421
@monolyth421 2 жыл бұрын
Should mention that the fine x scroll selects a bit of the low byte of the 16-bit PPU shift register and the next byte is latched into the top byte every 8 cycles. That's really the key to smooth scrolling.
@goatbone
@goatbone 2 жыл бұрын
I guess this explains when the turtle shell will return after it gone off screen, it is only if an object it would bounce off has been drawn in the half screen off camera.
@digitalwerber_
@digitalwerber_ 2 жыл бұрын
Danke!
@DisplacedGamers
@DisplacedGamers 2 жыл бұрын
Thank you!
@peymanx
@peymanx 2 жыл бұрын
best of the best;
@marscaleb
@marscaleb 2 жыл бұрын
For some reason I was expecting Ikari Warriors when you were going to demonstrate vertical scrolling.
@andychamplin
@andychamplin 2 жыл бұрын
Can you do a visual representation for Super Mario Bros 3 and for games that do both horizontal and vertical scrolling since you already told us how it looks like on the board?
@VinsCool
@VinsCool 2 жыл бұрын
Retro Game Mechanics Explained has an excellent video related to the combination of Vertical and Horizontal mirroring, which is an excellent complement to this video. kzbin.info/www/bejne/rZfVf6Gtf9eooNk
@CarbonRollerCaco
@CarbonRollerCaco 2 жыл бұрын
Wow, even for something as simple as the original Super Mario Bros., ROM data alone isn't enough. Near, whatever their fate, was more right than I imagined. And now I want to know about that attribute table.
@OllAxe
@OllAxe Жыл бұрын
Something interesting about the statement in the beginning of the video is that exactly the same thing is still true in modern 3D graphics hardware. The camera never moves - the scene does.
@FeelingShred
@FeelingShred 2 жыл бұрын
Clouds the same as Vegetation can't unsee it now 🤣🤣
@SpaghettyLuvsU
@SpaghettyLuvsU 2 жыл бұрын
Love your stuff, but I have a minor accessibility quibble for those of us with color vision deficiencies. At 1:52, the odd-numbered grid lines have changed from dark blue to a deep purple/pink(?). While I _can_ see the difference, I have to look for it and I didn't notice at first. Some things that could help make it clearer for us colorblind folks: 1. Try using dotted or dashed lines for either the blue or purple lines 2. Make one set of lines thicker than the other 3. Show/animate the lines changing; in this instance, the change is hidden by the check pattern from 1:43 - 1:52 which makes it harder to notice I'm not saying "don't use color" btw, just that it's best to not _only_ rely on color to differentiate things. Cheers!
@ZozoHQX
@ZozoHQX 9 күн бұрын
love this shit!
@tommyzorera
@tommyzorera 2 жыл бұрын
Incredible video. That's the whole comment.
@gordontaylor2815
@gordontaylor2815 2 жыл бұрын
How this kind of scrolling works on the NES is a main reason why trying to do it too fast is generally a bad idea (as illustrated by hacks such as Superfast Mario Bros). The nametables can only be changed so fast, and if you overrun the loading zone data will get loaded incorrectly, resulting in onscreen "garbage". Incidentally, Game Genie codes that directly affect the values in the nametable and attribute table seem to guarantee dramatic effects of what is seen onscreen, and would be at least part of what causes the spectacle seen with codes such as IKAAAE and YEAAAA activated.
@johnmarkther2218
@johnmarkther2218 2 жыл бұрын
As someone with very little knowledge of some of the more involved bits, the conceptual aids help a great deal (:
@pskry
@pskry 2 жыл бұрын
I've got to say. Writing my own NES emulator was very helpful understanding these concepts.
@FeelingShred
@FeelingShred 2 жыл бұрын
if you know how to do these things, there's demand for one thing in the market of emulators that doesn't exist yet: audio volume control in Sega Genesis emulators... this already exists in NES emulators... this would be super useful to turn down the SFX of a game to listen the music play louder for example... some Genesis games have very harsh/trebly SFX when not being filtered by tube TV speakers
@aurathedraak7909
@aurathedraak7909 2 жыл бұрын
I can imagine programming this would be a headache but I would enjoy it but we also see some very impressive games.
@magickmskh
@magickmskh 2 жыл бұрын
It's really not as bad as you think.
@aurathedraak7909
@aurathedraak7909 2 жыл бұрын
@@magickmskh I never said it was hard , I'm just saying how tedious it must of been, I'm a programmer myself
@SerBallister
@SerBallister 2 жыл бұрын
@@aurathedraak7909 I did Gameboy development many moons ago. Can confirm the tedium when you don't have a debugger and have to flash program chips every time you compile.
@PlotagonRocksOtherChannel
@PlotagonRocksOtherChannel 8 ай бұрын
i hear a sample used in the song "hoppie"
@MarcosValverde_mcs
@MarcosValverde_mcs 2 жыл бұрын
Super Mario Bros. 1 widescreen confirmed! :P
@mikejones-vd3fg
@mikejones-vd3fg 2 жыл бұрын
cool
@dkranda
@dkranda 2 жыл бұрын
big ppu energy
@samuelthecamel
@samuelthecamel 2 жыл бұрын
This makes me wonder how Mario 3 works with all that horizontal and vertical scrolling at the same time
@miketate3445
@miketate3445 2 жыл бұрын
I now have a burning desire to see what happens if you remove that solder from H and put it on V, then try to play the game. You can't leave us hanging like that!
@HeribertoCantu
@HeribertoCantu Жыл бұрын
I'm now super curious on how Final Fantasy NES games handled vertical scrolling. When you walk up and down, you can see parts of the map drawn at the opposite direction that you're walking. I assume the vram size constraints would make the developers accept the visual glitch as a technical limitation of the system.
@TheTurnipKing
@TheTurnipKing 2 жыл бұрын
4:58 As I understand it, there's address space reserved for up to four screens of background data, but the stock NES doesnt have independent vram for them. By default the NES simply points those two extra pages at the existing 2k sram, but provision was made for changing that if extra RAM was supplied on the cart, allowing later games to have all four screens active at once. Planning ahead.
@mazionach
@mazionach 2 жыл бұрын
Sadly, not the most useful planning, as you can manage 2-way scrolling with even a single screen. The only games (that I know about) that uses extra vram for 4 screens are gauntlet and its sequel due to how expensive it was and how little it provided, instead of using it as regular work ram.
@ADreamPainter
@ADreamPainter 2 жыл бұрын
@@mazionach Also Super Mario Bros 2. Remember the first level, if you get the Tanookie Suite, you can fly into the air and the screen scrolls upward.
@mazionach
@mazionach 2 жыл бұрын
@@ADreamPainter I guess you meant super mario bros 3, and that game only uses 2 screens vertically! If you notice on the right side, there are glitches due to the game having no space to update the screen so that you don't notice it.
@ADreamPainter
@ADreamPainter 2 жыл бұрын
@@mazionach Interesting, that makes a lot of sense... Yeah I mean Mario 3. But that also explains the design of Mario 2. Areas that you travel vertically, pause when you reach the screen edge while the camera moved upward or downward.
@czarnykutas
@czarnykutas 2 жыл бұрын
super ekstra
@henke37
@henke37 2 жыл бұрын
Not mentioned: the status bar at the top not scrolling with the rest of the screen. Most games would use hblank triggers to know when to update the scroll register. But not SMB 1, it lacks the hardware for that. Instead it busy loops waiting for the object zero hit flag to be set. What's object zero? The bottom part of the flashing coin in the status bar. As such, the flag is set when the coin is drawn.
@matiasd.7755
@matiasd.7755 2 жыл бұрын
I think it would've been way easier to understand (and also to explain) if you would've said that the PPU chip is designed to access a background made of four nametables (or say, a 64 tiles width and 60 tiles height background, or 4 kB of tilemap data divided into 4 pieces, nametables, of 1kB each) But the memory of those nametables is external to the PPU chip itself. And so, when designing the famicom, they included that PPU supporting four nametables but they included only two real nametables, only 2kBs of VRAM for that use, giving the mirroring effect.
@georgef551
@georgef551 2 жыл бұрын
If the background moving to the left, or Mario to the right? Both, and you can see either, depending on movement.
@GilbertTang
@GilbertTang 2 жыл бұрын
It’s wild to imagine how different my life might’ve been had Chris been one of my teachers or early professors.
@hobbified
@hobbified 2 жыл бұрын
Hold it, control it, and PPU, come on, let's see you scroll it!
@OllAxe
@OllAxe 2 жыл бұрын
I had NO idea that scrolling could be configured by bridging two of the pads, I thought that was to be done in code. Fascinating! Thank you for this video! I love this series
@CarbonRollerCaco
@CarbonRollerCaco 2 жыл бұрын
I imagine that sort of hardcoding scrolling into the PPU saved game makers headaches given that scrolling would clearly be a common feature across most NES games. The NES was shockingly ahead of its time in terms of specialized hardware.
@stas_lu
@stas_lu 8 ай бұрын
I want to write a script in lua in the BizHawk emulator. which would show which tiles are currently displayed on the screen. the documentation says that we cannot read the PPUCTRL PPUSCROLL values, but only write them. with their help, I planned to calculate the position of the "camera" relative to the Nametables is there any way to find out which tiles we are currently seeing on the screen?
@MrTruckerash
@MrTruckerash 2 жыл бұрын
I would be interested to know the actual change of the hand traps in world 8 triggering and the code behind that
Contra - Behind the Code
23:02
Displaced Gamers
Рет қаралды 209 М.
NES Sprites, OAM, and the Battle for Priority - Behind the Code
19:17
Displaced Gamers
Рет қаралды 40 М.
ISSEI funny story😂😂😂Strange World | Pink with inoCat
00:36
ISSEI / いっせい
Рет қаралды 8 МЛН
Buy Feastables, Win Unlimited Money
00:51
MrBeast 2
Рет қаралды 60 МЛН
MINHA IRMÃ MALVADA CONTRA O GADGET DE TREM DE DOMINÓ 😡 #ferramenta
00:40
原来小女孩在求救#海贼王  #路飞
00:32
路飞与唐舞桐
Рет қаралды 29 МЛН
The Unseen Side of Speedrunning - 4:58.941 All Attempts [SMB1 Any%]
7:02
FlibidyDibidy
Рет қаралды 3,4 МЛН
Beating Super Mario Bros. as SLOWLY as Possible??
26:36
Kosmic
Рет қаралды 1 МЛН
How NES Games Are STILL Made in 40KB
14:33
Inkbox
Рет қаралды 90 М.
Super Mario Bros. 3 - Wrong Warp
10:07
Retro Game Mechanics Explained
Рет қаралды 806 М.
"Game Development in Eight Bits" by Kevin Zurawel
39:41
Strange Loop Conference
Рет қаралды 535 М.
NES Sound: The DMC - Behind the Code
33:48
Displaced Gamers
Рет қаралды 123 М.
How Super Mario Bros Was Made Into 40 Kilobytes
9:21
Joseph R Carroll
Рет қаралды 906 М.
NES Architecture Explained
18:28
NesHacker
Рет қаралды 271 М.
NES Graphics Explained
17:23
NesHacker
Рет қаралды 221 М.
How we fit an NES game into 40 Kilobytes
12:04
Morphcat Games
Рет қаралды 3,5 МЛН
Шансы на дроп из Яиц 🥚🐣
1:00
makvay
Рет қаралды 1,9 МЛН
СТЁР ДРУГА в РОБЛОКС! Roblox #roblox #роблокс
0:28
ВЛАДУС ИГРАЕТ
Рет қаралды 1,6 МЛН
Never Give Up! Herobrine Family vs Rich Noob Family #fyp #minecraftshorts
0:24
براول ستارز ضد زوبا #brawlstars vs zooba
0:53
Dance Stairs Race with DogDay & CatNap - Poppy Playtime  Chapter3
0:19