create_your_first_cartridge
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
create_your_first_cartridge [2013/05/13 23:30] – [Foreword from the Author] Boettchers | create_your_first_cartridge [2016/06/25 11:03] (current) – [Uploading media files] Boettchers | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Wiki related issues ====== | ||
+ | I will start this tutorial with some Wiki related information. If you are familiar with this Wiki frontend, skip this paragraph. | ||
+ | |||
+ | * I sugest to open the table of contents that is located to the top right of this statement. It will help you to locate information in the tutorial. | ||
+ | * You can use the Wiki search to locate topics in the whole Wiki. It is located in the top right corner. | ||
+ | * You can also use the search function of your browser. Use CTRL F to search for keywords on the current page. The search field will pop up above (IE) or below (FF) the main text window. | ||
+ | |||
+ | If you want to print the tutorial or save it on your computer download the pdf copy {{: | ||
+ | |||
+ | ====== Foreword from the Author ====== | ||
+ | |||
+ | Before we start with the tutorial I have to admit that I (Geo-Magician) am merely the poet of this tutorial. The Earwigo software itself was written by Nick (aka sTeamTraen). He came up with the idea and he has written the entire program (with the help of many individuals from all around the world ;-) ). | ||
+ | |||
+ | If you want to work with the latest version of the tutorial it is currently best to download the {{: | ||
+ | |||
+ | Having said this ... let us have a look at | ||
+ | |||
+ | ====== The Wherigo Concept ====== | ||
+ | ===== Zones ===== | ||
+ | |||
+ | The basic concept of a Wherigo cartridge is the creation of zones on a map. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | In the above example 6 zones are created on the map and the human player (black) is walking from zone to zone to solve the cartridge. You can see that some zones are already visible to the human player (they are marked in green), other zones (marked in orange) are still hidden from the human player. | ||
+ | |||
+ | The human player can use his GPS or PDA to navigate to a visible (green) zone. Our human player is currently on the way to zone 3. This zone will contain a puzzle, an interaction or a clue that activates zone 4. | ||
+ | ===== Items Objects Interaction ===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Zone 4 or any other zone can contain objects as depicted above. The human player can interact with the Character " | ||
+ | |||
+ | ===== Chain of Events ===== | ||
+ | An extremely important feature of Wherigo cartridges are the events. The whole game-play is based on a chain of events. One event is always preparing the next event in the row. It is the task of the cartridge programer to make sure that there is always another event available that will move the game forward. If you run out of events, the cartridge is stuck. | ||
+ | |||
+ | So far I have assumed that an event is executed whenever the human player enters a new zone. This is absolutely correct but there are more options available and the next graphic gives an example how events might be chained till the final location is reached. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | The chain of events is your main concern while programming a Wherigo cartridge. It will take a while but after some programming you will know which events are available and chaining events will become your second nature. | ||
+ | ====== The Wherigo Program====== | ||
+ | ===== Lua - the Wherigo Language ===== | ||
+ | |||
+ | The Wherigo programming language is quite similar to other programming languages. The Wherigo language is called Lua. The good news is, you will typically not see the Lua program when you use the Earwigo builder. The Lua program is written automatically " | ||
+ | |||
+ | Some very fancy ideas are however only possible if you can tweak the code by hand. Earwigo provides an " | ||
+ | |||
+ | If you have the need to see the Lua version of your cartridge (I have not done this since the beta testing phase of Earwigo) you can do this on the " | ||
+ | |||
+ | ===== Event Driven Programming ===== | ||
+ | |||
+ | Wherigo is an event-driven system and this has caused me some headache in the past. As a programmer I am used to writing program code in a sequence and the code will be executed in this sequence. This is also the way any human without programming experience would think things should happen. However this is not the case with Wherigo. Every program code associated with one event will be executed when this event fires. If you have six lines of code associated with one event, all six lines will be executed (in sequence) immediately. | ||
+ | |||
+ | A typical mistake with Earwigo is therefore to have more than one text output associated with one event. The result is that both texts will be presented (almost) at the same time. The first message will be displayed and immediately thereafter the second message will overwrite the first message. The user can only see the last text message. Always remember the Wherigo rule: "Only one message per event" | ||
+ | |||
+ | The best way to think about this is to assume that everything that you can see on one page (one event) in Earwigo will happen at the same time. If you need to display two messages, create two events (e.g. pushing a button at the end of your first message). Pushing this button will then be the additional event that triggers your second message. | ||
+ | |||
+ | This event-driven thing is not as bad as it sounds. I am sure however that you will fall into this trap once or twice. But now you know what causes it and you can easily adjust your cartridge to compensate for it. | ||
+ | |||
+ | Having said this I think we have had enough theory and it is time to | ||
+ | |||
+ | ====== Get Started ====== | ||
+ | ===== Screen Manage Cartridges ===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Once you log in for the first time, you'll be presented with an almost blank page with your username and three options ([[Log out]], [[Manage Cartridges]], | ||
+ | |||
+ | ===== Creating the cartridge ===== | ||
+ | |||
+ | After you click on the Manage Cartridges link, you'll be presented with a powerful and possibly slightly intimidating form. This is the main form for doing things related to cartridges such as creating, deleting, loading, compiling, backing up, etc. For our purposes, we're only interested in a couple of the options. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | * In the " | ||
+ | * The "New name" field will now be enabled... fill in the name "Tiny Adventure" | ||
+ | * Once that's all done, hit the " | ||
+ | |||
+ | Earwigo will now create a blank cartridge for you and reload the Manage screen. | ||
+ | |||
+ | ===== Loading the cartridge ===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | To begin editing the cartridge, select "Tiny Adventure" | ||
+ | |||
+ | |||
+ | ====== Editing the cartridge ====== | ||
+ | |||
+ | This [[edit cartridge]] screen is probably where you'll spend most of your time in Earwigo. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | You will always start on the " | ||
+ | * The standard " | ||
+ | * The "Save and restart" | ||
+ | |||
+ | //If you can't see the icons or if you want to disable/ | ||
+ | // | ||
+ | |||
+ | ===== Initial Cartridge settings ===== | ||
+ | Your first trip should always lead you to the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | * The **Name** section shows the current name of the cartridge. Since we are working on the cartridge "Tiny Adventure", | ||
+ | |||
+ | * The cartridge is set to **Visible** by default. I do not think that this has an effect in the current Wherigo players but in general this property makes sure the cartridge is displayed by the Wherigo player. | ||
+ | |||
+ | * **Use logging when playing cartridge** saves a log of the players progress through the cartridge for debugging. We do not need this option during the tutorial. | ||
+ | |||
+ | * **Obfuscate Strings** is used to " | ||
+ | |||
+ | * **Prevent cartridge from running in emulator** is a really useful function that detects the Groundspeak emulator (a tool that you can use to play a cartridge on google maps). The function displays a warning message and closes the cartridge when it detects the emulator. Use this option if you want to avoid that people solve your cartridge on the sofa ^_^. This option is similar to the obfuscate string option. It is perfectly legal in the lua world but some Wherigo players might not like it. I personally prefer the "5 digit trick" | ||
+ | |||
+ | * Make sure to enable the **Upload media file** check mark. This option allows you to upload graphics directly from your computer to the Earwigo server. This is the most convenient way to work with graphics. | ||
+ | |||
+ | * **Allow other users to edit cartridge** offers the opportunity to develop a cartridge in a team. If this option is enabled you can send the link to the cartridge to your buddy and have him work on the same cartridge. A good team combination would e.g. be the code crunching lua programmer and the well spoken story teller. We will not use this option during the tutorial. //Side Note: Don't use this option to " | ||
+ | |||
+ | * Always set a **Starting location** for your cartridge. This value determines where the cartridge is placed until it is opened (in other words, this is where other people will see your cartridge on a map). This value is also essential for the functionality of the WWB " | ||
+ | |||
+ | * You might want to set the **Activity type** of your cartridge to an appropriate value. I don't know what effect this value might have but why take chances ;-). We will use Geocache for our tutorial. | ||
+ | |||
+ | |||
+ | |||
+ | ===== Creating Zones ===== | ||
+ | |||
+ | Since Wherigo is a location based system I like to start with the creation of geographic zones. Select the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | * The first zone that we will create is named " | ||
+ | |||
+ | * Click the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | And here is your first small task for this tutorial: | ||
+ | * Continue to add zones until you have entered the four zones | ||
+ | |||
+ | - Start | ||
+ | - The Castle | ||
+ | - The Clearing | ||
+ | - The Tree | ||
+ | |||
+ | ===== Using the map with zones ===== | ||
+ | ==== Unclutter the zones ==== | ||
+ | |||
+ | Now click the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Your map should look slightly different for the moment because all of your zones will be on top of each other. This is due to the fact that all zones are created at the " | ||
+ | |||
+ | * Select the " | ||
+ | * Highlight the topmost zone by clicking into the zone area | ||
+ | * Grab the zone marker pin and drag the zone to a nearby location. | ||
+ | * A zone indicator in the top left corner of the " | ||
+ | |||
+ | ==== Position the zones ==== | ||
+ | Your next task in this tutorial is to move all 4 zones to the locations indicated in the next screenshot. Use the zone indicator in the top left corner of the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | This almost completes the positioning of the zones but I have one last task for you. The zone "The Clearing" | ||
+ | * Select the Edit option on the map sub-tab | ||
+ | * Drag the **solid** zone points (indicated by the straight line in the above screen-shot) to change the shape of the zone. | ||
+ | * Create a few additional zone points by dragging **ghost** points (the semi transparent points next to the solid zone points). | ||
+ | * Now delete the superfluous points. Click the newly created zone points to delete them again. | ||
+ | * Your end result should look similar to the above shape of "The Clearing" | ||
+ | |||
+ | Remark: It is not safe to asume that all Wherigo players use the border of the zones to determine zone entry and zone proximity. Some Wherigo Players might use the Zone-Center-Point for related calculations. If you adjust the Zone shape to such an extent that the Zone-Center-Point (the marker pin) is no longer within the shape or badly off center, you should adjust the center point as well. | ||
+ | |||
+ | ===== Zone Properties ===== | ||
+ | You can change the Zone properties when you click on the __Property__ link of a particular zone. You can leave almost all Zone properties as they are right now, but I need to give you some idea how to use the properties. Suffer through the theory ;-) and try to remember that you can find detailed information in the tutorial if you need it. If the theory is to boring or you want to get started quickly, you can actually skip this section and [[create_your_first_cartridge# | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Leave all values as they are for now. You will receive a tutorial task at the end of this section. Now is the time for some theory. The following values can be changed on the Zone's Property tab: | ||
+ | |||
+ | ==== Distance and Proximity ==== | ||
+ | |||
+ | There are two different measures of the player' | ||
+ | |||
+ | {{: | ||
+ | | ||
+ | |||
+ | **Important**: | ||
+ | |||
+ | ==== Active ==== | ||
+ | |||
+ | The Active property determines whether or not the Wherigo player engine processes events related to the zone. If the zone is inactive, events are not processed and the zone is not visible (even if the Visible property is true). In other words: An inactive Zone does **NOTHING**. | ||
+ | |||
+ | You might think it is a smart idea to activate all Zones from the start to make sure that you have some action when you need it. Smart idea, but NO. For each active Zone the Wherigo player must check, whether the user is in, out or in proximity to the zone. This uses a lot of the limited GPS-CPU power. If you have to many active zones, the Wherigo player will waste to much time to perform the checks and your cartridge will crash more likely. As a good compromise :!:**you should not have more than 5 Zones active**:!: at any given time. Activate new Zones and remember to de-activate unused (old) Zones. | ||
+ | |||
+ | |||
+ | ==== Visible ==== | ||
+ | |||
+ | Do not confuse Visibility and active Zones. Only active Zones can be visible or invisible. Inactive Zones do not exist at all. The Visible property determines whether or not an active Zone is visible to the human player on his Wherigo device. This translates to: | ||
+ | * The Zone appears in the Wherigo Player´s locations list | ||
+ | * The human player can " | ||
+ | * The human player can navigate to it | ||
+ | |||
+ | If a zone is active and invisible it will create all Zone events but it will not be detectable for the human player (you can use this if you want to surprise the human player). | ||
+ | |||
+ | **Important**: | ||
+ | |||
+ | ==== Zone Property Essentials ==== | ||
+ | * A zone needs to be active in order to be evaluated by the Wherigo players. An inactive Zone is completely skipped by the Wherigo players. | ||
+ | * A Zone needs to be visible. Only visible Zones are listed and can be navigated to. | ||
+ | * Leave the value for Distance at -1 until you know exactly what you are doing ;-). | ||
+ | * Do not have more than 5 active Zones at any time. De/activate unused Zones. | ||
+ | |||
+ | ==== Tutorial Task for Zone Properties ==== | ||
+ | O.K. enough theory for the moment. Let us use our new knowledge and improve our TinyAdventure. Every cartridge needs minimum one Zone that is active and visible. Therefore go to the properties of the " | ||
+ | * Active and | ||
+ | * Visible for the " | ||
+ | |||
+ | ===== Zone Events ===== | ||
+ | Zone events are executed (triggered, they fire) when the human player physically enters a certain location (zone, ring, band) on the earth. Let us now have a look at the three zone areas and the events that are associated with these zone areas. | ||
+ | ==== Distance- Proximity- Enter- and Exit-Events ==== | ||
+ | |||
+ | {{: | ||
+ | | ||
+ | |||
+ | As the player approaches the zone, S/He will | ||
+ | * first cross the boundary formed by the **Distance** ring (triggering the **Distant** event), | ||
+ | * then the one formed by the **Proximity** ring (triggering the **Proximity** event), | ||
+ | * then the boundary of the **Zone** itself (triggering the **Enter** event). | ||
+ | |||
+ | As the player enters each band, an event associated with that band fires. By associating Statements with each event, your cartridge can react to the the fact that the human player approaches the zone. In addition, there is an event which fires when the user exits the zone. There are no exit events for the **Proximity** and **Distance** bands. However, the entry events for these bands fire again on the way out. | ||
+ | |||
+ | When the player leaves the zone, S/He will pass the rings in the reverse order. S/He will | ||
+ | * leave the **Zone** (triggering the **Exit** event) and | ||
+ | * enter the **Proximity** ring again (triggering **Proximity** again), | ||
+ | * enter the **Distance** ring again (triggering **Distance** again). | ||
+ | * The player will finally leave the **Distance** ring (no event is associated with this) | ||
+ | |||
+ | |||
+ | If you set the **Distance** range to -1 in the builder, the **Distance** entry event fires immediately upon cartridge startup (for initially active zones) or with the first activation of the zone (for inactive zones). | ||
+ | |||
+ | ==== Using Zone Events ==== | ||
+ | Using zone events in Earwigo is done on an **Events** sub-tab associated with each zone. The easiest example of event based programing is the usage of the OnEnter event. This event fires every time that the human player walks into the zone as it is outlined on the map. If you use this OnEnter event to always activate the next zone you can create a very basic cartridge that guides the human player from zone to zone. | ||
+ | |||
+ | We will use the OnEnter Event of the Start zone to activate the next zone (The Clearing). | ||
+ | {{ : | ||
+ | |||
+ | If the human player enters the Start Zone he will trigger the associated OnEnter Event for this zone. This Event will activate the Clearing Zone. The activation of The Clearing will add a new item to the players location list. The human player can select the new location and navigate to it. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ===== Working with Media ===== | ||
+ | ==== Creating Media objects ==== | ||
+ | Media objects are created similar to the creation of zone elements. We will create the media elements that we have decided to use in "Tiny Adventure" | ||
+ | |||
+ | {{: | ||
+ | |||
+ | * Select the " | ||
+ | * Go to the " | ||
+ | * Create the following media objects | ||
+ | * bridge | ||
+ | * castle | ||
+ | * clearing | ||
+ | * hut | ||
+ | * key | ||
+ | * tree | ||
+ | * wizard | ||
+ | |||
+ | To upload the media files (pictures in our case) that will be associated with the " | ||
+ | |||
+ | ==== Uploading media files ==== | ||
+ | |||
+ | === Image format === | ||
+ | Wherigo Players will not display all image formats. The safest way is to stick to jpg images. | ||
+ | |||
+ | - Make sure that the images are .jpg or .jpeg and NOT .png | ||
+ | - Use an application to remove all EXIF (Exchangeable Image File Format) data from photos and pcitures | ||
+ | - Software that will do the trick PC: IrfanView, Mac: ImageOptim | ||
+ | |||
+ | === Copyright side note === | ||
+ | |||
+ | Allow me a quick side note with regard to the images. For this tutorial I have prepared the images for you. They have been taken from Wikimedia Commons and are mostly in the public domain. Some require you to mention the name of the author if you want to use the pictures. Appropriate information for each picture is provided on the download page. Make sure you stick to the license if you want to use the pictures for your own projects. | ||
+ | |||
+ | [[Tiny Adventure Images|Click this link to go to the picture page and download the images for "Tiny Adventure" | ||
+ | |||
+ | |||
+ | === Image size side note === | ||
+ | I have tried many variations of graphic sizes, only to find out that the Wherigo players re-size all pictures to fit the screen. The following sizes will typically fit the players screen and will not be resized (giving you the best possible resolution). | ||
+ | * Introductory image (allows app. 1 line of add. text) -> 230 pixels in width and 280 pixels in height. | ||
+ | * Follow on image (allows several lines of text) -> 230 pixels in width and 200 pixels in height. | ||
+ | * Icon 32x32 Pixel (will not work on Garmin devices) ([[Emulator remark|Emulator remark]]) | ||
+ | |||
+ | If you need pictures in landscape orientation I suggest you use the portrait orientation instead and have the user of your cartridge rotate the player (his physical device) by 90° to look at your graphic; this will give you the highest resolution. In other words I suggest that you produce your landscape image rotated by 90°. This is similar to the images that are created when you rotate your real digital camera by 90° before you take the picture. [[Landscape rotation|Here is an example]]. | ||
+ | |||
+ | === Uploading the files === | ||
+ | |||
+ | For our tutorial you should have clicked on the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | On the " | ||
+ | |||
+ | * {{: | ||
+ | * Click on " | ||
+ | * After you have selected the media file from your computer the picture will be uploaded to the server and a preview of the image will be presented in the lower left corner of the page. | ||
+ | |||
+ | //If your page does not show a " | ||
+ | |||
+ | The following screen-shot shows the bridge " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | I assume that you will find it quite easy to upload the images and therefore your next assignment in this tutorial is to upload the media files for all your media objects. Please upload the files for: | ||
+ | |||
+ | * bridge | ||
+ | * castle | ||
+ | * hut | ||
+ | * key | ||
+ | * tree | ||
+ | * wizard | ||
+ | |||
+ | You should have no trouble to identify the appropriate files by their file names. Don't worry if you have more files than you need right now. The superfluous files will be needed later on (when we decide to beef up the cartridge a little more 8-)). Your last media assignment (wizard) should look similar to the screen-shot below. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | ===== Saving the cartridge ===== | ||
+ | |||
+ | After all the work that you have done so far, I think it is about time to make sure that your progress is saved and that a sudden computer hiccup does not cause the loss of all your data. At this stage, your changes are not yet permanently saved to the server. Go to the " | ||
+ | |||
+ | The data will be stored under the cartridge name "Tiny Adventure" | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | Working on an existing Earwigo cartridge does not permanently change the cartridge until you go to the " | ||
+ | |||
+ | There are currently two “Save” options on this tab. The standard “Save” will just saves your changes and is the quicker option. "Save and restart" | ||
+ | |||
+ | ===== Creating items ===== | ||
+ | Our cartridge already has all the locations (Zones) that we will use to guide the player around in our adventure. There is however nothing in our world yet. It is about time to change this. Let's go ahead and add items to the cartridge. Items can be used in the cartridge rather like an item that you find in the real world. You can find Items in the Zones, pick them up and put them into your bag (Inventory) and you can use them alone or together with other items. However, none of these useful actions is done automatically, | ||
+ | |||
+ | ==== Adding items to the items list ==== | ||
+ | |||
+ | Let us start with the creation of the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Now Add the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | ==== Assigning item properties ==== | ||
+ | |||
+ | Once the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | === Item/ | ||
+ | This text is displayed under the picture that is shown to the player when s/he looks at the item. Use the description to help your player understand what s/he has found. Use your imagination to breath life into your objects! | ||
+ | |||
+ | === Item/Media === | ||
+ | This dropdown menu lets you select the picture that is shown to the player to illustrate your item. Several items can " | ||
+ | |||
+ | === Item/Locked === | ||
+ | This is a property that you can use if your item is a box or a similar container. You can check the status of the Locked property and allow the player to open the item only if Item/Locked is set to NO. We are currently dealing with a key and do therefore not need this setting, but maybe holding this key will allow us to unlock something later! | ||
+ | |||
+ | === Item/Opened === | ||
+ | This is a property that you can use if your item is capable of being opened; for example, a door. You can check the status of the Opened property and allow the player to pass the door only if the status of Item/Opened is YES. We are currently dealing with a key and do therefore not need this setting. | ||
+ | |||
+ | === Item/ | ||
+ | This property is useful if you want to hide objects and make them appear in your cartridge. If the Visible property is NO, your item will not be shown to the player (even if the item is in the same Zone as the player). You need to set Items/ | ||
+ | |||
+ | === Item/ | ||
+ | This dropdown box allows you to position the item inside one of the zones that you have already created in the first section of this tutorial. In the "Tiny Adventure" | ||
+ | |||
+ | Look at the screenshot above and complete the settings for "The Kingdom Key" | ||
+ | - Description | ||
+ | - Media | ||
+ | - Container (zone) | ||
+ | |||
+ | ==== Creating Item/ | ||
+ | |||
+ | Items can be used together with standard Wherigo functions but there is an incompatibility of the Item's standard "On Click" event. If you build this event into your cartridge it can not be played on a Garmin device. I avoid the Item's "On Click" event mostly because I want my cartridge to be compatible with the large number of Garmin devices out there. | ||
+ | |||
+ | The second reason to avoid the "On Click" event is that there is a much nicer approach to using an item. This nicer way is called Item Commands. Item Commands are much more specific than the "On Click" event that expects your human player to click on the item on his screen out of pure curiosity. If you use an Item Command, the item will be displayed together with one or more command buttons under your item. We will learn how to use Item Commands in this section. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | === Properties === | ||
+ | == Text == | ||
+ | Is the text that your human player will see on the button(s) under the image of your item. Consider the actions that you intend to do with your item. Each action will become a text input. If you are for example creating commands for a key, good ideas could be: | ||
+ | * pick up | ||
+ | * lock door | ||
+ | * unlock door | ||
+ | * hide | ||
+ | |||
+ | == Enabled == | ||
+ | Allows you to switch the respective command button(s) on or of. This feature is nice if you don't want to give away the future usage of your item. Events in the progress of your cartridge will give you opportunities to control this value (e.g. switch on the button " | ||
+ | |||
+ | == Message when no target == | ||
+ | Refers to the "Works with other objects" | ||
+ | |||
+ | == Works with other objects == | ||
+ | If you want to create an item that needs to be used together with other objects (characters, | ||
+ | |||
+ | Event firing is changed from: **" | ||
+ | |||
+ | == Works with all objects == | ||
+ | Select YES if any object will do the trick for you. Select NO if you want to provide a detailed list of objects (see next chapter) that can be used with your item. | ||
+ | |||
+ | == List of objects == | ||
+ | All possible objects (characters, | ||
+ | |||
+ | If the human player activates the associated command all objects on this list that are visible to him will be displayed. The human player can select the desired object. But remember the fact that there will be only one event associated with this list. Every visible object from this list will trigger the same event. You can easily see this because there is only one command event available on the events tab. | ||
+ | |||
+ | If we go back to the key example, one key could open several locks (lock1, Lock2, Lock3, old Lock, ...) that are located in different zones of your cartridge. The human player would be offered only one lock per zone because all other locks are not visible to the human player. However you will have to make sure that the single event associated with this command checks the players location (zone) and opens the correct lock. | ||
+ | |||
+ | === Tutorial tasks === | ||
+ | * In order to create an Item Command click on the green plus sign in the Commands section. | ||
+ | * For the moment the "Pick up" command is all I need you to create. We will add other options later in this tutorial. | ||
+ | * I plan to have this command visible as soon as the key is close to the player, therefore select Enabled: | ||
+ | * Leave the " | ||
+ | * For our first command in the tutorial we will not yet use "Works with other objects", | ||
+ | |||
+ | |||
+ | ==== Item Events ==== | ||
+ | You might have been wondering why we were creating the Item/ | ||
+ | |||
+ | Commands are one of the best ways to interact with the player. The human player will see a list of commands on his Wherigo player below the object that he is currently looking at. For our example he will see a button with the command "Pick up" below "The Kingdom Key". I hope it is obvious why we have created the command "Pick up" (to give your human player the chance to pick up the Kingdom Key ;-) ). However before this button has an effect, you need to associate one ore more " | ||
+ | |||
+ | The place to connect the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Select your "Pick up" command from the list on the left hand side. The input matrix for program statements will come to live and offer you a green plus sign to add more statements to the command event. In our case a single line will be sufficient to tell the software what to do when the event "Pick up" fires. | ||
+ | |||
+ | **Move an element Item:The Kingdom Key => Player: | ||
+ | |||
+ | will do the trick. This statement tells the software to move "The Kingdom Key" inside the player' | ||
+ | |||
+ | |||
+ | ===== Creating Characters ===== | ||
+ | Characters are your best chance to bring your cartridge to life. Populate your zones with living creatures that interact with your human player. Characters are easy to create and we will see how it works in this tutorial section. | ||
+ | |||
+ | Go to the " | ||
+ | |||
+ | Once Maronion is in your list, click on the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | You will recognize that Character " | ||
+ | |||
+ | Since you are still reading, here is the explanation for the values that can be found on the Character' | ||
+ | |||
+ | |||
+ | ==== Character Properties ==== | ||
+ | |||
+ | === Character/ | ||
+ | This text is displayed under the picture that is shown to the player when s/he looks at the character. Use the description to help your player understand who is the person, ghost, wizard,... that he has just met. "You see a wizard" | ||
+ | |||
+ | === Character/ | ||
+ | This dropdown menu lets you select the picture that is shown to the human player to illustrate your character. Several characters can " | ||
+ | |||
+ | === Character/ | ||
+ | This property is useful if you want to hide characters and make them appear in your cartridge. If the Visible property is NO, your character will not be shown to the player (even if the character is in the same Zone as the player). You need to set Character/ | ||
+ | |||
+ | It would be a nightmare if all visible characters would be displayed to your human player. Characters are therefore automatically hidden from view through the " | ||
+ | |||
+ | |||
+ | === Character/ | ||
+ | This dropdown box allows you to position the Character inside one of the zones that you have already created in the first section of this tutorial. Maronion lives in the hut, place him in the zone "The Hut". Once you select the zone, the Character/ | ||
+ | |||
+ | Wherigo is zone oriented and you will have no need to change the Character/ | ||
+ | |||
+ | === Character/ | ||
+ | The gender of the character. I have no good idea how to use this to our advantage right now but it gives you a better description of your characters. This might come in handy if you intend to check the gender of a character before you start certain actions. | ||
+ | |||
+ | === Character/ | ||
+ | I guess this property will be used in future cartridges to enable linked Wherigo games. For the time being " | ||
+ | |||
+ | === Tutorial tasks (character creation) === | ||
+ | Look at the screen-shot above and complete the settings for " | ||
+ | - Description | ||
+ | - Media | ||
+ | - Visible | ||
+ | - Container (zone) | ||
+ | - Gender | ||
+ | - Type | ||
+ | |||
+ | ==== Character Commands ==== | ||
+ | You are almost done with the creation of Maronion but I intend to tell you how our human player can interact with our wizard Maronion. We will use Commands to offer " | ||
+ | - Fight (Wound the player when he chooses the Command " | ||
+ | - Talk to (Let the player continue the cartridge with the Command "Talk to" by revealing the location of the tree). | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Check [[create_your_first_cartridge# | ||
+ | |||
+ | |||
+ | ===== Creating Dialogs===== | ||
+ | |||
+ | If our human player is bold enough to attack Maronion we need to tell him, that he has selected the wrong approach. Talking to the human player is done via Messages or Dialogs. We will use the Dialog for the " | ||
+ | |||
+ | The Dialog offers as many text fields as you might need. Use Dialogs when you have a larger portion of text that you prefer to present in digestible chunks. The Dialog also offers you the opportunity to change the media for each individual text portion. The disadvantage of Dialogs is that they do not offer any buttons (and no events). | ||
+ | |||
+ | {{: | ||
+ | |||
+ | For our adventure I have chosen to use the Dialog after the fight because the text that I want to display is a little longer and it feels better if a longer text is displayed in smaller chunks ([[tips_and_tricks# | ||
+ | |||
+ | Your next task for the tutorial is to create a Dialog **GoBackToBridge** that consists of 4 text portions: | ||
+ | * The wizard is surprised that you dare to attack him but he is obviously not concerned at all. | ||
+ | * He counters your attack with a quick flick of his wrist and sends you flying through the air. | ||
+ | * You hit the ground hard and the air is pressed out of your lungs. Your body is badly bruised and hurts terrible. You are in no condition to continue the adventure any longer. | ||
+ | * Your only hope is to go back to the bridge over the Breaon and seek the assistance of the river spirit. She will restore you and you will be fit to try the adventure again. | ||
+ | |||
+ | This is the Dialog that we intend to present when the human player selects the " | ||
+ | * Click on "When event occurs: " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | |||
+ | ===== Decisions (Introduction)===== | ||
+ | |||
+ | In the [[create_your_first_cartridge# | ||
+ | |||
+ | The human player had the folowing choices | ||
+ | * (A) Fight: | ||
+ | * (B) Talk: Let the player continue the cartridge with the Command " | ||
+ | |||
+ | We have already dealt with option (A) and you might think we could do (B) in a similar manner: | ||
+ | < | ||
+ | Display dialog or message Message: | ||
+ | Set value Zone:The Tree: | ||
+ | Set value Zone:The Tree:Active => true | ||
+ | </ | ||
+ | // | ||
+ | |||
+ | |||
+ | The above version would almost work but there is one major flaw in the above " | ||
+ | * Our human player could decide to fight (by choosing the appropriate Command/ | ||
+ | * He would be sent back to the bridge as desired | ||
+ | * But instead of walking the way back to the bridge our player could decide to approach Maronion again and select the Command/ | ||
+ | * The Event " | ||
+ | |||
+ | If a human being would be in charge of the cartridge instead of Wherigo the human could have avoided this easily but he would have used two things that we have not yet programed into the "Tiny Adventure" | ||
+ | * The human would **remember** that our player has pressed the fight option first | ||
+ | * The human would make a **decision** based on his memory (let the player walk to the tree or tell him that he is supposed to walk back to the bridge) | ||
+ | |||
+ | We have to do the same for our cartridge. | ||
+ | * We need the cartridge to **remember** that the player has already pressed the " | ||
+ | * The **decision** is called an " | ||
+ | |||
+ | ===== Working with Tasks ===== | ||
+ | |||
+ | We will create a task "Find the wizard" | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The "Find the wizard" | ||
+ | |||
+ | {{: | ||
+ | |||
+ | === Active === | ||
+ | A task can be active (true) or inactive (false). You should make a task active when you want the player to work on it. Tasks show up in the task list only when they are both active and visible. My guess is that events are not processed for inactive tasks. But that's just a guess. We will leave the task inactive for now because we are currently only preparing the cartridge. We will change this value to active during the course of the cartridge. | ||
+ | |||
+ | === Complete === | ||
+ | A task can be complete (true) or incomplete (false). You can use this property to track whether or not the player has completed the task. Otherwise, the status does not affect the visibility of the task. The initial value of " | ||
+ | |||
+ | === Visible === | ||
+ | An active task can be visible (true) or not visible (false). This controls visibility in the task list for active tasks. Inactive tasks are never visible. We will leave the task invisible for the time being because the meeting with Maronion will happen in the future (the course) of our cartridge. | ||
+ | |||
+ | === Correct State=== | ||
+ | A task can have one of three " | ||
+ | * None: as long as the player has not yet reacted to the sudden appearance of Maronion | ||
+ | * NotCorrect: if the human player decides to fight against the mighty magician | ||
+ | * Correct: if the human player decides to communicate with the mage | ||
+ | |||
+ | |||
+ | If you are a mighty programmer 8-) you will know that we could have used a variable to remember the user choice (fight or talk). I prefer to use the Task because it is displayed in the player software and because tasks can be used to guide the user in his adventure. | ||
+ | |||
+ | |||
+ | |||
+ | ===== Decisions (Continued)===== | ||
+ | |||
+ | You have just learned that we can use a task to **remember** things that have happened in the cartridge (we are using the Task's Correct property to remember the player' | ||
+ | |||
+ | IF THEN ELSE statements need a little brain work before you can program them into the WWB. You should typically decide what you intend to do before you start the IF THEN ELSE statement. The best way to sort things out is a decision tree, it will help you to create the logic concept of your idea. | ||
+ | Don't panic (yet ;-) ), this is just one way to look at things. | ||
+ | |||
+ | We have 2 possible selections (buttons): | ||
+ | * Fight | ||
+ | * and Talk | ||
+ | |||
+ | {{: | ||
+ | |||
+ | < | ||
+ | Fight will: | ||
+ | ----------- | ||
+ | - set the Task "Meet the wizard" | ||
+ | - display a Dialog " | ||
+ | |||
+ | Talk will: | ||
+ | ---------- | ||
+ | - check the "Meet the wizard" | ||
+ | (in this case the "Meet the wizard" | ||
+ | If incorrect | ||
+ | - it will display a message ToLateToTalk to tell the human player that his attack is remembered and that | ||
+ | he needs to go back to the bridge. | ||
+ | Else | ||
+ | - it will activate the Zone " | ||
+ | - it will display a Dialog GoToTree | ||
+ | </ | ||
+ | |||
+ | These actions will once again be programmed on Maronion' | ||
+ | |||
+ | ==== ToDo List ==== | ||
+ | |||
+ | - create a Dialog " | ||
+ | - set the Task "Meet the wizard" | ||
+ | - check the Task "Meet the wizard" | ||
+ | - display a Message " | ||
+ | - display a Dialog " | ||
+ | - activate the Zone " | ||
+ | |||
+ | The ToDo list will help us keep track of what we need to do. You will find a reference to the list at the beginning of each of the following sections. The next 5 sections of the tutorial will deal with completing the items from the list above. **[[create_your_first_cartridge# | ||
+ | |||
+ | ===== Changing Properties - Set Value ===== | ||
+ | [[create_your_first_cartridge# | ||
+ | |||
+ | We have decided that we will have to change the status of the "Meet the wizard"' | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Add the Statement "Set value Task:Find the wizard: | ||
+ | |||
+ | ===== Creating Expressions ===== | ||
+ | [[create_your_first_cartridge# | ||
+ | |||
+ | If you want to compare things or if you want to analyze values, you have to use an Expression in Earwigo. The Expression represents the comparison and can be used whenever you need it. | ||
+ | |||
+ | The typical use of an expression is inside an IF THEN statement (IF Expression THEN ...). With other words: any IF THEN statement that you intend to use in the WWB needs an Expression (and that is the reason why I ask you to create an expression in this tutorial ;-) ). | ||
+ | |||
+ | |||
+ | We are preparing an IF THEN statement that will check which button our human player has pressed when we gave him the choice to attack the wizard or talk to him. I hope that YOU remember that we programmed the Wherigo player software to remember this fact through the **Task** "Meet the wizard" | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Create the Expression " | ||
+ | |||
+ | For our tutorial we do only need the comparison "is equal to" == but there are a few other comparisons that I should mention: | ||
+ | < | ||
+ | A == B A is equal to B | ||
+ | A ~= B A is not equal to B | ||
+ | A > B A is larger than B | ||
+ | A < B A is smaller than B | ||
+ | A >= B A is larger or equal to B | ||
+ | A <= B A is smaller or equal to B | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ===== Messages and Message Buttons ===== | ||
+ | [[create_your_first_cartridge# | ||
+ | |||
+ | The next item on our ToDo list is a message that is presented to the human player to inform him that he can not talk to Maronion after he has decided to attack the wizard. The Message is named " | ||
+ | |||
+ | A Message offers only one text field that can contain a maximum of 850 characters (text strings larger than 850 characters might crash your cartridge, [[tips_and_tricks# | ||
+ | |||
+ | The benefit of a Message is that it also offers 2 buttons (and the respective event). You can use the buttons to communicate with the player. Use Messages for short Instructions or when you need to get a reaction from the player (button press). If you are using Buttons you should typically also go to the Events tab of you message. You will find only one event ("When a button is pressed" | ||
+ | |||
+ | I will not go into details now but if you intend to use more than one button, you will most likely need an [[create_your_first_cartridge# | ||
+ | |||
+ | {{: | ||
+ | |||
+ | We will use the above message to inform the human player that Maronion is not interested to talk after he has been attacked. We will use only one Message button right now. You can use more buttons but it is to early for this in the tutorial. So your next tutorial task is to create the message “ToLateToTalk” and enter the Properties depicted above. | ||
+ | |||
+ | === Message Button Event === | ||
+ | |||
+ | The buttons are handled on the Events tab of the message. Since we are only using one button we can use the button event without the need to check for the pressed button. If there is only one button the Event “When a button is pressed” is always invoked by our “OK, I will go back” button. We will react on this button by presenting the direction to the bridge (which is our Zone “Start”) to our human player. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | You might be wondering why we have not used the more convenient Wherigo command: “Show_a_screen Zone: | ||
+ | |||
+ | Only one Show_a_screen command is safe to be used on all devices. It is the command “Show_a_screen Standard_screen: | ||
+ | |||
+ | ===== Backup of your cartridge ===== | ||
+ | Hey, I see you have followed the tutorial all the way down to this section. You are obviously seriously determined to learn how to build your own cartridge ;-). I will give you a quick break and introduce a WWB builder feature that will come in handy every now and then. we will continue building after this interlude. | ||
+ | |||
+ | If you have followed the tutorial you should have found some instructions on [[create_your_first_cartridge# | ||
+ | |||
+ | If this concerns you there is a way out. I will use this little break to describe how you can posses your very own copy of your cartridge. Save your cartridge and go to the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | - Select your cartridge | ||
+ | - Select Backup | ||
+ | - Press the Submit button | ||
+ | |||
+ | You will then be offered a file name and you can decide where you want to save your cartridge. Should you ever wish or need to upload your backup back to the server, select the Operation: | ||
+ | |||
+ | Should you ever wish to send your WWB cartridge to someone else to look at or modify in Earwigo, the backup is the method to do this. Locate your backup file and send it to your friend. | ||
+ | |||
+ | |||
+ | ===== Simulating Interaction (Dialog) ===== | ||
+ | [[create_your_first_cartridge# | ||
+ | |||
+ | ==== Concept ==== | ||
+ | |||
+ | The last but one item on our ToDo list is a Dialog that informs our human player about the location of the tree. We have already talked about [[create_your_first_cartridge# | ||
+ | |||
+ | We will create a dialog that " | ||
+ | |||
+ | ==== Demonstration ==== | ||
+ | |||
+ | == You carefully approach the wizard and kindly ask him == | ||
+ | | ||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | ==== Interaction Dialog in Earwigo ==== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Create the Dialog " | ||
+ | |||
+ | ===== If Else EnfIF Statements ===== | ||
+ | |||
+ | [[Quick_and_dirty_IF_Then_Else_Intro|(the quick and dirty IF Then Else intro can be found here)]] | ||
+ | |||
+ | [[create_your_first_cartridge# | ||
+ | |||
+ | Item 6 on the ToDo list is to enable the Zone " | ||
+ | |||
+ | ==== Flashback (a message from the past) ==== | ||
+ | |||
+ | The situation that our human player currently faces is: | ||
+ | * He has walked to a clearing in the woods | ||
+ | * He has found the wizard Maronion | ||
+ | * He has 2 options to interact with Maronion (we have created two buttons) | ||
+ | * Fight | ||
+ | * Talk | ||
+ | |||
+ | {{: | ||
+ | |||
+ | < | ||
+ | Fight will: | ||
+ | ----------- | ||
+ | - set the Task "Meet the wizard" | ||
+ | - display a Dialog " | ||
+ | |||
+ | Talk will: | ||
+ | ---------- | ||
+ | - check the "Meet the wizard" | ||
+ | (in this case the "Meet the wizard" | ||
+ | If incorrect | ||
+ | - it will display a message ToLateToTalk to tell the human player that his attack is remembered and | ||
+ | that he needs to go back to the bridge. | ||
+ | Else | ||
+ | - it will activate the Zone " | ||
+ | - it will display a Dialog GoToTree | ||
+ | </ | ||
+ | |||
+ | We have already created the interaction necessary for " | ||
+ | |||
+ | ==== Creating the If Else EndIF Statement ==== | ||
+ | |||
+ | After all the preparation it is now time to create the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | ... and to choose " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | If this is your first IF ELSE EndIF programming it will help to know that: | ||
+ | * all statements **between** the **If** condition and the **ELSE** statement will only be executed if the IF statement is **True**. | ||
+ | * all statements **between** the **ELSE** statement and the **EndIF** will only be executed if the IF statement is **False** | ||
+ | * all statements **under** the **EndIF** statement will be executed in the **normal** way. The EndIf statement closes the IF condition. | ||
+ | |||
+ | |||
+ | |||
+ | {{: | ||
+ | |||
+ | For the tutorial I need you to create the following statements: | ||
+ | - First select the expression. “**WizzardTaskIncorrect**” for the **if statement**. I hope you remember that we programmed this expression to check the “Find the wizard” task. If the “Find the wizard” task is Incorrect, we know that the player has already incorrectly tried to fight Maronion. He will not be allowed to talk to Maronion. We will therefore | ||
+ | - “Display the dialog or message Message: | ||
+ | |||
+ | - **else** opens the alternate course of actions for us (look at the decision tree if you need a picture for this decision path). Whenever the if statement in number 1) above is not true this else branch takes over (skipping the commands of number 2) above). All statements following this else (2 to 5 below) will only be executed when the if statement in number 1) is false. This tells us that the player has not tried to fight Maronion. We do therefore: | ||
+ | - “Display dialog or message Dialog: | ||
+ | - Set value Zone:The Tree: | ||
+ | - “Set value Zone:The Tree:Active ⇒ true” activates the zone The Tree (see 5.4.2 for details). | ||
+ | - “Set value Zone: | ||
+ | |||
+ | - **endif** closes our If statement. From now on statements will be executed as usual (but there are currently no statements below the endIf ). | ||
+ | |||
+ | If there were statements below this line they would all be executed one after the other. Just like it was before you learned the IF THEN ELSE statement. | ||
+ | |||
+ | =====User Input (Asking Questions) ===== | ||
+ | |||
+ | If our Hero manages his encounter with the wizard nicely he will be able to walk to the next zone ("The Tree" | ||
+ | |||
+ | Let us assume a dwarf guards the key and asks our hero a question before he offers the key. You should already know how to create a character from [[create_your_first_cartridge# | ||
+ | |||
+ | Create a [[create_your_first_cartridge# | ||
+ | |||
+ | Now how do we handle questions and user input? | ||
+ | |||
+ | ==== Creating a variable ==== | ||
+ | The first thing that we need to do is to create a **Variable** that will store the user's input. Go to the **Variables** tab and create the variable " | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Upon creation you will have to decide which variable type you will be using. This are your options:. | ||
+ | * String: a text or word | ||
+ | * Number: a number | ||
+ | * Flag: a True/False type of variable. It can only store one of two possible values. It is either True or False. | ||
+ | |||
+ | Since we expect the human player to answer with a word we have to select the **Type** " | ||
+ | |||
+ | ==== Creating an Input ==== | ||
+ | The next thing that needs to be done is to create a question that somehow delivers the given answer to the variable that we have just created. In Wherigo terminology (and for computer programs) this is called an **Input**. An **Input** combines a question with a variable. The answer that the human player enters for an **Input** is automatically transfered to the storage variable that is selected for this **Input**. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Go to the **Input** tab and create the **Input** " | ||
+ | |||
+ | ==== Get Input from player==== | ||
+ | Once the **Input** is created it can be presented to the human player. As always in Wherigo we need an **Event** to do this for us. The easiest way to achieve this would be to connect the input to the **OnEnter** **Event** of a zone. If you do this remember that the **Input** will overwrite any **Dialog** or **Message** that you have tied to the **OnEnter** **Event** as well. | ||
+ | |||
+ | I have been asked how you can display a text for the **Zone** and ask for the **Input** thereafter. There are several possibilities. The easiest way to do this is to display a **Message** when the human player enters the **Zone**. A **Message** has a button that creates a new **Event** (the " | ||
+ | |||
+ | I have chosen a slightly more complex approach. We will be using the freshly created "Talk to the dwarf" **Event** to do this in our little adventure. The benefit of this approach is that the cartridge has more life in it and that you can use a **Dialog** instead of a **Message** when the human player enters the **Zone** (**Dialogs** have no Events). You might want to give the human player a hint that someone wants to talk to him during your zone entry prelude. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | This way the human player can enter the Tree zone, read any Message or Dialog that you need to display and see the dwarf. If he has a closer look at the dwarf he will find out that he can talk to the dwarf (command button). If he decides to do so (press the button) the dwarf will ask him the question "Who has sent you here?" (our Input). | ||
+ | ==== Evaluating Inputs ==== | ||
+ | In order to evaluate the **Input** we need to remember the decision making chapter of this tutorial. If you did understand how to make a decision you might be able to see that all that is left is to decide whether the human player has entered the correct or incorrect answer (similar to deciding whether our hero has chosen to attack or to talk to Maronion). If you don't quite remember, don't panic ;-). I will guide you through the procedure step by step. | ||
+ | |||
+ | === Evaluation: Creating an Expression === | ||
+ | The first stop for all decisions is to create the **Expression** that describes what you expect as the solution to your puzzle. In our little adventure the dwarf has asked the human player the question: "who has sent you here". As our solution to this question we are expecting the answer " | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | This expression gives us a chance to evaluate the user's input against the constant value " | ||
+ | |||
+ | === Evaluation: Testing against the Expression === | ||
+ | Once you have detailed your solution in the Expression you can test the Expression and find out whether it is true or false. If the Expression (Compare Variable: | ||
+ | |||
+ | The easiest way to test this is to use the event that is created by the Input itself. Every time that the human player enters a value he triggers the GetInput event. This event tells us that he human has tried to answer our question. Time to test it with an **IF Then Else** structure (sounds familiar ;-)?). | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | If the user has answered correctly three things will happen | ||
+ | * The key will become visible (your human player should be able to pick up the key and put it into his inventory without any further programming from your side, we have done this already when we created the item “The kingdom key”) | ||
+ | * The castle zone will become active (and visible) | ||
+ | * The dwarf will tell our hero to pick up the key. | ||
+ | |||
+ | If the user has answered incorrectly we will offer the Input again. | ||
+ | * You can program your cartridge this way and it will work. I do however suggest to present a message to let the human player know that he has given the wrong answer before you repeat the input procedure (present the message instead of the input, then use the message event to display the input). | ||
+ | |||
+ | ===== The End ===== | ||
+ | |||
+ | There it is, the sudden end of the tutorial. I know it is mean to leave you and Maronion in this unsolved situation but You are now more than capable to bring this story to an end. You are done, tutorial complete. | ||
+ | |||
+ | Okay, okay, I will give you a hint how to continue: | ||
+ | |||
+ | ==== Zone Command Workaround ==== | ||
+ | |||
+ | The next step is a workaround to overcome the Garmin restriction for ZoneCommands. Just create an item and place it in the zone. See below how it works. | ||
+ | * Create an item named “The door of the castle” | ||
+ | * Select the Zone “The Castle” as the Starting location for “The door of the castle”. Make sure the door is visible | ||
+ | * Create a command “Use the Kingdom Key” and select the option “Works with other objects” YES | ||
+ | * Make sure this command does only work with the kingdom key (see below) | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | === Object Command "works with other objects" | ||
+ | If you plan to use the "Works with other objects" | ||
+ | |||
+ | The "other objects command" | ||
+ | |||
+ | The "other objects command" | ||
+ | |||
+ | One visibility problem does however remain. In my case I have combined two objects that have different visible histories. The photo will be hidden in the players inventory and he might have forgotten about it by the time that he meets the suspect. The suspect itself is a completely different story. He will be in plain sight (aka visible in the same zone as the player). When the human player looks at the suspect he will receive the information that he can " | ||
+ | ==== The completion code ==== | ||
+ | === Displaying the completion code === | ||
+ | If the human player wants to log his completed cartridge at www.wherigo.com he needs to enter a " | ||
+ | |||
+ | * Select the last event of the cartridge (you can use other events if you know your way around) | ||
+ | * Use this event to mark the cartridge as complete (SetValue/ | ||
+ | * Display the following message: | ||
+ | |||
+ | < | ||
+ | Congratulation, | ||
+ | is: ~~Player.CompletionCode~~ . Write this code down, you need it to log | ||
+ | the cartridge at www.wherigo.com. | ||
+ | </ | ||
+ | |||
+ | Make sure you copy the ~ symbols when you write your Message. They fetch the enclosed variable from the system and include it in your message (I hope you are smart enough now to know that you have to create the Message before you can display it in the event ;-) ). | ||
+ | |||
+ | === Creating a completion code item === | ||
+ | It is a good idea to prepare a " | ||
+ | |||
+ | The cartridge has to be saved before the human player closes the cartridge or all information will be lost regardless of all your efforts; | ||
+ | |||
+ | == Preparation of the " | ||
+ | * Create an item " | ||
+ | * Make sure the item is invisible | ||
+ | * The item has no starting location | ||
+ | * Create a Command "Show completion code" | ||
+ | * Use this command to display the previously created [[create_your_first_cartridge# | ||
+ | |||
+ | You might be curious why I am using a command and a message to display this information. The item description looks like a much easier way to do this without all the trouble of creating commands and messages. This is actually a good question and if you have really asked yourself something along this line I think you are ready to put your own cartridges out there. ;-) Coming back to the question: the item description is created together with the item itself when the cartridge is started for the first time. At this time the cartridge is still incomplete and there is no completion code available. If you display a message however this will look up the current value of any variable (for example Player.CompletionCode) and display it to the human player. | ||
+ | |||
+ | == Presenting the " | ||
+ | * Move the " | ||
+ | * Make the item visible | ||
+ | * Save the cartridge | ||
+ | * Inform the player about his new item | ||
+ | |||
+ | === Testing the " | ||
+ | The emulator and the test compilations will not have a working completion code in it. You will see a dummy code " | ||
+ | |||
+ | This is the theory behind it: The completion code is connected to the human' | ||
+ | |||
+ | Should you really desire to see a working completion code, this is how to get there: | ||
+ | - Upload the cartridge to GS www.wherigo.com | ||
+ | - Secretly publish the cartridge (invisible, not referenced in search engine) | ||
+ | - Download this published cartridge with your own GS player account | ||
+ | |||
+ | If you run the resulting *.gwc in the emulator things should work out as expected (I would not really do this because I have done it once and I now believe that it works. ;-) | ||
+ | |||
+ | ==== Uploading your cartridge to wherigo.com ==== | ||
+ | I have provided some tips how to upload your cartride in the earwigo FAQ. Check the FAQ for the topic [[tips_and_tricks# | ||
+ | ====== Further information ====== | ||
+ | |||
+ | I guess you have already found the [[edit_cartridges|WWB Reference]] (work in progress) which lists information about the individual tabs of the WWB. The information might be identical to this tutorial (several pages have been copied) or it might contain new information from other authors. The main advantage is that information is listed by WWB tabs which makes it easier to find advice for a specific WWB problem. | ||
+ | |||
+ | The following links from the Groundspeak Wherigo Wiki can be helpful if you can not find the information in our Wiki: | ||
+ | |||
+ | * The [[http:// | ||
+ | * The [[http:// | ||
+ | |||
+ | |||
+ | Have fun creating Wherigo cartridges with Earwigo! | ||
+ | |||
+ | Geo Magician | ||