Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Twine 2 Tutorial: Linking Inventory Items

At this point in this tutorial series, you have half of an Inventory system in place. Inventory items appear on select passages. It would be nice to make each item linkable. When the user clicks on a link, they should be presented with another Passage that contains a description of the item and maybe an image.

This should be easy. After all, linking passages is a key aspect of working with Twine. Or, is it? The only way to find is to start coding.

Describing items

To get started, open your project in progress. If you don’t have it, you can download it from the following link:

dynamically-calling-macros-starter-projectDownload

The big question … how do we pass an item to our new passage. For that, we use a variable that can be accessed from any passage. Here’s how it will work:

When the player taps the item name, you’ll see the $currentItem to the object that the user selected. Then, in the Item Description passage, you can use that variable.

This variable can be accessed from every passage in your story. This is known as a global variable. You’ve actually already been using them. For instance, your $inventory variable is a global variable.

In most development languages, using global variables is considered a bad idea. But in Harlowe, it’s the only game in town so we roll with it.

Setting up the Item Description

Open up your starter project in Twine. Click the Create Passage button. Name the passage to Item Description. This is the passage that will allow the user to examine an inventory item.

Note: At this point in this tutorial series, I'm going to assume you know how to create passages. If you DON'T know how to create passages, then refer to this earlier tutorial.

This passage will be accessible throughout the entire story. You can think of it as a global passage. Now open up the Startup passage. Add your new variable with the others.

(set: $selectedItem to (dm:))

It should look like the following:

Now open the Item Description passage. At this point, print out the item description.

(print: $currentItem's description)

It should look like the following:

Now after the user reads the item description, they will need a way to return back to the referring passage. Remember, this passage is a global passage that can be accessed from anywhere in the story. You could use another variable, but there is another way.

Using (History: ) and (Link: )

You could create another global variable, but an easier solution is to use the (history macro. This is an array of passages in the order that the player has visited.

We want to use the previous passage. In the Item Description passage, add the following

(set: $previous to (history:)'s last)

It should look like the following:

This sets the $previous variable to the last passage. Now, you want to send the user to passage. For this, you use the (goto macro. Yet, you need to call this when the user taps a link. For this, you use the (link macro.

The (link macro will run additional macros when the player clicks on the link. In your case, you’re going to call the (goto: ) macro to send the user back to the previous passage. But you can use it with any tags. Add the following:

(link: "Back") [
    (set: $previous to (history:)'s last)
    (goto: $previous)
]

It should look like the following:

In this code, you set the previous passage in a variable. You don’t actually need to do that. You can actually just assign it like the following:

(goto: (history:)'s last)

While this approach is more concise, I find it a little clunky due to Harwlowe’s language syntax. Ultimately, when it’s your code, it’s your choice. Use what works best for you.

Linking the inventory items

At this point, you have everything you need to link your inventory items. You loop through each item in the inventory, add a (link: ) macro and in the (link macro, you set the selected item.

Open the Inventory passage. Update it to the following:


{ (if: (passage:)'s tags contains "Inventory") [ You are carrying: (for: each _item, ...$inventory) [ (link: _item's name) [ (set: $selectedItem to _item) (goto: "Item Description") ](if: $inventory's last is not _item)[, ] ]]}

It should look like the following:

Unfortunately, the code organization is deliberate. It makes sure the spaces are consistent. This results in very hard-to-read code. It’s also brittle, meaning, small adjustments may cause spacing problems.

Now run the story. This time, you get linked inventory items.

And clicking on an item leads to the description:

And now you have a working inventory. When you click the back link, you find yourself back where you started. Nice work

Where to go from here

At this point in the series, you can wander a fictional campground and examine inventory items, but you can’t actually pick something up. Also, it would be nice to place all the items on the map. And to do that, you’ll need to learn how to get random.

In the meantime, see the Harlowe documentation of the (link: ) and (click macros to see what other things you can do. Then, see me in the next tutorial.

The post Twine 2 Tutorial: Linking Inventory Items appeared first on Jezner Blog.



This post first appeared on Jezner - Old Time Radio, please read the originial post: here

Share the post

Twine 2 Tutorial: Linking Inventory Items

×

Subscribe to Jezner - Old Time Radio

Get updates delivered right to your inbox!

Thank you for your subscription

×