<?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>bovine genius</title>
	<atom:link href="http://www.bovinegenius.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bovinegenius.net</link>
	<description></description>
	<lastBuildDate>Wed, 25 Nov 2009 21:13:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Raycaster</title>
		<link>http://www.bovinegenius.net/2009/11/25/raycaster/</link>
		<comments>http://www.bovinegenius.net/2009/11/25/raycaster/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 21:09:35 +0000</pubDate>
		<dc:creator>walter</dc:creator>
				<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://www.bovinegenius.net/?p=90</guid>
		<description><![CDATA[This is a raycaster I wrote a while back. It works on a simple grid, where each tile in the grid is either has a wall there or doesn&#8217;t. Each wall tile has four textures, one for each side. Also, for each tile, there is a flag to say if it is visible, and if [...]]]></description>
			<content:encoded><![CDATA[<p>This is a raycaster I wrote a while back. It works on a simple grid, where each tile in the grid is either has a wall there or doesn&#8217;t. Each wall tile has four textures, one for each side. Also, for each tile, there is a flag to say if it is visible, and if it causes collisions. The floor and ceiling each have their own grid of textures.</p>
<p><a href="http://www.bovinegenius.net/wp-content/uploads/2009/11/RayCaster.png"><img class="alignleft size-full wp-image-88" style="margin-left: 5px; margin-right: 5px;" title="RayCaster" src="http://www.bovinegenius.net/wp-content/uploads/2009/11/RayCaster.png" alt="RayCaster" width="648" height="505" /></a></p>
<p>The raycaster is written in C++, and uses SDL for drawing and input. Eventually it will be turned into an actual game, but the rendering engine still needs some work. Drawing the floor/ceiling slows it down considerably, and the ability to render sprites is yet to be implemented.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bovinegenius.net/2009/11/25/raycaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text Replacer</title>
		<link>http://www.bovinegenius.net/2009/11/21/text-replacer/</link>
		<comments>http://www.bovinegenius.net/2009/11/21/text-replacer/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 22:34:17 +0000</pubDate>
		<dc:creator>walter</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://root.waltertetzner.net/bovinegenius_wordpress/?p=64</guid>
		<description><![CDATA[A program to replace text in plain text files. It works like the find and replace feature in Notepad, but it operates on a collection of files.
Like the Chess game, there is only a Windows version. It might work in Wine, but I have not yet tested it. Also, there are a few graphical glitches [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://root.waltertetzner.net/bovinegenius_wordpress/wp-content/uploads/2009/11/textreplacer_screenshot1.png"><img class="alignleft size-full wp-image-66" style="margin-left: 5px; margin-right: 5px;" title="textreplacer_screenshot" src="http://root.waltertetzner.net/bovinegenius_wordpress/wp-content/uploads/2009/11/textreplacer_screenshot1.png" alt="textreplacer_screenshot" width="363" height="273" /></a>A program to replace text in plain text files. It works like the find and replace feature in <a href="http://en.wikipedia.org/wiki/Notepad">Notepad</a>, but it operates on a collection of files.</p>
<p>Like the Chess game, there is only a Windows version. It might work in <a href="http://www.winehq.org/">Wine</a>, but I have not yet tested it. Also, there are a few graphical glitches that still need to be sorted out.</p>
<p>Note: Be careful when using this program on important files. There is no way to undo a text replacement.</p>
<h4><a href='http://root.waltertetzner.net/bovinegenius_wordpress/wp-content/uploads/2009/11/TextReplacer.exe'>Download</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://www.bovinegenius.net/2009/11/21/text-replacer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chess Game</title>
		<link>http://www.bovinegenius.net/2009/11/21/chess-game/</link>
		<comments>http://www.bovinegenius.net/2009/11/21/chess-game/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 22:07:16 +0000</pubDate>
		<dc:creator>walter</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://root.waltertetzner.net/bovinegenius_wordpress/?p=48</guid>
		<description><![CDATA[A simple chess game, with a point and click interface.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin-left: 10px; margin-right: 10px;" src="http://bovinegenius.net/images/chess_screenshot.png" alt="Chess Game" width="240" height="273" /></p>
<p>A simple chess game, with a point and click interface. Play as white or black. If you need help with the controls, go to Help-&gt;Controls.</p>
<p>The saved game files are placed in a directory called &#8220;Save&#8221;. I will post the format of the *.cg save game files in the future.</p>
<p>Note: Currently there is only a Windows version, but it should run ok in <a href="http://www.winehq.org/">Wine</a>.</p>
<h4><a href="http://root.waltertetzner.net/bovinegenius_wordpress/wp-content/uploads/2009/11/ChessGame.exe">Download</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://www.bovinegenius.net/2009/11/21/chess-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New bovine genius Site Design</title>
		<link>http://www.bovinegenius.net/2009/11/20/news/</link>
		<comments>http://www.bovinegenius.net/2009/11/20/news/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 00:30:25 +0000</pubDate>
		<dc:creator>walter</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://root.waltertetzner.net/bovinegenius_wordpress/?p=41</guid>
		<description><![CDATA[We just redesigned the bovine genius website. It is now backed by WordPress, and has a sleeker look and feel than the old site.
Currently there are some claymation videos of Clive in the Video section. The Software section has a Text Replacer program and a Chess game.
In the near future we intend to use this [...]]]></description>
			<content:encoded><![CDATA[<p>We just redesigned the <strong>bovine genius</strong> website. It is now backed by <a href="http://wordpress.org/">WordPress</a>, and has a sleeker look and feel than the old site.</p>
<p>Currently there are some claymation videos of Clive in the Video section. The Software section has a Text Replacer program and a Chess game.</p>
<p>In the near future we intend to use this site to provide updates on our game development progress. We hope to give some insight into our develpment process, and show the different tools and languages that we use and create.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bovinegenius.net/2009/11/20/news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clive III: The Wall</title>
		<link>http://www.bovinegenius.net/2009/11/20/clive-iii-the-wall/</link>
		<comments>http://www.bovinegenius.net/2009/11/20/clive-iii-the-wall/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 22:49:30 +0000</pubDate>
		<dc:creator>walter</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://root.waltertetzner.net/bovinegenius_wordpress/?p=39</guid>
		<description><![CDATA[Don't miss Clive in his most action packed adventure yet! He takes part in all manner of dangerous activies, consisting primarily of scaling a wall.]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t miss Clive in his most action packed adventure yet! He takes part in all manner of dangerous activies, consisting primarily of scaling a wall.<br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/3YvVhXl3D8w&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/3YvVhXl3D8w&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bovinegenius.net/2009/11/20/clive-iii-the-wall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clive 2: The Hat</title>
		<link>http://www.bovinegenius.net/2009/11/20/clive-2-the-hat/</link>
		<comments>http://www.bovinegenius.net/2009/11/20/clive-2-the-hat/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 22:46:40 +0000</pubDate>
		<dc:creator>walter</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://root.waltertetzner.net/bovinegenius_wordpress/?p=36</guid>
		<description><![CDATA[In Clive's second minor motion picture, he has a strange encounter with a hatrack. ]]></description>
			<content:encoded><![CDATA[<p><span>In Clive&#8217;s second minor motion picture, he has a strange encounter with a hatrack. </span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7OxjGxxuj_k&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/7OxjGxxuj_k&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bovinegenius.net/2009/11/20/clive-2-the-hat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clive</title>
		<link>http://www.bovinegenius.net/2009/11/20/clive/</link>
		<comments>http://www.bovinegenius.net/2009/11/20/clive/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 22:06:30 +0000</pubDate>
		<dc:creator>walter</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://root.waltertetzner.net/bovinegenius_wordpress/?p=31</guid>
		<description><![CDATA[This is Clive’s debut. He doesn’t do a whole lot, and actually seems rather confused as to what he should be doing.]]></description>
			<content:encoded><![CDATA[<p>This is Clive’s debut. He doesn’t do a whole lot, and actually seems rather confused as to what he should be doing.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Exoj5Ii8VYg&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/Exoj5Ii8VYg&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bovinegenius.net/2009/11/20/clive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
