<?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>adventure &#8211; Pages of Fun</title>
	<atom:link href="https://robertgomez.org/blog/tag/adventure/feed/" rel="self" type="application/rss+xml" />
	<link>https://robertgomez.org</link>
	<description>Robert Wm. Gomez&#039;s Website</description>
	<lastBuildDate>Fri, 02 May 2025 21:46:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://robertgomez.org/wp-content/uploads/2020/10/cropped-garland_logo-32x32.png</url>
	<title>adventure &#8211; Pages of Fun</title>
	<link>https://robertgomez.org</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Haunted House: Remastered</title>
		<link>https://robertgomez.org/blog/2020/02/05/haunted-house-remastered/</link>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Thu, 06 Feb 2020 03:48:11 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[apple2]]></category>
		<category><![CDATA[applesoft]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=3226</guid>

					<description><![CDATA[Followers of this site (ed. yeah like that&#8217;s a thing) will remember a few years ago I created a in-browser playable version of the Applesoft BASIC game Haunted House for this site. Over the past month or so I got it in my head to push my skills as a programmer and make a much more fully [&#8230;]]]></description>
										<content:encoded><![CDATA[<img width="1024" height="800" src="https://robertgomez.org/wp-content/uploads/2020/02/haunted-house-remastered.jpg" class="attachment-large size-large wp-post-image" alt="" style="display: block; margin: 0 0 14px 0;" decoding="async" fetchpriority="high" srcset="https://robertgomez.org/wp-content/uploads/2020/02/haunted-house-remastered.jpg 1024w, https://robertgomez.org/wp-content/uploads/2020/02/haunted-house-remastered-300x234.jpg 300w, https://robertgomez.org/wp-content/uploads/2020/02/haunted-house-remastered-768x600.jpg 768w, https://robertgomez.org/wp-content/uploads/2020/02/haunted-house-remastered-800x625.jpg 800w" sizes="(max-width: 1024px) 100vw, 1024px" />
<p>Followers of this site (ed. yeah like that&#8217;s a thing) will remember a few years ago I created a in-browser playable version of the Applesoft BASIC game <em><a href="https://robertgomez.org/blog/2012/11/08/haunted-house-text-adventure/" data-type="post" data-id="2600">Haunted House</a></em> for this site. Over the past month or so I got it in my head to push my skills as a programmer and make a much more fully realized version of the game. Today I am releasing my new version of the game, <em><a href="https://projects.robertgomez.org/haunted-house/">Haunted House: Remastered</a>!</em> It&#8217;s a vast improvement on the original in almost every way possible. In other words, it&#8217;s actually fun to play.</p>



<p>While it&#8217;s nowhere near the level of sophistication of an Infocom game, I think it does some pretty impressive stuff (for my skill level as a programmer). It&#8217;s still a two word parser, but the vocabulary is increased. There are full-page help screens, triggered story events, a retro-styled monochrome monitor look, and a bunch of scary sound effects! Please take a few minutes and <a href="https://projects.robertgomez.org/haunted-house/">give the game a try</a>. It&#8217;s not too long and I try to keep the puzzle reasonably fair.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Apple ][ Graphic Adventure Part III</title>
		<link>https://robertgomez.org/blog/2018/03/19/apple-graphic-adventure-part-iii/</link>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Mon, 19 Mar 2018 20:54:42 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[apple2]]></category>
		<category><![CDATA[applesoft]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=3003</guid>

					<description><![CDATA[The&#160;previous post in this series&#160;explained how to get&#160;Graphics Magician&#160;images to display from Applesoft. Now, I&#8217;d like to go over the structure of the program listed in&#160;Write your Own Adventure Programs. The bulk of the program listing consists of the game data including objects, room descriptions, verbs and state flags. Most of the remaining code is [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>The&nbsp;<a href="https://robertgomez.org/blog/2018/03/18/apple-graphic-adventure-part-ii/" data-type="post" data-id="3001">previous post in this series</a>&nbsp;explained how to get&nbsp;<em>Graphics Magician</em>&nbsp;images to display from Applesoft. Now, I&#8217;d like to go over the structure of the program listed in&nbsp;<em>Write your Own Adventure Programs</em>. The bulk of the program listing consists of the game data including objects, room descriptions, verbs and state flags. Most of the remaining code is comprised of a series of conditions that check how the player&#8217;s actions affect the objects in the game world.</p>



<h2 class="wp-block-heading">Verbs</h2>



<p><a href="https://robertgomez.org/blog/2012/11/08/haunted-house-text-adventure/" data-type="post" data-id="2600"><em>Haunted House</em></a>&nbsp;used a simple, two-word input parser: VERB NOUN.&nbsp;But I wanted this new game to simplify the number of verb choices in the same way the LucasArts adventures streamlined the interface of Sierra-style adventure games. The player will be limited to around a dozen verbs that are entered with a single keystroke.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="560" height="93" src="https://robertgomez.org/wp-content/uploads/2018/03/parser-help-list.jpg" alt="Apple II Adventure Parser Help List" class="wp-image-3005" srcset="https://robertgomez.org/wp-content/uploads/2018/03/parser-help-list.jpg 560w, https://robertgomez.org/wp-content/uploads/2018/03/parser-help-list-300x50.jpg 300w" sizes="(max-width: 560px) 100vw, 560px" /></figure>



<p>The verb list is largely based on the options in&nbsp;<em>Monkey Island</em>. PUSH and PULL have been combined into MOVE. To move you must hit&nbsp;<kbd>G</kbd>o then enter either&nbsp;<kbd>N</kbd>orth,&nbsp;<kbd>S</kbd>outh,&nbsp;<kbd>E</kbd>ast,&nbsp;<kbd>W</kbd>est,&nbsp;<kbd>U</kbd>p or&nbsp;<kbd>D</kbd>own. This is a little annoying, but there are only so many letters in on the keyboard and I needed that D, U and S elsewhere. Other commands require you to hit the keystroke, then type out an object NOUN and then hit&nbsp;<kbd>Return</kbd>. &#8220;Guess the verb&#8221; will no longer be an issue&#8230; welcome to 21st century &#8220;guess the noun&#8221; technology!</p>



<p>Each verb then get&#8217;s its own subroutine which contains the logic that triggers the various game actions (or provides a default message if nothing special happens). By assigning a number value&nbsp;<var>VB</var>&nbsp;to each verb, I can use the following to branch to the various subroutines:&nbsp;<code>ON VB GOSUB 1000,600,800,850, ...</code></p>



<h2 class="wp-block-heading">Game Data</h2>



<p>The game data is set in the program by assigning strings and numbers to several arrays. In Applesoft you need to declare the size of an array by dimensioning it with the <code>DIM</code> command. For the rooms I will set the size of the rooms array to the number of rooms <var>RM</var> by declaring <code>DIM RM$(RM)</code>. Then, near the start of my program I read data into the array by using <code>GOSUB</code> to a loop like this:</p>



<pre class="wp-block-code"><code>5000 DATA "Room description 1","Room Description 2", &#91;...]
5005 FOR I = 1 to RM : READ RM$(I) : NEXT
5010 RETURN</code></pre>



<p>The&nbsp;<code>DATA</code>&nbsp;can be listed anywhere in the code and it&#8217;s important to make sure that there are exactly as many data strings as&nbsp;<code>READ</code>&nbsp;commands. Otherwise, you might get&nbsp;<code>OUT OF DATA</code>&nbsp;errors.</p>



<p>This method of declaring rooms and object will eventually make your Applesoft program very long and hard to edit. I was pretty sure that I could figure out a way to read the data in from an external text file. But more on that later.</p>



<p><a href="https://robertgomez.org/blog/2018/03/21/apple-graphic-adventure-part-iv/" data-type="post" data-id="3008">Continued in Part IV</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Apple ][ Graphic Adventure Part I</title>
		<link>https://robertgomez.org/blog/2018/03/17/apple-graphic-adventure-part-i/</link>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Sat, 17 Mar 2018 20:48:52 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[apple2]]></category>
		<category><![CDATA[applesoft]]></category>
		<category><![CDATA[Graphics Magician]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=2995</guid>

					<description><![CDATA[Having recently played the Apple ][ game&#160;Transylvania&#160;and its&#160;sequel, I was inspired to&#160;mess with the art program which those games used.&#160;The Graphics Magician&#160;was a huge hit for Penguin Software, but I never actually had a chance to use it when we had an Apple ][. I just remember it being advertised in every computer magazine I [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Having recently played the Apple ][ game&nbsp;<a href="https://robertgomez.org/fun-stuff/games/transylvania/" data-type="game_review" data-id="2985"><em>Transylvania</em></a>&nbsp;and its&nbsp;<a href="https://robertgomez.org/fun-stuff/games/the-crimson-crown/" data-type="game_review" data-id="2990">sequel</a>, I was inspired to&nbsp;mess with the art program which those games used.&nbsp;<em>The Graphics Magician</em>&nbsp;was a huge hit for Penguin Software, but I never actually had a chance to use it when we had an Apple ][. I just remember it being advertised in every computer magazine I had.</p>



<p>My go to art program back in the day was always&nbsp;<em>Alpha Plot</em>&nbsp;from Beagle Bros. It wasn&#8217;t the easiest software to use. In fact, it came bundled with a cardboard overlay for your keyboard so you had an immediate reference as to what the various keys did. Still, I managed to draw pixel by pixel and create masterpieces like this:</p>



<figure class="wp-block-image size-large"><img decoding="async" width="560" height="384" src="https://robertgomez.org/wp-content/uploads/2018/03/alpha-plot-gross.png" alt="" class="wp-image-2997" srcset="https://robertgomez.org/wp-content/uploads/2018/03/alpha-plot-gross.png 560w, https://robertgomez.org/wp-content/uploads/2018/03/alpha-plot-gross-300x206.png 300w" sizes="(max-width: 560px) 100vw, 560px" /></figure>



<p><em>The Graphics Magician</em>&nbsp;is something altogether different though. Instead of meticulously drawing each point on the screen, you create images programatically using a language of lines, fills and brushes.&nbsp;The end product is what today we would call vector art.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="560" height="384" src="https://robertgomez.org/wp-content/uploads/2018/03/graphics-magician-weirdo.png" alt="" class="wp-image-2998" srcset="https://robertgomez.org/wp-content/uploads/2018/03/graphics-magician-weirdo.png 560w, https://robertgomez.org/wp-content/uploads/2018/03/graphics-magician-weirdo-300x206.png 300w" sizes="auto, (max-width: 560px) 100vw, 560px" /></figure>



<p>The advantage of vector art is that file sizes are small. The other advantage is that these drawing routines can be used within one&#8217;s own Apple ][ programs.</p>



<p>This gave me an idea for a project. Take the text-based&nbsp;<a href="https://robertgomez.org/node/467">adventure game</a>&nbsp;I had made years ago, and use these routines to add graphics to the game. As I type this, I am already pretty far along in the project, but I will be going back and documenting my progress.&nbsp;Hopefully someone might find this informative and, if I am able to follow through, maybe I will have a releasable game in the end. It&#8217;s doing more than I ever imagined already:</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="700" height="462" src="https://robertgomez.org/wp-content/uploads/2018/03/parser-inprogress-01.jpg" alt="" class="wp-image-2999" srcset="https://robertgomez.org/wp-content/uploads/2018/03/parser-inprogress-01.jpg 700w, https://robertgomez.org/wp-content/uploads/2018/03/parser-inprogress-01-300x198.jpg 300w" sizes="auto, (max-width: 700px) 100vw, 700px" /></figure>



<p>Continue to <a href="https://robertgomez.org/blog/2018/03/18/apple-graphic-adventure-part-ii/" data-type="post" data-id="3001">Part II</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Haunted House Text Adventure</title>
		<link>https://robertgomez.org/blog/2012/11/08/haunted-house-text-adventure/</link>
					<comments>https://robertgomez.org/blog/2012/11/08/haunted-house-text-adventure/#comments</comments>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Thu, 08 Nov 2012 20:50:58 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[apple2]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=2600</guid>

					<description><![CDATA[Back in the late 80s, I learned much about computer programming from this book:&#160;Write Your Own Adventure Programs For Your Microcomputer. This is the same book that I used as a guide when creating&#160;Malfunction&#160;for my Apple IIgs back in 1988. The book takes you step-by-step through the process of creating a simple text adventure game [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Back in the late 80s, I learned much about computer programming from this book:&nbsp;<em><a href="http://amzn.com/0860207412">Write Your Own Adventure Programs For Your Microcomputer</a></em>. This is the same book that I used as a guide when creating&nbsp;<em><a href="https://robertgomez.org/blog/2009/07/14/my-apple-masterpiece-malfunction/" data-type="post" data-id="851">Malfunction</a></em>&nbsp;for my Apple IIgs back in 1988.</p>



<p>The book takes you step-by-step through the process of creating a simple text adventure game using Applesoft Basic. The final product is an adventure called &#8220;Haunted House.&#8221; It&#8217;s about as crude and bare bones as a work of interactive fiction can be, but it does what it needs to: there are objects, rooms and key puzzles.</p>



<figure class="wp-block-image size-large"><a class="no-popup" href="http://projects.robertgomez.org/haunted-house/v1.50/" target="_blank" rel="noopener noreferrer"><img loading="lazy" decoding="async" width="732" height="524" src="https://robertgomez.org/wp-content/uploads/2012/11/Haunted-House-Version-1.png" alt="" class="wp-image-2602" srcset="https://robertgomez.org/wp-content/uploads/2012/11/Haunted-House-Version-1.png 732w, https://robertgomez.org/wp-content/uploads/2012/11/Haunted-House-Version-1-300x215.png 300w" sizes="auto, (max-width: 732px) 100vw, 732px" /></a></figure>



<p>Well, in a recent flurry of Apple retro computing I got side tracked into porting this game into JavaScript. The result is <a href="http://projects.robertgomez.org/haunted-house/v1.50/" target="_blank" rel="noreferrer noopener">here</a>. Click the screenshot to launch the game in a new browser window (requires JavaScript, duh &#8211; View the actual page if you are viewing this in an RSS feed reader). It&#8217;s a fully working port of the original, with all its flaws and quirks. The only additions I made were to make the EXITS display more cleanly and added the verb &#8220;drop&#8221; to the vocabulary.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://robertgomez.org/blog/2012/11/08/haunted-house-text-adventure/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Get Lamp DVD</title>
		<link>https://robertgomez.org/blog/2010/08/17/get-lamp-dvd/</link>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Tue, 17 Aug 2010 21:04:33 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[documentary]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=1336</guid>

					<description><![CDATA[What you see pictured here is some of the DVD packaging for the independently produced documentary film about text adventure games, Get Lamp. In the digital age, packaging matters and the creators of Get Lamp went above and beyond in creating a DVD package that satisfies collectable object fetishists like myself. The inner gatefold sleeve is covered with [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image no-shadow"><figure class="alignright size-large"><img loading="lazy" decoding="async" width="392" height="336" src="https://robertgomez.org/wp-content/uploads/2010/08/get-lamp.jpg" alt="Get Lamp Box" class="wp-image-1338" srcset="https://robertgomez.org/wp-content/uploads/2010/08/get-lamp.jpg 392w, https://robertgomez.org/wp-content/uploads/2010/08/get-lamp-300x257.jpg 300w" sizes="auto, (max-width: 392px) 100vw, 392px" /></figure></div>



<p>What you see pictured here is some of the DVD packaging for the independently produced documentary film about text adventure games, <em>Get Lamp</em>. In the digital age, packaging matters and the creators of <em>Get Lamp</em> went above and beyond in creating a DVD package that satisfies collectable object fetishists like myself. The inner gatefold sleeve is covered with a nostalgic fantasy illustration that looks like it came straight off of an Atari 2600 cartridge. The DVD also came with a fancy numbered and editioned coin (mine&#8217;s number 1540), which would seem kind of cheesy (alá the tin coin that came Ultima V) but is actually very well crafted and, dare-I-say cool. All this comes together in a well made cardboard DVD case that alone <em>almost</em> justifies the $40+ dollar price tag. Thankfully, the film is very good and, as one might expect, the discs contain the usual DVD extras, featurettes and bonus footage. As an added reward, you also get a nice selection of actual, playable games on the DVD -ROM partition of the disc. If you have any interest in text adventures, video games and computing history, you should check this out! More on the film itself later.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Ultimate In-Box Notification Noise</title>
		<link>https://robertgomez.org/blog/2010/01/27/the-ultimate-in-box-notification-noise/</link>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Wed, 27 Jan 2010 19:52:02 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[2600]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[Atari]]></category>
		<category><![CDATA[sound]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=1078</guid>

					<description><![CDATA[I have discovered the best sound to use for a new mail notification in your e-mail client. It&#8217;s the object pick-up noise form Atari&#8217;s Adventure for the 2600. I&#8217;ve attached the WAV file to this post so that you to can feel like you are grabbing the goblet next time you get a v!@gr@ ©ialis [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image alignright size-large"><img loading="lazy" decoding="async" width="112" height="104" src="https://robertgomez.org/wp-content/uploads/2010/01/adventure-goblet.png" alt="" class="wp-image-1081"/></figure>



<p>I have discovered the best sound to use for a new mail notification in your e-mail client. It&#8217;s the object pick-up noise form Atari&#8217;s Adventure for the 2600. I&#8217;ve attached the WAV file to this post so that you to can feel like you are grabbing the goblet next time you get a v!@gr@ ©ialis spam in your in-box!</p>



<div class="wp-block-file"><a href="https://robertgomez.org/wp-content/uploads/2010/01/Atari_Adventure_-_Pick_Up.zip">Atari Adventure &#8211; Pick Up</a><a href="https://robertgomez.org/wp-content/uploads/2010/01/Atari_Adventure_-_Pick_Up.zip" class="wp-block-file__button wp-element-button" download>Download</a></div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>My Apple ][ Masterpiece, &#8220;Malfunction&#8221;</title>
		<link>https://robertgomez.org/blog/2009/07/14/my-apple-masterpiece-malfunction/</link>
					<comments>https://robertgomez.org/blog/2009/07/14/my-apple-masterpiece-malfunction/#comments</comments>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Wed, 15 Jul 2009 03:45:25 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[apple2]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[retrocomputing]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=851</guid>

					<description><![CDATA[(Okay,&#160;Masterpiece&#160;should probably be in quotes too!) I have been on a bit of a retro computing kick this evening. I have been playing around with AppleWin, which is the best Apple ][ emulator for Windows that I know of. I played a little bit of the original&#160;Castle Wolfenstein&#160;and then decided to fire up my trusty [&#8230;]]]></description>
										<content:encoded><![CDATA[<img width="560" height="384" src="https://robertgomez.org/wp-content/uploads/2009/07/malfunction-splash.png" class="attachment-large size-large wp-post-image" alt="Malfunction Splash Page" style="display: block; margin: 0 0 14px 0;" decoding="async" loading="lazy" srcset="https://robertgomez.org/wp-content/uploads/2009/07/malfunction-splash.png 560w, https://robertgomez.org/wp-content/uploads/2009/07/malfunction-splash-300x206.png 300w" sizes="auto, (max-width: 560px) 100vw, 560px" />
<p>(Okay,&nbsp;<em>Masterpiece&nbsp;</em>should probably be in quotes too!) I have been on a bit of a retro computing kick this evening. I have been playing around with AppleWin, which is the best Apple ][ emulator for Windows that I know of. I played a little bit of the original&nbsp;<em>Castle Wolfenstein</em>&nbsp;and then decided to fire up my trusty Apple ][gs and port some of my old Applesoft programs to PC.</p>



<p>The process of transforming a 5.25&#8243; floppy to a disk image is somewhat complicated, but not too bad if you have the right tools. First, I turned on my ][gs and booted the System 6 disk. I then ran the awesome program Asimov (by&nbsp;<a href="http://www.ninjaforce.com/">Ninjaforce</a>) which can create and &#8220;burn&#8221; Apple ][ disk images. I was able to save six 5.25&#8243; disk images onto a single 3.5&#8243; ProDos floppy.&nbsp;The next step is taking this 3.5&#8243; floppy down to my System 9 Mac which I keep stowed away in my basement. The old Mac system could read ProDos disks so I am able to pull the files off the floppy and then save them to a PC formatted 3.5&#8243; floppy (or send them over a network, but I am not connected in my basement). I have a USB floppy drive on my PC specifically for this purpose. Once the disk images are on my PC&#8217;s hard drive (with a .dsk extension) I can boot them in AppleWin.</p>



<figure class="wp-block-image alignright size-large"><img loading="lazy" decoding="async" width="286" height="400" src="https://robertgomez.org/wp-content/uploads/2009/07/adventure-cover.jpg" alt="Write Your Own Adventure Programs For Your Microcomputer" class="wp-image-854" srcset="https://robertgomez.org/wp-content/uploads/2009/07/adventure-cover.jpg 286w, https://robertgomez.org/wp-content/uploads/2009/07/adventure-cover-215x300.jpg 215w" sizes="auto, (max-width: 286px) 100vw, 286px" /></figure>



<p>I&nbsp;spent a few hours running my old programs. Most of them are pretty stupid, but I can&#8217;t believe I wrote them as a 10 or 11 year-old. I will post some screenshots in the near future. However, sometime in my sophomore or junior year of high school I&nbsp;took the time to create a full text adventure called, &#8220;Malfunction.&#8221; My code was based on the code in the book&nbsp;<em>Write Your Own Adventure Programs For Your Microcomputer</em>&nbsp;by&nbsp;Usborne Computer Books. The book guided you through the creation of a haunted house game. I was taken step-by-step through the process of game design–from creating maps and puzzles to programming a text parser. This was a great book, and I&#8217;d love to see an updated, perhaps Flash actionscript oriented, version.</p>



<p>Now, more than 20 years later, I&nbsp;have decided to publish my game!</p>



<p>In order to play the game you will need to install an Apple 2 emulator. For windows, I use&nbsp;<a href="http://applewin.berlios.de/">AppleWin</a>. It&#8217;s really simple and runs near-perfectly. As for other platforms like Mac, I&#8217;m not-so-sure. Look to Google for your answers.</p>



<p>The game is mediocre at best, but I am pretty proud of it. I learned a ton about programming when I created this. I hope you enjoy it. Please feel free to leave me some comments about what you think.</p>



<div class="wp-block-file alignleft"><a id="wp-block-file--media-23c13417-13f9-4339-ad96-8cd5fa5e76b6" href="https://robertgomez.org/wp-content/uploads/2009/07/Malfunction_1988_Robert_Gomez.zip">Malfunction 1988 &#8211; Robert Gomez</a><a href="https://robertgomez.org/wp-content/uploads/2009/07/Malfunction_1988_Robert_Gomez.zip" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-23c13417-13f9-4339-ad96-8cd5fa5e76b6">Download</a></div>
]]></content:encoded>
					
					<wfw:commentRss>https://robertgomez.org/blog/2009/07/14/my-apple-masterpiece-malfunction/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>DOSbox Gaming: King&#8217;s Quest I</title>
		<link>https://robertgomez.org/blog/2006/05/14/dosbox-gaming-kings-quest-i/</link>
		
		<dc:creator><![CDATA[Robert Gomez]]></dc:creator>
		<pubDate>Sun, 14 May 2006 17:00:26 +0000</pubDate>
				<category><![CDATA[Robert's Blog]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[Sierra]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://robertgomez.org/?p=180</guid>

					<description><![CDATA[Recently I have discovered the joys of DOS emulation on my Windows XP machine. DOSbox is an open-source project which provide MS-DOS emulation that is tailored to gaming. There are builds for Win XP, Mac and Linux. The great thing about the emulator as opposed to just running MS-DOS on my old Win 98 box [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Recently I have discovered the joys of DOS emulation on my Windows XP machine. <a href="http://www.dosbox.com/">DOSbox</a> is an open-source project which provide MS-DOS emulation that is tailored to gaming. There are builds for Win XP, Mac and Linux.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="320" height="200" src="https://robertgomez.org/wp-content/uploads/2006/05/kingsquest1screenshot.gif" alt="King's Quest I - Screenshot" class="wp-image-183"/></figure>



<p>The great thing about the emulator as opposed to just running MS-DOS on my old Win 98 box is that it can handle all the goofy memory configurations and set-up weirdness that I never quite understood when I used MS-DOS for real. It can&#8217;t really handle the more complicated Doom-era games, but those aren&#8217;t the games in which I am most interested.</p>



<p>I am currently reveling in Sierra 3-D adventure games like the <em>King&#8217;s Quest</em> series and <em>Leisure Suit Larry</em>. As a kid, these were the only PC games that could draw me away from our family&#8217;s Apple ][. The economy of pixel usage in the art and animation is truly brilliant and the game play still holds up pretty well. I just finished <a href="http://www.mobygames.com/game/kings-quest"><em>King&#8217;s Quest I</em></a> this evening for the first time. I finished with 136 points of a total 158. Made in 1984, this was the first of the Sierra 3-D adventures. It doesn&#8217;t quite hold up to some of the later entries in the series in terms of story and puzzle complexity. Without warning, the game can also be rendered un-winnable if you eat/use certain items at the wrong time. This is a big adventure game no-no in my opinion. But aside from these gripes, it was still fun twenty years after its release.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
