top | item 34664433

C Port of Ken Thompson's Space Travel

140 points| nixcraft | 3 years ago |github.com | reply

34 comments

order
[+] dotancohen|3 years ago|reply
For those unfamiliar with the game, development of Space Travel consisted of several ports to different contemporary OSes. This directly led Thompson to develop ideas for his own OS, which we today know as the original Unix.
[+] exitb|3 years ago|reply
Turns out that Unix was the ultimate yak shave for Space Travel.
[+] Waterluvian|3 years ago|reply
Call me weird but I have an odd nostalgia for games whose control schemes don’t make all that much sense. I had a bunch of Apple II games where the keys weren’t laid out ergonomically at all. As if they were seen more as “software” than a console game.
[+] Bluecobra|3 years ago|reply
One thing I kinda miss were those little keyboard overlays to help remember the control scheme.
[+] acadiel|3 years ago|reply
Half the fun with old computer games was figuring out which keys they used (if you didn’t have the manual)!
[+] juancn|3 years ago|reply
The amount of octal numbers in the source code makes my brain itch.

It emulates PDP's floating point support with 36 bit words.

[+] ape4|3 years ago|reply
If I understand correctly there was no floating point on the PDP-7

    // format for hand-rolled floating point used in PDP-7 version
    struct flt {
        char exp; // exponent
        int m1;  // signed 36-bit mantissa (0-18)
        int m2;  // 18-36
    };
[+] thefilmore|3 years ago|reply
Yup, Ken and Dennis wrote an entire floating point library from scratch for the game, among other things. [1]

> Also during 1969, Thompson developed the game of ‘Space Travel.’ First written on Multics, then transliterated into Fortran for GECOS (the operating system for the GE, later Honeywell, 635), it was nothing less than a simulation of the movement of the major bodies of the Solar System, with the player guiding a ship here and there, observing the scenery, and attempting to land on the various planets and moons. The GECOS version was unsatisfactory in two important respects: first, the display of the state of the game was jerky and hard to control because one had to type commands at it, and second, a game cost about $75 for CPU time on the big computer. It did not take long, therefore, for Thompson to find a little-used PDP-7 computer with an excellent display processor; the whole system was used as a Graphic-II terminal. He and I rewrote Space Travel to run on this machine. The undertaking was more ambitious than it might seem; because we disdained all existing software, we had to write a floating-point arithmetic package, the pointwise specification of the graphic characters for the display, and a debugging subsystem that continuously displayed the contents of typed-in locations in a corner of the screen. All this was written in assembly language for a cross-assembler that ran under GECOS and produced paper tapes to be carried to the PDP-7.

[1] https://www.bell-labs.com/usr/dmr/www/hist.pdf

[+] SloopJon|3 years ago|reply
At the risk of derailing the conversation on this fun project, one my first thoughts was that this game for a long-dead computer is probably still under copyright for another few decades. Then it occurred to me that even after all of that SCO nonsense, I don't know what the copyright/license status of ancient Unix is.

The code in this repo does not show any license. The repo from which it's derived claims GPL 3.0, although the README notes: "The code in the original scans are (c) Micro Focus who own the rights to the Unix source code" (Micro Focus International having acquired Attachmate, which acquired Novell, which bought Unix System Laboratories from AT&T).

[+] mseepgood|3 years ago|reply
I'm gonna port it to his new language Go. lol
[+] queuebert|3 years ago|reply
Which graphics library would you use? Or would you still tie into SDL2, which is written in C. ;-)
[+] Yuioup|3 years ago|reply
I think you mean Rust
[+] Egoist|3 years ago|reply
Not sure if it's based on this, but Ken also talked about a similar, but multiplayer game, to play with random people at Bell Labs which sounded fun.

https://youtu.be/EY6q5dv_B-o?t=1171

I wonder if the source code for that exists too.

[+] fatneckbeard|3 years ago|reply
sdl_getticks64 was undefined

replaced with sdl_getticks

now i just seea bunch of dots on a screen

i can zoom in i see a circle

i press thrust/downthrust and the circle disappears

not sure i get it

[+] thefilmore|3 years ago|reply
> sdl_getticks64 was undefined

I used this because it was recommended by the docs, but it's somewhat recent (introduced in SDL 2.0.18, November 2021).

> now i just seea bunch of dots on a screen

The dots are other planets and moons you can travel to.

> i press thrust/downthrust and the circle disappears

If the circle disappears then you've crashed into the planet (it will blink CL in the bottom right). You'll have to start a new game, and thrust in the other direction this time. I've added some more information to the README about the gameplay.

[+] nativecoinc|3 years ago|reply
Crazy. I thought Pong was “the first video game (released in the 1970s)”. And this sounds a lot more involved.
[+] djur|3 years ago|reply
Pong is one of those cases where it isn't the technical "first" of anything objective. It's not the first video game, the first arcade game, the first home video game, the first ping-pong video game, it's not even the first game Nolan Bushnell was involved with. But it was the first arcade game that was a really big commercial success, that attracted leagues of imitators, etc. And the same is true of Home Pong.
[+] twic|3 years ago|reply
Video games are like compilers, or computers themselves - there isn't really a first one. Far enough back, there are things which are clearly not video games; recently enough, there are things which clearly are video games, and in between, there is a parade of things which are not clearly video games or not.

Here's an hour-long, meticulously sourced, rather thoughtful video on the question:

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

(which naturally concludes that video games are a British invention!)