Musickness released!

Posted on 14th January 2012 in Musickness, Videos

Finally, Musickness, including the updated color scheme, is through peer review!

Check out the official Xbox Live product page for more information.

Also, here’s a video with the final blue/purple color scheme:

comments: 0 »

Musickness into peer review

Posted on 3rd December 2011 in Musickness, Videos

You know, sometimes I didn’t think the day would come. But here it is, my first game that’s actually ready to be released into the wild! Simple, but fun!

This is my first peer review submission to XBox Live Indie Games!

comments: 0 »

Once again, I have strayed from the path.

Posted on 8th September 2011 in Musickness, Sillyness

This time I and a friend had a weekend of “let’s just code something from the ground up and see how far we get”. Turns out we got quite far. Apart from making an the actual game level, some color tweaking and so on, this is basically a game ready to play.

A bit of wallpaper, some paint here and there, a full game level, a new points system display and it’s ready to rock!

comments: 0 »

More randomness: Treemap Drilldown

Posted on 22nd August 2011 in Sillyness, Videos

Ok, so I’m still having problems with motivating myself. For that reason, I continue to play with new, random things.

This is a GUI I made this weekend, made to visualize a treemap representation of a game AI decision tree.

Still needs a lot of polishing of course, but it works pretty well for a first version.

comments: 0 »

Sometimes, you need to do something different

Posted on 5th July 2011 in Sillyness, Videos

So this weekend I got it in my head that I should render cubes. Lots of them. Since I usually rather make things up as I go and get something working before reading up on a technique, I tried about 10 approaches before ending up with this:

Basically, the algorithm is buffered and overshoots the camera frustum slightly to all sides, making sure that it has time to fill in the blanks before the camera moves too much. There’s still a lot of room to crank up the update frequency before frame rates start dropping, but this is really good enough.

The reason you see blocks remaining after the frustum moves past is that there is an equally lazy cleanup algorithm being run every now and again (about 500ms at this point), and it too is conservative in what it chooses to clean up, just in case the camera would suddenly turn the other way.

comments: 0 »

Physics once again in place

Posted on 29th June 2011 in Screenshots

Ok, so I got a new, custom physics engine in place. It’s a lot simpler than JigLibX of course, but also tailored to the current needs. It uses between 2-10% the computing time of JigLibX, pretty good I’d say.

I ran into another problem with the GC. On the XBOX, it triggers almost exactly every 412:th frame and kicks the running frame time from ~6ms to ~140ms. Thanks for that periodic lag. I profiled the memory usage and found a couple of hotspots where the engine was allocating large amounts of memory and throwing it away each frame. After having that fixed, lags went down, but still occur at irregular intervals. I made a bit of memory monitoring code which triggers the GC more often and voila, problem gone. As far as I’ve seen.

To finish off, here’s a screenshot of the dragon again. This time in black and white. I think it looks pretty good!

Black and White scene

 

comments: 0 »

JigLibX just doesn’t cut it

Posted on 21st June 2011 in Uncategorized

Some bad news I’m afraid. I’ve been making a lot of progress recently and I’ve started to do some testing on the XBOX 360 again.

To my dismay, it turns out that I’m experiencing a lot of lag after just a minute or so of gameplay. I was afraid that I would have to work through my graphics pipeline again, but that shouldn’t degrade over time.

I started profiling my code and after some work I realized that the graphics pipeline was working well within its limits but I found another spike that I hadn’t seen before. The physics engine was performing extremely badly once the number of enemies (and thus collision volumes) went somewhere above 2-5. I attempted to do some threading of selected parts of the code to alleviate the burden, but in the end it just made JigLibX shake like a Chihuahua in the arctic. It simply got terribly unstable, so I decided what I should have decided long ago: I’m scrapping JigLibX.

It took about half an hour to rip everything out and get the engine going again. Now all I have to do it replace everything that JigLibX did with my own implementation. I was hoping it would have to come to this.

Sorry JigLibX. We must part ways.

comments: 0 »

Video #2

Posted on 18th April 2011 in Videos

It’s not quite good yet. It needs some animation transitioning and a bit of tuning here and there (left leg, anyone?) but it’s alright for a first try I’d say.

comments: 0 »

Screenshot #6

Posted on 28th March 2011 in Screenshots
Screenshot #6

Red Dragon

Meet our next contestant: The red dragon!

…oops, I believe the “beard” and “mustache”, horns and teeth have their normals inverted :/

 

comments: 0 »

Screenshot #5

Posted on 23rd February 2011 in Screenshots
Main character in the making

New main character in the making

comments: 0 »