ENG New site

Advanced search

[ New messages · Forum rules · Members ]
  • Page 1 of 1
  • 1
Forum » SpaceEngine » Gameplay Discussions » Backing up Randomly Generated Content in Space Engine?
Backing up Randomly Generated Content in Space Engine?
davidbuddy9Date: Wednesday, 29.04.2015, 21:42 | Message # 1
Observer
Group: Newbies
Pirate
Messages: 6
Status: Offline
Hello, I'm going to be re-installing Windows soon, and I would like to know how possibly I can back up my Randomly Generated content. I've gotten some pretty cool stuff and since it is random I guess I would be able to admire some of the cool things I came across such. I don't really want to copy the whole program just the folder that has all of the info in it as I only have so much space for backup!
 
alexgaulvinoDate: Tuesday, 30.06.2015, 02:14 | Message # 2
Observer
Group: Newbies
Pirate
Messages: 1
Status: Offline
Bump
 
HarbingerDawnDate: Tuesday, 30.06.2015, 02:27 | Message # 3
Cosmic Curator
Group: Administrators
United States
Messages: 8717
Status: Offline
Just copy the config folder, though starting in 0.9.7.4 I think it's the user folder.




All forum users, please read this!
My SE mods and addons
Phenom II X6 1090T 3.2 GHz, 16 GB DDR3 RAM, GTX 970 3584 MB VRAM
 
parameciumkidDate: Tuesday, 30.06.2015, 19:41 | Message # 4
Explorer
Group: Users
United States
Messages: 277
Status: Offline
^ No need.
There is a point in backing up your bookmarks, which is simply a matter of saving a copy of, I think, places.cfg and journal.cfg (optionally).
But while SE uses a pseudorandom number generator, the seed used to start it is always the same, so like any pseudorandom generator, it will always generate the exact same stuff every time, even between installations. The only way you could "lose" a procedural object is if you change the universe.cfg file or SpaceEngineer changes the seed or algorithm (which admittedly he probably will at least once between now and the final release).
So as long as you save your bookmarks, there's no need to backup the actual star and planet data.





Intel HD Graphics 4000 ;P

Edited by parameciumkid - Tuesday, 30.06.2015, 19:41
 
HanakofuroshiraDate: Monday, 11.07.2016, 17:53 | Message # 5
Astronaut
Group: Users
United States
Messages: 42
Status: Offline
A terribly old thread, I apologise to bump it, but I looked for my favourite systems from 9.7.1 in 9.7.4 RC2, and while the galaxy remained somewhat the same(100 kpc in diameter, but a SBb galaxy instead of S0 galaxy), the star systems did not. Did the compatibility change from 9.7.1 to 9.7.2? I'm rather curious .




Fluent in music, math, Solresol, and hopefully someday, astronomy.
 
pfjarschelDate: Monday, 11.07.2016, 18:07 | Message # 6
Space Tourist
Group: Users
Pirate
Messages: 34
Status: Offline
Hanakofuroshira, on each new version there is something mildly different on the generation settings (I don't really know the details), but that causes the random systems, stars and galaxies to be different on each version, so unfortunately you have to find new ones tongue




"Rush, Where the hell are we?"
"Several billion light years from home."


Edited by pfjarschel - Monday, 11.07.2016, 18:07
 
HanakofuroshiraDate: Monday, 11.07.2016, 18:30 | Message # 7
Astronaut
Group: Users
United States
Messages: 42
Status: Offline
I figured it was going to be like that because of all the new settings each body can have haha

Each time I boot up a new version of Space Engine, I always go to RG 0-0-0-607. I've been compiling a rather big list of systems I like so when true importing becomes a thing, I can have a galaxy that has all of my favourite systems in it. Granted, I will never complete it in my lifetime, but I think it's a great way to pass the time.





Fluent in music, math, Solresol, and hopefully someday, astronomy.
 
SalvoDate: Tuesday, 12.07.2016, 06:35 | Message # 8
Star Engineer
Group: Local Moderators
Italy
Messages: 1400
Status: Offline
Quote parameciumkid ()
SpaceEngineer changes the seed or algorithm

Just for clarifying, he doesn't voluntarily change the seed, the reason why the universe changes it's because a new factor of random have been added/an important feature have been modified. smile






The universe is not required to be in perfect harmony with human ambition.

CPU: Intel Core i7 4770 GPU: ASUS Radeon R9 270 RAM: 8 GBs

(still don't know why everyone is doing this...)


Edited by Salvo - Tuesday, 12.07.2016, 06:40
 
SpaceEngineerDate: Tuesday, 12.07.2016, 20:54 | Message # 9
Author of Space Engine
Group: Administrators
Russian Federation
Messages: 4800
Status: Offline
Well, SE indeed have no single "master seed". For example, for planetary system, the seed is a some hash computed from stars coordinates:

Code

    // Calculate a seed from rounded Universal coordinates of the star
    int rcx = int(ring((double)PosUniv.x * 100, 2147483647.0));
    int rcy = int(ring((double)PosUniv.y * 100, 2147483647.0));
    int rcz = int(ring((double)PosUniv.z * 100, 2147483647.0));
    seed = rcx * 165954 + rcy * 931245 - rcz * 2296315;
    Randomize(seed);
    GaussRandomize(seed);


The older versions have seed as a hash of star ID number, thus tiny change in star generator gives completely different system. The seed based on coordinates is more stable.

Besides this seed, the appearance of the planetary system depends on the main star parameters. This must be obvious: systems of a red giant and red dwarf are very different.

The same for galaxies: they have a hash-seed based on their coordinates (so changing the ID (procedural number) of the galaxy RG XXXX-... does not change the stars inside it anymore, unlike older SE versions), but also stars in galaxy generated using some galaxy parameters (type, radius), and, the most important, galaxy subsystem texture. So moders must take it into account: changing galaxy subsystem texture (but not front texture / sprite model) changes all stars, clusters and nebulae inside it, as well as changing radius; changing galaxy coordinates changes galaxy seed, so again changes everything in it.

Adding/removing some catalog galaxy will shift other galaxies ID, so all procedural stars in them changes their names. But because star generator takes galaxy coordinates to compute hash-seed, not the name or ID, stars in it does not change. For example, in 0.972 procedural stars has numbers RS 8404-xxx, but in 0.974 they are RS 8474-xxx. After adding/removing galaxies (by installing some mod or catalog fix), it will change, but you still can restore your Milky Way locations by looking at name of some procedural star in Milky Way and fixing the galaxy ID part (first number after "RS") in the names of stars in your places-user.cfg (and places-def.cfg!). If I implement some better generation of ID for catalog galaxies (now it is just a index number in the catalog), it will preserve locations after adding/removing galaxies in the catalog. Maybe again some hash based on galaxy coordinates will work.

But the main problem remains. Changing of planets, stars or entire galaxies in the every new version cannot be avoided. Salvo very well described the nature of this thing. The only "solution" I can suggest is preserving all galaxies/stars/planets generation code from version to version, maybe as a dll. Each new SE version will have new dll, which implements new generation algorithms. Locations entry in the places-*.cfg have the version number info, so engine can load corresponding dll and generate planets using it. Also all texture generator shaders must be saved this way. Although this will not work if the galaxy texture changes. Also, supporting this system may become hell as engine code changes. Some changes may be completely incompatible with the old code, for example new terrain rendering and generation system. Thus old code (old dll) must be completely removed time to time. So I'm not sure if implementing of this system worth efforts.





 
SalvoDate: Wednesday, 13.07.2016, 11:38 | Message # 10
Star Engineer
Group: Local Moderators
Italy
Messages: 1400
Status: Offline
SpaceEngineer, wow it's so interesting!
Quote SpaceEngineer ()
The only "solution" I can suggest is preserving all galaxies/stars/planets generation code from version to version, maybe as a dll.

Yeah, but as you said would be a nightmare to add new features, I guess it's just fine what it is right now, since there is the possibility to export systems. happy





The universe is not required to be in perfect harmony with human ambition.

CPU: Intel Core i7 4770 GPU: ASUS Radeon R9 270 RAM: 8 GBs

(still don't know why everyone is doing this...)
 
SpaceEngineerDate: Wednesday, 13.07.2016, 13:04 | Message # 11
Author of Space Engine
Group: Administrators
Russian Federation
Messages: 4800
Status: Offline
Just thinking about another way to fix galaxy number shift issue: show/find procedural star name as real galaxy name + star ID, ie star
"RS 8474-1353-8-11843422-287"
become
"Milky Way RS 1353-8-11843422-287" or "Milky Way-1353-8-11843422-287"
It doesn't look good though...





 
SalvoDate: Thursday, 14.07.2016, 11:55 | Message # 12
Star Engineer
Group: Local Moderators
Italy
Messages: 1400
Status: Offline
Quote SpaceEngineer ()
It doesn't look good though...

Yeah, the first absolutely does not look good, the second is prettier but procedural stars of procedural galaxies would have very long names wacko

Making an hidden ID to replace the name in the algorithm it's very difficult right?





The universe is not required to be in perfect harmony with human ambition.

CPU: Intel Core i7 4770 GPU: ASUS Radeon R9 270 RAM: 8 GBs

(still don't know why everyone is doing this...)


Edited by Salvo - Thursday, 14.07.2016, 11:57
 
HanakofuroshiraDate: Sunday, 17.07.2016, 21:31 | Message # 13
Astronaut
Group: Users
United States
Messages: 42
Status: Offline
Is there a fairly easy way to import my procedural content from previous versions? I know that one can't import textures, but even importing the body information is still finicky. I already have the .cfg export file of the systems I want to import.

If it helps, I'm trying to import systems from all versions since 0.971. Is it being silly because of the new features, the fact that it's trying to overwrite an existing procedural system, or could it even be that I'm trying to import into a procedural galaxy...?

I might even be messing up something as simple as not watching my parenthesis or inserting the information into the wrong place, but I don't know for sure since I'm following any importing guides I can find.





Fluent in music, math, Solresol, and hopefully someday, astronomy.
 
Forum » SpaceEngine » Gameplay Discussions » Backing up Randomly Generated Content in Space Engine?
  • Page 1 of 1
  • 1
Search: