<?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/"
	>

<channel>
	<title>Ian Guthridge.com</title>
	<atom:link href="http://ianguthridge.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://ianguthridge.com</link>
	<description>Me, myself, and caffeine</description>
	<pubDate>Mon, 16 May 2011 05:05:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Still Alive!</title>
		<link>http://ianguthridge.com/?p=1266</link>
		<comments>http://ianguthridge.com/?p=1266#comments</comments>
		<pubDate>Mon, 16 May 2011 05:03:16 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Life]]></category>

		<category><![CDATA[apology]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1266</guid>
		<description><![CDATA[So this last semester was hectic! Trying to graduate, you know? Well it looks like I succeeded!
This means that I&#8217;ll be moving out to San Francisco, California at the end of June and starting work as a Software Engineer at Zynga at the start of July!  In the meantime I am going to try to work [...]]]></description>
			<content:encoded><![CDATA[<p>So this last semester was hectic! Trying to graduate, you know? Well it looks like I succeeded!</p>
<p><div id="attachment_1278" class="wp-caption alignnone" style="width: 310px"><a href="http://ianguthridge.com/wp-content/uploads/2011/05/verification.png" rel="lightbox[1266]"><img class="size-medium wp-image-1278 " title="Verification!" src="http://ianguthridge.com/wp-content/uploads/2011/05/verification-300x205.png" alt="Redacted the mailing address and some info you don't need. :P" width="300" height="205" /></a><p class="wp-caption-text">Redacted the mailing address and some info you don&#39;t need. :P</p></div></p>
<p>This means that I&#8217;ll be moving out to San Francisco, California at the end of June and starting work as a Software Engineer at <a href="http://www.zynga.com/">Zynga</a> at the start of July!  In the meantime I am going to try to work through my backlog of projects, so you should be seeing more in this space soon.</p>
<p>For now I&#8217;ll share a quick video of an AI project I worked on this past semester:</p>
<p><object width="480" height="390"><param name="movie" value="http://www.youtube.com/v/iqHqdhxJGXM?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/iqHqdhxJGXM?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" width="480" height="390" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>It was definitely a fun little challenge to make an AI that can play Mario! Hopefully I can find some to tinker with this sort of thing some more. </p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1266</wfw:commentRss>
		</item>
		<item>
		<title>Runtime Compression Round 1</title>
		<link>http://ianguthridge.com/?p=1170</link>
		<comments>http://ianguthridge.com/?p=1170#comments</comments>
		<pubDate>Fri, 24 Dec 2010 07:21:17 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Code Sample]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Sticky Situation]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[compression]]></category>

		<category><![CDATA[DXT]]></category>

		<category><![CDATA[FailEngine]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[resource]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1170</guid>
		<description><![CDATA[Ok, &#8220;A Sticky Situation&#8221; was written fast; the bulk of the coding was completed in 10 weeks. So logically its code base has a &#8220;few&#8221; flaws. The one that brought me here to write this post is located in its runtime texture generation: all the textures created where uncompressed.  
Uncompressed textures aren&#8217;t necessarily a [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, &#8220;A Sticky Situation&#8221; was written fast; the bulk of the coding was completed in 10 weeks. So logically its code base has a &#8220;few&#8221; flaws. The one that brought me here to write this post is located in its runtime texture generation: all the textures created where uncompressed.  </p>
<p>Uncompressed textures aren&#8217;t necessarily a bad thing, but ASS was pushing a fair number of large unique textures to the screen, eating up all the texture fetch bandwith on older and/or laptop cards.  Many of these textures were generated at runtime (most commonly a texture was blurred).  So I decided to look into compressing the textures.  </p>
<p>Since the whole point is that I am trying to get back some texture fetch bandwith, I need to use a compression technique that is understood by the GPU.  This leaves me with one choice: <a href="http://en.wikipedia.org/wiki/S3_Texture_Compression">DXT</a>.  Specifically <a href="http://en.wikipedia.org/wiki/S3_Texture_Compression#DXT4_and_DXT5">DXT5</a>.</p>
<p>Ok I&#8217;m going to give you a quick explanation of  DXT right quick.  It is a type of lossy compression that nearly all GPUs &#8220;in the wild&#8221; can decode.  It works by:</p>
<ul>
<li>taking a 4&#215;4 block of pixels</li>
<li>then it uses some fancy math (like <a href="http://en.wikipedia.org/wiki/Principal_component_analysis">Principal Component Analysis</a>) to find the 2 most important colors in the block.</li>
<li>It stores these colors as 16- bit values (5,6,5)</li>
<li>Then for each of the 16 pixels in the block it stores a 2-bit value that describes how far it is from each of the colors.</li>
</ul>
<p>Now DXT compression comes in quite a few different flavors DXT1 and DXT5 are the most commonly used (as far as I can tell).  The only real difference between the two is in how they encode alpha.  DXT1 only supports &#8220;cutout&#8221; alpha (basically a 1 bit alpha, either it is opaque or it is transparent) while DXT5 supports  a gradient alpha.  I am not going to get into exactly how each encodes alpha for length reasons, but let me know if you would like to know more.</p>
<p><span id="more-1170"></span></p>
<p>So after much searching I found <a href="http://cache-www.intel.com/cd/00/00/32/43/324337_324337.pdf">a nice little paper</a> about a Real-Time DXT compression.  It had code samples, and I couldn&#8217;t find anyone who had implemented the DXT5 compression in C#, so I decided to go ahead and port it!</p>
<p><a href="http://ianguthridge.com/wp-content/uploads/2010/12/functionaldxt5.png" rel="lightbox[1170]"><img class="alignright size-medium wp-image-1179" title="functionaldxt5" src="http://ianguthridge.com/wp-content/uploads/2010/12/functionaldxt5-300x175.png" alt="functionaldxt5" width="300" height="175" /></a></p>
<p>Porting it took a while, and I had some issues&#8230; mostly with making it multi-threaded&#8230; It works now, and it looks pretty good! If a texture is too blurry (like the back grounds), then there will be a very distinct loss in quality but that is just a limitation of DXT.  The compressed foreground objects look rather decent though (such as the platform the gum is standing on). </p>
<p>Now I hate it when people talk about a cool thing they ported and then refuse to share the code.  So here it is, enjoy!  (Just a heads up, it needs XNA 4.0 to work).  </p>
<p><iframe src="http://pastebin.com/embed_iframe.php?i=TgtyLZkC" style="height:450px;border:none;width:100%"></iframe></p>
<p>Hope this is helpful! Let me know if you have any problems/suggestions/questions/etc. </p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1170</wfw:commentRss>
		</item>
		<item>
		<title>Hey Look a Game</title>
		<link>http://ianguthridge.com/?p=1166</link>
		<comments>http://ianguthridge.com/?p=1166#comments</comments>
		<pubDate>Tue, 02 Nov 2010 07:41:33 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Sticky Situation]]></category>

		<category><![CDATA[FailEngine]]></category>

		<category><![CDATA[games]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1166</guid>
		<description><![CDATA[Tada! Here is the end result of the insane number of hours I have been working:

]]></description>
			<content:encoded><![CDATA[<p>Tada! Here is the end result of the insane number of hours I have been working:</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/5_3Gmnn2DNg?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5_3Gmnn2DNg?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1166</wfw:commentRss>
		</item>
		<item>
		<title>Celebrate Good Times</title>
		<link>http://ianguthridge.com/?p=1065</link>
		<comments>http://ianguthridge.com/?p=1065#comments</comments>
		<pubDate>Sat, 09 Oct 2010 22:16:18 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Sticky Situation]]></category>

		<category><![CDATA[cool thing]]></category>

		<category><![CDATA[FailEngine]]></category>

		<category><![CDATA[games]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[video game]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1065</guid>
		<description><![CDATA[In honor of my gum simulation code breaking the 1500 line mark (and the project breaking the 30,000 line mark), I thought I should share some cool engine test videos I made.  
Before you watch them though, I should probably explain a few basics of how the game works.  You play a piece [...]]]></description>
			<content:encoded><![CDATA[<p>In honor of my gum simulation code breaking the 1500 line mark (and the project breaking the 30,000 line mark), I thought I should share some cool engine test videos I made.  </p>
<p>Before you watch them though, I should probably explain a few basics of how the game works.  You play a piece of gum that can stick to nearly any surface, harden into a gumball, and blow up into a bubble.  In the default sticky mode it can squeeze through any gap and climb around on walls and ceilings.  The hardened gumball moves quickly, can bounce, and can crash through obstacles. Lastly, the bubble can, well, float like a bubble! </p>
<p><object width="560" height="340" data="http://www.youtube.com/v/YYoHA4IMpK0?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YYoHA4IMpK0?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>It doesn&#8217;t look like much because textures, backgrounds, foregrounds, and sound effects weren&#8217;t in yet&#8230;  The red boxes are essentially trampolines or springs and the grey boxes are non-stick.  This demo basically just shows off a couple of the basic ways to get around.   </p>
<p>In sticky mode, the gum is rendered using a 2D version of &#8220;meta-balls.&#8221;  It is essentially a collection of Gaussian textures drawn to a render target then passed through an alpha-test, yielding an &#8220;iso-surface.&#8221;  Creates a nice little skin to the skeleton of 74 springs that make up the gum (no more detail than that&#8230; trade secret :P).  AND I can render each meta-balls in virtually any [24-bit RGB] color; I use this to give the gum a neat little color swirl. </p>
<p>In the next few examples the sticky gum gets a black outline.  The rendering pipeline I designed had space for an additional shader pass for the iso-surfaces, so I wrote a little shader that does a bit of edge detection using a <a href="http://en.wikipedia.org/wiki/Sobel_operator">Sobel Operator</a>.  No real reason I chose that one, I liked the final look a bit better than say, a Laplacian.   </p>
<p><object width="560" height="340" data="http://www.youtube.com/v/pRUinCaSf7c?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/pRUinCaSf7c?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>Collisions from textures!  Since it is supported by Farseer and I had already made it so that the gum could adhere to any arbitrary geometry, there wasn&#8217;t a lot of code needed on my end&#8230; for once.</p>
<p><object width="560" height="340" data="http://www.youtube.com/v/1COl7s3bNIM?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/1COl7s3bNIM?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>Gum needs to be able to blow up into a bubble right?  This was actually a bit of a pain&#8230; I was going to just use a circular collision, like with the gumball, but I wanted it to inflate.  Switching over to SAT instead of Distance Grid for the narrow phase <a href="http://www.farseergames.com/storage/farseerphysics/Manual2.1.htm#_Toc213068504">(details here)</a> increased the time the physics step took by about 80-90%.  Sure Distance Grid used more memory, but it was only about 5%, so I&#8217;m not worried.  ANYHOW!  I could have cached a few collisions and just stepped to the proper collision boundary based on how inflated the gum was.  This just didn&#8217;t seem elegant to me; it really seemed like a major cop-out.  So instead I used a similar system to the sticky gum, but instead of using Farseer&#8217;s linear springs, I wrote up a much more rigid system.  I wanted the bubble to maintain its &#8220;roundness.&#8221;  Couple that with the iso-surface rendering code and toss a bit of jitter on the edge points and we have a bubble that looks like it is actually being blown by a fan! Yay procedural animation!</p>
<p>That&#8217;s all for now!  Check back in the future for more updates about how things are going! Back to work&#8230; So much time and so little to do!</p>
<p>&#8230;</p>
<p>Scratch that; Reverse it.  </p>
<p>-Ian</p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1065</wfw:commentRss>
		</item>
		<item>
		<title>361 Days Remaining&#8230;</title>
		<link>http://ianguthridge.com/?p=1032</link>
		<comments>http://ianguthridge.com/?p=1032#comments</comments>
		<pubDate>Tue, 07 Sep 2010 02:54:19 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Image Dump]]></category>

		<category><![CDATA[Dragon*Con]]></category>

		<category><![CDATA[nerd]]></category>

		<category><![CDATA[robot]]></category>

		<category><![CDATA[sci-fi]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1032</guid>
		<description><![CDATA[&#8230;until I can hang out with R2D2 again.  

Hopefully I&#8217;ll be at Dragon*Con again next year.  Maybe I&#8217;ll even make a good costume! 
]]></description>
			<content:encoded><![CDATA[<p>&#8230;until I can hang out with R2D2 again. <img src='http://ianguthridge.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><a href="http://ianguthridge.com/wp-content/uploads/2010/09/dcon.jpg" rel="lightbox[1032]"><img src="http://ianguthridge.com/wp-content/uploads/2010/09/dcon.jpg" alt="dcon" title="dcon" width="453" height="604" class="alignnone size-full wp-image-1033" /></a></p>
<p>Hopefully I&#8217;ll be at Dragon*Con again next year.  Maybe I&#8217;ll even make a good costume! </p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1032</wfw:commentRss>
		</item>
		<item>
		<title>Back to Updates</title>
		<link>http://ianguthridge.com/?p=1027</link>
		<comments>http://ianguthridge.com/?p=1027#comments</comments>
		<pubDate>Wed, 01 Sep 2010 23:47:54 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Rants]]></category>

		<category><![CDATA[Sticky Situation]]></category>

		<category><![CDATA[FailEngine]]></category>

		<category><![CDATA[games]]></category>

		<category><![CDATA[video game]]></category>

		<category><![CDATA[YJLTC]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1027</guid>
		<description><![CDATA[Well!  Back to school means back to work!  I have about 10 weeks left to finish the biggest project of all time!!!
&#8230;
Ok, so it isn&#8217;t quite that big&#8230; It is big enough though.  Unfortunately I can&#8217;t really share a video of the game itself, so instead I&#8217;ll share an older engine test [...]]]></description>
			<content:encoded><![CDATA[<p>Well!  Back to school means back to work!  I have about 10 weeks left to finish the biggest project of all time!!!</p>
<p>&#8230;</p>
<p>Ok, so it isn&#8217;t quite that big&#8230; It is big enough though.  Unfortunately I can&#8217;t really share a video of the game itself, so instead I&#8217;ll share an older engine test video with you guys:</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/xXotBn0qxCQ?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/xXotBn0qxCQ?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>In case you can&#8217;t tell, the pink box is a button.  It is pretty much triggered whenever it overlaps with a non-static object.  Pretty cool, huh?  </p>
<p>Hopefully I can show you guys something more relevant in the next update. Back to work!<br />
-Ian</p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1027</wfw:commentRss>
		</item>
		<item>
		<title>Summer is Drawing to a Close</title>
		<link>http://ianguthridge.com/?p=1021</link>
		<comments>http://ianguthridge.com/?p=1021#comments</comments>
		<pubDate>Wed, 04 Aug 2010 17:07:50 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[comedy]]></category>

		<category><![CDATA[EA Sports]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1021</guid>
		<description><![CDATA[Sorry for the lack of updates this summer!  My internship at EA Sports has taken up more time than I was expecting, so I didn&#8217;t really have anything new done to show you guys.  I could keep trying to explain what it is like here, but this video probably explains it better:

Well that&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the lack of updates this summer!  My internship at EA Sports has taken up more time than I was expecting, so I didn&#8217;t really have anything new done to show you guys.  I could keep trying to explain what it is like here, but this video probably explains it better:</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/rAI9EYc-Spo&amp;hl=en_US&amp;fs=1?rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rAI9EYc-Spo&amp;hl=en_US&amp;fs=1?rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>Well that&#8217;s all for now! </p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1021</wfw:commentRss>
		</item>
		<item>
		<title>It Works!</title>
		<link>http://ianguthridge.com/?p=1013</link>
		<comments>http://ianguthridge.com/?p=1013#comments</comments>
		<pubDate>Wed, 02 Jun 2010 05:21:08 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Sticky Situation]]></category>

		<category><![CDATA[FailEngine]]></category>

		<category><![CDATA[games]]></category>

		<category><![CDATA[video game]]></category>

		<category><![CDATA[YJLTG]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1013</guid>
		<description><![CDATA[
Well partially&#8230; Moving platforms are at about 75% (There is still too much jitter vertically.) and I need to get the rendering pipeline finished up, and the tie everything together into a nice little package. Then it is on to the level editor!  I&#8217;ll need to make a second pass through and add proper [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ianguthridge.com/wp-content/uploads/2010/06/stickysituation-2010-06-02-01-08-58-33.png" rel="lightbox[1013]"><img class="alignright size-medium wp-image-1012" title="FailEngine " src="http://ianguthridge.com/wp-content/uploads/2010/06/stickysituation-2010-06-02-01-08-58-33-300x168.png" alt="FailEngine " width="300" height="168" /></a></p>
<p>Well partially&#8230; Moving platforms are at about 75% (There is still too much jitter vertically.) and I need to get the rendering pipeline finished up, and the tie everything together into a nice little package. Then it is on to the level editor!  I&#8217;ll need to make a second pass through and add proper sound support, networking, and a few other things&#8230; but my main goal right now is to get things to the point where my buddies can start making levels asap. </p>
<p>Look for another big update <del datetime="2010-06-13T16:30:24+00:00">this weekend</del> soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1013</wfw:commentRss>
		</item>
		<item>
		<title>So It Begins</title>
		<link>http://ianguthridge.com/?p=1001</link>
		<comments>http://ianguthridge.com/?p=1001#comments</comments>
		<pubDate>Tue, 11 May 2010 06:17:42 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Sticky Situation]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[games]]></category>

		<category><![CDATA[new project]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[video game]]></category>

		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=1001</guid>
		<description><![CDATA[Now that school is out, it is GO TIME! Time to hit the gas hard and build a game engine for my next big project. I&#8217;ve finished a pretty decent prototype of the basics of the game (movement, procedural character animation, and platforms). Take a look at the following video to see it in action.

The [...]]]></description>
			<content:encoded><![CDATA[<p>Now that school is out, it is GO TIME! Time to hit the gas hard and build a game engine for my next big project. I&#8217;ve finished a pretty decent prototype of the basics of the game (movement, procedural character animation, and platforms). Take a look at the following video to see it in action.</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/f-RcEmoo5yU&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/f-RcEmoo5yU&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>The idea is that the player controls a piece of gum that sticks to [nearly] any surface.  Being a piece of gum, you can&#8217;t jump but you can detach from surfaces, putting a new spin on the platformer.  A few more gameplay elements are in the works, but I don&#8217;t want to give too much away right now.  I&#8217;m currently working on some of the more traditional components, such as parallaxing backgrounds. Look for another update in the next few weeks. </p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=1001</wfw:commentRss>
		</item>
		<item>
		<title>Playing around with Flash</title>
		<link>http://ianguthridge.com/?p=992</link>
		<comments>http://ianguthridge.com/?p=992#comments</comments>
		<pubDate>Sun, 28 Mar 2010 22:42:51 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[experimental]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[pointless]]></category>

		<guid isPermaLink="false">http://ianguthridge.com/?p=992</guid>
		<description><![CDATA[I have always been interested in the creative process. What really intrigues me isn&#8217;t the end products: movies, art video games, etc. Don&#8217;t get me wrong I am greatly intrigued by what goes into a finished idea., but the transient creations, the forgotten sparks of originality are what really intrigues me.  
I think of [...]]]></description>
			<content:encoded><![CDATA[<p>I have always been interested in the creative process. What really intrigues me isn&#8217;t the end products: movies, art video games, etc. Don&#8217;t get me wrong I am greatly intrigued by what goes into a finished idea., but the transient creations, the forgotten sparks of originality are what really intrigues me.  </p>
<p>I think of this as the personal creative process.  It gets the creative juices flowing, as they say.  It doesn&#8217;t produce anything in itself, it may not even be a creative idea on its own, but it sews the seeds for a creative idea later on down the road, even if one can&#8217;t remember the act.</p>
<p>I have pages and pages of little ideas I want to explore to see if I can create tools, toys or gadgets that help foster the personal creative process. Let me know what you think of my little toys, the first is below:</p>
<p>Click in the white box below, and then press (nearly) any key on your keyboard to create a little patten. It is a work in progress, but it is finished enough to show. Hope you enjoy it.</p>
<p><object width="500" height="400" data="wp-content/uploads/2010/03/visibinary.swf" type="application/x-shockwave-flash"><param name="src" value="wp-content/uploads/2010/03/visibinary.swf" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ianguthridge.com/?feed=rss2&amp;p=992</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.312 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2019-06-17 19:44:26 -->
