* Printing the locale description of something (Testing the locale description order; Priority Lab) A debugging rule useful for checking the priorities of objects about to be listed. When it comes time to start manipulating the priorities of items, it is useful to be able to check the table for debugging purposes; the problem is that printing the names of the objects can itself affect the way the room description is generated, foiling our debugging efforts. What follows is a rule to help with debugging safely, and a sample of how priorities work: {*}"Priority Lab" Section 1 - Procedure Before printing the locale description (this is the dump locale table rule): say "Locale Priority list:"; repeat through Table of Locale Priorities: let the flag be whether or not the notable-object entry is mentioned; say "[line break] [notable-object entry]: [locale description priority entry]"; if the flag is false, now the notable-object entry is not mentioned; say line break. Now, let's look at some items put in a specific order. Things with low priority numbers list towards the beginning; things with high priority numbers list towards the end. (It helps to think of it as though we were making a numbered list of the paragraphs to appear in the description.) Anything numbered 0 doesn't appear at all, and the default priority of an object is 1. We could set these numbers on an item-by-item basis, but it may be easier just to put them in general categories, such as "early-described" and "late-described". (We'll define a few others now too, and explain them in just a moment.) {**}A thing can be early-described, late-described, latest-described, never-described, sightline-described, or ordinarily-described. A thing is usually ordinarily-described. After choosing notable locale objects (this is the apply early and late description rule): repeat with item running through early-described things: if there is a notable-object of item in the Table of Locale Priorities: set the locale priority of the item to 1; [list before everything else -- this would work with any number lower than 5 and higher than 0] repeat with item running through late-described things: if there is a notable-object of item in the Table of Locale Priorities: set the locale priority of the item to 10; [list after everything else -- this would work with any number larger than 5] repeat with item running through never-described things: set the locale priority of the item to 0; [don't list at all] continue the activity. An important cautionary note: priorities are only honored if the objects are going to get their own paragraphs (with "writing a paragraph about..." or because they have initial appearances). Priorities do not affect the order in which items appear in the final "You can see..." list, except that items with priority 0 or lower are omitted. (If we want to order the items in that list, we may want to resort to the Complex Listing extension by Emily Short.) There are further refinements available to us: for instance, we could make some things that are only visible if the player is raised above ground level. We'll call objects with that restriction "sightline-described". {**}After choosing notable locale objects (this is the sightline-described things are visible from supporters rule): if the player is not on a supporter: repeat with item running through sightline-described things: if there is a notable-object of item in the Table of Locale Priorities: set the locale priority of the item to 0; [remove objects that can only be seen from higher objects.] continue the activity. By default that final collection of generic objects ("You can also see...") appears at the end, regardless of the priority of everything else. If we really wanted to, though, we could force something to appear even after that paragraph, by adding a new listing rule to the locale description rules. We'll call these "latest-described", and we'll apply the writing a paragraph about rule to them too -- just in a way that comes after everything else. {**}After choosing notable locale objects (this is the latest-described items priority rule): repeat with item running through latest-described things: if the item is a notable-object listed in the Table of Locale Priorities: now the item is mentioned; now the item is marked for late listing. The late listing rule is listed after the you-can-also-see rule in the for printing the locale description rules. A thing can be marked for late listing. A thing is usually not marked for late listing. This is the late listing rule: if something is marked for late listing: repeat with item running through things which are marked for late listing: if a paragraph break is pending, say "[conditional paragraph break]"; carry out the writing a paragraph about activity with the item; if a paragraph break is pending: increase the locale paragraph count by 1; now the item is not marked for late listing; say "[command clarification break]"; if something is marked for late listing: increase the locale paragraph count by 1; say "Oh! And also [a list of things which are marked for late listing]."; now everything is not marked for late listing; continue the activity. Lastly, it may also be useful to know about the "parameter-object", which refers to the thing whose contents we are currently describing: the Standard Rules consider how to describe the contents of the location and then also check the contents of any supporter or container the player may be inside, so in the first case "parameter-object" would be the location, and then in the second the supporter in question. In practice this is rarely useful, but should we need to change priorities in the case of both player and object being inside a particular container, we might make use of it, for instance: {**}A thing can be tasteful or icky. A thing is usually tasteful. After choosing notable locale objects (this is the icky things next to players rule): if the player is on the parameter-object: repeat with item running through icky things : if there is a notable-object of item in the Table of Locale Priorities: now the item is mentioned; now the item is marked for late listing; continue the activity. Section 2 - Scenario The Priority Lab is a room. The early bird, the worm, the leaf, the unseen object, the pebble, the twig, and the late edition are things in the Priority Lab. The early bird is early-described. The late edition is late-described. The unseen object is never-described. The worm is icky. The high window is in Priority Lab. It is sightline-described and fixed in place. The initial appearance of the high window is "There's a tiny high window up near the ceiling that you can't see unless you're on top of something." In order for the priorities we just set to be interesting, let's give out some initial appearances and writing a paragraph rules: {**}The initial appearance of the worm is "A worm inches along the ground." The initial appearance of the late edition is "Finally, the late edition lies at your feet." After the late edition has been picked up and dropped again, it lists in no special order in the "you can see..." paragraph (since initial appearances only print when the object has not yet been moved). In contrast, things that have a writing a paragraph about rule will continue to behave the same way after they've been taken and dropped: {**}Rule for writing a paragraph about the early bird when the early bird is in a room: say "The early bird always appears first, and here it is." Rule for writing a paragraph about the leaf: say "Look, there's [a leaf][unless the leaf is in the location] on [the holder of the leaf][end if]!" Finally, remember how we wanted icky things next to the player to be described last? We're still going to be calling its writing a paragraph about rule, so let's set that up. {**}Rule for writing a paragraph about an icky thing (called icky item) which is on something which supports the player: say "Ew, [an icky item] [are] right next to you." The afterthought is a thing in the Priority Lab. It is latest-described. The bar stool is an enterable supporter in Priority Lab. Test me with "get leaf / drop leaf / look / x unseen object / get pebble / look / get twig / look / get afterthought / look / drop twig / look / get late edition / look / drop late edition / sit on bar stool / look / get all / put all on stool / look".