<?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>KierenHughes.com</title>
	<atom:link href="http://kierenhughes.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://kierenhughes.com/blog</link>
	<description>General, Coding, The Web etc.</description>
	<lastBuildDate>Sun, 11 Mar 2012 12:56:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ruby and Rails</title>
		<link>http://kierenhughes.com/blog/?p=80</link>
		<comments>http://kierenhughes.com/blog/?p=80#comments</comments>
		<pubDate>Sun, 11 Mar 2012 03:08:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Learn]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/blog/?p=80</guid>
		<description><![CDATA[Hey guys, Recently came across some useful tutorials for Ruby and Rails: TryRuby.org Rails for Zombies Both of the above are really useful interactive tutorials and teach you some of the basics of Ruby and Rails programming. Defo recommend! Kieren]]></description>
			<content:encoded><![CDATA[<p>Hey guys,</p>
<div class="wp-caption alignright" style="width: 189px"><img class=" " title="Ruby on Rails" src="http://aux3.iconpedia.net/uploads/656349831.png" alt="" width="179" height="179" /><p class="wp-caption-text">Ruby on Rails</p></div>
<p>Recently came across some useful tutorials for Ruby and Rails:</p>
<ul>
<li><a href="http://www.tryruby.org" target="_blank">TryRuby.org</a></li>
<li><a href="http://railsforzombies.org/" target="_blank">Rails for Zombies</a></li>
</ul>
<p>Both of the above are really useful interactive tutorials and teach you some of the basics of Ruby and Rails programming.</p>
<p>Defo recommend!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=80</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple jQuery Slider</title>
		<link>http://kierenhughes.com/blog/?p=67</link>
		<comments>http://kierenhughes.com/blog/?p=67#comments</comments>
		<pubDate>Sun, 11 Mar 2012 02:34:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/blog/?p=67</guid>
		<description><![CDATA[Hey guys! Since my last post I've began work as a website developer at Daydream Designs. Really enjoying it! Recently I was developing a website that needed a simple jQuery slider (fade in and out effect). So I just thought I'd share some code that could be useful to anyone needing to create a simple [...]]]></description>
			<content:encoded><![CDATA[<p>Hey guys!</p>
<p>Since my last post I've began work as a website developer at <a href="http://www.daydreamdesigns.co.uk">Daydream Designs</a>. Really enjoying it!</p>
<p>Recently I was developing a website that needed a simple jQuery slider (fade in and out effect). So I just thought I'd share some code that could be useful to anyone needing to create a simple jQuery slider that isn't too difficult to edit!</p>
<pre class="brush: jscript; title: ; notranslate">
            var timeinterval = 0;
	    var timers = new Array();

	    $(document).ready(function() {
		timedCount();
	    });

	    function timedCount(){

                if(timeinterval&gt;0){
		     timeinterval = 0;
		     clearTimeout(restartMethod);
		}

               for(i=2; i&lt;6; i++){
                    timeinterval = timeinterval + 5000;
                    timers[i] = setTimeout(&quot;$('li#slider&quot; + i + &quot;').fadeIn(1000);&quot;, timeinterval);
                }
                timeinterval = timeinterval + 5000;
		a=setTimeout(&quot;fadeAndReset(); clearTimeout(a);&quot;,timeinterval);

		restartMethod = setTimeout(&quot;timedCount()&quot;, timeinterval);
	}

	function fadeAndReset(){
             for(i=2; i&lt;5; i++){
                  $('li#slider' + i).fadeOut(0);
		  clearTimeout(timers[i]);
	     }
	     $('li#slider5').fadeOut(1000);
             clearTimeout(timers[5]);
	}
</pre>
<p>So to explain how to use the above code.</p>
<p>The above code will currently only allow the use of 5 slider images on any given webpage, in order to change the number of sliders, you must alter the following lines:</p>
<ul>
<li><strong>Line 15:</strong> Change i is less than 6 to i is less than whatever number of sliders you have plus 1 (i.e. i is less than 6 is for 5 slider images)</li>
<li><strong>Line 26:</strong> Change i is less than 5 to i is less than whatever number of sliders you have (i.e. i is less than 5 is for 5 slider images)</li>
<li><strong>Line 30:</strong> li#slider5 should be changed to li#slider followed by the number of the last image (i.e. if there were 10 images you would change this to li#slider10).</li>
<li><strong>Line 31:</strong> timers[5] should be changed to timers[<em>whatever number of sliders there are</em>]</li>
</ul>
<p>In order to change the speed of the slider (i.e. how quickly (or slowly) the images change):</p>
<ul>
<li><strong>Line 16 and 19:</strong> Change 5000 to whatever number of milliseconds you want the slider to change at (e.g. 5000 is 5 seconds, 10000 is 10 seconds).</li>
</ul>
<p>The code for the actual slider within the html should be as follows:</p>
<pre class="brush: xml; title: ; notranslate">
	&lt;li id=&quot;slider1&quot;&gt;&lt;img src=&quot;image1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
	&lt;li id=&quot;slider2&quot;&gt;&lt;img src=&quot;image2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
	&lt;li id=&quot;slider3&quot;&gt;&lt;img src=&quot;image3.jpg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
	&lt;li id=&quot;slider4&quot;&gt;&lt;img src=&quot;image4.jpg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
	&lt;li id=&quot;slider5&quot;&gt;&lt;img src=&quot;image5.jpg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
</pre>
<p>Within the css for each of the list items above, all but 'slider1' should have display set to "none", e.g.</p>
<pre class="brush: css; title: ; notranslate">
li#slider2{
     display: none;
}
</pre>
<p>All of the images should be the same width/height too. Obviously, add more list items if more slider images are required. Note that it is important that the slider ids are in the format slider<em>slidernumber</em> (e.g. slider1, slider2 etc.).</p>
<p>I know it's not the easiest code to use (as it's not a plugin), however if you follow the steps above, it should work fine!</p>
<p>Remember to insert the javascript code within the head of the html page within the usual javascript 'script' tags. And also remember to link to jQuery using:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js&quot;&gt;&lt;/script&gt;
</pre>
<p>Hope that's of some use to someone! If you have any problems, leave a comment below and I'll see what I can do!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=67</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Back</title>
		<link>http://kierenhughes.com/blog/?p=64</link>
		<comments>http://kierenhughes.com/blog/?p=64#comments</comments>
		<pubDate>Wed, 24 Aug 2011 15:38:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/?p=64</guid>
		<description><![CDATA[Hey guys, Just thought I'd provide an update regarding what I've been upto lately... I've now graduated from uni, so I've been busy searching for a job, hence why I haven't updated in a while! I've also been on holiday for 2 weeks and stuff, so yeah...I think it's safe to say I've been a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://www.reviewexplorer.com/wp-content/uploads/2011/02/Macbook-pro.jpg" alt="" width="389" height="245" /></p>
<p>Hey guys,</p>
<p>Just thought I'd provide an update regarding what I've been upto lately...</p>
<p>I've now graduated from uni, so I've been busy searching for a job, hence why I haven't updated in a while! I've also been on holiday for 2 weeks and stuff, so yeah...I think it's safe to say I've been a bit preoccupied.</p>
<p>On the job front, not much luck reeeally. I've got some freelance work with Thomson Reuters and also, following getting through a telephone interview for Accenture, I have a second (and final) interview in London in September! Fingers crossed!</p>
<p>In relation to the game, I haven't spent too much time on it recently. I'm currently waiting for my brother to design all of the sprites/artwork for it. Following that, I'm planning to start the game from scratch (using code snippets from the previous version). The reason for this is, that it will allow me to build the game up slowly by editing the code snippets I already have while focusing on increasing the performance of the overall game. I also hope to incorporate some of the features I didn't have time to implement during my university project.</p>
<p>In other news...I'm currently awaiting the delivery of a 17" Macbook Pro <img src='http://kh-labz.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I've always been an avid Windows user, however given the reliability I've had with Windows lately, I've decided to make the switch. I will however dualboot Windows and OS X Lion. Owning a Mac will also allow me to potentially create the game for iPhone as well...</p>
<p>Anyhow, will update again soon!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=64</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PK Guy &#8211; Adding the Jump Feature</title>
		<link>http://kierenhughes.com/blog/?p=54</link>
		<comments>http://kierenhughes.com/blog/?p=54#comments</comments>
		<pubDate>Wed, 23 Mar 2011 18:49:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[AndEngine]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Box2D]]></category>
		<category><![CDATA[Jump]]></category>
		<category><![CDATA[PK Guy]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/?p=54</guid>
		<description><![CDATA[The player's 'jump' ability was added to the game a long time ago, however after being asked how I did it, I feel documenting how I did it will be beneficial to those of you looking into adding the jump ability to your games! So, this feature proved pretty problematic and my implementation of the [...]]]></description>
			<content:encoded><![CDATA[<p>The player's 'jump' ability was added to the game a long time ago, however after being asked how I did it, I feel documenting <em>how</em> I did it will be beneficial to those of you looking into adding the jump ability to your games!</p>
<p>So, this feature proved pretty problematic and my implementation of the feature is by no means, the <em>cleanest</em> way of doing it. However, it works.</p>
<p>So, below is my 'jump' method:</p>
<p><code>
<pre>
public void jump(AnimatedSprite sprite){
	if(!jumping){
		jumping = true;
		body.setLinearVelocity(new Vector2(5,0));
		body.applyLinearImpulse(mTempVector.set(0,-60), new Vector2(10,10));
	}
}
</code></pre>
<p>So, to explain the above method:</p>
<p>When the player 'taps the screen' the 'jump' method is called. I then have a boolean value called 'jumping' which is set to 'false' by default. </p>
<p>The 'if' method then checks to see if the played is 'not jumping' (i.e. jumping is false). If the player is not jumping, jumping is set to true (i.e. the player is jumping) and a linear impulse is applied to the physics body of the player (causing the player to be thrusted into the air). The above method also has the body's linear velocity being set. This is just to slow the player down as my game moves quite quickly and I found that leaving the player's velocity as fast as it is when the player is 'on the ground' meant that the player jumped too far a distance when the screen was tapped.</p>
<p>Sure, the above method makes the player jump, but the next issue I encountered was that the user could repeatedly tap the screen causing the player to 'jump' and 'jump' again and again etc.</p>
<p>I solved this issue (so that the player could only jump again once the player had returned to the ground) through the use of a ContactListener:</p>
<p><code>
<pre>
ContactListener contactListener;

contactListener = new ContactListener(){
	@Override
	public void beginContact(Contact contact) {
		jumping = false;
		body.setLinearVelocity(new Vector2(7,0));
	}
	@Override
	public void endContact(Contact contact)
	{
	}
};
</pre>
<p></code></p>
<p>The above method checks to see whether any object in the PhysicsWorld makes contact with another object in the PhysicsWorld. If contact occurs, the 'beginContact' method is called. So, when the player 'lands on the ground' after jumping, the beginContact method is called which sets the boolean value (used in the 'jump' method) to false, therefore allowing the 'if' statement in the 'jump' method to succeed again. The velocity is set again to increase the speed, as the 'jump' method slowed the speed down for reasons I mentioned earlier.</p>
<p>I hope this helps anyone who is having trouble implementing the jump feature.</p>
<p>The above method is appropriate for my game and works a treat!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=54</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Progress Update &#8211; 22nd March &#8217;11</title>
		<link>http://kierenhughes.com/blog/?p=42</link>
		<comments>http://kierenhughes.com/blog/?p=42#comments</comments>
		<pubDate>Tue, 22 Mar 2011 15:14:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[PK Guy]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/?p=42</guid>
		<description><![CDATA[There hasn't been a large amount of progress over the past few days, however I thought I'd update you all anyway! I also thought it was about time I provided you with a teaser image of the game in action (though the graphics are definitely subject to change!). New updates: The player can now collect coins [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_47" class="wp-caption aligncenter" style="width: 406px"><a href="http://kh-labz.net/wp-content/uploads/2011/03/preview.jpg"><img class="size-full wp-image-47" title="PK Guy in progress!" src="http://kh-labz.net/blog/wp-content/uploads/2011/03/preview.jpg" alt="" width="396" height="238" /></a><p class="wp-caption-text">PK Guy in action!</p></div>
<p>There hasn't been a <strong>large </strong>amount of progress over the past few days, however I thought I'd update you all anyway! I also thought it was about time I provided you with a teaser image of the game in action (though the graphics are definitely subject to change!).</p>
<p>New updates:</p>
<ul>
<li>The player can now collect coins and their score increases as a result. This is a welcome update since previously the coins were 'killing' the player!</li>
<li>Removed a bug with the game 'pause' feature so that it pauses the music as well as the game itself.</li>
</ul>
<p>Not the most exciting updates ever, but they're steps in the right direction at least!</p>
<p>Opinions on the current state of the game judging by the screenshot in this post would be much appreciated!</p>
<p><em>Please note that the 'player' sprite shown in the screenshot will <strong>not </strong>be used in the final game. The one used above is taken from the AndEngineExamples resources and is currently acting as a 'filler' until I decide to design the game character properly!</em></p>
<p>Anyhow, I'll update again soon!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=42</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Progress Update &#8211; 17th March &#8217;11</title>
		<link>http://kierenhughes.com/blog/?p=38</link>
		<comments>http://kierenhughes.com/blog/?p=38#comments</comments>
		<pubDate>Thu, 17 Mar 2011 11:41:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Collision detection]]></category>
		<category><![CDATA[Frame rate]]></category>
		<category><![CDATA[High scores]]></category>
		<category><![CDATA[PK Guy]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/?p=38</guid>
		<description><![CDATA[Having been up for an entire night working on my final year project, a good portion of the first level is now finished. I'm hoping to have a beta version of the game finished within the next 2 weeks, as following that I will need to be working on my final year project report. Once [...]]]></description>
			<content:encoded><![CDATA[<p>Having been up for an entire night working on my final year project, a good portion of the first level is now finished. I'm hoping to have a beta version of the game finished within the next 2 weeks, as following that I will need to be working on my final year project report.</p>
<p>Once the report is done however, I will be working on the game as much as possible with the hope that the game can be fully released by July.</p>
<p>Anyhow...onto the updates!</p>
<p>Significant updates include:</p>
<ul>
<li>Collision detection resulting in player death when colliding with an obstacle or 'falling down a hole'; the level restarts if either of these events occur.</li>
<li>Increased frame rate (from ~35fps to 55-60fps).</li>
<li>Implementation of High Scores table (though game logic resulting in these high scores is not yet implemented).</li>
<li>HUD added. With 'Score: 100', for example, displayed in the top left hand corner.</li>
<li>Addition of game enemies (I've yet to implement the functionality to 'kill' these enemies, though they can kill you).</li>
<li>Addition of 'coins', these will be collected by the player, thus increasing the high score. They are not yet collectable as the player currently 'collides' with them, resulting in player death!</li>
</ul>
<p>I will update you all with a video of the current game within the next few days. Anyhow, better get going, lecture soon!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=38</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AndEngine</title>
		<link>http://kierenhughes.com/blog/?p=4</link>
		<comments>http://kierenhughes.com/blog/?p=4#comments</comments>
		<pubDate>Mon, 21 Feb 2011 12:46:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[AndEngine]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://kh-labz.net/?p=4</guid>
		<description><![CDATA[I am using AndEngine to produce my game (alongside the standard Android API), and I honestly can't recommend it enough! It has been (and still is) highly useful for creating what I have created so far. The one issue I have found with the engine, is that it has VERY little documentation to support you [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 164px"><img class=" " title="AndEngine" src="http://www.andengine.org/forums/resources/andengine-badge-256x256-px/31" alt="" width="154" height="154" /><p class="wp-caption-text">AndEngine</p></div>
<p>I am using AndEngine to produce my game (alongside the standard Android API), and I honestly can't recommend it enough! It has been (and still is) highly useful for creating what I have created so far.</p>
<p>The one issue I have found with the engine, is that it has VERY little documentation to support you when trying to learn to use it. You have to rely heavily on the AndEngine forums for help and advise regarding problems you may run into (and even on the forums you're pretty lucky if you get a reply).</p>
<p>Luckily however, the learning curve isn't bad when using AndEngine and there are a number of examples that you can look at and 'butcher' if need be.</p>
<p>Check it out at:</p>
<p><a href="http://www.andengine.org">AndEngine.org</a></p>
<p>Ciao for now,</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Programmer Graphics&#8217;</title>
		<link>http://kierenhughes.com/blog/?p=13</link>
		<comments>http://kierenhughes.com/blog/?p=13#comments</comments>
		<pubDate>Sat, 19 Feb 2011 14:16:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/?p=13</guid>
		<description><![CDATA[While the main focus of my project is to produce a fully-functioning game, I always feel graphics are as important as functionality. Noone wants to play a game that 'looks bad'....or at least I don't. I probably shouldn't waste too much time on graphics though, as my degree is about programming, not creating graphics, and [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_15" class="wp-caption aligncenter" style="width: 491px"><a href="http://kh-labz.net/wp-content/uploads/2011/02/MenuBackground.jpg"><img class="size-full wp-image-15" title="MenuBackground" src="http://kh-labz.net/blog/wp-content/uploads/2011/02/MenuBackground.jpg" alt="" width="481" height="317" /></a><p class="wp-caption-text">&#39;Programmer Graphics&#39; syndrome?</p></div>
<p>While the main focus of my project is to produce a fully-functioning game, I always feel graphics are as important as functionality. Noone wants to play a game that 'looks bad'....or at least I don't. I probably shouldn't waste too much time on graphics though, as my degree is about programming, not creating graphics, and consequently no marks are awarded for fancy looking sprites etc.</p>
<p>However, recently I have been working on the game menus from an aesthetic point of view, and while the graphical side is by no means 'finished', I would like people's opinions on the 'style' I have adopted. Programmers have a reputation for creating 'bad' graphics in-house and technically proper graphics designers should produce them. However, I obviously have to produce my own for the project as plagerism is not something I want to be accused of!</p>
<p>Anyhow, opinions please?</p>
<p>Mucho gracias!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Game &#8211; What is it?</title>
		<link>http://kierenhughes.com/blog/?p=21</link>
		<comments>http://kierenhughes.com/blog/?p=21#comments</comments>
		<pubDate>Fri, 18 Feb 2011 23:30:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://kierenhughes.com/?p=21</guid>
		<description><![CDATA[I just thought it'd be a good idea to let you all know what the game I am producing is and more importantly what the various features I will (hopefully) be implementing are! So... The game will be called 'PK Guy' (PK' standing for 'Parkour'). For those of you that don't know what Parkour is, [...]]]></description>
			<content:encoded><![CDATA[<p>I just thought it'd be a good idea to let you all know what the game I am producing <em>is</em> and more importantly what the various features I will (hopefully) be implementing are!</p>
<p>So...</p>
<p>The game will be called 'PK Guy' (PK' standing for 'Parkour'). For those of you that don't know what Parkour is, it is 'an athletic discipline, in which practitioners traverse any environment  in the most efficient way possible using their physical abilities, and  which commonly involves running, jumping, vaulting, rolling and other  similar physical movements' (credits: Wikipedia).</p>
<p>So the basic idea of the game is that there is a constantly moving character whom the user has no control over, other than 'jump' etc. I say 'etc' as I am hoping to implement various different inputs that result in the character using a different physical ability. The aim of the game will be to traverse the environment without hitting any obstacles etc. using these different physical abilities depending on the obstacle in their path.</p>
<p>There will be 5-10 levels initially of progressive difficulty. An interesting requirement I have is that this progressive difficulty should be 'unique' to the user. That is to say, players that are extremely good at the game will be faced with EXTREMELY hard levels, while players who are not so good, will have an easier time completing levels. I'm not yet sure how to implement this feature, as it will require each level to be created dynamically as the game goes on.</p>
<p>I also would like to implement multiplayer. I'm not yet sure whether this will be over WiFi or Bluetooth, however I'm hoping to implement two multiplayer modes: Versus and Co-operative.</p>
<p>Versus mode would see the players racing against one another to reach the end of the level first. However, I am thinking that to add to the competitive nature of this, I may allow the user to control the player's movement as well as physical abilities, allowing them to obstruct each other!</p>
<p>Co-operative would see each player take turns for certain segments of each level.</p>
<p>I also hope to implement a 'versus the computer' mode, however this will be very demanding, especially given the size of this project as it is. I say it will be demanding as this will require artificial intelligence, which is not something I am very familiar with (yet).</p>
<p>Other features:</p>
<ul>
<li>High scores (local and global).</li>
<li>Personal preferences.</li>
</ul>
<p>Any opinions/ideas regarding the project would be much appreciated!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=21</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Welcome to KierenHughes.com!</title>
		<link>http://kierenhughes.com/blog/?p=6</link>
		<comments>http://kierenhughes.com/blog/?p=6#comments</comments>
		<pubDate>Fri, 18 Feb 2011 00:10:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://kh-labz.net/?p=6</guid>
		<description><![CDATA[Hi there, So...a little bit about me. I'm Kieren Hughes, a 20 year old final year student studying Computer Science in Cardiff University. Loving every minute of it, both socially and academically. No idea what I want to do with my life afterwards however! I'm currently in the process of completing my final year project [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there,<a href="http://kh-labz.net/wp-content/uploads/2011/02/cardiff-uni.jpg"><img class="alignright size-thumbnail wp-image-9" title="Studying at Cardiff Uni" src="http://kh-labz.net/wp-content/uploads/2011/02/cardiff-uni-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>So...a little bit about me. I'm Kieren Hughes, a 20 year old final year student  studying Computer Science in Cardiff University. Loving every minute of  it, both socially and academically. No idea what I want to do with my life afterwards however!</p>
<p>I'm currently in the process of completing my final year project  worth a large amount of my degree and I will be using this blog to discuss the progress and various problems/resolves I come across during the project. Hopefully this blog will become useful when documenting my project work, but also useful to people who are having similar problems to the ones I've faced during implementation of my game.</p>
<p>The aim of my project is to create a game for Android devices. I'm hoping that once it's completed I will be able to release it onto the market, however, primarily it's purpose is gaining myself a large part of my degree.</p>
<p>The blog will also act as a place for me to post random stuff too, so it won't all be geeky computer-related stuff for all you technophobes out there!</p>
<p>Anyhow, I will post again soon, but ciao for now!</p>
<p>Kieren</p>
]]></content:encoded>
			<wfw:commentRss>http://kierenhughes.com/blog/?feed=rss2&#038;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

