Difference between revisions of "Ship Comparison"

From Elite Wiki
(Overriding Data)
(13 intermediate revisions by the same user not shown)
Line 13: Line 13:
 
* Weapon positions
 
* Weapon positions
 
* Missile pylons
 
* Missile pylons
* Cargo capacity
+
* Cargo capacity (plus expansion size)
 
* Energy banks
 
* Energy banks
 
* Energy recharge rate
 
* Energy recharge rate
 
* Hyperspace capable
 
* Hyperspace capable
 +
If [[Ship_Configuration_OXP|Ship Configuration]] is installed:
 +
* Ship mass
 +
* Equipment space (plus convertible cargo space)
 +
 +
==Overriding Data==
 +
If a particular ship needs to have it's own entry, even if it would normally be listed under another ship type, you can override the list entry for that data key.
 +
Put this into the startUpComplete routine of your OXP:
 +
 +
  var sc = worldScripts.ShipComparison;
 +
  if (sc) {
 +
    // add an override for a particular ship data key, giving it a new name
 +
    sc._override["noshaders_z_groovy_cobra1_baker_player"] = "Cobra Mark I Special";
 +
  }
 +
 +
If a particular ship is not displaying the correct value for additional cargo or for the number of weapon facings, these values can be added to a list of exceptions. To do this, simply add the following line of code to a worldScript:
 +
 +
  worldScripts.ShipComparison._extraData["Cobra Mark I Special"] = [5, 15];
 +
 +
Use the generic ship name when specifying the dictionary key (unless you are updating the details of a specific shipkey). The two values in the array are the extra cargo allocation (5 in the example), and the number of weapon facings (1 = front, 2 = aft, 4 = port, 8 = starboard: 3 means front and aft, 15 means all).
  
 
==Installation==
 
==Installation==
Line 23: Line 42:
  
 
==Download==
 
==Download==
Download v1.1 [[Media:ShipComparison.oxz|ShipComparison.oxz]] (downloaded {{#downloads:ShipComparison.oxz}} times).
+
Download [[Media:ShipComparison.oxz|ShipComparison.oxz]] v1.8 (downloaded {{#downloads:ShipComparison.oxz}} times).
<br/>Alternative download for the OXZ from [https://app.box.com/s/ltx66s4lp42typu17y6721qxnaqnrmxs box.com]
 
  
 
==License==
 
==License==
Line 32: Line 50:
  
 
==Version History==
 
==Version History==
 +
1.8
 +
* Added Cobra Mark IV to list of exceptions.
 +
 +
1.7
 +
* Changed "==" comparisons to "===" for performance improvements.
 +
* Added ship mass to display (only if "Ship Configuration" OXP v0.3.1 is installed)
 +
* Moved the F4 interface to "Ship Systems", putting it near "Ship Registrations".
 +
 +
1.6
 +
* Fixed Javascript error when attempting to check for script_info objects on ships that don't have any script_info defined.
 +
 +
1.5
 +
* Added ability to hide ships via script info.
 +
 +
1.4
 +
* Added Equipment space from "Ship Configuration" OXP v0.1.0 or later. Only available if that OXP is installed.
 +
* Additional ship data overrides.
 +
 +
1.3
 +
* Added a "+" symbol to extra cargo value to make it clearer it is in addition to the base cargo capacity.
 +
* Additional ship data overrides.
 +
* Added dictionary and code examples to allow OXP's to override ship data for a particular data key.
 +
 +
1.2
 +
* Added cargo expansion size to list of items.
 +
* Fixed issue where missing "weapon_facings" value was not defaulting to the correct value. If any ships has been missed or show up incorrectly just let me know.
 +
* Added a "change scroll direction" function so if you go past the ship you want to can turn around and go back, rather than having to scroll all the way around the list.
 +
 
1.1
 
1.1
 
* Fixed issue where some ship definitions were incorrectly showing with "0" missiles.
 
* Fixed issue where some ship definitions were incorrectly showing with "0" missiles.
Line 41: Line 87:
  
 
==Quick Facts==
 
==Quick Facts==
 +
[[Image:IconLib.png|100px|right|link=Library|alt=Config options available through 'Library']]
 +
 
{{Infobox OXPb| title = ShipComparison.oxz
 
{{Infobox OXPb| title = ShipComparison.oxz
|version = 1.1
+
|version = 1.8
|release = 2015-12-11
+
|release = 2017-08-11
 
|license = CC BY-NC-SA 4.0
 
|license = CC BY-NC-SA 4.0
 
|features = Ship Comparison
 
|features = Ship Comparison

Revision as of 05:13, 11 August 2017

Shipcomparison.png

Overview

This OXP aims to help players who are in the market for a new ship by providing a visual, side-by-side comparison of ship specifications.

A new interface screen "Ship Comparisons" allows the details of up to three ships to be displayed. Details included are:

  • Max speed
  • Injector speed
  • Max thrust
  • Max pitch
  • Max roll
  • Max yaw
  • Weapon positions
  • Missile pylons
  • Cargo capacity (plus expansion size)
  • Energy banks
  • Energy recharge rate
  • Hyperspace capable

If Ship Configuration is installed:

  • Ship mass
  • Equipment space (plus convertible cargo space)

Overriding Data

If a particular ship needs to have it's own entry, even if it would normally be listed under another ship type, you can override the list entry for that data key. Put this into the startUpComplete routine of your OXP:

 var sc = worldScripts.ShipComparison;
 if (sc) {
   // add an override for a particular ship data key, giving it a new name
   sc._override["noshaders_z_groovy_cobra1_baker_player"] = "Cobra Mark I Special";
 }

If a particular ship is not displaying the correct value for additional cargo or for the number of weapon facings, these values can be added to a list of exceptions. To do this, simply add the following line of code to a worldScript:

 worldScripts.ShipComparison._extraData["Cobra Mark I Special"] = [5, 15];

Use the generic ship name when specifying the dictionary key (unless you are updating the details of a specific shipkey). The two values in the array are the extra cargo allocation (5 in the example), and the number of weapon facings (1 = front, 2 = aft, 4 = port, 8 = starboard: 3 means front and aft, 15 means all).

Installation

Place the 'ShipComparison.oxz' into your 'AddOns' folder and when you start the game, hold down 'Shift' until you see the spinning Cobra.
Alternatively, you can download the expansion using the expansion pack manager in the game itself.

Download

Download ShipComparison.oxz v1.8 (downloaded 2772 times).

License

This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 4.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/

Balance image from http://simpleicon.com/balance.html

Version History

1.8

  • Added Cobra Mark IV to list of exceptions.

1.7

  • Changed "==" comparisons to "===" for performance improvements.
  • Added ship mass to display (only if "Ship Configuration" OXP v0.3.1 is installed)
  • Moved the F4 interface to "Ship Systems", putting it near "Ship Registrations".

1.6

  • Fixed Javascript error when attempting to check for script_info objects on ships that don't have any script_info defined.

1.5

  • Added ability to hide ships via script info.

1.4

  • Added Equipment space from "Ship Configuration" OXP v0.1.0 or later. Only available if that OXP is installed.
  • Additional ship data overrides.

1.3

  • Added a "+" symbol to extra cargo value to make it clearer it is in addition to the base cargo capacity.
  • Additional ship data overrides.
  • Added dictionary and code examples to allow OXP's to override ship data for a particular data key.

1.2

  • Added cargo expansion size to list of items.
  • Fixed issue where missing "weapon_facings" value was not defaulting to the correct value. If any ships has been missed or show up incorrectly just let me know.
  • Added a "change scroll direction" function so if you go past the ship you want to can turn around and go back, rather than having to scroll all the way around the list.

1.1

  • Fixed issue where some ship definitions were incorrectly showing with "0" missiles.
  • Fixed issue where some ship definitions were showing a blank in the cargo capacity field.
  • Added code to hide specifications of some ships (classified data and such).

1.0

  • Initial release.

Quick Facts

Config options available through 'Library'


Version Released License Features Category Author(s) Feedback
1.8 2017-08-11 CC BY-NC-SA 4.0 Ship Comparison Misc OXPs phkb Oolite BB

Gameplay and Balance indicator

Tag-colour-green.png