<?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>Thomas Wiggins</title>
	<atom:link href="http://www.thomaswiggins.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thomaswiggins.co.uk</link>
	<description>Programmer. Developer. Designer.</description>
	<lastBuildDate>Mon, 14 Nov 2011 00:34:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Network Fingerprinting and Operating System spoofing</title>
		<link>http://www.thomaswiggins.co.uk/2010/02/16/network-fingerprinting-and-operating-system-spoofing/</link>
		<comments>http://www.thomaswiggins.co.uk/2010/02/16/network-fingerprinting-and-operating-system-spoofing/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 12:48:15 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[MSc]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=548</guid>
		<description><![CDATA[It occurs to me that I&#8217;ve never actually talked about my dissertation software project which in September I completed for my Masters degree in Computer Security. First a little background information. There exists a program called Nmap which primarily functions &#8230; <a href="http://www.thomaswiggins.co.uk/2010/02/16/network-fingerprinting-and-operating-system-spoofing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It occurs to me that I&#8217;ve never actually talked about my dissertation software project which in September I completed for my Masters degree in Computer Security.</p>
<p><a href="http://www.nmap.org"><img src="http://www.thomaswiggins.co.uk/wp-content/uploads/2010/02/nmap-e1266279120143.png" alt="" title="Nmap" width="149" height="80" class="alignleft size-full wp-image-558" /></a>First a little background information. There exists a program called <a href="http://www.nmap.org">Nmap</a> which primarily functions as a network mapper and security scanner, it is able to scan ports and help administrators determine possible holes in their system. It is popular and in some ways is the <em>de facto</em> standard to use for analysing network security nowadays. </p>
<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/2010/02/osscan.png"><img src="http://www.thomaswiggins.co.uk/wp-content/uploads/2010/02/osscan-300x150.png" alt="" title="osscan" width="300" height="150" class="alignright size-medium wp-image-583" /></a>An auxiliary feature of this program is the ability for it to send around a dozen carefully crafted probe packets to a remote host, analyse the responses (if any), then match these responses to a database to determine the operating system used and by extension the hardware in some cases. These specific responses are called a <em>fingerprint</em>. This analysis technique is called operating system fingerprinting and the methods used are detailed <a href="http://nmap.org/book/osdetect-methods.html">here</a>. All sorts of tests are performed, from simple ones such as whether the host responds, checking certain fields are filled with the correct data etc, to more complex ones such as analysing the randomness of sequence values.</p>
<p>The aim of my project was to determine how much these results can be skewed to our advantage. The motivation for this is to prevent any system information from being revealed to a malicious user and thereby allowing them to use a system-specific exploit against us, such as the recently discovered method of <a href="http://seclists.org/fulldisclosure/2009/Sep/39">remotely BSODing a Windows Vista/7 machine</a> (which has thankfully been patched now).</p>
<p>To defend against this two separate programs were created. The first was a user-level program written in C# whose job it was to parse the Nmap fingerprint database to create a list of usable fingerprints. This information is displayed in a GUI and when one is selected it is processed and stored as registry values for use by the second program.</p>
<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/2010/02/osfingerprint-user-e1266273997980.png"><img src="http://www.thomaswiggins.co.uk/wp-content/uploads/2010/02/osfingerprint-user-e1266273997980.png" alt="" title="osfingerprint-user" width="550" height="315" class="aligncenter size-full wp-image-576" /></a></p>
<p>The second program works at the kernel-level as a driver written in C. It uses the <a href="http://msdn.microsoft.com/en-us/library/aa366510%28VS.85%29.aspx">Windows Filtering Platform</a> API, this allows it to analyse incoming packets for probe packets, drop them then construct raw outgoing packets as responses. It drops the incoming packets to prevent Windows itself or any applications from replying and influencing the results. Raw packets (i.e. packets which we have complete control over) can&#8217;t ordinarily be constructed from within Windows, but kernel-level programs receive special privileges in that regard.</p>
<p>This solution enabled standard communication to still occur between the computer and outside networks as only detected probe packets would be dropped, though there is always the possibility that a regular packet would be incorrectly identified as a probe packet this is unlikely as there is usually no payload data in probe packets.</p>
<p>I&#8217;ll leave it there for now as this post has gotten a bit long. I&#8217;ll talk about it more soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2010/02/16/network-fingerprinting-and-operating-system-spoofing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress updates and random code snippet</title>
		<link>http://www.thomaswiggins.co.uk/2010/02/13/wordpress-updates-and-random-code-snippet/</link>
		<comments>http://www.thomaswiggins.co.uk/2010/02/13/wordpress-updates-and-random-code-snippet/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 23:07:54 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=510</guid>
		<description><![CDATA[I&#8217;ve Just updated the website from 2.8.4 to 2.9.1 and updated all the plug-ins too. I also updated the contact page with some links to public profiles. People have been poking me to update this website more regularly so I&#8217;m &#8230; <a href="http://www.thomaswiggins.co.uk/2010/02/13/wordpress-updates-and-random-code-snippet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve Just updated the website from 2.8.4 to 2.9.1 and updated all the plug-ins too. I also updated the contact page with some links to public profiles.</p>
<p>People have been poking me to update this website more regularly so I&#8217;m trying to think of things to write about. Projects have kind of gone on hold again since I&#8217;ve moved and started work, will hopefully get on with some soon. In the meantime I&#8217;m considering just writing about some general programming tips/tricks/oddities I&#8217;ve come across. </p>
<p>In light of that here&#8217;s a random code snippet I read recently. Also I want to test this new formatting plug-in I installed. <img src='http://www.thomaswiggins.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#include &lt;stdio.h&gt;</span>
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
     <span style="color: #0000ff;">int</span> x <span style="color: #000080;">=</span> <span style="color: #0000dd;">10</span><span style="color: #008080;">;</span>
     <span style="color: #0000ff;">while</span><span style="color: #008000;">&#40;</span> x<span style="color: #000040;">--</span><span style="color: #000080;">&gt;</span><span style="color: #0000dd;">0</span> <span style="color: #008000;">&#41;</span> <span style="color: #666666;">// x goes to 0</span>
     <span style="color: #008000;">&#123;</span>
       <span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;%d &quot;</span>, x<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
     <span style="color: #008000;">&#125;</span>
&nbsp;
<span style="color: #008000;">&#125;</span></pre></td></tr></table></div>


<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Output: 9 8 7 6 5 4 3 2 1 0</pre></div></div>

<p>It&#8217;s a little neat way of using &#8220;<code>--></code>&#8221; as a &#8220;go down to&#8221; operator. In reality it&#8217;s not a single operator obviously, it&#8217;s just syntactically equivalent to <code>((x--) > 0)</code>. Pretty nice all the same though. <img src='http://www.thomaswiggins.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway that&#8217;s all for now. Will try to think of something else (possibly less random) to post soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2010/02/13/wordpress-updates-and-random-code-snippet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated website design</title>
		<link>http://www.thomaswiggins.co.uk/2009/10/15/updated-website-design/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/10/15/updated-website-design/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 12:25:04 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=484</guid>
		<description><![CDATA[The (more-or-less) final design is up! There may be some small changes with positioning, sizes and fonts of elements to differentiate it more from the default wordpress theme but generally I&#8217;m quite happy with it as it is. Incidentally I &#8230; <a href="http://www.thomaswiggins.co.uk/2009/10/15/updated-website-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The (more-or-less) final design is up! There may be some small changes with positioning, sizes and fonts of elements to differentiate it more from the default wordpress theme but generally I&#8217;m quite happy with it as it is.</p>
<p>Incidentally I think Inkscape is a great rool for coming up with website designs. Check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/10/15/updated-website-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hold on folks</title>
		<link>http://www.thomaswiggins.co.uk/2009/10/09/hold-on-folks/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/10/09/hold-on-folks/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 23:20:43 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=1</guid>
		<description><![CDATA[Wow, been a long time since the last update. Sorry! A quick update: Finished uni and got a job offer. There, now you&#8217;re up to speed. (whoever you are&#8230;) Anyway I&#8217;m going to be writing a new theme and revamping &#8230; <a href="http://www.thomaswiggins.co.uk/2009/10/09/hold-on-folks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wow, been a long time since the last update. Sorry! A quick update: Finished uni and got a job offer. There, now you&#8217;re up to speed. (whoever you are&#8230;)</p>
<p>Anyway I&#8217;m going to be writing a new theme and revamping the site a bit while I&#8217;ve got some free time before the new job starts.</p>
<p>Watch this space.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/10/09/hold-on-folks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free time is awesome. Wish I had it.</title>
		<link>http://www.thomaswiggins.co.uk/2009/03/01/free-time-is-awesome-wish-i-had-it/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/03/01/free-time-is-awesome-wish-i-had-it/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 14:07:31 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=456</guid>
		<description><![CDATA[I&#8217;ve been very busy recently. These last two weeks have been chock-full of essay writing and job applications/interviews, I just have one essay left for Network Security on 4th March though so will hopefully have a bit of time to &#8230; <a href="http://www.thomaswiggins.co.uk/2009/03/01/free-time-is-awesome-wish-i-had-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been very busy recently. These last two weeks have been chock-full of essay writing and job applications/interviews, I just have one essay left for Network Security on 4th March though so will hopefully have a bit of time to do work on my own projects after that.</p>
<p>Till then&#8230;</p>
<p>*Goes off to research ways to prevent phishing attacks*</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/03/01/free-time-is-awesome-wish-i-had-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oops, I broke the site</title>
		<link>http://www.thomaswiggins.co.uk/2009/02/14/oops-i-broke-the-site/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/02/14/oops-i-broke-the-site/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 02:28:30 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=443</guid>
		<description><![CDATA[Note to self: From now on do not use the automatic update feature of WordPress. Doing this broke my theme and thus my site, as it decided to overwrite it with the default one. My custom theme was a heavily &#8230; <a href="http://www.thomaswiggins.co.uk/2009/02/14/oops-i-broke-the-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><i><strong>Note to self:</strong> From now on do <u>not</u> use the automatic update feature of WordPress.</i></p>
<p>Doing this broke my theme and thus my site, as it decided to overwrite it with the default one. My custom theme was a heavily modified version of the default and I never bothered making a new directory for it so I guess it was entirely my fault. All the background code and design changes I had made meant that the &#8220;updated&#8221; theme files broke the layout entirely and resulted in some sort of strange love-child between this site and the default WordPress theme. Luckily the nice people at my webhost company had an automatic backup from two days ago so they found my theme and gave it back to me. Thank you <a href="http://www.register1.net">Register1</a>! *kisses*</p>
<p>To be honest I&#8217;ve been thinking about changing my theme for a while now anyway, there are a few design problems with it. I&#8217;ve tried tweaking it a lot to make it so the text is more readable on a blueish background but I can never get a high contrast without changing the font colour to white, which I am not going to do. I&#8217;m thinking of incorporating more design elements from my &#8220;Vote Campaign&#8221; design that I made a while back (it&#8217;s on my projects page) seeing as he never actually used it in the end. Specifically I want to change the colour scheme so the main text is on a white background, though more changes may be included. Only problem is that I should probably remove the &#8220;Vote Campaign&#8221; design from my portfolio if I make it <i>too</i> similar to this site!</p>
<p>Anyway, we&#8217;ll see what happens. I&#8217;ll likely just work in the background on the next design until I&#8217;m happy enough with it to take the plunge and change over. This one works for now and I don&#8217;t exactly want to break anything.</p>
<p>Anything more that is.</p>
<p><i>-Thomas</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/02/14/oops-i-broke-the-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GTD &#8211; Planetary objects</title>
		<link>http://www.thomaswiggins.co.uk/2009/02/09/gtd-planetary-objects/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/02/09/gtd-planetary-objects/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 01:51:29 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[Graphics technology demo]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=416</guid>
		<description><![CDATA[It&#8217;s been a while since the last update, and unfortunately it&#8217;s likely to be a little while till the next one due to upcoming university coursework. I&#8217;ll still try to spend a couple of hours every few nights on this &#8230; <a href="http://www.thomaswiggins.co.uk/2009/02/09/gtd-planetary-objects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since the last update, and unfortunately it&#8217;s likely to be a little while till the next one due to upcoming university coursework. I&#8217;ll still try to spend a couple of hours every few nights on this though if I can.</p>
<p>Anyway onto the update. Firstly I&#8217;ve fiddled about with the atmospheric settings to add a bit of a more &#8220;blinding&#8221; effect from looking at the sun, though I feel it might be overdone for when you&#8217;re not looking at the camera. Maybe something to add would be a modifier that increases based on how central the sun is to the screen.</p>
<p>Secondly I&#8217;ve added some planetary objects to the previously empty sky. There is now a sun which orbits the sky during the day and stars which become visible at night. Pictures below!</p>
<p><span style="text-decoration: underline;">From inside the dome</span> <em>- Click to enlarge images</em></p>
<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/011-inside-dome-day.png"><img class="alignnone size-thumbnail wp-image-417" title="011-inside-dome-day" src="http://www.thomaswiggins.co.uk/wp-content/uploads/011-inside-dome-day-150x150.png" alt="011-inside-dome-day" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/011-inside-dome-night.png"> <img class="alignnone size-thumbnail wp-image-418" title="011-inside-dome-night" src="http://www.thomaswiggins.co.uk/wp-content/uploads/011-inside-dome-night-150x150.png" alt="011-inside-dome-night" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/011-inside-dome-nightmore.png"> <img class="alignnone size-thumbnail wp-image-419" title="011-inside-dome-nightmore" src="http://www.thomaswiggins.co.uk/wp-content/uploads/011-inside-dome-nightmore-150x150.png" alt="011-inside-dome-nightmore" width="150" height="150" /><br />
</a></p>
<p><span style="text-decoration: underline;">From outside the dome</span> &#8211; <em>Click to enlarge images</em></p>
<p><em><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/011-outside-dome-day.png"><img class="alignnone size-thumbnail wp-image-420" title="011-outside-dome-day" src="http://www.thomaswiggins.co.uk/wp-content/uploads/011-outside-dome-day-150x150.png" alt="011-outside-dome-day" width="150" height="150" /></a> <a href="http://www.thomaswiggins.co.uk/wp-content/uploads/011-outside-dome-night.png"><img class="alignnone size-thumbnail wp-image-421" title="011-outside-dome-night" src="http://www.thomaswiggins.co.uk/wp-content/uploads/011-outside-dome-night-150x150.png" alt="011-outside-dome-night" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/011-outside-dome-nightmore.png"> <img class="alignnone size-thumbnail wp-image-422" title="011-outside-dome-nightmore" src="http://www.thomaswiggins.co.uk/wp-content/uploads/011-outside-dome-nightmore-150x150.png" alt="011-outside-dome-nightmore" width="150" height="150" /><br />
</a></em></p>
<p>I have also been working on other parts of the engine. I added a modified version of my camera from <a href="http://www.thomaswiggins.co.uk/blocks"><em>&#8220;Blocks&#8221;</em></a> with the physics interactions stripped out. I have also been learning how to use vertex/fragment shaders, I planned on converting the sky calculations to the graphics card but I may save that for another time now. In the more immediate future I plan on using shaders to add dynamic shadowing to the terrain, possibly using the shadow-mapping technique.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/02/09/gtd-planetary-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GTD &#8211; Atmospheric scattering</title>
		<link>http://www.thomaswiggins.co.uk/2009/02/01/gtd-atmospheric-scattering/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/02/01/gtd-atmospheric-scattering/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 17:19:43 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[Graphics technology demo]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=395</guid>
		<description><![CDATA[I&#8217;ve almost finished implementing the base for the sky, using the SkyDome technique. Instead of a skymap or a colour table I decided to use a simulation of how light actually scatters in our own atmosphere for a (hopefully) more &#8230; <a href="http://www.thomaswiggins.co.uk/2009/02/01/gtd-atmospheric-scattering/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve almost finished implementing the base for the sky, using the SkyDome technique. Instead of a skymap or a colour table I decided to use a simulation of how light actually scatters in our own atmosphere for a (hopefully) more realistic approach. This means that I also have a day/night cycle, albeit currently it takes a total of one minute to complete the cycle as opposed to 24 hours! Screenshots below.</p>
<p><span style="text-decoration: underline;">Wireframe of the SkyDome</span></p>
<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/009-skydome-wireframe.png"><img class="alignnone size-thumbnail wp-image-396" title="009-skydome-wireframe" src="http://www.thomaswiggins.co.uk/wp-content/uploads/009-skydome-wireframe-150x150.png" alt="009-skydome-wireframe" width="150" height="150" /></a></p>
<p><span style="text-decoration: underline;">The sunrise</span> <em>(NB: the actual sun itself isn&#8217;t drawn yet)</em></p>
<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/010-skydome-atmospheric-scattering.png"><img class="alignnone size-thumbnail wp-image-397" title="010-skydome-atmospheric-scattering" src="http://www.thomaswiggins.co.uk/wp-content/uploads/010-skydome-atmospheric-scattering-150x150.png" alt="010-skydome-atmospheric-scattering" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/010b-skydome-atmospheric-scattering.png"><img class="alignnone size-thumbnail wp-image-398" title="010b-skydome-atmospheric-scattering" src="http://www.thomaswiggins.co.uk/wp-content/uploads/010b-skydome-atmospheric-scattering-150x150.png" alt="010b-skydome-atmospheric-scattering" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/010c-skydome-atmospheric-scattering.png"><img class="alignnone size-thumbnail wp-image-399" title="010c-skydome-atmospheric-scattering" src="http://www.thomaswiggins.co.uk/wp-content/uploads/010c-skydome-atmospheric-scattering-150x150.png" alt="010c-skydome-atmospheric-scattering" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/010d-skydome-atmospheric-scattering.png"><img class="alignnone size-thumbnail wp-image-400" title="010d-skydome-atmospheric-scattering" src="http://www.thomaswiggins.co.uk/wp-content/uploads/010d-skydome-atmospheric-scattering-150x150.png" alt="010d-skydome-atmospheric-scattering" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/010e-skydome-atmospheric-scattering.png"><img class="alignnone size-thumbnail wp-image-401" title="010e-skydome-atmospheric-scattering" src="http://www.thomaswiggins.co.uk/wp-content/uploads/010e-skydome-atmospheric-scattering-150x150.png" alt="010e-skydome-atmospheric-scattering" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/010f-skydome-atmospheric-scattering.png"><img class="alignnone size-thumbnail wp-image-402" title="010f-skydome-atmospheric-scattering" src="http://www.thomaswiggins.co.uk/wp-content/uploads/010f-skydome-atmospheric-scattering-150x150.png" alt="010f-skydome-atmospheric-scattering" width="150" height="150" /></a></p>
<p>I also had a few rather interesting glitches while implementing this. When I tried to first display it I put every colour value of the SkyDome&#8217;s vertices to red (um.. because it&#8217;s the standard sky colour&#8230;? Don&#8217;t ask me why!). However I made my colours were stored as RGBA and I was accidentally making the colour pointer read the values as RGB, this resulted in alternating between full red/green/blue colours due to incorrect offsets.</p>
<p><span style="text-decoration: underline;">Glitch &#8211; Rainbow sky?</span></p>
<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/008b-skydome-rainbow.png"><img class="alignnone size-thumbnail wp-image-404" title="008b-skydome-rainbow" src="http://www.thomaswiggins.co.uk/wp-content/uploads/008b-skydome-rainbow-150x150.png" alt="008b-skydome-rainbow" width="150" height="150" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/008c-skydome-rainbow.png"><img class="alignnone size-thumbnail wp-image-405" title="008c-skydome-rainbow" src="http://www.thomaswiggins.co.uk/wp-content/uploads/008c-skydome-rainbow-150x150.png" alt="008c-skydome-rainbow" width="150" height="150" /></a></p>
<p>Not very realistic but interesting as far as glitches go!</p>
<p>My next steps with this sky will be to make it a bit more realistic, there are no planetary objects currently (sun, stars etc) so that would probably be a good next step. Clouds might be added too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/02/01/gtd-atmospheric-scattering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphics Technology Demo</title>
		<link>http://www.thomaswiggins.co.uk/2009/01/29/graphics-technology-demo/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/01/29/graphics-technology-demo/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 21:08:42 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[Graphics technology demo]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=385</guid>
		<description><![CDATA[I&#8217;ve started a new project. I&#8217;ve decided to make something of a graphical tech demo, partly for you lovely potential employers out there but mainly because I simply want to expand my knowledge on the graphic side of things. I &#8230; <a href="http://www.thomaswiggins.co.uk/2009/01/29/graphics-technology-demo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/003-scaling-and-increased-hill-size-50to150.png"><img class="size-medium wp-image-369 alignnone" title="gfxpreview1" src="http://www.thomaswiggins.co.uk/wp-content/uploads/003-scaling-and-increased-hill-size-50to150-300x236.png" alt="gfxpreview1" width="270" height="212" /></a><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/006-fixed-normals.png"><img class="size-medium wp-image-370 alignnone" title="gfxpreview2" src="http://www.thomaswiggins.co.uk/wp-content/uploads/006-fixed-normals-300x236.png" alt="gfxpreview2" width="270" height="212" /></a></p>
<p>I&#8217;ve started a new project. I&#8217;ve decided to make something of a graphical tech demo, partly for you lovely potential employers out there but mainly because I simply want to expand my knowledge on the graphic side of things. I learnt a significant amount from my final year project <a href="http://www.thomaswiggins.co.uk/blocks/">&#8220;Blocks&#8221;</a>, such as VBOs, multi-texturing, projective texturing (initially for a prototype flashlight but taken out as there was no need for it in the game), resource management etc. But while these are all important, they&#8217;re not very flashy. That&#8217;s where this project comes in.</p>
<p>I&#8217;m going to make a demo that displays a multitude of graphical techniques through an outdoor scene. Currently I have random terrain generation and rendering going on, I&#8217;m going to build on top of this. The goal is to add water rendering, skydomes, maybe atmospheric scattering, weather, foliage, HDR, and whatever other ideas may crop up down the line.</p>
<p>Latest screen:</p>
<p><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/007-textures.png"><img class="alignnone size-medium wp-image-383" title="007-textures" src="http://www.thomaswiggins.co.uk/wp-content/uploads/007-textures-300x230.png" alt="007-textures" width="300" height="230" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/01/29/graphics-technology-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VRML Air Hockey</title>
		<link>http://www.thomaswiggins.co.uk/2009/01/21/vrml-air-hockey/</link>
		<comments>http://www.thomaswiggins.co.uk/2009/01/21/vrml-air-hockey/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 02:30:15 +0000</pubDate>
		<dc:creator>Thomas Wiggins</dc:creator>
				<category><![CDATA[VRML Air Hockey]]></category>

		<guid isPermaLink="false">http://www.thomaswiggins.co.uk/?p=351</guid>
		<description><![CDATA[I was scouring through my hard drive when I noticed some work that I completed around this time last year. It&#8217;s an Air Hockey game made in VRML (that&#8217;s Virtual Reality Modelling Language), this was done for a third year &#8230; <a href="http://www.thomaswiggins.co.uk/2009/01/21/vrml-air-hockey/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was scouring through my hard drive when I noticed some work that I completed around this time last year.</p>
<div id="attachment_350" class="wp-caption alignnone" style="width: 310px"><a href="http://www.thomaswiggins.co.uk/wp-content/uploads/vrml.png"><img class="size-medium wp-image-350" title="vrml" src="http://www.thomaswiggins.co.uk/wp-content/uploads/vrml-300x194.png" alt="VRML Air Hockey" width="300" height="194" /></a><p class="wp-caption-text">VRML Air Hockey</p></div>
<p>It&#8217;s an Air Hockey game made in VRML (that&#8217;s Virtual Reality Modelling Language), this was done for a third year university module called &#8220;Virtual Reality&#8221;. I really like this work for some reason, I think its partly because I actually had a bit of fun making it trying to adapt game programming concepts to an unfamiliar language with pretty different design methodologies to the norm.</p>
<p>Its a single player game with the other player controlled by a pretty capable CPU. Almost no logic such as collision detection, physics, scoring or AI is built-in to VRML so I had to implement all that myself. Same with the more complex models, textures (except the wooden floor, which I found online) and sounds.</p>
<p>Would I recommend VRML? Not for anything that you would want the mass public to see, even if you don&#8217;t intend on selling it commercially. Almost nobody has the required plugin installed, and even if they do different plugin implementations seem to have different results. Having said that it is good in certain aspects as it is relatively easy to make quick and dirty prototypes with it, and the learning experience doesn&#8217;t hurt either. I have heard that X3D has superseded VRML now though so you may want to look into that instead anyway.</p>
<p>I think I may upload this to my projects portfolio section later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thomaswiggins.co.uk/2009/01/21/vrml-air-hockey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

