SNES Background Modes 0-6 - Super Nintendo Entertainment System Features Pt. 04

  Рет қаралды 148,129

Retro Game Mechanics Explained

Retro Game Mechanics Explained

Күн бұрын

Пікірлер: 232
@dbdist1
@dbdist1 7 жыл бұрын
Examples of games I know: Mode 0: Yoshi's Island (Intro and corridor before the last boss). Super Mario Kart (Only the backgrounds. The track was Mode 7 - they could change modes at the end of each scanline.) Final Fantasy IV (Japan) II (USA) (Only the Menu) Mode 1: Basically every game. Mode 2: Yoshi's Island (The part shown in the video and the wavy lava level.) Star Fox. Chrono Trigger (Title Screen) Mode 3: Doom Dirty Trax FX Stunt Race FX I've heard there are title screens using this mode, but I don't know any. Mode 4: Puzzle Bobble (I'm not sure) Mode 5: RPM Racing Secret of Mana (Menu) Mode 6: no game
@inceptional
@inceptional 3 жыл бұрын
How does Mario Kart use Mode 0 in the backgrounds if the backgrounds only every seem to show at most two overlapping layers? When do any of the backgrounds use four layers? I'd really like to know this so I can check it out. I'm now wondering if there's some cool way to use Mode 6 in a game too. . . .
@dbdist1
@dbdist1 3 жыл бұрын
@@inceptional BG 1 is disabled. I believe there wasn't any memory left, since mode 7 was using it for the track. BG 2 is the hud BG 3 is the front background (trees) BG 4 is the one in the back (mountains)
@inceptional
@inceptional 3 жыл бұрын
@@dbdist1 Strange, because if they only ended up using 3 of the available backgrounds anyway then I wonder why they didn't just use Mode 1 and then they could have had more colours in the background layers. It seems Street Racer did it much better and actually used the three available layers of Mode 1 for the backgrounds with much more overlapping parallax and in higher colour too.
@JorWat25
@JorWat25 7 жыл бұрын
You know, I've heard of Mode 7 a lot, but I never realised that meant there were lesser numbered modes...
@Chaos89P
@Chaos89P 7 жыл бұрын
Mode 7 is insane.
@refraggedbean
@refraggedbean 7 жыл бұрын
7 is the best mode
@KnakuanaRka
@KnakuanaRka 5 жыл бұрын
Yeah, I always wondered why it was called that.
@arielsproul8811
@arielsproul8811 4 жыл бұрын
Reminds me of drive C: where's A: and B:
@olbluelips
@olbluelips 3 жыл бұрын
@@arielsproul8811 A and B are floppy drives
@KuraIthys
@KuraIthys 7 жыл бұрын
You can think of the SNES graphics chip as having 3 distinct components that only sort of interact. First there's backgrounds, second there's sprites, and finally there's post-processing. The background modes really just seem to come down to having a certain set of features, and deliberately limiting which you can use at the same time. My guess is the reason the particular limits were chosen was because they represent the most you can do at once with the VRAM bandwidth available. Every mode pretty much seems to work out to needing the same amount of bandwidth... So that seems probable. You have 4 backgrounds, all of which can do 3/4 colour per tile mode. Backgrounds 1, 2 and 3 can do 15/16 colour per tile mode, and background one can also do 256 colour per tile mode. But each extra background layer used requires the equivalent of 2 bits per pixel to access the tilemap, then the tiles themselves are equivalent to 2 bits per pixel for 4 colours, 4 bits for 16, and 8 for 256. If you look at the modes, you see this generally ads up to 16 bits. Eg. Mode 0: 4 layers, 4 colours per tile for each layer -> 4x2 bits accessed for tilemaps, 4x2 accessed for tile data. -> 16 bits Mode 1: 3 layers, first two get 16 colours per tile, the third gets 4 colours per tile. -> 3x2 bits accessed for tilemaps, 2x4 for layers 0 and 1, and 1x2 for layer 3. -> total: 6 + 8 + 2 = 16 bits Mode 3: 2 layers, first gets 256 colours per tile, second gets 16 -> 2x2 bits for tilemaps, 1x8 for layer 0, 1x4 for layer 1 -> Total 4 + 8 + 4 = 16 bits. Etc. So basically the modes are set up so that you only ever access 16 bits of memory for every pixel drawn onscreen. The offset per tile modes (2, 4 and 6) are the strangest, and you might wonder what they are. They are all equivalent to the mode one down from them (1, 3 and 5), but with a layer missing; instead, they have the equivalent of another tilemap, but rather than specifying tiles for a layer it specifies the translation in x and y for that specific tile. X is only accurate to whole tile boundaries (8 pixels), but Y is accurate to single pixels. If you're wondering what on earth you'd ever need that for... Well there are a lot of creative potential uses, but the most obvious is a game like tetris - using offset per tile, you can make the blocks drop down without using any sprites - the pieces can be background elements. Lots of complex effects can be done like this - it's just a mode that sounds very strange if you can't quite wrap your head around it. High resolution mode... Well, you double the horizontal resolution. That should be pretty simple to understand. Though it has some quirks because sprites don't get doubled resolution. You can also double the vertical resolution, but to do so you end up switching everything to interlaced mode, which causes screen flicker and halves the framerate... These modes all make sense when you think about them long enough. But most are niche cases, or have some problems in practice. - Mode 0 is basically if you want a lot of background layers. Though it's main purpose was for NES backwards compatibility that ended up never happening. - Mode 1 is your standard mode that you use if you have no special needs of any kind. - Mode 2 is mode 1 but with offset per tile (eg for tetris or similar games, or special effects) - you do lose the third background to make this happen Mode 3 is high colour mode - RAM limits make it a bit hard to use effectively, but it's pretty good for static stuff like title screens. - Mode 4 is mode 3 with offset per tile. It combines the features of modes 2 and 3, but is probably impractical for most purposes because of it. You also lose some colour depth in your second background layer for this. - mode 5 is high resolution mode. It's rarely used because some bugs and memory limitations make it complex to deal with. However, several late era games used it to draw text in higher quality. (something made easier because you can swap modes midframe, so the main game window can be say mode 1, while the text box is mode 5) - mode 6 is mode 5 with offset per tile. Possibly the single most impractical mode around, considering even using mode 5 is already really challenging. And of course, mode 7... Which is quite unlike the other background modes in any way. All the others have features and minor details in common. Mode 7 does not. But, it does allow you to rotate and scale the single background layer. The infamous perspective effect results from changing the scaling matrix on every scanline. (changing things on every scanline is one of the most common graphics tricks the SNES uses. Many, many, MANY different effects are done due to this - it even has special hardware to help specifically with doing so - H-DMA) It's an interesting set of abilities...
@Polai010
@Polai010 4 жыл бұрын
Sorry But I don’t have the time to read it
@kimgkomg
@kimgkomg 4 жыл бұрын
My stomach hurts
@johneymute
@johneymute 4 жыл бұрын
Just imagine different region versions of supermarioworld,donkeykong country,aladdin etc,,, wich run at a different mode per region basis,such as mode 0,mode 5,mode 6 and mode 7, that means that in some modus, the amount of colors is limited, and the only way to get around that is using color dithering & blurring and blending or use the color HAM trick to get around that ,while in other modus such as mode 6 & 7 ,line scrolling, tile updates and/or the use of 128 sprites can be used to mimmick an extra BG layer, Mode 6 will require both color tricks & scanline, tile updates and sprite tricks to get around those limitations, With those graphical tricks in mind for each used mode, you can make different versions of identical games running each in a different mode ,but still graphically close to eachother and they all still would just run on the same system, that would be so interesting,just to see how game devs could get around those limitations in each graphical mode, Am mean blended 16 colors vs 256 colors = no problem to me, 1 single layer background with line scrolling, tile updates along with sprites vs 4 scrolling background layers = again no problem to me, This is definitely interesting stuff, it’s almost like porting a game to different systems, But it’s also as if the snes could run in nes,pc engine and sega genesis mode, And last but not least back then we tout that the snes could do all stuff like this atonce ,since nintendo was agressively overstating those capabilities of the snes by saying “ it could do mode 7, 256 colors on screen, it has a resolution of 512x448 pixels making it look more sharper then other systems,it could do 4 background layers and it also has 8 different modus” it all sounded cool on paper but they didn’t tell that the snes could not do it all atonce(aaarrrggg) that probably would,ve require a 32bit gpu and more ram, and those overhyped 8 modes were just restrictives modes so that’s the thing, Now you might could bypass those 8 different modes by doing everything in software such as sprite scaling etc,,, but this can harm the cpu in speed,but Non the less the snes is still my favorite and a great system trough !!!
@inceptional
@inceptional 3 жыл бұрын
I wonder why someone then hasn't done some kind of hack to use Mode 0 to let people play NES games on the SNES or something? Or maybe I'm just under-thinking this.
@watchm4ker
@watchm4ker 2 жыл бұрын
@@inceptional The problem is the sound system. The CPU, PPU, and Controller interface are all compatible, in theory, but the sound chipset is a complete departure. I also don't know if the interfaces all line up in the right way to allow a Famicom ROM to boot, even if the sound chip was replaced with something compatible.
@GPIA
@GPIA 7 жыл бұрын
Would have loved to see examples of when each mode was used, and why it used the mode that it did.
@johneysupergd7796
@johneysupergd7796 6 жыл бұрын
As a child i never know each mode has it’s own restrictions ,that’s because nintendo just overhyped & overstated their snes to be ‘very powerful’ by saying; it can generate graphics at 512x480 at 256 colors with multi scrolling backgrounds, and it could do pretty much cd quality,, but the reality is, it can only do 1 of those things atonce but sadly not all atonce no, They did tell you that hich res costs you high color depth, while a low-res give you high color dept etc,,, And for near cd quality sound that would cost you all the ram and cpu power sothat there was nothing left to run a game. Well if the snes did had more ram and a fast 42bit cpu,then it could,ve use & push all those snes chipsets to it’s max all atonce, but yeah a more powerful cpu would,ve added extra costs to it, so it is what it just is, those restrictions per mode were made with the slow 16bit and limited ram in mind, no wonder!!!.
@adamsfusion
@adamsfusion 7 жыл бұрын
I'm a simple man. I see video on retro game mechanics, I like.
@pomdeterre
@pomdeterre 7 жыл бұрын
Great video and really interesting topic. I would have loved more examples of games utilizing the different modes. It was a little bit difficult to understand the purpose of all the features.
@famitory
@famitory 7 жыл бұрын
mode 0: two and a half NESes mode 1: you know, like super mario world mode 2: the entire screen is elevators mode 3: a picture and a normal layer mode 4: a picture and a status bar. also the screen is elevators mode 5: double your resolution or no down payment mode 6: double your resolution and the entire screen is elevators, also you only get one layer.
@Chauckles
@Chauckles 7 жыл бұрын
Thank you for this.
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
Rarely ever do games use modes outside of 1, 3, and 7, and 3 is really only ever used for title screens.
@marcelo55869
@marcelo55869 7 жыл бұрын
Can't wait to see the glorious mode 7! . Mode 7 is legendary epic algebra nonsense crammed every 1/60s.
@SerBallister
@SerBallister 7 жыл бұрын
Every raster line, so about 256x as frequent
@mariannmariann2052
@mariannmariann2052 5 жыл бұрын
Basically Mode 7 is a mode where a background layer can be skewed and scaled.
@Owl90
@Owl90 6 жыл бұрын
These series of videos make me appreciate how such geniuses the game directors who could create masterpieces on the SNES were. Having to work with such restrains and being able to pull off stuff like A Link to the Past, Super Mario World, Super Metroid, FF VI, and many others is nothing short of incredible. True artists and geniuses in my opinion.
@joejoe4games
@joejoe4games 7 жыл бұрын
Awesome video thou a few more example pictures of the mode in action would have been helpfull.
@YellowBunny
@YellowBunny 7 жыл бұрын
helpful*
@jonny_0093
@jonny_0093 7 жыл бұрын
agree, there are only example for the first modes only.
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
Giovanni Nigro Virtually nothing use Modes outside of 1, 3, and 7.
@ExEBoss
@ExEBoss 6 жыл бұрын
*+Drew Sebastino* Secret of Mana uses Mode 5 for it’s menus.
@kitsunelunari
@kitsunelunari 7 жыл бұрын
you cant just tell me about vertical tile shifting while also showing a really good chain in tetris attack thats just too much at once
@RaeldorDraken
@RaeldorDraken 7 жыл бұрын
I always wondered the rest of the modes, only hearing of mode 7, but the rest? and the only thing I found was that were layers and that's all. Finally I can understand it. Great video!
@AdamDane
@AdamDane 7 жыл бұрын
Emulators HATE this one mode, click now to find out which one!
@thelinkofalllinks
@thelinkofalllinks 7 жыл бұрын
Mode 5... Saved you a click
@Dargonhuman
@Dargonhuman 7 жыл бұрын
The Link Except I still had to click "Show Replies" to see that, so you really didn't...
@Domarius64
@Domarius64 7 жыл бұрын
This one WEIRD mode that will save you money!
@refraggedbean
@refraggedbean 7 жыл бұрын
but WHY mode 5 and early mode 2
@lucianothewindowsfan
@lucianothewindowsfan 4 жыл бұрын
SA-1 (The Emulator Who Hates It is ZSNES)
@vectrex28
@vectrex28 7 жыл бұрын
1:51 Kudos for showing SOS! Criminally underrated game right there
@oxydiass
@oxydiass 7 жыл бұрын
Excellent video but i was hoping for more exemple to see what those feature really do in game. :)
@Color-Theory
@Color-Theory 3 жыл бұрын
All the videos in this series are absolutely packed with information. It's making me want to try working on the snes a bit. Thank you!
@MFMegaZeroX7
@MFMegaZeroX7 7 жыл бұрын
This is one of my favorite KZbin channels. Keep up the good work!
@greasycrab
@greasycrab 7 жыл бұрын
Great video, I really love how detailed your explanations are. Just wish that you had used some more examples showing of the features you explained. That kind of demonstration would really help show how all these features are combined.
@Tickenest
@Tickenest 7 жыл бұрын
This is a great video. I'm especially impressed by the way you visualized and separated out the different layers as you went through each mode. Well done.
@mb9647
@mb9647 5 жыл бұрын
This series is so amazing! Learned a lot. I'd love to see a tutorial on how you make these. The layer splitting animations are especially cool
@CaptainCafe
@CaptainCafe 7 жыл бұрын
Cool video. Wish the later modes has more in game examples. The first few did and made it easy to understand
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
It's because there literally aren't any. I'm not aware of a single game that uses Modes 4 or 6, and Mode 5 is, no joke, used in less than 5, with the game on-screen being the only one to use it outside of menus.
@TheLoveMario
@TheLoveMario 7 жыл бұрын
The only example for Mode 5 that comes to mind is Seiken Densetsu 3. In that game, the inventory menu uses high-res mode to display both the text AND the background. Interlacing, however, is not used (either that or my emulator doesn't support it)
@Niko0902
@Niko0902 7 жыл бұрын
You're easily one of my most favourite channels on KZbin. Keep it up.
@ricarleite
@ricarleite 7 жыл бұрын
The amount of detail and technical achievement on the SNES hardware is amazing, all to maximize the graphical capabilities of the console. Today, with the amount of video memory available, you can just throw in whatever shit you want on screen, regardless of how huge or complicated, and let the hardware do the trick anyway.
@watchm4ker
@watchm4ker 2 жыл бұрын
Today that's mostly true, but a framebuffer is not a panacea. Before high-speed VGA cards came along, there wasn't enough bandwidth on the bus to change whole screens at once. Tile based graphics can get around this by having much bigger tilemaps than the system can render, but the PC didn't have that. It was a surprise when ID software proved you could make a scrolling platformer work on an EGA card without a low framerate, hideous glitching or a juddering playfield.
@kaptenteo
@kaptenteo 7 жыл бұрын
This is a wonderful series, and I especially like it when these technical things are demonstrated using examples from real SNES games. I wish there were more of those, however, as they really help demonstrate to me how all these technical things work in practice.
@stevenschiro1838
@stevenschiro1838 7 жыл бұрын
I love it, great job explaining all the modes. Could we get a part 2 with a few more examples? Is there a way to tell on emulator what mode you are in?
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
Depends on the emulator. It's usually pretty easy to discern what mode is being used by looking at how many background layers there are onscreen and judging the color depth of each tile.
@AdrianCastravete
@AdrianCastravete 7 жыл бұрын
Wow, very nice videos. Just finished watching parts 1 through 4. Some of this I knew only written down in spec documents, but your visualisations make it very awesome!!! I can hardly wait for the next one. Though seeing the timestamps I'm going to have to find something to do in the mean time :D. Top notch videos! :D Good luck with future ones.
@Starius65
@Starius65 5 жыл бұрын
This is really fascinating, but I did myself quite confused without any examples.
@kyoai
@kyoai 7 жыл бұрын
Thank you very much for explaining so many retro mechanics, many of them are extremely interesting, just to know how much innovation they had to do back in the day. Request : Next you should explain Blast Processing. :P j/K
@chuckobscure
@chuckobscure 7 жыл бұрын
I can explain it. The Genesis' processor was nearly 3 times faster than the SNES'.
@davecool42
@davecool42 6 жыл бұрын
Love this. Thank you so much. Could you show games which use each mode so we can get a visual of each tradeoff?
@Bismuth208
@Bismuth208 7 жыл бұрын
Once again you made another totally awesome and incredible video! Thank you!
@pppgggr
@pppgggr 7 жыл бұрын
When I get further in my ComSci and Engineering courses and want to start making Homebrew software, I'm going to come back to this video as a starting reference. Thanks!
@efika1267
@efika1267 Жыл бұрын
im currently trying to make a game in unity that's completely faithful to the snes hardware. this series has helped a ton so thank you
@razeezar
@razeezar 7 жыл бұрын
I was just thinking about this very subject the other day and wondering whether a video exists on this subject matter. Never did search it, and now I don't have to. Thanks!
@NukeOTron
@NukeOTron Жыл бұрын
Thank you. I've been wondering why Super Donkey, a certain prototype, was using four layers, and I realized that it was also cleverly using three/four colors on each layer's tiles.
@KuraIthys
@KuraIthys 7 жыл бұрын
I think you're wrong about offset per tile being the only method to divide the screen horizontally - you can use the window masks as well. If you use at least two background layers, and set one to be inside the mask, and one outside of it, you can also get the effect of a horizontal split. However you sacrifice the available background layers to do it of course, since the two halves need at least one unique background layer to make this kind of split mean anything. (if you have 3 layers though there's nothing stopping you from making the third layer a shared one though.)
@Root3264
@Root3264 7 жыл бұрын
My brain is melting, but it's a good kind of melting! Really like the immense information density! (:
@shadowpod13
@shadowpod13 5 жыл бұрын
I liked it when you showed game examples of the diffrent modes and what they'd be used for. Like with mode one you did the layers with the Aladdin game and the one layer being used for the status bar. Wish you had given more examples like that with the other modes. IE: shown a game that used each of the modes and why. Still, great work.
@luisgonzalez5482
@luisgonzalez5482 7 жыл бұрын
Man I was waiting for this! Sweet!
@STaRgaTeBG
@STaRgaTeBG 7 жыл бұрын
So many hardware limitations.
@pvanukoff
@pvanukoff 7 жыл бұрын
Yeah. But it is 28-year old hardware. Amazing capabilities for the time.
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
Thank Nintendo for the slow-ass VRAM. The reason all of these modes exist is to try and alleviate this. For example, the GBA, which has much faster VRAM, only has 3 tiled modes vs. 8 on the SNES; one mode with 4 8bpp layers, one mode with 2 8bpp layers and an 8bpp "Mode 7" layer, and one mode with 2 8bpp "Mode 7" layers.
@vaendryl
@vaendryl 7 жыл бұрын
awesome as always!
@timpunny
@timpunny 7 жыл бұрын
vaen dryl why does it say your comment is from one day ago
@timpunny
@timpunny 7 жыл бұрын
Makes sense come to think of it
@Digitoxin1
@Digitoxin1 7 жыл бұрын
Great video, but I'd love to see more examples. It would be great to see clips from games to see each of the modes in action to better visualize how they work.
@bENOFFICIALMASSIVE
@bENOFFICIALMASSIVE 7 жыл бұрын
Alot of that went over my head lol but still appreciate ya effort, might have to watch again! Cheers m8!
@johneygd
@johneygd 7 жыл бұрын
Interesting and well explained, but i wish you put mode7 subject in this video because i hate to have wait another couple of month's and then forget about it,and i am sure i am not the only one here . But still great video.
@benjaminbrady2385
@benjaminbrady2385 7 жыл бұрын
Amazing as always
@Mrvideosandgames
@Mrvideosandgames 7 жыл бұрын
KZbin recommended part 4 to me. Fun.
@kiwimotion
@kiwimotion 6 жыл бұрын
Why am I loving this series I’m not even developing an emulator or something
@Stevo_1985
@Stevo_1985 4 жыл бұрын
A nice random tip of the day: If you have a modified PAL (Super Nintendo) or NTSC-J (Super Famicom) Snes which can play games from any region - but have noticed that American NTSC (Super Nintendo) cartridges are a little too wide to fit into the console, then do the following: 1. Open up an NTSC game cartridge, and take out the circuit board. 2. Open up a PAL game cartridge, and take out the circuit board. 3. Put the NTSC circuit board into the PAL (or indeed the NTSC-J Famicom) cartridge game case. 4. Be happy you didn't have to buy and adaptor, and play as many NTSC games as you want on your PAL console! Note: all circuit boards fit in any region case, but no matter what shape the circuit boards are - if you are swapping out FX games (with the additional contacts either side of the main connector) - then likewise, swap the corresponding game cases to match!!! Have a 'Super' day! ;)
@ramakrishnamishra8179
@ramakrishnamishra8179 Жыл бұрын
wow the SNES was really complex! I am trying to program it using assembly for a game idea that I have.. but it will probably take me years yo get something tangible
@elModo7
@elModo7 7 жыл бұрын
waiting for my mode cool vid! well explained
@vervalkon
@vervalkon 7 жыл бұрын
Stellar video, as always! ❤️❤️❤️👏👏👏
@Kawa-oneechan
@Kawa-oneechan 7 жыл бұрын
Impressive, showing actual gameplay footage all split up like that.
@renakunisaki
@renakunisaki 7 жыл бұрын
SNES was a beast.
@gr6723
@gr6723 6 жыл бұрын
thanks! I really like your videos.
@omaghty
@omaghty 7 жыл бұрын
damm! i really wanted to see mode 7 :/ great video BTW keep this awesome content going please! ;)
@Smaxx
@Smaxx 7 жыл бұрын
Cliffhanger. ;)
@Magneira
@Magneira 6 жыл бұрын
Awesome video, very well explained
@IronLotus15
@IronLotus15 6 жыл бұрын
How the heck is direct color able to use the extra 3 bits that were used for palette selection? Do you just choose a small section of the RGB color space for the entire character to follow? Because what's throwing me is that the bits are in completely different places: one in VRAM(tilemap), one in wherever characters are defined in.
@RGMechEx
@RGMechEx 6 жыл бұрын
Yes, those 3 bits apply to the entire character at once.
@IronLotus15
@IronLotus15 6 жыл бұрын
Would they be like the most significant R G and B bit then? Or least significant?
@RGMechEx
@RGMechEx 6 жыл бұрын
The least significant that isn't zero. That is, the entire color is 0bbB00gggG0rrrR0 where bbgggrrr is the character data and BGR is the palette index data.
@IronLotus15
@IronLotus15 6 жыл бұрын
Okay, thank you!
@niratomata
@niratomata 2 жыл бұрын
2:00 Mode 1 (I know mode 0 is the first one but this is a bookmark for my favorite mode)
@Caspicum
@Caspicum 7 жыл бұрын
I live for this shit. You're a good boy.
@InsaneFirebat
@InsaneFirebat 2 жыл бұрын
I'm here again to learn the difference between modes 1 and 2. I'm currently hacking Aladdin and my pause menu is unable to draw on BG3 during the final boss fight. Now I know that BG3 is not supported. Thanks again for your amazing content!
@Dargonhuman
@Dargonhuman 7 жыл бұрын
4:01 - 4:13 distracted me from what you were saying cause I wanted to see if the player was going to get the potential x10 chain combo there. Hell, even if it ended at the x7 combo, the player just won as there's no way Easy Lakitu would be able to chip away at a Garbage Block that size in time to save his cloud ass. Sorry, I was an avid Tetris Attack player back in my misspent youth and used to be able to beat Bowser on Extra Hard mode with fair regularity.
@James-fo8rf
@James-fo8rf 7 жыл бұрын
Great video! Your motion graphics are very well done. Please can I ask what software do you use? Thx
@hrnekbezucha
@hrnekbezucha 7 жыл бұрын
Wait you're doing this research just for fun? The quality and depth is just mindboggling.
@X_Leonhart
@X_Leonhart 7 жыл бұрын
I love his videos... Even if I don't understand a single word on it.
@RyuRamasama
@RyuRamasama 7 жыл бұрын
After watching these videos it sounds like you have the SDK for the SNES. If so that is awesome.
@refraggedbean
@refraggedbean 7 жыл бұрын
Ryu Ramasama I want to eventually own one, I want to own an SDK for everything
@RyuRamasama
@RyuRamasama 7 жыл бұрын
Yeah same after watching videos where people show off older dev kits and sdk's for retro consoles I'm totally interested in trying to make a game on a retro game console.
@daronetster
@daronetster 7 жыл бұрын
Great as usual!
@danmanx2
@danmanx2 7 жыл бұрын
I can't wait to see mode 7!!!!
@timothymclean
@timothymclean 7 жыл бұрын
That's, uh, very interesting. But I kinda don't remotely understand what most of those features would be useful for in practice. I'm sure they're useful for _something,_ I just lack the technical knowledge to grok _what._
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
Timothy McLean They're not; most of these features are just a waste of silicon that would be better used for more sprites or palette entries. Hires mode in particular is a waste; there's not near enough VRAM bandwidth or VRAM in general to make it practical.
@KuraIthys
@KuraIthys 7 жыл бұрын
Well, you have to remember the SNES suffers from some last minute cost cutting as far as I can tell. Both high colour and high res modes are far more practical when you remember that the PPU is designed to address 128 kilobytes of VRAM, not 64. That the upper 64 kilobytes is missing speaks to some kind of cost cutting. I also did some calculations on just how fast VRAM has to be, and it comes out pretty much the same for every graphics mode. (though highres mode seems slightly above average) Regardless of mode, the graphics chip needs to read about 2 bytes per pixel drawn. (averaged out, because it doesn't draw individual pixels), to draw the backgrounds, and another byte or so to draw the sprites. (the high res backgrounds seem to imply 10 bits per pixel drawn, but obviously you have twice the number of pixels now) When you do the calculations in relation to the framerate you quickly realise total memory bandwidth has to be in the region of at least 10 megabytes a second. It DOES use two independent memory channels though. (16 bits per memory read, but the upper and lower bytes can be individually addressed - as far as I can tell while this functionality no doubt has secondary uses it primarily exists to make mode 7 possible.) Considering that DMA bandwidth is only equivalent to 2.68 megabytes per second, it's not the video memory bandwidth limiting things. And for the actual internal functioning of the PPU itself, it really isn't wanting for memory bandwidth. It has what it needs. No more, no less. The whole thing seems balanced to do whatever combination of features can fit into that kind of bandwidth. Also worth noting you can switch modes midframe, which is how most of the known uses of hi-res mode are being used. Sprite performance is most likely limited by VRAM performance, though it's hard to say exactly. Adding more sprite entries wouldn't accomplish much since the CPU in the system already struggles to keep up with drawing considerably less than 128 sprites. (sure highly optimised code could do it, but actual game developers rarely have the time or patience for those level of optimisations.) Extra palette entries would require redesigning the entire way that backgrounds and sprites function. At best you could take the functionality of mode 0 (where each background has a unique set of 24 possible colours) and extend it to the other modes. (which would imply multiple backgrounds each having 120 colours to themselves.) But when you start messing around with stuff like this, you quickly run into that 64 kilobytes of VRAM... That's where they really dropped the ball. The system can handle a weak CPU - they demonstrated about half a dozen workarounds. But towards the end of it's life, that missing 64 kilobytes of VRAM probably hurt a lot. What the SNES needed, if it really needed improvement is the full 128 kilobytes of VRAM, and especially a faster DMA controller that can write into VRAM at a higher rate. All those late era games such as the SuperFX titles are more than likely DMA limited. High resolution and high colour mode use was limited due to lack of VRAM... IF you look at what the registers in the PPU allow, and calculate the RAM involved you see just how much that cripples the chip - all the higher end functionality works out decently with 128 kilobytes to work with, but with just 64 you run into a LOT of limitations, because it's very easy to blow your VRAM budget...
@KuraIthys
@KuraIthys 7 жыл бұрын
By the way, I doubt most of those features are using that much silicon. They probably just implemented a bunch of things then worked out what they could reasonably combine together. The high resolution mode in particular... That's really not a huge deal to implement - the only thing you need to be able to do to implement high resolution mode is run the pixel clock at double the speed. Output 512 pixels per line rather than 256. Given the rest of the logic the mode uses, I highly doubt it does anything more than that - it just re-uses the existing functionality from other modes, but doubles the pixel clock while doing so. The functionality to support interlaced graphics is enabled in all 8 modes, though only the high resolution modes do anything to support it. (really all they need to do is perform a one pixel offset every other frame, and skip every other line of a regular background on a single frame) Even the sprites support interlaced mode... I don't think the high resolution modes have any huge implementation cost. Removing them wouldn't gain you much. High colour mode on the other hand, requires being able to address 8 bitplanes instead of 4. Though functionally speaking the hardware already has to be able to read 10 bitplanes of pixel data and 3 tilemaps just to support the system's core feature set used by 99% of games. eg. Mode 1 I highly doubt they did much beyond link together the functional blocks already present for other reasons with the minimum amount of glue logic they possibly could. My guess is High colour and high resolution modes follow naturally from abilities the hardware has for other reasons, could be implemented cheaply, and were therefore added just because they could without much consequence. The real resource hog in the PPU design is Mode 7 - supporting that requires a completely different rendering logic to any other mode, and I'm fairly sure it also pushes the memory bandwidth harder than any other mode there is. The Memory bandwidth was almost certainly chosen with mode 7 in mind and then the other modes were defined by looking at which functional blocks could operate together within that amount of bandwidth. (and which combinations might actually be useful.) I wouldn't expect there to be massive amounts of wasted silicon to support niche features. Rather, I suspect the niche features exist because they represented a minor addition to functionality that was already there.
@boptillyouflop
@boptillyouflop 7 жыл бұрын
A large chunk of the complexity afaik is the sprite rendering, which requires a buffer to render the all the sprites together on each scanline (takes up as much space as the whole palette registers I think), plus the spite registers (another large register file), plus a sizable portion of vram bandwidth and a complex scanning mechanism. And it's all totally worth it.
@FingerinUrDaughter
@FingerinUrDaughter 7 жыл бұрын
lol@ this guy saying the system needed a memory bandwidth of 2mb/s, when the absolute largest game was only 6mb, and most were sitting at 2-4. surrree. its totally running its entire program through the ram at all times. fucking idiot.
@RhetticusRex
@RhetticusRex 6 жыл бұрын
"Part 4b - Higher Resolutions: *coming soon*" In the description should be updated to: "Part 4b - Higher Resolutions: kzbin.info/www/bejne/d5-opp5ui89mrZI" Incredible series. I've been having a blast
@RGMechEx
@RGMechEx 6 жыл бұрын
Thank you!
@HayashiNeru
@HayashiNeru Жыл бұрын
Have you ever seen a SNES game with direct color mode applied?
@FoxBoi69
@FoxBoi69 7 жыл бұрын
what comes after the snes? i would like to know about the nes or the n64, but you are the creator of these awesome videos.
@electronash
@electronash 7 жыл бұрын
Awesome work. ;)
@chromosoze
@chromosoze 4 жыл бұрын
2:35 there's a weird white pixel anomaly on the right side of the screen
@G-Fiti
@G-Fiti 5 жыл бұрын
Very nice video, more examples for each mode would have been nice though, I lost the thread at mode 5 lol
@goldenelfboots4595
@goldenelfboots4595 2 жыл бұрын
Did Super Gameboy use Mode 0? Or probably not due to the GUI/frame thingy.
@thegamingkart5031
@thegamingkart5031 7 жыл бұрын
i love it
@inceptional
@inceptional 3 жыл бұрын
In Mode 0, does every 4 colour palette absolutely have to basically throw away one of the colours for transparency (effectively reducing the overall single background layer colours to 24 and the amount per 8x8 tile to 3)? Or, if you don't want to use any transparency on say the backmost background layer for example, can you set it so most of the palettes for that layer don't waste one of the colours on transparency, and then you can get access to the full four colours of the palette for the most part?
@RGMechEx
@RGMechEx 3 жыл бұрын
Color 0 of each palette must be transparent, there's no getting around it.
@truepixelgamer8779
@truepixelgamer8779 5 жыл бұрын
I'm quite curious what mode each of the most popular SNES games have used (A Link to the Past, Super Mario World, Star Fox, etc.)
@xXBlueSheepXx
@xXBlueSheepXx 7 жыл бұрын
3:27 I finally know how the fuck they did that in Yoshi's Island
@CSDragon
@CSDragon 7 жыл бұрын
I think this video needed more practical examples and comparisons. I was able to keep up with everything in your other videos, but this one had me scratching my head a few times.
@mypkamax
@mypkamax 4 жыл бұрын
That's very clever of Nintendo that they put together eight different background modes for the Super NES.
@parallaxish3187
@parallaxish3187 7 жыл бұрын
What's the name of the font you use for the list at the beginning of the video and for some of the graphics? It looks really cool and I think it fits this video's style a lot.
@RGMechEx
@RGMechEx 7 жыл бұрын
It is called "ModeNine"
@parallaxish3187
@parallaxish3187 7 жыл бұрын
Thank you!
@safsafmando
@safsafmando Жыл бұрын
i can see the potential in mode 2 + hdma to render doom graphics
@inceptional
@inceptional 3 жыл бұрын
What's the advantage of Mode 4 over Mode 3? It just seems like everything is more limited in Mode 4. What benefit does having access to direct colour offer (not that I actually know what "direct colour" really means) if any game using it can't show as many colours in this mode anyway and can't do quite as good column scrolling either? Do you have an actual use case where it would be better to use Mode 4 over Mode 3?
@maxwelseven
@maxwelseven 2 жыл бұрын
It was used as a 8bpp + 2bpp combo in some games, like the cutscenes of Adventures of Indiana Jones, Toy Story and an actual offset-per-tile use in Super Genjin 2 title screen.
@grandolddrummer
@grandolddrummer 7 жыл бұрын
I can't wait! Mode 7 is going to rule!!!
@2WaterGuns
@2WaterGuns 5 жыл бұрын
Maybe I missed something, but it's not immediately clear why (using Mode 1 as an example) a 4 bit-per-pixel background would have access to 128 colors. Naively, I would think it would have access to only 15 + transparency (as there are 16 distinct 4-bit combinations). But you multiply that by 8 because each tile can have a separate palette?
@AnonymousFrogNG
@AnonymousFrogNG 5 жыл бұрын
Each tile can use one out of eight palettes.
@daviddyer3543
@daviddyer3543 5 жыл бұрын
Can you do a series on MSX series and X68000 series graphics modes? Thank you!
@mariannmariann2052
@mariannmariann2052 5 жыл бұрын
Do you know what Mode 0 could be used for? Games with Gameboy/NES-like color limitations.
@lextatertotsfromhell7673
@lextatertotsfromhell7673 5 жыл бұрын
Mariann Mariann yeah, so ports
@inceptional
@inceptional 2 жыл бұрын
Are the high-res modes only 30fps vs the other modes that are 60fps? And, is tile flipping allowed in these high-res modes?
@RGMechEx
@RGMechEx 2 жыл бұрын
Horizontal hi-res is 60fps, yes. Interlace mode is also 60fps, but only one field is drawn per frame (half of the vertical resolution). And yes everything works just as you would expect normally in hi-res mode other than color math.
@m4r_art
@m4r_art 9 ай бұрын
Can anyone make a list of SNES games subdivided into Background Modes used in them? With a short explanation? For instance I found Chrono Trigger used Mode 0, 1 and 7. Super Mario Kart uses Mode 1 and Mode 7
@KnakuanaRka
@KnakuanaRka 5 жыл бұрын
Interesting video, although your explanation of the scaling in Mode 5 confused me a bit, and it’s not really explained how modes like 6 were put into common use, but what’s up with all this about color overlapping? You keep referencing it and treating it like an issue, but what’s the problem with the objects and the background sharing parts of their color palette?
@midnightmacabre5981
@midnightmacabre5981 5 жыл бұрын
I know it's an entirely different console, but the Sega Genesis had a problem with shared palettes which was the main reason Knuckles couldn't be ported to Sonic 1. Basically, if a color on a background was the same as a object, any changes to either palette would affect both shared sides due to overlap. It caused color glitches in...Zelda 2 for the NES, and if Knuckles were to be put into Sonic 1 for the Genesis, all palettes involving Sonic's shades of blue for his sprite would appear red instead. This is off of memory of course, and I could be completely wrong.
@mypkamax
@mypkamax 4 жыл бұрын
What game is it at [1:54]? The one you used as an example of mode 0.
@inceptional
@inceptional 3 жыл бұрын
Does the SNES background layer 1/2/3/4 priority work similar to the Genesis Plane A/B priority for effects that create the illusion of far more overlapping background layers, such as seen in the cloud level of Thunder Force IV on Genesis for example, or can only the Genesis movie Planes viusally in front of and behind each other depending on how the priority is set?
@maxwelseven
@maxwelseven 2 жыл бұрын
I don't know about layer 4, but you can definitely make individual tiles from layer 1, 2 and 3 appear in front of each other. The Aladdin example does this: BG2 high priority > BG1 > BG2 low priority. BG3 is using the exclusive absolute priority bit. You can also do this by changing the mainscreen/subscreen setup middle screen with HDMA.
@inceptional
@inceptional 2 жыл бұрын
@@maxwelseven Yeah, I found out in Mode 0 it's slightly different: You can switch tile priorities between layers 1 and 2, and you can switch tile priorities between layers 3 and 4, but you can't switch tile priorities between say layers 2 and 3. What you can do though it use the main and sub screens to move layer 2 above layer 3 for example. So, in a slightly fiddly way, it's possible to mix most of the layer priorities around.
@nintendork64
@nintendork64 6 жыл бұрын
Wait, according to the picture near the end, mode 7 is a straight-up improvement over mode 3? If that's the case, why was mode 3 on the SNES to begin with?
@MarioFanGamer659
@MarioFanGamer659 6 жыл бұрын
Mode 7 is limited to one layer (technically two but they share the same registers) whereas mode 3 still has got two seperate layers. In addition, mode 3 is still a classic layer, meaning that you don't need to take care for the weirdnesses mode 7 has got (which are larger tilemap, linear transformations, different VRAM-layout, etc. all of which lack in mode 3).
@AlessandroCussino
@AlessandroCussino 7 жыл бұрын
Great work !!! It's possible to have the Game Boy Advance version of this kind of video ?
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
Alessandro Cussino The Gameboy Advance is considerably less complicated, although much more powerful due to having much faster VRAM; it only has 3 tiled modes vs. 8 on the SNES. All layers can be either 4bpp or 8bpp in all modes, ("Mode 7" layers are forced to be 8bpp) so 2bpp is no longer an option, and the way the modes go is Mode 0 has four regular layers, Mode 1 has two regular layers and one "Mode 7" layer, and Mode 2 has two "Mode 7" layers.
@nameistunbekannt7896
@nameistunbekannt7896 6 жыл бұрын
Mode 7 makes Mario Kart look 3D, even though the map is just a big 2D picture.
@TheRedCap
@TheRedCap 6 жыл бұрын
Read the first person on the patron list.
@johneysupergd7796
@johneysupergd7796 6 жыл бұрын
I was thinking that for XAMPLE if only 1 background can be used for 256 colors, and we want to ellusionize extra backgrounds, then we can use line scrolling & tile updates to give that ellusion of extra backgrounds,,, But what if we want to use 4 backgrounds but we are only limited to 16 colors per background thus 4x 16 = 64, well in order to ellusionize extra colors, we can do use colors swaps to simulate 256 colors onscreen. If we want to use the full resolution of the snes but have to deal with only 4 colors, then we can do use once again the color swap/mid-frame scanline trick to fake extra colors onscreen. This to VIRTUALY get around these limitations.
@inceptional
@inceptional 2 жыл бұрын
Can you explain why it would make sense to use the pseudo high-res to do transparency in modes 0-4 rather than just using colour math, as in Kirby's Dream Land 3 for example (which I presume is using mode 1)? kzbin.info/www/bejne/goTNn6KvZs9_l5Y Also, when using pseudo high-res as Kirby's Dream Land 3 does on SNES, does that mean all the art in the game had to be drawn at twice the horizontal resolution initially in order to look the correct proportion when output on SNES is pseudo high-res? If not, can you clarify how the art works and should be drawn in this mode to be visible at what looks like smaller pixel size or higher resolution on the faux transparent areas?
@computercat8694
@computercat8694 6 жыл бұрын
5:39 Also slightly yellow.
@MaxwelThuThu
@MaxwelThuThu 7 жыл бұрын
I love you
@NintendoFan
@NintendoFan 7 жыл бұрын
Cacete! Acabei de descobrir esse canal uns dias atrás e já te encontro aqui! XD
@MaxwelThuThu
@MaxwelThuThu 7 жыл бұрын
KJSJKS Raramente comento, quando consigo tu me acha. kek Venho acompanhando, e é excelente! Esse vídeo aqui inclusive era algo que eu planejava fazer a muito tempo. lol
@NintendoFan
@NintendoFan 7 жыл бұрын
Sim, estou admirado pela qualidade do conteúdo desse canal. :D Acho que seria uma boa você fazer um vídeo sobre isso em português no seu canal. É bem interessante e se encaixaria perfeitamente com seus outros vídeos informativos.
@AnonymousFrogNG
@AnonymousFrogNG 5 жыл бұрын
@@NintendoFan What the hell is wrong with you?
@Chaos89P
@Chaos89P 7 жыл бұрын
What Mode did Super Metroid's intro use?
@drewsebastino2889
@drewsebastino2889 7 жыл бұрын
Borka223 It is.
Background Modes - Higher Resolutions - Super Nintendo Entertainment System Features Pt. 04b
3:32
Amazingly creative uses of Mode 7 on SNES | White_Pointer Gaming
20:18
White_Pointer Gaming
Рет қаралды 37 М.
АЗАРТНИК 4 |СЕЗОН 2 Серия
31:45
Inter Production
Рет қаралды 1,1 МЛН
Which One Is The Best - From Small To Giant #katebrush #shorts
00:17
Electric Flying Bird with Hanging Wire Automatic for Ceiling Parrot
00:15
SNES Background Mode 7 - Super Nintendo Entertainment System Features Pt. 05
18:08
Retro Game Mechanics Explained
Рет қаралды 256 М.
4:53 is Almost Possible
17:36
Kosmic
Рет қаралды 852 М.
I played a NSMB DS minigame to the final level
15:35
Bit Of Code
Рет қаралды 83 М.
A closer look at the Super NES DOOM Source Code Release | MVG
13:49
Modern Vintage Gamer
Рет қаралды 743 М.
NES Sprites, OAM, and the Battle for Priority - Behind the Code
19:17
Displaced Gamers
Рет қаралды 44 М.
Super Mario Bros. 3 - Extended 1up Sound
15:13
Retro Game Mechanics Explained
Рет қаралды 806 М.
INSANE HD Texture Packs For 8-Bit NES Games!
35:12
St1ka
Рет қаралды 1 МЛН