<?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>TidalWare Blog &#187; General</title>
	<atom:link href="http://blog.tidalware.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tidalware.com</link>
	<description>Behind the Scenes</description>
	<lastBuildDate>Fri, 23 Jul 2010 14:36:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Building Ogre with Visual&#160;Studio</title>
		<link>http://blog.tidalware.com/2009/08/building-ogre-with-visual-studio/</link>
		<comments>http://blog.tidalware.com/2009/08/building-ogre-with-visual-studio/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 11:26:11 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.tidalware.com/?p=171</guid>
		<description><![CDATA[Changelog: 13 July 2010: - Recommend CMake version 2.8.0 6th January 2010 - Building the latest 1.7 dependencies package. - It&#8217;s now a generic Building Ogre with Visual Studio guide, since there&#8217;s no longer a compelling reason to build from trunk. This is my &#8220;hold-your-hand&#8221; guide to building the latest Ogre with Visual Studio C++, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Changelog:</strong><br />
13 July 2010:<br />
- Recommend CMake version 2.8.0<br />
6th January 2010<br />
- Building the latest 1.7 dependencies package.<br />
- It&#8217;s now a generic Building Ogre with Visual Studio guide, since there&#8217;s no longer a compelling reason to build from trunk.</p>
<p>This is my &#8220;hold-your-hand&#8221; guide to building the latest Ogre with <a href="http://www.microsoft.com/express/vc/">Visual Studio C++</a>, trunk or stable.</p>
<p><strong>13 July 2010:</strong> If anyone could test this guide for Visual Studio 2010 and let me know if it works or not, I would appreciate it. I don&#8217;t have access to a Windows machine right now.</p>
<h3>Prerequisites</h3>
<ul>
<li>Download and install the latest DirectX9 SDK: <a href="http://msdn.microsoft.com/en-us/directx" target="_blank">http://msdn.microsoft.com/en-us/directx</a></li>
<li>Download and install CMake. It is recommended that you install version 2.8.0, later versions are known to have problems with Ogre: <a href="http://www.cmake.org/files/v2.8/" target="_blank">http://www.cmake.org/files/v2.8/</a></li>
<li>Download the latest dependencies package: <a href="http://sourceforge.net/projects/ogre/files/" target="_blank">http://sourceforge.net/projects/ogre/files/</a> (since this post was last updated, that would be: ogre-dependencies-vc++ -> 1.7 -> OgreDependencies_MSVC_20100501.zip)</li>
<li><strong>[TRUNK]</strong> Checkout ogre from SVN: <a href="https://ogre.svn.sourceforge.net/svnroot/ogre/trunk/" target="_blank">https://ogre.svn.sourceforge.net/svnroot/ogre/trunk/</a></li>
<li><strong>[1.7 STABLE]</strong> Checkout ogre from SVN: <a href="https://svn.ogre3d.org/svnroot/ogre/branches/v1-7" target="_blank">https://svn.ogre3d.org/svnroot/ogre/branches/v1-7</a> OR download a source package from: <a href="http://www.ogre3d.org/download/source" target="_blank">http://www.ogre3d.org/download/source</a></li>
</ul>
<h3>Building Ogre</h3>
<ol>
<li>You need to build the dependencies. Extract the Dependencies folder from the zip into the root directory (/trunk/Dependencies/). Go to Dependencies/src and open OgreDependencies.VS20xx.sln. Right click the solution and click Build Solution, which will build every project. Do this for both Release and Debug.</li>
<li>Open CMake. &#8220;Where is the source code&#8221; should point to the root directory, and &#8220;Where to build the binaries&#8221; should point to a sub folder in the root directory. For example, you can create a folder named VCBuild.</li>
<li>Click Configure. Choose the compiler you are building for.</li>
<li>A list of options in red will appear. Configure it how you choose. I disable BUILD_PLUGIN_BSP and BUILD_RENDERSYSTEM_D3D10 since they are unnecessary for me.</li>
<li>[OPTIONAL] If you have <a href="http://www.boost.org/">boost</a> built and require threading, set the BOOST_ROOT value to the root of your boost directory (e.g. &#8220;C:/boost_1_39&#8243;). Subsequent boost variables should automatically be populated. (If this is an environment variable, it should automatically detect it.) Don&#8217;t forget to set CONFIG_THREADS to 1 or 2 depending on your requirements.</li>
<li>Click configure once again.</li>
<li>The options should turn grey. Click OK.</li>
<li>Open OGRE.sln in your build directory.</li>
<li>Right click the ALL_BUILD project and click Build. Do this for both Release and Debug.</li>
<li>Right click the INSTALL project and click Build. Do this for both Release and Debug.</li>
<li>You&#8217;re done! Make sure you direct any projects using Ogre to the generated <strong>sdk</strong> folder in your build directory.</li>
</ol>
<h3>FAQ</h3>
<p><strong>What happened to CEGUI?</strong><br />
From 1.7, CEGUI is no longer part of Ogre. You should now treat it as a separate library. For instructions, refer to <a href="http://www.ogre3d.org/wiki/index.php/Building_CEGUI">Building CEGUI</a>.</p>
<p><strong>What do I do next?</strong><br />
If you&#8217;ve not familiar with setting up an Ogre application, see my <a href="http://blog.tidalware.com/2009/06/ogre-and-visual-studio-beginners-faq/">Ogre and Visual Studio Beginners FAQ</a> and follow the walkthrough.</p>
<p>Let me know if you have problems with any of the steps, suggestions etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tidalware.com/2009/08/building-ogre-with-visual-studio/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>The Language of Web&#160;2.0</title>
		<link>http://blog.tidalware.com/2009/07/the-language-of-web-2-0/</link>
		<comments>http://blog.tidalware.com/2009/07/the-language-of-web-2-0/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:47:52 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://blog.tidalware.com/?p=159</guid>
		<description><![CDATA[In this so-called new age of web design, there appears to be an underlying trend in &#8220;Web 2.0&#8243; websites. Something about it makes me cringe, because wherever you look, especially in websites showcasing portfolios or whatever, the language style is exactly the same. Informal speak, as if you&#8217;re talking to the visitor as a friend, [...]]]></description>
			<content:encoded><![CDATA[<p>In this so-called new age of web design, there appears to be an underlying trend in &#8220;Web 2.0&#8243; websites. Something about it makes me cringe, because wherever you look, especially in websites showcasing portfolios or whatever, the language style is exactly the same. Informal speak, as if you&#8217;re talking to the visitor as a friend, I guess. To me, it&#8217;s pure cheese.</p>
<p><span style="font-size: 22px; font-weight: bold;">HELLO. MY NAME IS BOB SMITH. I MAKE GOOD WEBSITES, AND STUFF.</span></p>
<p>You know what I&#8217;m talking about. The HUGE TEXT THEY USE TO SHOUT AT THE USER ON THE HOMEPAGE. Okay, so why? Well, you could argue it draws in the user&#8217;s attention, and that it instantly tells the user what the website is about. Fair enough. But I get bored when browsing CSS design showcases, only to find almost all of them follow this trend. Admittedly, even I fall victim to this nonsense. I get a feeling design showcases discriminate websites that don&#8217;t. Perhaps it&#8217;s just another internet phase.</p>
<p>My 5 minute browsing results:</p>
<p><a href="http://paiko.de/" target="_blank">http://paiko.de/</a><br />
<a href="http://www.baeck.no/" target="_blank">http://www.baeck.no/</a><br />
<a href="http://www.sergionoviello.com/" target="_blank">http://www.sergionoviello.com/</a><br />
<a href="http://nathan-sanders.com/" target="_blank">http://nathan-sanders.com/</a><br />
<a href="http://www.shannonmoeller.com/" target="_blank">http://www.shannonmoeller.com/</a><br />
<a href="http://www.jamisonbanham.com/" target="_blank">http://www.jamisonbanham.com/</a><br />
<a href="http://www.jasonreedwebdesign.com/" target="_blank">http://www.jasonreedwebdesign.com/</a><br />
<a href="http://sprawsm.com/" target="_blank">http://sprawsm.com/</a><br />
<a href="http://www.postmachina.com/" target="_blank">http://www.postmachina.com/</a></p>
<p>I could go on&#8230; Forever.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tidalware.com/2009/07/the-language-of-web-2-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What have we been&#160;doing?</title>
		<link>http://blog.tidalware.com/2009/06/what-have-we-been-doing/</link>
		<comments>http://blog.tidalware.com/2009/06/what-have-we-been-doing/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 23:02:01 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.tidalware.com/?p=114</guid>
		<description><![CDATA[For the most part, we haven&#8217;t had much to show or talk about since the last post. We&#8217;ve been hard at work writing code since our change of plans with TidalEngine, which I&#8217;ll explain below. That said, there&#8217;s been plenty of interesting stuff going on recently, so here&#8217;s a roundup of what we&#8217;ve been up [...]]]></description>
			<content:encoded><![CDATA[<p>For the most part, we haven&#8217;t had much to show or talk about since the last post. We&#8217;ve been hard at work writing code since our change of plans with TidalEngine, which I&#8217;ll explain below. That said, there&#8217;s been plenty of interesting stuff going on recently, so here&#8217;s a roundup of what we&#8217;ve been up to since.</p>
<p><strong>TidalEngine</strong><br />
<a href="http://www.tidalware.com/work/technology" target="_blank">TidalEngine</a> is being developed alongside <a href="http://www.tidalware.com/work/games/projectutopia" target="_blank">Project Utopia</a>. We decided to transform it into a generic game engine that can be reused for other projects. It was a tough move, and has reduced development speed drastically. But hopefully the hard work will pay off.</p>
<p>We designed it to be extensible, using a modular and add-on architecture. It is multi-tiered depending on what you need. At the bottom level is the utilities &#8211; math, events, templates etc. which can be used for pretty much any application. Next is the core engine which abstracts graphics input, GUI, physics etc. Standalone it can be used to create a wide range of offline games. It uses a plugin system, allowing dependencies to be hot-swapped. For example, we have an OpenAL and FMOD plugin &#8211; either can be loaded at runtime. At the highest level is networking. This is where all the online operations will be handled.</p>
<p><strong>Mobile Gaming</strong><br />
For a long time we have been carefully planning our pursuit of mobile development. Recently we started to put these plans into practice. We bought a brand new 24&#8243; <a href="http://www.apple.com/uk/imac/" target="_blank">iMac</a> especially for iPhone development. It will be a steep learning curve, as we&#8217;re PC junkies, but this is where most of our attention will be focused for the next few months. We plan on developing multiple titles, each increasingly challenging and complex. That&#8217;s about all we can say for now; we also put up a new <a href="http://www.tidalware.com/work/mobile" target="_blank">page</a>.</p>
<p><strong>Websites</strong><br />
We have a number of clients in discussions for possible websites, and a couple more which we&#8217;re beavering away at. I&#8217;m pleased with the positive response we&#8217;ve received until now, so fingers crossed! We&#8217;re actively trying to expand our <a href="http://www.tidalware.com/work/websites" target="_blank">portfolio</a>, so if you have a project in mind <a href="http://www.tidalware.com/contact" target="_blank">let us know</a>!</p>
<p><strong>TidalWare.com</strong><br />
Since my last blog post, I also took the opportunity to redesign <a href="http://www.tidalware.com/" target="_blank">our own website</a>. It looked fine already, but until I&#8217;m 110% happy, I&#8217;m not happy. So back to the drawing board it was, and I came up with something even more minimalistic, and a better menu system to squeeze in our increasing number of pages.</p>
<p>Shortly after, I submitted it to <a href="http://www.css-design-yorkshire.com/" target="_blank">CSS Design Yorkshire</a>, and what do you know, it got <a href="http://www.css-design-yorkshire.com/june2009.html" target="_blank">featured</a>! :D (There&#8217;s quite a few, so just search for &#8216;tidalware&#8217; or &#8216;June 08, 2009&#8242;)</p>
<p><strong>Conclusion</strong><br />
As you can tell, we&#8217;re always busy! If you want day-to-day updates of what we&#8217;re up to, be sure to <a href="http://twitter.com/tidalware" target="_blank">follow us on Twitter</a>. In the meantime I will try my best to blog more often. We removed the news page, so now every TidalWare news tidbit will be posted here.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tidalware.com/2009/06/what-have-we-been-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Game Republic Website&#160;Launched</title>
		<link>http://blog.tidalware.com/2009/02/game-republic-website-launched/</link>
		<comments>http://blog.tidalware.com/2009/02/game-republic-website-launched/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 12:15:29 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[game republic]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.tidalware.com/?p=74</guid>
		<description><![CDATA[Game Republic is an organisation which develops, funds and promotes the Yorkshire games industry. They have recently launched a brand new website which contains news, blogs, events and more. For those of you involved in the games industry living in the Yorkshire region, or simply have an interest in game development, we recommend you sign [...]]]></description>
			<content:encoded><![CDATA[<p>Game Republic is an organisation which develops, funds and promotes the Yorkshire games industry. They have recently launched a <a href="http://www.gamerepublic.org/" target="_blank">brand new website</a> which contains news, blogs, events and more. For those of you involved in the games industry living in the Yorkshire region, or simply have an interest in game development, we recommend you <a href="http://www.screenyorkshire.co.uk/gamerepublic/my-account" target="_blank">sign up</a> and take advantage of the many opportunities on offer.</p>
<p>Visit: <a href="http://www.gamerepublic.org/" target="_blank">http://www.gamerepublic.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tidalware.com/2009/02/game-republic-website-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Utopia Screenshots &amp; Game Republic&#160;Event</title>
		<link>http://blog.tidalware.com/2008/12/project-utopia/</link>
		<comments>http://blog.tidalware.com/2008/12/project-utopia/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 00:03:04 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[game republic]]></category>
		<category><![CDATA[mmorpg]]></category>
		<category><![CDATA[project utopia]]></category>

		<guid isPermaLink="false">http://blog.tidalware.com/?p=60</guid>
		<description><![CDATA[Well, it&#8217;s been quite a while since my last post. Let me jump straight into saying that I have added two new teaser screenshots of our new game codenamed &#8216;Project Utopia&#8217; on the homepage. I simply couldn&#8217;t resist. :) I&#8217;ve been working on the game only since June, pretty much by myself while concurrently steaming [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s been quite a while since my last post. Let me jump straight into saying that I have added two new teaser screenshots of our new game codenamed &#8216;Project Utopia&#8217; on the <a href="http://www.tidalware.com/" target="_blank">homepage</a>. I simply couldn&#8217;t resist. :) I&#8217;ve been working on the game only since June, pretty much by myself while concurrently steaming away at Project Velocity. As explained in the description on our website, it&#8217;s a huge undertaking. Developing a MMORPG is pretty much the most difficult piece of software engineering. Crazy? Probably. Achievable? Definitely.</p>
<p>We have huge plans for PU (I&#8217;m thinking I shouldn&#8217;t use that acronym). It has required many dozens of plans and documents to explain its direction. Unfortunately I&#8217;m not going to reveal too much at this moment, but maybe a little more than you already know. There&#8217;s one thing I&#8217;d like to clear up, however. It is NOT a pretty fantasy/medieval turn-based RPG. I could count all the grass blades in my sight and the amount of games in such genre will still outnumber them. Project Utopia will be a futuristic game with nothing more than what is scientifically possible. You won&#8217;t be playing humans, either.</p>
<p>That&#8217;s enough for now. ;) I&#8217;ll reveal more as time progresses. Not to alienate your hopes (NPI), but Project Utopia is still in <em>very</em> early stages. The screenshots may look nice, but graphics are only a tiny fraction of the battle. Also, progress will be extremely slow unless we can find more people. Even then, I&#8217;m not working on it full time. What <em>will</em> see the project to its finish is our sheer amount of determination.</p>
<p>On a different note, I&#8217;d like to remind everyone about the next <a href="http://www.gamerepublic.org/" target="_blank">Game Republic</a> event. It will be held in Leeds on the 12th of January, the subject being &#8220;The future of AI&#8221;. Unless my plans get screwed somehow, I will be attending the event. So if you&#8217;re into that kind of stuff and live in Yorkshire, I recommend you pop along and check it out. More details to follow.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tidalware.com/2008/12/project-utopia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
