<?xml version="1.0" encoding="ISO-8859-1"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xml:lang="en-US">
	<title>Building small big things</title>
	<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php" />
	<modified>2012-02-06T06:04:34Z</modified>
	<author>
		<name>Jeff</name>
	</author>
	<copyright>Copyright 2012, Jeff</copyright>
	<generator url="http://www.sourceforge.net/projects/sphpblog" version="0.5.1">SPHPBLOG</generator>
	<entry>
		<title>A play through on Easy</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry100613-161645" />
		<content type="text/html" mode="escaped"><![CDATA[<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/i6IaPXITI_s&hl=en_US&fs=1&rel=0&color1=0x402061&color2=0x9461ca"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/i6IaPXITI_s&hl=en_US&fs=1&rel=0&color1=0x402061&color2=0x9461ca" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry100613-161645</id>
		<issued>2010-06-13T00:00:00Z</issued>
		<modified>2010-06-13T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Dungeon Logica is now listed in the Itunes App Store!!!</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry100610-205521" />
		<content type="text/html" mode="escaped"><![CDATA[<a href="http://itunes.apple.com/us/app/dungeon-logica/id375065339?mt=8" target="_blank" >FIND IT HERE</a><br /><br /><img src="http://a1.phobos.apple.com/us/r1000/016/Purple/91/12/84/mzl.kphvjhoc.320x480-75.jpg" width="480" height="320" border="0" alt="" /><br /><img src="http://a1.phobos.apple.com/us/r1000/012/Purple/de/9c/34/mzl.bvdoohfi.320x480-75.jpg" width="480" height="320" border="0" alt="" />]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry100610-205521</id>
		<issued>2010-06-11T00:00:00Z</issued>
		<modified>2010-06-11T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Open Tool Chain and C++ Standard Template Libray</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry090315-195439" />
		<content type="text/html" mode="escaped"><![CDATA[The open Tool Chain headers convientely omit some critical STL headers so only basic C++ code could be used.  Various samples provided by Apple that use OpenAL, are in C++ and also use STL.  I copied the missing STL headers (map, vector, ...) over to the iPhone and updated my make file with the following settings for c++ compiling.<br /><br /><code><br />LDFLAGS += -lstdc++<br /><br />CXXFLAGS := $(CFLAGS) -lz -x c++ -I&quot;/var/include/c++/4.0.0&quot; -I&quot;/var/include/c++/4.0.0/arm-apple-darwin9&quot;<br /></code><br /><br />]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry090315-195439</id>
		<issued>2009-03-15T00:00:00Z</issued>
		<modified>2009-03-15T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Prefix.pch and how to use it in open toolchain</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry090308-162157" />
		<content type="text/html" mode="escaped"><![CDATA[Most if not all of the sample apps provided with the iphone SDK use a prefix.pch file which, under Xcode would be handled as a precompiled prefix header included with all source files.<br /><br />I searched all over to see if anyone had already handled it but come up empty.<br /><br />This is what I came up with to properly include the prefix header and also have it precompiled.<br /><br /><blockquote><code><br />%.o:	%.m Prefix.pch.gch<br />	$(CC) -include Prefix.pch -c $(CFLAGS) $&lt; -o $@<br /><br />%.o:	%.cpp Prefix.pch.gch<br />	$(CXX) -include Prefix.pch -c $(CXXFLAGS) $&lt; -o $@<br />	<br />Prefix.pch.gch: Prefix.pch<br />	$(CC) -x objective-c-header $(CFLAGS) Prefix.pch<br /></code></blockquote><br /><br />It adds the Prefix.pch.gch as a dependence and then includes it when creating an object file.]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry090308-162157</id>
		<issued>2009-03-08T00:00:00Z</issued>
		<modified>2009-03-08T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Ported TouchFighter to open Tool chain</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry090301-224144" />
		<content type="text/html" mode="escaped"><![CDATA[<img src="images/touchfighter.jpg" width="480" height="271" border="0" alt="" /><br />I came across the source for TouchFighter on the Apple developer website and I have ported everything but the audio (openAL) to use the open tool chain.<br /><br />Still trying to figure out if it is even possible to compile the soundengine.cpp, which requires STL.  I had the same problem with the CrashLanding code, which I just skipped, and commented out all sound calls.]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry090301-224144</id>
		<issued>2009-03-02T00:00:00Z</issued>
		<modified>2009-03-02T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Ported some of the Apple IPhone SDK samples to use the open tool chain</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry090222-200941" />
		<content type="text/html" mode="escaped"><![CDATA[For some, I use a Mac to create the Nib file, but others didn&#039;t need it.<br /><br />GLGravity<br />GLSprite<br />CrashLanding (No longer available as part of the SDK, but I had an old version)<br />GLPaint<br />]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry090222-200941</id>
		<issued>2009-02-23T00:00:00Z</issued>
		<modified>2009-02-23T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Found a ported version IPhone Sample UICatalog</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry090221-232046" />
		<content type="text/html" mode="escaped"><![CDATA[It does not use a NIB file, which can only be generated on a Mac using the ibtool.<br /><br />It can be found here: <a href="http://iphonesdkdev.blogspot.com/2009/01/uicatalog-makefile-for-apple-sample.html" target="_blank" >Apple IPhone SDK Ported UICatalog</a>]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry090221-232046</id>
		<issued>2009-02-22T00:00:00Z</issued>
		<modified>2009-02-22T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Developing iPhone apps requires an Apple computer...</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry090215-231214" />
		<content type="text/html" mode="escaped"><![CDATA[...and if you own an iphone, then you have one!<br /><br />I came across an <a href="http://antirez.com/page/iphone-gcc-guide.html" target="_blank" >Open Tool Chain</a> that allows direct development on the iPhone.<br /><br />]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry090215-231214</id>
		<issued>2009-02-16T00:00:00Z</issued>
		<modified>2009-02-16T00:00:00Z</modified>
	</entry>
	<entry>
		<title>Yet another article stating that there is money to be made with iPhone apps.</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry081214-125539" />
		<content type="text/html" mode="escaped"><![CDATA[<strong>There&#039;s Gold In Them iPhones</strong><br /><img src="http://ndn2.newsweek.com/media/29/081212_BZ02lyons_dl-vertical.jpg" width="300" height="300" border="0" alt="" /><br />Some kid in his bedroom can make a million bucks just by writing a little application for the Apple phone. <a href="http://www.newsweek.com/id/174266" target="_blank" >Read More</a>]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry081214-125539</id>
		<issued>2008-12-14T00:00:00Z</issued>
		<modified>2008-12-14T00:00:00Z</modified>
	</entry>
	<entry>
		<title>The IPhone App market</title>
		<link rel="alternate" type="text/html" href="http://www.dungeonlogica.com/index.php?entry=entry081211-232735" />
		<content type="text/html" mode="escaped"><![CDATA[<img src="http://cache.gawker.com/assets/images/gizmodo/2008/12/featured.png" width="480" height="374" border="0" alt="" /><br /><br />Seems the market is flooded with 99 cent apps.  So much so, the only way of discovery is off-site or being promoted by Apple.  I would really like Apple to come up with some type of single App trial system.  I am personally annoyed with all the free &#039;Lite&#039; apps that are really placeholders for trial versions.  Makes the App store twice as difficult to navigate.<br /><br />(Discovered at <a href="http://gizmodo.com/5107953/the-trouble-with-the-iphone-apps-business" target="_blank" >Gizmodo</a>)]]></content>
		<id>http://www.dungeonlogica.com/index.php?entry=entry081211-232735</id>
		<issued>2008-12-12T00:00:00Z</issued>
		<modified>2008-12-12T00:00:00Z</modified>
	</entry>
</feed>

