That would be meCommander McLane wrote:I think some people even attempted to fly to the gas giants from Assassins which are yet much further away.

Moderators: winston, another_commander
That would be meCommander McLane wrote:I think some people even attempted to fly to the gas giants from Assassins which are yet much further away.
Would it be possible, as a solution for this, to make the sun model itself bigger and brighter?Commander McLane wrote:... for me the sun, its visible position relative to the main planet, and the light coming from it, are an important part of the corridor's surroundings.
option 2. Then i simply move the the outer most planet oppersite of the sun about 6.000.000 million meters same desired effect. that would also make people not wanting to go further on the oppersit side of the sun.Commander McLane wrote:Moving the sun, however, has its own problems.
I personally can easily imagine to install your OXP (probably I want to have another OXP which will depend on yours). I don't have anything against the addition of some jump-gates next to the station, and the possibility to go surfing out-system. However I would like to have these as an addition to the Ooniverse I know, not as a radical change of it. So, if I choose not to visit one of the outer planets, the game should continue to work normally. In other words: I am completely fine with knowing that there is a bigger world outside the corridor. But I wouldn't like to have the corridor itself and its surroundings to be changed. And for me the sun, its visible position relative to the main planet, and the light coming from it, are an important part of the corridor's surroundings.
Once spawned, we can´t alter the radius, here is a snippet from the Oolite code...Lestradae wrote:Would it be possible, as a solution for this, to make the sun model itself bigger and brighter?Commander McLane wrote:... for me the sun, its visible position relative to the main planet, and the light coming from it, are an important part of the corridor's surroundings.
As in, if the suns are shoved away seven times further, make the sun diameter seven times bigger and the brightness seven times brighter?
One can create custom planets, why not custom suns ...
Code: Select all
static JSPropertySpec sPlanetProperties[] =
{
// JS name ID flags
{ "isMainPlanet", kPlanet_isMainPlanet, JSPROP_PERMANENT | JSPROP_ENUMERATE | JSPROP_READONLY },
{ "hasAtmosphere", kPlanet_hasAtmosphere, JSPROP_PERMANENT | JSPROP_ENUMERATE | JSPROP_READONLY },
{ "radius", kPlanet_radius, JSPROP_PERMANENT | JSPROP_ENUMERATE | JSPROP_READONLY },
{ 0 }
};
i just thought if this...Ahruman wrote:This is to be expected. General rotation is handled within OpenGL, at mandated double precision. Effects are done in single precision; in particular, single-precision subtraction of large numbers leads to large errors.Frame wrote:it is just funny, that it is only the effects that suffers.. the models are rotating just fine...
Picture looks already very impressive. With texture and probably a lot of flashers it certainly will look great.Frame wrote:here is a pic.. its large so its a link... of a tech lvl 9+ jumpgate.. without textures...
http://i304.photobucket.com/albums/nn18 ... point3.jpg
Red flashers one side and green the other!Eric Walch wrote:Picture looks already very impressive. With texture and probably a lot of flashers it certainly will look great.Frame wrote:here is a pic.. its large so its a link... of a tech lvl 9+ jumpgate.. without textures...
http://i304.photobucket.com/albums/nn18 ... point3.jpgAnd I wondered how you would make the gates working, but when seeing the picture of the gate I immediately noticed the resemblance with the ringpods.
With that code you can even determine from which side you are flying through. Great!
And when entering the red side you see a gigantic firework.... untill you realise you are in the centre of the sun..Captain Hesperus wrote:Red flashers one side and green the other!
Rendering is always camera-centric, but simulation is not (in Oolite or in much else).Frame wrote:So i presume Oolite is not moving the whole universe around you, but is using some sort of camera, and moves you around in the universe. for people not having looked into OpenGL this is perfectly logicall... but that is not the way "you start with" to learn to render anything in OpenGL, you learn to move the whole world around the users/players viewpoint...
while the moving the universe around you, would have eliminated the large number precision problem, which is why i figure this is the first way you learn to render anything in OpenGL... And that double precision is mandated...
rendering is ofcourse "camera-centric", the viewport/point is essential a camera on its own, however, in order for us the get the move/rotate troubles at great distances because of the precision, therefore the camera must move through the OpenGL coordinate system, instead of moving/rotating all other objects through the OpenGL coordinate system relative to the users/players viewpoint, which would mean that the users would allways be at point 0,0,0 and the precision trouble would be eliminated... but i understand why Giles did it the other way.. i presume it was easier, and less costly in terms of CPU/GPU time...Ahruman wrote:Rendering is always camera-centric, but simulation is not (in Oolite or in much else).Frame wrote:So i presume Oolite is not moving the whole universe around you, but is using some sort of camera, and moves you around in the universe. for people not having looked into OpenGL this is perfectly logicall... but that is not the way "you start with" to learn to render anything in OpenGL, you learn to move the whole world around the users/players viewpoint...
while the moving the universe around you, would have eliminated the large number precision problem, which is why i figure this is the first way you learn to render anything in OpenGL... And that double precision is mandated...
Why does Babylon Five immediately spring to mind?Frame wrote:did a mockup in 3dmax
jumpgate with flashers... stilll no textures.. i´m trying to decide wheter or not the jumpgate should be lit up by the flashers
the animation would be flash the green flashers, then the red flashers... and so on..
here is the mock up...
http://i304.photobucket.com/albums/nn18 ... eflash.jpg
Captain Hesperus wrote:Why does Babylon Five immediately spring to mind?Frame wrote:did a mockup in 3dmax
jumpgate with flashers... stilll no textures.. i´m trying to decide wheter or not the jumpgate should be lit up by the flashers
the animation would be flash the green flashers, then the red flashers... and so on..
here is the mock up...
http://i304.photobucket.com/albums/nn18 ... eflash.jpg
Captain Hesperus