quadtree

LD34

I’m in!

I’m in! This will be my 15th Ludum Dare. My toolset:

  • Engine: Unreal Engine 4
  • Language: C++
  • Graphics: GIMP, Blender
  • Sound: Bfxr, Audacity

WIP

Here’s a screenshot of one ship flying away from another in my as-yet-unnamed game:

wip1

Eventually it should be possible to destroy enemy ships and steal their pieces to grow your own ship. It has more than two buttons for control though, so I guess it’s only going to fulfill one of the themes.

All done!

I’ve submitted my entry, Agglomatron.

final3

I’m fairly happy about how it turned out, although I wish I’d had time to add a few more things. Play it here.

LD35

All done!

ScreenShot00007

I’ve finished my entry, Law Claw. It got a little hairy there for a bit, but I’ve managed to post both a HTML5 version and a Windows version. I’ll see if I can get a post-mortem post up later.

Play Law Claw here.

LD36

Some Progress

So far all you can do is bounce around in a impossible maze:

ld36-2

All done!

I’ve submitted my entry, Robot Recycler! Had a brief scare when the form wouldn’t accept my PNG screenshots, but switching them to JPG seems to have fixed it:

ScreenShot00001

Ludum Dare 37

Getting the scale down

ScreenShot00000

It doesn’t look like too much, but I’ve finally gotten the character correctly scaled compared to the (relative to them) huge room.

WIP

Here’s another screenshot of my game, which is tentatively titled “Plastic Regiment”, showing how much of a mess you can make of the room you’re in:

ScreenShot00001

All done!

ScreenShot00016

I’ve uploaded my game, Plastic Regiment. Play it here. I’ll hopefully have a post mortem and HTML5 version out later.

LD 38

I'm in!

I'm in! This will be my 19th Ludum Dare (although the first on this cool new site!).

My toolset:

  • Engine: Unreal Engine 4
  • IDE: Visual Studio 2017
  • Graphics: GIMP, Blender
  • Sound: Audacity, Bfxr, Abundant Music

Good luck everyone!

Some progress

Here's a screenshot of my WIP racer where you race all around small planets:

ScreenShot00004.png

It's getting pretty close, but it still needs a name.

All done!

I've published my entry, Low Orbit:

ScreenShot00042.png

Try it here: https://ldjam.com/events/ludum-dare/38/$15950

Low Orbit Post Mortem

ScreenShot00043.png I'll start by going over a few aspects of this particular compo, and then cover what went well and what went wrong. Play the game here.

The Theme

I'll be honest: I voted against "A Small World", for the simple reason that that it is way too similar to the theme of LD #23, "Tiny Planet". I briefly considered making a sequel to my LD #23 entry, which I would have called "Space Imperator II". This just seemed too creatively bankrupt however, so I decided to find something else. I eventually settled on the idea of a racing game where the player raced around on a small planet, probably from pole to pole. Racing games are one genre I have never done in the LD, so it seemed nice to try something new.

Feasibility

Unreal Engine 4 uses PhysX which I guessed isn't designed to allow vehicles to drive on the bottom of things. My initial tests confirmed this: disabling gravity and using a radial attractor to simulate gravity prevents vehicles from getting any traction. Eventually I was able to find an odd hack: If you leave gravity on, but add an extra force to all objects which negates it, vehicles work. However, I still suspect that the cars have better handling on the "top" of the planet rather than the "bottom". Either way, it isn't all that noticeable (hopefully).

What Went Well

The Idea

I did have time to implement my original idea, and even throw in an extra level. The cars turned out how I expected, and I think each has its own distinct flavor.

Graphics

I'm not a very good 3D artist, but UE4 has the ability to make my mediocre models look decent, at least. There is a problem with lighting, as the engine isn't designed to have objects lit and shadowed on all sides.

The Minimap

I set up the top-view of the planet at the very start, as a simple render-to-texture. Considering how long it took to make, I think it really improved the look of the game and emphasized the planetary aspect of the game.

Sound and Music

This is usually a weak spot for me, but I'm fairly happy with how it turned out. I recorded my electric range hood and used that as the engine noise, which worked well with the simulated RPM in the vehicle system. For the collisions, I used a slowed down version of me hitting butter knives together. The rocket engine sound is made in Bfxr.

As for the music, I made about 10 tracks in Abundant Music with a tempo of 300-350 and a synth as the lead. After I'd made about 10, I got one I really liked, although it's only about 88 seconds long.

Opponent AI

My past experiences with writing vehicle AI were not very encouraging. The only vehicle AI I've ever written is the fairly stupid AI that drives the other vehicles in my LD #32 entry. Even then, it only had to worry about what is essentially a 2D plane with no obstacles. I got fairly lucky here in that my first idea worked out pretty well. The AI chooses the next destination, either as the next checkpoint, or from a numbered set of waypoints that precedes each checkpoint. It then projects everything onto a plane perpendicular to a line drawn from the center of the planet. It then takes the dot product of the vector to the destination and another vector that faces off to the left, and uses this to determine steering. As the AI gets more on course, the dot product decreases and the AI increases its maximum speed. It also decreases maximum speed as it approaches the destination.

The result, while not particularly smart, can actually beat me on occasion, which I think is good enough.

What Didn't Go Well

Vehicles

The UE4 vehicle system is very complex. This is good in that it models stuff like engine RPM and transmissions, but it's bad in that there are a ton of things that can go wrong. I spent about 5 hours trying to export vehicle models as skeletal meshes from Blender, before giving up and using the same technique I used in LD #32: I just used the default car skeleton and attached wheel and body static meshes to it.

The Name

The idea crystallized right off the bat, but the name didn't. Here are the names I rejected, from my notes: World Wide [Racer?], Equatorial Race, World Wide Circuit, Pole to Pole, Race the World, Race to the Poles, Circle the Globe, Globetrack, Ground Orbit, Planetary Challenge, Planetary Circuit, Polar Circuit, Polar Track, Planetary Speedway, Celestial Speedway, Solar Speedway, Speedway Planet, Latitude Circuit, Great Circuit, Extremely Low Orbit, Polar Speedway

Performance

Final testing on my laptop revealed that the game runs poorly on low-spec machines even though it doesn't look all that good. I think the problem is the subdivision surfaces I used on the cars, which add a ton of largely redundant polygons.

HTML5 Export

Yet again the HTML5 export failed to work flawlessly. It looks like the problem is that UE4.15 won't compile the PhysXVehicle plugin into a HTML5 build, and I'm not completely sure why. UE4.16 doesn't seem to have this problem, so my only option was to build 4.16 from source. There were a couple other issues around lighting and weird model distortion, but I do have a HTML5 build up now, with only one bug that doesn't exist in the Win32 version: for some reason, the car's wheels are rotationally 1 frame behind the body. This is only noticeable when the car is spinning at high speed, so hopefully it'll only come up rarely.

All in all, it was an enjoyable experience. See you all in LD #39!

LD 39

All done!

I've finished uploading my game, Interstellar Electric Inc.:

ss1501459595156.png

The key here is that while running out of power is bad, having too much power can be bad too... Play it here.

LD 40

I'm in!

I'm in! This will be my 21st LD. My Toolset:

  • IDE: Intellij, Visual Studio
  • Engine: libGDX, Unreal Engine 4
  • Sound: Bfxr, Audacity
  • Graphics: Blender, GIMP
  • Music: Abundant Music, Timidity

Good luck everyone!

WIP Screenshot

Here's a basic WIP screenshot of my game, which is tentatively titled "Oversize Load":

ezgif-1-8e3d5e3921.gif

Another WIP GIF

Here's the player's truck getting increasingly back-heavy as they pick up more cargo: ezgif-1-0cd3639cba.gif