<?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>Programming My Life &#187; games</title>
	<atom:link href="http://programmingmylife.com/blog/index.php/tag/games/feed/" rel="self" type="application/rss+xml" />
	<link>http://programmingmylife.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 23 Jun 2011 22:17:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Google Pac Man</title>
		<link>http://programmingmylife.com/blog/index.php/2010/05/22/google-pac-man/</link>
		<comments>http://programmingmylife.com/blog/index.php/2010/05/22/google-pac-man/#comments</comments>
		<pubDate>Sat, 22 May 2010 20:47:24 +0000</pubDate>
		<dc:creator>acmshar</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[pacman]]></category>
		<category><![CDATA[stack overflow]]></category>

		<guid isPermaLink="false">http://programmingmylife.com/blog/?p=150</guid>
		<description><![CDATA[As many of you probably already know, yesterday Google changed their logo to a playable Pac Man game in honor of the 30th anniversary of the game.  A few members of StackOverflow put together the code and assets to allow others (like me) to host it on their own site or even locally. Here is [...]]]></description>
			<content:encoded><![CDATA[<p>As many of you probably already know, yesterday Google changed their logo to a playable Pac Man game in honor of the 30th anniversary of the game.  A few members of <a href="http://www.stackoverflow.com" target="_blank">StackOverflow</a> put together the code and assets to allow others (like me) to host it on their own site or even locally. Here is the game:</p>
<p><a href="http://programmingmylife.com/blog/GooglePacman/" target="_blank">Google Pacman</a></p>
<p>And here are the assets if you want to host it locally:</p>
<p><a href="http://github.com/macek/google_pacman" target="_blank">Google Pacman at GitHub</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingmylife.com/blog/index.php/2010/05/22/google-pac-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unity</title>
		<link>http://programmingmylife.com/blog/index.php/2010/05/17/unity/</link>
		<comments>http://programmingmylife.com/blog/index.php/2010/05/17/unity/#comments</comments>
		<pubDate>Mon, 17 May 2010 20:16:47 +0000</pubDate>
		<dc:creator>acmshar</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[space shooter]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://programmingmylife.com/blog/?p=131</guid>
		<description><![CDATA[Currently, my job is to create a game to teach astronomy to middle school students. Luckily for me, there is an abundance of options for game engines to help me ranging from the simple and free (Scratch and Alice) to the expensive and complex (Unreal, etc). For our project we wanted an engine deep enough [...]]]></description>
			<content:encoded><![CDATA[<p>Currently, my job is to create a game to teach astronomy to middle school students.  Luckily for me, there is an abundance of options for game engines to help me ranging from the simple and free (Scratch and Alice) to the expensive and complex (Unreal, etc).  For our project we wanted an engine deep enough to cover multiple game types in one game that was reasonably priced.  After debating over the 2D vs. 3D issue, I decided 3D might be too complex for the style of game we wanted to create.  However, after prototyping a few game ideas in several different engines, we settled on Unity for its flexibility and affordability (free for the indie version $1200 for the pro version).  Even though it is primarily a 3D engine, 2D games can be made without much trouble.</p>
<p>In order to get familiar with the Unity engine, I followed two tutorials I found in the <a href="http://forum.unity3d.com/" target="_blank">Unity forums</a>.  <a href="http://forum.unity3d.com/viewtopic.php?t=28433&amp;postdays=0&amp;postorder=asc&amp;start=0" target="_blank">The first was a basic shmup.</a></p>
<p>The <a href="http://forum.unity3d.com/viewtopic.php?t=39327&amp;postdays=0&amp;postorder=asc&amp;start=0" target="_blank">second tutorial</a> was a redux (in C#)  of the first plus an extension that included models for the ship and asteroid.  While I followed along with this tutorial, I decided to keep everything in JavaScript.  This helped me to clarify some of the elements of the Unity engine independent of language.</p>
<p>After completing the tutorials, I decided to extend the game a bit to include bombs, more asteroids and large asteroids.  As of this writing, I haven&#8217;t made final decisions for how to complete the game (whether it will be a score the player must or a set time limit), but the current version can be found here:</p>
<p><a href="http://programmingmylife.com/spaceShooter/spaceShooter.html" target="_blank">http://programmingmylife.com/spaceShooter/spaceShooter.html</a></p>
<p>Unity makes the process of uploading any game you build in the engine to a website incredibly easy.  When making a build of a game you simply have to use the following settings:</p>
<p>File &gt;  Build settings &gt; web player      (make sure to include all scenes)</p>
<p>When you build the game it will create a *.unity and a *.html file (the * represents the name of the game that you set).  Assuming your web host knows what to do with the .unity file, you can simply upload the two files and the game will run at that web location.  If, like me, your web host doesn&#8217;t support the .unity file format likely this will cause your browser to fail to download the content.  I received an error on Chrome stating &#8216;Failed to download data file&#8217; with details &#8216;Download failed, try again&#8217;, but on Firefox, the download status simply stayed at zero. To fix this,  you will simply need to include in the directory with the .unity and .html file the following in a file called web.config:</p>
<pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt;

</code><code>&lt;configuration&gt;
    &lt;system.webServer&gt;

        &lt;staticContent&gt;
            &lt;mimeMap fileExtension=".unity3d" mimeType="application/vnd.unity" /&gt;

     &lt;/staticContent&gt;
    &lt;/system.webServer&gt;

&lt;/configuration&gt;
</code></pre>
<p>I was able to find these instructions from <a href="http://answers.unity3d.com/questions/7063/godaddy-windows-hosting-unity-webplayer" target="_blank">this query</a> at <a href="http://answers.unity3d.com/" target="_blank">Unity Answers</a>.  Unity Answers is a great service that runs in addition to the <a href="http://forum.unity3d.com/" target="_blank">Unity forums</a>.  These two complementary services along with the users give Unity a strong community that should allow users from novice to advanced to find answers to any problems they might have.</p>
]]></content:encoded>
			<wfw:commentRss>http://programmingmylife.com/blog/index.php/2010/05/17/unity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It Just Works: Steam and Blizzard</title>
		<link>http://programmingmylife.com/blog/index.php/2009/12/23/it-just-works-steam-and-blizzard/</link>
		<comments>http://programmingmylife.com/blog/index.php/2009/12/23/it-just-works-steam-and-blizzard/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 18:48:01 +0000</pubDate>
		<dc:creator>acmshar</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[It just works]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Blizzard]]></category>
		<category><![CDATA[Diablo]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Starcraft]]></category>
		<category><![CDATA[Steam]]></category>
		<category><![CDATA[Torchlight]]></category>

		<guid isPermaLink="false">http://programmingmylife.com/blog/?p=49</guid>
		<description><![CDATA[I recently purchased a well reviewed laptop (ASUS UL80Vt-A1) as well as Torchlight on Steam.  This was the perfect opportunity to see how Steam works on multiple machines.  I downloaded the Steam client to my laptop, entered my password, and all of the games I had purchased both online (Torchlight and Bioshock) and at retail [...]]]></description>
			<content:encoded><![CDATA[<p>I recently purchased a <a href="http://www.anandtech.com/mobile/showdoc.aspx?i=3689&amp;p=1" target="_blank">well reviewed</a> <a href="http://www.amazon.com/gp/product/B002Q8HK7K?ie=UTF8&#038;tag=promylif-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B002Q8HK7K">laptop (ASUS UL80Vt-A1)</a><img src="http://www.assoc-amazon.com/e/ir?t=promylif-20&#038;l=as2&#038;o=1&#038;a=B002Q8HK7K" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> as well as <a href="http://programmingmylife.com/blog/index.php/2009/12/17/torchlight-when-fewer-features-means-better-gaming/" target="_blank">Torchlight</a> on Steam.  This was the perfect opportunity to see how Steam works on multiple machines.  I downloaded the <a href="http://store.steampowered.com/about/" target="_blank">Steam client</a> to my laptop, entered my password, and all of the games I had purchased both online (Torchlight and Bioshock) and at retail but had authenticated through Steam (The Orange Box) were available immediately.  I simply downloaded and installed Torchlight and Bioshock and was able to play them immediately.  <a href="http://programmingmylife.com/blog/index.php/category/it-just-works/" target="_blank">It just works.</a> The download speed was impressive reaching 2Mb/s.</p>
<p>Steam recently announced that its <a href="http://store.steampowered.com/news/3272/" target="_blank">Steam Cloud feature was integrated into Torchlight</a>.  This feature makes gaming on multiple machines much less work.  Previously, I would have had to set up a way to share my game save files and copied them to the appropriate folder each time I moved from one machine to another.  Now, I am able to just load up the game on either machine at any time and find my avatar exactly where I left him on the other machine just seconds before.  Outstanding.</p>
<p>The only thing that doesn&#8217;t &#8216;just work&#8217; with Steam is being signed in on two machines at once. Upon signing into my Steam account on my laptop, I was kicked off on my PC.  I am told that I can avoid this by playing in offline mode on my secondary machine, but I see this as a bug, not a feature.  I can understand not being allowed to play games on multiple machines at once due to piracy issues, but signing me out just for logging onto another machine is bad design.  This is a minor annoyance, though.</p>
<p><a href="http://us.blizzard.com/en-us/" target="_blank">Blizzard</a> also has a client for registering retail games.  While creating an account for the Starcraft 2 beta, I decided to register my <a href="http://www.amazon.com/gp/product/B00001IVRD?ie=UTF8&#038;tag=promylif-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B00001IVRD">StarCraft</a><img src="http://www.assoc-amazon.com/e/ir?t=promylif-20&#038;l=as2&#038;o=1&#038;a=B00001IVRD" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> and <a href="http://www.amazon.com/gp/product/B0002BQN7Q?ie=UTF8&#038;tag=promylif-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B0002BQN7Q">Diablo Battlechests</a><img src="http://www.assoc-amazon.com/e/ir?t=promylif-20&#038;l=as2&#038;o=1&#038;a=B0002BQN7Q" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />.  I didn&#8217;t have any use for the service when I signed up, but having my disks who-knows-where right now, I found the perfect opportunity to test their service as well.  The &#8216;my games&#8217; section of the account is a bit buried, so finding it took a few minutes, but upon finding it, I was able to download the games patched to the most recent version in about 20 minutes each.  The system also keeps the CD keys saved so that during the install, I don&#8217;t have to search for the boxes.   Considering I would have had to patch up the disk versions, this may have actually been faster than installing from the disk.</p>
<p>Although both systems presented minor annoyances, they represent what is so enticing about the digital age:  I have purchased these games, whether at retail or digitally and am able to access them quickly at any time even if I don&#8217;t have the disk at hand.<code></code><code></code></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingmylife.com/blog/index.php/2009/12/23/it-just-works-steam-and-blizzard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Torchlight: When Fewer Features Means Better Gaming</title>
		<link>http://programmingmylife.com/blog/index.php/2009/12/17/torchlight-when-fewer-features-means-better-gaming/</link>
		<comments>http://programmingmylife.com/blog/index.php/2009/12/17/torchlight-when-fewer-features-means-better-gaming/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 22:24:11 +0000</pubDate>
		<dc:creator>acmshar</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Torchlight]]></category>

		<guid isPermaLink="false">http://programmingmylife.com/blog/?p=44</guid>
		<description><![CDATA[Torchlight is a recent PC game available digitally for &#60;$20 by Runic Games.   The developers decided to match the low price with a relatively sparse feature set.  Most games based around classes have more options for types of classes (or at least more subsets for those types) and many more spells/skills to learn.  While it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.torchlightgame.com/" target="_blank">Torchlight</a> is a recent PC game available digitally for &lt;$20 by Runic Games.   The developers decided to match the low price with a relatively sparse feature set.  Most games based around classes have more options for types of classes (or at least more subsets for those types) and many more spells/skills to learn.  While it may sound like you are getting what you pay for, it is precisely the limited number of classes and skills that seems to make this game so well balanced.</p>
<p>As <a href="http://www.codinghorror.com/blog/archives/000980.html" target="_blank">Jeff Atwood pointed out</a> two years before the release of Torchlight (and in regard to non-gaming software), software should not be measured as a bundle of features.   While Dragon Age (another game based around character classes) easily has a greater number of features, it does not make it a better game, per se.  It would be unfair to compare the two games as they were developed by two teams of differing sizes and are built to entertain is different ways.   However, the smaller feature set allowed the smaller development team to create an incredibly well balanced loot driven game in Torchlight.</p>
<p>While adding more classes and skills would allow more flexibility, and possibly more replayability, who wants to replay an unbalanced loot game?  In addition to providing a reasonably scoped feature set to provide a more focused experience, the developers of Torchlight followed another great traditional software (and gaming) convention:  Let the users determine what is broken.  While Torchlight was initially a solid experience, a few of the mechanics were ripe for breaking the game.  Specifically, enchanting weapons and heirlooming gems multiple times made some items game breaking.</p>
<p>Instead of holding the game for months to find these subtle problems, Runic released a game that was fully functional with a few exploits (that they likely were unaware of).  When users found these exploits, Runic was quick to patch a solution.  <a href="http://www.codinghorror.com/blog/archives/001313.html" target="_blank">Version 1 may have &#8216;sucked&#8217;,</a> but they shipped it anyway.  When problems were found, they responded.</p>
<p>While Torchlight may not be the <a href="http://en.wikipedia.org/wiki/Modern_Warfare_2" target="_blank">biggest selling</a>, or most epic game of this holiday season, it succeeds in being great software with great support.</p>
]]></content:encoded>
			<wfw:commentRss>http://programmingmylife.com/blog/index.php/2009/12/17/torchlight-when-fewer-features-means-better-gaming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retro Tech</title>
		<link>http://programmingmylife.com/blog/index.php/2009/10/29/retro-tech/</link>
		<comments>http://programmingmylife.com/blog/index.php/2009/10/29/retro-tech/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 20:44:45 +0000</pubDate>
		<dc:creator>acmshar</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Laptops]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://programmingmylife.com/blog/?p=27</guid>
		<description><![CDATA[Moore&#8217;s Law states that the number of transistors on a chip doubles every 24 months.  Clearly, with ever increasing transistor counts the consumer can expect increasing performance.  The performance increases seen up until the early 2000&#8242;s allowed software (from games to, more recently, web applications) to increase in complexity as well to take advantage of [...]]]></description>
			<content:encoded><![CDATA[<p>Moore&#8217;s Law states that the number of transistors on a chip doubles every 24 months.  Clearly, with ever increasing transistor counts the consumer can expect increasing performance.  The performance increases seen up until the early 2000&#8242;s allowed software (from games to, more recently, web applications) to increase in complexity as well to take advantage of the boosted performance of new hardware.  But in the last few years, most software has reached a point where the increases in hardware performance just don&#8217;t affect their day-to-day use.  This has given rise to a new category of laptops, dubbed netbooks, which forgo the ultimate in performance for cheap, low power parts.</p>
<p>Netbooks were originally created for the One Laptop Per Child (<a href="http://laptop.org/en/" target="_blank">OLPC)</a> project, which allowed less fortunate children around the world to gain access to laptops for simple tasks, such as word processing and accessing the internet.  Around the time the first netbooks were coming to market, manufacturers and consumers alike seemed to reach an epiphany that &#8216;hey, there is a significant portion of the laptop market (read: me, in the consumer&#8217;s case) that only needs to be able to access the internet and do some word processing.&#8217;  Thus, instead of one market for laptops, we now have market segments for gaming laptops and power users, as well as netbooks and lower end laptops that are either much cheaper or much smaller than their desktop replacement counterparts.</p>
<p>A similar trend has been seen in gaming in recent years.  With the previous generation of consoles, most games were delivered in the form of disks.  Nearly every game was made to take advantage of as much of the processing power as was possible on a given console, take up all of the space available on the disk it was delivered on, and arrive at market for full price.  However, with the proliferation of  smart phones and digital systems for delivering games, companies small and large have begun reverting back to retro style games that focus more on intuitive, fun gameplay mechanics rather than the most in depth physics or graphics simulations.  Now, in addition to the blockbuster games, we see segments for all types of smaller games across the range of platforms.</p>
<p>In both instances, consumers have increased options because someone decided to move laterally rather than forward.  Perhaps this is just forward in a different direction.</p>
]]></content:encoded>
			<wfw:commentRss>http://programmingmylife.com/blog/index.php/2009/10/29/retro-tech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive Storytelling</title>
		<link>http://programmingmylife.com/blog/index.php/2009/10/21/interactive-storytelling/</link>
		<comments>http://programmingmylife.com/blog/index.php/2009/10/21/interactive-storytelling/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 01:58:40 +0000</pubDate>
		<dc:creator>acmshar</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://programmingmylife.com/blog/?p=18</guid>
		<description><![CDATA[I recently finished Batman: Arkham Asylum on PC and enjoyed it.   The gameplay was fun and the mix of puzzles, combat, and stealth made the game rarely feel repetitious.  What really makes Arkham Asylum interesting, though, is the storytelling.   There are many games known for their story (for better or for worse) that tell the [...]]]></description>
			<content:encoded><![CDATA[<p>I recently finished Batman: Arkham Asylum on PC and enjoyed it.   The gameplay was fun and the mix of puzzles, combat, and stealth made the game rarely feel repetitious.  What really makes Arkham Asylum interesting, though, is the storytelling.   There are many games known for their story (for better or for worse) that tell the large majority of the story, especially the major plot points, in the form of lengthy cutscenes.   I have enjoyed a number of stories told this way but, it is not the best use of the medium of video games for storytelling.  Arkham Asylum forgoes the lengthy cutscenes and tells the story through sections of gameplay and short cutscenes that mostly flow with the action.  This made me  feel as though I was a part of the story rather than driving through a game to unlock the story.</p>
<p>NB:  There will be spoilers in the following sections for the story of the game.</p>
<p>Instead of beginning with a cutscene, you begin in control of Batman walking Joker (surrounded by guards) into Arkham.  While you can&#8217;t do much at this point other than walk, it sets the tone for feeling as though you are part of the action rather than just watching it.  There are several other story moments where simply walking around tells the story better than a cutscene.  For example, rain begins falling in the halls of Arkham Mansion.  As Batman advances down the corridor, the mansion walls are replaced by one of the most famous scenes from Batman.   After walking through the scene, Batman opens a door to reveal that the hallucination was caused by Scarecrow.</p>
<p>It would have been simple to make a cutscene showing Batman under Scarecrow&#8217;s &#8216;spell&#8217; similar to what was done in the movie Batman Begins, but changing the scenery while the player is still in control makes it significantly more visceral; it is as though the player is being influenced by Scarecrow as well.  This occurs on more than one occasion and each time is done in such a way to make the player experience it rather than just watch it.</p>
<p>Interactions with The Joker, the game&#8217;s primary villain, are also handled primarily while the player is in control; he toys with Batman during the game on the TVs scattered throughout the Asylum.  The backstory for many of the villains is handled in a similar way.  Instead of TVs in the game telling the stories, the player collects disks containing audio recordings of therapy sessions with the inmates/villains, which can be listened to as the player explores Arkham.</p>
<p>Although it deepens the experience, the implementation of the audio tapes breaks up the flow of the game occasionally.  By default, the recordings start up when the player picks up a disk, which sends the player out of the gameplay and into a menu.  The extra information in the menus is interesting, but the experience would be smoother if the audio started up still allowing the player to be in control.  This option is clearly available as there is an option to exit the menu and continue playing while the audio finishes up.</p>
<p>Batman: Arkham Asylum has its share of problems and poor design decisions; it&#8217;s not perfect.  However, the developers surprised me with their effective use of the medium of video games to tell an interactive story.  This certainly isn&#8217;t the first game to adopt this style, but I was surprised to see it so well implemented in a game that could have easily sold well (thanks to a powerful license in Batman) with much less care taken in the design.  Hopefully, more developers come up with ways to let players experience stories rather than watch them.</p>
]]></content:encoded>
			<wfw:commentRss>http://programmingmylife.com/blog/index.php/2009/10/21/interactive-storytelling/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

