top | item 42448184

Lou's Pseudo 3D Page (2013)

160 points| whereistimbo | 1 year ago |extentofthejam.com

23 comments

order

komadori|1 year ago

As far as old-school 3D effects go, I like this tutorial on ray casting: https://permadi.com/1996/05/ray-casting-tutorial-1/

It's great to see something similar on the effects used in driving games, which I always imagined to be akin to raycasting's vertical slices drawn horizontally.

blackfur|1 year ago

This page is such a gem. I stumbled upon it many years ago, when making a classic pseudo-3D racing game for a hacked (and very underpowered) graphing calculator. Never ended up finishing it though. Turns out without debugging, floating point calculations or any real knowledge of C you struggle.

zackmorris|1 year ago

Kinda cool, I've never seen these techniques all in one place before. Growing up, I thought that SNES mode 7 scaling was so cool:

https://en.wikipedia.org/wiki/Mode_7

The article mentions about halfway down the page that what made the 80s road rendering technique possible was racing the beam. Where say an Atari 2600 would toggle the color at certain pixel counts as the TV's electron beam swept the screen, producing graphics that seemed otherwise impossible from such underpowered hardware:

https://en.wikipedia.org/wiki/Racing_the_Beam

https://www.youtube.com/watch?v=sJFnWZH5FXc

Some engines allowed for say 8 hardcoded sprites this way by toggling colors at each sprite's position, with various rules about overlapping, so sprites would flicker sometimes when they were next to each other.

TacticalCoder|1 year ago

You cango pretty far with fake 3D.For example you can take the same type of technique but then additionally move vertical "bars" of eight pixel (going along the entire screen) and it feels like the car/bike is turning more.

Here's an example from the early 90s in a PC DOS game (Word Rally Fever, heavily inspired by Power Drift):

https://youtu.be/tn4lK2-pUxw

FWIW it was made by friends of mine, got published by Team 17, and I was a beta-tester of that one :)

ch_sm|1 year ago

Very cool, thanks for sharing! I’m a huge fan of this Super-Scaler inspired style, and had never heard about this!

Netcob|1 year ago

I love the ingenuity, I also love youtube documentaries on this topic, but... as a child (in the 90s), I did not like these pseudo 3D racing games at all!

Mode 7 on the SNES was usually fine. I don't know how accurately it rendered a single flat surface in 3D, but it felt real enough and responsive enough. Except for the very rare cases where they simulated non-flat surfaces (Speed Racer, Super Off-Road), even though that was technically much more impressive.

The effect just didn't work for me - it didn't feel like turning, it just felt like what it was: The game displaying a "left turn" animation and telling you that your car will now start drifting to the right if you don't press left. And that felt more like playing a Game&Watch toy.

InsideOutSanta|1 year ago

IMO it greatly depends on the game. Very advanced games that used this technique, like OutRun in the arcade, really almost feel like you're driving on a road with real turns. Lotus Turbo Challenge on the Amiga also does a pretty good job giving you the illusion that you're actually approaching turns, i.e. that there is a turn ahead of you and it is coming towards you.

But most games that implemented this technique were much more primitive, and just amounted to "bending" the road to indicate turns, which never feels like there's actually a turn coming towards you. It just feels like the road is suddenly changing its shape. But that's not an inherent fault of the technique, it's just a poor implementation.

I do agree that Mode7 games, which effectively display an almost correctly rendered 3D plane, are generally a much better experience.

frou_dh|1 year ago

I agree. Even at the time, many of the games that look like this felt like you were being dragged around the track, and just finessing it a bit with the controller input.

It's not a good feeling as a player when a game mostly plays itself and gives you some token involvement.

a1o|1 year ago

I implemented this in Adventure Game Studio following that page seven years ago.

toolslive|1 year ago

The screenshots are a blast from the past. Outrun, Space Harrier... Those were really good games back in the day (1980s)

MaximilianEmel|1 year ago

When does Pseudo 3D cross the threshold into Real 3D?

anilakar|1 year ago

Back in the day it was probably easy to move goalposts as techniques advanced. Do remember that Duke 3D's Build engine did not draw a true 3D environment by today's standards, and Novalogic's Voxel Space did not use voxels but a heightmap with painter's algorithm.

My personal opinion is that to qualify as 2.5D the game engine must internally use a 3D coordinate system even if the render process is 2D, and 3D requires a true 3D to 3D conversion.

duskwuff|1 year ago

What makes these techniques "pseudo" 3D is that they can only render one very specific type of scene (a road), and even then only under various constraints (road must be in front of the camera, road must continue to the horizon, etc). "Real 3D" typically implies a more general scene renderer.