TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Lou's Pseudo 3D Page (2013)

160 pointsby whereistimbo5 months ago

11 comments

komadori5 months ago
As far as old-school 3D effects go, I like this tutorial on ray casting: <a href="https:&#x2F;&#x2F;permadi.com&#x2F;1996&#x2F;05&#x2F;ray-casting-tutorial-1&#x2F;" rel="nofollow">https:&#x2F;&#x2F;permadi.com&#x2F;1996&#x2F;05&#x2F;ray-casting-tutorial-1&#x2F;</a><p>It&#x27;s great to see something similar on the effects used in driving games, which I always imagined to be akin to raycasting&#x27;s vertical slices drawn horizontally.
blackfur5 months 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.
zackmorris5 months ago
Kinda cool, I&#x27;ve never seen these techniques all in one place before. Growing up, I thought that SNES mode 7 scaling was so cool:<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Mode_7" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Mode_7</a><p>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&#x27;s electron beam swept the screen, producing graphics that seemed otherwise impossible from such underpowered hardware:<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Racing_the_Beam" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Racing_the_Beam</a><p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=sJFnWZH5FXc" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=sJFnWZH5FXc</a><p>Some engines allowed for say 8 hardcoded sprites this way by toggling colors at each sprite&#x27;s position, with various rules about overlapping, so sprites would flicker sometimes when they were next to each other.
gnabgib5 months ago
Popular in<p>2016 (115 points, 12 comments) <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=14017574">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=14017574</a><p>2015 (148 points, 26 comments) <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=8847063">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=8847063</a>
TacticalCoder5 months ago
You cango pretty far with fake 3D.For example you can take the same type of technique but then additionally move vertical &quot;bars&quot; of eight pixel (going along the entire screen) and it feels like the car&#x2F;bike is turning more.<p>Here&#x27;s an example from the early 90s in a PC DOS game (Word Rally Fever, heavily inspired by Power Drift):<p><a href="https:&#x2F;&#x2F;youtu.be&#x2F;tn4lK2-pUxw" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;tn4lK2-pUxw</a><p>FWIW it was made by friends of mine, got published by Team 17, and I was a beta-tester of that one :)
评论 #42472852 未加载
Netcob5 months 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!<p>Mode 7 on the SNES was usually fine. I don&#x27;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.<p>The effect just didn&#x27;t work for me - it didn&#x27;t feel like turning, it just felt like what it was: The game displaying a &quot;left turn&quot; animation and telling you that your car will now start drifting to the right if you don&#x27;t press left. And that felt more like playing a Game&amp;Watch toy.
评论 #42449507 未加载
评论 #42450349 未加载
评论 #42449884 未加载
elevationapi5 months ago
I remember Vroom killing the game on Atari ST : <a href="https:&#x2F;&#x2F;youtu.be&#x2F;Z-RELFjDu_8?si=giyiDpRqUPNSNEK9" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;Z-RELFjDu_8?si=giyiDpRqUPNSNEK9</a> Insane depth of view with fluidity for the time
评论 #42450360 未加载
评论 #42454503 未加载
评论 #42449847 未加载
a1o5 months ago
I implemented this in Adventure Game Studio following that page seven years ago.
toolslive5 months ago
The screenshots are a blast from the past. Outrun, Space Harrier... Those were really good games back in the day (1980s)
MaximilianEmel5 months ago
When does Pseudo 3D cross the threshold into Real 3D?
评论 #42459436 未加载
评论 #42454277 未加载
erickhill5 months ago
Prepare to qualify...