Oolite JavaScript Reference: Condition scripts

From Elite Wiki
Revision as of 22:01, 25 July 2012 by Cim (talk | contribs) (Initial documentation of condition scripts)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

NOTE: This page documents a feature planned for Oolite 1.77, which is potentially subject to significant change before then.

Condition scripts

Condition scripts are used to set conditions on the appearance of ships and equipment beyond the basics possible in shipdata.plist, shipyard.plist and equipment.plist. They supersede the "conditions" parameters in those plists, which use the legacy scripting engine.

Conditions scripts may define any or all of the following functions. There is a single instance of each condition script regardless of how many ships and equipment items use it, so variables may be shared between calls in this._property

allowAwardEquipment

This method was added in Oolite test release 1.77.

This method is called when the game engine needs to know whether a particular ship can have equipment fitted. This may be because the player is looking at possible upgrades at a station, or from a call to ship.canAwardEquipment or ship.awardEquipment, or for other similar reasons. The equipment key and a reference to the ship entity are passed as parameters. If the method does not exist, or returns a value other than false, then the equipment may be added or offered for sale (subject to other conditions, of course)

this.allowAwardEquipment = function(eqKey, ship)
{
  // your code here
  return bool;
}

allowOfferShip

This method was added in Oolite test release 1.77.

This method is called when the game engine is considering adding a ship managed by this condition script to a shipyard. If the method does not exist, or returns a value other than false, then the ship may appear for sale (or it may not, for a variety of other reasons). The ship key from shipyard.plist is passed as a parameter.

this.allowOfferShip = function(shipKey)
{
  // your code here
  return bool;
}

allowSpawnShip

This method was added in Oolite test release 1.77.

This method is called when the game engine is considering spawning a ship managed by this condition script. If the method does not exist, or returns a value other than false, then the ship may be spawned (or it may not, if another ship with the appropriate role is selected instead). The ship key from shipdata.plist is passed as a parameter.

this.allowSpawnShip = function(shipKey)
{
  // your code here
  return bool;
}