<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rocket Bear Games Blog</title>
	<atom:link href="http://www.indiebird.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.indiebird.com/blog</link>
	<description>Taking over the world - one game at a time</description>
	<lastBuildDate>Sun, 05 Sep 2010 20:41:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Replays and Random Maps</title>
		<link>http://www.indiebird.com/blog/?p=895</link>
		<comments>http://www.indiebird.com/blog/?p=895#comments</comments>
		<pubDate>Sun, 05 Sep 2010 20:31:30 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=895</guid>
		<description><![CDATA[I&#8217;ve spent the last week working out the bugs in the random map generation.  Since the switch to a polygon-based map, I had to throw in some semi-complicated algorithms into the mix.  For example, I have to be able to merge the outlines of two polygons quickly and without errors.  It worked&#8230;sort of.  These algorithms [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent the last week working out the bugs in the random map generation.  Since the switch to a polygon-based map, I had to throw in some semi-complicated algorithms into the mix.  For example, I have to be able to merge the outlines of two polygons quickly and without errors.  It worked&#8230;sort of.  These algorithms have to be implemented fairly carefully, because they can blow up in special cases.</p>
<p>That&#8217;s what I spent the last week doing &#8211; generating random maps and waiting for the generator to blow up.  The good news is that 99% of  maps are clean now.  There are a few sneaky bugs left, but I&#8217;ll catch them eventually.  The result is that random maps look better than ever now &#8211; take a look.</p>
<p style="text-align: center;"><a href="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps1.jpg"><img class="size-full wp-image-896    aligncenter" title="Infested Planet New Random Maps 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps1.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: center;"><a href="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps2.jpg"><img class="size-full wp-image-896  aligncenter" title="Infested Planet New Random Maps 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps2.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: center;"><a href="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps3.jpg"><img class="size-full wp-image-896  aligncenter" title="Infested Planet New Random Maps 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps3.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: center;"><a href="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps4.jpg"><img class="size-full wp-image-896  aligncenter" title="Infested Planet New Random Maps 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps4.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: center;"><a href="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps5.jpg"><img class="size-full wp-image-896  aligncenter" title="Infested Planet New Random Maps 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/09/new_random_maps5.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: left;">The other thing that I&#8217;ve whipped up last week was the replay system.  The game is getting complicated enough now that it&#8217;s hard to debug.  I&#8217;d be playing a random map and at some point the game would crash.  How am I supposed to diagnose the problem if I can&#8217;t make it happen again?</p>
<p style="text-align: left;">To address this, I&#8217;ve made the game record all input &#8211; mouse movement, clicks and button presses.  I&#8217;ve been careful to write the game in such a way that it&#8217;s 100% deterministic &#8211; if you do the same things to it, you&#8217;ll get the same outcome.  This means that I can now load my replay files and reproduce the problems exactly.  This will save me a ton of time and make the final game much better.</p>
<p style="text-align: left;">The question, of course, if whether this will make its way into the final game as a &#8220;record game&#8221; feature.  That&#8217;s not as straightforward as rigging a debug system and it might take me a couple of weeks to polish it up to acceptable levels.  I don&#8217;t know if I have the time to do that, but it&#8217;s on a &#8220;wanted&#8221; list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=895</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Random Maps</title>
		<link>http://www.indiebird.com/blog/?p=889</link>
		<comments>http://www.indiebird.com/blog/?p=889#comments</comments>
		<pubDate>Sun, 29 Aug 2010 17:54:26 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=889</guid>
		<description><![CDATA[It&#8217;s important to me that random maps are interesting in Infested Planet.  They&#8217;re going to be used in the skirmish mode and in the campaign, so there has to be some variety in the generator.  I was pretty proud by the map generation as-is, but some things bugged me.  For example, all maps were rectangular. [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s important to me that random maps are interesting in Infested Planet.  They&#8217;re going to be used in the skirmish mode and in the campaign, so there has to be some variety in the generator.  I was pretty proud by the map generation as-is, but some things bugged me.  For example, all maps were rectangular.  This was a holdover from when the game used a tile-based map.  Since I changed the map to polygon-based I&#8217;ve wanted to have non-rectangular maps.</p>
<p>A couple of days ago I finally made the maps have a random shape.  Here are what they look like now:</p>
<p style="text-align: center;"><img class="size-full wp-image-890  aligncenter" title="New Random Maps 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/newrmg1.jpg" alt="" width="500" height="375" /></p>
<p style="text-align: left;">Another thing &#8211; I was so annoyed with the temporary interface that I changed it to something better.  The old one took up a large chunk of screen space and made it hard to take screenshots.</p>
<p style="text-align: center;"><img class="size-full wp-image-891  aligncenter" title="New Random Maps 2" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/newrmg2.jpg" alt="" width="500" height="375" /></p>
<p style="text-align: left;">If you look carefully, you&#8217;ll notice some new elements on the map, besides aliens and humans.  I&#8217;ve been working on the campaign code, and that&#8217;s a part of it.  I&#8217;m going to talk about them more later.  In short, their purpose is to spice up the game and add some variety.</p>
<p style="text-align: center;"><img class="size-full wp-image-892  aligncenter" title="New Random Maps 3" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/newrmg3.jpg" alt="" width="500" height="375" /></p>
<p style="text-align: left;">Another detail that you may have noticed is that there are no walls in the middle of the map.  That&#8217;s something that I&#8217;m reworking right now.  The old walls were all the same size and I want to add some differences in scale.  There are also some bugs in the polygon code, so I&#8217;m in the process of hunting them down.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=889</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New Wall Code</title>
		<link>http://www.indiebird.com/blog/?p=884</link>
		<comments>http://www.indiebird.com/blog/?p=884#comments</comments>
		<pubDate>Wed, 25 Aug 2010 00:23:31 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=884</guid>
		<description><![CDATA[After my last post about wall woes, I tried a new approach.  The idea is to tile a lot of sprites along the edges.  Here it is:]]></description>
			<content:encoded><![CDATA[<p>After my last post about wall woes, I tried a new approach.  The idea is to tile a lot of sprites along the edges.  Here it is:</p>
<p style="text-align: center;"><img class="size-full wp-image-885  aligncenter" title="Infested Planet New Walls" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/newwalls.png" alt="" width="500" height="351" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=884</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>War on Walls</title>
		<link>http://www.indiebird.com/blog/?p=880</link>
		<comments>http://www.indiebird.com/blog/?p=880#comments</comments>
		<pubDate>Sat, 14 Aug 2010 01:01:25 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Indie Game Scene]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=880</guid>
		<description><![CDATA[Usually I post about stuff that I&#8217;ve just finished.  I grab a couple of pretty screenshots and stick them for your enjoyment.  This probably makes the game development process seem nice and simple, like walking across a room. Well, today I&#8217;m going to talk about a problem that I don&#8217;t have a solution to. Walls! [...]]]></description>
			<content:encoded><![CDATA[<p>Usually I post about stuff that I&#8217;ve just finished.  I grab a couple of pretty screenshots and stick them for your enjoyment.  This probably makes the game development process seem nice and simple, like walking across a room.</p>
<p>Well, today I&#8217;m going to talk about a problem that I don&#8217;t have a solution to. Walls! I hate walls!</p>
<p>A couple of days ago I decided to improve the look of walls in the game.  I had a couple of ideas for this, but so far I haven&#8217;t come up with a solution that I like.  Let me show you some of the valiant attempts.</p>
<p style="text-align: center;"><img class="size-full wp-image-881 aligncenter" title="Walls 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/crazywalls1.jpg" alt="" width="500" height="316" /></p>
<p style="text-align: left;">My first try was to add some texture to the walls, like I did with the background.  It&#8217;s a bit more interesting, but I still get a profound sense of blah from that picture. Yuk!</p>
<p style="text-align: center;"><img class="size-full wp-image-882 aligncenter" title="Walls 2" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/crazywalls2.jpg" alt="" width="500" height="347" /></p>
<p style="text-align: left;">My next approach was to try some shading that I quickly threw together.  It helps a little bit, but I&#8217;m still unhappy with the look.  It somehow doesn&#8217;t fit.</p>
<p style="text-align: left;">I spent several hours fiddling with the shading settings, trying various combinations of smooth edges and sudden transitions.  Unfortunately, nothing really worked.  I think that I&#8217;m going to put the problem aside for now and work on something else.  This is probably the 3rd or 4th time that I&#8217;m shelving the wall work.</p>
<p style="text-align: left;">Hopefully I&#8217;ll get an idea that works soon.  Know any game that did top-down walls well?  Keep in mind that the walls have to be polygonal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=880</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Gratuitous Alien Battles?</title>
		<link>http://www.indiebird.com/blog/?p=874</link>
		<comments>http://www.indiebird.com/blog/?p=874#comments</comments>
		<pubDate>Wed, 11 Aug 2010 17:23:02 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=874</guid>
		<description><![CDATA[What&#8217;s with the visual obsession? Some people have mentioned that I seem to be focusing on the game aesthetics a lot recently.  The reason is that I&#8217;m pushing to release a trailer, and I can&#8217;t do that unless the graphics are fundamentally settled. What&#8217;s the big deal?  About a month ago, after I announced the game, I [...]]]></description>
			<content:encoded><![CDATA[<h3>What&#8217;s with the visual obsession?</h3>
<p>Some people have mentioned that I seem to be focusing on the game aesthetics a lot recently.  The reason is that I&#8217;m pushing to release a trailer, and I can&#8217;t do that unless the graphics are fundamentally settled.</p>
<p>What&#8217;s the big deal?  About a month ago, after I announced the game, I started talking about it to the gaming press.  The response was very muted.  Michael Rose from <a href="http://www.indiegames.com/">www.indiegames.com</a> was awesome and interviewed me, but other than that nobody seemed to care.</p>
<p>My suspicion was that it was due to the game&#8217;s shabby, cobbled-together look.  At the time, I didn&#8217;t invest any effort into graphical improvements.  I decided that I had to get the game noticed early on, or it would disappear into the void of the &#8216;net.  That&#8217;s why I&#8217;m doing so much visual stuff lately.  Once the trailer is out of the way, I&#8217;ll switch back to improving the gameplay.</p>
<h3>Alien Blood</h3>
<p>I&#8217;ve been working on alien and building death graphics for the last couple of days.  That means large clouds of alien blood.  I&#8217;m actually a bit divided on putting this much blood in the game, but I&#8217;ll talk about that later.  For now, here are some exploding hives.</p>
<p style="text-align: center;"><img class="size-full wp-image-875 aligncenter" title="Infested Planet Blood 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/blood1.jpg" alt="" width="500" height="330" /></p>
<p>One thing that felt off about the game is that hives dying didn&#8217;t feel satisfying.  This was a major turning point in a round and it was flat.  I made them explode in a big way now, with red streamers and everything.</p>
<p style="text-align: center;"><img class="size-full wp-image-876 aligncenter" title="Infested Planet Blood 3" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/blood3.jpg" alt="" width="500" height="333" /></p>
<p>The other thing that was bugging me was the hive damage response when they were still alive.  They would show no sign that they were hurt.  I added squirting jets to show the damage.</p>
<p style="text-align: center;"><img class="size-full wp-image-877 aligncenter" title="Infested Planet Blood 2" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/blood2.png" alt="" width="500" height="334" /></p>
<h3>Too Much?</h3>
<p>As I&#8217;ve been working on all of these death effects, I&#8217;ve started to wonder if it all might be a bit too violent.  There are certainly reasons for concern.  Firstly, I&#8217;ve noticed that I&#8217;m trying to compensate for my lack of art skill with large amounts of red decals.  That seems a bit questionable from the art direction perspective.  Also, the grungy look of the background and effects is starting to conflict with the simplified look of the marines, aliens and buildings.  I&#8217;ll need to find a unified art style somehow.</p>
<p>The other concern is quasi-ethical.  I doubt that anyone will go on a killing spree after playing my game, but I find spectacular violence for its own sake somewhat distasteful.  Not to mention that all the exploding blood is starting to be distracting for the player.</p>
<p>The other side of the argument is that this is a game where you mow down large crowds of mindless drones.  That&#8217;s not too erudite however you consider it, so the graphics are appropriate for the subject matter.  Perhaps I should just roll with it and make it as ridiculous and over the top as I can.</p>
<p>In the end I might do several things to deal with the issue.  Firstly, this is probably the high point of blood in the game.  I&#8217;m done with death animations, so it&#8217;s not getting any more graphic.  I might tone down the art for the effects, making the blood more cartoony or changing the colour to be more muted and non-red.  The other option is to provide an &#8220;extra blood&#8221; switch in the game for people who want the spectacle and make it toned-down for everyone else.</p>
<p>What do you think?  Does the game look too gory now?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=874</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Various Graphic Goodies</title>
		<link>http://www.indiebird.com/blog/?p=866</link>
		<comments>http://www.indiebird.com/blog/?p=866#comments</comments>
		<pubDate>Mon, 09 Aug 2010 16:18:06 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=866</guid>
		<description><![CDATA[I haven&#8217;t posted an update in a while.  Part of the reason is that after the SC2 release, my schedule has been turned upside-down.  Thankfully, I think that I&#8217;ve recovered this week. The other reason is that I&#8217;ve been working on various graphical improvements to the game.  Let&#8217;s go over them so that I can [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t posted an update in a while.  Part of the reason is that after the SC2 release, my schedule has been turned upside-down.  Thankfully, I think that I&#8217;ve recovered this week.</p>
<p>The other reason is that I&#8217;ve been working on various graphical improvements to the game.  Let&#8217;s go over them so that I can brag.</p>
<h3>Explosions</h3>
<p>Before, explosions used to be just puffs of coloured smoke, like this:</p>
<p style="text-align: center;"><img class="size-full wp-image-868   aligncenter" title="Old Explosions" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/explosion_old.jpg" alt="" width="500" height="172" /></p>
<p style="text-align: left;">I spent a couple of days last week tweaking how they look.  Now I have a nice fireball, sparks and shockwave effect.</p>
<p style="text-align: center;"><img class="size-full wp-image-867   aligncenter" title="Infested Planet Explosion" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/explosion.jpg" alt="" width="500" height="401" /></p>
<h3>Lighting</h3>
<p style="text-align: left;">I wanted the game world to have more variation in brightness, instead of being the same tone all over.  I already had a simple shadow system hacked in, but I also wanted lights.  Thankfully, I played around with something like this in a previous (unreleased) project.</p>
<p style="text-align: center;"><img class="size-full wp-image-869 aligncenter" title="Infested Planet Lighting" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/lighting.jpg" alt="" width="500" height="272" /></p>
<p style="text-align: left;">I also added the small detail of muzzle flashes for the marines and turrets.  They help make the firefights more alive.  Notice how the areas around the cannon and the explosion are subtly lit.</p>
<h3>Background Texture</h3>
<p style="text-align: left;">One thing that&#8217;s always bugged me about the new art style is how flat the background was.  I was also worried about the colours &#8211; grey just seemed bland to me.  We&#8217;re still working to improve the colour &#8211; that&#8217;s why I&#8217;m experimenting with blue &#8211; but I think that I&#8217;ve solved the background problem.</p>
<p style="text-align: left;">I did two things to make the map more interesting.  I added textures to the ground and I also added extra texture around the walls.  Check out this zoomed-out view.</p>
<p style="text-align: center;"><img class="size-full wp-image-870 aligncenter" title="Infested Planet Background" src="http://www.indiebird.com/blog/wp-content/uploads/2010/08/background.jpg" alt="" width="500" height="442" /></p>
<h3>Future Improvements</h3>
<p style="text-align: left;">As I&#8217;ve mentioned, there are still a couple things to figure out.  I still think that the colours of the game need an overhaul.  Carlos and I are working on that right now.  I&#8217;m shooting for a darker, more grungy look for the enemies.  The second thing that I want to do is to make the walls more interesting.  I&#8217;ll probably use the same technique that I did for the background.</p>
<p style="text-align: left;">Once I have those two things out of the way, I&#8217;ll probably release a trailer for the game.  That won&#8217;t mean the end of graphical improvements, but at least the large parts of it will be complete.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=866</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Infested Planet Gets Bloody</title>
		<link>http://www.indiebird.com/blog/?p=862</link>
		<comments>http://www.indiebird.com/blog/?p=862#comments</comments>
		<pubDate>Fri, 30 Jul 2010 17:16:23 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=862</guid>
		<description><![CDATA[I&#8217;m back!  One of our competitors &#8211; goes by the name of Blizzard &#8211; tried to sabotage my productivity with a cunningly designed piece of software.  Thankfully, I&#8217;m all over it now and back to working on the game. One of the fun things about Infested Planet is mowing down huge crowds of enemies.  Playing [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back!  One of our competitors &#8211; goes by the name of Blizzard &#8211; tried to sabotage my productivity with a cunningly designed piece of software.  Thankfully, I&#8217;m all over it now and back to working on the game.</p>
<p>One of the fun things about Infested Planet is mowing down huge crowds of enemies.  Playing off of that,  I decided to make things a bit more over-the-top.  A couple of days ago I added a decal system that allows me to &#8220;paint&#8221; the floor of the level.</p>
<p style="text-align: center;"><img class="size-full wp-image-863  aligncenter" title="Infested Planet Blood" src="http://www.indiebird.com/blog/wp-content/uploads/2010/07/blood.png" alt="" width="500" height="402" /></p>
<p>Now dead zombies don&#8217;t just vanish in a red puff.  This allows you to see where really big battles happened and makes the game look a little bit better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=862</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Linux Fun</title>
		<link>http://www.indiebird.com/blog/?p=857</link>
		<comments>http://www.indiebird.com/blog/?p=857#comments</comments>
		<pubDate>Sun, 25 Jul 2010 01:39:33 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=857</guid>
		<description><![CDATA[I&#8217;ve been mucking around with Linux for the past couple of days.  There are two reasons for this. The first one is that I&#8217;ve just overhauled the explosion code.  One unfortunate consequence of that has been mysterious memory problems.  Linux has Valgrind, so I thought that I&#8217;d give it a shot. The second, more positive [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been mucking around with Linux for the past couple of days.  There are two reasons for this.</p>
<p>The first one is that I&#8217;ve just overhauled the explosion code.  One unfortunate consequence of that has been mysterious memory problems.  Linux has Valgrind, so I thought that I&#8217;d give it a shot.</p>
<p>The second, more positive reason, is that I&#8217;ve always wanted to release my games on Windows, Mac and Linux.  The code was written with the idea in mind, so the only obstacle is lack of time.  I&#8217;m not committing to a Linux Infested Planet yet, but it became a whole lot more probable over the last week.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=857</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Infested Planet Gets Makeover</title>
		<link>http://www.indiebird.com/blog/?p=847</link>
		<comments>http://www.indiebird.com/blog/?p=847#comments</comments>
		<pubDate>Wed, 21 Jul 2010 17:50:24 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=847</guid>
		<description><![CDATA[Over the last two weeks, we&#8217;ve been working hard to improve the visuals in the game.  One reason is that I want to release a trailer to let people know about the game.  It&#8217;s a lot easier to show the game off if the graphics look good. I&#8217;m not done making the graphics better &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last two weeks, we&#8217;ve been working hard to improve the visuals in the game.  One reason is that I want to release a trailer to let people know about the game.  It&#8217;s a lot easier to show the game off if the graphics look good.</p>
<p>I&#8217;m not done making the graphics better &#8211; we&#8217;re maybe 50% of the way there.  Still I thought that it&#8217;s interesting to show you where we&#8217;re at right now.  First, I&#8217;d like to remind you of what the game looked like originally:</p>
<p style="text-align: center;"><img class="aligncenter" title="Attack of the Paper Zombies Screenshot" src="http://www.indiebird.com/blog/wp-content/uploads/2010/02/zombies01ss.jpg" alt="" width="640" height="480" /></p>
<p>Yay for programmer art!  I thought that I did ok with AotPZ, but it&#8217;s not nearly well enough.  Let&#8217;s fast forward to today (keep in mind that a lot of the art is still unfinished, like the bottom bar):</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-853" title="New Infested Planet Art 1" src="http://www.indiebird.com/blog/wp-content/uploads/2010/07/newart3.jpg" alt="" width="500" height="375" /></p>
<p style="text-align: left;">Just yesterday, I put in a lot of the new sprites into the game.  Carlos has been working hard on them for the past week.  You can see the new hive and tower images on the above screenshot.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-851" title="New Infested Planet Art 2" src="http://www.indiebird.com/blog/wp-content/uploads/2010/07/newart2.jpg" alt="" width="500" height="375" /></p>
<p style="text-align: left;">I&#8217;ve made so that you can have different types of walls.  It really makes the game more lively.</p>
<p style="text-align: center;"><a href="http://www.indiebird.com/blog/wp-content/uploads/2010/07/newart.jpg"><img class="aligncenter size-full wp-image-849" title="New Infested Planet Art 3" src="http://www.indiebird.com/blog/wp-content/uploads/2010/07/newart.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: left;">If you look carefully, you&#8217;ll see that there are shadows under the buildings and units.  This was something that I threw together in an hour yesterday, just to see how it looks.  I like it quite a bit, actually; I might spend more time to make it look better.</p>
<p style="text-align: left;">Well, that&#8217;s what I&#8217;ve been up to for the past week.  After I finish off the map graphics, I&#8217;ll move onto effects like explosions and animation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=847</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Infested Planet vs. Alien Swarm</title>
		<link>http://www.indiebird.com/blog/?p=844</link>
		<comments>http://www.indiebird.com/blog/?p=844#comments</comments>
		<pubDate>Sun, 18 Jul 2010 23:01:07 +0000</pubDate>
		<dc:creator>Alex Vostrov</dc:creator>
				<category><![CDATA[Infested Planet]]></category>

		<guid isPermaLink="false">http://www.indiebird.com/blog/?p=844</guid>
		<description><![CDATA[So here I am, working on the game, minding my own business, when I see THIS.  Since when is Valve interested in space marines?  I thought that was Blizzard&#8217;s turf. Of course, the graphics are gorgeous and it&#8217;s free.  Bleh!  How am I supposed to compete with this? Is this the untimely doom of Rocket [...]]]></description>
			<content:encoded><![CDATA[<p>So here I am, working on the game, minding my own business, when I see <a href="http://www.alienswarm.com/index.html">THIS</a>.  Since when is Valve interested in space marines?  I thought that was Blizzard&#8217;s turf.</p>
<p>Of course, the graphics are gorgeous and it&#8217;s <strong>free</strong>.  Bleh!  How am I supposed to compete with this?</p>
<p style="text-align: center;"><img class="size-full wp-image-845  aligncenter" title="alienswarm" src="http://www.indiebird.com/blog/wp-content/uploads/2010/07/alienswarm.png" alt="" width="400" height="225" /></p>
<p>Is this the untimely doom of Rocket Bear Games? <em>&lt;dramatic music in the background&gt;</em></p>
<p>To be honest, I&#8217;m not too worried, for a couple of reasons.</p>
<h3>Awesome Name</h3>
<p>Ok, this one is only half-serious.  I feel that &#8220;Infested Planet&#8221; is a lot more creative.  Carlos came up with that when we were brainstorming.  Of course, I also had to talk him out of using &#8220;Swarm&#8221; somewhere in the title.  Whew.</p>
<h3>Time</h3>
<p>By the time my game is finished and released, Alien Swarm will probably be a long-forgotten memory.  People will be hungry for more alien-zombie killing action!</p>
<h3>More Enemies</h3>
<p>I think that the first level of my game has 10x more enemies than what their videos show.  I doubt they could draw the gigantic crowds that I do with the fancy graphics engine of theirs.</p>
<h3>Less Strategy</h3>
<p>There&#8217;s nothing wrong with action games (I love TF2, for example), but Infested Planet is definitely an RTS.  Alien Swarm seems to be an action game with minor tactical elements.  You can see this in how they talk about it (4-player co-op).  If you watch the videos, the game definitely looks to be on the twitch-reflex side of the fence.</p>
<h3>No Mutations</h3>
<p>Of course, I don&#8217;t know this for sure, since the game comes out tomorrow, but I doubt that Alien Swarm has my mutation system.  That&#8217;s what makes Infested Planet fun and replayable.</p>
<h3>Campaign Mode</h3>
<p>I crush Alien Swarm in this department.  They seem to have focused on multiplayer, and neglected any sort of single player.  That&#8217;s too bad, because most people don&#8217;t play multiplayer.</p>
<p>Infested Planet will have a replayable campaign mode that you can run through multiple times.  I have all kinds of neat ideas for it.</p>
<h3>Summary</h3>
<p>In summary, Infested Planet and Alien Swarm are two different games.  Heh, who would have guessed?  I&#8217;m going to be checking the game out tomorrow, and you should too if it looks interesting.  You can&#8217;t beat the price.</p>
<p>Who knows, maybe this will even help me.  I&#8217;m going to be stealing visual effects from them, and maybe there will be a surge of interest in killing large hordes of baddies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiebird.com/blog/?feed=rss2&amp;p=844</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>
