<?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>Everything in Particular &#187; Uncategorized</title>
	<atom:link href="http://www.del337ed.com/blog/index.php/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.del337ed.com/blog</link>
	<description>Mostly tech talk</description>
	<lastBuildDate>Fri, 02 Apr 2010 03:26:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Taiwan Food Gifts</title>
		<link>http://www.del337ed.com/blog/index.php/2010/04/01/taiwan-food-gifts/</link>
		<comments>http://www.del337ed.com/blog/index.php/2010/04/01/taiwan-food-gifts/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 03:26:53 +0000</pubDate>
		<dc:creator>omatase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.del337ed.com/blog/?p=272</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<div class="ngg-albumoverview">	
	<!-- List of galleries -->
	
	<div class="ngg-album">
		<div class="ngg-albumtitle"><a href="http://www.del337ed.com/blog/index.php/2010/04/01/taiwan-food-gifts/?album=3&amp;gallery=8">Taiwan Food Gifts</a></div>
			<div class="ngg-albumcontent">
				<div class="ngg-thumbnail">
					<a href="http://www.del337ed.com/blog/index.php/2010/04/01/taiwan-food-gifts/?album=3&amp;gallery=8"><img class="Thumb" alt="Taiwan Food Gifts" src="http://www.del337ed.com/blog/wp-content/gallery/taiwan-food-gifts/thumbs/thumbs_all-yummies.jpg"/></a>
				</div>
				<div class="ngg-description">
				<p>A collection of photos showing food gifts received from friends in Taiwan as well as photos showing us enjoying them.</p>
								<p><strong>14</strong> Photos</p>
							</div>
		</div>
	</div>

 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.del337ed.com/blog/index.php/2010/04/01/taiwan-food-gifts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cherub &#8211; Latest Progress</title>
		<link>http://www.del337ed.com/blog/index.php/2010/02/18/cherub-latest-progress/</link>
		<comments>http://www.del337ed.com/blog/index.php/2010/02/18/cherub-latest-progress/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 05:40:35 +0000</pubDate>
		<dc:creator>omatase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.del337ed.com/blog/?p=226</guid>
		<description><![CDATA[Boy oh boy is it a lot of work creating a game. To that end I am actively recruiting if anyone is interested in helping. Here are the things I am needing help on.

Art
Requirements
Development

If anyone is interested please get in touch with me via comments on this post and I&#8217;ll provide more information.
On With the [...]]]></description>
			<content:encoded><![CDATA[<p>Boy oh boy is it a lot of work creating a game. To that end I am actively recruiting if anyone is interested in helping. Here are the things I am needing help on.</p>
<ul>
<li>Art</li>
<li>Requirements</li>
<li>Development</li>
</ul>
<p>If anyone is interested please get in touch with me via comments on this post and I&#8217;ll provide more information.</p>
<h2>On With the Show</h2>
<p>Ok, now for the meat of the article. I wanted to take time to clear my head and remark on the things I have completed in the last few weeks. I am sort-of at a stopping point and to better enable me to take stock of where I am and see where I&#8217;m going I am putting my progress down in print. I&#8217;ve decided to put this together in reverse chronological order for no particular reason.</p>
<h2>Statistics, Attributes and Formulas</h2>
<p>The last few weeks I have been focusing closely on the core components of the game&#8217;s strategy engine. Those components are primarily statistics, attributes and formulas.</p>
<p>I spent a very long time trying to come up with some answers to the most basic of questions in this area. What attributes do I want to use? I enumerated a few dozen or so on my site to start with, but did I really want to use them all? What do I want the different attributes to mean? What would be considered a high or low value for each attribute? Is 17 high, or low? Which attributes will go into which formulas and how do I want the formulas to work? Do I want to optimize for performance or control? A lot of these questions had dependencies on each other making them very difficult to answer.</p>
<p>Here is an example of the progression of the Cure 1 formula since early November 2009:</p>
<ul>
<li>200 * (<a title="Attribute - Intelligence" href="http://www.del337ed.com/CherubWiki/index.php?title=Attribute_-_Intelligence">Intelligence</a> / 10) + (Random Number between 1 and 55) &#8211; (Nov 4 2009)</li>
<li>((200 * max(1, (<a title="Intelligence" href="http://www.del337ed.com/CherubWiki/index.php?title=Intelligence">Intelligence</a> / 5))) / 10) + (level + max(55, (random(1~55) + luck))) &#8211; (Nov 5 2009)</li>
<li>((200 * Math.Max(1, ([in] / 5))) / 10) + (Level + Math.Min(20, (rand(1,20)+ [lu]))) &#8211; (Jan 27 2009)</li>
<li>[wi]+[mp] + rand(0,Level*10) &#8211; (Feb 17 2009)</li>
<li>[ms]+[mp] + rand(0,15) &#8211; (Feb 18 2009)</li>
</ul>
<p>As you can see over time it&#8217;s become much simpler. I do expect it will change a little still but it is definitely close to where I want it to be.</p>
<p>Coming to this conclusion has been necessary to be able to start the portion of the code that actually processes the round requests from the players as knowing this type of information ahead of time affects the design of the formula calculation engine.</p>
<p>I also had my brother help with an app that will accept a formula (like those typed above) and, given a formulaic or static rate of increase for the attributes in question, will show you how the formula performs progressively over different levels. I&#8217;ll ultimately port this app to web so that it can be accessed from the wiki, but for now I have included the graphed output of the app in the spell pages for which I have formulas ready. One is right <a title="here" href="http://www.del337ed.com/CherubWiki/index.php?title=Cure_1" target="_blank">here</a>.</p>
<p>Figuring the Cure 1 formula out to this depth required I decide which attributes I was going to use and what they were going to do. I now have the attributes I plan on using in the game highlighted with an orange background on the <a title="attributes page" href="http://www.del337ed.com/CherubWiki/index.php?title=Attributes" target="_blank">attributes page</a>. Additionally I have put a screen print of a visio on that page showing how the attributes should be used throughout the game as well as some ideas for dealing with cheaters (or stats boosting).</p>
<h2>Contributor Kit</h2>
<p>I don&#8217;t want to go into details on the plans behind the contributor kit, but it is basically an app or suite of apps that will give members of the community the ability to contribute to the game with artwork or other things.</p>
<p>I spent a few weeks on this kit and am just about 1/2 way through a product that will allow someone to generate XML output based on a spritesheet that Cherub can use for stills and animations. It is also something I will probably use during development although I don&#8217;t yet have any artwork for my game&#8230;. yes I&#8217;m working on it! <img src='http://www.del337ed.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>until next time!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.del337ed.com/blog/index.php/2010/02/18/cherub-latest-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TheForm is undefined / not defined error in asp.net</title>
		<link>http://www.del337ed.com/blog/index.php/2009/01/24/theform-is-undefined-not-defined-error-in-aspnet/</link>
		<comments>http://www.del337ed.com/blog/index.php/2009/01/24/theform-is-undefined-not-defined-error-in-aspnet/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 03:22:57 +0000</pubDate>
		<dc:creator>omatase</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.del337ed.com/blog/?p=83</guid>
		<description><![CDATA[`I just spent about 3 hours trying to fix this error with the LoginStatus control. The control updates fine when I log in, but when I click the &#8220;Logout&#8221; link on the LoginStatus control I wasn&#8217;t getting a postback. After a little more looking I noticed I was getting a javascript error whenever I clicked [...]]]></description>
			<content:encoded><![CDATA[<p>`I just spent about 3 hours trying to fix this error with the LoginStatus control. The control updates fine when I log in, but when I click the &#8220;Logout&#8221; link on the LoginStatus control I wasn&#8217;t getting a postback. After a little more looking I noticed I was getting a javascript error whenever I clicked Logout. The error I was getting was &#8220;TheForm is undefined&#8221;. I googled and googled and googled and ultimately I didn&#8217;t find the fix for my problem on google but I did find a lot of different solutions to the problem. I am consolidating them with the solution for me all in one place so that hopefully noone else has to go through this.<br />
Scenario 1</p>
<p>Make sure when including external Javascript files like so:</p>
<p>[code lang='html']<br />
<script type="text/javascript" language="javascript" src="javascriptFile.js">
[/code]</p>
<p>That you DO NOT self close (i.e. ...src="javascript.js" /&gt;) but that you include a close tag. The above example would look like:</p>
<p>[code lang='html']
<script type="text/javascript" language="javascript" src="javascriptFile.js"></script>[/code]<br />
Scenario 2</p>
<p>The script created by Asp.Net references your form by id. Make sure your form id matches what is shown in the javascript generated. For instance mine had to be named Aspnetform so I made sure it looked like:</p>
<p>[code lang='html']<br />
<form id="Aspnetform"  runat="server">[/code]</p>
<p>I also read that the id is case sensitive so make sure that is correct as well.<br />
Scenario 3</p>
<p>Make sure your form has a runat="server" attribute as follows</p>
<p>[code lang='html']</p>
<form id="Aspnetform" runat="server">[/code]<br />
Scenario 4</p>
<p>This is the one that got me. I had my form defined outside of my &lt;body&gt; tag. My HTML looked like this:</p>
<p>[code lang='html']</p>
<form id="Aspnetform" runat="server">
<body><br />
</body><br />
</form>
<p>[/code]</p>
<p>This will not work. Swap the order of your tags to be thusly:</p>
<p>[code lang='html']<body></p>
<form id="Aspnetform" runat="server">
</form>
<p></body>[/code]</p>
<p>Hope this helps someone else.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.del337ed.com/blog/index.php/2009/01/24/theform-is-undefined-not-defined-error-in-aspnet/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
