Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

Deep RunnerView game page

6DoF shooter for the SGI O2
Submitted by nuclear (@jtsiomb), Robin Agani, dstar64 (@dstarx64) — 7 minutes, 29 seconds before the deadline
Add to collection

Play game

Deep Runner's itch.io page

Results

CriteriaRankScore*Raw Score
Fun#73.2683.444
Platform Usage#73.9004.111
Game Design#83.3733.556
Overall#83.5313.722
Theme#93.5843.778

Ranked from 9 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Reviewer Notes - Required
Written for SGI O2 workstations from 1996, but also runs on windows and linux. No need for an emulator.

Both archives include executables for SGI IRIX, GNU/Linux and MS Windows, as well as source code.

A video of an earlier dev version running on SGI hardware is here: https://www.youtube.com/watch?v=0-zUOuBWFZY I will update with a video of the finished jam entry soon.

Credits:
- Code: Nuclear (John Tsiombikas)
- Graphics & level design: dstar
- Music: Robin Agani

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

Nice game.

Felt more impressive watching it play on the actual machine than trying it on my pc, just cause when I first played, I was a little bit in denial.

If understand correctly, this is an untouchable machine of 1996 with the power of a regular pc of 2000. Programmed in C with OpenGL for 3d.

I have to say, I am very impressed! This is a very technical work with many programming techniques implemented.


Now to the game. The game is a descent clone, but with a chaotic stage. The geometry of the stage is quite OK, but the use of the textures is bad.

What I mean is that the textures changed from medieval to tech too instantly in many places without any small texture in between, and this made the work filled rushed.

The gameplay is quite shallow as the enemy AI is not challenging at all, and I personally believe that the arena style of the game removed the feel of progression I got from Descent and that this was pivotal to make the game enjoyable.

Other than that, sometimes the collisions of the laser did not work, and the second weapon felt unnecessary because the enemies were very weak. 

Also, even thought the sound effects of the game are very nice, for some reason the sound of your laser is delayed.

Last I got several crashes with the game, but I'll not rate with that in mind, as it is expected for several thousands of lines written in this tight time-frame. I just report them.

Developer (2 edits) (+1)

Thank you very much, even though as you said, many elements of this were rushed and unpolished, I am proud of the “engine” code I wrote for this game. Not so much the gameplay code, which was tacked on at the end.

Indeed it’s a very expensive 1996 SGI workstation, but the O2 was a low-end SGI product, so I’d put it at most in parity with a high-end ‘98 PC. I intend to port this game to 3dfx glide at some point and do direct comparisons with voodoo cards, but I suspect even the voodoo2 might have better texture mapping performance, even though it comes with severe feature limitations over what SGI’s OpenGL implementation supported. And yes it is written entirely in C and OpenGL.

I can’t answer about the textures, but I think dstar’s notion was that you’re entering a sci-fi complex through some natural caverns and old entryways. The true reason for it of course is to give some visual variation to the level.

The sound lag you mentioned is an unfortunate bug that only appears on windows. The SGI and GNU/Linux versions do not have that, so I only noticed it at the very end of the jam when I tested the windows build just before submitting it. I suspect the issue is in the mikmod library which I’m using for cross-platform music and sound playback, but I haven’t had the time to dig into it yet and see if I can fix it.

Most of the crashes are there because during the rush of the last 10 minutes before the deadline when I was trying to build across all platforms and submit the game, I left in some extra floating point exceptions enabled which I had enabled for debugging. I essentially released a debug build. Sorry for that :) Of course they are still bugs on my end, but they would result in probably imperceptible glitches here and there instead of crashes if I remembered to remove them for the final build.

Thanks for the feedback, and for taking the time to report the issues you encountered!

Submitted (1 edit) (+1)

SGI machines always felt almost like mythical artefacts, back in the day, so it's very cool to see it as platform for retro gamedev.

I honestly can't play 6DoF shooters for long - I always dug the concept, but they just break my brain. (It always made me sad that I couldn't deathmatch in Descent with buddies who were into it at the time). But I managed to peek at this long enough to appreciate the accomplishment. And the neon visuals feel like they really capture the SGI aesthetic. So congratulations on a game that made me disoriented, nauseated and happy all at the same time :)

Developer

Exactly! SGI machines were like the unobtainable holy grail for poor graphics programmers like me stuck on DOS PCs. It was “professional gear”, big league stuff … which is why I became obsessed about collecting them later in life :) And why it also seems almost absurd to use them as a game platform, I like the irony in that :)

And yes absolutely I was always getting disoriented and couldn’t play much of descent at the time, and I never liked fast action games very much anyway… but mechanically this freedom of movement makes it very interesting as a programming exercise :)

As for the level visuals, all the credit goes to dstar who made the awesome models and textures, and designed the level from scratch.

Submitted

nice game! makes much fun, but the mouse is a little bit too sensitive

Developer (3 edits)

Thanks! you can change the mouse sensitivity in game.cfg (it will be created automatically first time you run the game). The option is called “mousespeed” and takes a value from 0 to 99. It’s under the “controls” section. I intended to make an in-game settings screen for all this, but couldn’t make it in time.

edit: optimus just pointed out that this won’t work. the reason is a stupid rename bug… the game looks for control settings under “ctl” not under “controls”, so it won’t find the values you put there. Rename the section to “ctl” and it will work, but unfortunately it will also over-write the config file with the wrong name again on exit, so save a backup :)

edit2: or better yet, just run this patch I prepared, which patches the windows executable and fixes the issue. run it in the same directory as the game executable, delete your game.cfg and start the game again to re-create it with the correct “ctl” section, then edit the mouse sensitivity and it will work: http://nuclear.mutantstargoat.com/sw/games/deeprunner/releases/deeprunner_patch1-win32.zip

Submitted

Wow,...that was really impressive graphics! And thinking back....I bought my first riva128-card in 1997 (they didn't had a voodoo so I had to take it and didn't regret it). Maybe I have this pci-powerhorse still somewhere 🤔 The 20 year limit makes already much power possible.
Great entry 👍

Submitted

Impressive entry for an impressive platform!

I only had a little trouble setting the mouse controls, editing the cfg to invert mouse and reduce sensitivity somehow didn't work for me. So I got a bit motion sick before getting to far with it. It does however seem to be a nice simple game and easy to move around and shoot things.

Developer (1 edit)

ops! sorry about that… it’s a silly bug. It looks for these options under “ctl” not “controls”… rename the section to “ctl” and back-up the file, because unfortunately it will overwrite it with the wrong name again on exit…

edit: I prepared a patch for the windows version which fixes the issue. Run it in the same directory as the game executable, and it will patch it to use “ctl” everywhere. Delete your game.cfg and run the game to re-create it correctly, then edit it at will: http://nuclear.mutantstargoat.com/sw/games/deeprunner/releases/deeprunner_patch1-win32.zip

Submitted

Whoa, impressive! The keyboard mapping seems off for non english layouts (german here). I can’t increase the volume, only decrease it :) The sound effects play delayed by almost half a second (Windows version).

Still, a very de(s)cent game! Victory is mine, but alas, without the secret.

And suffers from the same issues as Descent. I’m getting lost right away :)

Developer

Thanks!

Keyboard remapping was almost there, but I didn’t have the time to make the options for it. The input code does go through a mapping table though because I had remapping in mind, so future versions will definitely allow for it.

I noticed the sound lag on windows. I’ll try to fix that at some point. I’m using a 3rd party audio library (libmikmod), and I’ll have to dig into their windows backend to see what’s going wrong. The bug is windows-only. GNU/Linux and SGI IRIX play the sound effects correctly.

Submitted(+1)

I just submitted a type-in game for the Apple I, and I instantly feel outclassed for nerd-cred on platform choice.