<?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>luminance</title>
	<atom:link href="http://www.luminance.org/feed" rel="self" type="application/rss+xml" />
	<link>http://www.luminance.org</link>
	<description>Programming and Game Development - Kevin Gadd's Personal Blog</description>
	<lastBuildDate>Thu, 29 Apr 2010 17:20:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Compiler-assisted Data Binding with LINQ</title>
		<link>http://www.luminance.org/code/2010/04/27/compiler-assisted-data-binding-with-linq</link>
		<comments>http://www.luminance.org/code/2010/04/27/compiler-assisted-data-binding-with-linq#comments</comments>
		<pubDate>Wed, 28 Apr 2010 07:33:05 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=866</guid>
		<description><![CDATA[When trying to write reliable, maintainable software, it&#8217;s important to try and minimize duplication. When you find yourself writing the same magic number in multiple places, you move it into a named constant to eliminate the duplication. When you find yourself writing the same expression multiple times, you move it into a named function, or [...]]]></description>
			<content:encoded><![CDATA[<p>When trying to write reliable, maintainable software, it&#8217;s important to try and minimize duplication. When you find yourself writing the same magic number in multiple places, you move it into a named constant to eliminate the duplication. When you find yourself writing the same expression multiple times, you move it into a named function, or perhaps a property. Sometimes, you find yourself dealing with higher level duplication &#8211; entire concepts and patterns that you find yourself writing again and again. Many modern languages provide tools to help you eliminate this kind of duplication: class inheritance allows you to share common logic between classes by inheriting that logic from a parent class, and generic types allow you to apply a generic pattern to multiple individual types. Both of these tools work with the aid of the compiler, so they interact well with debugging tools and allow you to catch most errors at compile time. Sometimes, though, you run into duplication that can&#8217;t easily be eliminated, even with the aid of the compiler.</p>
<p>In many graphical applications, a common pattern is the need to remember user preferences or inputs. Modern languages provide useful tools that can make this task simpler &#8211; for example, both Java and C# provide ways to automatically serialize an entire data structure into XML, which eliminates the need to manually read/write your preference values. Unfortunately, even with the aid of these features, you still find yourself with a lot of duplication &#8211; even if the runtime can automatically serialize your data structure, you still have to fill the structure out with your preferences, or read them back in manually. I&#8217;m going to demonstrate how you can use a little-known aspect of the new LINQ feature in C# 3.5 to eliminate duplication with the aid of the compiler.</p>
<p><a rel="attachment wp-att-869" href="http://www.luminance.org/wp-content/uploads/2010/04/PreferencesExample1.png"><img class="aligncenter size-full wp-image-869" title="Preferences Example Screenshot" src="http://www.luminance.org/wp-content/uploads/2010/04/PreferencesExample1.png" alt="" width="329" height="274" /></a></p>
<p>As an example, we&#8217;ll be using the simple application shown above. It&#8217;s a Windows Forms dialog box, with a few different controls, set up to remember user inputs between sessions. You can download the source code for this application below:</p>
<p><a href="http://luminance.org/articles/PreferencesExample1.zip">Preferences Example (v1)</a></p>
<p>If you run the application, input some values, and click OK, you&#8217;ll find that it stores your inputs in a JSON file in the %AppData%\PreferencesExample folder. If you run it again, you&#8217;ll see that it pulls your inputs back out of the JSON file to populate the UI.</p>
<p><span id="more-866"></span></p>
<p>Let&#8217;s take a look at the relevant parts of the source code:</p>
<pre>public void LoadPreferences () {
  if (!File.Exists(GetPrefsPath()))
    return;

  var serializer = new JavaScriptSerializer();
  var preferences = serializer.Deserialize&lt;Dictionary&lt;string, object&gt;&gt;(File.ReadAllText(GetPrefsPath()));

  checkBox1.Checked = (bool)preferences["checkBox1"];
  radioButton1.Checked = (bool)preferences["radioButton1"];
  radioButton2.Checked = (bool)preferences["radioButton2"];

  listBox1.SelectedIndices.Clear();
  var indices = preferences["listBox1"] as ArrayList;
  foreach (var index in indices)
    listBox1.SelectedIndices.Add((int)index);

  textBox1.Text = (string)preferences["textBox1"];
  dateTimePicker1.Value = (DateTime)preferences["dateTimePicker1"];
}

public void SavePreferences () {
  var preferences = new Dictionary&lt;string, object&gt;();

  preferences["checkBox1"] = checkBox1.Checked;
  preferences["radioButton1"] = radioButton1.Checked;
  preferences["radioButton2"] = radioButton2.Checked;
  preferences["listBox1"] = listBox1.SelectedIndices.Cast&lt;int&gt;().ToArray();
  preferences["textBox1"] = textBox1.Text;
  preferences["dateTimePicker1"] = dateTimePicker1.Value;

  if (!Directory.Exists(Path.GetDirectoryName(GetPrefsPath())))
    Directory.CreateDirectory(Path.GetDirectoryName(GetPrefsPath()));

  var serializer = new JavaScriptSerializer();
  File.WriteAllText(GetPrefsPath(), serializer.Serialize(preferences));
}
</pre>
<p>This application is relatively small &#8211; in particular, the JavaScriptSerializer handles a lot of the work involved in storing preferences for us. But regardless, we find ourselves having to list out all the control names multiple times, and some of those references to the controls are strings. Since they&#8217;re strings, that means that automatic refactoring tools, like the Rename tool in Visual Studio, won&#8217;t find them. As a result, this sort of code becomes difficult to maintain, especially in a larger codebase &#8211; changes are extremely error-prone and require careful, manual work.</p>
<p>What we want is a way to eliminate this duplication &#8211; a way to pull the list of controls and values out and store them in one place, so that we don&#8217;t have to specify them multiple times. Unfortunately, there&#8217;s no obvious way to do this in either Java or C#. While you can add the controls to a list quite easily, and walk over the list to get control names &#8211; eliminating part of the duplication &#8211; there&#8217;s no clean way to specify the particular fields/properties you wish to store.</p>
<p>Those of you familiar with reflection techniques may realize that you can eliminate the duplication by using reflection. By specifying a control and the name of the field we care about, we can use reflection to find that field and fetch its value. This technique will work, and other than the performance overhead of reflection, it will work well enough to ship in an application. However, it still suffers from the downside of breaking automated refactoring tools, and it&#8217;s somewhat error-prone due to the complexity involved in finding fields/properties via reflection.</p>
<p>One of the new features in C# 3.5 is support for &#8216;<a href="http://msdn.microsoft.com/en-us/library/bb397951.aspx" target="_blank">Expression Trees</a>&#8216;. Expression trees allow you to convert a C# expression into a tree of objects that describe the expression and allow you to evaluate it. This feature is used to support LINQ &#8211; for example, when you write &#8216;where i &lt; 5&#8242; in a LINQ query, the &#8216;i &lt; 5&#8242; portion of the query is turned into an expression tree, that LINQ can then use to run the query &#8211; for example, by turning it into SQL. As it happens, we can use this feature to solve our problem!</p>
<p>In C# 3.5, virtually any expression we can write can be converted into a delegate using lambda syntax, like so:</p>
<pre>Func&lt;int, int&gt; func = (x) =&gt; x * 5;</pre>
<p>And, as part of the Expression Tree feature, we can convert that lambda into an expression tree, at compile time:</p>
<pre>Expression&lt;Func&lt;int, int&gt;&gt; expr = (x) =&gt; x * 5;</pre>
<p>The compiler provides us all the information we need to evaluate an expression within the expression tree &#8211; if the expression references a field, the expression tree will contain the object containing the field, along with the FieldInfo object representing the field. Using this knowledge, we can eliminate the duplication from our sample application: By using a single expression to represent each preference we want to store, we can list all of our preferences in a single place in our application, and use that list of expressions to both load and save preference values. Best of all, because the compiler gives us full information on the expressions, we know the exact data types involved, and we can find out the name of the field being stored, and even the name of the object containing the field &#8211; eliminating the need to name each preference manually.</p>
<p>Using this knowledge, we can write a simple helper class that represents a field or property reference, and construct instances of that class by passing it an expression. You can find the source code to the class here:<br />
<a href="http://code.google.com/p/fracture/source/browse/trunk/Squared/Util/Bind.cs">http://code.google.com/p/fracture/source/browse/trunk/Squared/Util/Bind.cs</a><br />
And we&#8217;ll be using it to eliminate the duplication from our sample application. The code is relatively small &#8211; a couple hundred lines &#8211; so by reading it you can easily see how to apply this technique for your own purposes, even if you don&#8217;t end up using my code.</p>
<p>The first step is to use expressions to build a list of all the values we want to store. We&#8217;ll do this by creating an array of bound members in the dialog box&#8217;s constructor:</p>
<pre>IBoundMember[] BoundMembers;

public MainDialog () {
  InitializeComponent();

  BoundMembers = new IBoundMember[] {
    BoundMember.New(() =&gt; checkBox1.Checked),
    BoundMember.New(() =&gt; radioButton1.Checked),
    BoundMember.New(() =&gt; radioButton2.Checked),
    BoundMember.New(() =&gt; listBox1.SelectedIndices),
    BoundMember.New(() =&gt; textBox1.Text),
    BoundMember.New(() =&gt; dateTimePicker1.Value)
  };
}
</pre>
<p>Note that all we have to do is create an expression that evaluates to the value we wish to store. The C# compiler will convert it into an expression tree that tells us which object contains the value, and the FieldInfo or PropertyInfo we can use to fetch the value.</p>
<p>To eliminate the need to specify the name of each preference, we can combine the name of the field/property along with the name of the control containing the field/property, like so:</p>
<pre>string GetMemberName (IBoundMember member) {
  return String.Format("{0}.{1}", ((Control)member.Target).Name, member.Name);
}
</pre>
<p>If we specify the Checked property of a RadioButton named radioButton2, this function will evaluate to &#8216;radioButton2.Checked&#8217;.</p>
<p>With these two pieces of functionality, we can now eliminate all the duplication from the old LoadPreferences and SavePreferences functions:</p>
<pre>public void LoadPreferences () {
  if (!File.Exists(GetPrefsPath()))
    return;

  var serializer = new JavaScriptSerializer();
  var preferences = serializer.Deserialize&lt;Dictionary&lt;string, object&gt;&gt;(File.ReadAllText(GetPrefsPath()));

  foreach (var bm in BoundMembers)
    bm.Value = preferences[GetMemberName(bm)];
}

public void SavePreferences () {
  var preferences = new Dictionary&lt;string, object&gt;();

  foreach (var bm in BoundMembers)
    preferences[GetMemberName(bm)] = bm.Value;

  if (!Directory.Exists(Path.GetDirectoryName(GetPrefsPath())))
    Directory.CreateDirectory(Path.GetDirectoryName(GetPrefsPath()));

  var serializer = new JavaScriptSerializer();
  File.WriteAllText(GetPrefsPath(), serializer.Serialize(preferences));
}</pre>
<p>Another thing you&#8217;ll notice is that the type casting from the original version is gone &#8211; since we have type information, we can automatically cast preference values to the appropriate type &#8211; and if we were using a strongly typed datastore, instead of JSON, we could actually store preferences directly in their correct type, without having to do any boxing or type casting.</p>
<p>If you download the source code for the revised example:<br />
<a href="http://luminance.org/articles/PreferencesExample2.zip">Preferences Example (v2)</a><br />
You can run it and see that while it works the first time, and correctly saves preferences to JSON, it fails when loading preferences back from JSON. This turns out to be because of the JSON serializer: While listBox1.SelectedIndices is of type SelectedIndexCollection, the list we get back from the JSON serializer is of type ArrayList. The two types aren&#8217;t convertible, so the application fails.</p>
<p>Luckily, we can easily solve this problem. Since this technique works for any field or property, we can simply define a property that handles type conversion so that we don&#8217;t get an error when trying to load the preference value from JSON, like this:</p>
<pre>// This has to be ArrayList since that's what we get back from the JSON serializer
ArrayList ListBox1_SelectedIndices {
  get {
    var result = new ArrayList();
    foreach (var index in listBox1.SelectedIndices)
      result.Add(index);
    return result;
  }
  set {
    listBox1.SelectedIndices.Clear();
    foreach (var index in value)
      listBox1.SelectedIndices.Add((int)index);
  }
}</pre>
<p>If we change the list in the dialog box constructor to reference this new property instead of referencing the listbox directly, we can run the application and it will now successfully load and save preferences.<br />
<a href="http://luminance.org/articles/PreferencesExample3.zip">Preferences Example (v3)</a></p>
<p>With this technique, you can easily handle automatically loading and saving values from almost any datastore &#8211; and do so efficiently, without any unnecessary duplication, thanks to the information we&#8217;re given by the compiler. As an example, here&#8217;s a simple implementation of an object that loads and saves preferences from a database using this technique:<br />
<a href="http://code.google.com/p/fracture/source/browse/trunk/Squared/TaskLib/Data/PropertySerializer.cs">http://code.google.com/p/fracture/source/browse/trunk/Squared/TaskLib/Data/PropertySerializer.cs</a></p>
<p>I hope this post has shown you something useful! In the future I&#8217;ll be showing some other interesting applications of this technique.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/code/2010/04/27/compiler-assisted-data-binding-with-linq/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A managed WebKit library: BerkeliumSharp</title>
		<link>http://www.luminance.org/code/2010/02/21/a-managed-webkit-library-berkeliumsharp</link>
		<comments>http://www.luminance.org/code/2010/02/21/a-managed-webkit-library-berkeliumsharp#comments</comments>
		<pubDate>Mon, 22 Feb 2010 03:54:46 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[berkelium]]></category>
		<category><![CDATA[berkeliumsharp]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[webkit]]></category>
		<category><![CDATA[windows forms]]></category>
		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=852</guid>
		<description><![CDATA[I spent the past day or so hacking together a managed wrapper for Sirikata&#8217;s Berkelium library. Berkelium allows you to easily embed a WebKit-based browser into games and other applications. It&#8217;s based on Chrome and it&#8217;s really easy to get up and running in a C++ application. Unfortunately, if you&#8217;re using C# or VB.net, you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>I spent the past day or so hacking together a managed wrapper for <a href="http://www.sirikata.com/blog/?p=115">Sirikata&#8217;s Berkelium library</a>. Berkelium allows you to easily embed a WebKit-based browser into games and other applications. It&#8217;s based on Chrome and it&#8217;s really easy to get up and running in a C++ application. Unfortunately, if you&#8217;re using C# or VB.net, you&#8217;re out of luck &#8211; no way to link directly against a C++ .lib file in those languages. The addition of my managed wrapper &#8211; <a href="http://code.google.com/p/berkelium-sharp/">BerkeliumSharp</a> &#8211; means that you can use the library in managed applications, and integrate it with Windows Forms, XNA, or even WPF.</p>
<p><a href="http://www.luminance.org/wp-content/uploads/2010/02/berkeliumtests.png" rel="attachment wp-att-853"><img src="http://www.luminance.org/wp-content/uploads/2010/02/berkeliumtests.png" alt="" title="berkelium test screenshots" width="633" height="494" class="aligncenter size-full wp-image-853" /></a></p>
<p>I&#8217;ve released the source under the BSD license (just like Berkelium) and included two simple examples (one for Windows Forms, one for XNA). It&#8217;s not a Chrome competitor but it&#8217;s surprisingly easy to get a lot of complicated things working &#8211; you can watch Hulu videos if you have Flash installed, and Flash games like Dino Run work in the Windows Forms example since it implements keyboard input.</p>
<p>You can <a href="http://berkelium-sharp.googlecode.com/files/BerkeliumSharpDemos.zip">download pre-built demos</a> to test it out, or <a href="http://code.google.com/p/berkelium-sharp/source/checkout">grab the source code</a> over at Google Code.</p>
<p>Have fun!</p>
<p><del datetime="2010-02-23T12:41:56+00:00">P.S. If you try out the examples, be aware that content that opens pop-up windows doesn&#8217;t seem to work. I think this is a bug in Berkelium.</del><br />
<b>Edit:</b> Figured out how to build Chromium and Berkelium myself and fixed the bug. Open source is awesome!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/code/2010/02/21/a-managed-webkit-library-berkeliumsharp/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Spite: An entry for Gamma 4</title>
		<link>http://www.luminance.org/games/2010/02/17/spite-an-entry-for-gamma-4</link>
		<comments>http://www.luminance.org/games/2010/02/17/spite-an-entry-for-gamma-4#comments</comments>
		<pubDate>Thu, 18 Feb 2010 04:41:07 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gamma4]]></category>
		<category><![CDATA[gdc]]></category>
		<category><![CDATA[kokoromi]]></category>
		<category><![CDATA[Spite]]></category>
		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=842</guid>
		<description><![CDATA[John and I spent a few weekends putting together a little game experiment for Kokoromi&#8217;s Gamma 4 competition. We didn&#8217;t get selected, which I think means we can look forward to some outstanding winners, based on some of the other entries I&#8217;ve seen. My favorite aspect of the competition is how severe the limitations were [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/BryneShrimp">John</a> and I spent a few weekends putting together a little game experiment for <a href="http://www.kokoromi.org/gamma4/">Kokoromi&#8217;s Gamma 4 competition</a>. We didn&#8217;t get selected, which I think means we can look forward to some outstanding winners, based on <a href="http://infiniteammo.ca/blog/have-some-c4ke/">some of the other entries</a> I&#8217;ve seen. My favorite aspect of the competition is how severe the limitations were &#8211; it really forced me to get out of my comfort zone and experiment with storytelling and gameplay mechanisms I&#8217;d never put much thought to before. In the end I think we were both surprised by how much we managed to get done in such a short time span, and by how well the final product actually expressed the little bit of story and gameplay we put into it. It&#8217;s 5 minutes long and only uses a single button, so I encourage anyone to check it out. If you&#8217;re a fan of games like Zelda I think you will find it strangely familiar. <img src='http://www.luminance.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://dl.dropbox.com/u/1643240/SpiteScreenshot.jpg" alt="Spite Screenshot" /></p>
<p><a href="http://dl.dropbox.com/u/1643240/SpiteGamma4.zip"><b>Spite</b> is a one-button game for the Kokoromi Gamma 4 competition built with C# and XNA.</a> You&#8217;ll need Windows XP or better and a Direct3D 9 capable video card to play it. Also, a finger to press your spacebar. XBox 360 controllers are supported. Also, there&#8217;s no audio &#8211; sorry, contest limitation. <img src='http://www.luminance.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://dl.dropbox.com/u/1643240/SpiteGamma4.zip">Download</a><br />
<a href="http://forums.tigsource.com/index.php?topic=10833.0">Discuss on TIGSource</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/games/2010/02/17/spite-an-entry-for-gamma-4/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Level Up 2009</title>
		<link>http://www.luminance.org/games/2009/09/17/level-up-2009</link>
		<comments>http://www.luminance.org/games/2009/09/17/level-up-2009#comments</comments>
		<pubDate>Thu, 17 Sep 2009 08:08:50 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[austin]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[gdc]]></category>
		<category><![CDATA[Inferus]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[platformer]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=837</guid>
		<description><![CDATA[I&#8217;ve been spending the past few days down in Austin, TX at the Austin Game Developers Conference, and having a pretty good time. For anyone who&#8217;s ever been on the fence about going to GDC (either in San Francisco, or in Austin) I wholeheartedly recommend going if you can find a way &#8211; it&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been spending the past few days down in Austin, TX at the <a href="http://www.gdcaustin.com/">Austin Game Developers Conference</a>, and having a pretty good time. For anyone who&#8217;s ever been on the fence about going to GDC (either in San Francisco, or in Austin) I wholeheartedly recommend going if you can find a way &#8211; it&#8217;s a bit expensive, but an amazing experience.</p>
<p>On a related note, I can now announce that <a href="http://luminance.org/inferusgame"><b>Inferus</b></a> was selected as a winner of <a href="http://software.intel.com/en-us/contests/levelup2009/contests.php">Intel&#8217;s <b>Level Up 2009</b> game competition</a>. I&#8217;m quite pleased with how it turned out and very grateful to Intel for running the contest. You can <a href="http://software.intel.com/en-us/articles/level-up-2009-winners-announced/">check out the list of winners here</a> &#8211; there are some pretty interesting games!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/games/2009/09/17/level-up-2009/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Achievements and player data II</title>
		<link>http://www.luminance.org/gruedorf/2009/09/03/achievements-and-player-data-ii</link>
		<comments>http://www.luminance.org/gruedorf/2009/09/03/achievements-and-player-data-ii#comments</comments>
		<pubDate>Thu, 03 Sep 2009 12:51:37 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Gruedorf]]></category>
		<category><![CDATA[achievements]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[heatmap]]></category>
		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=824</guid>
		<description><![CDATA[In my previous post I gave an introduction to achievements and player data collection. In this post, I&#8217;ll cover the remaining two significant pieces: Services and front-ends. Unfortunately neither of these will be quite as complete as the coverage in the previous post, since I haven&#8217;t completely finished implementing these parts of my achievement system. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.luminance.org/gruedorf/2009/08/28/achievements-and-player-data-i">In my previous post</a> I gave an introduction to achievements and player data collection. In this post, I&#8217;ll cover the remaining two significant pieces: Services and front-ends. Unfortunately neither of these will be quite as complete as the coverage in the previous post, since I haven&#8217;t completely finished implementing these parts of my achievement system. Whoops!</p>
<h2>Services</h2>
<p>Boy, that&#8217;s a generic heading. Anyway, so your game is collecting important data on gameplay events, and it&#8217;s reporting that data periodically to a web service on your server. Unfortunately, since you haven&#8217;t actually written that service yet, it doesn&#8217;t seem to be working. Odd how that goes, isn&#8217;t it?</p>
<p>The primary issue you have to deal with when building a service to recieve collected data from your game is storing the data. There are other incidental issues &#8211; security, performance, serialization, etc &#8211; but none of them are of any significance if you can&#8217;t find a way to reliably store and access the data. This isn&#8217;t a simple problem, but there are ways to handle it.</p>
<p>Essentially, the biggest issue you have to confront here is that you are going to have a lot of data. You may not have a lot of data now, but you will eventually. On one hand, you could spend weeks and weeks trying to design the perfect solution for storing all of this data &#8211; but doing that doesn&#8217;t actually get your game any closer to shipping, and doesn&#8217;t actually guarantee that you won&#8217;t have scalability issues down the road. On the other hand, if you completely ignore the problem, you risk losing some of the data you&#8217;ve already gathered by discovering significant design issues after you ship. In practice, you probably want to prioritize shipping over the longevity of your data, since (assuming you ship and your game isn&#8217;t terrible) you can always get more data.</p>
<p>As a starting point, I decided to build my services on Google App Engine, since it was relatively easy to get up and running and provides fairly generous quotas for free.</p>
<p><span id="more-824"></span></p>
<p>I built my services in Python, using the provided datastore and JSON modules to handle most of the work. For those unfamiliar with how App Engine works, essentially your process is this:</p>
<ul>
<li>Modify your app.yaml file to specify the URLs of your services and the python scripts that implement them.</li>
<li>Create one or more Python classes to be used for storing your data in the GAE datastore.</li>
<li>Implement your services by creating python WSGI modules to process incoming requests and store the resulting data in the datastore.</li>
</ul>
<p>For those more familiar with traditional databases, working with the App Engine datastore can be a challenge &#8211; its write performance borders on terrible, and the documentation is somewhat sparse. However, the actual API is very easy to use and since you&#8217;re using Python, most of the problems you&#8217;re dealing with are easy to solve. It helps that most of Django is included with the GAE APIs, since that means you have access to all sorts of useful tools like their HTML template module.</p>
<p>So, for the event format I showed in my previous post, the Python class looks like this:</p>
<pre>class Event(db.Expando):
  playerId = db.IntegerProperty()
  sessionId = db.IntegerProperty()
  timeMs = db.IntegerProperty(indexed=False)
  eventType = db.StringProperty()</pre>
<p>Fairly straightforward. Note that I&#8217;m deriving from <strong>Expando</strong> and not <strong>Model</strong> &#8211; to get an idea of what this means you&#8217;ll need to read the GAE documentation, but essentially this lets me add additional, unindexed fields to my instances as necessary. Since I only plan to do most queries based on event type and player ID, this is perfect.</p>
<p>Given that class definition, in my service, I can simply unpack the JSON I recieve from a game client and convert it into one or more Event instances, ready to send to the datastore:</p>
<pre>      playerId = int(body["PlayerId"])
      sessionId = int(body["SessionId"])
      events = body["Events"]

      put_list = []

      for event in events:
        eventData = event["Data"]
        extraArgs = {}

        while eventData:
          if isinstance(eventData, types.DictType):
            d = eventData
            eventData = None
            for k in d.iterkeys():
              value = d[k]
              if k == "Data":
                eventData = value
              elif isinstance(value, types.DictType):
                continue
              else:
                key = ("%s" % (k,)).encode("ascii")
                extraArgs[key] = value
          else:
            extraArgs["eventData"] = eventData
            eventData = None

        evt = Event(
          playerId=playerId,
          sessionId=sessionId,
          timeMs=event["Time"],
          eventType=event["Type"],
          **extraArgs
        )
        put_list.append(evt)

      db.put(put_list)</pre>
<p>The resulting data format doesn&#8217;t allow you to answer every question you could possibly have, but does leave you with a relatively easy to query volume of data in the google datastore. It&#8217;s also very simple, which makes it relatively straightforward to debug failures and make changes.</p>
<p>As mentioned before, the datastore&#8217;s write performance borders on terrible. If you attempt to perform a <strong>put</strong> on multiple objects in sequence, its write performance goes from bad to earth-shatteringly horrible. However, the datastore API allows you to hand it a list of objects, and it will attempt to put them all at once, which significantly improves your performance so that it&#8217;s at least tolerable. If I were using a relational database like MySQL this would be somewhat equivalent to trying to insert all my rows in a single multi-line query to reduce round-trip time.</p>
<p>Also of note are the somewhat ridiculous contortions I do here to convert event data into fields for the Event instance. Essentially, if the incoming event&#8217;s Data field is just one value, I shove it into a single field inside the Event &#8211; but if it&#8217;s a dictionary, I dig through it looking for values and store them into corresponding fields on the Event instance. This ensures that all the values attached to the event end up with corresponding columns in the datastore.</p>
<p>This also illustrates some slightly interesting design decisions: Events don&#8217;t have any global timestamp, nor do they have a sequence number &#8211; all they have is a player ID, session ID, and timestamp relative to the beginning of the session *in game time*. This is mostly a pragmatic decision; I could provide a global timestamp and get some benefits out of it, but the costs associated with that are quite significant, since accurate timestamps interact badly with batching and the general problem of internet latency.</p>
<p>One particularly nasty sticking point is that GAE has fairly rigid limits on how much CPU and &#8216;API CPU&#8217; time you can consume in a given request, or in a given minute, or in a given hour, or in a given day. These limits are <strong>extremely</strong> easy to hit if you are using the datastore in the manner I am &#8211; so it&#8217;s important to make sure that your game isn&#8217;t sending large batches, or your requests will time out and google will become very angry with you for wasting precious CPU milliseconds. In practice, I&#8217;ve found that batch sizes between 6 and 12 reduce network traffic without hitting the built-in GAE limits. Your mileage may vary based on the nature of your data.</p>
<p>It&#8217;s also worth pointing out that the HistoryBlock approach I described in the previous approach is a bit problematic here: You&#8217;re basically forced to store all those position values within a single event, because turning them into multiple events would absolutely destroy the datastore. Unfortunately, it appears that storing a long list of values within a single event <strong>also</strong> absolutely destroys the datastore. Oh well, what can you do? (Other than switch to another hosting provider)</p>
<p>Also note that this doesn&#8217;t account for security, which means you probably can&#8217;t deploy it in production, because people like breaking your services. Oh well!</p>
<p>Now that we&#8217;re all familiar with how frustrating web service development is, let&#8217;s venture into the comforting realm of data analysis:</p>
<h2>Presenting Your Data (Front-ends)</h2>
<p>Mmm, much better.</p>
<p>Now that you&#8217;ve got all this data sitting around in the GAE datastore, what are you going to do with it?</p>
<p>Among the many things you can do, here are a few good ideas:</p>
<ul>
<li>You can perform high level queries against your event data to generate general &#8216;gameplay statistics&#8217; for player profiles.</li>
<li>You can perform statistical analysis of your event data to detect patterns in usage and player behavior.</li>
<li>You can take the position values attached to your event data, and use it to generate heatmaps representing certain events or behaviors &#8211; player movement, player death, creature death, etc.</li>
</ul>
<p>Since I&#8217;m uneducated, I&#8217;m going to skip the statistical analysis and describe the other two.</p>
<p>Creating gameplay statistics from your data is actually relatively easy, as long as you&#8217;re not worried about performance (and right now, you probably shouldn&#8217;t be). Even if performance is an issue, you can often solve this easily by track counters and statistics in a summary table, either by maintaining a count in your service when storing events, or by writing a <a href="http://en.wikipedia.org/wiki/Cron">cron job</a> to periodically update your summaries from the most recently stored events. Doing this will allow you to maintain statistics without having to query your entire event history.</p>
<p>For example, given my event format, I can determine how many times a given player has killed the Drowned Queen by querying the datastore like so:</p>
<pre>player_events = db.Query(Event).filter(
  'playerId =', playerId
)
drowned_queen_kill_events = player_events.filter(
  'eventType =', 'PlayerKilledCreature'
).filter(
  'CreatureName =', 'DrownedQueen'
)
drowned_queen_kill_count = drowned_queen_kill_events.count()</pre>
<p>Essentially, what I&#8217;m doing here is taking my entire event data set, and iteratively filtering it down &#8211; first I start with the player ID, then I filter by the event type. Both of these columns are indexed, and each of these filters will eliminate a huge number of rows. After this I can filter by CreatureName; as long as I don&#8217;t have thousands of PlayerKilledCreature events this will be relatively cheap to do. After that it&#8217;s simple to ask the datastore how many events match my filter.</p>
<p>Given statistics like these, if you choose you can then come up with achievements and other information to display on a player&#8217;s profile page. Players tend to love these things, even though they&#8217;re not directly integral to a game experience. They give players a way to gauge their own skill at a game versus others, and also provide them with interesting &#8216;carrots&#8217; to run after, whether it&#8217;s finding all the secrets in a game or defeating a boss without taking any damage.</p>
<p>So! Now for <a href="http://en.wikipedia.org/wiki/Heat_map">heat maps</a>. If you&#8217;re not familiar with them, you might want to glance at the linked Wikipedia page, but they&#8217;re fairly easy to understand, at least conceptually. You essentially take a large volume of data (in our case, events) and use it to generate a bitmap that you can overlay on an image of a space that you care about. To give a real-world example, if you had a list of recent car accidents, you could generate a heat map from that list and overlay it on a map of your neighborhood, and possibly see clusters around particularly dangerous intersections. You can&#8217;t always rely on a heat map for drawing conclusions, but they make it much easier to spot patterns and trends because our brains are great at analyzing data when it&#8217;s presented in this format.</p>
<p>In my case, I want to take all that HistoryBlock data and convert it into a heat map, so I can figure out where players are spending most of their time. To do this, first I needed to get images of all my levels &#8211; this took some work, since I hadn&#8217;t previously done any offline rendering of my game content. In some cases you can do this sort of thing offline during your build process, but in my case since my renderer relies on Direct3D and XNA, I simply start up an instance of the game engine in a &#8216;batch processing mode&#8217;, and it scans through a level, using the 3D card to generate screen-size &#8217;tiles&#8217; of the level, one at a time, and save them out to disk. After that I scan through the tiles and scale them down to create a &#8216;minimap&#8217; that represents the level at a given magnification.</p>
<p>Once I&#8217;ve got images for each of the levels, I can begin to generate a heat map for them. First, I query a service that pulls down all of the HistoryBlock events from the server and returns them as JSON. This sort of thing is likely to have scalability issues, so in practice you might want to only pull down a subset of your events &#8211; the most recent ones, or a random sampling &#8211; and use them instead. Right now my dataset is small enough that this isn&#8217;t a problem.</p>
<p>Once I&#8217;ve got the list of positions, I can scan over them and create the heat map. Essentially, what you want to do is create a 2D bitmap that is roughly the same size as your minimap, or some even multiple of it. Then, you can through all your positions and map them to points within that bitmap. Every time you successfully map a position to a point, you increment the value at that point, so that the most frequently reported locations have higher values.</p>
<p>Once you&#8217;ve done that, you can compute a minimum, maximum, etc. for the heat map, and use that to translate those &#8216;heat&#8217; values into colors at each point. Then, all you have to do layer the resulting color bitmap onto your mini map, and you have a heat map. Here&#8217;s a few ones I just generated, based on the events I&#8217;ve been recording while testing out my services and achievement system. You may need to click on them to view them at full size:</p>
<p style="text-align: center;"><a href="http://www.luminance.org/wp-content/uploads/2009/09/troupe.png"><img class="aligncenter size-full wp-image-831" title="troupe" src="http://www.luminance.org/wp-content/uploads/2009/09/troupe.png" alt="troupe" width="778" height="185" /></a></p>
<p style="text-align: center;">This heat map was generated from a dozen or so play-throughs of the first level in the Level Up 2009 demo.</p>
<p style="text-align: left;">There are a few interesting conclusions you can draw from this heatmap &#8211; for example, you can easily spot the locations of switches/cranks, because those points are orange or red (from the player tending to stand in front of them to manipulate the object). Because of the short number of playthroughs, you can actually see faint traces of me dying by falling into the water.</p>
<p style="text-align: left;">The data also gives you a general idea of typical paths through the level, and shows you where players spend more time &#8211; for example, the ledge on the right side of the water is much brighter, because the player tends to stand there for a while fighting the monsters that are spawned there.</p>
<p style="text-align: left;">This presents some good opportunities to improve the flow of the level, address difficult platforming challenges, or make it easier for the player to find objectives (keen-eyed observers will note that there&#8217;s a secret passage in this level that I did not enter in any of my playthroughs. (: )</p>
<p style="text-align: center;"><a href="http://www.luminance.org/wp-content/uploads/2009/09/drowned_queen_arena.png"><img class="aligncenter size-full wp-image-830" title="drowned_queen_arena" src="http://www.luminance.org/wp-content/uploads/2009/09/drowned_queen_arena.png" alt="drowned_queen_arena" width="332" height="332" /></a></p>
<p style="text-align: left;">This one was generated from the small arena in which the player fights the boss from the demo, the Drowned Queen.</p>
<p style="text-align: left;">Even a quick glance at this heat map reveals some interesting patterns, despite the fact that it is based on a small amount of data.</p>
<p style="text-align: left;">I rarely died from falling into the water below, which indicates that the water is not particularly effective as a hazard (or that I&#8217;m particularly adept at avoiding it).</p>
<p style="text-align: left;">The extremely bright clusters to the left side indicate that I rarely moved around the arena while fighting the Queen, tending to instead dart back and forth within the same area. This might indicate problems with the design of the level or the boss, since you would usually expect players to be running around in an arena like this while fighting a well-designed foe.</p>
<p style="text-align: left;">The big bright red point up in the top left is aligned perfectly with one of the arena&#8217;s grip plates. While you&#8217;re supposed to use the grip plates to avoid one of the Queen&#8217;s special attacks, the huge amount of time spent there suggests that the boss&#8217;s AI is leading me to remain on the plate for a long period of time, looking for a safe opportunity to drop down, instead of actively fighting her and having a good time.</p>
<p style="text-align: left;">Keen-eyed viewers who&#8217;ve played the demo will also note that there are yellowish regions at each of the locations where a dialogue sequence occurs. This indicates that I tend to stand still while progressing through the dialogue sequence, despite the fact that the player is allowed to move freely. Interesting!</p>
<p style="text-align: center;"><a href="http://www.luminance.org/wp-content/uploads/2009/09/aqueduct.png"><img class="aligncenter size-full wp-image-829" title="aqueduct" src="http://www.luminance.org/wp-content/uploads/2009/09/aqueduct.png" alt="aqueduct" width="695" height="302" /></a></p>
<p style="text-align: center;">This final one is generated from the second level in the demo, the aqueducts.</p>
<p style="text-align: left;">Rather embarassingly, this demonstrates the perils of trying to draw conclusions from player data: Almost all the points in this heatmap are barely visible.</p>
<p style="text-align: left;">Why? Well, most likely, I left the game running with the player standing in that position for a long time, which resulted in that point being far, far brighter than the rest of the level.</p>
<p style="text-align: left;">Of course, there are ways to address these sorts of problems with your data &#8211; but if you&#8217;re not careful, they may influence your conclusions without you even realizing it. In this case I would probably want to discard or ignore any points that have values vastly out of whack compared to the rest of the heat map, so that the heat map will demonstrate general trends instead of only showing outliers.</p>
<p style="text-align: left;">
<p style="text-align: left;">I hope these posts have given you an idea of how you can go about gathering player data in your games, and how you can put that data to work &#8211; both towards improving your game, and giving your players access to data they want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/gruedorf/2009/09/03/achievements-and-player-data-ii/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Achievements and player data I</title>
		<link>http://www.luminance.org/gruedorf/2009/08/28/achievements-and-player-data-i</link>
		<comments>http://www.luminance.org/gruedorf/2009/08/28/achievements-and-player-data-i#comments</comments>
		<pubDate>Fri, 28 Aug 2009 09:35:37 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Gruedorf]]></category>
		<category><![CDATA[achievements]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=814</guid>
		<description><![CDATA[One of the things I&#8217;ve been working on lately is a way to collect and store data on play sessions, so I can track achievements for players and track where players spend the most time in a level, or where they die the most. There are lots of details to get right for a system [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I&#8217;ve been working on lately is a way to collect and store data on play sessions, so I can track achievements for players and track where players spend the most time in a level, or where they die the most. There are lots of details to get right for a system like this, but I&#8217;ve at least gotten a prototype working and started experimenting with ways to visualize the data.</p>
<p>For a system like this you have a few important pieces:</p>
<ul>
<li>Your game needs to collect data during play sessions &#8211; in my case, I track important events like player/creature death, and periodically sample the player&#8217;s position to get a general idea of where players are in a given level during their session.</li>
<li>You need a way for your game to periodically report collected data to a remote server. You have to handle lots of edge cases here &#8211; for example, it&#8217;s likely some people will play without an active internet connection or suffer temporary loss of connection, so you need to batch up events to report later in this case &#8211; you definitely don&#8217;t want the game to fall over and choke without access to the internet, and if possible you want to avoid losing data too.</li>
<li>You need to build a set of services to collect data from the game. This typically means you also need services to handle things like uniquely identifying individual play sessions and computers, so that you can track achievements for individual players and perform analysis on individual sessions instead of only on a player&#8217;s entire play history.</li>
<li>You need to build an in-game frontend, to expose collected data to a player. This means turning your event data into user-friendly statistics &#8211; like a kill counter, or an achievement for killing a particular boss. One interesting challenge here is that you probably want to expose this information online, too, so that players can share their profiles and achievements.</li>
</ul>
<p>In this post, I&#8217;m going to cover the first two.</p>
<p><span id="more-814"></span></p>
<h2>Collecting Data</h2>
<p>So, first, you need a way to collect important player data. For it to be useful, you need to collect it in as consistent a format as possible; you don&#8217;t want every piece of data to have a unique set of parameters attached to it, for example, because that would make it impossible to perform any generic analysis of your data. Likewise, you want to try and keep your data &#8216;denormalized&#8217;, by storing as much relevant data together as possible. If you achieve both of these goals, you end up with a stream of &#8216;events&#8217; that represent the things you care about in a form that lets you inspect them individually or analyze them in large groups.</p>
<p>In my case, this step was actually quite straightforward. I already had a simple &#8216;event bus&#8217; integrated into the game, that I was previously using to synchronize animation and sound effects with gameplay. Given this, it was simple to create a data collector that attaches to the event bus and listens for events that it wants to collect.</p>
<p>I did, however, have to make some changes &#8211; many of my events didn&#8217;t expose the information necessary to be useful; for example, the event representing a player death didn&#8217;t contain any information to tell you who (or what) killed the player, so I had to tweak the game code to attach that to the event. Likewise, many other events didn&#8217;t include position information, which made it hard to get meaningful information about them &#8211; knowing that the player grabbed onto a ledge isn&#8217;t particularly useful if you don&#8217;t know *where* or *which ledge*. In some cases, the data collector attached important parameters into the events so that game objects wouldn&#8217;t have to; for example any event coming from the Player automatically has PlayerX and PlayerY parameters attached to it (since the Player is the source of the event, it is simple to extract a position and attach it to the event).</p>
<p>One thing that required some special treatment as well was recording the player&#8217;s position over time &#8211; while attaching position information to events gives you a general idea of the player&#8217;s location, it&#8217;s not very useful for figuring out where players are getting stuck or confused. To address this, I built a simple class that periodically samples the player&#8217;s position and adds it to a list. Every time the list reaches a certain size, its contents are batched up into a single event &#8211; a &#8216;HistoryBatch&#8217; &#8211; and sent to the data collector. This allows me to get fairly high-resolution position data without having to report hundreds of individual events every minute (which would have contained lots and lots of redundant information).</p>
<h2>Reporting Data</h2>
<p>Once you have your player data, you need to report it to your server (and probably store some of it locally, too). I honestly haven&#8217;t tackled the latter part yet, but here&#8217;s how I handled the former:</p>
<p>To handle periodically reporting events, I created a simple &#8216;Event Reporter&#8217; class that collaborates with the data collector. Essentially, the event reporter maintains a queue of pending events, and runs a thread that is responsible for sending batches of events to the remote server once the queue gets large enough. It automatically waits a certain amount of time between requests, and attempts to batch events into groups instead of reporting them one at a time as they occur. This allows me to get relatively low latency (if I want it) but still remain relatively efficient in my use of the network. Whenever the data collector gets an event, it adds it to the event reporter&#8217;s queue.</p>
<p>Once I have a batch of events ready to send to the server, I pack them together into a class that&#8217;s laid out optimally for network transmission. I then use .NET 3.5&#8217;s built in JSON serializer to convert the batch into a blob of JSON data ready to send to my remote server. A typical blob looks like this:</p>
<pre>{
  "PlayerId":xxxx,
  "SessionId":yyyy,
  "Events":[
    {"Type":"ActiveControllerChanged","Time":0,"Data":{
      "IsKeyboard":true,
      "ConnectedGamepads":0,
      "ActiveController":0
    }},
    {"Type":"LevelLoaded","Time":5436,"Data":"troupe"},
    {"Type":"HistoryBlock","Time":7788,"Data":{
      "LevelName":"troupe",
      "PlayerX":[-136,-74,35,192,209,209],
      "PlayerY":[588,875,920,920,920,920]
    }}
  ]
}</pre>
<p>As you can see, events are small when possible &#8211; they simply store the event type and the timestamp at which the event occurred, along with their associated information. In cases where an event has lots of information attached, I send a dictionary, but in some cases I can just send a single value. In the case of a history block, I make sure to send the X and Y coordinates as individual lists, so that I don&#8217;t have to waste time encoding &#8216;PlayerX&#8217; and &#8216;PlayerY&#8217; along with every individual coordinate. A batch of events has a player ID and a session ID attached, which allows me to analyze individual play sessions and track achievements. (Note that both of these IDs are randomly generated on the server, so they&#8217;re anonymous.)</p>
<p>The reporter starts an HTTP POST to send the JSON to the server, and goes to sleep until it&#8217;s finished. If the send fails, the events are left on the queue and the thread sleeps for a while so it can retry sending them later. Once a send completes, the reporter checks to see if the queue is empty &#8211; if the queue is now empty, it goes to sleep until the queue contains items again. If the queue still contains items, it sleeps for a short while and prepares to send another batch &#8211; this allows the event reporter to spend the majority of its time asleep, but still handle large bursts of events without sending a huge blob of events at the server in one POST (since that would be very likely to fail or time out.)</p>
<p>One important detail is that the reporter needs to be able to correctly report events even if the player quits. In my case, the player can quit at any time, and I can end up with a very large number of events in the queue at the time. To deal with this, once the game has finished tearing down, the event reporter is given around 30 seconds to report any remaining events to the server. This usually allows events to get through, but prevents the game from hanging indefinitely on exit (in the event that there&#8217;s some sort of network failure, or the event queue is <strong>really</strong> full). Since this occurs after teardown, the game window is gone so the player doesn&#8217;t get the impression that the game has hung, and since the reporter spends most of its time sleeping, they won&#8217;t see any significant CPU usage either.</p>
<p>The reporter also runs in its own isolated thread and uses its own task scheduler, instead of sharing resources with the game. This increases the likelihood that the game will be able to successfully report events in the case of a bug or crash, and also means that if the reporter fails for some reason &#8211; probably a network outage &#8211; it won&#8217;t take the game down with it.</p>
<p>In my next post, I&#8217;ll cover the remaining two items and show you some of the things you can do once you&#8217;ve gathered player data. In the interim, you can <a href="http://inferus-data.luminance.org/player/view?id=1115">take a look at my player profile</a>!</p>
<hr />
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/gruedorf/2009/08/28/achievements-and-player-data-i/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updating Onscreen Objects / Profiling</title>
		<link>http://www.luminance.org/gruedorf/2009/08/20/updating-onscreen-objects-profiling</link>
		<comments>http://www.luminance.org/gruedorf/2009/08/20/updating-onscreen-objects-profiling#comments</comments>
		<pubDate>Fri, 21 Aug 2009 04:24:39 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Gruedorf]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[profiler]]></category>
		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=742</guid>
		<description><![CDATA[One of the problems I started to run into while polishing things up for my contest entry builds was that as my levels grew larger, the game&#8217;s CPU utilization on the 360 steadily grew with them. While PC builds of my game ran smooth on basically all the machines I had access to, on the [...]]]></description>
			<content:encoded><![CDATA[<p>One of the problems I started to run into while polishing things up for my contest entry builds was that as my levels grew larger, the game&#8217;s CPU utilization on the 360 steadily grew with them. While PC builds of my game ran smooth on basically all the machines I had access to, on the 360 the cost of updating all the level&#8217;s objects and entities became quite significant &#8211; most likely due to the 360&#8217;s feeble floating-point performance and lack of out-of-order execution.</p>
<p>The solution to this was, at least to me, relatively obvious: My levels were much larger than the camera, so it didn&#8217;t really make sense to update the entire level every frame.</p>
<p>The first thing I tried to verify this theory was simply hacking it in: Do a check before updating each object to see if it was onscreen. Interestingly, this didn&#8217;t make the game any faster on the 360. Depending on your point of view, this either confirmed or denied my hypothesis: If the problem was simply the cost of all the floating point operations, the cost of doing the onscreen check for each object (since the camera and object bounds were both expressed in floating-point) could have been making the problem worse. Clearly, I didn&#8217;t have enough data to be sure about the right choice to make.</p>
<p>So, I spent a day or so rigging up the necessary infrastructure to be able to profile my game on the 360. Since you can&#8217;t use tools like CLR Profiler or NProf on the 360, I ended up building a very simple frame timing system, and adding an overlay to the game that would show timing data. This let me get a good idea of how much time each subsystem in the game was using, and then I could compare the costs of individual subsystems, and try making changes and seeing how the profile data changed.</p>
<p>Once I had the profiler up and running on the 360, a clear pattern emerged.</p>
<p><a href="http://www.luminance.org/wp-content/uploads/2009/08/01.png"><img class="aligncenter size-full wp-image-745" title="01" src="http://www.luminance.org/wp-content/uploads/2009/08/01.png" alt="01" width="500" height="550" /></a></p>
<p>Updates were consuming a huge amount of CPU time on the 360. While on my desktop, updates basically accounted for no more than 1% of CPU time, on the 360 they actually accounted for more CPU time than rendering &#8211; this was actually a bit of a surprise to me since rendering was definitely the bottleneck at one point on the 360. It seems that at some point along the way, I solved my rendering performance issues on the 360, but didn&#8217;t notice because I had made updates so much more expensive &#8211; one mistake I plan not to repeat was that I went a week or two without testing the game on the 360, since my 360 was not hooked up at the time. During that span of time I made a lot of changes that drastically altered the game&#8217;s performance characteristics, so it was hard to tell what had caused things to degrade.</p>
<p><span id="more-742"></span></p>
<p>Now that I knew updates were expensive, I decided to try and narrow down which object types were the problem. I added profiling markers around specific types of objects, to try and figure out which ones cost the most CPU time to update. After doing that and deploying a few builds to the 360, I found one of my culprits: Water.</p>
<p><a href="http://www.luminance.org/wp-content/uploads/2009/08/04.png"></a><a href="http://www.luminance.org/wp-content/uploads/2009/08/05.png"><img class="aligncenter size-full wp-image-749" title="05" src="http://www.luminance.org/wp-content/uploads/2009/08/05.png" alt="05" width="500" height="550" /></a></p>
<p>While I had suspected that water might be a problem, I was still somewhat surprised by the results; A similar piece of in-game geometry, zones, used similar update code but turned out to have virtually zero update cost at runtime, while water cost a tremendous amount of CPU for very little gameplay impact. The problem turned out to be a subtle difference in how they were implemented.</p>
<p>Zones were inefficient in that every frame, each zone did an obstruction test to see if any entities were inside &#8211; in most cases a zone would be empty, so this was wasted effort. This would have been better implemented by having every entity check for nearby zones, since there are typically far less entities than there are zones. However, in practice this didn&#8217;t turn out to be the problem. The problem was that water built on this logic, and then used it to perform additional work: It did an obstruction test to determine how far the water should fall, and then did another obstruction test to locate any entities inside the water and apply &#8216;flow force&#8217; to them so that the flowing water would push them in a given direction. These two obstruction tests each ended up accounting for a significant portion of the time spent updating the level.</p>
<p>To solve this, I took two steps. First, I reworked zones and water so that they both operated the way I described &#8211; each entity does a check to locate all the zones it&#8217;s within, in a single obstruction test. This reduced the number of obstruction tests I was running every frame by a large amount, and helped reduce CPU usage for water. However, that still wasn&#8217;t enough.</p>
<p>The biggest improvement came from reworking things so that only onscreen objects get updated every frame. Instead of performing a test against every object to see if it&#8217;s onscreen, I decided to build on the partitioning scheme I use for rendering to get a list of onscreen objects, and use that as my list of objects to update. Once I had that working, my performance improved drastically and the game easily ran at 60fps in every part of my levels with CPU to spare.</p>
<p>Of course, doing this introduced bugs. One of the biggest issues is that often you will have important objects just outside the edge of the screen that need to keep updating, like moving platforms or enemies. To solve this, I added two mechanisms:</p>
<p>First, I added a margin around the screen within which objects still continued to update. This meant that an object just barely offscreen would keep updating, and solved the problem of a moving platform or enemy getting left behind as soon as he dropped offscreen.</p>
<p>Second, I built a simple &#8216;update manager&#8217; that maintains a list of all the objects that are currently onscreen. When an object leaves the screen, instead of removing it immediately, the update manager instead sets a timeout, which causes the object to become &#8216;asleep&#8217; within a certain number of frames. As a result, once an object leaves the screen it has a second or two to return to the screen before it falls asleep, which helps with things like moving platforms that are going to move on and off the screen regularly &#8211; since they don&#8217;t spend very long offscreen, they never have a chance to fall asleep.</p>
<p>The update manager also gives me the ability to exclude some objects from updates entirely, by flagging them as &#8216;unable to wake&#8217;, so the update manager knows to never remove them from sleep status. Likewise, it gives me the option to flag objects as &#8216;unable to sleep&#8217; so that they always stay active &#8211; for example, I do this to the player character and his companion to avoid any unintentional bugs that might result from the player remaining offscreen too long (say, during a cinematic).</p>
<p>The update manager has some other benefits, too. Here&#8217;s what it looks like:</p>
<pre>    public class UpdateManager&lt;T&gt;
        where T : class, IUpdateable, IHasBounds {

        public struct Entry {
            public readonly T Object;
            public int WakeCounter;

            public Entry (T obj, int wakeCounter) {
                Object = obj;
                WakeCounter = wakeCounter;
            }
        }

        protected Dictionary&lt;T, bool&gt; _VisibleObjects = new Dictionary&lt;T, bool&gt;(new ReferenceComparer&lt;T&gt;());
        protected UnorderedList&lt;Entry&gt; _Entries = new UnorderedList&lt;Entry&gt;();

        public int SleepTimeout = 30;
        public readonly SpatialCollection&lt;T&gt; Collection;

        public UpdateManager (SpatialCollection&lt;T&gt; collection) {
            Collection = collection;
        }

        public void Update (Bounds liveRegion) {
            using (var e = Collection.GetItemsFromBounds(liveRegion, true))
            while (e.MoveNext()) {
                _VisibleObjects[e.Current.Item] = false;
            }

            Entry currentItem;

            using (var e = _Entries.GetEnumerator())
            while (e.GetNext(out currentItem)) {
                if (!_VisibleObjects.Remove(currentItem.Object)) {
                    // Object not visible

                    if (!currentItem.Object.AllowSleep) {
                        // Object cannot fall asleep
                    } else if (--currentItem.WakeCounter == 0) {
                        // Object fell asleep
                        e.RemoveCurrent();
                        continue;
                    } else {
                        // Object still awake
                        e.SetCurrent(ref currentItem);
                    }
                } else {
                    // Object visible

                    currentItem.WakeCounter = SleepTimeout;
                    e.SetCurrent(ref currentItem);
                }

                currentItem.Object.Update();
            }

            foreach (var newObject in _VisibleObjects.Keys) {
                if (newObject.AllowWake) {
                    _Entries.Add(new Entry(newObject, SleepTimeout));

                    newObject.Update();
                }
            }

            _VisibleObjects.Clear();
        }
    }</pre>
<p>One of the nice things it does in addition to improving performance is that it simplifies my game code &#8211; previously, I had hand-written logic to step through the various object lists (geometry, entities, etc) and update them every frame, and that code differed in subtle ways. The update manager unifies all that, so it kills a lot of duplicated code. Also, by maintaining a unique &#8216;awake objects&#8217; list, it allows me to remove objects from the geometry/entity lists while performing an update, instead of having to wait until the end of the frame, which simplifies some of my entity code as well.</p>
<p>And despite the amount of problems it solves, it ends up actually being quite simple and easy to use. All I have to do to rig up an update manager is point it at a collection of objects and hand it the current camera boundaries every frame.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/gruedorf/2009/08/20/updating-onscreen-objects-profiling/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Supporting alternate keyboard layouts in XNA games</title>
		<link>http://www.luminance.org/gruedorf/2009/08/14/supporting-alternate-keyboard-layouts-in-xna-games</link>
		<comments>http://www.luminance.org/gruedorf/2009/08/14/supporting-alternate-keyboard-layouts-in-xna-games#comments</comments>
		<pubDate>Fri, 14 Aug 2009 20:00:59 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Gruedorf]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=733</guid>
		<description><![CDATA[If you support keyboard input in your XNA game, one issue you need to be aware of is alternate keyboard layouts. Due to the way the XNA Framework handles keyboard input, if you create your game while using the QWERTY keyboard layout, and a customer runs your game while using the DVORAK keyboard layout, he [...]]]></description>
			<content:encoded><![CDATA[<p>If you support keyboard input in your XNA game, one issue you need to be aware of is <a href="http://msdn.microsoft.com/en-us/goglobal/bb964651.aspx">alternate keyboard layouts</a>. Due to the way the XNA Framework handles keyboard input, if you create your game while using the QWERTY keyboard layout, and a customer runs your game while using the DVORAK keyboard layout, he will have to press different keys on his keyboard. At first, this might seem logical &#8211; but consider the typical case:</p>
<p>A customer downloads and installs your game. He&#8217;s running it on a Windows PC. He has his keyboard layout set to DVORAK, because he heard it helps reduce wrist strain. His keyboard still has QWERTY labels printed on it, so he presses &#8216;S&#8217; to type an &#8216;O&#8217;.</p>
<p>He starts your game up, and let&#8217;s say the splash screen says &#8216;Press S to continue&#8217;. He presses S on his keyboard.</p>
<p>Nothing happens.</p>
<p>This is because the OS is remapping the S keystroke into an O. For your XNA game to see an S keystroke, he will have to press the semicolon key (;:) instead.</p>
<p>While users with alternate keyboard layouts are a comparative minority compared to people using the QWERTY keyboard layout, that&#8217;s no excuse for ignoring them. As it turns out, the solution to this problem is pretty straightforward.</p>
<p>What you need to do is find a way to map a keystroke in <strong>your</strong> keyboard layout &#8211; let&#8217;s say QWERTY &#8211; to whatever keyboard layout your customer is running at the time. The Win32 API actually makes this quite simple, so as long as you&#8217;re willing to include some P/Invoke code in windows builds of your game, you can accomplish this in a couple dozen lines of code.</p>
<p>To accomplish this, I use the following helper struct:</p>
<pre>uusing System;
using Microsoft.Xna.Framework.Input;
using System.Runtime.InteropServices;

namespace Labyrinth.Framework {
    public struct LocalizedKeyboardState {
        internal enum MAPVK : uint {
            VK_TO_VSC = 0,
            VSC_TO_VK = 1,
            VK_TO_CHAR = 2
        }

        [DllImport("user32.dll", CallingConvention = CallingConvention.Winapi, CharSet = CharSet.Auto, SetLastError = true)]
        internal extern static uint MapVirtualKeyEx (uint key, MAPVK mappingType, IntPtr keyboardLayout);
        [DllImport("user32.dll", CallingConvention = CallingConvention.Winapi, CharSet = CharSet.Auto, SetLastError = true)]
        internal extern static IntPtr LoadKeyboardLayout (string keyboardLayoutID, uint flags);
        [DllImport("user32.dll", CallingConvention = CallingConvention.Winapi, CharSet = CharSet.Auto, SetLastError = true)]
        internal extern static bool UnloadKeyboardLayout (IntPtr handle);
        [DllImport("user32.dll", CallingConvention = CallingConvention.Winapi, CharSet = CharSet.Auto, SetLastError = true)]
        internal extern static IntPtr GetKeyboardLayout (IntPtr threadId);

        internal const uint KLF_NOTELLSHELL = 0x00000080;

        public struct KeyboardLayout : IDisposable {
            public readonly IntPtr Handle;

            public KeyboardLayout (IntPtr handle) : this() {
                Handle = handle;
            }

            public KeyboardLayout (string keyboardLayoutID)
                : this(LoadKeyboardLayout(keyboardLayoutID, KLF_NOTELLSHELL)) {
            }

            public bool IsDisposed {
                get;
                private set;
            }

            public void Dispose () {
                if (IsDisposed)
                    return;

                UnloadKeyboardLayout(Handle);
                IsDisposed = true;
            }

            public static KeyboardLayout US_English = new KeyboardLayout("00000409");

            public static KeyboardLayout Active {
                get {
                    return new KeyboardLayout(GetKeyboardLayout(IntPtr.Zero));
                }
            }
        }

        public readonly KeyboardState Native;

        public LocalizedKeyboardState (KeyboardState keyboardState) {
            Native = keyboardState;
        }

        public bool IsKeyDown (Keys key, bool isLocalKey) {
            if (!isLocalKey)
                key = USEnglishToLocal(key);

            return Native.IsKeyDown(key);
        }

        public bool IsKeyUp (Keys key, bool isLocalKey) {
            if (!isLocalKey)
                key = USEnglishToLocal(key);

            return Native.IsKeyDown(key);
        }

        public bool IsKeyDown (Keys key) {
            return IsKeyDown(key, false);
        }

        public bool IsKeyUp (Keys key) {
            return IsKeyDown(key, false);
        }

        // Maps a localized character like 'S' to the virtual scan code
        //  for that key on the user's keyboard ('O' in dvorak, for example)
        public static Keys USEnglishToLocal (Keys key) {
            var activeScanCode = MapVirtualKeyEx((uint)key, MAPVK.VK_TO_VSC, KeyboardLayout.US_English.Handle);
            var nativeVirtualCode = MapVirtualKeyEx(activeScanCode, MAPVK.VSC_TO_VK, KeyboardLayout.Active.Handle);

            return (Keys)nativeVirtualCode;
        }
    }
}</pre>
<p>Here&#8217;s how it works: First, at startup, we ask the Win32 API to load up a specific keyboard layout; US English QWERTY. From then on, we can ask the Win32 API to convert a &#8216;virtual key&#8217; from that keyboard layout into a scan code. Once we have a scan code, we can then ask the Win32 API to convert that scan code into the equivalent virtual key for the end-user&#8217;s keyboard layout. Since the XNA Framework uses virtual keys (the Keys enumeration contains virtual key values), this allows us to apply this technique to existing keyboard input code without any significant changes.</p>
<p>So, with this helper struct, you can add support for alternate keyboard layouts like DVORAK with only a couple changes:</p>
<ul>
<li>First, add the helper struct to your game code somewhere so you have access to it.</li>
<li>Replace any uses of the XNA KeyboardState struct with the LocalizedKeyboardState helper struct. If you use some of the more obscure KeyboardState helper methods, you may need to do some work to add them to LocalizedKeyboardState; it only provides IsKeyUp and IsKeyDown.</li>
<li>Figure out whether any of the keys you&#8217;re using should not be remapped based on the current keyboard layout. For example, it&#8217;s common practice for some kinds of games to expose a &#8216;console&#8217; that allows the user to view log messages and enter commands. In a lot of games, you press the tilde (<strong>~</strong>) key to open the console. This is a convenient key since it&#8217;s near the top left corner of a QWERTY keyboard. However, if you allow the keystroke to be remapped to the current layout, non-QWERTY typists will find they have to press some random key on their keyboard to open the console. In this case, you&#8217;ll want to pass a value of <strong><tt>true</tt></strong> for the second, optional parameter to the IsKeyDown/IsKeyUp helper methods:</li>
</ul>
<pre>if (ks.IsKeyDown(Keys.OemTilde, true))
    ShowConsole();</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/gruedorf/2009/08/14/supporting-alternate-keyboard-layouts-in-xna-games/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Constant Binding</title>
		<link>http://www.luminance.org/gruedorf/2009/08/13/constant-binding</link>
		<comments>http://www.luminance.org/gruedorf/2009/08/13/constant-binding#comments</comments>
		<pubDate>Thu, 13 Aug 2009 10:31:28 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Gruedorf]]></category>
		<category><![CDATA[constants]]></category>
		<category><![CDATA[csharp]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=729</guid>
		<description><![CDATA[One of the changes I made in the weeks leading up to my contest deadlines was to pull some of the player-specific combat logic, like that for attack chains, combos, and flinching, out into their own objects. Doing this let me apply that same combat logic to monsters and other entities in the game world, [...]]]></description>
			<content:encoded><![CDATA[<p>One of the changes I made in the weeks leading up to my contest deadlines was to pull some of the player-specific combat logic, like that for attack chains, combos, and flinching, out into their own objects. Doing this let me apply that same combat logic to monsters and other entities in the game world, which cut down on duplication considerably.</p>
<p>However, doing this made it clear that I had some architectural issues to tackle: All of these mechanics were heavily dependent on the <a href="http://www.luminance.org/gruedorf/2009/03/30/changing-constants-at-runtime">tunable constants</a> for the creature in question, which meant I couldn&#8217;t just pull methods and variables out of my entity classes into classes of their own.</p>
<p>To solve the problem of accessing an object&#8217;s constants, I came up with a solution based on reflection. I can define a helper object designed to handle an aspect of an entity&#8217;s mechanics &#8211; for example, a HealthPool object to manage the creature&#8217;s health, along with associated aspects like regeneration. The helper object can define instance variables for the constants it needs access to, like so:</p>
<pre>public class HealthPool {
    public Constant&lt;float&gt; HealthMax = null;
    public Constant&lt;float&gt; HealthPassiveRegen = null;
    public Constant&lt;float&gt; HealthRegenDelayTime = null;
    public Constant&lt;float&gt; HealthRegenRampTime = null;
    public Constant&lt;float&gt; FlinchThreshold = null;
    public Constant&lt;float&gt; FlinchThresholdDecay = null;

    public readonly RuntimeEntity Entity;
    public readonly ITimeProvider TimeProvider;
    public float Health = 0.0f;</pre>
<p>Note that these variables are the same name and type as the actual <a href="http://www.luminance.org/gruedorf/2009/03/30/changing-constants-at-runtime">tunable constants</a> &#8211; the difference is that instead of being static, they&#8217;re instance variables. Doing this allows me to pull a function out of an entity&#8217;s source code without needing to change the way it references particular constants, since the constants have the exact same names as before.</p>
<p>Of course, since these variables default to null, we need some way to fill them in with references to the actual tunable constants we want to use. To do that, we apply reflection:</p>
<pre>public static void BindConstants (object destination, params Type[] sourceTypes) {
    var genericConstant = typeof(Constant&lt;&gt;);
    var destinationType = destination.GetType();
    var destinationFields = new Dictionary&lt;string, FieldInfo&gt;();

    foreach (var field in
        destinationType.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.FlattenHierarchy)
    ) {
        var fieldName = field.Name;
        var fieldType = field.FieldType;

        if (!fieldType.IsGenericType || fieldType.GetGenericTypeDefinition() != genericConstant)
            continue;

        destinationFields[fieldName] = field;
    }

    foreach (var sourceType in sourceTypes) {
        foreach (var field in
            sourceType.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.FlattenHierarchy)
        ) {
            var fieldName = field.Name;
            var fieldType = field.FieldType;

            if (!fieldType.IsGenericType || fieldType.GetGenericTypeDefinition() != genericConstant)
                continue;

            FieldInfo destinationField = null;
            if (destinationFields.TryGetValue(fieldName, out destinationField)) {
                destinationField.SetValue(destination, field.GetValue(null));
                destinationFields.Remove(fieldName);
            }
        }
    }

    if (destinationFields.Count &gt; 0) {
        var constants = String.Join(", ", (from key in destinationFields.Keys select key).ToArray());
        var types = String.Join(", ", (from type in sourceTypes select type.Name).ToArray());

        throw new InvalidDataException(String.Format("Type(s) {0} do not declare the following constants:\n{1}", types, constants));
    }
}</pre>
<p>What we&#8217;re doing here is pretty simple: We accept a reference to an object that has constants requiring binding, and a list of source types to retrieve constants from. The function operates in two stages: First, we enumerate all the instance variables defined in the target object, and build a list of all the tunable constants it has that need to be bound. After that, we enumerate all the static fields of the provided source types, looking for constants that have names matching those of the instance variables on the target object, binding them where appropriate. After this, we can simply check to see if our list of constants is empty or not &#8211; if it&#8217;s empty, we successfully bound all our constants, and if it&#8217;s not, we know that one or more of the desired constants was missing.</p>
<p>We get a few useful things out of this: First, accepting a list of types allows us to do simple inheritance of constants. If we first check the most-derived type and then the base type of an entity, that allows us to define a &#8216;default value&#8217; for a particular constant, like &#8216;Maximum Health&#8217;, in a base class, and then define a new constant with the same name in the derived type. This also allows us to create &#8216;global defaults&#8217; for a given constant &#8211; for example, if we always put Game at the end of the type list, we can have global game-wide constants for things like physics parameters, and only override them in specific classes if necessary.</p>
<p>Finally, to wire things up, we just need to do a little work in the constructor for our helper object:</p>
<pre>    public HealthPool (RuntimeEntity entity, ITimeProvider timeProvider) {
        Entity = entity;
        TimeProvider = timeProvider;

        ConstantManager.BindConstants(this, entity.GetType(), entity.Game.GetType());

        Health = HealthMax;
    }</pre>
<p>In this case, we&#8217;re initializing the HealthPool using the constants defined in the entity, and falling back to any constants defined in the Game when the entity doesn&#8217;t specify them. If a necessary constant is missing, we&#8217;ll get an exception thrown when constructing our helper object. Once we&#8217;ve bound the constants, we can just use them like we would otherwise &#8211; in this case, the HealthPool automatically initializes itself based on the HealthMax constant.</p>
<p>This is definitely preferable to the approach I used to use for exposing an entity&#8217;s constants &#8211; previously, for important constants like an entity&#8217;s bounding box size, I&#8217;d define an abstract property in a base class, and override it in each derived type to return the value of the constant. Now, I don&#8217;t need to use any abstract members or interfaces; I can just bind to the constants once when I initialize my helper objects.</p>
<p>One thing of note is that since this technique uses reflection, you might run into performance issues if you&#8217;re binding constants repeatedly. This is pretty trivial to solve, however; you can just cache the results of a constant binding operation based on the destination and source types, since those aren&#8217;t going to change at runtime.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/gruedorf/2009/08/13/constant-binding/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One down</title>
		<link>http://www.luminance.org/gruedorf/2009/08/06/one-down</link>
		<comments>http://www.luminance.org/gruedorf/2009/08/06/one-down#comments</comments>
		<pubDate>Fri, 07 Aug 2009 06:44:41 +0000</pubDate>
		<dc:creator>Kael</dc:creator>
				<category><![CDATA[Gruedorf]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[dbp2009]]></category>
		<category><![CDATA[lame]]></category>
		<category><![CDATA[xna]]></category>

		<guid isPermaLink="false">http://www.luminance.org/?p=679</guid>
		<description><![CDATA[One to go.
Thanks to some especially hard work by Troupe and Ian, we got a relatively decent build of the game in for the Dream-Build-Play 2009 deadline. Next is the Intel Level Up 2009 competion, only a few days from now.
I&#8217;m too lazy to write a large blog post this time, since I&#8217;ve been up [...]]]></description>
			<content:encoded><![CDATA[<p>One to go.</p>
<p>Thanks to some especially hard work by Troupe and Ian, we got a relatively decent build of the game in for the Dream-Build-Play 2009 deadline. Next is the Intel Level Up 2009 competion, only a few days from now.</p>
<p>I&#8217;m too lazy to write a large blog post this time, since I&#8217;ve been up for about 48 hours. Instead, enjoy this <a href="http://www.luminance.org/inferusgame">conveniently placed link</a> that allows you to download a build of the game and try it out. Feel free to mess around with the level editor, too.</p>
<p>Biggest things of note from the SVN logs this week:</p>
<ul>
<li>Added a boss fight!</li>
<li>Overhauled my physics system to address some floating point accuracy issues.</li>
<li>Overhauled the combat system to try and make it more fun. Only slightly successful.</li>
<li>Finally implemented the player character&#8217;s companion, and added support for talking to her.</li>
<li>Significantly reduced garbage generation, which means less stuttering on the 360. Hooray!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.luminance.org/gruedorf/2009/08/06/one-down/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
