Join us at the Oolite Anniversary Party -- London, 7th July 2024, 1pm
More details in this thread.

Griff's normalmapped ship remakes

Discussion and information relevant to creating special missions, new ships, skins etc.

Moderators: winston, another_commander

User avatar
Griff
Oolite 2 Art Director
Oolite 2 Art Director
Posts: 2479
Joined: Fri Jul 14, 2006 12:29 pm
Location: Probably hugging his Air Fryer

Post by Griff »

The artwork for the player ship decals and the NPC ship decals have been seperated out now, the player gets to have a full colour decal on their ship whilst the NPCs get a much simpler randomly re-coloured greyscale decal.
In the dizzy-all-in-1 oxp the player decal artwork is called "griff_player_decal.png", just replace this png with your own artwork to change the decal, the NPC decals come from "griff_decals_set1.png" & "griff_decals_set1_flipped_V.png" - one of which is just a vertically flipped version of the other, due to some UV layout bungles i did when making the ships some of the decals don't work properly unless they've been flipped, hopefully with some further tweaking of the rotation & placement options in Ahrumas decal doce in the shaders i can do away with the need for the flipped texture eventually.

in the Standalone ship downloads, the decal artwork has been split into it's own OXP ("griff_normalmapped_ship_decals.oxp") which needs to be installed along with the ship(s) you've downloaded, this is just to save repeating the same decal png's in all the ship oxps, the oxp is really nothing more than a "Textures" folder with the decal pns from the dizzy all-in-1 in it.
User avatar
Griff
Oolite 2 Art Director
Oolite 2 Art Director
Posts: 2479
Joined: Fri Jul 14, 2006 12:29 pm
Location: Probably hugging his Air Fryer

Post by Griff »

uploaded alloys & wreckage (not yet included in the dizzy all-in-1 bundle oxp)
The objects use Ahrumans cooling metal shader effect, and a bit of clipmapping on some fragments for crinkly edges

ImageImage
User avatar
Cody
Sharp Shooter Spam Assassin
Sharp Shooter Spam Assassin
Posts: 16073
Joined: Sat Jul 04, 2009 9:31 pm
Location: The Lizard's Claw
Contact:

Post by Cody »

Cool... or should that be hot!

And they look great in-game.
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
User avatar
Killer Wolf
---- E L I T E ----
---- E L I T E ----
Posts: 2268
Joined: Tue Jan 02, 2007 12:38 pm

Post by Killer Wolf »

damn, what, clipmapping? what?
how does that work on models and what's the limitations?
User avatar
Griff
Oolite 2 Art Director
Oolite 2 Art Director
Posts: 2479
Joined: Fri Jul 14, 2006 12:29 pm
Location: Probably hugging his Air Fryer

Post by Griff »

It doesn't actually work that great to be honest KW, so i've limited it to just a few pieces of junk, wouldn't be a great way to cut out windows or anything in a ship model.

it's fairly simple to set up, there's a clip map texture supplied to the shader, this is just a very simple image, looks a bit like this:
Image
for this example pic above i've left the colour texture poking through in the background and the UV map layout guide lines visible so it's easier to see what's going on in the image, this is the bit of the texture for the crinky junk piece in the pic in the post above, the actual clip map is just black and white and is stored in the colourmap alpha channel, the white bits get cut out of the polygon and not rendered, this is done in the fragment shader with this test:

Code: Select all

   if (colorMap.a > 0.9)  discard; 
so as the shader runs through all the polygon fragments getting them ready to go onto the players screen, it checks the alpha level of the relevant pixel in the clipmap texture, if it's higher than 0.9 (which pure white is as it's value is 1.0) it immediately discards that polygon fragment and starts processing the next one, as a result the polygon fragment never appears on screen and there's a 'hole' in the polygon instead - massive drawbacks with this though, the polygons have to be 'double sided' so players don't accidentally see through into the non existant interior of the model, and also wings3d really hates double sided polygons, something odd happens to their normals which means the lighting seems to mess up on them sometimes, plus they are wafer thin, literally having no thickness at all so if you see them 'edge on' they disappear from view, a bit like obi wans lightsaber in the original starwars film when he's dueling darth vader, why on earth was that not fixed when they redid the special effects a few years ago?
User avatar
Killer Wolf
---- E L I T E ----
---- E L I T E ----
Posts: 2268
Joined: Tue Jan 02, 2007 12:38 pm

Post by Killer Wolf »

cheers for that Griff, i was wondering how it would affect being able to see into part of the model etc. Never tried double-sided stuff before either, sounds a bit more trouble than it's worth for where the game is at the mo (that's not a criticism of either).

"why on earth was that not fixed when they redid the special effects a few years ago?"
so they could fix it in anotehr edition and screw more cash out the fans, presumably :-|
User avatar
JazHaz
---- E L I T E ----
---- E L I T E ----
Posts: 2991
Joined: Tue Sep 22, 2009 11:07 am
Location: Enfield, Middlesex
Contact:

Post by JazHaz »

Looks like pieces of burnt toast! :twisted:
User avatar
Frame
---- E L I T E ----
---- E L I T E ----
Posts: 1477
Joined: Fri Mar 30, 2007 8:32 am
Location: Witchspace

Post by Frame »

Griff wrote:
It doesn't actually work that great to be honest KW, so i've limited it to just a few pieces of junk, wouldn't be a great way to cut out windows or anything in a ship model.

it's fairly simple to set up, there's a clip map texture supplied to the shader, this is just a very simple image, looks a bit like this:
Image
for this example pic above i've left the colour texture poking through in the background and the UV map layout guide lines visible so it's easier to see what's going on in the image, this is the bit of the texture for the crinky junk piece in the pic in the post above, the actual clip map is just black and white and is stored in the colourmap alpha channel, the white bits get cut out of the polygon and not rendered, this is done in the fragment shader with this test:

Code: Select all

   if (colorMap.a > 0.9)  discard; 
so as the shader runs through all the polygon fragments getting them ready to go onto the players screen, it checks the alpha level of the relevant pixel in the clipmap texture, if it's higher than 0.9 (which pure white is as it's value is 1.0) it immediately discards that polygon fragment and starts processing the next one, as a result the polygon fragment never appears on screen and there's a 'hole' in the polygon instead - massive drawbacks with this though, the polygons have to be 'double sided' so players don't accidentally see through into the non existant interior of the model, and also wings3d really hates double sided polygons, something odd happens to their normals which means the lighting seems to mess up on them sometimes, plus they are wafer thin, literally having no thickness at all so if you see them 'edge on' they disappear from view, a bit like obi wans lightsaber in the original starwars film when he's dueling darth vader, why on earth was that not fixed when they redid the special effects a few years ago?
You could use the billboard technique so the alloy could be seen at all times...

http://www.vterrain.org/Plants/Modelling/

since the details in plants and the details in these alloys with transparent holes shares the similarities in regard to the edge on viewing..

However, it would require a new opaque map/clip map, since it will look sort of stupid if some of the edges where aligned..

You could even add more and more to make a little ball of a mess of melted alloys, and use a script to random orientate them, so that each alloy in theory would look different. You could even expand on that to award more than 1 ton of alloys or even some gems. Allow my to suggest it to spawn short life time bright sparks(modeld) as molten metal falls off and vanishes...

Another approach would be to make some of it look like a steel girder that naturally obscures the edges from two directions so you would need to be very edge on to not see it, not so fancy solution but it works.

Cheers Frame...
Bounty Scanner
Number 935
User avatar
Pangloss
---- E L I T E ----
---- E L I T E ----
Posts: 303
Joined: Wed Dec 13, 2006 5:57 pm
Location: Scranton, PA (via Stevenage, Herts)

Post by Pangloss »

Griff wrote:
uploaded alloys & wreckage (not yet included in the dizzy all-in-1 bundle oxp)
The objects use Ahrumans cooling metal shader effect, and a bit of clipmapping on some fragments for crinkly edges

ImageImage
OK, so I downloaded it. Hypothetically speaking, what does a pilot have to ram to be able to see these fragments in play? Whenever I shoot a ship, it just explodes (stupid powerful military laser!).
"All is for the best in this best of all possible worlds..."
Dr.Pangloss, Voltaire's 'Candide'.

Image
User avatar
Pangloss
---- E L I T E ----
---- E L I T E ----
Posts: 303
Joined: Wed Dec 13, 2006 5:57 pm
Location: Scranton, PA (via Stevenage, Herts)

Post by Pangloss »

Killer Wolf wrote:
"why on earth was that not fixed when they redid the special effects a few years ago?"
so they could fix it in anotehr edition and screw more cash out the fans, presumably :-|
This reminds me: have you seen Adrian "adywan" Sayre's Revisited version of Star Wars Episodes IV (2007) and V (2010)?

Here's a video for comparison, and yes that IS The Imerial March three years before it was actually released.

And here's Part 1 of 13, so you can watch the whole films in 10 minute segments.

He's working on Episode VI now, but the Blu-Rays will probably be released first.
"All is for the best in this best of all possible worlds..."
Dr.Pangloss, Voltaire's 'Candide'.

Image
User avatar
Griff
Oolite 2 Art Director
Oolite 2 Art Director
Posts: 2479
Joined: Fri Jul 14, 2006 12:29 pm
Location: Probably hugging his Air Fryer

Post by Griff »

The glowy alloy should pop up in game every now and again when a ship explodes (ha, yes it does look like burnt toast ;) ), the wreckage though is a bit harder to spot, a piece doesn't always get generated by the explosion and when it does appear, it only has a short lifespan before it explodes itself, 1 or 2 seconds at most i think.

Now you mention it i think i might have seen a clip or two from those reworked Starwars films, an extended Alderaan explosion from the first film when peter cushing tries out the death star gun for the first time, if i remember correctly isn't there a new scene with Jar Jar binks looking out at a rapidly approaching tidal wave!
User avatar
Pangloss
---- E L I T E ----
---- E L I T E ----
Posts: 303
Joined: Wed Dec 13, 2006 5:57 pm
Location: Scranton, PA (via Stevenage, Herts)

Post by Pangloss »

Griff wrote:
The glowy alloy should pop up in game every now and again when a ship explodes (ha, yes it does look like burnt toast ;) ), the wreckage though is a bit harder to spot, a piece doesn't always get generated by the explosion and when it does appear, it only has a short lifespan before it explodes itself, 1 or 2 seconds at most i think.

Now you mention it i think i might have seen a clip or two from those reworked Starwars films, an extended Alderaan explosion from the first film when peter cushing tries out the death star gun for the first time, if i remember correctly isn't there a new scene with Jar Jar binks looking out at a rapidly approaching tidal wave!
Oh yes!
"All is for the best in this best of all possible worlds..."
Dr.Pangloss, Voltaire's 'Candide'.

Image
User avatar
Killer Wolf
---- E L I T E ----
---- E L I T E ----
Posts: 2268
Joined: Tue Jan 02, 2007 12:38 pm

Post by Killer Wolf »

Pangloss wrote:
Killer Wolf wrote:
"why on earth was that not fixed when they redid the special effects a few years ago?"
so they could fix it in anotehr edition and screw more cash out the fans, presumably :-|
This reminds me: have you seen Adrian "adywan" Sayre's Revisited version of Star Wars Episodes IV (2007) and V (2010)?

Here's a video for comparison, and yes that IS The Imerial March three years before it was actually released.

And here's Part 1 of 13, so you can watch the whole films in 10 minute segments.

He's working on Episode VI now, but the Blu-Rays will probably be released first.
nope, loathe star wars. it was good enough film when i was like 8, but everything went downhill after Empire, and when i watched starwars when i was rereleased i spent most of the time cringing at the pure awfulness of the script. i'll stick w/ Snatch Wars :-)
User avatar
DaddyHoggy
Intergalactic Spam Assassin
Intergalactic Spam Assassin
Posts: 8512
Joined: Tue Dec 05, 2006 9:43 pm
Location: Newbury, UK
Contact:

Post by DaddyHoggy »

Strange isn't it the Star Wars thing - I guess it was so in to my psyche when I was growing up (I was 6 in 1977), that I can still watch the original trilogy over and over again (though I still frown at the reworked Han/Greedo/who-fired-first-scene) and yet I bought episodes I-III on DVD when they came out and have never watched them, since I saw them in the cinema.

(When Star Wars:New Hope Special Edition came out a group of us went to the cinema, watched it, went to Toys R Us, bought light sabres, went to the pub, got drunk and in the pub's garden, in the dark had a mass light sabre fight - now that was a silly, silly night!)
Selezen wrote:
Apparently I was having a DaddyHoggy moment.
Oolite Life is now revealed here
User avatar
Cody
Sharp Shooter Spam Assassin
Sharp Shooter Spam Assassin
Posts: 16073
Joined: Sat Jul 04, 2009 9:31 pm
Location: The Lizard's Claw
Contact:

Post by Cody »

I’ve only ever seen the three original Star Wars movies, and only the first one really did it for me. Back in 1977, that opening scene was jaw-droppingly amazing… I can still recall the frisson that went round the cinema, and how it increased when the second, much larger ship appeared. That was worth the admission money all on its own.
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
Post Reply