A Raycaster in Bash
249 points by izabera 6 months ago | 34 comments- purplesyringa 6 months agoI love this. I've been wondering how the picture is drawn with less than one `echo` per pixel, and it's very clever: the game is "not really" 3D, so you can run raytracing just once per column, and then you only need to draw a couple of lines (for sky, grass, and the actual object) -- this is done by outputting the "draw this pixel and move down by one" string to the terminal as many times as necessary using string repetition.
I've been considering working on a voxel render engine (not for Bash, but for another computationally limited environment). This is a treasure, I'm certain I'll find something useful here.
- JKCalhoun 6 months agoThe VoxelCanvas.js file (in Javascript, obv.) might be interesting to you as well. Same (raycasting) idea:
- JKCalhoun 6 months ago
- tdeck 6 months agoIn case you wondered if there is a raycaster written in MS Batch:
- izabera 6 months agoThat's really cool! The explanation on their blog is great!
- rpoisel 6 months agoThanks for the hint! That's exactly what I was looking for as I have never looked into raycasting but having an interest in it.
Direct Links:
- https://nthorn.com/articles/batch_raycaster/ (batch variant)
- https://lodev.org/cgtutor/raycasting.html (general intro)
- rpoisel 6 months ago
- izabera 6 months ago
- Arch-TK 6 months agoIt's unfortunate that stty requires forking. Maybe the next project will be to use bash and rowhammer to call the necessary ioctls to do it without forking.
- alsetmusic 6 months agoI had no idea this was possible with Bash. I’ve considered myself proficient with Bash at a pretty advanced level at times and this just blows me away. I don’t have the math chops to understand how it’s implemented, but it’s a pleasure to see.
- einpoklum 6 months agoAnd to think, that my own bash scripts spend 300 lines just parsing various command-line options, while instead I could be showing this game... :-P
- 8n4vidtmkvmk 6 months agoI never ceases to baffle me how we're still stuck with these mind bogglingly slow shells. Pure madness. I can maybe understand that some apps require all the vt100 weirdness or whatever, but probably 90% of apps just write to stdout and err. Surely we can blit some text to the screen a bit quicker and put the other 10% into some compat mode.
- PhilipRoman 6 months agoShells are slow (particularly bash), sure, but I'm not sure how the rest of your comment follows from that. The shell is not involved in interpreting terminal escape sequences in any way, and modern terminals are quite fast - I can render animations in a 350-column terminal and they are as smooth as can be, given the constraints. Besides, the whole premise of this post is that bash is the wrong language for raycasting, kind of like writing bubblesort in CSS.
>put the other 10% into some compat mode
There is nothing preventing that, just test if the string contains sane characters only and use a fast path for that. The problem is that there is no actual fast path for software text rendering, you still need to process ligatures, etc.
- PhilipRoman 6 months ago
- markeroon 6 months agoOnly 300 lines of code, impressive! I love this.
- 1vuio0pswjnm7 6 months ago"bash is slow."
That's in part why I do not use it for scripting. I do not use it for interactive use either.
Some popular Linux distributions also avoid bash as a scripting shell.
- Teongot 6 months agoI'd love to see this combined with the author's fork()-less implementation of ps to make a (almost) fork()-free implementation of psDoom.
Seriously though, this is really cool
- mmh0000 6 months agoOf course, we need to give an honorable mention to the `awk` raycaster from 9 years ago.
- Arch-TK 6 months agoCool Easter egg: https://github.com/TheMozg/awk-raycaster/blob/master/awkaste...
- Arch-TK 6 months ago
- shric 6 months agoBeautiful. Correct me if I'm wrong, but this looks like a bash version of https://lodev.org/cgtutor/raycasting.html
Edit: ah, just noticed this is in the readme :(
- svag 6 months agoThere are https://lodev.org/cgtutor/raycasting2.html and https://lodev.org/cgtutor/raycasting3.html just FYI
- izabera 6 months agoyeah i really liked that tutorial
- svag 6 months ago
- anfractuosity 6 months agoVery cool! I'm curious when it says "did you know that accessing a random element in an array takes linear time", why that's the case, with bash?
- izabera 6 months agonormal arrays in bash are implemented as linked lists. bash stores a pointer to the last accessed element, which turns the most common case of iteration into O(1), but the performance is terrible if you need to jump around
see some basic benchmarks here https://gist.github.com/izabera/16a46ed79c2248349a1fb8384468...
there are also associative arrays which are bucketed hash tables, which are fine for string keys but imho they are hardly ever worth it as a replacement for indexed arrays
- anfractuosity 6 months agoThanks a lot, that's very interesting re. it using linked lists, and nice benchmark!
- anfractuosity 6 months ago
- izabera 6 months ago
- armSixtyFour 6 months agoSadly I can't get this working. It just throws up the view into a file called buffered for whatever reason and exits immediately :(
- izabera 6 months agotry `bash game.bash 2>errors` and see the content of that file when the game exits
- izabera 6 months ago
- mlconnor 6 months agoWow, that’s an insane challenge. I can’t believe that’s even possible.
- CaesarA 6 months agoI wonder if texture mapping this would look good.
- Arch-TK 6 months agoShe has been brainstorming how to handle texture mapping within the performance constraints of doing it in bash for a week now (long before she actually got this working) and so far we've come up with some hypothetical ideas but she has not tried any of them yet. Maybe tomorrow...
- Arch-TK 6 months ago
- corytheboyd 6 months agoImagine a TUI where you need to navigate a literal maze of options
- Arch-TK 6 months agoMany CLI programs which take option have already managed to do this (in the text-based adventure game style).
- jaynetics 6 months agoLike this one in Jurassic Park? https://youtu.be/URVS4H7vrdU Funnily enough, the slow rendering is kind of a plot device here.
- Arch-TK 6 months agoThe program from that scene was not some crazy invention for the purpose of having an interesting computer scene. It is a real piece of software for silicon graphics workstations called fsn (File System Navigator).
There's a x windows remake of it called fsv: https://fsv.sourceforge.net/
And then there's this even cooler UI which takes this whole idea much further called eagle mode: https://eaglemode.sourceforge.net/
- rzzzt 6 months agopsDooM pits you against processes on the system represented as enemies: https://psdoom.sourceforge.net/
- rzzzt 6 months ago
- Arch-TK 6 months ago
- krapp 6 months agoThat's the kind of "futuristic interface" you'd see in a cyberpunk movie, and it would be incredibly annoying in real life.
- Arch-TK 6 months ago
- ormaaj 6 months ago<3
- jsheroes 6 months ago[flagged]
- dang 6 months agoPlease stop making accounts to break HN's rules with. It will eventually get your main account banned as well.
- dang 6 months ago