Тёмный

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

Displaced Gamers
Подписаться 98 тыс.
Просмотров 118 тыс.
50% 1

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

Игры

Опубликовано:

 

31 янв 2022

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 285   
@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.
@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.
@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.
@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.
@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.
@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?
@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!
@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!
@SynaMax
@SynaMax 2 года назад
Chris, please don't stop making this content!
@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!
@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 11 месяцев назад
​@@tenslider6722Yes
@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.
@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.
@TVsBen
@TVsBen 2 года назад
Another killer video that dives deep into the inner workings of the NES. Love all of your videos are amazing.
@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 Год назад
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.
@H4v0c21
@H4v0c21 2 года назад
These videos are put together so well! I'm really enjoying your content, keep up the good work!
@ericsbuds
@ericsbuds 2 года назад
ive really come to appreciate these videos. thanks for putting in so much effort :)
@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.
@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
@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.
@Vextrove
@Vextrove 2 года назад
Awesome! I didn't know this channel uploaded more videos, I'm happy
@michaelemory3102
@michaelemory3102 2 года назад
Keep up the great work! I love watching your videos.
@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!
@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!
@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!
@Twenty_Six_Hundred
@Twenty_Six_Hundred 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.
@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
@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.
@CarletonTorpin
@CarletonTorpin 9 месяцев назад
I benefited greatly from your explanation of "addressing" within the context of programming. Thank you!
@billybollockhead5628
@billybollockhead5628 7 месяцев назад
Just found your channel.. Loving the Mario stuff, would love to see much more mario..
@ultraokletsgo
@ultraokletsgo 2 года назад
Thank you for introducing me to Wolf & Raven.
@DisplacedGamers
@DisplacedGamers 2 года назад
Thank you!
@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.
@aner_bda
@aner_bda 2 года назад
I was really cool to see the solder pads. Kinda cool that you control over scrolling in hardware.
@ArthurCousseau
@ArthurCousseau 2 года назад
I have no words for how invaluable this video is.
@_polpon
@_polpon 2 года назад
Interesting! Scrolling is really complex so it's nice to have a video for reference :)
@ThePsychoghost
@ThePsychoghost 2 года назад
Yes! Another video! I love this channel ✌️
@Carbine64
@Carbine64 2 месяца назад
aw, very nice reference to My Life In Gaming, they really are the comfort food for retro gaming nerds.
@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.
@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.
@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 года назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-wfrNnwJrujw.html 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?"
@kargaroc386
@kargaroc386 2 года назад
You are a genius with how you explained mirroring.
@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!
@nflynn
@nflynn Год назад
You had me at learn everything all at one, I'm In!
@auroth6805
@auroth6805 8 месяцев назад
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
@NtQueryInformationProcess
@NtQueryInformationProcess 2 года назад
amazing video, keep up the good work
@mindseye7909
@mindseye7909 2 года назад
Makes me really appreciate the games they put out on the NES!
@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!
@lean.drocalil
@lean.drocalil 2 года назад
More NES technical stuff! Keep going!! 👊😎
@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. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-wfrNnwJrujw.html
@d00mf00d
@d00mf00d 2 года назад
The particular information at 11:27 is used in speed running mega man 2, and Castlevania. Kinda cool
@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.
@thatwasprettyneat
@thatwasprettyneat 2 года назад
I just realized after reading those names that you were the "My Life In Gaming" people. Very cool.
@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!
@slot9
@slot9 2 года назад
This was great! I learned. I clapped. I didn't cry. Loved the MLIG reference.
@awesomedata8973
@awesomedata8973 2 года назад
Now I want to know more about SMB3, Zelda, and Megaman tile scrolling methods!! :D
@janesigabaro7593
@janesigabaro7593 2 года назад
Wow! Programmers and developers are very intelligent and great with numbers. Bc I feel like I need a beginner programming course
@LethalBubbles
@LethalBubbles 8 месяцев назад
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
@BluesM18A1
@BluesM18A1 7 месяцев назад
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
@Pedritox0953
@Pedritox0953 Год назад
Great video!
@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.
@jamesowens7148
@jamesowens7148 2 года назад
"Beyond the far right". I like the sound of that. I'm stealing it.
@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
@analog_ape
@analog_ape 2 года назад
Super interesting!
@BubblegumCrash332
@BubblegumCrash332 2 года назад
I would love to see a video on how sprite scaling works. I love the old Sega super Scaler games.
@gustavo9758
@gustavo9758 6 месяцев назад
I automatically subscribed after a few minutes.
@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.
@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.
@johnmarkther2218
@johnmarkther2218 2 года назад
As someone with very little knowledge of some of the more involved bits, the conceptual aids help a great deal (:
@brute_lin2023
@brute_lin2023 2 года назад
Nice video!!! It is interesting
@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.
@marscaleb
@marscaleb 2 года назад
For some reason I was expecting Ikari Warriors when you were going to demonstrate vertical scrolling.
@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.
@digitalwerber_
@digitalwerber_ 2 года назад
Danke!
@DisplacedGamers
@DisplacedGamers 2 года назад
Thank you!
@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
@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.
@AboveEmAllProduction
@AboveEmAllProduction 2 года назад
Omg the king returns 👑
@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.
@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.
@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.
@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!
@void-highlighter
@void-highlighter 2 года назад
This is pretty cool. What about when you go up a vine how does smb do that if it is hardwired to horizontal scrolling?
@milesrotaru
@milesrotaru 2 года назад
In the original Super Mario Bros there's no vertical scrolling while you climb a vine. Mario just gets to the top of the screen and then a whole new level is loaded.
@tsht
@tsht 2 года назад
For what I remember, it doesn't scroll, it is like entering a pipe (there is a speedrun trick with this, entering a pipe instead of going through a vine, it depends on mario relative x position on screen)
@void-highlighter
@void-highlighter 2 года назад
Oh cool thanks for the explanation 👍
Год назад
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.
@mwk1
@mwk1 2 года назад
Na składance 168in1 na Pegasus było kilka wersji Super Mario Bros, gdzie było zastosowanych kilka takich "sztuczek" z tablicami. Najpopularniejsza z nich to znana (a może nie) na całym świecie wersja "Dream Mario" ;-)
@YNGBLD80
@YNGBLD80 Год назад
Hi Chris great stuff mate, I was wondering if you could explain the mirroring concept a little more for the average Joe!. I'm kinda of lost "on the opposite axis scrolling" like here in SMB we scroll horizontally but mirror vertically why?. Once we flip the bit in the ctrl register moving from $2000 to $2400 nametables ,when the tiles exceed max pixels in $2400 and we flip back to 00 in the ctrl register doens't it just go back to $2000, or do we need to go through all 4 nametables 00 01 10 11 through the ctrl register everything we scroll and if so why? Thanks mate your stuff is unreal
@lupinthird
@lupinthird 2 года назад
Are there any plans for an “advanced mirroring concepts” video, or maybe an “in-depth look at a bunch of popular mappers” video?
@zanto1
@zanto1 5 месяцев назад
Hi! Do you plan to make a video about 4 way scrolling? Like they do in games like Dragon Warrior? It really confuses me how games can do that. How do they know which metatiles to load? Do they load everything into memory?
@FeelingShred
@FeelingShred 2 года назад
Clouds the same as Vegetation can't unsee it now 🤣🤣
@MarcosValverde_mcs
@MarcosValverde_mcs 2 года назад
Super Mario Bros. 1 widescreen confirmed! :P
@MauricioVives
@MauricioVives Год назад
Something I was hoping this would cover: since the text font patterns are referenced in the background nametable, how does the status text stay fixed on the screen while scrolling?
@georgef551
@georgef551 2 года назад
If the background moving to the left, or Mario to the right? Both, and you can see either, depending on movement.
@ZozoHQX
@ZozoHQX Месяц назад
love this shit!
@mikejones-vd3fg
@mikejones-vd3fg 2 года назад
cool
@tommyzorera
@tommyzorera 2 года назад
Incredible video. That's the whole comment.
@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
@samuelthecamel
@samuelthecamel 2 года назад
This makes me wonder how Mario 3 works with all that horizontal and vertical scrolling at the same time
@themonsterunderyourbed9408
@themonsterunderyourbed9408 Год назад
It's the same thing with racing games. Is the car moving forward though the track with the camera following or is the car stationary while the stage moves around it. Fyi, I don't like the idea that your character stays in place while the level moves around him, in any game.
Далее
"Game Development in Eight Bits" by Kevin Zurawel
39:41
Can you beat Super Mario Bros. if the Floor is Lava?
17:54
Coca-Cola 😂🫲
00:20
Просмотров 3,3 млн
How NES Games Use State Machines For Everything
8:21
Why Doom is Awesome: Binary Space Partitioning
26:25
How Super Mario Bros Was Made Into 40 Kilobytes
9:21
Просмотров 913 тыс.
MSX Computers - Scrolling, Sprites, and Stereotypes
31:02
NES Architecture Explained
18:28
Просмотров 274 тыс.
Can I Remake Super Mario World in Godot? (Part 1)
18:44
skibidi toilet zombie universe 31 ( New Virus)
2:32
Просмотров 1,6 млн