Goalclasshintsys.t[105]

A Goal represents an open task: something that the player is trying to achieve. A Goal is an abstract object, not part of the simulated world of the game.

Each goal is associated with a hint topic (usually shown as a question, such as "How do I get past the guard?") and an ordered list of hints. The hints are usually ordered from most general to most specific. The idea is to let the player control how big a hint they get; we start with a small nudge and work towards giving away the puzzle completely, so the player can stop as soon as they see something that helps.

At any given time, a goal can be in one of three states:

- Open: this means that the player is (or ought to be) aware of the goal, but the goal hasn't yet been achieved. Determining this awareness is up to the goal. In some cases, a goal is opened as soon as the player has seen a particular object or entered a particular area; in other cases, a goal might be opened by a scripted event, such as a speech by an NPC telling the player they have to accomplish something. A goal could even be opened by viewing a hint for another goal, because that hint could explain a gating goal that the player might not otherwise been able to know about.

- Undiscovered: this means that the player doesn't yet have any reason to know about the goal.

- Closed: this means that the player has accomplished the goal, or in some cases that the goal has become irrelevant.

The hint system only shows goals that are Open. We don't show Closed goals because the player presumably has no need of them any longer; we don't show Undiscovered goals to avoid giving away developments later in the game before they become relevant.

class Goal :   MenuTopicItem   HintMenuObject

Superclass Tree   (in declaration order)

Goal
        MenuTopicItem
                MenuItem
                        MenuObject
                                object
        HintMenuObject
                object

Subclass Tree  

(none)

Global Objects  

(none)

Summary of Properties  

closeWhen  closeWhenAchieved  closeWhenDescribed  closeWhenKnown  closeWhenRevealed  closeWhenSeen  closeWhenTrue  goalFullyDisplayed  goalState  isActiveInMenu  location  menuContents  openWhen  openWhenAchieved  openWhenDescribed  openWhenKnown  openWhenRevealed  openWhenSeen  openWhenTrue  title 

Inherited from MenuTopicItem :
chunkSize  heading  lastDisplayed  menuTopicListEnd  nextMenuTopicLink 

Inherited from MenuItem :
bgcolor  curKeyList  curMenu  fgcolor  fullScreenMode  indent  isOpen  keyList  prevMenuLink  topbarbg  topbarfg  topMenu 

Inherited from MenuObject :
contents  menuOrder 

Inherited from HintMenuObject :
topicOrder 

Summary of Methods  

displaySubItem  updateContents 

Inherited from MenuTopicItem :
getNextTopicXML  getTopicXML  getXML  redrawWinHtml  showMenuHtml  showMenuText 

Inherited from MenuItem :
display  enterSubMenu  formatXML  getChildIndex  getKeysXML  getNextMenu  getPrevMenu  refreshTopMenuBanner  removeStatusLine  removeTopMenuBanner  showMenu  showTopMenuBanner 

Inherited from MenuObject :
addToContents  compareForMenuSort  execute  initializeContents  initializeLocation 

Inherited from HintMenuObject :
compareForTopicSort 

Properties  

closeWhenhintsys.t[247]

Determine if there's any condition that should close this goal. We'll check closeWhenSeen, closeWhenDescribed, and all of the other closeWhenXxx conditions; if any of these return true, then we'll return true.

closeWhenAchievedhintsys.t[181]
An optional Achievement object that closes this goal. Once the achievement is completed, this goal's state will automatically be set to Closed. This makes it easy to associate the goal with a puzzle: once the puzzle is solved, there's no need to show hints for the goal any more.

closeWhenDescribedhintsys.t[162]
close the goal when the given object is described

closeWhenKnownhintsys.t[193]
an optional Topic or Thing that closes this goal when known

closeWhenRevealedhintsys.t[203]
an optional <.reveal> tag that closes this goal when revealed

closeWhenSeenhintsys.t[153]
An option object that, when seen by the player character, closes this goal. Many goals will be things like "how do I find the X?", in which case it's nice to close the goal when the X is found.

closeWhenTruehintsys.t[215]
an optional general-purpose check that closes the goal

goalFullyDisplayedhintsys.t[271]
Has this goal been fully displayed? The hint system automatically sets this to true when the last item in our hint list is displayed.

You can use this, for example, to automatically remove the hint from the hint menu after it's been fully displayed. (You might want to do this with a hint for a red herring, for example. After the player has learned that the red herring is a red herring, they probably won't need to see that particular line of hints again, so you can remove the clutter in the menu by closing the hint after it's been fully displayed.) To do this, simply add this to the Goal object:


closeWhenTrue = (goalFullyDisplayed)

goalStatehintsys.t[348]
This goal's current state. We'll start off undiscovered. When a goal should be open from the very start of the game, this should be overridden and set to OpenGoal.

isActiveInMenuhintsys.t[341]
we're active in our parent menu if our goal state is Open

locationhintsys.t[120]
Our parent menu - this is usually a HintMenu object. In very simple hint systems, this could simply be a top-level hint menu container; more typically, the hint system will be structured into a menu tree that organizes the hint topics into several different submenus, for easier navigatino.

menuContentsOVERRIDDENhintsys.t[134]
The list of hints for this topic. This should be ordered from most general to most specific; we offer the hints in the order they appear in this list, so the earlier hints should give away as little as possible, while the later hints should get progressively closer to just outright giving away the answer.

Each entry in the list can be a simple (single-quoted) string, or it can be a Hint object. In most cases, a string will do. A Hint object is only needed when displaying the hint has some side effect, such as opening a new Goal.

openWhenhintsys.t[233]
Determine if there's any condition that should open this goal. This checks openWhenSeen, openWhenDescribed, and all of the other openWhenXxx conditions; if any of these return true, then we'll return true.

Note that this should generally NOT be overridden in individual instances; normally, instances would define openWhenTrue instead. However, some games might find that they use the same special condition over and over in many goals, often enough to warrant adding a new openWhenXxx property to Goal. In these cases, you can use 'modify Goal' to override openWhen to add the new condition: simply define openWhen as (inherited || newCondition), where 'newCondition' is the new special condition you want to add.

openWhenAchievedhintsys.t[172]
An optional Achievement object that opens this goal. This goal will be opened automatically once the goal is achieved, if the goal was previously undiscovered. This makes it easy to set up a hint topic that becomes available after a particular puzzle is solved, which is useful when a new puzzle only becomes known to the player after a gating puzzle has been solved.

openWhenDescribedhintsys.t[159]
this is like openWhenSeen, but opens the topic when the given object is described (with EXAMINE)

openWhenKnownhintsys.t[190]
An optional Topic or Thing that opens this goal when the object becomes "known" to the player character. This will open the goal as soon as gPlayerChar.knowsAbout(openWhenKnown) returns true. This makes it easy to open a goal as soon as the player comes across some information in the game.

openWhenRevealedhintsys.t[200]
An optional <.reveal> tag name that opens this goal. If this is set to a non-nil string, we'll automatically open this goal when the tag has been revealed via <.reveal> (or gReveal()).

openWhenSeenhintsys.t[145]
An optional object that, when seen by the player character, opens this goal. It's often convenient to declare a goal open as soon as the player enters a particular area or has encountered a particular object. For such cases, simply set this property to the room or object that opens the goal, and we'll automatically mark the goal as Open the next time the player asks for a hint after seeing the referenced object.

openWhenTruehintsys.t[212]
An optional arbitrary check that opens the goal. If this returns true, we'll open the goal. This check is made in addition to the other checks (openWhenSeen, openWhenDescribed, etc). This can be used for any custom check that doesn't fit into one of the standard openWhenXxx properties.

titleOVERRIDDENhintsys.t[111]
The topic question associated with the goal. The hint system shows a list of the topics for the goals that are currently open, so that the player can decide what area they want help on.

Methods  

displaySubItem (idx, lastBeforeInput, eol)OVERRIDDENhintsys.t[330]

display a sub-item, keeping track of when we've shown them all

updateContents ( )OVERRIDDENhintsys.t[299]
Check our menu state and update it if necessary. Each time our parent menu is about to display, it'll call this on its sub-items to let them update their current states. This method can promote the state to Open or Closed if the necessary conditions for the goal have been met.

Sometimes it's more convenient to set a goal's state explicitly from a scripted event; for example, if the goal is associated with a scored achievement, awarding the goal's achievement will set the goal's state to Closed. In these cases, there's no need to use this method, since you're managing the goal's state explicitly. The purpose of this method is to make it easy to catch goal state changes that can be reached by several different routes; in these cases, you can just write a single test for those conditions in this method rather than trying to catch every possible route to the new conditions and writing code in all of those.

The default implementation looks at our openWhenSeen property. If this property is not nil, then we'll check the object referenced in this property; if our current state is Undiscovered, and the object referenced by openWhenSeen has been seen by the player character, then we'll change our state to Open. We'll make the corresponding check for openWhenDescribed.

TADS 3 Library Manual
Generated on 5/16/2013 from TADS version 3.1.3