Notifications
Clear all

Gaz planets problems ???


VampiretteDuCosmos
(@vampiretteducosmos)
Petty Officer Registered
Joined: 15 years ago
Posts: 28
Topic starter  

Hello, I am new to Pioneer and I find this game great.

However, it is normal for planets like saturn be like that ?

saturnx.jpg

so is much of gaseous planets... I find it strange texture problem there?

thank you in advance for your answers ^ ^

Vampi.


Quote
Brianetta
(@brianetta)
Commander Registered
Joined: 14 years ago
Posts: 863
 

Looks like you're running an older version of Pioneer. I can tell, because currently Saturn's rings are completely missing. (-:

The appearance of ringed planets is something of a work in progress at the moment.


ReplyQuote
Subzeroplainzero
(@subzeroplainzero)
Master Chief Registered
Joined: 14 years ago
Posts: 171
 

I believe that's a problem with certain ati radeon graphics cards. Pioneer in general doesn't like ati, and this makes me and my laptop cry :'( What card do you have by the way?


ReplyQuote
Potsmoke66
(@potsmoke66)
Captain Registered
Joined: 8 years ago
Posts: 1815
 

hi, vampi

missed you already, i liked the planet renderings you posted once for FFED3D very much (almost like my own, i run a mix now).

yes, it's a normal behave, but only on some GFX cards produce it i guess.

God what has happened i am writing right to left now 😕

i don't mind

shouldn't type so fast, i miss keys 😆

o.k back to normal

Brianetta, you know that you can fix this with the seeding? of course you do.

2011-05-13_182211.jpg

i didn't had them to in the new download and it was blue, this is :seed(13) for Saturn.

satisfied? both of you?

really if i wasn't to "stupid" to use github, i would have uploaded my custom systems,

but hacking FFED3D costs me less nerves the handling git, sorry.

and -0,0 i had the same problem on a NVIDIA, but it's solved like it seems

my changes for 00_sol.lua

Code:
local s = CustomSystem:new('Sol', { 'STAR_G' })
:seed(6)
:govtype('EARTHDEMOC')
:short_desc('The historical birthplace of humankind')
:long_desc([[Sol is a fine joint]])

local sol = CustomSBody:new('Sol', 'STAR_G')
:radius(f(1,1))
:mass(f(1,1))
:temp(5700)

local mercury = CustomSBody:new('Mercury', 'PLANET_TERRESTRIAL')
:seed(4)
:radius(f(38,100))
:mass(f(55,1000))
:temp(340)
:semi_major_axis(f(387,1000))
:eccentricity(f(205,1000))
:inclination(math.deg2rad(7.0))
:rotation_period(f(59,1))
:axial_tilt(math.fixed.deg2rad(f(1,100)))
:metallicity(f(9,10))
:volcanicity(f(1,2))
:atmos_density(f(0,1))
:atmos_oxidizing(f(0,1))
:ocean_cover(f(0,1))
:ice_cover(f(2,100))
:life(f(0,1))

local venus = CustomSBody:new('Venus', 'PLANET_TERRESTRIAL')
:radius(f(95,100))
:mass(f(815,1000))
:temp(735)
:semi_major_axis(f(723,1000))
:eccentricity(f(7,1000))
:inclination(math.deg2rad(3.39))
:rotation_period(f(243,1))
:axial_tilt(math.fixed.deg2rad(f(26,10)))
:metallicity(f(1,2))
:volcanicity(f(8,10))
:atmos_density(f(93,1))
:atmos_oxidizing(f(1,1))
:ocean_cover(f(0,1))
:ice_cover(f(0,1))
:life(f(0,1))

local earth = CustomSBody:new('Earth', 'PLANET_TERRESTRIAL')
:radius(f(1,1))
:mass(f(1,1))
:temp(288)
:semi_major_axis(f(1,1))
:eccentricity(f(167,10000))
:rotation_period(f(1,1))
:axial_tilt(math.fixed.deg2rad(f(2344,100)))
:height_map('earth.hmap')
:metallicity(f(1,2))
:volcanicity(f(1,10))
:atmos_density(f(1,1))
:atmos_oxidizing(f(8,10))
:ocean_cover(f(7,10))
:ice_cover(f(7,10))
:life(f(9,10))

local earth_starports = {

CustomSBody:new('Kaltbrunn', 'STARPORT_SURFACE') -- use your hometown here 😉 of course with the exact long. and lat.
:latitude(math.deg2rad(47.2136))
:longitude(math.deg2rad(350.9732)), -- if you go below 10° + or - it produces junk ?

CustomSBody:new('Shanghai', 'STARPORT_SURFACE')
:latitude(math.deg2rad(31))
:longitude(math.deg2rad(-121)),
CustomSBody:new('Mexico City', 'STARPORT_SURFACE')
:latitude(math.deg2rad(19))
:longitude(math.deg2rad(99)),
CustomSBody:new('London', 'STARPORT_SURFACE')
:latitude(math.deg2rad(51))
:longitude(0),
CustomSBody:new('Moscow', 'STARPORT_SURFACE')
:latitude(math.deg2rad(55))
:longitude(math.deg2rad(-37.5)),
CustomSBody:new('Brasilia', 'STARPORT_SURFACE')
:latitude(math.deg2rad(-15.5))
:longitude(math.deg2rad(48)),
CustomSBody:new('Los Angeles', 'STARPORT_SURFACE')
:latitude(math.deg2rad(34))
:longitude(math.deg2rad(118)),
CustomSBody:new('Gates Spaceport', 'STARPORT_ORBITAL')
:semi_major_axis(f(100,100000))
:rotation_period(f(1,24*60*3)),
}

local moon = {
CustomSBody:new('Moon', 'PLANET_TERRESTRIAL')
:seed(52211) -- 191080
:radius(f(273,1000))
:mass(f(12,1000))
:temp(220)
:semi_major_axis(f(257,100000))
:eccentricity(f(549,10000))
:inclination(math.deg2rad(5.145))
:rotation_period(f(273,10))
:axial_tilt(math.fixed.deg2rad(f(668,100)))
:volcanicity(f(0,1)),
{
CustomSBody:new('Lunar City', 'STARPORT_SURFACE')
:latitude(math.deg2rad(19))
:longitude(math.deg2rad(99)),
},
}

local mars = CustomSBody:new('Mars', 'PLANET_TERRESTRIAL')
:seed(3)
:radius(f(533,1000))
:mass(f(107,1000))
:temp(278)
:semi_major_axis(f(152,100))
:eccentricity(f(933,10000))
:inclination(math.deg2rad(1.85))
:rotation_period(f(1027,1000))
:axial_tilt(math.fixed.deg2rad(f(2519,100)))
-- XXX composition copied from earth until there's a way to indicate terraformed
:metallicity(f(4,5))
:volcanicity(f(2,10))
:atmos_density(f(3,5))
:atmos_oxidizing(f(8,10))
:ocean_cover(f(38,100))
:ice_cover(f(678,1000))
:life(f(15,100))

local mars_starports = {
CustomSBody:new('Cydonia', 'STARPORT_SURFACE')
:latitude(math.deg2rad(-29))
:longitude(math.deg2rad(124)),
CustomSBody:new('Olympus Mons', 'STARPORT_SURFACE')
:latitude(math.deg2rad(30))
:longitude(math.deg2rad(-37)),
CustomSBody:new('Mars High', 'STARPORT_ORBITAL')
:semi_major_axis(f(5068,100000000))
:rotation_period(f(11,24)),
}

local mars_moons = {
CustomSBody:new('Phobos', 'PLANET_ASTEROID')
:radius(f(21,10000))
:mass(f(18,100000))
:temp(233)
:semi_major_axis(f(6268,100000000))
:eccentricity(f(151,10000))
:inclination(math.deg2rad(1.093))
:rotation_period(f(11,24))
:metallicity(f(4,5))
:volcanicity(f(3,4)),
{
CustomSBody:new('Phobos Base', 'STARPORT_SURFACE')
:latitude(math.deg2rad(5))
:longitude(math.deg2rad(-5)),
},
CustomSBody:new('Deimos', 'PLANET_ASTEROID')
:radius(f(12,10000))
:mass(f(25,1000000))
:temp(233)
:semi_major_axis(f(1568,10000000))
:eccentricity(f(2,10000))
:inclination(math.deg2rad(0.93))
:rotation_period(f(30,24))
:metallicity(f(2,5))
:volcanicity(f(0,1)),
{
CustomSBody:new('Tomm\'s Sanctuary', 'STARPORT_SURFACE'),
},
}

local jupiter = CustomSBody:new('Jupiter', 'PLANET_GAS_GIANT')
:seed(6)
:radius(f(11,1))
:mass(f(3178,10))
:temp(165)
:atmos_density(f(2,1))
:atmos_oxidizing(f(8,10))
:semi_major_axis(f(5204,1000))
:eccentricity(f(488,10000))
:inclination(math.deg2rad(1.305))
:rotation_period(f(4,10))
:axial_tilt(math.fixed.deg2rad(f(313,100)))

local jupiter_moons = {
CustomSBody:new('Io', 'PLANET_TERRESTRIAL')
:radius(f(286,1000))
:mass(f(15,1000))
:temp(130)
:semi_major_axis(f(282,100000))
:eccentricity(f(41,10000))
:inclination(math.deg2rad(2.21))
:rotation_period(f(177,100))
:metallicity(f(7,10))
:volcanicity(f(1,1))
:atmos_density(f(1,10))
:atmos_oxidizing(f(8,10))
:ocean_cover(f(0,1))
:ice_cover(f(1,1000))
:life(f(0,1)),
{
CustomSBody:new('Dante\'s Base', 'STARPORT_SURFACE')
:latitude(math.deg2rad(-0.5))
:longitude(math.deg2rad(26.2)),
},
CustomSBody:new('Europa', 'PLANET_TERRESTRIAL')
:seed(721931) --:seed(5)
:radius(f(245,1000))
:mass(f(8,1000))
:temp(102)
:semi_major_axis(f(441,100000))
:eccentricity(f(9,1000))
:rotation_period(f(355,100))
:ocean_cover(f(8,10))
:ice_cover(f(9,10))
:atmos_density(f(1,12))
:metallicity(f(4,5))
:volcanicity(f(0,1)),
{
CustomSBody:new('Clarke\'s Station', 'STARPORT_ORBITAL')
:semi_major_axis(f(12,500000))
:rotation_period(f(1,24*60*3)),
},
CustomSBody:new('Ganymede', 'PLANET_TERRESTRIAL')
:seed(2)
:radius(f(413,1000))
:mass(f(25,1000))
:temp(110)
:semi_major_axis(f(72,10000))
:eccentricity(f(13,10000))
:inclination(math.deg2rad(0.2))
:atmos_density(f(1,14))
:rotation_period(f(72,10)),
{
CustomSBody:new('Enki Catena', 'STARPORT_SURFACE')
:latitude(math.deg2rad(84))
:longitude(math.deg2rad(96)),
},
CustomSBody:new('Callisto', 'PLANET_TERRESTRIAL')
:seed(2117428)
:radius(f(378,1000))
:mass(f(18,1000))
:temp(134)
:semi_major_axis(f(126,10000))
:eccentricity(f(74,10000))
:inclination(math.deg2rad(0.192))
:rotation_period(f(167,10)),
CustomSBody:new('Discovery Base', 'STARPORT_ORBITAL')
:semi_major_axis(f(7,1000))
:rotation_period(f(11,1)),
}

local saturn = CustomSBody:new('Saturn', 'PLANET_GAS_GIANT')
:seed(13)
:radius(f(9,1))
:mass(f(95152,1000))
:temp(134)
:semi_major_axis(f(9582,1000))
:eccentricity(f(557,10000))
:inclination(math.deg2rad(2.485))
:rotation_period(f(4,10))
:axial_tilt(math.fixed.deg2rad(f(2673,100)))

local saturn_moons = {
CustomSBody:new('Titan', 'PLANET_TERRESTRIAL')
:seed(3)
:radius(f(400,1000))
:mass(f(225,10000))
:temp(94)
:semi_major_axis(f(82,10000))
:eccentricity(f(288,10000))
:inclination(math.deg2rad(0.34854))
:atmos_density(f(10,1))
:rotation_period(f(15945,1000)),
{
CustomSBody:new('Oasis City', 'STARPORT_SURFACE')
:latitude(math.deg2rad(18.4))
:longitude(math.deg2rad(196)),
CustomSBody:new('Port Makenzie', 'STARPORT_SURFACE')
:latitude(math.deg2rad(1))
:longitude(math.deg2rad(14)),
CustomSBody:new('Daniel\'s Haven', 'STARPORT_ORBITAL')
:semi_major_axis(f(12,500000))
:eccentricity(f(50,1000))
:rotation_period(f(11,9)),
},
CustomSBody:new('Rhea', 'PLANET_TERRESTRIAL')
:radius(f(12,100))
:mass(f(39,10000))
:temp(81)
:semi_major_axis(f(441,100000))
:eccentricity(f(126,100000))
:inclination(math.deg2rad(0.345))
:rotation_period(f(452,100))
:atmos_density(f(1,10)),
CustomSBody:new('Iapetus', 'PLANET_TERRESTRIAL')
:radius(f(1155,10000))
:mass(f(3,10000))
:temp(115)
:semi_major_axis(f(238,10000))
:eccentricity(f(29,1000))
:inclination(math.deg2rad(15.47))
:rotation_period(f(7932,100)),
CustomSBody:new('Dione', 'PLANET_TERRESTRIAL')
:radius(f(881,10000))
:mass(f(328,1000000))
:temp(87)
:semi_major_axis(f(252,100000))
:eccentricity(f(22,10000))
:inclination(math.deg2rad(0.019))
:rotation_period(f(2737,1000)),
}

local uranus = CustomSBody:new('Uranus', 'PLANET_GAS_GIANT')
:seed(1) -- 7
:radius(f(4,1))
:mass(f(145,10))
:temp(76)
:semi_major_axis(f(19229,1000))
:eccentricity(f(444,10000))
:inclination(math.deg2rad(0.772))
:rotation_period(f(7,10))
:axial_tilt(math.fixed.deg2rad(f(9777,100)))

local uranus_moons = {
CustomSBody:new('Titania', 'PLANET_TERRESTRIAL')
:radius(f(1235,10000))
:mass(f(5908,10000000))
:temp(70)
:semi_major_axis(f(2913,1000000))
:eccentricity(f(11,10000))
:inclination(math.deg2rad(0.34))
:rotation_period(f(87,10))
:atmos_density(f(1,10)),
CustomSBody:new('Oberon', 'PLANET_TERRESTRIAL')
:radius(f(1194,10000))
:mass(f(5046,10000000))
:temp(75)
:semi_major_axis(f(39,10000))
:eccentricity(f(14,10000))
:inclination(math.deg2rad(0.058))
:rotation_period(f(135,10)),
CustomSBody:new('Umbriel', 'PLANET_TERRESTRIAL')
:radius(f(92,1000))
:mass(f(2,10000))
:temp(75)
:semi_major_axis(f(178,100000))
:eccentricity(f(39,10000))
:inclination(math.deg2rad(0.128))
:rotation_period(f(4144,1000)),
CustomSBody:new('Ariel', 'PLANET_TERRESTRIAL')
:radius(f(908,10000))
:mass(f(226,1000000))
:temp(60)
:semi_major_axis(f(1277,1000000))
:eccentricity(f(12,10000))
:inclination(math.deg2rad(0.26))
:rotation_period(f(252,100)),
}

local neptune = CustomSBody:new('Neptune', 'PLANET_GAS_GIANT')
:seed(5) -- -1 with ring
:radius(f(38,10))
:mass(f(17147,1000))
:temp(72)
:semi_major_axis(f(30104,1000))
:eccentricity(f(112,10000))
:inclination(math.deg2rad(1.768))
:rotation_period(f(75,100))
:axial_tilt(math.fixed.deg2rad(f(2832,100)))

local neptune_moons = {
CustomSBody:new('Triton', 'PLANET_TERRESTRIAL')
:radius(f(2122,10000))
:mass(f(359,100000))
:temp(38)
:semi_major_axis(f(2371,100000))
:eccentricity(f(16,1000000))
:volcanicity(f(3,10)) -- Cryovolcanos!
:inclination(math.deg2rad(156.885))
:rotation_period(f(141,24))
:atmos_density(f(1,10)),
{
CustomSBody:new('Poseidon Station', 'STARPORT_ORBITAL')
:semi_major_axis(f(12,500000))
:rotation_period(f(11,7)),
},
CustomSBody:new('Nereid', 'PLANET_ASTEROID')
:mass(f(519,1000))
:temp(50)
:semi_major_axis(f(3685,100000))
:eccentricity(f(75,100))
:inclination(math.deg2rad(32.55))
:rotation_period(f(115,240)),
CustomSBody:new('Proteus', 'PLANET_ASTEROID')
:radius(f(310,10000))
:mass(f(710,1000))
:temp(51)
:semi_major_axis(f(786,1000000))
:eccentricity(f(53,100000))
:inclination(math.deg2rad(0.524))
:rotation_period(f(1122,1000)),
}

local pluto = CustomSBody:new('Pluto', 'PLANET_TERRESTRIAL')
:radius(f(18,100))
:mass(f(21,10000))
:temp(44)
:semi_major_axis(f(394,10))
:eccentricity(f(249,1000))
:inclination(math.deg2rad(11.88))
:rotation_period(f(153,24))
:axial_tilt(math.fixed.deg2rad(f(296,10)))

local pluto_starports = {
CustomSBody:new('Pluto Research Base', 'STARPORT_SURFACE')
:latitude(math.deg2rad(84))
:longitude(math.deg2rad(96)),
}

s:bodies(sol, {
mercury,
venus,
earth,
earth_starports,
moon,
mars,
mars_starports,
mars_moons,
jupiter,
jupiter_moons,
saturn,
saturn_moons,
uranus,
uranus_moons,
neptune,
neptune_moons,
pluto,
pluto_starports,
})

s:add_to_sector(0,0,v(0.5,0.5,0))

of course you don't have to use "Kaltbrunn" take the data of your hometown i.e.

too sad 😥 i didn't start no more in kaltbrunn when i put it on top of the list, now i start in moskau.

further i don't like the new terrain much, i can see the alps (half ways) but italy and the mediteran sea is nearly gone?


ReplyQuote
s2odan
(@s2odan)
Captain Registered
Joined: 16 years ago
Posts: 1212
 
Quote:
...i don't like the new terrain much, i can see the alps (half ways) but italy and the mediteran sea is nearly gone?

What do you mean? There is no new terrain for Earth its been the same for a while now.

EDIT// forget that I see what you mean... hmm thats very odd indeed and it shouldn't look like that. Ok we'll just pretend that Earth is in the middle of an ice-age for alpha 10 😉

Edit2//

Patched it up on github....


ReplyQuote
Marcel
(@marcel)
Captain Registered
Joined: 8 years ago
Posts: 1188
 

Potsmoke, thanks for the Kaltbrunn example. I think if that everyone here added their home town to that file, the Earth would appear to be quite well populated (if Pioneer could handle that many spaceports). 🙂


ReplyQuote
Potsmoke66
(@potsmoke66)
Captain Registered
Joined: 8 years ago
Posts: 1815
 

of course a few cities are enough, i just thought it's nice to start in it's hometown, for everybody 😉

unfortunately, like i said before i start now in moskau, i don't know why in alpha9 it worked perfectly and i started in the topmost city of the list, no matter which name.

which is only logical since scripts get processed like a batch, line after line, usually at least.

but i will see if i find a reason for that.


ReplyQuote
robn
 robn
(@robn)
Captain Registered
Joined: 14 years ago
Posts: 1035
 
potsmoke66 wrote:
unfortunately, like i said before i start now in moskau, i don't know why in alpha9 it worked perfectly and i started in the topmost city of the list, no matter which name.

The game startup code got a lot of cleanups for Alpha 10. Part of that is the menu screen now selects a start point by starport number in the system. For the Earth/Sol start point that number is currently 4, which corresponds to Brasilia in the stock Sol system script. That was chosen because its the only port on Earth that at the start time has daylight and interesting terrain.

The start points by their nature are heavily dependent on the contents of the system scripts.


ReplyQuote
Potsmoke66
(@potsmoke66)
Captain Registered
Joined: 8 years ago
Posts: 1815
 

aha,

o,k that will help... 😀

it's just fun, try "Kaltbrunn" a nice place in the swiss mountains... no, really first time i started their in alpha9 i was stunned by the realism, i could nearly tell the surrounding mountains by their name. the only thing missing was "Lake-Zürich", but i guess we must do without lakes for a while, i understand it's difficult to make such, far easier are to tell just 0m is ocean, but lakes... hm, i guess hard to solve if at all. and the "crater deep" lakes of earlier releases wasn't really good to look at imho.

it's not hard i can live without them 😉

it was enough already to see "man here is this and that mountain, there should be this lake, fantastic..." i mean i could almost spit on the head of my friends at lakeside zürich*.

and if that isn't fantastic then i don't know what else should be then.

Brasilia is a bit to dangerous for a "Gringo" like me 😆

*sidekick, one is a Australian citizen, besides of Jamaicans, many Africans, one Hawaiian, few Swiss, neither i am Swiss i am German. Zürich is a melting pot like not many cities in the world, it's given by nature, there is no space for Ghettos, so you HAVE to share the space. you can't live their in a part of the city where only folks of your own country or ethnic live (except for the Jews they kept them self isolated, no one has forced them to do so, any traffic after 10pm is forbidden in their quarter, strange no?).

btw, "Gringo" seems to come from "Greek", and has meant hard to understand, just like "Welsh" "Vallis" "Wales", a Gael even hard to understand for Romans and Normans.


ReplyQuote
Marcel
(@marcel)
Captain Registered
Joined: 8 years ago
Posts: 1188
 

Thought I'd mention that modifying 00_sol.lua and starting a saved game at Brasilia caused a major lockup. I had to press the 'reset' button to get back control of my computer. Starting a new game after modifying 00_sol.lua works fine.


ReplyQuote
Potsmoke66
(@potsmoke66)
Captain Registered
Joined: 8 years ago
Posts: 1815
 

😳 sorry i thought this is offense,

any change to that will need "new" games, but i didn't knew some get "lock up's", dammit....

somehow it is offense no?

when you change a system, a savestate and any started mission to the changed system and so on won't work.

it's almost like you run a new alpha, not quite the same, but almost.

such happens even when you change simply the seed for sol when you saved a game in orbit to saturn.

it didn't only changes the appearance. not that this would change physics of the bodies, only their actual position maybe, which will confuse the game.

personally i had a lot such crashes (but no lock up), due to the many alterations i did once.

but like you said it's only when you load a "old" game.

to me it's something common, change this or that, of course all savegames are rubbish after.

but since it's still under heavy development this is a part of the "game", i mean it's offense.

but because barnards star will crash it to, i would patch it and really start to play from then on new and use no old savegames

http://spacesimcentral.com/forum/viewtopic.php?f=35&t=2081&start=10#p19366

it's really my fault 😳

i should have "warned" you, even when i think it's harmless.

anyway i will upload a MSVC build, maybe tomorrow under good circumstances already today, barnards star will be patched (to the dislike of? it's a randomly seeded system now again*), if you like i can put in your hometown, why not? (would need coordinates and name then), even when i like the place in the swiss mountains.

if i can manage it it will contain some fixes to my ships (mainly a stripping of the lo-res textures), a few more ships and a different building set.

but i also have to do some investigations to see if everything is like it should be.

* i tried to get it with a small asteroid and the stations, but i didn't managed it to populate it, but i guess no population = no economy = no missions even when you have space stations as target, they are somewhat "empty" then, logical no? i have made once myself experiments in this direction.

sometimes in certain locations you never get a system populated without certain conditions, i have made a lot experiments with the custom systems, mostly far some close.

location (both sector and intersector), type of star and seeding are interwoven. it can happen also like in good old FE2 that you have a randomly generated system showing a spaceport but has no economy and population or vice versa a population and economy and no ports, i guess i have seen both possibilities, rare but can happen.

personally i had a lot of fun with playing around with the seeding 😉

but it's no guarantee that all machines will give the same results, especially different OS's.

and i was already surprised to get randomly the same results for barnards star as i had in alpha9 (or was it 8?), i had expected anything...

for sure i will hide "mechanica" somewhere....


ReplyQuote