Difference between revisions of "System Data Config"

From Elite Wiki
(Overview)
(6 intermediate revisions by the same user not shown)
Line 15: Line 15:
  
 
==== <code>systemDataLineText</code> ====
 
==== <code>systemDataLineText</code> ====
  worldScripts.SystemDataConfig.systemDataLineText(lineNumber : int);
+
  worldScripts.SystemDataConfig.systemDataLineText(linenumber : int);
  
 
Returns the current text of a particular data line.
 
Returns the current text of a particular data line.
Line 42: Line 42:
  
 
==Compressed F7 Layout==
 
==Compressed F7 Layout==
As an example of what can be achieved with this OXP, the Compressed F7 Layout OXP removes all the blank lines between entries on the F7 screen, compressing the data. It also moves information from Distant Suns and Explorers Club into this section. You can download this OXP here: [[Media:CompressedF7Layout.oxz|CompressedF7Layout.oxz]] v1.0 (downloaded {{#downloads:CompressedF7Layout.oxz}} times).
+
As an example of what can be achieved with this OXP, the Compressed F7 Layout OXP removes all the blank lines between entries on the F7 screen, compressing the data. It also moves information from [[Distant Suns]] and [[Explorers'_Club_OXP|Explorers Club]] into this section. [[image:F7screenlayout.png|center|500px]]
[[image:F7screenlayout.png|center|500px]]
+
You can download this OXP here: [[Media:CompressedF7Layout.oxz|CompressedF7Layout.oxz]] v1.1 (downloaded {{#downloads:CompressedF7Layout.oxz}} times).
  
 
==Download==
 
==Download==
Download [[Media:SystemDataConfig.oxz|SystemDataConfig.oxz]] v0.5 (downloaded {{#downloads:SystemDataConfig.oxz}} times).<br/>
+
Download [[Media:SystemDataConfig.oxz|SystemDataConfig.oxz]] v0.6 (downloaded {{#downloads:SystemDataConfig.oxz}} times).<br/>
Download [https://app.box.com/s/knmq15vdaco06me3n1zqkgbom3jicrqr SystemDataConfig.zip] v0.5 (extract OXP folder to AddOns)
+
Download [https://app.box.com/s/knmq15vdaco06me3n1zqkgbom3jicrqr SystemDataConfig.zip] v0.6 (extract OXP folder to AddOns)
  
 
==License==
 
==License==
Line 53: Line 53:
  
 
==Version History==
 
==Version History==
 +
0.6
 +
* Fixed issue with incorrect TL being shown for systems.
 +
 
0.5
 
0.5
 
* Added some documentation and a readme.txt file.
 
* Added some documentation and a readme.txt file.
Line 60: Line 63:
  
 
==Quick Facts==
 
==Quick Facts==
 +
{{OXPLevel|0}}{{IconOXP|ooVersion="1.86"|oxpCPU="Low"|oxpMEM="Low"|oxpGPU="Low"|oxpIsAPI=true|oxpIsParent=true|oxpIsDocumented=true}}
 
{{Infobox OXPb| title = SystemDataConfig.oxz
 
{{Infobox OXPb| title = SystemDataConfig.oxz
|version = 0.5
+
|version = 0.6
|release = 2017-08-01
+
|release = 2017-09-22
 
|license = CC BY-NC-SA 4.0
 
|license = CC BY-NC-SA 4.0
 
|features = Utilities
 
|features = Utilities
Line 72: Line 76:
 
==Gameplay and Balance indicator==
 
==Gameplay and Balance indicator==
 
[[Image:tag-colour-green.png]]
 
[[Image:tag-colour-green.png]]
 +
[[Category:Oolite utilities]]

Revision as of 22:14, 15 February 2018

Overview

This OXP is a utility designed to help OXP authors make use of the upper part of the F7 screen, where the statistics about the currently selected system are displayed.

A new feature added in Oolite v1.85/6 allows the layout of the F7 screen to be completely customised. However, given the number of OXP's that will want to make use of this extra space, there was a need to make the process of adding information to the screen a little more democratic. This OXP aims to provide an centralised interface OXP's can use to make the most of this new feature.

Note: This OXP will only work with Oolite v1.85ff.

Methodology

This OXP offers the following interfaces to OXP's:

systemDataLineOwner

worldScripts.SystemDataConfig.systemDataLineOwner(linenumber : int);

Returns the current owner of a particular data line.

systemDataLineText

worldScripts.SystemDataConfig.systemDataLineText(linenumber : int);

Returns the current text of a particular data line.

setSystemDataLine

worldScripts.SystemDataControl.setSystemDataLine(linenumber : int, text : string [, owner : string]);

Sets the text, and optionally the owner, of a particular data line

resetSystemDataLine

worldScripts.SystemDataControl.resetSystemDataLine(linenumber : int);

Resets the text and owner of a particular data line to be blank.

addChangeCallback

worldScripts.SystemDataControl.addChangeCallback(worldScriptName : string, callbackFunctionName : string);

In order for an OXP to make changes to the F7 screen before it's displayed, two events must be used: guiScreenWillChange (monitoring for when the guiScreen is about to be GUI_SCREEN_SYSTEM_DATA), and infoSystemWillChange. However, because the order in which these events are fired for each OXP is hard to determine, it's quite possible for an OXP's events to be fired after the events within this OXP, which means that updated data might not be displayed.

To work around this issue, OXP's can register a callback function using this call. Then, when those events are triggered for this OXP's, all the callbacks will be executed before the data is displayed, ensuring that the correct data is shown on the screen.

removeChangeCallback

worldScripts.SystemDataControl.removeChangeCallback(worldScriptName : string, callbackFunctionName : string);

This function removes a worldscript/callback function name from the list of callbacks.

Compressed F7 Layout

As an example of what can be achieved with this OXP, the Compressed F7 Layout OXP removes all the blank lines between entries on the F7 screen, compressing the data. It also moves information from Distant Suns and Explorers Club into this section.

F7screenlayout.png

You can download this OXP here: CompressedF7Layout.oxz v1.1 (downloaded 206 times).

Download

Download SystemDataConfig.oxz v0.6 (downloaded 244 times).
Download SystemDataConfig.zip v0.6 (extract OXP folder to AddOns)

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/

Version History

0.6

  • Fixed issue with incorrect TL being shown for systems.

0.5

  • Added some documentation and a readme.txt file.

0.4

  • Initial public release

Quick Facts

Levelindicator0.png
0-{{{2}}}

Minimum Oolite versionCPU usage lowMemory usage lowGPU usage lowisParentisAPIisDocumented

Version Released License Features Category Author(s) Feedback
0.6 2017-09-22 CC BY-NC-SA 4.0 Utilities Misc OXPs‏‎ phkb Oolite BB

Gameplay and Balance indicator

Tag-colour-green.png