Skinner’s Den
Moderators: winston, another_commander
-
- ---- E L I T E ----
- Posts: 591
- Joined: Sun Jul 12, 2015 2:30 pm
- Location: Bavaria, Germany
- Contact:
Re: Skinner’s Den
I found my stupid mistake: My shipdata.plist is in XML format, and I copied the material part of the original shipdata.plist which is in OpenStep. I don't even know why I used XML because I normally would have based my modified Python on the original shipdata.plist. And I definitely wasn't drunk because I don't drink alcohol!
I wonder which of the two formats should be used. Will one be dropped in a future version of Oolite?
I wonder which of the two formats should be used. Will one be dropped in a future version of Oolite?
"You wouldn't kill me just for a few credits, would you?" – "No, I'll do it just for the fun!"
- Diziet Sma
- ---- E L I T E ----
- Posts: 6312
- Joined: Mon Apr 06, 2009 12:20 pm
- Location: Aboard the Pitviper S.E. "Blackwidow"
Re: Skinner’s Den
XML is deprecated, but unlikely to be dropped.. too many older OXPs rely on it.
Either should work, though.. so I'm inclined to think that the problem is more that Oolite was using its old cache. (To speed up startup times Oolite builds a data cache when first run,which it rebuilds when it detects that OXPs have been added or removed. It does not detect when an existing OXP file has been edited, though. After editing an existing file, you need to force rebuilding of the cache, either by holding down the shift key until you see the spinning Cobra when starting, or by setting/adding always-flush-cache = YES in
Edit: sorry.. on first reading I missed the fact that you'd mixed both together in the same file.. yes, that would definitely confuse Oolite!
Either should work, though.. so I'm inclined to think that the problem is more that Oolite was using its old cache. (To speed up startup times Oolite builds a data cache when first run,which it rebuilds when it detects that OXPs have been added or removed. It does not detect when an existing OXP file has been edited, though. After editing an existing file, you need to force rebuilding of the cache, either by holding down the shift key until you see the spinning Cobra when starting, or by setting/adding always-flush-cache = YES in
.GNUstepDefaults
.Edit: sorry.. on first reading I missed the fact that you'd mixed both together in the same file.. yes, that would definitely confuse Oolite!
Most games have some sort of paddling-pool-and-water-wings beginning to ease you in: Oolite takes the rather more Darwinian approach of heaving you straight into the ocean, often with a brick or two in your pockets for luck. ~ Disembodied
-
- ---- E L I T E ----
- Posts: 591
- Joined: Sun Jul 12, 2015 2:30 pm
- Location: Bavaria, Germany
- Contact:
Re: Skinner’s Den
Ok, then I'll convert the file to OpenStep.
And yes, I mixed it in one file and even in one ship entry!
And yes, I mixed it in one file and even in one ship entry!
"You wouldn't kill me just for a few credits, would you?" – "No, I'll do it just for the fun!"
-
- ---- E L I T E ----
- Posts: 591
- Joined: Sun Jul 12, 2015 2:30 pm
- Location: Bavaria, Germany
- Contact:
Re: Skinner’s Den
And now everything works, including my modified texture. Thank you for helping!
"You wouldn't kill me just for a few credits, would you?" – "No, I'll do it just for the fun!"
-
- ---- E L I T E ----
- Posts: 591
- Joined: Sun Jul 12, 2015 2:30 pm
- Location: Bavaria, Germany
- Contact:
Re: Skinner’s Den
As a software developer I'm used to keep things as short as possible. So I'm wondering if it is possible to have two or more randomly assigned colour schemes (= textures) for one ship type, i.e. one entry in shipdata.plist? I assume that assigning a texture during object creation (spawning) is too late.
A related question is if there is some way to give a ship an individual name, number, and/or logo "painted" on the hull without having to create a completely new texture.
A related question is if there is some way to give a ship an individual name, number, and/or logo "painted" on the hull without having to create a completely new texture.
"You wouldn't kill me just for a few credits, would you?" – "No, I'll do it just for the fun!"
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Skinner’s Den
Check out the Materials section in the wiki, the materials used in the core shipdata.plist and Griff's normal-mapped ships. I believe all that you will need can be found in there, but for the full described set you will have to employ shaders. Sorry for not being more specific, I am writing this from an i-cafe and can't dig for information as I'd like to.Fritz wrote:As a software developer I'm used to keep things as short as possible. So I'm wondering if it is possible to have two or more randomly assigned colour schemes (= textures) for one ship type, i.e. one entry in shipdata.plist? I assume that assigning a texture during object creation (spawning) is too late.
A related question is if there is some way to give a ship an individual name, number, and/or logo "painted" on the hull without having to create a completely new texture.
Edit: Frame had also made a Ship Registration ID OXP using shaders a long time ago. Check this:
https://bb.oolite.space/viewtopic.php?t=7579
- Norby
- ---- E L I T E ----
- Posts: 2577
- Joined: Mon May 20, 2013 9:53 pm
- Location: Budapest, Hungary (Mainly Agricultural Democracy, TL10)
- Contact:
Re: Skinner’s Den
There is a way without shaders: you can replace the whole content of materials field calling setMaterials() even right in the shipSpawned event handler (it is not too late). Respray for Griffs use the same function.Fritz wrote:it is possible to have two or more randomly assigned colour schemes (= textures) for one ship type, i.e. one entry in shipdata.plist?
- Smivs
- Retired Assassin
- Posts: 8408
- Joined: Tue Feb 09, 2010 11:31 am
- Location: Lost in space
- Contact:
Re: Skinner’s Den
You can even do this 'on the fly'. Take a look at Aliens which has two ships which change texture under certain conditions.
Also The Classic Ships has multiple variants using the same model etc with different textures, and it also uses the set_materials script method when the ships go derelict to kill the lights and engine glow, and to produce the alternating/flashing red and green colours of the Thargoid warship.
Also The Classic Ships has multiple variants using the same model etc with different textures, and it also uses the set_materials script method when the ships go derelict to kill the lights and engine glow, and to produce the alternating/flashing red and green colours of the Thargoid warship.
Commander Smivs, the friendliest Gourd this side of Riedquat.
- Rorschachhamster
- ---- E L I T E ----
- Posts: 274
- Joined: Sun Aug 05, 2012 11:46 pm
- Contact:
Re: Skinner’s Den
This is a new function, isn't it? I really would like to have known that...Norby wrote:...setMaterials() even right in the shipSpawned event handler (it is not too late). Respray for Griffs use the same function.
-
- ---- E L I T E ----
- Posts: 591
- Joined: Sun Jul 12, 2015 2:30 pm
- Location: Bavaria, Germany
- Contact:
Re: Skinner’s Den
That sounds good! What I'm trying to do is to create a fleet of "company freighters", each with their distinct company livery and a distinct naming scheme (like the big container ships in the real world). So, for example, a Boa would have randomly either the standard texture or one of my company variants.
I am a little confused about the different ship sets: I'm using and modifying the "default" set that came with version 1.82, and they use shaders, don't they? There also is a "classic" ship set (more like the original Elite models), and I'm often reading of "Griff's normal-mapped ships". Griff seems to be the maker of many (or all?) of the default ships too. But he also has variants that seem to come in one or more OXPs. And then there are two different Python variants in the standard ship set...
I am a little confused about the different ship sets: I'm using and modifying the "default" set that came with version 1.82, and they use shaders, don't they? There also is a "classic" ship set (more like the original Elite models), and I'm often reading of "Griff's normal-mapped ships". Griff seems to be the maker of many (or all?) of the default ships too. But he also has variants that seem to come in one or more OXPs. And then there are two different Python variants in the standard ship set...
"You wouldn't kill me just for a few credits, would you?" – "No, I'll do it just for the fun!"
- Smivs
- Retired Assassin
- Posts: 8408
- Joined: Tue Feb 09, 2010 11:31 am
- Location: Lost in space
- Contact:
Re: Skinner’s Den
The default set for v1.80 + are modeled by Griff with textures by Capt. Solo. These were originally made as an OXP for those wanting Griff's ships but who didn't have Shaders. So the default ships do not use Shaders. Griff's Normalmapped ships use the same models but do use shaders.Fritz wrote:I am a little confused about the different ship sets: I'm using and modifying the "default" set that came with version 1.82, and they use shaders, don't they? There also is a "classic" ship set (more like the original Elite models), and I'm often reading of "Griff's normal-mapped ships". Griff seems to be the maker of many (or all?) of the default ships too. But he also has variants that seem to come in one or more OXPs. And then there are two different Python variants in the standard ship set...
The Classic Ships use the original Oolite shipset models which are based on the original Elite ships. These original models were a bit un-inspiring so were replaced in v1.80. The Classic Ships OXP adds gun and engine sub-entities to them to improve the styling, and has fully up-to-date graphics (based on the original texture designs) which use diffuse, emission, normal and specular mapping to bring them alive. Many of these features require a shader-capable computer, but they still look pretty good on low-end machines.
The default Python has three variants, the Player/Trader, an 'alternate' (trader) and the Blackdog pirate version.
I hope this helps to clear things up.
Commander Smivs, the friendliest Gourd this side of Riedquat.
-
- ---- E L I T E ----
- Posts: 591
- Joined: Sun Jul 12, 2015 2:30 pm
- Location: Bavaria, Germany
- Contact:
Re: Skinner’s Den
Yes, I think so. Thank you!Smivs wrote:I hope this helps to clear things up.
There are other ships hat have different variants, but as far I've seen only the Python comes with two completely different models. So strictly speaking there are two different ship types called Python in the Ooniverse! The player/trader version - the version I'm tinkering with - looks more like the classic python than the pirate version. So for me it's the real Python, and the other one is an unlicensed rebuild to the same specifications that would never be used by reputable companies!The default Python has three variants, the Player/Trader, an 'alternate' (trader) and the Blackdog pirate version.
"You wouldn't kill me just for a few credits, would you?" – "No, I'll do it just for the fun!"
- Smivs
- Retired Assassin
- Posts: 8408
- Joined: Tue Feb 09, 2010 11:31 am
- Location: Lost in space
- Contact:
Re: Skinner’s Den
That's news to me, but I'm not too familiar with the current default set so that could be the case. Back in the day there was just one.Fritz wrote:There are other ships hat have different variants, but as far I've seen only the Python comes with two completely different models.
Commander Smivs, the friendliest Gourd this side of Riedquat.
- Cody
- Sharp Shooter Spam Assassin
- Posts: 16081
- Joined: Sat Jul 04, 2009 9:31 pm
- Location: The Lizard's Claw
- Contact:
Re: Skinner’s Den
Only one Python model in the current core set - the Blackdog variant has a different diffuse map (I think) and two escort fighters, is all.Smivs wrote:That's news to me, but I'm not too familiar with the current default set so that could be the case. Back in the day there was just one.
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!
And any survivors, their debts I will certainly pay. There's always a way!
-
- ---- E L I T E ----
- Posts: 591
- Joined: Sun Jul 12, 2015 2:30 pm
- Location: Bavaria, Germany
- Contact:
Re: Skinner’s Den
pirate/blackdog:
trader/player:
These pictures come from the wiki. The textures in the core game are different, e.g. no stars on the trader/player version. The main technical difference is that the upper version has its two engines arranged one above the other, while the "real" Python has them next to each other.
trader/player:
These pictures come from the wiki. The textures in the core game are different, e.g. no stars on the trader/player version. The main technical difference is that the upper version has its two engines arranged one above the other, while the "real" Python has them next to each other.
"You wouldn't kill me just for a few credits, would you?" – "No, I'll do it just for the fun!"