Thing-a-Day 2010: Complete
After participating in Thing-a-Day for my second year, I put together a summary grid with everything in one place. The complete graphical source is also available in a convenient .zip file.
For the graphics source and more info, see the original Posterous post on Thing-a-Day.com.
In: Personal projects · Tagged with: 2010, art, download, pixel, source, tad, thing-a-day, zip
The Character Project: Week Six – Amy
Created for week six of The Character Project.
In: Personal projects · Tagged with: amy, character project, daniel, flash, flixel, game, mini game
Hammond: A mailman’s dream
Hammond: A mailman’s dream is a small game I wrote for The Character Project.
In: Personal projects · Tagged with: character, flash, flashdevelop, flixel, game, hammond, inkscape, wegotcharacter
Leaving Satisfactoria – Ludum Dare #16
My entry for the 16th Ludum Dare 48-hour game creation competition. This competition was themed “Exploration”.
Download
Get the competition version here:
- Leaving Satisfactoria – exe and source.zip (10,142 KB – Windows .exe and full source)
- Leaving Satisfactoria.zip (328 KB – full source, needs pygame [see below])
In: Personal projects · Tagged with: competition, exploration, game, ld48, ludum dare, pygame, satisfactoria
official megastrata hiatus
This project has come further than any other of the previous attempts. Similarly, it has been a fantastic learning experience so far. Unfortunately, a conceptual blockade has emerged for various reasons, among them Sloth and Pride.
However, the idea has been around for years now, and it will reincarnate better than ever. Maybe next time a less lofty goal will be chosen, and the project may attain a feeling of completeness. I believe I may have reached too high in this current cycle, and constantly straining my neck looking at the goals is frustrating and discouraging.
For now, there are some other projects that demand pursuing. Rest assured that the Megastructure will return; because the truth is, it never ceased existing to begin with.
This blog will continue to exist as a development log, as well as @megastrata. I am participating in Ludum Dare #16 this weekend, under the name eli.
In: Uncategorized · Tagged with: announcement, games, hiatus, ld48, ludum dare, Megastrata
Elevated – v1.88
After starting year 2 of physics at TAU, it’s been hard to find time for anything other than schoolwork or zoning out. It’s been more than a month since last code update, and not much has improved. Elevators are now usable, complete with internal colliding surfaces. Most of the development has been trying to fix bizarre stability issues as they arise; I’m not sure they have been addressed properly. Please let me know if this version crashes.
As always: get the latest version from the Megastrata information and download page.
In: Uncategorized · Tagged with: 1.88, code, game, Megastrata, procedural content generation
screenshot smorgasbord, elevators
Slowly but surely, scriptable objects (like elevators) are being incorporated into the engine.
Here are some new screens, reflecting changes in lighting and modeling. Also, the new elevator shaft rooms are visible.
(Wolfgang discovered the ceiling pillars that go on forever.)
In: Uncategorized · Tagged with: elevators, environment, exploration, gallery, images, lighting, Megastrata, procedural content generation, screenshots, scriptable, shafts
Technical: Depth buffer in OpenGL
I just thought I’d post this up here, in case other people had the same problem.
The Megastrata project started out like any other first-time project: cobbled together from examples found on the internet. One of the long-standing traditions regarding development involve the so-called “hack-n-slash” technique: smash the code around until it works.
Megastrata started life out as the NoiseViewer, which was, true to its name, simply a 2D noise patter viewer. Hence, there was originally no need for a depth buffer.
When the leap was made to 3D, I made it work on Windows. But the OS X version didn’t render the same way. Wolfgang put a lot of effort into debugging it, and after sending screenshots back and forth, we understood that the problem was with the depth buffer.
I saw something suspicious when I looked up the OpenGL FAQ on the subject. Step one reads:
1. Ask for a depth buffer when you create your window.
Evidently, Windows automatically specifies a depth buffer created when initializing the window, whereas OS X does not do this by default.
We changed the line in the code that read:
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB); |
to:
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); |
and the problem was solved.
In: Uncategorized · Tagged with: buffer, culling, depth, depth buffer, glutInitDisplayMode, opengl, OS X, rendering, troubleshooting, windows, z-buffer
Collisions and Cosmetics – v1.87
Version 1.87 released: as usual, to be found on the information page.
Major changes in this version include a newer, less degenerate collision engine. The player now collides with surfaces, instead being manually bound to a certain volume.
Also, steps have been taken towards making the corridors more visually interesting. This means adding chamfering to some corners, and variable heights to the corridors. (Suggestion in part by @zdanielz.)
In: Uncategorized · Tagged with: architecture, collisions, cosmetics, exploring, Megastrata, procedural content generation, screenshots
Version 1.86 Released, corridor-enabled
Collisions are coming together, even if they are simplistic. This means we can now explore an infinitely-generated space, full of corridors and rooms. The latest version has been uploaded, the very same one from the teaser vid.
Please note that there are disabled stubs for working with ffmpeg, but I decided it was far too bulky to add to the project. I only used it for a few export clips, for the teaser.
Also, as Wolfgang points out, the Mac version does not look the same as the Windows version (most of the walls are transparent). This is evidently because of some nonstandard usage of OpenGL that Windows is willing to forgive. Any thoughts or suggestions on how this might be solved would be quite welcome.
Regardless, the project is moving forward, and new and exciting features are coming. Stay tuned.
In: Uncategorized · Tagged with: code, collisions, corridors, interior, Megastrata, noiseviewer, procedural content generation