You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 44 Next »

Water Coach application configuration

What

application_config.xml

Description

Configuration of the Water Coach application

schema location

application_config.xsd

In the application configuration, global settings for the Water Coach (fka FEWS Game) which are valid for all scenarios/scripts can be specified.

Schema definition

The structure of the XML-schema for the application configuration is as follows:

Explanation

The keys in the XML-schema are explained in the figure above. Some of the keys are explained in more detail here.
Note: when 'relative path' is mentioned, this is the relative path with respect to the location of the FEWS Game executable (not the FEWS executable).

  • The value of the key Locale must be a 2-letter abbreviation of the language in which the game screens will be displayed (currently available: EN for English or NL for Dutch).
  • Historical scenarios/scripts may be familiar to players of the game. Therefore it is possible to hide the year of the scenario/script in the Water Coach by setting the flag HideYear to true. Note that for the Water Coach a copy of the operational system should be used since some changes in the FEWS configuration are required; see below.
  • The key FewsExecutable must contain the (absolute or relative) path to the FEWS executable, which is usually located in the bin-directory of a FEWS release. On the Linux platform, the FEWS executable is the shell script fews.sh. See below for required changes in the FEWS configuration.
  • The key FewsRegionDir is the (absolute or relative) path to the so-called region directory of FEWS. The region directory contains the FEWS configuration (the Config-subdirectory) and the global properties for the FEWS configuration. The Water Coach is generic and can be used with any FEWS configuration. Note that on a Windows system, the FEWS region directory is also specified in the so-called jpif-file that is located in the bin-directory of the FEWS system. This specification must be consistent with the one in FewsRegionDir.
  • The system time in FEWS is controlled by the Water Coach. The frequency for updating the FEWS system time is specified by the key FewsSystemTimeUpdateInMinutes. See below for required changes in the FEWS configuration.
  • Scenarios/scripts that can be played with the Water Coach must be part of a scenario/script database. The key ScenarioDatabasePath contains the (absolute or relative) path to the scenario/script database.
  • Events in a script can be associated with a file that is executed during the game. For example, a pdf-file can be associated with an event to simulate an incoming e-mail or an mp3-file to simulate telephone calls. Using the key FileAssociation, programs can be specified with which files with indicated extensions must be processed. Default file associations are used if nothing is specified here.
  • In the section TimeControl, the presence of buttons for time control during the game can be configured, namely a Pause/Play button, a Next button for jumping to the next scheduled event in the script, and Fast Forward/Backward buttons for speeding up/down time.
  • Communication between FEWS and the Water Coach is handled by the so-called FEWS PI service. This service requires a port number that must be specified in the section FewsPiPortNumber. See below for required changes in the FEWS configuration.
  • The Water Coach can also be played in a combined setting developed for the Dutch Water Service (Waterdienst). In such a combined setting, the hostname and the port number for connecting to the combined game must be specified in ServerHostName and ServerPort, respectively. In a stand-alone Water Coach set-up these keys are not relevant.

FEWS configuration

It is advisable to use a copy of the operational system for the Water Coach, to prevent any possible obstructions to the operational activities. Also, some minor changes are needed in the FEWS configuration in order to use it with the Water Coach:
Note: for a more detailed description of the FEWS configuration files, please refer to the wiki pages of the Delft FEWS Configuration Guide

  • In order to hide the year within FEWS, the dateTimeFormat must be configured accordingly in the dateTime section of the FEWS configuration file Explorer.xml.
  • The cardinalTimeStep, as configured in the dateTime section of the FEWS configuration file Explorer.xml, should be consistent with FewsSystemTimeUpdateInMinutes. Indeed, it makes no sense to set it in the Water Coach to 1 minute, while it is set to 1 hour in the FEWS configuration (although this will not cause any problems in the game).
  • Since all data for a scenario is pre-loaded in the FEWS local data store, it is desirable to hide certain data after the current system time, e.g. measurement data. This can be accomplished by specifying hideExternalHistoricalAfterSystemTime=true in the file global.properties, which is located in the FEWS configuration directory.
  • The port number FewsPiPortNumber for the FEWS PI service has to be in the range of port numbers that must be specified in the FEWS configuration file Explorer.xml in the directory SystemConfigFiles, e.g.
    <piServicePortRange start="8100" end="8200"/>
  • To distinguish the FEWS configuration for the Water Coach, one could change the name and panel labels in Explorer.xml, which you will find in the directory SystemConfigFiles. The name of the Explorer window is configured with systemCaption and the name of the panels with panelHeaderLabels. For example, the term TRAINING or SERIOUS GAME could be added to the captions of these panels.
  • Depending on the set-up of the Scenario and script database, an additional change could be required, see Scenario and script database.

Example

Example of application configuration
   <?xml version="1.0" encoding="UTF-8"?>
   <Config xmlns="http://localhost" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://localhost xml-schemas/application_config.xsd">
   <Name>Example of application configuration</Name>
   <Locale>EN</Locale>
   <HideYear>true</HideYear>
   <FewsExecutable>FEWS\bin\FewsNoordzee_SA.exe</FewsExecutable>
   <FewsRegionDir>FEWS\FewsNoordzee_SA</FewsRegionDir>
   <FewsSystemTimeUpdateInMinutes>1</FewsSystemTimeUpdateInMinutes>
   <ScenarioDatabasePath>ScenarioDatabase\Noordzee</ScenarioDatabasePath>
   <FileAssociation extension="pdf">C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe</FileAssociation>
   <TimeControl>
      <Pause>true</Pause>
      <Next>false</Next>
      <FastForwardBackward>true</FastForwardBackward>
   </TimeControl>
   <FewsPiPortNumber>8100</FewsPiPortNumber>
  • No labels