Oolite JavaScript Reference: Player
Prototype: Object
Subtypes: none
The Player
class is represents the player. There is always exactly one Player
object in existence, which can be accessed through the player
global property.
Contents
- 1 Properties
- 1.1 alertAltitude
- 1.2 alertCondition
- 1.3 alertEnergy
- 1.4 alertHostiles
- 1.5 alertMassLocked
- 1.6 alertTemperature
- 1.7 bounty
- 1.8 contractReputation
- 1.9 credits
- 1.10 dockingClearanceStatus
- 1.11 escapePodRescueTime
- 1.12 legalStatus
- 1.13 name
- 1.14 parcelReputation
- 1.15 passengerReputation
- 1.16 rank
- 1.17 roleWeights
- 1.18 score
- 1.19 ship
- 1.20 trumbleCount
- 2 Methods
- 2.1 addMessageToArrivalReport
- 2.2 commsMessage
- 2.3 consoleMessage
- 2.4 decreaseContractReputation
- 2.5 decreaseParcelReputation
- 2.6 decreasePassengerReputation
- 2.7 endScenario
- 2.8 increaseContractReputation
- 2.9 increaseParcelReputation
- 2.10 increasePassengerReputation
- 2.11 setEscapePodDestination
- 2.12 setPlayerRole
- 2.13 replaceShip
- 3 Some OXP items
Properties
alertAltitude
alertAltitude : Boolean (read-only)
Whether the player is dangerously close to a planet. (closer than 4000 meter to the surface)
alertCondition
alertCondition : Number (read-only, integer)
Returns the current alert condition. 0 = Docked, 1 = Green, 2 = Yellow, 3 = Red.
alertEnergy
alertEnergy : Boolean (read-only)
Whether the player’s energy level is depleted (i.e., energy
is less than maxEnergy
).
alertHostiles
alertHostiles : Boolean (read-only)
Whether there are hostile ships within scanner range.
alertMassLocked
alertMassLocked : Boolean (read-only)
Whether the player is mass locked.
alertTemperature
alertTemperature : Boolean (read-only)
Whether the cabin temperature is dangerously high.
bounty
bounty : Number (read/write integer)
The bounty on the player, which determines legal status. It is halved at each witchspace jump.
See also: legalStatus
contractReputation
contractReputation : Number (read-only integer)
This property was added in Oolite test release 1.79.
contractReputationPrecise : Number (read-only decimal)
The player’s cargo contract reputation, ranging from -7 to +7. Reputation is made up internally of three components - "good", "bad", and "unknown". "good" and "bad" will decay back to "unknown" slowly over time, while "unknown" may in some systems (randomised on entry) be partially treated as "good", to represent imperfect knowledge of the player's reputation. The value reported by these properties is the final value after this randomisation is applied. The "Precise" version includes fractional reputation, used in Oolite 1.79 onwards..
See also: decreaseContractReputation()
, increaseContractReputation()
, contracts
, parcelReputation
, passengerReputation
credits
credits : Number (read/write, float)
The amount of money the player has, in credits.
dockingClearanceStatus
dockingClearanceStatus : String (read-only)
A string indicating whether the player has docking clearance. (Clarify: for which station? -Ahruman 20:34, 3 November 2008 (UTC)) Possible values are:
"DOCKING_CLEARANCE_STATUS_NONE"
"DOCKING_CLEARANCE_STATUS_REQUESTED"
"DOCKING_CLEARANCE_STATUS_NOT_REQUIRED"
"DOCKING_CLEARANCE_STATUS_GRANTED"
"DOCKING_CLEARANCE_STATUS_TIMING_OUT"
escapePodRescueTime
This property was added in Oolite test release 1.89.
escapePodRescueTime : Number (read/write decimal)
Number of seconds that will be added to the clock when the player uses an escape pod and is rescued. Default value is 0 (zero), which will utilise the default time calculation that can add up to eight days to the clock. Negative numbers will be ignored (and default calculation will apply).
legalStatus
legalStatus : String (read-only)
A string mainly for display purposes describing the player’s legal status based on bounty
. In English, this is one of "Clean"
(bounty = 0), "Offender"
(0 < bounty ≤ 50) or "Fugitive"
, but note that it can be localized.
See this - and several later posts - for more detail. setLegalStatus: <number> works in legacy script - it might also work in Javascript!
See Bounty for a (partial?) list of OXPs affecting this.
name
name : String (read-only, read/write from 1.79)
The name of the player’s character (e.g., "Jameson"
). Prior to 1.79, this was also used as the filename for the savegame and so was not writable.
parcelReputation
This property was added in Oolite test release 1.77.
parcelReputation : Number (read-only integer)
This property was added in Oolite test release 1.79.
parcelReputationPrecise : Number (read-only decimal)
The player’s parcel contract reputation, ranging from -7 to +7. Reputation is made up internally of three components - "good", "bad", and "unknown". "good" and "bad" will decay back to "unknown" slowly over time, while "unknown" may in some systems (randomised on entry) be partially treated as "good", to represent imperfect knowledge of the player's reputation. The value reported by these properties is the final value after this randomisation is applied. The "Precise" version includes fractional reputation, used in Oolite 1.79 onwards.
See also: decreaseParcelReputation()
, increaseParcelReputation()
, parcels
, contractReputation
, passengerReputation
passengerReputation
passengerReputation : Number (read-only integer)
This property was added in Oolite test release 1.79.
passengerReputationPrecise : Number (read-only decimal)
The player’s passenger contract reputation, ranging from -7 to +7. Reputation is made up internally of three components - "good", "bad", and "unknown". "good" and "bad" will decay back to "unknown" slowly over time, while "unknown" may in some systems (randomised on entry) be partially treated as "good", to represent imperfect knowledge of the player's reputation. The value reported by these properties is the final value after this randomisation is applied. The "Precise" version includes fractional reputation, used in Oolite 1.79 onwards.
See also: decreasePassengerReputation()
, increasePassengerReputation()
, passengers
, contractReputation
, parcelReputation
rank
rank : String (read-only)
A string mainly for display purposes describing the player’s rank (such as "Mostly Harmless"
or "Dangerous"
) based on score
. Note that it can be localized.
roleWeights
This property was added in Oolite test release 1.79.
roleWeights : Array (read-only)
An array of the player's current role as perceived by the game. Generally NPCs will pick a random entry from this list and treat the player as if they were an NPC of that role. The 'player-unknown
' role is the default role. The size of the list depends on the player's current Elite ranking.
See also: setPlayerRole()
score
score : Number (read/write, integer)
The player’s score; nominally the number of kills the player has made, although some missions award additional points.
ship
ship : Ship
The player’s ship
trumbleCount
trumbleCount : Number (read-only nonnegative integer)
The number of trumbles the player is currently blessed with.
Methods
addMessageToArrivalReport
function addMessageToArrivalReport(message : String)
Adds a message to the arrival report shown immediately after docking. Oolite puts its own stuff on the list immediately after shipWillDockWithStation so this is a good moment to add the messages when you know what station will be docked. shipDockedWithStation may also be used. Messages added while in flight or during shipWillDockWithStation will be above Oolite's own arrival messages. Those added during shipDockedWithStation will be below Oolite's own arrival messages.
See also: station.suppressArrivalReports
, Arrival Reports (2012)
commsMessage
function commsMessage(message : String [, duration: Number])
Writes the specified message in the player’s communications log, as well as displaying it as a console message. The optional duration
parameter determines how long the message should be displayed on the console before fading out. It is clamped to the range [1, 10]. If no duration is specified, 4.5 seconds will be used.
Example:
player.commsMessage("Hello, cruel universe.", 6)
NB, this commsMessage()
is a method of the player
object. player.ship
can also have a commsMessage()
method, but that belongs to the ship and has a different second parameter.
consoleMessage
function consoleMessage(message : String [, duration: Number])
Displays the specified message as a console message, that is, as a message on the HUD. The optional duration
parameter determines how long the message should be displayed before fading out. It is clamped to the range [1, 10]. If no duration is specified, 3 seconds will be used.
See also: Formatting text msgs on a HUD (2011)
decreaseContractReputation
function decreaseContractReputation()
Give the player a negative reputation point for cargo contracts. Decreases the underlying value for contractReputation by 1 until a minimum of -7. Depending on the randomised part of the value can the visible value stay the same in one system.
See also: contractReputation
, increaseContractReputation()
decreaseParcelReputation
This method was added in Oolite test release 1.77.
function decreaseParcelReputation()
Give the player a negative reputation point for parcel contracts. Decreases the underlying value for parcelReputation by 1 until a minimum of -7. Depending on the randomised part of the value can the visible value stay the same in one system.
See also: parcelReputation
, increaseParcelReputation()
decreasePassengerReputation
function decreasePassengerReputation()
Give the player a negative reputation point for passenger contracts. Decreases the underlying value for passengerReputation by 1 until a minimum of -7. Depending on the randomised part of the value can the visible value stay the same in one system.
See also: passengerReputation
, increasePassengerReputation()
endScenario
This method was added in Oolite test release 1.79.
function endScenario(key : String) : Boolean
End the current game immediately and return to the start game screen. Returns true
if it succeeds (though this will shortly be irrelevant) or false
if it fails, which it will do if the key passed in is not the same as the scenario key in the current game scenario. If the current game scenario has no scenario key, this method will always fail.
There is no way to find out what, if any, the current scenario key is. If you are calling this method, you should be doing so in a context where you already know what it is.
increaseContractReputation
function increaseContractReputation()
Give the player a positive reputation point for cargo contracts. Increases the underlying value for contractReputation by 1 until a maximum of 7
See also: contractReputation
, decreaseContractReputation()
increaseParcelReputation
This method was added in Oolite test release 1.77.
function increaseParcelReputation()
Give the player a positive reputation point for parcel contracts. Increases the underlying value for parcelReputation by 1 until a maximum of 7
See also: parcelReputation
, decreaseParcelReputation()
increasePassengerReputation
function increasePassengerReputation()
Give the player a positive reputation point for passenger contracts. Increases the underlying value for passengerReputation by 1 until a maximum of 7
See also: passengerReputation
, decreasePassengerReputation()
setEscapePodDestination
function setEscapePodDestination(destination)
This method can only be called after the player has launched an escape pod – mainly from the escapePodSequenceOver
event handler. It determines where the player will end up. The destination
parameter may be any station/carrier, the string "NEARBY_SYSTEM"
or null
. If it is "NEARBY_SYSTEM"
, the player will end up at the main station in a random nearby system. If it is null
(which is the default in interstellar space), the player will die of life support failure.
setPlayerRole
This method was added in Oolite test release 1.79.
function setPlayerRole(role [,index])
Sets one of the player's perceived role entries to the specified role. If index is not specified, a random entry will be chosen.
See also: roleWeights
replaceShip
This method was added in Oolite test release 1.77.
function replaceShip(dataKey [, personality])
This method can only be called while the player is docked at a station. It discards the player's current ship (including all cargo, passenger contracts, and equipment), and replaces it with the ship defined by the shipyard.plist entry dataKey
(obviously the key must also be defined in shipyard.plist as a valid player ship). The new ship will have all standard equipment for a ship of that type, and any equipment from the previous ship which was isPortableBetweenShips. While this may not necessarily be a ship purchase, the playerBoughtNewShip will fire to notify other scripts of the change, although this event is being deprecated in favour of playerReplacedShip, which was added in Oolite Test Release 1.89.
If the dataKey was not defined in both shipdata.plist and shipyard.plist, or the player is in flight, this method does nothing.
personality
is optional, and can be between 0 and 32767. The new ship is given that specific entityPersonality, which for some ships may affect its appearance with shaders.
Some OXP items
missionVariables.random_hits_criminal_hate_score
Added by Random Hits OXP - seems to be (to this dumb pilot) a measure of the extent to which criminals wish to attack the player
- if (hate < 5) rank = "an innocent fighter"
- else if (hate < 25) rank = "an annoyance"
- else if (hate < 50) rank = "a "+expandDescription("[random_hits_notwelcome_para3e]")+" pilot"
- else if (hate < 70) rank = "a target that must be "+expandDescription("[random_hits_complete2]")
- else if (hate < 90) rank = "on their top ten hit list of "+expandDescription("[random_hits_notwelcome_para3e]")+" pilots"
_litf.LITF_cmdStats.health
Added by Life in the Frontier - a health rating (wounds, bruises etc.)
_litf.LITF_cmdStats.sickness
Added by Life in the Frontier - a sickness rating
_litf.LITF_cmdStats.strength
Added by Life in the Frontier - a strength rating (physical shape, fitness)
_litf.LITF_cmdStats.reputation
Added by Life in the Frontier - a reputation rating (from unknown to legendary)
_litf.LITF_cmdStats.stance
Added by Life in the Frontier - a political rating
- if (sta == 0) { desc = "absolutely neutral"; }
- if (sta < 5 && sta > -5) { desc = "generally neutral"; }
- if (sta >= 5) { desc = "sympathetic with GalCop"; }
- if (sta >= 25) { desc = "friendly with GalCop"; }
- if (sta >= 75) { desc = "loyal with GalCop"; }
- if (sta >= 200) { desc = "sworn to act along the rules of GalCop"; }
- if (sta <= -5) { desc = "sympathetic with criminals"; }
- if (sta <= -25) { desc = "friendly with criminals"; }
- if (sta <= -75) { desc = "loyal with criminals"; }
- if (sta <= -200) { desc = "respectful of the laws of the criminal underworld";