Hi all,
I have created a (barebones, wip) planner oxp. (For people who play Oolite so much that it's the only way they will remember )
The subject and details entries are unfortunately limited to 30 characters right now, due to the way they are recorded by Oolite.
Available from http://wiki.alioth.net/img_auth.php/d/d ... _1.0.0.oxz or the expansion manager.
Features:
-Use interfaces screen to access planner
-Add entries to planner
-Delete entries from planner
-View planner
[RELEASE] Planner OXP
Moderators: winston, another_commander
[RELEASE] Planner OXP
That is not my desk.
I find this lack of milk... disturbing.
I find this lack of milk... disturbing.
- Norby
- ---- E L I T E ----
- Posts: 2577
- Joined: Mon May 20, 2013 9:53 pm
- Location: Budapest, Hungary (Mainly Agricultural Democracy, TL10)
- Contact:
Re: [RELEASE] Planner OXP
To overcome the 30 char. limit you can ask max. 20 lines into a plan and store in an array.
In this.$subject() you can initialize the array:Then in this.$details() do this:
Repeat line input until an empty line entered or the 20. line reached.
You should use the 20 limit in the number of subjects also to prevent step over the vertical size of the screen when list subjects. Lines are limited due to the same reason, thinking to the possible future when all lines will be listed in a menu to change one.
To step over the 20 limits later, you must add a "more" menu item and list only 20 items at once.
For autodating you can store clock.clockString.
In this.$subject() you can initialize the array:
Code: Select all
this._plans[choice]=[];
Code: Select all
this._plans[this._tempVal].push(choice);
You should use the 20 limit in the number of subjects also to prevent step over the vertical size of the screen when list subjects. Lines are limited due to the same reason, thinking to the possible future when all lines will be listed in a menu to change one.
To step over the 20 limits later, you must add a "more" menu item and list only 20 items at once.
For autodating you can store clock.clockString.
- Cholmondely
- Archivist
- Posts: 5347
- Joined: Tue Jul 07, 2020 11:00 am
- Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
- Contact:
Re: [RELEASE] Planner OXP
Wikipage created: http://wiki.alioth.net/index.php/Planner
Comments wanted:
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
- Cholmondely
- Archivist
- Posts: 5347
- Joined: Tue Jul 07, 2020 11:00 am
- Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
- Contact:
Re: [RELEASE] Planner OXP
Ramen, I've seen one or two hints that you had hoped to do more with this. What had you hoped for?Ramen wrote: ↑Mon Jun 08, 2015 5:55 pmHi all,
I have created a (barebones, wip) planner oxp. (For people who play Oolite so much that it's the only way they will remember )
The subject and details entries are unfortunately limited to 30 characters right now, due to the way they are recorded by Oolite.
Features:
-Use interfaces screen to access planner
-Add entries to planner
-Delete entries from planner
-View planner
PS: Wishing you and yours a "Happy & Healthy 2022"
Comments wanted:
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?