<?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>Shambling Rambling Babbling &#187; (dis)continutity</title>
	<atom:link href="http://www.caseyodonnell.org/blog/tag/unity-3d/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.caseyodonnell.org/blog</link>
	<description>This is a random collection of thoughts or notes that I've decided to collect here. Continuity is not my friend.</description>
	<lastBuildDate>Tue, 07 Feb 2012 01:05:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Complicating Things to Simplify Them</title>
		<link>http://www.caseyodonnell.org/blog/2010/04/28/complicating-things-to-simplify-them/</link>
		<comments>http://www.caseyodonnell.org/blog/2010/04/28/complicating-things-to-simplify-them/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 14:24:54 +0000</pubDate>
		<dc:creator>codonnell</dc:creator>
				<category><![CDATA[(dis)continutity]]></category>
		<category><![CDATA[Archive]]></category>
		<category><![CDATA[Complicate]]></category>
		<category><![CDATA[Simplify]]></category>
		<category><![CDATA[Unity 3D]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://www.caseyodonnell.org/blog/?p=486</guid>
		<description><![CDATA[I have a problem. I complicate things in order to simplify them. wxBlogger began that way, as did wxCURL, as did wxSync. Each began with the idea of simplifying some of the more mundane tasks that I do each day. Since I began working with Unity 3D, I&#8217;ve found on several occasions that using Mac OS X&#8217;s <a href='http://www.caseyodonnell.org/blog/2010/04/28/complicating-things-to-simplify-them/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I have a problem. I complicate things in order to simplify them. <a href="http://caseyodonnell.org/athens_uga/codework/wxblogger/" target="_blank">wxBlogger</a> began that way, as did <a href="http://wxcode.sourceforge.net/components/wxcurl/" target="_blank">wxCURL</a>, as did <a href="http://caseyodonnell.org/athens_uga/codework/wxsync/" target="_blank">wxSync</a>. Each began with the idea of simplifying some of the more mundane tasks that I do each day. Since I began working with <a href="http://unity3d.com/" target="_blank">Unity 3D</a>, I&#8217;ve found on several occasions that using Mac OS X&#8217;s built-in right-click &#8220;Compress &#8230;&#8221; did strange things, particularly with executable files, that would only be discovered by Windows users later. Global Game Jam 2009 this bit us. It&#8217;s bitten me several other times.</p>
<p>Now, theoretically, I could open the &#8220;Archive Utility&#8221; application housed in (/System/Library/CoreServices/) and change its preferences, instructing it to use the more Windows friendly &#8220;ZIP&#8221; format rather than&#8230; Well, whatever it does and calls &#8220;.zip&#8221;. But, that would be simple, right? What would be interesting about that solution?</p>
<p>Thus I taught myself a little Apple Script and whipped up what I&#8217;ve called &#8220;<a href="http://caseyodonnell.org/files/WinZip.app.zip">WinZip</a>,&#8221; which is clearly not this <a href="http://www.winzip.com/index.htm" target="_blank">WinZip</a>. My little deal is a Mac App / Apple Script that does the work of making a Windows compatible ZIP file for you without having to know the commands or do it yourself in the Terminal. The source code and application are all released under the <a href="http://www.wxwidgets.org/about/newlicen.htm" target="_blank">wxWidgets License</a>.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p486code2'); return false;">View Code</a> APPLESCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4862"><td class="code" id="p486code2"><pre class="applescript" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">-- WinZip for Mac OS X</span>
<span style="color: #808080; font-style: italic;">-- Casey O'Donnell</span>
<span style="color: #808080; font-style: italic;">-- http://www.caseyodonnell.org/</span>
<span style="color: #808080; font-style: italic;">-- This script takes a dropped file (or several) and compresses them in a Windows</span>
<span style="color: #808080; font-style: italic;">-- compatible format using the &quot;ditto&quot; command.</span>
<span style="color: #808080; font-style: italic;">--</span>
<span style="color: #808080; font-style: italic;">-- The source and the application are released under the wxWidgets Licence, which</span>
<span style="color: #808080; font-style: italic;">-- can be found here: http://www.wxwidgets.org/about/newlicen.htm</span>
<span style="color: #ff0033; font-weight: bold;">on</span> <span style="color: #0066ff;">open</span> fileList
	<span style="color: #ff0033; font-weight: bold;">set</span> szPathName <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> szPathDest <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">repeat</span> <span style="color: #ff0033; font-weight: bold;">with</span> i <span style="color: #ff0033; font-weight: bold;">in</span> fileList
		<span style="color: #ff0033; font-weight: bold;">set</span> szPathName <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">quoted form</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">POSIX path</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #000000;">&#40;</span>i <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span><span style="color: #000000;">&#41;</span>
&nbsp;
		<span style="color: #ff0033; font-weight: bold;">set</span> iLength <span style="color: #ff0033; font-weight: bold;">to</span> length <span style="color: #ff0033; font-weight: bold;">of</span> szPathName
		<span style="color: #ff0033; font-weight: bold;">set</span> szLastChars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033; font-weight: bold;">get</span> characters <span style="color: #000000;">&#40;</span>iLength <span style="color: #000000;">-</span> <span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033;">thru</span> <span style="color: #000000;">&#40;</span>iLength <span style="color: #000000;">-</span> <span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">of</span> szPathName
&nbsp;
		<span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>szLastChars <span style="color: #ff0033;">contains</span> <span style="color: #009900;">&quot;/&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> szPathDest <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033; font-weight: bold;">get</span> characters <span style="color: #000000;">1</span> <span style="color: #ff0033;">thru</span> <span style="color: #000000;">&#40;</span>iLength <span style="color: #000000;">-</span> <span style="color: #000000;">2</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">of</span> szPathName
			<span style="color: #ff0033; font-weight: bold;">set</span> szPathDest <span style="color: #ff0033; font-weight: bold;">to</span> szPathDest <span style="color: #000000;">&amp;</span>amp; <span style="color: #009900;">&quot;.zip'&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> szPathDest <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033; font-weight: bold;">get</span> characters <span style="color: #000000;">1</span> <span style="color: #ff0033;">thru</span> <span style="color: #000000;">&#40;</span>iLength <span style="color: #000000;">-</span> <span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">of</span> szPathName
			<span style="color: #ff0033; font-weight: bold;">set</span> szPathDest <span style="color: #ff0033; font-weight: bold;">to</span> szPathDest <span style="color: #000000;">&amp;</span>amp; <span style="color: #009900;">&quot;.zip'&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
&nbsp;
		<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Terminal&quot;</span>
			do <span style="color: #ff0033; font-weight: bold;">script</span> <span style="color: #009900;">&quot;ditto -c -k -X &quot;</span> <span style="color: #000000;">&amp;</span>amp; szPathName <span style="color: #000000;">&amp;</span>amp; <span style="color: #009900;">&quot; &quot;</span> <span style="color: #000000;">&amp;</span>amp; szPathDest <span style="color: #000000;">&amp;</span>amp; <span style="color: #009900;">&quot;; exit&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">repeat</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #0066ff;">open</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.caseyodonnell.org/blog/2010/04/28/complicating-things-to-simplify-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Inadvertantly) Pimping Unity3D at SIEGE</title>
		<link>http://www.caseyodonnell.org/blog/2009/10/06/inadvertantly-pimping-unity3d-at-siege/</link>
		<comments>http://www.caseyodonnell.org/blog/2009/10/06/inadvertantly-pimping-unity3d-at-siege/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 15:58:39 +0000</pubDate>
		<dc:creator>codonnell</dc:creator>
				<category><![CDATA[(dis)continutity]]></category>
		<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[Game Development]]></category>
		<category><![CDATA[SIEGE]]></category>
		<category><![CDATA[Unity 3D]]></category>

		<guid isPermaLink="false">http://www.caseyodonnell.org/blog/?p=301</guid>
		<description><![CDATA[Well, this weekend was a whirlwind of activity at SIEGE in Atlanta. I ended up speaking at two different panels, one explicitly about Unity 3D and the other, ostensibly, about physics. Though it wasn&#8217;t my intention, the Unity 3D Panel ended up being mostly a Unity 3D love-in after Tom Higgins managed to handle the <a href='http://www.caseyodonnell.org/blog/2009/10/06/inadvertantly-pimping-unity3d-at-siege/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Well, this weekend was a whirlwind of activity at <a href="http://www.siegecon.net/SIEGE2009/" target="_blank">SIEGE in Atlanta</a>. I ended up <a href="http://www.siegecon.net/SIEGE2009/index.php?option=com_content&amp;view=article&amp;id=357&amp;Itemid=68" target="_blank">speaking at two different panels</a>, one explicitly about Unity 3D and the other, ostensibly, about physics. Though it wasn&#8217;t my intention, the <a href="http://www.siegecon.net/SIEGE2009/index.php?option=com_content&amp;view=article&amp;id=307&amp;Itemid=68" target="_blank">Unity 3D Panel</a> ended up being mostly a Unity 3D love-in after <a href="http://blogs.unity3d.com/2009/10/06/siege-2009-my-brief-trip-report/" target="_blank">Tom Higgins</a> managed to handle the majority of our complaints prior to the actual start of the session. Items such as SVN support and other components supposed to part of Unity 3D 2.6 as well as a future fusion of Unity 3D and Unity 3D iPhone came as music to most of our ears. Even the physics panel had some Unity love. I got to plead with the audience to not write their own physics engines, though I&#8217;m sure someone out in the audience will proceed to roll their own just for the fun of it and spend months debugging it when they could have just sat down and started playing with Box 2D or some other physics engine and had much more fun.</p>
<p>Ultimately though, it is the kind of response that Tom gave us, and the user community that makes Unity 3D what it is. There was some interesting discussion if the fact that Unity 3D started out as a Mac project by Mac developers set a kind of initial trajectory for the developers and users that makes it particularly friendly and collaborative, especially compared to other user communities that often times seem less receptive to learning users. Hopefully Unity 3D can maintain that attitude.</p>
<p>Oh. And <a href="http://unity3d.com/support/resources/unity-extensions/explosion-framework" target="_blank">Ben&#8217;s Detonator framework</a> is the bomb. Sorry, bad pun.</p>
<p>Also while at SIEGE I received some excellent feedback on <a href="http://osyosmosis.com/" target="_blank">Osy</a> from one of my favorite designers, <a href="http://teachingdesign.blogspot.com/" target="_blank">Ian Schreiber</a>. We also had an excellent extended conversation about teaching game design in the college setting. Something we&#8217;ve both found to be an important topic. This of course spilled over to an extent into the education panel round table. But ultimately I was somewhat saddened by the lack of attendance at the experimental game panel, something at GDC that is continually packed and near and dear to seasoned developers hearts. I guess not enough folks have taken lumps yet to really love experimental design&#8230;</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">http://www.siegecon.net/SIEGE2009/</div>
]]></content:encoded>
			<wfw:commentRss>http://www.caseyodonnell.org/blog/2009/10/06/inadvertantly-pimping-unity3d-at-siege/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

