Difference between revisions of "Lib PAD"
m (Doc part II) |
m (Doc part III) |
||
Line 1: | Line 1: | ||
[[Image:IconLib.png|100px|right]] | [[Image:IconLib.png|100px|right]] | ||
+ | |||
==Overview== | ==Overview== | ||
Lib_PAD (part of [[Library]]) is a logbook, mission-log, diary and interface. AddOns can implement data to get important organisations, events, systems or persons exposed to the player in an unified way. It also ships search functionality, a way to customize players data (species, gender, etc) and players can also add own notes. | Lib_PAD (part of [[Library]]) is a logbook, mission-log, diary and interface. AddOns can implement data to get important organisations, events, systems or persons exposed to the player in an unified way. It also ships search functionality, a way to customize players data (species, gender, etc) and players can also add own notes. | ||
Line 5: | Line 6: | ||
==Categories== | ==Categories== | ||
+ | [[File:Lib_pad_layout.jpg|right|thumb|200px|Textures layout]] | ||
The categories in Lib_PAD are the first component of all dotted pathes. Pages in a category do share a template which defines the layout of the page. All pages, except LOGS, do have 6 slots for textures (t0 - t5). | The categories in Lib_PAD are the first component of all dotted pathes. Pages in a category do share a template which defines the layout of the page. All pages, except LOGS, do have 6 slots for textures (t0 - t5). | ||
:;GALCOP:Category for GalCop, Police, Navy and other official organisations related to GalCop. | :;GALCOP:Category for GalCop, Police, Navy and other official organisations related to GalCop. | ||
:::Contains entries: name, entry, rank, enlisted, missions, awards, info. | :::Contains entries: name, entry, rank, enlisted, missions, awards, info. | ||
+ | ::::name and rank are set by Lib_PAD. | ||
:;GUILDS:Category for other organisations which do have a membership. | :;GUILDS:Category for other organisations which do have a membership. | ||
:::Contains entries: name, entry, rank, enlisted, missions, awards, info. | :::Contains entries: name, entry, rank, enlisted, missions, awards, info. | ||
+ | ::::name and rank are set by Lib_PAD. | ||
:;INFOS:Category for special events, news, specific stations, etc. | :;INFOS:Category for special events, news, specific stations, etc. | ||
:::Contains entries: name, location, beacon, purpose, special, notes. | :::Contains entries: name, location, beacon, purpose, special, notes. | ||
Line 16: | Line 20: | ||
:;PERSONS:Category for characters you have met or you got infos about. | :;PERSONS:Category for characters you have met or you got infos about. | ||
:::Contains entries: name, origin, species, gender, age, rank, ship, info, notes. | :::Contains entries: name, origin, species, gender, age, rank, ship, info, notes. | ||
+ | ::::Players name, origin, species, gender, age, rank and ship are set by Lib_PAD. | ||
:;SYSTEMS:Category for special systems like Leesti, Tianve, Tionisla, etc. | :;SYSTEMS:Category for special systems like Leesti, Tianve, Tionisla, etc. | ||
:::Contains entries: name, info, notes. | :::Contains entries: name, info, notes. | ||
Line 23: | Line 28: | ||
:;String: beacon, enlisted, entry, gender, location, name, origin, purpose, rank, ship, species. | :;String: beacon, enlisted, entry, gender, location, name, origin, purpose, rank, ship, species. | ||
:;Array: awards, info, list, missions, notes, special. | :;Array: awards, info, list, missions, notes, special. | ||
+ | |||
+ | ===Textures=== | ||
+ | Specified textures can be any filename, but Lib_PAD also ships own textures for organisations, characters, insignia and medals. If set to a Number it will lookup the corresponding filename or if zero it won't show it. | ||
+ | :t0 - Usually an organisation on GALCOP, GUILDS and PERSONS pages. Lib_PAD uses greyscale textures. | ||
+ | :t1 - Usually a character on GALCOP, GUILDS and PERSONS pages. | ||
+ | :t2 - Usually an insignia / rank on GALCOP, GUILDS and PERSONS pages. | ||
+ | :t3 - Usually a medal on GALCOP, GUILDS and PERSONS pages. | ||
+ | :t4 - Unused yet. | ||
+ | :t5 - Unused yet. | ||
Line 60: | Line 74: | ||
'''Returns:''' | '''Returns:''' | ||
:Object (on success) or '''false''' (if the path does not exist). | :Object (on success) or '''false''' (if the path does not exist). | ||
+ | |||
+ | |||
+ | ==Handling== | ||
+ | Lib_PAD leaves the handling for loading and storing of inserted data to the inserting AddOns to avoid external resources like textures not being available and thus generating errors. It loads and stores it's own entries (pathes GALCOP.GENERIC, GALCOP.NAVY, GUILDS.GENERIC, INFOS.GENERIC, LOGS.GENERIC, PERSONS.GENERIC and SYSTEMS.GENERIC) | ||
+ | |||
+ | Loading and storing of data can be achieved easily, as shown in the following example. | ||
+ | <pre> | ||
+ | this.$data = { | ||
+ | GCI: {entry:clock.clockString,enlisted:"Sergeant",awards:["GCI Silver Cross"],t0:27,t1:1} | ||
+ | }; | ||
+ | this.startUpComplete = function(){ | ||
+ | if(missionVariables.MYMISSIONVARIABLE) this.$data = JSON.parse(missionVariables.MYMISSIONVARIABLE); | ||
+ | worldScripts.Lib_PAD._addPageInCategory("GALCOP.GCI",this.$data.GCI); | ||
+ | }; | ||
+ | this.playerWillSaveGame = function(){ | ||
+ | this.$data.GCI = worldScripts.Lib_PAD._getData("GALCOP.GCI"); | ||
+ | missionVariables.MYMISSIONVARIABLE = JSON.stringify(this.$data); | ||
+ | }; | ||
+ | </pre> | ||
[[Category:OXPDoc]] | [[Category:OXPDoc]] |
Revision as of 12:21, 29 March 2018
Contents
Overview
Lib_PAD (part of Library) is a logbook, mission-log, diary and interface. AddOns can implement data to get important organisations, events, systems or persons exposed to the player in an unified way. It also ships search functionality, a way to customize players data (species, gender, etc) and players can also add own notes.
Categories
The categories in Lib_PAD are the first component of all dotted pathes. Pages in a category do share a template which defines the layout of the page. All pages, except LOGS, do have 6 slots for textures (t0 - t5).
- GALCOP
- Category for GalCop, Police, Navy and other official organisations related to GalCop.
- Contains entries: name, entry, rank, enlisted, missions, awards, info.
- name and rank are set by Lib_PAD.
- Contains entries: name, entry, rank, enlisted, missions, awards, info.
- GUILDS
- Category for other organisations which do have a membership.
- Contains entries: name, entry, rank, enlisted, missions, awards, info.
- name and rank are set by Lib_PAD.
- Contains entries: name, entry, rank, enlisted, missions, awards, info.
- INFOS
- Category for special events, news, specific stations, etc.
- Contains entries: name, location, beacon, purpose, special, notes.
- LOGS
- Category for standard events like rescued escape pods, bailed out, fined, etc.
- Contains entries: list.
- PERSONS
- Category for characters you have met or you got infos about.
- Contains entries: name, origin, species, gender, age, rank, ship, info, notes.
- Players name, origin, species, gender, age, rank and ship are set by Lib_PAD.
- Contains entries: name, origin, species, gender, age, rank, ship, info, notes.
- SYSTEMS
- Category for special systems like Leesti, Tianve, Tionisla, etc.
- Contains entries: name, info, notes.
Types
- Number
- age.
- String
- beacon, enlisted, entry, gender, location, name, origin, purpose, rank, ship, species.
- Array
- awards, info, list, missions, notes, special.
Textures
Specified textures can be any filename, but Lib_PAD also ships own textures for organisations, characters, insignia and medals. If set to a Number it will lookup the corresponding filename or if zero it won't show it.
- t0 - Usually an organisation on GALCOP, GUILDS and PERSONS pages. Lib_PAD uses greyscale textures.
- t1 - Usually a character on GALCOP, GUILDS and PERSONS pages.
- t2 - Usually an insignia / rank on GALCOP, GUILDS and PERSONS pages.
- t3 - Usually a medal on GALCOP, GUILDS and PERSONS pages.
- t4 - Unused yet.
- t5 - Unused yet.
Methods
The following entry points for AddOns can be used on .startUpComplete or later.
_addPageInCategory
_addPageInCategory: function( path, content ) |
Register a new page entry in the specified dotted path. The inserted Object is cloned and merged with the corresponding template.
Parameters:
- path
- String. Dotted path: Category and page identifier. E.g. "GALCOP.NAVY".
- content
- Object.
Returns:
- true (on success) or false (if the page already exists).
_setPageEntry
_setPageEntry: function( path, value ) |
Set value in the specified dotted path.
Parameters:
- path
- String. Dotted path: Category, page identifier and page entry. E.g. "GALCOP.NAVY.enlisted".
- value
- Primitive (String or Number). If the path points to an Array the value will be pushed.
Returns:
- true (on success) or false (if the path does not exist).
_getData
_getData: function( path ) |
Returns the cloned data-object in the specified dotted path.
Parameters:
- path
- String. Dotted path: Category and page identifier. E.g. "GALCOP.NAVY".
Returns:
- Object (on success) or false (if the path does not exist).
Handling
Lib_PAD leaves the handling for loading and storing of inserted data to the inserting AddOns to avoid external resources like textures not being available and thus generating errors. It loads and stores it's own entries (pathes GALCOP.GENERIC, GALCOP.NAVY, GUILDS.GENERIC, INFOS.GENERIC, LOGS.GENERIC, PERSONS.GENERIC and SYSTEMS.GENERIC)
Loading and storing of data can be achieved easily, as shown in the following example.
this.$data = { GCI: {entry:clock.clockString,enlisted:"Sergeant",awards:["GCI Silver Cross"],t0:27,t1:1} }; this.startUpComplete = function(){ if(missionVariables.MYMISSIONVARIABLE) this.$data = JSON.parse(missionVariables.MYMISSIONVARIABLE); worldScripts.Lib_PAD._addPageInCategory("GALCOP.GCI",this.$data.GCI); }; this.playerWillSaveGame = function(){ this.$data.GCI = worldScripts.Lib_PAD._getData("GALCOP.GCI"); missionVariables.MYMISSIONVARIABLE = JSON.stringify(this.$data); };