Scott Adams interpreter discrepancies

It was just to confirm, through documentation, what you were saying.

1 Like

I see, thanks.

(In the first quote you seems to suggest that the terp should allow the user to ‘get fox’ the second time, but I understand it as it follows the rules set out in your second quote.)

1 Like

That’s a valuable find. I can’t find this in the Adventure Editor manual that i converted to MarkDown (LuaScott/doc/Adventure_Editor_Manual_(1981).md at master · pdxiv/LuaScott · GitHub). Is there a different version of this document, or is this a completely different document (or did I just mess up my conversion somehow)?

You have this in your document:

This is the first player input action. If the player types in LIGHT MATCH then this action is considered. If even one of the conditions of this action are not met, then ADVENTURE continues searching the actions for another LIGHT MATCH. If it finds another, it considers that one also, and so on until it finds a true one. If no other LIGHT MATCH is found then the message “I can’t do that . . . yet!” is printed and the player is asked to respond again.

which says, as I read it, about the same thing.

There is also this quote:

When player input actions are being evaluated, the action entries are scanned in numeric order. When the verb and noun of an action entry match the player’s input, the conditions are evaluated. If all of the conditions were true, then the commands of this entry are performed. When a “true” match is made, no further player input actions are evaluated on this pass. However, if a match is made and all of the conditions were not true, then the scanning procedure continues until either a “true” match is made or all of the actions are evaluated. If a match was found but the conditions were not true, then the message “I can’t do that . . . yet!” is displayed. If no match was found, then the message “I must be stupid but I don’t understand what you mean” is display.

page 2-5:

3 Likes

Thanks! Wow, that’s a very different version of the guide. The one i originally copied was ~54 pages, whereas that one is ~136 pages. There’s a lot of good information in there.

I think I’ll quickly OCR that and put it up in the same GitHub repository. Even without proofreading I’m sure it can be useful for me at least.

1 Like

Out of curiosity, and if you don’t know, you can also consult the files advdb.txt and ADV_HLP.txt

2 Likes

I’ve added the following to scott2zil.

  • A new constant that determines how AutoGet/Drop should be handled
;"Sets if AutoGet/Drop should be handled as defined in 'The Adventure System' manual or handled as in ScottFree
  THE ADVENTURE SYSTEM
	If a verb-noun match was found in at least one action entry, but the conditions were not true in any of the 
	matched actions, then the message 'I can’t do that…yet' is displayed after all of the action entries have 
	been checked.
	AutoGet/Drop is only called if there is no verb-noun match found.
  ScottFree
	Does the same as above but tries to do an AutoGet/Drop before the message 'I can’t do that…yet'."
<CONSTANT AUTOGET-AS-SCOTTFREE <>>

The relevant part in the code that handles this is then in the routine RUN-ACTIONS and reads like this:

        ;"Word action"
		<COND (<G? .VERB-ID 0>
			<COND (<=? .ACTION-VERB-ID .VERB-ID>
				<COND (<NOT .WORD-ACTION-DONE>
					<SET CONTINUE-FLAG <>>
					<COND (<OR <0? .ACTION-NOUN-ID> <=? .ACTION-NOUN-ID .NOUN-ID>>
						<SET FOUND-WORD T>
						<COND (<EVALUATE-CONDITIONS .I>
							<EXECUTE-COMMANDS .I>
							<SET .WORD-ACTION-DONE T>
							<COND (<NOT ,CONTINUE-FLAG> <RETURN>)>
						)>
                    )>
                )>
            )>
        )>
	>

	<COND (<0? .VERB-ID> <RETURN>)>

	<COND (.WORD-ACTION-DONE <RETURN>)>

	<COND (<OR <NOT .FOUND-WORD> ,AUTOGET-AS-SCOTTFREE>
		<COND (<HANDLE-GET-DROP .VERB-ID .NOUN-ID> <RETURN>)>
	)>

	<COND (.FOUND-WORD
		<TELL ,MSG-CANT-DO-THAT-YET CR>
	)
	(ELSE
		<TELL ,MSG-DONT-UNDERSTAND CR>
	)>	

This means that the default behaviour for games built with scott2zil is to handle AutoGet/Drop as defined in “The Adventure System” manual. But this behaviour can be changed by setting the constant AUTOGET-AS-SCOTTFREE to true before compiling.

The code in scott2zil is based on PerlScott and follows it pretty closely so if @pdxiv want to do something similiar in PerlScott you probably can find the corresponding code part to change easily.

2 Likes

Cool, I might just do that! (Doing that in PerlScott/tensodoct will have to wait a little while, until I finish exploring how hard it is to make an alternative to the ScottKit compiler from scratch.)

Also, I uploaded a horribly un-proofread version of the The Adventure System manual: LuaScott/doc/The_Adventure_System_Manual_(1982).md at master · pdxiv/LuaScott · GitHub

1 Like

An alternative to ScottKit… Fascinating…

Another mystery, that I stumbled over again while trying to make a ScottKit compiler, is if an “autogetable” object needs to have an entry present in the noun table. In The ADVENTURE Data Base Format Allan Moluf mentions that:

The name does not have to be a noun in the vocabulary for this pick up or drop to work.

ScottFree doesn’t agree with this, and the following game file refuses to let me pick up an object, because it’s name isn’t present as a noun in the vocabulary table:

 0 
 0 
 1 
 18 
 1 
 6 
 1 
 0 
 3 
 125 
 2 
 1 
 300 
 2 
 0 
 0 
 0 
 0 
 150 
 0 
 300 
 5 
 0 
 0 
 0 
 0 
 300 
 0 
"AUT"
"ANY"
"GO"
"NOR"
"LOO"
"SOU"
""
"EAS"
""
"WES"
""
"UP"
""
"DOW"
""
""
""
""
""
""
"GET"
""
""
""
""
""
""
""
""
""
""
""
""
""
""
""
"DRO"
""
 0 
 0 
 0 
 0 
 0 
 0 
""
 0 
 0 
 1 
 0 
 0 
 0 
"forest"
""
"There are some keys on the ground"
"There's nothing here"
"Ring of skeleton keys/KEY/" 1 
""
""
 416 
 1 
 0

ScottKit automatically adds the noun for every “autogetable” object to the noun table. Since ScottKit’s interpreter is based on ScottFree which requires this, it makes sense. Every game out there works fine in ScottFree, which implies that this behavior is “as designed”. At the same time, the number of nouns is a limited resource, and it would be nice to be able to save space in this table.

Oddly, The Adventure System Manual contradicts Allan Moluf’s statement:

The name of the object must be a noun in the list of vocabulary entries for the automatic pick up and drop feature to work. The object name must also be a primary noun, not a synonym.

There are errors, contradictions and approximations in all the documentations. And they do not all refer to the same interpreters and versions of them. It is best to choose a reference interpreter and test it.

1 Like

Yeah, again ScottFree is probably as close as we can get to a “gold standard” implementation. PerlScott/Tensodoct (and probably a few other terps) are more tolerant to this specific scenario, but it doesn’t hurt, so it doesn’t need fixing.

Tanks for the testcode! I noticed that scott2zil didn’t handle this correctly but it is now fixed.

It would be nice if your future compiler have the option to both create an entry in the noun-table or don’t do it (to save noun entries).

ADVENTUR/CMD behaves in the same way as ScottFree here (i.e. the player isn’t allowed to pick up the KEYs):

(A slightly (but not materially) modified version of my BBC BASIC port of BYTE’s v4.6 Pirate terp also behaves in the same way as ScottFree in this case.)

I’m attaching a copy of the test game data file, which has been converted to TRS-80 .DAT format.

ADVENT.D1.zip (344 Bytes)

Has anyone tried to calculate the first number in the information Header: “The number of bytes required to contain the text of the verbs, nouns, messages, room descriptions and object descriptions.”
The result of my calculation is always 1 less than the expected result.

Done. I meant to add that as an optional commandline flag, but forgot about about it.

1 Like

I haven’t tried this for a long time, and when I actually did, I couldn’t work out exactly how it worked. I would very much like to be able to do this :slight_smile:

If it’s always off by exactly -1, it sounds to me like you’ve cracked it! :champagne:

Yes, but now ScottKit’s output is problematic!:

Whereas the output from ADVENTUR/CMD looks okay:

testlight3.sck.zip (1.1 KB)
testlight3.dat.zip (998 Bytes)