Music and Sound for Vector Space Brawl

Today I’ve posted 3 songs from my upcoming game on Soundcloud. I wanted to create a soundtrack that sounded like instrumental surf music with electronic instruments… I like how these songs have turned out and I’ll probably make a couple more in the next few days… do comment if you like them (or even if you don’t…). I’ll probably will make them available for download in some form after I release the game.

Continue reading “Music and Sound for Vector Space Brawl”

Update on Vector Star Brawl

Even though I’ve been silent on the site for a while (busy with real-life and programming mostly), work on my game is progressing along. I think the game will be finished very soon… at least, ready for an initial release…

Special Powers

I’ve added some cool special powers, an “easy” mode for people not used to the thrust/turn system and a use for landing on things. I’ve also added a new scenario for the game where you have a big planet with a couple of orbiting moons.
Continue reading “Update on Vector Star Brawl”

Landing on Asteroids and New Ships

My space dueling game is progressing nicely and one of the latest features I’ve added is the possibility of landing your ship. Right now there are only asteroids around to land on, but it’s pretty cool. The landing pods come out automatically when you’re near an asteroid and retract if you bump into it or accelerate. When you manage to touch the asteroid with both without hitting it with the body of your ship, the ship stops.
Continue reading “Landing on Asteroids and New Ships”

Unexpected problems with Universal apps

Ha! Today I tested my game as an iPhone app instead of a universal app to force my iPad to run it in its iPhone mode (I don’t have an iPhone around). It was funny because even though I had prepared somewhat for the difference in screen resolution, some of my code wasn’t really adaptable to different screen sizes…

Continue reading “Unexpected problems with Universal apps”

Solving the small playground problem

So I’ve been working on my vector graphics space dueling game. One of the features I knew I wanted from the start was a really big playground. Most games of this type limit you to the size of the screen, and on iOS devices, especially the iPhone/iPod Touch, this would make for a pretty limited space in which to battle.

So, at first I just made an auto-zooming camera so that when ships got farther away from each other, the camera would zoom out, always pointing at the center between the two ships. This way, ships could get much farther from each other up to a practical limit where they’d just become too small to be playable. I tried to make the playground wrap around so that if players reached the limit, they’d appear on the other side, but this meant a jerky camera motion as it tried to keep both ships in view, which made things confusing.

Smoothing out the camera movement/zoom would mean that a player would stop seeing their ship for a few seconds, so in the end I just made “solid” walls around the play field and let the ships bounce when they hit the edges. This way the camera was smooth and players always saw their ships.

Now, the next problem was the fact that the total playground was still not too big. When two ships were chasing each other, it was too soon that they reached the edge and bounced off, breaking the flow of the chase. This, I think, is no fun.

So, what I decided to do after thinking about it for a while was to make the actual playground infinite and just limit the maximum distance between the ships. So, now, the “bounding box” follows the players around. This means that as long as the two ships stay relatively close to each other, they can both advance in the same direction indefinitely. If both ships go off in different directions, the camera will zoom out up to a limit, where players will bounce of the edge if they try to cross it.

Right now I think this is the best solution and I’m happy with the results. Of course, the problem would not exist at all if the screen was split, but that’s not the kind of game I want to make. First, I don’t like how it limits your visibility and you don’t get a feel for the positions of both ships. What I love about my solution is that you can always see the relevant parts of the play field and you always know which direction you have to go.