Orbital Stations

Discussion and information relevant to creating special missions, new ships, skins etc.

Moderators: another_commander, winston

User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Orbital Stations

Post by stranger »

Orbital Stations

Latest OXZ - Version 2.7.0
Uploaded 18 June 2020

Ideas with revolutionary potential sometimes remains underestimated or just unnoticed.
This is a case for Satellite OXP (author – Rorschachhamster). Nice exercise in coding and just one more OXP in Appearance category.
Well.
It is hard task to simulate true orbital dynamics in Oolite.
In real world calculation of orbital dynamics is based on integration of acceleration vector and on energy conservation law. If you have no acceleration produced by propulsion engine, your total energy (sum of kinetic and potential energy) would be constant value. So on elliptic orbit you’ll trade velocity for altitude and vice versa.
In Oolite we have no gravity nor energy. Acceleration is limited to propulsion acceleration/deceleration parameter thrust and this is not vector value – it is just rate of change of ship speed. So we need some trick to simulate true orbital dynamics – calculate ship position for next frame and place ship to it directly.
Unfortunately JavaScript is not suitable instrument for smooth dynamic simulations. It generates only 4 fps, so you’ll see sequence of frames instead illusion of smooth movement.
Bad idea. Forget it.
Satellite OXP uses more elegant approach, based on AI behavior. It generates realistically looking pattern of circular movement around planet without sophisticated math.
Let’s try to apply this approach to some large ship. Large enough to be dockable.
You got the idea.

Orbital Stations OXP puts into operation network of stations, moving on circular orbits.
All stations in network has specific roles and markets.
Kiota class stations from WildShips OXP (author Thargoid) were used as prototypes for my orbiters. Kiota stations has modular design, suitable for assembling custom configurations. These stations has reach-through axial docking well, allowing easy closing and docking from six o’clock chasing position. And these stations has pretty looking appearance.
Nice job, Thargoid!

It is technically possible to adjust each orbiter velocity individually to simulate orbital periods as function of planet mass and orbit radius, but I have no plans to implement such idea. Escape velocity in our Solar system is 2.38 km/s for Moon and 59.5 km/s for Jupiter – 25x ratio. All orbiters has H = 0.5 R circular orbits, so orbital velocities will be in the same x25 ratio. Setting orbital velocity of jovian orbiter to 200 m/s to allow Adder or Boa to dock with station you’ll have 8 m/s for lunar orbiter – barely noticeably movement. So I decide to sacrifice accuracy for fun. All orbiters has the same orbital velocity 50 m/s.

Features:

Lock Advanced Space Compass onto K beacon and enjoy flight onto new destination!

Orbital Stations implemented:

KHS-2R
KHS-4R
KHS-8R

Main stations in high tech systems. Same configuration as original ring habitat stations in WildShips OXP, but with different seeding criteria. Stationary (not moving) stations.

KOS-RJ Jovian research orbiter
KOS-RM Martian research orbiter
KOS-RT Terran research orbiter
KOS-RS Superterran research orbiter

Research orbital stations located in high-tech systems with stable governments and high GNP. All research orbiters except Jovian orbiter based on the same configuration.

KOS-M

Mining complex in heliocentric orbit. Located in high-tech systems with stable governments and high GNP.

KOS-P

Orbital plant on orbit of large moon of main planet. Located in most advanced high-tech systems with stable governments and high GNP.

All stationary KHS stations has roles of main system station with default system market.
KOS orbiters has custom markets, adjusted individually for every type of station.

Conflicts and dependencies

Required OXP: Planetary System

This OXP uses planets from Planetary Systems OXP as destination points for station spawn. If you have Planetary Systems missing, Orbital Station still try to spawn stations but results may be negative or logically flawed (for example, you have no research station on orbit of gas giant if you have no at least one gas giant in system!).
Stations used are modified Kiota stations from Wild Ships OXP (author - Thargoid). Resource files from Wild Ships OXP are included in Orbital Stations and renamed to avoid clashes with possible future updates of Wild Ships.
Orbital Stations and Wild Ships uses different station roles and seeding scripts, so in theory Orbital Stations will not conflict with Wild Ships. Any feedback will be welcomed.
Main orbital stations KHS completely replaces old Tori station. Remove Tori.oxp from AddOn folder if you have one to see new stations!

This package minimum requirement is Oolite 1.82.

Credits

Station models, shaders and textures are renamed files from WildShips OXP (author - Thargoid). Specifications of stations are readjusted.
Algorithm of seeding stations based on Stations for Extra Planets OXP (author - spara).
Algorithm of orbital movement tightly based on Satellite OXP (author - Rorschachhamster).
Station market saver script tightly based on PlanetfallMarketSaver (author - SMax).
Help of commander vasig from Russian Oolite community in heavy testing of this OXP was and will be invaluable!
Last edited by stranger on Thu Jun 18, 2020 11:12 pm, edited 7 times in total.
User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Re: Orbital Stations

Post by stranger »

another_commander
Quite Grand Sub-Admiral
Quite Grand Sub-Admiral
Posts: 6547
Joined: Wed Feb 28, 2007 7:54 am

Re: Orbital Stations

Post by another_commander »

stranger wrote: Tue Jan 08, 2019 5:03 am
Unfortunately JavaScript is not suitable instrument for smooth dynamic simulations. It generates only 4 fps, so you’ll see sequence of frames instead illusion of smooth movement.
Bad idea. Forget it.
I wouldn't forget it right away. Frame callbacks can be used for animations and are invoked on every game frame. Check here for details.

Also, very quick and dirty (no cleanup at end, no nothing) example for showing how you can use this for moving the station. Put this function inside script.js in Config and see how the station smoothly slides away once you launch.

Code: Select all

this.$fcb = addFrameCallback(function (delta)
{
	system.mainStation.position = system.mainStation.position.add([0,0,100 * delta]);
});
User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Re: Orbital Stations

Post by stranger »

:oops: Need to reconsider my statement...
Thank you!
User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Re: Orbital Stations

Post by stranger »

Commanders,

Orbital Stations is now compatible with Wild Ships.

Personally I prefer to select one of packs, not both. Having two sets of stations with similar design but different roles and markets seems as excess. But there are fun features in Wild Ships lacking in my Orbital Stations like unique ships with unique traffic pattern etc. It will be wrong to demand “you must choose one of packs, not both”. So compatibility is welcomed option.
Lacking modeler skills I’m using for my orbiters nice models from Wild Ships. There is some drawbacks in using shared resource files however.
Some players like I can prefer to use only Orbital Stations, not Wild Ships. So Orbital Stations must contain all resource files to work as stand-alone pack without need to install Wild Ships.
But some players can prefer to use both packs. Running two packs with similar resource files in parallel can arouse issue of synchronization. Any possible future update of resource files of Wild Ships will lead to unpredictable clashes between new resource files and old ones.
How to avoid these issues?

Possible variants

A. Split Orbital Stations onto two packs – core pack and optional resource pack. For using Orbital Stations in parallel with Wild Ships you'll need only core pack. Install core pack AND resource pack to use Orbital Stations as stand-alone OXP.
It will work, but it is a bit confusing for gamer. Installing Orbital Stations core pack and installing resource pack. Well. A bit later you’ll try to install Wild Ships too and you need to remove Orbital Stations resource pack to avoid above mentioned issues. OK, resource pack can be declared (and must be declared) as incompatible with Wild Ships, but how many players has habit to read instructions before installing new packs?

B. Two version of Orbital Stations.
Full stand-alone version with all resource files included, declared as incompatible with Wild Ships
AND
Lite version, using shared resources from Wild Ships and declared as dependent from Wild Ships.
It will work too, but again it not simplest for casual gamer.

So I have final decision.
All resource files were be renamed and all corresponding references were be edited.
Now resource files, borrowed from Wild Ships, are isolated.
Log file is clear and I hope it will be safe.

Enjoy!
User avatar
RockDoctor
---- E L I T E ----
---- E L I T E ----
Posts: 753
Joined: Sat May 01, 2010 9:05 pm
Location: Scotland

Re: Orbital Stations

Post by RockDoctor »

stranger wrote: Tue Jan 08, 2019 5:09 am
Lunar orbital factory
(I haven't read the rest of the thread, I was browsing for something else.)
Lots of solar panels. Fine. Does the code keep them approximately normal to the station-sun line? Of not, you're going to get power-loss Klaxons going off all over the place.
Also, the ISS has radiator panels positioned perpendicular to the solar panels. They're there for a reason, and oriented so for a reason.
--
Shooting aliens for fun and ... well, more fun.
"Speaking as an outsider, what do you think of the human race?" (John Cooper Clark - "I married a Space Alien")
User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Re: Orbital Stations

Post by stranger »

RockDoctor wrote: Thu Feb 21, 2019 3:50 pm
Lots of solar panels. Fine. Does the code keep them approximately normal to the station-sun line? Of not, you're going to get power-loss Klaxons going off all over the place.
Also, the ISS has radiator panels positioned perpendicular to the solar panels. They're there for a reason, and oriented so for a reason.
Yes, I was concerned with this aspect taking and re-assembling original design of Kiota modular stations for orbiters.
So-called solar panels are really heat radiators in my version of game reality despite being declared as solar panels in shipdata.plist (heredity of original Thargoid's shipdata.plist). You have no pressing need to use solar power having concentrated energy in form of witchfuel, collected from solar wind (OK, there are some issues with density of solar wind in real reality - it has too low energy density comparing to electromagnetic solar radiation, but in theory you can collect it using huge intake area of magnetic trap).
There are no issues with heliocentric mining complex - it always has optimal orientation of heat radiators due to orbital orientation. But we have issue with orientation of heat radiators in case of lunar orbital factory, really.
Possible decisions:
A. Simplest - just redesign lunar factory. No radiator panels - no issue.
B. More complex - orbital plane normal to sun. I need some time to try it, OK?
C. Heat radiators as individually oriented sub-entities. It is beyond my coding skills.

And we have similar case for original Thargoid's solar station too, having solar panels and lacking heat radiators.

Thanks for feedback!
User avatar
RockDoctor
---- E L I T E ----
---- E L I T E ----
Posts: 753
Joined: Sat May 01, 2010 9:05 pm
Location: Scotland

Re: Orbital Stations

Post by RockDoctor »

stranger wrote: Thu Feb 21, 2019 10:51 pm
So-called solar panels are really heat radiators in my version of game reality despite being declared as solar panels in shipdata.plist (heredity of original Thargoid's shipdata.plist).
Yeah, I was thinking things about attitude control while watching the data stream from the Hayabusa2 mission.
--
Shooting aliens for fun and ... well, more fun.
"Speaking as an outsider, what do you think of the human race?" (John Cooper Clark - "I married a Space Alien")
User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Re: Orbital Stations

Post by stranger »

Version 2.7.0

Martian orbiter seeding synchronized with updated Mars analog radius range in Planetary Systems 1.6.0.
User avatar
Cholmondely
Archivist
Archivist
Posts: 4977
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Orbital Stations

Post by Cholmondely »

stranger wrote: Tue Jan 08, 2019 5:03 am
Orbital Stations

Latest OXZ - Version 2.7.0
Uploaded 18 June 2020
I no longer get the details of the Orbital Stations on my ASC (KOS-RJ, KOS-M). Just the plain K appellation.

Needless to say, without the other letters, tying each K to its planet or moon (to work out what each one actually is!) is a lengthy task, shuffling backwards and forwards in the ASC, remembering the distances etc. And as one gets older, and the brain cells start dying away ...

This has just developed recently.

Any ideas?
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?
User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Re: Orbital Stations

Post by stranger »

Cholmondely wrote: Sun Jan 31, 2021 9:10 am
I no longer get the details of the Orbital Stations on my ASC (KOS-RJ, KOS-M). Just the plain K appellation.
You have only first K letter on ASC indeed, but having Navigation MFD you'll have full index like KOS-RJ / KOS-M etc on Navigation MFD panel. Just tested in Zaonce system - there are several orbiters in this rich high-tech system.
User avatar
Cholmondely
Archivist
Archivist
Posts: 4977
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Orbital Stations

Post by Cholmondely »

stranger wrote: Sun Jan 31, 2021 1:44 pm
Cholmondely wrote: Sun Jan 31, 2021 9:10 am
I no longer get the details of the Orbital Stations on my ASC (KOS-RJ, KOS-M). Just the plain K appellation.
You have only first K letter on ASC indeed, but having Navigation MFD you'll have full index like KOS-RJ / KOS-M etc on Navigation MFD panel. Just tested in Zaonce system - there are several orbiters in this rich high-tech system.
Thank you, Sir!
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?
User avatar
stranger
---- E L I T E ----
---- E L I T E ----
Posts: 351
Joined: Thu Apr 05, 2018 5:31 am
Location: Vladivostok, Russia

Re: Orbital Stations

Post by stranger »

Thank you for feedback!
I'll inspect code tomorrow - seems it is possible to display more than one letter on ASC.
User avatar
Cholmondely
Archivist
Archivist
Posts: 4977
Joined: Tue Jul 07, 2020 11:00 am
Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
Contact:

Re: Orbital Stations

Post by Cholmondely »

stranger wrote: Sun Jan 31, 2021 1:54 pm
Thank you for feedback!
I'll inspect code tomorrow - seems it is possible to display more than one letter on ASC.
I had several letters displayed back when I was mooching about in SW when you added in SWEconomics (and before). But when I added Diplomancy a few days ago (together with several other OXPs), I was down to the one letter "K". Must be the mystic side of Day's OXP. For mysticism "less is better", yes?
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?
User avatar
RockDoctor
---- E L I T E ----
---- E L I T E ----
Posts: 753
Joined: Sat May 01, 2010 9:05 pm
Location: Scotland

Re: Orbital Stations

Post by RockDoctor »

stranger wrote: Sun Jan 31, 2021 1:44 pm
You have only first K letter on ASC indeed, but having Navigation MFD you'll have full index like KOS-RJ / KOS-M etc on Navigation MFD panel. Just tested in Zaonce system - there are several orbiters in this rich high-tech system.
I've made little use of the MFD system. Too much screen space used, not really enough functionality for my use ... damn - could that "Navigation MFD" have helped me finding the damned Collector's hideout? Well, regardless of that ... is it possible for the MFDs to be displayed in a separate game window - possibly on a literal side screen in my "cockpit"?

Is that a question for the main game program?
--
Shooting aliens for fun and ... well, more fun.
"Speaking as an outsider, what do you think of the human race?" (John Cooper Clark - "I married a Space Alien")
Post Reply