Hi, Moonlight Fox,
the answers to most of your questions depend very much on whether you are aiming for a player ship or an NPC, because those two are handled differently in many aspects.
Moonlight Fox wrote:1) Is there a way to increase / decrease the shield strength? (aside from adding shield boosters)
Am I right in thinking that changing <key>max_energy</key> and <key>energy_recharge_rate</key> only has an effect after the shields have been depleted?
As Lestradae mentioned, NPC's don't have shields. Or, in other words: For NPCs energy
is shields. So increasing or decreasing the
max_energy to a pleasing value is what you want to do. You should have an eye on the values for the built-in ships (so always have the built-in shipdata opened as well for comparison), in order to determine in which league you want the Starfox to play. I would suggest, given that it is a military ship, the values for the Vipers should give a good orientation.
Energy banks are just a visual translation of
max_energy for player ships. The formula is
max_energy modulo 64, so you divide by 64 and disregard everything behind the decimal dot. Second rule: the minimum of energy banks is 1. So:
- max_energy 0-63 -> 1 energy bank
- max_energy 64-127 -> 1 energy bank
- max_energy 128-191 -> 2 energy banks
- max_energy 192-255 -> 3 energy banks
- and so on
The
energy_recharge_rate gives the amount of energy that is restored per second. Again it is best to compare with some other ships, in order to determine a reasonable value. A general classification (done for the wiki-pages of ships) would be:
- poor (0.0..2.4)
- medium (2.5..3.4)
- good (3.5..4.4)
- excellent (4.5..infinity)
As far as player ships and shields are concerned: shield "energy" is the same for all ships. Technically shields add another 128 points on top of your energy, so it is like two more energy banks, which are drained, before the actual energy banks are drained. The shield booster adds another 128 points, and the military shield enhancement another 128. The recharge rate is the same for all ships: 2, with the military shield enhancement it increases to 3.
For more information on these matters I would recommend you to read
this thread, especially
this post,
this post, and
this post.
2) Most of the Starfox ships are too small to realistically carry even 1 ton of cargo, it is still possible to allow them to carry the lighter equipment such as platinum, gold etc?
Again, are we talking about player ships or NPCs here?
I don't know whether a player ship with 0 cargo space could buy the kilo- and gram-commodities. I would suggest you just try it out. Perhaps the whole F8-screen would be inaccessible? I don't know.
And the cargo NPCs spit out when killed can be defined in the shipdata.plist, with the CARGO_CARRIED mentioned by Eric.
3) As the craft are small, light fighters I gave them a higher than average pitch/yaw/roll values. This has resulted in the craft being a little twitchy which in turn can make it a little tricky to line up your cross hairs over your desired target. Is there a way to keep the turning values high but make it less twitchy?
No. "Twitchy" is just another word for "high".
Does messing with the <key>thrust</key> or <key>density</key> do anything to the manoeuvrability?If not.. what do they do?
As mentioned in the wiki, the key
thrust sets the inertia of a ship. I find the explanation not clear myself, but this is what I
think it means: on the one hand side
thrust does determine how long you need to press "w" in order to reach your maximum speed (at least according to my experience; just change the value for your own ship and compare what happens). But it does also more, because it gives a ship
inertia. Big inertia means that more force is needed to move an object. Small inertia means that only small force is neede to move the object. This means that if two objects collide, the one with the bigger inertia stays relatively fixed, while the one with the small inertia gets kicked away. But again, that's what I've thought out myself. I would love to be better enlightened by somebody who actually knows the code.
What is
density? Never heard of that. <looks at shipdata.plist-documentation> Oh, yeah, there it is:
density
This real value is used to calculate a ships total mass. Default is 1.0 (Introduced in version 1.69?)
Well, I would guess it does what it says: calculating the ship's mass. I am not sure, however, what Oolite actually uses masses for.
4) Is there a way to mount two forward facing weapons? In the Starfox games you could upgrade your laser to a twin blaster which would simultaneously fire two lasers at your target.. it would be nice if I could do that in Oolite too!
Again it depends if we are talking about player ships or NPCs. For NPCs it is possible (see the ships from military.oxp and renegades.oxp).
For player ships: no (and this goes for all directions). No multiple weapons.
I would also be careful, as far as the workaround with turrets is concerned. Plasma turrets are capital ship weapons. The model has a considerable size (12.5 x 10 x 10 meters), so it might look misplaced on a ship that is not much bigger itself.