<?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>Pirate Patch Plog</title>
	<atom:link href="http://www.piratepatchproductions.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.piratepatchproductions.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 12 Apr 2012 02:00:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Scripting Language</title>
		<link>http://www.piratepatchproductions.com/blog/?p=72</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=72#comments</comments>
		<pubDate>Thu, 12 Apr 2012 02:00:52 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=72</guid>
		<description><![CDATA[One of my strongest desires for Sophistry was to have a strong scripting language that allowed a wide variety of interactions with the game world that, after a bit of effort to code initially, would be easy to create via external text files. After a month and a half or so of concentration on my [...]]]></description>
			<content:encoded><![CDATA[<p>One of my strongest desires for Sophistry was to have a strong scripting language that allowed a wide variety of interactions with the game world that, after a bit of effort to code initially, would be easy to create via external text files.</p>
<p>After a month and a half or so of concentration on my other project (Untitled Retro FPS) I&#8217;ve returned to sophistry with some strong ideas to make this element stronger.</p>
<p>The first part was pretty easy &#8211; make it easier to create the files. They are simply text files, so any editor will do, but what if you can&#8217;t remember how the language works? Even though I created it, this is more frequently a problem than I would hope.</p>
<p>I had the choice of making my own script editor but, after spending over 20 hours making a textbox control for my other project, I decided I wasn&#8217;t up for more fiddling around with string manipulation and selection and line breaks and all the rest of it. There had to be a simpler way!</p>
<p>Turns out, there was. One of the benefits of modern powerful computers is that programmers have a need to bloat their software to use it all up. So modern text editors support custom syntax highlighting! In fairness, this is actually a perfectly reasonable feature to add to a text editor.</p>
<p>I&#8217;m a regular user of NotePad++ and its custom syntax highlighting turned out to be perfectly suited to my needs. After a quick definining of my currently used words (and the colours in which to draw them), as well as string containers, and the below screenshot is the result! It even supports code collapsing for IF statements! And shows invalid commands with a big red background!</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.piratepatchproductions.com/blog/wp-content/uploads/2011/12/soph-20120412-scripting.png"><img src="http://www.piratepatchproductions.com/blog/wp-content/uploads/2011/12/soph-20120412-scripting-300x207.png" alt="Image of NotePad++ with syntax highlighting for Sophistry scripting" title="soph-20120412-scripting" width="300" height="207" class="size-medium wp-image-81" /></a><p class="wp-caption-text">Scripting in NotePad++ with custom syntax highlighting</p></div>
<p>The second step was to make the actual code that handled the scripts more robust. It worked perfectly fine if you made no errors in your scripts (well, it does now I&#8217;ve fixed the bugs I&#8217;ve discovered as part of the process I am about to describe) but if you didn&#8217;t the results could be unexpected. References to the script&#8217;s target could resolve to the player object if you spelled it wrong or put in rubbish. You could put in a reference to a thing in the world instead of a buff&#8217;s id, causing an error. You could include extra parameters (or not enough) and strange things could happen. These problems are easy to fix, but only if you know about them. As it was, the script parser was just &#8220;having a go&#8221; and using SOME data, even if it really shouldn&#8217;t.</p>
<p>So now I am implementing &#8220;typing&#8221; for scripts. Instead of just seeing &#8220;ITEMGIVE&#8221; and the scripter assuming the rest of the text on the line is appropriate, I will define to the script module what parameters (and how many) each type of command SHOULD have so checking (and error reporting) can be done when the script is first loaded, and then anything dependent on the specific instance of the script (trigger, target, etc) can be checked again when it&#8217;s actually run.</p>
<p>This isn&#8217;t terribly exciting stuff, but I expect it to pay off huge divedends when I&#8217;m deep in the content creation phase and don&#8217;t have to deal with mysterious errors cropping up seemingly at random.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=72</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new WIP shot</title>
		<link>http://www.piratepatchproductions.com/blog/?p=66</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=66#comments</comments>
		<pubDate>Tue, 13 Dec 2011 08:28:31 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=66</guid>
		<description><![CDATA[I&#8217;ve been working on making my game feel less like a tech demo and more like a game by adding stats, equipment that give you stats like armour, damage that is dependent on the weapon you are wielding, and so forth. I&#8217;ve even started with experience points! I&#8217;ve made the editor a bit more functional [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on making my game feel less like a tech demo and more like a game by adding stats, equipment that give you stats like armour, damage that is dependent on the weapon you are wielding, and so forth. I&#8217;ve even started with experience points!</p>
<p>I&#8217;ve made the editor a bit more functional &#8211; you can now edit the amount of light in a sector in a slightly dodgy way as well as place things in &#8220;sub sectors&#8221; &#8211; the four corners of a main sector. This will allow little enemies (dare I say giant rats?) to gang up on you by having a whole heap of them surround you.</p>
<p>Here&#8217;s a WIP shot!<br />
<div id="attachment_69" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.piratepatchproductions.com/blog/wp-content/uploads/2011/11/soph05-wip-2011-12-13.png"><img src="http://www.piratepatchproductions.com/blog/wp-content/uploads/2011/11/soph05-wip-2011-12-13-300x232.png" alt="WIP shot 2011-12-13" title="soph05-wip-2011-12-13" width="300" height="232" class="size-medium wp-image-69" /></a><p class="wp-caption-text">WIP shot 2011-12-13</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=66</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripting</title>
		<link>http://www.piratepatchproductions.com/blog/?p=62</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=62#comments</comments>
		<pubDate>Tue, 22 Nov 2011 04:26:28 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=62</guid>
		<description><![CDATA[The scripting language I&#8217;ve written for Sophistry previously used a whole bunch of &#8220;goto&#8221;s, which isn&#8217;t exactly the cleanest way to navigate code. So I added IFs, ELSEIFs, and ELSEs! The scripting language is now like an extremely slow version of a forty year old programming language &#8211; I&#8217;m pretty pleased! I&#8217;ve also started working [...]]]></description>
			<content:encoded><![CDATA[<p>The scripting language I&#8217;ve written for Sophistry previously used a whole bunch of &#8220;goto&#8221;s, which isn&#8217;t exactly the cleanest way to navigate code. So I added IFs, ELSEIFs, and ELSEs! The scripting language is now like an extremely slow version of a forty year old programming language &#8211; I&#8217;m pretty pleased!</p>
<p>I&#8217;ve also started working on allowing things in sectors to live in &#8220;sub cells&#8221;. Essentially that means objects can be in the NW corner, the NE corner, the SW corner, the SE corner, or smack dab in the centre of it. Previously everything was always in the centre and it looked a bit funny when you turned around while in the same sector as another thing &#8211; it made the other thing look like it was orbiting all around you because it would always appear to be sitting right in front of you no matter your orientation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixed that bug!</title>
		<link>http://www.piratepatchproductions.com/blog/?p=58</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=58#comments</comments>
		<pubDate>Tue, 08 Nov 2011 23:26:42 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=58</guid>
		<description><![CDATA[Turns out that resizing an array while you have live references to that array can cause bad things to happen. Who would have guessed? What was happening was that every time a script was to be added the entire &#8220;Current Scripts&#8221; array of script parsing objects would have an additional member stuck at the end. [...]]]></description>
			<content:encoded><![CDATA[<p>Turns out that resizing an array while you have live references to that array can cause bad things to happen. Who would have guessed?</p>
<p>What was happening was that every time a script was to be added the entire &#8220;Current Scripts&#8221; array of script parsing objects would have an additional member stuck at the end. This caused funny results, but only sometimes and in some situations.</p>
<p>Now it adds it to a &#8220;pending&#8221; queue and adds everything that&#8217;s pending at the very end of the frame once all script processing is done.</p>
<p>I also fixed a few other things with scripting that I think may cause bugs down the line or at least looked wrong. I&#8217;m thinking while I&#8217;ve got my head around the scripting system I&#8217;ll make it a bit cleaner, in general. I have been doing a cleaning pass of all my code but had skipped the scripting for now &#8211; I guess this puts my focus back on it. Then I can move back to cleaning the rest of the code!</p>
<p>One day maybe I&#8217;ll be able to work on actual features or the game content itself!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=58</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>November Update</title>
		<link>http://www.piratepatchproductions.com/blog/?p=53</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=53#comments</comments>
		<pubDate>Mon, 07 Nov 2011 01:06:25 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=53</guid>
		<description><![CDATA[I&#8217;m getting more ambitious with my post titles. Since last update I have: Reorganised my code a fair bit, separating things and making it less of a big ball of yarn. Fixed some bugs! Made tooltips use a pretty header font. Well, it&#8217;s not that pretty. Jazzed up the interface slightly Editor now lets you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting more ambitious with my post titles.</p>
<p>Since last update I have:</p>
<ul>
<li>Reorganised my code a fair bit, separating things and making it less of a big ball of yarn.</li>
<li>Fixed some bugs!</li>
<li>Made tooltips use a pretty header font. Well, it&#8217;s not that pretty.</li>
<li>Jazzed up the interface slightly</li>
<li>Editor now lets you select width and height for new maps.</li>
<li>Added tab style buttons, used to switch between general inventory, quest items, and keys.</li>
<li>Discovered an incredibly annoying scripting bug that looks like it is living deep in the scripting system as the circumstances under which it crops up are incredibly strange &#8211; it shows up when you use a script command to add an item to the player&#8217;s inventory that itself has a script when added to an inventory that causes everything in the original script file to be repeated after the original item giving. But then it <b>won&#8217;t</b> do this if you add the item to a thing without any scripts. So it needs both of these things (item with an &#8220;added to inventory&#8221; script and a thing with any script) to happen. I think the script parser is getting confused now but an hour&#8217;s work last night at midnight couldn&#8217;t resolve it.</li>
</ul>
<p>Haven&#8217;t had much exciting happen lately, unfortunately. Done a bit more thinking about the game design and resolved a few problems in my head but code-wise I haven&#8217;t been adding any exciting features. I am trying to shape up the code a little before I start hacking it apart to fit new things in. The code re-organisation in the first dot point has been fairly extensive and also fairly helpful, so far, reducing the interconnectedness of all the parts of the program and, I think, reducing the chance for bugs down the line. It&#8217;s also exposed me to a few bugs or places where things haven&#8217;t been written as well as they could have been that I have fixed on my way through, as well.</p>
<p>I&#8217;m currently at version 0.3. Here are my goals for release 0.31:</p>
<ul>
<li>Persistant saving and loading of maps so you can move from one to another and it remembers the way things were when you come back. Actual &#8220;save games&#8221; not necessarily part of this aim but I will probably end up doing it at the same time as they should be fairly related.</li>
<li>Redo the way scripting works so it more explicitly tells what triggered it, so scripts can do different things depending on if it was triggered by a wall, by a thing in the world or by an item in the player&#8217;s inventory.</li>
<li>Let things in the world, rather than taking up an entire square, fit in to a corner of the square and have a slightly randomised position within it so that many little enemeis can be on a square in the same way the player&#8217;s party shares a square.</li>
<li>Maybe shops?</li>
</ul>
<p>This is a lot of features for a 0.01 version upgrade so I guess I don&#8217;t do a very good job of sorting out versions!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=53</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still Alive</title>
		<link>http://www.piratepatchproductions.com/blog/?p=54</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=54#comments</comments>
		<pubDate>Mon, 08 Aug 2011 03:58:57 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=54</guid>
		<description><![CDATA[Hey there. Been working both on Sophistry (the scripting got redone, amongst other things) and my retro FPS. Also been looking at DarkBasic Pro and 3D Game Studio for a possible future, higher tech, project. I should really add some information to the main website&#8230;]]></description>
			<content:encoded><![CDATA[<p>Hey there.</p>
<p>Been working both on Sophistry (the scripting got redone, amongst other things) and my retro FPS. Also been looking at DarkBasic Pro and 3D Game Studio for a possible future, higher tech, project.</p>
<p>I should really add some information to the main website&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=54</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new WIP shot!</title>
		<link>http://www.piratepatchproductions.com/blog/?p=51</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=51#comments</comments>
		<pubDate>Thu, 28 Apr 2011 10:24:20 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=51</guid>
		<description><![CDATA[Here&#8217;s something I should have done a while back but didn&#8217;t, a new WIP shot: Made a bit of progress over the last couple of days (think I&#8217;m coming off my side project binge) &#8211; the interface is a lot cleaner and more usable (you single click to interact rather than having silly little toolbars [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s something I should have done a while back but didn&#8217;t, a new WIP shot:</p>
<div id="attachment_50" class="wp-caption alignnone" style="width: 310px"><a href="http://www.piratepatchproductions.com/blog/wp-content/uploads/2011/04/sophwip-20110428.png"><img src="http://www.piratepatchproductions.com/blog/wp-content/uploads/2011/04/sophwip-20110428-300x232.png" alt="WIP Screenshot of Sophistry, 2011-04-28" title="sophwip-20110428" width="300" height="232" class="size-medium wp-image-50" /></a><p class="wp-caption-text">WIP Screenshot of Sophistry, 2011-04-28</p></div>
<p>Made a bit of progress over the last couple of days (think I&#8217;m coming off my side project binge) &#8211; the interface is a lot cleaner and more usable (you single click to interact rather than having silly little toolbars pop up &#8211; witness the talking icon for the &#8220;Wounded Old Man&#8221; (who is actually a square) in the screenshot).</p>
<p>Most of the screenshot actually works, rather than being a placeholder, the exceptions being the entire &#8220;Navigation&#8221; pane, the &#8220;Party&#8221; frame, and, the EP, CP and Experience bars for the player. Everything else is pretty much working.</p>
<p>Once I redo the scripting system and add saving/loading the real core of the engine should be more or less complete (I say with complete overconfidence). As you can see I still have a lot of drawing to go if I don&#8217;t want this to be adventures in blockland&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=51</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Side Projects</title>
		<link>http://www.piratepatchproductions.com/blog/?p=47</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=47#comments</comments>
		<pubDate>Mon, 14 Mar 2011 23:53:55 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=47</guid>
		<description><![CDATA[I got a fair bit more work done on Sophistry up to the 4th of February when I went on holiday to Vietnam &#8211; pretty interesting place. Since I got back, though, I haven&#8217;t worked on it. Instead, I&#8217;ve been working on a side project I&#8217;ve had going for a couple of years that I [...]]]></description>
			<content:encoded><![CDATA[<p>I got a fair bit more work done on Sophistry up to the 4th of February when I went on holiday to Vietnam &#8211; pretty interesting place.</p>
<p>Since I got back, though, I haven&#8217;t worked on it. Instead, I&#8217;ve been working on a side project I&#8217;ve had going for a couple of years that I work on in infrequent bursts &#8211; an old style (think Wolf 3d) FPS made with Game Maker. It&#8217;s an interesting break because the coding in Game Maker is completely different to FreeBasic (more C style syntax, and more object oriented in its own weird way) and an action game which is all about physics and collisions and animation is different to an extremely data driven game like a turn based RPG &#8211; half of my code in Sophistry seems to be cycling through arrays whereas I&#8217;ve only got about three loops in the entirety of my shooter.</p>
<p>It&#8217;s a good way to have a break without forcing myself to work on the same project over and over and get burned out.</p>
<p>I don&#8217;t even know which project will get released first &#8211; in terms of overall completion the FPS is much closer to being ready, but then, a lot less work is required.</p>
<p>I haven&#8217;t fully worked out a plot yet but I want it to be a colourful, pulpish science fiction story with visible bullets and no hitscan weapons &#8211; that is, there are no instant shots &#8211; you can always dodge what the enemy throws at you. I want the game to be about skillfully avoiding the enemy&#8217;s attaks while attacking yourself, rather than just trying to kill the enemy as quickly as possible and then healing up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=47</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 Annual Update</title>
		<link>http://www.piratepatchproductions.com/blog/?p=43</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=43#comments</comments>
		<pubDate>Mon, 24 Jan 2011 06:17:46 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=43</guid>
		<description><![CDATA[These joke titles that end up being serious just keep on getting better, don&#8217;t they? It&#8217;s been eleven months since my last update and I&#8217;ve achieved a fair bit with Sophistry. Not as much as I&#8217;d have liked to (My records tell me I did nothing between March and September last year, some of which [...]]]></description>
			<content:encoded><![CDATA[<p>These joke titles that end up being serious just keep on getting better, don&#8217;t they?</p>
<p>It&#8217;s been eleven months since my last update and I&#8217;ve achieved a fair bit with Sophistry. Not as much as I&#8217;d have liked to (My records tell me I did nothing between March and September last year, some of which I spent working on side projects) but considerable progress regardless. It&#8217;s a good sign that now most of the work is implementing game features, rather than working on the nuts and bolts.</p>
<p>For instance:</p>
<ul>
<li>Items and Inventory now work, along with Equipment. You can pick an item off the ground, put it in your bag, equip it in your hand (and all items have slot restrictions), gain an effect from doing so, then drop it back on the ground. This includes spells, so you can move spells around your quickbar, MMO style. You&#8217;ll eventually be able to pull them out of your spellbook, once that&#8217;s implemented.</li>
<li>Created a GUI system. Labels, Pictures, Buttons, Inventories &#8211; it&#8217;s like a very crappy Visual Basic. But it does make adding new buttons and code to run when they are hit quite easy.</li>
<li>Buff system! Done just yesterday, you can now get buffs and they expire and create effects.</li>
<li>Pseudo real time system! Rather than going full turn based, which has the limitation of everything needing to be done in discrete chunks (so you can have a 1 turn spell, or a 2 turn spell, but not a 1.5 turn spell, which also makes it hard to react to things the enemy is doing with a, for instance, counterspell), or full turn based, which has the limitation of being too action packed and twitch based, now the game is real time, but only when you are doing something. So if you aren&#8217;t hitting any keys, time is frozen. When you start casting a spell everyone else moves in real time. This means you can cancel your own spell half way through if you see the enemy doing something interesting, consider your options, and then cast a quick spell that will give you more resistance against his attacks. It’ll let you get a 10% haste buff, so you move <i>slightly</i> faster than someone else. It’ll allow a lot of options.</li>
<li>Menus and game substates! Now you can open your journal, go to the main menu, look at your character stats, and all that fun stuff. Previously there was no concept of being able to do different things at different times.</li>
<li>Better data. The files for things, buffs, spells, items and so forth used to be in an awkward format and I was planning on creating a utility (probably in Visual Basic 5 – still wringing some value from a program I bought for a class in high school!) to deal with it. I’ve converted the files to be straight CSV (comma separated value – basically a poor man’s excel spreadsheet) and created an excel spreadsheet that generates the CSV and also allows validation and some other niceties to really speed up data creation. This will really help when I’m in the thick of game creation. Additionally, more values are taken from files rather than being hardcoded, now, like speed and health.</li>
<li>The player can now have conversations! With multiple responses, conditional responses (a response that shows only if you have high intelligence, for instance), custom portraits, and keyboard support.</li>
<li>Floors and roofs can now have individual graphics rather than the floor and roof just being a single graphic.</li>
<li>Cool modding support on a per-adventure basis. If your adventure requires that you have different graphics for orcs, then you just whack the graphic in a certain subfolder of your adventure and the game will preferentially use yours over the base game’s!</li>
<li>Much better mouse and keyboard code</li>
<li>More polish in general. Translucencies, tooltips, different colours, better interface, ability to scroll the combat log and other things.</li>
<li>Per cell lighting! Colours, darknesses, whatever! I plan to have lanterns and torches (and light spells!) you can carry around that dynamically light up the area. Some areas will be pitch black so you’ll need the help!</li>
</ul>
<p>I&#8217;m also enjoying reading over my old entries &#8211; it&#8217;s probably a bad sign that I post so infrequently that when I read them it seems like they were written by someone else.</p>
<p>Anyway, see you next year! Joking. Hopefully.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=43</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quarterly Update (Summer)</title>
		<link>http://www.piratepatchproductions.com/blog/?p=31</link>
		<comments>http://www.piratepatchproductions.com/blog/?p=31#comments</comments>
		<pubDate>Tue, 23 Feb 2010 12:42:47 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[sophistry]]></category>

		<guid isPermaLink="false">http://www.piratepatchproductions.com/blog/?p=31</guid>
		<description><![CDATA[The best part about these blog titles is how I&#8217;m not even joking. On the plus side, progress has been monstrous this past week &#8211; I&#8217;ve found a second wind and worked on Sophistry for a total of 23 hours since the 17th &#8211; and I&#8217;m working my job, as well. I don&#8217;t know what [...]]]></description>
			<content:encoded><![CDATA[<p>The best part about these blog titles is how I&#8217;m not even joking.</p>
<p>On the plus side, progress has been monstrous this past week &#8211; I&#8217;ve found a second wind and worked on Sophistry for a total of 23 hours since the 17th &#8211; and I&#8217;m working my job, as well. I don&#8217;t know what happened but my motivation has been up-up-up!</p>
<p>To give some scale to this productivity, in my tracking spreadsheet, I did 75 &#8220;things&#8221; (bug fixes, features etc) since the 17th, versus 150 since 18/12/2008 when I started the spreadsheet. Now, I haven&#8217;t done 33% of the total project in the last week (a lot of what I&#8217;ve done has been smaller things) but the progress has been incredible. The map editor is now mostly functional &#8211; it lets you edit wall textures, visibility, solidity and sector solidity. It lets you save and load maps. It lets you do all this from the integrated 3d view, if you want. The game is now telling the user exactly which wall they&#8217;re mousing over, and is easily expandable to floors, roofs and things as well &#8211; the basis of any combat targetting system! My file formats have been cleaned up and to include descriptive text, several things which were implemented as a hack have been implemented better, a lot of bugs I didn&#8217;t even know about have been found and killed, including a particularly embarrassing one where I wasn&#8217;t closing a file after opening it &#8211; it had been like that for months but had never become an issue because I was never loading more than a single map. I&#8217;ve also implemented minimap fog of war, simplified and made better the way it looks.</p>
<p>On a more game related front, I&#8217;ve sketched out the main quest and areas for the actual game portion of Sophistry, given me a good indication of where I need to go.</p>
<p>And that&#8217;s just the last week!</p>
<p>Before that and since the last update I&#8217;ve made a utility that automatically splits a large wall file into 30 small ones, and creates a text file for each, greatly reducing the size of images in memor as well as fixed a few bugs. But, to be honest, I didn&#8217;t do much in that time &#8211; all that work was concentrated over the span of a few days where I spent a considerable number of hours. Only four days from the 11/11/2009 to 17/02/2009 &#8211; I need to get better at that and not be diverted by side projects&#8230;</p>
<p>So what next?</p>
<p>Well, I want to give my file formats a once over and make sure everything&#8217;s OK but I think I&#8217;m pretty close to being able to create the content for the first act &#8211; it&#8217;s not too large but by doing that I&#8217;ll dig up any issues with the way things are currently being done as well as get started on implemented gameplay features so the player can do more than just walk around a dull looking map. On the same topic, I&#8217;ll also start creating some art so everything isn&#8217;t represented as a white box!</p>
<p>Basically, I&#8217;m very excited. Oh, and here&#8217;s a screenshot of how the game .exe looks as of today. Most of it is still placeholder art and what I said last time is still pretty true &#8211; Everything bar the mouse and its tooltip, the minimap, the 3d view and its tutorial message, the framerate counter and the text output window below the 3d view is basically still a mockup.</p>
<p><a href="http://www.piratepatchproductions.com/blog/wp-content/uploads/2010/02/soph03-2010-02-23.png"><img src="http://www.piratepatchproductions.com/blog/wp-content/uploads/2010/02/soph03-2010-02-23-300x232.png" alt="" title="soph03-2010-02-23" width="300" height="232" class="alignnone size-medium wp-image-30" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.piratepatchproductions.com/blog/?feed=rss2&#038;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

