Difference between revisions of "BuildingScenariosSimple"

From The Battle for Wesnoth Wiki
(Building scenarios: Simple)
Line 1: Line 1:
<table width=100% border=0>
+
----
<tr>
+
{| style="float:right"
<td>[[BuildingScenarios]]</td>
+
|
<td>[[BuildingScenariosWML]]</td>
+
__TOC__
<td>[[BuildingScenariosSimple]]</td>
+
|}
<td>[[BuildingScenariosIntermediate]]</td>
+
==== Quick Navigation: ====
<td>[[BuildingScenariosAdvanced]]</td>
+
[[BuildingScenarios]]  
</tr><tr>
+
:'''[[BuildingScenariosSimple]]''' - [[BuildingScenariosIntermediate]] - [[BuildingScenariosAdvanced]]
<td></td>
+
:[[BuildingScenariosWML]]
<td>[[BuildingScenariosComments]]</td>
+
:[[BuildingScenariosSamples]]  
<td>[[BuildingScenariosSamples]]</td>
+
:[[BuildingScenariosFAQ]]
<td>[[BuildingScenariosFAQ]]</td>
+
<br>
<td></td>
+
----
</tr>
 
</table>
 
 
 
  
 
= Building scenarios: Simple =
 
= Building scenarios: Simple =
Line 23: Line 20:
 
'''Before reading this, it might prove usefull to read something about the syntax used in the Wesnoth Markup Language: [[SyntaxWML]]'''
 
'''Before reading this, it might prove usefull to read something about the syntax used in the Wesnoth Markup Language: [[SyntaxWML]]'''
  
 +
== First part ==
 
  [scenario]
 
  [scenario]
 
   
 
   
Line 91: Line 89:
 
Also note that the '''[objective]''' tag only describes what the objectives are. You will still need to set the appropiate events before they will work. (But that's again stuff for later)
 
Also note that the '''[objective]''' tag only describes what the objectives are. You will still need to set the appropiate events before they will work. (But that's again stuff for later)
  
So far so good. The last necessary part describes what the players (Human and
+
== Second part ==
 +
So far so good! The last necessary part describes what the players (Human and
 
Computer) start with, what they can do and what they can't do. Each of the players is described in a '''[side]''' tag.
 
Computer) start with, what they can do and what they can't do. Each of the players is described in a '''[side]''' tag.
  
Line 136: Line 135:
 
The defaults for each of these values are 100 gold and 2 base income.
 
The defaults for each of these values are 100 gold and 2 base income.
  
 
+
== Making it all work ==
 
Now, to make this scenario playable, we need to make a campaign for it. (see [[BuildingCampaignsTheCampaignFile]])
 
Now, to make this scenario playable, we need to make a campaign for it. (see [[BuildingCampaignsTheCampaignFile]])
 
This should NOT be stored inside the main directory '''data/campaigns''' but inside '''userdata/data/campaigns'''. This prevents breaking the mainline campaigns or even worse, the entire game. (see [[BuildingCampaignsDirectoryStructure]])
 
This should NOT be stored inside the main directory '''data/campaigns''' but inside '''userdata/data/campaigns'''. This prevents breaking the mainline campaigns or even worse, the entire game. (see [[BuildingCampaignsDirectoryStructure]])

Revision as of 19:59, 27 June 2007


Quick Navigation:

BuildingScenarios

BuildingScenariosSimple - BuildingScenariosIntermediate - BuildingScenariosAdvanced
BuildingScenariosWML
BuildingScenariosSamples
BuildingScenariosFAQ



Building scenarios: Simple

This will show you a very simple scenario file, explaining each line of it. The file is not fully functional, but it will show the basics needed to describe what a scenario is all about.

Before reading this, it might prove usefull to read something about the syntax used in the Wesnoth Markup Language: SyntaxWML

First part

[scenario]

  id=test-1
  next_scenario=2_test-more

  name=A Simple Test Scenario
  map_data="{campaigns/Test_Campaign/testmap}{~campaigns/Test_Campaign/testmap}"
  turns=20

  {DAWN}
  {MORNING}
  {AFTERNOON}
  {DUSK}
  {FIRST_WATCH}
  {SECOND_WATCH}

  music=wesnoth-1.ogg

  [event]
    name=prestart
    [objectives]
      side=1
      [objective]
        description= _ "Defeat Enemy Leader"
        condition=win
      [/objective]
      [objective]
        description= _ "Death of Konrad"
        condition=lose
      [/objective]
    [/objectives]
  [/event]
.  continued below
.  ||
.  \/

Every scenario must be enclosed in a tag; the [scenario] tag is used for campaign scenarios. The first set of keys in the scenario tag describe the very basics of this scenario:

  • The id (short for identifier) is the computer's name for your scenario, and is not displayed during the game. However, it will be used to display game statistics (they will be graphed on http://stats.wesnoth.org in numerical order, so it's also a good idea to give the id's a number). This name is also used as reference in other tags and files, eg inside a [campaign] tag using the first_scenario key(see BuildingCampaignsTheCampaignFile) or inside a [scenario] tag using the next_scenario key (see below).
  • The value of the next_scenario key is the id (see above) of the scenario that is played after this one is won. Units from this scenario will be available for recall (unless you modify the recall list, but that's stuff for later). If your scenario is not part of a campaign, or if this is the last scenario you should either skip this line or put next_scenario=null inside the file. This will tell the game to display the End screen when this scenario is won.
  • The value of the name key is shown on the introduction screen before each scenario is played. (This can contain a picture of a map, or anything else you fancy. See BuildingScenariosIntermediate for an explenation on how to do that.) It's also the default name for saves on the level.
  • The next key, map_data, is a link to the map file. You can create map files using the Wesnoth Map Editor (see WesnothMapEditor and BuildingMaps for more information). Since we may not know exactly where this campaign will be located we'll write two possible locations of the map file. The quotes are necessary because Wesnoth map data takes up multiple lines, so quotes are used to indicate where the data begins and ends. If you don't do this, it will break the scenario.
  • Finally, the last key in the top set of keys is turns. This is the amount of turns a player is given to finish the scenario. (It can be changed during the game, but again, that is stuff for later.) When the player fails to finish the secnario in the given time, he has lost. (Said otherwise: the defeat event is trigered. See EventWML for more.)

The next section is a set of preprocessors (see PreprocessorRef). Preprocessors are essentially WML shortcuts. They allow you to define certain pieces of code and re-use it whenever it is needed. Wesnoth provides you with a whole serie of standard preprocessors to make life more easy, but you yourself can define them too (again stuff for later). Lets get back to this example! The preprocessors used here, describe how a day in this scenario should progress. This listing above is the normal day used throughout Wesnoth. If you want the entire scenario to take place at night, remove all the preprocessors except for {SECOND_WATCH}. This could be useful if you have Konrad fighting the Undead and want the Undead to have the upper hand the whole time. Remember though, by setting this to a single tme of day and not the normal progress listed above, your scenario will effectively be taking place during one day or night, not many days as most scenarios are.

The music key is a filename pointing to the music which plays. (See MusicListWML for more.) This music file must be in the music/ directory and must be in .ogg format.

A tag you'll get to know very good when making scenarios shows up: [event]...[/event]. Event tags are used to describe what should be done if an 'event' takes place. What this event is, is described by namekey. In this case we're describing the so-called 'prestart' event. This one takes place just before the game starts and just after all of the introductions screens were shown. Here we have limited the contents of the tag to another important tag: [objectives] (plural) containing any number of [objective] (singular) tags. For each [objective] (singular) tag, if condition is set to "win", the text of description will be displayed in green after "Victory" in the Scenario Objectives. If condition is set to "lose", the text of description will be displayed in red after "Defeat" in the Scenario Objectives. Because we've placed this tag inside a prestart event, this will be shown at the very first turn of the scenario. The side key indicates that these conditions are for side 1 (see below). The ' _ ' (underscore) facilitates translation using Gettext (see GetText).

Note that ANY Victory or Defeat objective can be met to win or lose the scenario, but a single Victory objective may have multiple parts. Also note that the [objective] tag only describes what the objectives are. You will still need to set the appropiate events before they will work. (But that's again stuff for later)

Second part

So far so good! The last necessary part describes what the players (Human and Computer) start with, what they can do and what they can't do. Each of the players is described in a [side] tag.

.  /\ 
.  ||
.  continued from above
  [side]
    side=1
    controller=human
    team_name=2
    user_team_name= _ "Konrad's forces"

    type=Commander
    description=Konrad
    canrecruit=1

    recruit=Elvish Fighter,Elvish Archer,Horseman,Mage,Elvish Shaman

    {GOLD 100 50 0}
    {INCOME 10 5 0}
  [/side] 
[/scenario]

Above you can see a sample [side] for the human player, Konrad. We wll describe every key more in detail below:

  • side: the leader of this side is placed on the tile represented by this digit (see BuildingMaps) It's a number from 1 to 9.
  • controller: possible values are 'human' or 'ai' (artificial intelligence, meaning your computer). If you don't specify this key, 'ai' is used as the default.
  • team_name describes which team the side is on. It defaults to the same number as side, so setting it to 2 allies this side with side 2, if you haven't changed the team_name of side 2.
  • user_team_name is the name displayed when you view the sie stats (by pressing alt+s during gameplay). The underscore facilitates translation using GetText (see GetText).


The next set of keys describe the leader of this side:

  • canrecruit: This key can be '1' or '0', meaning "yes" or "no" respectively. If you no, then the leader won't be able to recruit. (Not much of a leader then, is he?) Any team without a canrecruit=1 unit automatically loses, so be sure to use this key.
  • type describes what type of unit the leader will be. The possible values are listed here: UnitTables.
  • description is the name and description of the leader.

In a campaign, all of these 'leader-describing' keys are ignored for the human player (except canrecruit), since the leader from the previous scenario is used instead. However, the type key is still neccesary to prevent the scenario from crashing.

  • recruit is a comma-separated list of types of units. The possible values are listed in UnitTables.


Then two more preprocessors are used:

  • {GOLD easy normal hard} takes 3 positive numbers. These indicate the amount of money the player will start with on the EASY, NORMAL and HARD difficulty level.

In a campaign file, inside a human controlled side (controller=human), this is the minimum amount. The actual amount the player gets ca, be larger if the player retained more from previous scenarios.

  • {INCOME easy normal hard} is similar, but indicates the base income.

The defaults for each of these values are 100 gold and 2 base income.

Making it all work

Now, to make this scenario playable, we need to make a campaign for it. (see BuildingCampaignsTheCampaignFile) This should NOT be stored inside the main directory data/campaigns but inside userdata/data/campaigns. This prevents breaking the mainline campaigns or even worse, the entire game. (see BuildingCampaignsDirectoryStructure) Note: All files, the campaign file and the scenario file, one for each scenario level, must be saved with the ending .cfg (for example: testcampaign.cfg). This is a short example on how to do this:

[campaign]
  name= _ "Test Campaign"
  first_scenario=test-1
  difficulties=EASY,NORMAL,HARD

  difficulty_descriptions= _ "&elvish-fighter.png=Easy;*&elvish-hero.png=Medium;&elvish-champion.png=Hard"
  icon=elvish-fighter.png
[/campaign]

Campaigns are described in the [campaign] tag. The first key is name, which is displayed on the campaign selector box. The second key is first_scenario, which is the ID of the first scenario of the campaign. Scenarios following after this one are referenced inside the first scenario using next_scenario (see above).

The key difficulties=EASY,NORMAL,HARD tells the computer to set the macro EASY if the first difficulty choice is chosen, NORMAL if the second is chosen, and HARD if the third is chosen. The expression #ifdef can be used later to test these macros. (see PreprocessorRef) It is recommended that you do not use other names than EASY, NORMAL, and HARD for your macros, because if you do then the standard macros, such as {GOLD} and {INCOME}, won't work properly.

Two optional keys are difficulty_descriptions and icon. icon has value equal to an image, displayed inside the campaign list. difficulty_descriptions must have the same number of inputs as difficulties, most commonly three, separated by semicolons. These inputs then map on to the difficulties, so that if you have set difficulties to:

"difficulties=EASY,NORMAL,HARD"

the first input will specify the display on EASY, the second on NORMAL and the third on HARD. Each difficulty display description starts opens with an ampersand (&), then the image to display (eg elvish-fighter.png), then an equals (=) sign, then the text to display (eg Easy). Optionally you can place an asterisk (*) before one of the ampersands, and the corresponding difficulty will be selected by default (here NORMAL is default).

See Also