<?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>Naughty Bits</title>
	<atom:link href="http://www.naughtybits.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.naughtybits.com</link>
	<description></description>
	<lastBuildDate>Thu, 04 Feb 2010 19:21:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iShoot 2 developer diary 2</title>
		<link>http://www.naughtybits.com/archives/ishoot-2-developer-diary-2/</link>
		<comments>http://www.naughtybits.com/archives/ishoot-2-developer-diary-2/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 19:21:09 +0000</pubDate>
		<dc:creator>ethan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.naughtybits.com/?p=148</guid>
		<description><![CDATA[Since my last post on iShoot 2, things have come a very long way.  The game is basically playable now, in the sense of &#8220;tanks take turns shooting, can kill each other, and most of the in-game UI is there and working&#8221;.  There are around a dozen weapons working at the moment, though [...]]]></description>
			<content:encoded><![CDATA[<p>Since my <a href="http://www.naughtybits.com/archives/ishoot-2-developer-diary-1/">last post</a> on iShoot 2, things have come a very long way.  The game is basically playable now, in the sense of &#8220;tanks take turns shooting, can kill each other, and most of the in-game UI is there and working&#8221;.  There are around a dozen weapons working at the moment, though some of them are just testing various features of the new weapon system and probably won&#8217;t make it into the final release.</p>
<p>And since iShoot is all about weapons, that&#8217;s what I&#8217;m going to talk about today.  For the purposes of this discussion, I&#8217;m assuming at least passing familiarity with the weapon editor in iShoot 1.  Naturally, there&#8217;s going to be a much more comprehensive weapon editor in iShoot 2, so this post is of the most interest to people who plan to build iShoot 2 weapons.</p>
<p>The original iShoot weapon system was very limited (hey, I wrote the whole game in six weeks, after all).  You could take various basic types of weapons, such as &#8220;cluster bomb&#8221; or &#8220;shell&#8221;, and combine them in various ways &#8212; a cluster bomb of shells, or even a cluster bomb of cluster bombs of shells, if you so chose.  And you could tweak the weapon&#8217;s settings, such as how many submunitions they created and how far they shot them.  And that&#8230; was really about it.</p>
<p>In iShoot 2, the main goal of the weapon system is to make it more modular, so you can access smaller subunits of weapon behavior and alter or replace them.  To illustrate the difference, we&#8217;ll start with a &#8220;Shell&#8221; from iShoot 1.  iShoot 1 shells, such as the Mini Mortar, are weapons that fly in a ballistic arc and explode into a circular blast upon striking a solid object.  You can tweak various settings, such as the color of the explosion or the sound it makes, but all of those behaviors are tied together into a single chunk and can&#8217;t be separated.  You can&#8217;t create a shell that doesn&#8217;t travel ballistically, or one that drops bombs as it flies, or one that can travel through dirt but not tanks, or anything else not covered by the existing weapon effects.</p>
<h2>Effects</h2>
<p>iShoot 2 takes a completely different approach.  First, the behavior when a weapon blows up is much more granular.  Rather than the all-in-one &#8220;Shell&#8221;, the equivalent weapon in iShoot 2 actually has six different warhead effects:</p>
<p>1) Play Sound<br />
2) Create Explosion Particles (configured to create a burst which looks like a fireball)<br />
3) Destroy Terrain Circle<br />
4) Apply Damage<br />
5) Create Smoke<br />
6) Create Debris</p>
<p>There are many, many different effects you can apply as part of a weapon exploding, they can all be freely combined, and there is no limit on the number of effects a weapon can have.</p>
<p>As another example, the &#8220;Cluster Bomb&#8221; from iShoot 1 is handled in iShoot 2 as a &#8220;Linear Weapon Burst&#8221; effect.  You can now specify the angle of the line along which the submunitions will be shot, and since you can create as many effects as you like, you can easily create (say) a bomb which explodes into an X-shaped blast of shells simply by creating two linear bursts at right angles to each other.</p>
<h2>Triggers</h2>
<p>iShoot 2 introduces the concept of &#8220;triggers&#8221;, which cause effects to happen when certain conditions are met.  The most basic trigger, and one which all weapons have by default, is &#8220;Struck solid object&#8221;.  By default this trigger is wired up to the &#8220;Explode&#8221; effect, which simply runs all of the weapon&#8217;s warhead effects.  You can delete this trigger, in which case the weapon will happily travel right through solid objects, and you can also wire it up to different effects (for instance, maybe you want a weapon which behaves differently when it bursts in midair vs. when it hits the ground).</p>
<p>Other triggers include &#8220;Struck Terrain&#8221;, &#8220;Struck Tank&#8221;, &#8220;Reached Apex&#8221;, &#8220;Proximity&#8221;, and &#8220;Delay&#8221;.  Triggers can be armed and disarmed, so for instance you can have the &#8220;Reached Apex&#8221; trigger arm the &#8220;Struck Solid Object&#8221; trigger &#8212; your weapon will travel through solid ground until it reaches its peak and begins descending.  If you have a delay trigger re-arm itself, it fires again after the appropriate delay.  This allows you to have an effect which runs every &lt;n&gt; frames, such as dropping bombs.</p>
<h2>Travel</h2>
<p>All weapons in iShoot were ballistic, period.  In iShoot 2, you will be able to disable the effects of wind and gravity on a weapon, control its speed and direction via effects, enable homing, and many other settings.  Weapons can change appearance mid-flight, and there are even animated weapons now that reconfigure themselves on their way to the target.  I&#8217;m not ready to spoil all the surprises here, but iShoot 2 is going to have some <i>cool</i> weapons.</p>
<h2>Weapon Exchange</h2>
<p>Where&#8217;s the fun in building all of these world-destroying weapons if you can&#8217;t share them?  So naturally you will be able to share your custom weapons online.  We are also planning on hosting a contest to design the best set of weapons, with a sizable cash prize.  So go ahead and start thinking about weapons now <img src='http://www.naughtybits.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.naughtybits.com/archives/ishoot-2-developer-diary-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>iShoot 2 developer diary #1</title>
		<link>http://www.naughtybits.com/archives/ishoot-2-developer-diary-1/</link>
		<comments>http://www.naughtybits.com/archives/ishoot-2-developer-diary-1/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 17:15:47 +0000</pubDate>
		<dc:creator>ethan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.naughtybits.com/?p=135</guid>
		<description><![CDATA[With Kim Rhode&#8217;s Outdoor Shooting out the door, it&#8217;s finally time to start work on iShoot 2 in earnest.  We&#8217;ve been bouncing ideas around for a while, but real work on it didn&#8217;t start until two weeks ago.
Obviously with only two weeks of work on it and a brand new engine to get up [...]]]></description>
			<content:encoded><![CDATA[<p>With <a href="http://tinyurl.com/KimRhode">Kim Rhode&#8217;s Outdoor Shooting</a> out the door, it&#8217;s finally time to start work on iShoot 2 in earnest.  We&#8217;ve been bouncing ideas around for a while, but real work on it didn&#8217;t start until two weeks ago.</p>
<p>Obviously with only two weeks of work on it and a brand new engine to get up and running, there isn&#8217;t too much working yet.  And what is working isn&#8217;t ready to be subjected to public scrutiny yet.  Still, we&#8217;ve gotten a lot done in such a short period of time &#8212; we can aim and shoot various cool weapons, and the terrain is in and blowing apart beautifully.  Maps are <i>finally</i> bigger than a single screen, and scrolling and pinch zooming across the expansive landscape are working perfectly.</p>
<p>Most exciting to me, though, is the graphical improvements we&#8217;re going to have this time around.  Here&#8217;s a tank from the original iShoot:</p>
<p><img src="http://www.naughtybits.com/wp-content/uploads/2010/01/Screen-shot-2010-01-22-at-11.52.46-AM.png" alt="" title="Tank from the original iShoot" width="62" height="70" class="alignnone size-full wp-image-136" /></p>
<p>In comparison, here is one of the new iShoot 2 tanks when fully zoomed in (ignore the ugly solid blue background, skies aren&#8217;t in yet):<br />
<img src="http://www.naughtybits.com/wp-content/uploads/2010/01/IMG_0190.png" alt="" title="iShoot 2 Tank" width="170" height="122" class="alignnone size-full wp-image-138" /></p>
<p>Weapons, explosions, the UI, and everything else are all getting the same level of upgrade.  On top of the obvious graphical improvements, the engine has some extremely cool tricks up its sleeve that I&#8217;m not ready to talk about yet.  Stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.naughtybits.com/archives/ishoot-2-developer-diary-1/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Rhumb Line</title>
		<link>http://www.naughtybits.com/archives/rhumb-line/</link>
		<comments>http://www.naughtybits.com/archives/rhumb-line/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 00:41:21 +0000</pubDate>
		<dc:creator>ethan</dc:creator>
				<category><![CDATA[Rhumb Line]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.naughtybits.com/?p=66</guid>
		<description><![CDATA[
From the publisher of iShoot, the #1 iPhone game in January 2009, comes an iPhone port of the popular Rhumb Line board game from Games Above Board.  Players take turns positioning stones on a circular board in an effort to complete arcs, radii, and spirals of 4 or more stones.

Rhumb line features two player [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;margin-right:6px"><a href="http://click.linksynergy.com/fs-bin/stat?id=Kf3hmUD1/VM&#038;offerid=146261&#038;type=3&#038;subid=0&#038;tmpid=1826&#038;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Frhumb-line%252Fid341559250%253Fmt%253D8%2526uo%253D6%2526partnerId%253D30"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/IMG_0004.png" alt="Rhumb Line" width="160" height="240" /></a></div>
<p>From the publisher of iShoot, the #1 iPhone game in January 2009, comes an iPhone port of the popular Rhumb Line board game from Games Above Board.  Players take turns positioning stones on a circular board in an effort to complete arcs, radii, and spirals of 4 or more stones.
<p>
Rhumb line features two player competitive play, or three levels of computer difficulty for solo action, as well as a bright Caribbean soundscape and clean animation.
<p>
This game received a Major Fun Award in the &#8220;thinking&#8221; category in 2008.</p>
<p><a href="http://click.linksynergy.com/fs-bin/stat?id=Kf3hmUD1/VM&#038;offerid=146261&#038;type=3&#038;subid=0&#038;tmpid=1826&#038;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Frhumb-line%252Fid341559250%253Fmt%253D8%2526uo%253D6%2526partnerId%253D30">Buy Rhumb Line</a> at the App Store today!</p>
<p><br clear="both"><br />
<a href="http://www.naughtybits.com/wp-content/uploads/2009/12/IMG_0004.png" title="Rhumb Line Screen #1" rel="lightbox"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/IMG_0004.png" alt="Rhumb Line" width="60" height="90"/></a>&nbsp;&nbsp;<a href="http://www.naughtybits.com/wp-content/uploads/2009/12/Rhumb-Line-2.png" title="Rhumb Line Screen #2" rel="lightbox"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/Rhumb-Line-2.png" alt="Rhumb Line" width="60" height="90"/></a>&nbsp;&nbsp;<a href="http://www.naughtybits.com/wp-content/uploads/2009/12/Rhumb-Line-3.png" title="Rhumb Line Screen #3" rel="lightbox"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/Rhumb-Line-3.png" alt="Rhumb Line" width="60" height="90"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.naughtybits.com/archives/rhumb-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ethan Nicholas featured in New York Times and Fox Business News</title>
		<link>http://www.naughtybits.com/archives/ethan-nicholas-featured-in-new-york-times-and-fox-business-news/</link>
		<comments>http://www.naughtybits.com/archives/ethan-nicholas-featured-in-new-york-times-and-fox-business-news/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 20:01:17 +0000</pubDate>
		<dc:creator>ethan</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iShoot]]></category>
		<category><![CDATA[press]]></category>

		<guid isPermaLink="false">http://www.naughtybits.com/?p=53</guid>
		<description><![CDATA[Ethan Nicholas and iShoot have enjoyed some great media exposure recently, with the article The iPhone Gold Rush giving a great overview of iShoot&#8217;s development.  Ethan was also interviewed by Fox Business News following President Obama&#8217;s speech on Tuesday, April 14th.
iShoot has also been named by Apple as one of the Top 20 Paid Apps [...]]]></description>
			<content:encoded><![CDATA[<p>Ethan Nicholas and iShoot have enjoyed some great media exposure recently, with the article <a href="http://www.nytimes.com/2009/04/05/fashion/05iphone.html">The iPhone Gold Rush</a> giving a great overview of iShoot&#8217;s development.  Ethan was also interviewed by Fox Business News following President Obama&#8217;s speech on Tuesday, April 14th.</p>
<p>iShoot has also been named by Apple as one of the <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewCustomPage?name=page1BillionApps">Top 20 Paid Apps of All Time!</a>  Don&#8217;t let it&#8217;s position at #19 fool you &#8212; the list is sorted by number of copies, not by revenue, and at three times the price of most apps on the list (iShoot was $2.99 for most of its life) it would rank much higher if the list were sorted by revenue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.naughtybits.com/archives/ethan-nicholas-featured-in-new-york-times-and-fox-business-news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iShoot</title>
		<link>http://www.naughtybits.com/archives/ishoot/</link>
		<comments>http://www.naughtybits.com/archives/ishoot/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 02:11:51 +0000</pubDate>
		<dc:creator>ethan</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iShoot]]></category>

		<guid isPermaLink="false">http://www.naughtybits.com/?p=91</guid>
		<description><![CDATA[
iShoot is an artillery combat game in which tanks blast each other with a wide range of high-powered weapons, from basic shells and cluster bombs to the world-destroying Shiva Bomb.
The full version of iShoot includes 25 weapons, photorealistic landscapes, drivable tanks, and more money with which to buy weapons.  Buy iShoot at the App [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;margin-right:6px"><a href="http://click.linksynergy.com/fs-bin/stat?id=Kf3hmUD1/VM&amp;offerid=146261&amp;type=3&amp;subid=0&amp;tmpid=1826&amp;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252FWebObjects%252FMZStore.woa%252Fwa%252FviewSoftware%253Fid%253D293798654%2526mt%253D8%2526partnerId%253D30"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot1.png" alt="" width="240" height="160" /></a></div>
<p>iShoot is an artillery combat game in which tanks blast each other with a wide range of high-powered weapons, from basic shells and cluster bombs to the world-destroying Shiva Bomb.</p>
<p>The full version of iShoot includes 25 weapons, photorealistic landscapes, drivable tanks, and more money with which to buy weapons.  <a href="http://click.linksynergy.com/fs-bin/stat?id=Kf3hmUD1/VM&amp;offerid=146261&amp;type=3&amp;subid=0&amp;tmpid=1826&amp;RD_PARM1=http%253A%252F%252Fitunes.apple.com%252FWebObjects%252FMZStore.woa%252Fwa%252FviewSoftware%253Fid%253D293798654%2526mt%253D8%2526partnerId%253D30">Buy iShoot</a> at the App Store today!</p>
<p>In addition to the infinite-ammo Mini Mortar, the full version of iShoot features the following weapons:</p>
<table cellpadding="2">
<tbody>
<tr>
<td>Sixgun</td>
<td>Mortar</td>
<td>Mega Mortar</td>
<td>Dirt Ball</td>
</tr>
<tr>
<td>Excavator</td>
<td>Roller</td>
<td>Stinger Missiles</td>
<td>Shotgun</td>
</tr>
<tr>
<td>Mini Cluster Bomb</td>
<td>Claymore</td>
<td>Giant Excavator</td>
<td>Portable Mountain</td>
</tr>
<tr>
<td>Cluster Bomb</td>
<td>Hellfire Missiles</td>
<td>Great Wall</td>
<td>Meltdown</td>
</tr>
<tr>
<td>Tactical Nuke</td>
<td>Mega Roller</td>
<td>U238 Penetrator</td>
<td>Nuke</td>
</tr>
<tr>
<td>Vulcan Cannon</td>
<td>Doombringer</td>
<td>Grand Slam</td>
<td>Planet Buster</td>
</tr>
<tr>
<td>Shiva Bomb</td>
</tr>
</tbody>
</table>
<h3>Video</h3>
<p><a href="http://www.youtube.com/watch?v=_DRPDWdEK9I&amp;feature=player_embedded">The iShoot Rule Editor</a></p>
<p><a href="http://www.youtube.com/watch?v=XYALFh4UCbc&amp;feature=player_embedded">A short game of iShoot</a></p>
<h3>Screens</h3>
<p><a class="thumb" title="iShoot" rel="lightbox" href="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot1.png" rel="lightbox[91]"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot1.png" alt="iShoot Screen #1" width="90" height="60" /></a> <a class="thumb" title="iShoot" rel="lightbox" href="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot2.png" rel="lightbox[91]"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot2.png" alt="iShoot Screen #2" width="90" height="60" /></a> <a class="thumb" title="iShoot" rel="lightbox" href="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot3.png" rel="lightbox[91]"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot3.png" alt="iShoot Screen #3" width="90" height="60" /></a> <a class="thumb" title="iShoot" rel="lightbox" href="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot4.png" rel="lightbox[91]"><img src="http://www.naughtybits.com/wp-content/uploads/2009/12/iShoot4.png" alt="iShoot Screen #4" width="60" height="90" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.naughtybits.com/archives/ishoot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
