I Stumbled Upon...

Started by
11 comments, last by LennyLen 11 years, 5 months ago
Stumbled upon this while looking up NES facts. http://bobrost.com/nes/

Its basically a course about NES development, that this guy teached at a university.

Realized how crazy the development was. Every sprite was made of 4x4 tiles. You can only have 64 moving tiles on screen at once. The screen could only move on one axis at once.

He also shows how to create ROMs, but I assume thats frowned upon by you guys.

Easiest way to make games, I love LÖVE && My dev blog/project

*Too lazy to renew domain, ignore above links

Advertisement
I don't know about NES development, but his slides on fire-breathing are excellent.

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]

Yea I'm not sure why he used that picture there either.

But I was hoping you guys would correct me on ROM-making. Like if you use your own unique sprites and music etc, theres nothing wrong with it I'd say?

Easiest way to make games, I love LÖVE && My dev blog/project

*Too lazy to renew domain, ignore above links

Piracy isn't tolerated, but building your own games is encouraged.

Realized how crazy the development was. Every sprite was made of 4x4 tiles. You can only have 64 moving tiles on screen at once. The screen could only move on one axis at once.

Huh? Didn't check that site you linked really, but sprites are made either of 1×1 tile or 1×2 tiles (and all have the same size). Larger objects are made by grouping multiple sprites together (sometimes even reusing the same graphics! like how Mario in SMB when standing still his bottom half is mirrored horizontally)

And yeah, there are really some crazy requirements, like how in the tilemap the palette could only be assigned to each 2×2 group instead of each tile individually (oh, and you couldn't flip tiles, that could be done on sprites only)


But I was hoping you guys would correct me on ROM-making. Like if you use your own unique sprites and music etc, theres nothing wrong with it I'd say?

Yeah, making your own games is 100% legal.

EDIT: oh, by the way, if you need help, you can always go check NesDev, that site is dedicated to NES homebrew.
Don't pay much attention to "the hedgehog" in my nick, it's just because "Sik" was already taken =/ By the way, Sik is pronounced like seek, not like sick.
I meant 4x4 pixels for each tile, but I've been told now that its actually 8x8 pixels for each tile.

Any non Java haters should look at this, really blows your mind: http://benfry.com/deconstructulator/

Easiest way to make games, I love LÖVE && My dev blog/project

*Too lazy to renew domain, ignore above links

The guy who did Retro City Rampage started the game on NES, he did his own godam device to conect to nes.
Theres stuff on internet with him talking about that drawing limitation, he worked around that by making the sprites blinking...
Blinking sprites was a common work around, all the later gen NES games were doing it. Was annoying as a player. Just like now, when 3D objects in newer games around the of the screen blink in and out because of accuracy issues in the object culling technique!

Making new ROMs is not discouraged because of piracy. It's discouraged because it's a big project to take on, and you get an audience of almost 0 when you are done. And even then, you have something that is so platform specific that it will be a nightmare to port. Why not make a game for a modern, easy to develop for, platform and just give it an NES style look instead?

I remember the old Retro City Rampage NES project. It started out as a GTA3 NES de-make. That was almost a decade ago! To redesign it from scratch took forever.
It would be an interesting experience "back in the day" to program games in pure assembler - 6502 Assembler is what the NES used. Technical specs HERE.

I cannot remember the books I've read any more than the meals I have eaten; even so, they have made me.

~ Ralph Waldo Emerson


Making new ROMs is not discouraged because of piracy. It's discouraged because it's a big project to take on, and you get an audience of almost 0 when you are done. And even then, you have something that is so platform specific that it will be a nightmare to port. Why not make a game for a modern, easy to develop for, platform and just give it an NES style look instead?
Emulators...

It would be an interesting experience "back in the day" to program games in pure assembler - 6502 Assembler is what the NES used. Technical specs HERE.
I wasn't tough enough to use assembly while making my current rom, this guy made a language called "nbasic", which compiles to assembly(pretty sure?), but one day I'd love to tackle assembly, to see if it is as hard as claimed to be.

Easiest way to make games, I love LÖVE && My dev blog/project

*Too lazy to renew domain, ignore above links

This topic is closed to new replies.

Advertisement