Best screenshots

General discussion for players of Oolite.

Moderators: winston, another_commander

User avatar
CaptKev
---- E L I T E ----
---- E L I T E ----
Posts: 519
Joined: Fri Jan 26, 2007 3:21 pm
Location: Shropshire, UK

Post by CaptKev »

Could somebody please point me to the best information on planet coordinates (valid ranges, sizes etc.)?

Can you have a moon orbiting an OXP planet?

Image
Download Fighter HUD, Stingray and System Redux from the EliteWiki
User avatar
Arexack_Heretic
Dangerous Subversive Element
Dangerous Subversive Element
Posts: 1876
Joined: Tue Jun 07, 2005 7:32 pm
Location: [%H] = Earth surface, Lattitude 52°10'58.19"N, longtitude 4°30'0.25"E.
Contact:

Post by Arexack_Heretic »

not orbiting as such. no moon in oolite moves around much.

you could however script a series of plotted relative locations, that are chosen randomly, giving the player a sense of the planets moving around and some being (gravity) linked.

IMO however, not many will notice much.
As there is no overview map of a system and unless you have to navigate around the system by eye, there is not much point in remembering the relative position of planets.
Riding the Rocket!
User avatar
CaptKev
---- E L I T E ----
---- E L I T E ----
Posts: 519
Joined: Fri Jan 26, 2007 3:21 pm
Location: Shropshire, UK

Post by CaptKev »

I've thought of a way to get nebula into Oolite without wrapping it around a planet, but I just wanted to run it by everyone to see if there's a flaw in my logic.

If I created a large flat mesh in 3DS Max, then textured it on one side with the nebula image and positioned it behind the sun and any other planets/moons with no rotation, would this work?
Download Fighter HUD, Stingray and System Redux from the EliteWiki
User avatar
LittleBear
---- E L I T E ----
---- E L I T E ----
Posts: 2869
Joined: Tue Apr 04, 2006 7:02 pm
Location: On a survey mission for GalCop. Ship: Cobra Corvette: Hidden Dragon Rated: Deadly.

Post by LittleBear »

Very Cool planets! 8)

I added a few to some systems in Assassins.oxp, so if you have a poke around the planetinfo, that may be helpful.

Bit of info I worked out by trial and error was:-

Radius : The normal Oolite planet has a radius of 5000. So you can scale up or down from that. I made Gas Giants 50 to 100 times the size of the the main planet (but put them really far out).

Position : Don't know what the units are but they don't relate to wpm or other systems. They're X Y Z. X is the left / right position. 0 is dead center, left have - co-ordinates, right +. Y is the up down position. Z is distance (I think from w/s point). You can add a nebule effect with the Sky_blue values (see the Assassins planet info). Not at all sure what these numbers represent, but punch some in and see what happens, often gives a very pretty effect with high vaules.

I just played about with the numbers until I thought "Yep, looks nice there."

Textures : Oolite seems to "swirl" the texture about so the planet dosn't look like its PNG that much. The swirling though means an image of randam colours actually looks rather nice in game! The planets on my Avanta are all in game shots of some of the Assassins planets. But if you have a look at texture PNGs, they don't look much like the textures. :wink:

EG : Simple texture and sky_blur high:-

Image

Image

Image
Last edited by LittleBear on Wed Mar 07, 2007 8:02 pm, edited 2 times in total.
OXPS : The Assassins Guild, Asteroid Storm, The Bank of the Black Monks, Random Hits, The Galactic Almanac, Renegade Pirates can be downloaded from the Elite Wiki here.
User avatar
Gareth3377
Deadly
Deadly
Posts: 136
Joined: Sat Feb 17, 2007 11:46 pm
Location: Worcester

Post by Gareth3377 »

Bloody hell, that looks awesome (am trying my best to avoid any assassin spoilers). I think having systems with moons and other planets is an ace idea.

It's a shame there wasn't a 'gases' commodity in the trading items otherwise you could have gone scooping the gas giants as a different (if not tiresome) career.
User avatar
Arexack_Heretic
Dangerous Subversive Element
Dangerous Subversive Element
Posts: 1876
Joined: Tue Jun 07, 2005 7:32 pm
Location: [%H] = Earth surface, Lattitude 52°10'58.19"N, longtitude 4°30'0.25"E.
Contact:

Post by Arexack_Heretic »

Those be the prettiest nebulea meself ever laid me eye upon!
Riding the Rocket!
User avatar
CaptKev
---- E L I T E ----
---- E L I T E ----
Posts: 519
Joined: Fri Jan 26, 2007 3:21 pm
Location: Shropshire, UK

Post by CaptKev »

@LB, you've managed to create some excellent effects there, how did you achieve the nebula ray effect?

Top image - what I've managed to achieve so far using the Oolite standard nebula effect (better than the standard little fluffy clouds, but only just).

Bottom image - what I really want to see!

Image
Download Fighter HUD, Stingray and System Redux from the EliteWiki
User avatar
Arexack_Heretic
Dangerous Subversive Element
Dangerous Subversive Element
Posts: 1876
Joined: Tue Jun 07, 2005 7:32 pm
Location: [%H] = Earth surface, Lattitude 52°10'58.19"N, longtitude 4°30'0.25"E.
Contact:

Post by Arexack_Heretic »

Oo!

'tis fulla stars... 8)
Riding the Rocket!
User avatar
LittleBear
---- E L I T E ----
---- E L I T E ----
Posts: 2869
Joined: Tue Apr 04, 2006 7:02 pm
Location: On a survey mission for GalCop. Ship: Cobra Corvette: Hidden Dragon Rated: Deadly.

Post by LittleBear »

Wow! That'd be cool. On how I did it, its really the native code thats producing the effects! Heres how the system looks in game:-

Image

Now heres the planetinfo entry for this system.

Code: Select all


"gas_giantC" = {
        position = "7000000 8000000 25650000";
        radius = 240000;
        orientation = "0.0 1.0 0.0 1.0";
        texture = "hitsplanet2.PNG";
        seed = "1 2 3 4 5 6";
        "polar_color_factor" = 2.5;
        "rotational_velocity" = 0.04;
    };

(Defines where the giant will be)

"6 107" = { 
        "sky_blur_alpha" = "0.85";
        "sky_blur_cluster_chance" = "0.60";
        "sky_blur_scale" = "15";
        
	"script_actions" = (
                 debugOn, "addMoon: gas_giantC",
		         debugOff
			);
(sets the system up. The first number is galaxy, second is Planet Number)

Its just those three lines of code starting Sky_ that are making the nebula. The same vaules in different systems can produce different effects though! I think the pointyness comes from the scale and the higher the alpha and cluster values, the denser the nebula.

Obviously this gives the feel of flying through a nebula rather than seeing one at a distance, but looks nice and is easy to do. Just play about with some different vaules and you get all sorts of colours and shapes comming up.
OXPS : The Assassins Guild, Asteroid Storm, The Bank of the Black Monks, Random Hits, The Galactic Almanac, Renegade Pirates can be downloaded from the Elite Wiki here.
User avatar
CaptKev
---- E L I T E ----
---- E L I T E ----
Posts: 519
Joined: Fri Jan 26, 2007 3:21 pm
Location: Shropshire, UK

Post by CaptKev »

@LB, Thanks for the info, I'll have a play around with the values a bit more. :D

This is what I currently have for all systems:

Code: Select all

	"universal" = {
            "sky_blur_alpha" = "0.15";
            "sky_blur_cluster_chance" = "0.1";
            "ambient_level" = "1.5";
            "sky_blur_scale" = "128";
	};
Download Fighter HUD, Stingray and System Redux from the EliteWiki
User avatar
JensAyton
Grand Admiral Emeritus
Grand Admiral Emeritus
Posts: 6657
Joined: Sat Apr 02, 2005 2:43 pm
Location: Sweden
Contact:

Post by JensAyton »

CaptKev wrote:
Bottom image - what I really want to see!
I’m not a fan of that sort of look. It’s been done, repeatedly, and if anything it’s even less realistic than Oolite’s current look.
User avatar
ramon
---- E L I T E ----
---- E L I T E ----
Posts: 346
Joined: Thu Jun 01, 2006 2:38 pm
Location: Tavistock
Contact:

Post by ramon »

CaptKev wrote:
Top image - what I've managed to achieve so far using the Oolite standard nebula effect (better than the standard little fluffy clouds, but only just).
Yeah, that's really nice, how do you do it? I want my Oolite to look like that. I think it's a nice subtle effect. I'm not really a fan of the Littlebear ones......(sorry Littlebear you can forgive me though :) )
User avatar
LittleBear
---- E L I T E ----
---- E L I T E ----
Posts: 2869
Joined: Tue Apr 04, 2006 7:02 pm
Location: On a survey mission for GalCop. Ship: Cobra Corvette: Hidden Dragon Rated: Deadly.

Post by LittleBear »

:) Admit it has a rather "acid trip" look!

This is as I've used high vaules. If you wanted a more subtle look, then just do a universal = in planetinfo and keep the values low.
OXPS : The Assassins Guild, Asteroid Storm, The Bank of the Black Monks, Random Hits, The Galactic Almanac, Renegade Pirates can be downloaded from the Elite Wiki here.
User avatar
CaptKev
---- E L I T E ----
---- E L I T E ----
Posts: 519
Joined: Fri Jan 26, 2007 3:21 pm
Location: Shropshire, UK

Post by CaptKev »

@Ahruman, if every system looked like that it would be too much, but one or two would be nice.

@ramon, the code below is what I use for the nebula effect:

Code: Select all

   "universal" = {
            "sky_blur_alpha" = "0.15";
            "sky_blur_cluster_chance" = "0.1";
            "ambient_level" = "1.5";
            "sky_blur_scale" = "128";
   };
Download Fighter HUD, Stingray and System Redux from the EliteWiki
Cmdr. Eisenesel
Poor
Poor
Posts: 5
Joined: Thu Feb 01, 2007 6:44 pm
Location: Milwaukee WI

Post by Cmdr. Eisenesel »

This one is my favorite screenshot I've managed to get so far....

Image

And a not quite as good pic featuring current HUD...

Image
Post Reply