Do You Have Any Unpopular Gaming Opinions?

Anything that is gaming related that doesn't fit well anywhere else
User avatar
marurun
Moderator
Posts: 11973
Joined: Sat May 06, 2006 8:51 am
Location: Cleveland, OH
Contact:

Re: Do You Have Any Unpopular Gaming Opinions?

Post by marurun »

Sarge wrote:That being said, I do wish the SNES had a beefier processor.


The SNES CPU is a really weird compromise. The fact that Nintendo went with a CPU with a 6502 8-bit compatibility mode suggests they were thinking about backwards compatibility. I don't know if they just got late in the game and realized they didn't have time or money to finish implementing backwards compatibility and so were stuck with their CPU choice or if it was never an option and they evaluated the CPU completely on its 16-bit merits.
Dope Pope on a Rope
B/S/T thread
My Classic Games Collection
My Steam Profile
The PC Engine Software Bible Forum, with Shoutbox chat - the new Internet home for PC Engine fandom.
User avatar
Sarge
Next-Gen
Posts: 7276
Joined: Thu Mar 14, 2013 12:08 pm

Re: Do You Have Any Unpopular Gaming Opinions?

Post by Sarge »

I'm wanting to say that the 65c816 was chosen both for that reason, and that there was a supply and they had a relationship with the supplier. It was probably also thought that, given the architectural similarities to the NES's chip, that it would be easier for devs to move over to it.
User avatar
marurun
Moderator
Posts: 11973
Joined: Sat May 06, 2006 8:51 am
Location: Cleveland, OH
Contact:

Re: Do You Have Any Unpopular Gaming Opinions?

Post by marurun »

According to some of what I've been reading, it didn't actually make things much easier, if at all. The CPU has a lot of delays on various modes of memory access. And the APU had a completely dissimilar ASM requirement for programming. You can program that CPU in C. There were available compilers. But that would only help really for core program loops. All the graphics code would have to be custom ASM. So basically, when programming for the SNES, you had to use CPU ASM or C, graphics ASM, and audio ASM. But I also know that C compilers back then were pretty inefficient, so better results would always be had from doing ASM directly on the CPU. But stuff like collision detection is stuff they probably wouldn't try to do in C. Collision detection routines are pretty basic code, and should probably have been available in ASM. And it's collision detection that is almost always the culprit for slowdown when there's lots of stuff on-screen.

This was one advantage for the 68000 in the Genesis. It was VERY C friendly. It was designed to be easy for compilers to compile C code for.
Dope Pope on a Rope
B/S/T thread
My Classic Games Collection
My Steam Profile
The PC Engine Software Bible Forum, with Shoutbox chat - the new Internet home for PC Engine fandom.
User avatar
Sarge
Next-Gen
Posts: 7276
Joined: Thu Mar 14, 2013 12:08 pm

Re: Do You Have Any Unpopular Gaming Opinions?

Post by Sarge »

Yeah, I loved coding for the 68K, it's a very clean architecture. We did all pure assembly in our labs, though.

I missed out on x86 assembly when the department switched over, and I'm kinda happy I did. :)
User avatar
marurun
Moderator
Posts: 11973
Joined: Sat May 06, 2006 8:51 am
Location: Cleveland, OH
Contact:

Re: Do You Have Any Unpopular Gaming Opinions?

Post by marurun »

Also, I might be talking out of my ass about the 85816. It's not a popular chip and so analysis of its capabilities is unreliable on the internet... Apple chose it for the IIGS so they'd have something to hold them over till the Macintosh was released, and the IIGS was deliberately designed so that it wouldn't be better than the Mac in any way.
Dope Pope on a Rope
B/S/T thread
My Classic Games Collection
My Steam Profile
The PC Engine Software Bible Forum, with Shoutbox chat - the new Internet home for PC Engine fandom.
Aaendi
8-bit
Posts: 45
Joined: Sat Jan 28, 2012 9:18 pm

Re: Do You Have Any Unpopular Gaming Opinions?

Post by Aaendi »

I found an article mentioning Lucas Arts using Konami's ZAMN engine for one of their games. I'll try to find where I've heard about games that copied from Gradius 3. If I can't find an internet source, I'll post some disassembled code.

https://books.google.com/books?id=AGT1A ... ne&f=false
Aaendi
8-bit
Posts: 45
Joined: Sat Jan 28, 2012 9:18 pm

Re: Do You Have Any Unpopular Gaming Opinions?

Post by Aaendi »

Doing SNES homebrew, something that is a huge limitation that doesn't get brought up a lot is VRAM size and DMA speed. Only 16kB is available for sprite animations, and only 4kB-5kB can be updated per frame.

Also, sprite patterns are arranged in a grid of 32 rows and 16 collumns, and you need to update 2 rows for 16x16 sprites and 4 updates for 32x32 sprites. You can get more sprites in by uploading several sprites at once, but I managed to get up to 4kB of individual 16x16 sprites per frame through a lot of optimisations.

How I got around these limits was I only update sprites when they need animation updates. I keep track of how much gets updated in one frame. If there is more than 4kB a frame, then it updates the sprites animation until next frame. Then it checks to see if there's already a copy of that sprite in VRAM, so that you can have copies of the same enemies and explosions without taking up more space. Then the sprites get stored in vram as a combination of 32x32 and 16x16 sprites cells. I have 24 designated slots for 32x32 and 32 slots for 16x16. The only downside is I haven't implemented anyway for animation frames to share sprite parts, or have copies of the same sprite parts within an animation frame.


Of course, I'm only doing this because I want a lot of smooth animation onscreen at once. Developers probably thought it wasn't a big deal because they thought the CPU wouldn't be able to handle the physics of the sprites anyway.
User avatar
ElkinFencer10
Next-Gen
Posts: 8621
Joined: Fri Aug 13, 2010 8:34 pm
Location: Henderson, North Carolina
Contact:

Re: Do You Have Any Unpopular Gaming Opinions?

Post by ElkinFencer10 »

I don't like Wind Waker nearly as much as I remembered, as I outlined in the review I just posted. That's probably a pretty unpopular opinion, even with myself given how near-perfect the game was to 13 year old ElkinFencer.
Exhuminator wrote:Ecchi lords must unite for great justice.

Image
User avatar
Xeogred
Next-Gen
Posts: 14383
Joined: Thu Apr 02, 2009 7:49 pm
Location: KC

Re: Do You Have Any Unpopular Gaming Opinions?

Post by Xeogred »

Elk, I was going to be snarky earlier when you talked about playing Wind Waker and Twilight Princess HD to prepare for Breath of the Wild...

By basically saying, play WW and TP back to back to witness how much better TP is in comparison. :P

WW was a slog then and now for me. Replaying the HD version is the last time I'll ever play that one again.
alienjesus
Next-Gen
Posts: 8776
Joined: Tue Feb 24, 2009 7:10 pm
Location: London, UK.

Re: Do You Have Any Unpopular Gaming Opinions?

Post by alienjesus »

ElkinFencer10 wrote:I don't like Wind Waker nearly as much as I remembered, as I outlined in the review I just posted. That's probably a pretty unpopular opinion, even with myself given how near-perfect the game was to 13 year old ElkinFencer.


Interesting.

When I played Wind Waker HD a few years ago, I ended up liking it even more than I did when I first played Wind Waker on Gamecube back at launch.
Image
Post Reply