Celestia 1.7.0 Development Thread

The place to discuss creating, porting and modifying Celestia's source code.
SamwiseBrave
Posts: 5
Joined: 15.04.2020
With us: 4 years 5 months

Feature Request?

Post #801by SamwiseBrave » 15.04.2020, 04:40

Sorry if this isn't the place to do it (I couldn't find a better option), but I have a feature request.

Would it be possible to have a 'puff factor' multiplier (each with an associated slider in the view options) for:
- star size (slider range: 1x - ~500x)
- planet size (slider range: 1x - ~10000x)
- moon size (slider range: 1x - ~20000x)
- planet orbit radius (slider range: 1x - ~1000x)
- moon orbit radius (slider range: 1x - ~1000x)

The purpose of this would be to visualise our place (and orientation) in the galaxy compared to the other potentially habitable systems.
This would greatly aid in writing articles and stories about the future of space exploration with some degree of authenticity / accuracy.

I love seeing the accurate scale of the universe, but it's just too hard to conceptualise our relationship to our stellar neighbourhood.

Many thanks!

Avatar
Lafuente_Astronomy
Moderator
Posts: 726
Joined: 04.08.2018
Age: 26
With us: 6 years 1 month
Location: Cebu City, Cebu Province, Philippines
Contact:

Post #802by Lafuente_Astronomy » 15.04.2020, 05:37

SamwiseBrave wrote:Sorry if this isn't the place to do it (I couldn't find a better option), but I have a feature request.

Actually, this is the place. You're technically making a suggestion for inclusion in the future development of Celestia. So, you're alright.

SamwiseBrave wrote:Would it be possible to have a 'puff factor' multiplier (each with an associated slider in the view options) for:
- star size (slider range: 1x - ~500x)
- planet size (slider range: 1x - ~10000x)
- moon size (slider range: 1x - ~20000x)
- planet orbit radius (slider range: 1x - ~1000x)
- moon orbit radius (slider range: 1x - ~1000x)

Could you elaborate on that? And can you also explain to us how it works? Thanks

SamwiseBrave wrote:The purpose of this would be to visualise our place (and orientation) in the galaxy compared to the other potentially habitable systems.
This would greatly aid in writing articles and stories about the future of space exploration with some degree of authenticity / accuracy.

I love seeing the accurate scale of the universe, but it's just too hard to conceptualise our relationship to our stellar neighbourhood.

Indeed. The Universe is a very massive place, and possibly infinite. It would good for us to at least visualize our place in the Universe and then stare in awe and wonder at just how teeny tiny small we truly are. So, yes, that would be a good idea

SamwiseBrave wrote:Many thanks!
And many welcomes back to you. I'll see if the devs will like it
Official Administrator of the Celestia Discord Server.
Invite: https://discordapp.com/invite/WEWDcJh
If you don't have a Discord account, register here: https://discordapp.com/register
Have a blessed day.

Topic author
onetwothree
Site Admin
Posts: 705
Joined: 22.09.2018
With us: 5 years 11 months

Post #803by onetwothree » 15.04.2020, 06:27

Sounds like a good addon for Lua Universal Tools.

Avatar
Lafuente_Astronomy
Moderator
Posts: 726
Joined: 04.08.2018
Age: 26
With us: 6 years 1 month
Location: Cebu City, Cebu Province, Philippines
Contact:

Post #804by Lafuente_Astronomy » 15.04.2020, 08:49

onetwothree wrote:Sounds like a good addon for Lua Universal Tools.

Well, looks like one of the developers agreed to your request.
Official Administrator of the Celestia Discord Server.
Invite: https://discordapp.com/invite/WEWDcJh
If you don't have a Discord account, register here: https://discordapp.com/register
Have a blessed day.

SamwiseBrave
Posts: 5
Joined: 15.04.2020
With us: 4 years 5 months

Post #805by SamwiseBrave » 15.04.2020, 12:40

Wonderful!

I'll try to elaborate, but please ask any specific questions I haven't explained &/or feel free to take this idea and develop it in your own way.
Preamble:
I play a lot of space games and it kind of annoys me how 2D and unrealistic in terms of scale they all are. Surely people know that space is 3D.
I'm also interested in the idea of colonising other planets from a scientific / academic viewpoint. What would be involved? How far away are planets that might potentially be colonised? Where are they in relation to each other and us? What are the orientations of the orbits relative to each other and ours?

Filling out the picture:
The vision I have is that you could zoom out to a distance of say 20-40 ly (or whatever) and by adjusting the sliders in the 'visualization' menu, start to see:
1) the sizes (and colours) of the local stars in comparison to each other,
2) the sizes of the planets in the local star systems in comparison to each other, and
3) the orientations of the orbits of the planets in the local star systems in comparison to each other.

Does that help?

Topic author
onetwothree
Site Admin
Posts: 705
Joined: 22.09.2018
With us: 5 years 11 months

Post #806by onetwothree » 15.04.2020, 13:00

Lafuente_Astronomy wrote:Well, looks like one of the developers agreed to your request.

I'm not a LUT developer :)

Avatar
SevenSpheres
Moderator
Posts: 824
Joined: 08.10.2019
With us: 4 years 11 months

Post #807by SevenSpheres » 15.04.2020, 15:57

There aren't currently any active Lua developers. However, the Lua Edu Tools/Lua Universal Tools already has a "Magnification" function that magnifies the planets of the Solar System. Maybe this could be extended to do what you're wanting.
My Addons: viewtopic.php?f=23&t=19978 • Discord server admin
Celestia versions: 1.5.1, 1.6.1, 1.6.2, 1.7.0, and some unofficial versions like Celestia-ED

Janus
Posts: 537
Joined: 13.08.2016
With us: 8 years 1 month

Post #808by Janus » 15.04.2020, 18:18

A possible way to achieve this is with a script.
I know it probably won't match exactly.
The following is adapted from a script for one of my mod sets, betwixt:between:RaDecDist, which lets me do distance calculations easily.
This particular one searches for stars of particular types near each other, such as red dwarfs(M,L,T) within 10Ly of G/F/A types.
Additions to the celx language are simple, and sometimes useful.
Spoiler

Code: Select all

MarkBlu = "#0000FF";    MrkBlue = "#000080";
MarkWht = "#FFFFFF";    MarkYel = "#FFFF00";
MarkYlw = "#C0C0FF";    MarkOrn = "#FFAA00";
MarkRed = "#FF0000";

startype = string.sub(currentstar:spectraltype(), 1, 1)

if startype == "O" then currentstar:mark(MarkBlu, "square"    , 12)
if startype == "B" then currentstar:mark(MrkBlue, "square"    , 12)
if startype == "A" then currentstar:mark(MarkWht, "square"    , 12)
if startype == "F" then currentstar:mark(MarkYlw, "triangle" , 12)
if startype == "G" then currentstar:mark(MarkYel, "circle"    , 12)
if startype == "K" then currentstar:mark(MarkOrn, "square"    , 12)
if startype == "M" then currentstar:mark(MarkRed, "square"    , 12)

I left out the bulk, but this should show what I mean.
If you want to compensate for size, then compare observer distance with a constant, and adjust the last number.
Perhaps there is a way to put a texture instead of a shape on a marker?
Maybe put a colored disc instead of an outline?

Or perhaps I have misunderstood.


Janus.

Avatar
jujuapapa
Banned
Posts: 344
Joined: 24.06.2018
With us: 6 years 2 months
Location: Western E.U.

Post #809by jujuapapa » 18.04.2020, 15:56

I don't know if it's the right place.

I remarks few differences between 1.6.2 and 1.7.

I saw this when I took same planetary system in each soft.
With 1.6.2 temperature of a planet was equal to 259 K and 235 K with 1.7 !
Why ?

So I return around Earth which is at 259 K with 1.6.2 and 295 K with 1.7
The update of the albedo didn't change anything.

Is it a bug of 1.7 ?

see screenshots.

Celestia_162.jpg
It seems OK.


Celestia_170.jpg
No good ?
Soft: Celestia 1.6.2
PC : Intel Core i9-9900K (4 GHz) , Chipset Z390 Exp, RAM 32 Go DDR4 3000 Mhz, SSD M.2 512 Go + HDD 3 To, MSI GeForce RTX 2080 8Go - W10 64b

I lost my old user, so with us: since more 12 years
=> It is by doubting everything that everybody approaches the truth !

Topic author
onetwothree
Site Admin
Posts: 705
Joined: 22.09.2018
With us: 5 years 11 months

Post #810by onetwothree » 18.04.2020, 17:52

that's strange, we haven't worked with this code. but at least i know that 1ca9db3212a is working commit, so will try to find the root cause and fix it.

Avatar
SevenSpheres
Moderator
Posts: 824
Joined: 08.10.2019
With us: 4 years 11 months

Post #811by SevenSpheres » 18.04.2020, 18:06

This "bug" is probably caused by 1.7.0 reading the "Albedo" parameter as "GeomAlbedo", and so not using it to determine temperature. You need to use "BondAlbedo" to have the same functionality as 1.6.x "Albedo". For Earth it's caused by the use of the "TempDiscrepancy" parameter to display the correct temperature. See also this Wikibooks page.
My Addons: viewtopic.php?f=23&t=19978 • Discord server admin
Celestia versions: 1.5.1, 1.6.1, 1.6.2, 1.7.0, and some unofficial versions like Celestia-ED

Topic author
onetwothree
Site Admin
Posts: 705
Joined: 22.09.2018
With us: 5 years 11 months

Post #812by onetwothree » 19.04.2020, 04:23

Use data files from CelestiaContent repository. Particularly, update your nearstars.stc with this file. Old one doesn't have Temperature and BoloCorrection for the Sun.

Avatar
jujuapapa
Banned
Posts: 344
Joined: 24.06.2018
With us: 6 years 2 months
Location: Western E.U.

Post #813by jujuapapa » 19.04.2020, 04:51

onetwothree wrote:Use data files from CelestiaContent repository. Particularly, update your nearstars.stc with this file. Old one doesn't have Temperature and BoloCorrection for the Sun.
To have same datas than 1.6.2, I updated the file nearstars.stc with :

Temperature 5770
BoloCorrection 0.43

TY 123. :wink:

Have I to do same thing for exoplanets around each own star ?
Soft: Celestia 1.6.2
PC : Intel Core i9-9900K (4 GHz) , Chipset Z390 Exp, RAM 32 Go DDR4 3000 Mhz, SSD M.2 512 Go + HDD 3 To, MSI GeForce RTX 2080 8Go - W10 64b

I lost my old user, so with us: since more 12 years
=> It is by doubting everything that everybody approaches the truth !

Topic author
onetwothree
Site Admin
Posts: 705
Joined: 22.09.2018
With us: 5 years 11 months

Post #814by onetwothree » 19.04.2020, 05:11

No. The problem was with the Sun only.

Avatar
Joey P. M
Posts: 462
Joined: 28.10.2017
Age: 22
With us: 6 years 10 months
Location: Vladivostok, Russia

Post #815by Joey P. » 21.04.2020, 03:07

Today marks the first time for me using Celestia 1.7.0.
I decided to keep my older Celestia 1.6.1.-ED and thus I have both. Both are based on the exact same program files and their folder.
However, when I tried giving 1.7.0. a custom .ttf font, it wouldn't work and no text would show up on the screen. Pressing "V" or "B" didn't work either.
error.png

Do you know how to fix this?
Joey P.

Janus
Posts: 537
Joined: 13.08.2016
With us: 8 years 1 month

Post #816by Janus » 21.04.2020, 03:52

Besides needing to copy/paste the exact ttf font name into the cfg file.
I found that I needed to copy the ttf file into /fonts for it to be found.


Janus.

Topic author
onetwothree
Site Admin
Posts: 705
Joined: 22.09.2018
With us: 5 years 11 months

Post #817by onetwothree » 28.04.2020, 21:06

Please test https://ci.appveyor.com/project/375gnu/celestia/builds/32510540/artifacts, especially Intel & Nvidia owners.

All vertex shaders should be updated from https://github.com/375gnu/Celestia/tree/generic-attributes/shaders (only *_vert.glsl files, *_frag.glsl are the same).

There are some issues with text rendering like incorrect colors, this is known.

Avatar
MrSpace43
Posts: 271
Joined: 10.12.2017
Age: 20
With us: 6 years 9 months
Location: California, USA
Contact:

Post #818by MrSpace43 » 28.04.2020, 23:40

Multiple cloud layers plus LunarLanbert for those cloud layers would be nice because then we could have our own animated planets.
Been into Astronomy since the age of 3 or 4. Started making planetary textures back in late 2016. 3D animator who makes high quality animations in Cinema 4D. Likes to sometimes, deliberately torment myself with the stupid green screaming apatosaurus that is Arlo.

My addons page: https://celestiaproject.space/forum/viewtopic.php?f=23&t=22167

Markerz
Developer
Posts: 274
Joined: 29.01.2009
Age: 29
With us: 15 years 7 months
Location: Suzhou, China

Post #819by Markerz » 29.04.2020, 07:00

@onetwothree

Screen Shot 2020-04-29 at 2.58.13 PM.png


Tried your branch on Mac with AMD Radeon Pro 5500M & NVIDIA 650M, stars gets even more dimmer

Topic author
onetwothree
Site Admin
Posts: 705
Joined: 22.09.2018
With us: 5 years 11 months

Post #820by onetwothree » 29.04.2020, 09:43

On the left side it's master, is it?


Return to “Development”