It is, yes - I think you're right, the name "ball turret" refers to its mounting. Probably though Commander McLane, not being a native English speaker, assumed it referred to what it fires. That's the trouble with the non-native English speakers on the forum, they're very hard to spot!CmdrLUke wrote:It is quite a reasonable assumption that a ball turret could be a laser turret with a "ball mounting" that can swivel, yes?
V1.77
Moderators: winston, another_commander
- Disembodied
- Jedi Spam Assassin
- Posts: 6885
- Joined: Thu Jul 12, 2007 10:54 pm
- Location: Carter's Snort
Re: V1.77
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
Re: V1.77
Also, there is no such thing as a laser turret in Oolite, and never was, except for Thargoids. Thus, in Oo-speak, a "turret" is always the same as a "plasma turret".
Re: V1.77
This sounded like a good idea, so I'm trying it. It has to be one of the hardest things for a person who has played the game, and become proficient with all it's weapons, and defenses. However, after three trips, from Lave to Leesti, Leesti to Diso, and back to Leesti, I have only been assaulted once. I thought I was dead meat, but GalCops actually came to my rescue. Man, that Cobra 3 is slow without injectors, and such.onno256 wrote:Since 1.77 came out, I've started a new savegame, though it is tougher, it is do-able
- 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: V1.77
Ok.. that makes sense.. thanks..Eric Walch wrote:You do need the new subentity definitions though:Code: Select all
{ "subentity_key" = "bweed-falcon-turret"; type = "ball_turret"; position = (0.0, 6.5, -9.5); orientation = (0.25, 0.75, 0, 0); "weapon_range" = 7500; }, { "subentity_key" = "bweed-falcon-turret"; type = "ball_turret"; position = (0.0, -6, -9.5); orientation = (0.25, -0.75, 0, 0); "weapon_range" = 7500; },
Just to be clear, since the Falcon shipdata.plist is in the old style, with the turret and subentities defined separately, what changes do I need to make where? This is the relevant sections as I have them currently.. and would it pay for me to convert the plist to the new style before changing things?
Code: Select all
<key>subentities</key>
<array>
<string>bweed-falcon-player_turret 0.0 6.5 -9.5 0.25 0.75 0.0 0</string>
<string>bweed-falcon-player_turret 0.0 -6 -9.5 0.25 -0.75 0.0 0</string>
</array>
<snip>
<key>bweed-falcon-player_turret</key>
<dict>
<key>ai_type</key>
<string>nullAI.plist</string>
<key>energy_recharge_rate</key>
<real>5</real>
<key>laser_color</key>
<string>magentaColor</string>
<key>max_energy</key>
<real>200</real>
<key>model</key>
<string>bweed-falcon-turret.dat</string>
<key>name</key>
<string>bweed-falcon-turret</string>
<key>roles</key>
<string>bweed-falcon-turret</string>
<key>setup_actions</key>
<array>
<string>initialiseTurret</string>
</array>
<key>smooth</key>
<true/>
<key>thrust</key>
<real>1</real>
<key>weapon_energy</key>
<real>10</real>
<key>weapon_range</key>
<real>7500</real>
<key>fire_rate</key>
<real>0.25</real>
</dict>
That clears things up nicely.. thanks very much for taking the time to check it out and explain it all.. much appreciated!another_commander wrote:One thing to remember (and I did not make it clear earlier, sorry about that) is that the distance checked for the turrets to start firing is not the same as the one displayed on the distance indicator on the HUD. The distance indicator shows distance to the bounding box edges where collision detection occurs, not distance to the center of the entity. This can be misleading when using just the HUD to judge distances. I did another test and documented it with screenshots, which I hereby present.
<snip>
I hope the above explains how and why it works as expected and why the distances can be sometimes misjudged. I have not tested what happens if the turret weapon range is set to the theoretical 7500m maximum but I believe Eric covered this already in his earlier post. Still, if there are unclarified points, feel free to ask.
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
Re: V1.77
Told Ya, It Can Be Done, however, we're forced to play smarter, which is a good thing in my humble opinion...mandoman wrote:This sounded like a good idea, so I'm trying it. It has to be one of the hardest things for a person who has played the game, and become proficient with all it's weapons, and defenses. However, after three trips, from Lave to Leesti, Leesti to Diso, and back to Leesti, I have only been assaulted once. I thought I was dead meat, but GalCops actually came to my rescue. Man, that Cobra 3 is slow without injectors, and such.onno256 wrote:Since 1.77 came out, I've started a new savegame, though it is tougher, it is do-able
And yes, the Cobbie is slow without injectors, beef 'er up, and good luck
Wheeling an' dealing while cruisin' the galaxies
- Eric Walch
- Slightly Grand Rear Admiral
- Posts: 5536
- Joined: Sat Jun 16, 2007 3:48 pm
- Location: Netherlands
Re: V1.77
I don't know why everybody keeps using the XML format as the old text format is much more readable when using text editors for plists. In XML you must replace those two lines by:Diziet Sma wrote:Just to be clear, since the Falcon shipdata.plist is in the old style, with the turret and subentities defined separately, what changes do I need to make where? This is the relevant sections as I have them currently.. and would it pay for me to convert the plist to the new style before changing things?Code: Select all
<key>subentities</key> <array> <string>bweed-falcon-player_turret 0.0 6.5 -9.5 0.25 0.75 0.0 0</string> <string>bweed-falcon-player_turret 0.0 -6 -9.5 0.25 -0.75 0.0 0</string> </array> <snip>
Code: Select all
<dict>
<key>subentity_key</key>
<string>bweed-falcon-turret</string>
<key>type</key>
<string>ball_turret</string>
<key>position</key>
<array>
<string>0.0</string>
<string>6.5</string>
<string>-9.5</string>
</array>
<key>orientation</key>
<array>
<string>0.25</string>
<string>0.75</string>
<string>0</string>
<string>0</string>
</array>
</dict>
<dict>
<key>subentity_key</key>
<string>bweed-falcon-turret</string>
<key>type</key>
<string>ball_turret</string>
<key>position</key>
<array>
<string>0.0</string>
<string>-6</string>
<string>-9.5</string>
</array>
<key>orientation</key>
<array>
<string>0.25</string>
<string>-0.75</string>
<string>0</string>
<string>0</string>
</array>
</dict>
EDIT: I see that I already removed the weapon_range entry from my version. You also have to add it again in above code when you want to use custom ranges.
UPS-Courier & DeepSpacePirates & others at the box and some older versions
- 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: V1.77
Many thanks for the help, Eric!
Well, the current version of the OXP does date from March 2008.. and the original from October 2006!Eric Walch wrote:I don't know why everybody keeps using the XML format as the old text format is much more readable when using text editors for plists.
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
-
- Poor
- Posts: 6
- Joined: Tue Apr 23, 2013 8:03 pm
Re: V1.77
Still having stick drifting issues, will editable deadzones every be added in the options?
- 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: V1.77
It might happen at some point.. but that's a function more properly left to the joystick software/driver for your particular 'stick. In the meantime, if you look in the relevant Mac, Linux or Windows sub-forum, you will find solutions that have helped a lot of people already.. if you still get stuck, or can't find the relevant threads, a post in one of those 3 sub-forums is the best place to get help.Alextended wrote:Still having stick drifting issues, will editable deadzones every be added in the options?
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
-
- Dangerous
- Posts: 103
- Joined: Thu Nov 29, 2012 11:12 am
- Location: Finland
Re: V1.77
What kind of joystick do you have?Alextended wrote:Still having stick drifting issues, will editable deadzones every be added in the options?
I had a faulty stick once with no way to set the deadzones and used XPadder as a workaround.
[ELITE: Station Run]
Selezen's excellent boardgame needs playtesters!
---
My youtube channel: Oolite, old games and underground metal music!
Selezen's excellent boardgame needs playtesters!
---
My youtube channel: Oolite, old games and underground metal music!
-
- Quite Grand Sub-Admiral
- Posts: 6682
- Joined: Wed Feb 28, 2007 7:54 am
Re: V1.77
Yes they will. We already have a patch ready to roll-in for testing (thanks to cybertiger) once the current feature freeze has been lifted.Alextended wrote:Still having stick drifting issues, will editable deadzones every be added in the options?
- 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: V1.77
Speaking of which, is there a rough time-frame for when that might happen, yet?another_commander wrote:once the current feature freeze has been lifted.
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
-
- Quite Grand Sub-Admiral
- Posts: 6682
- Joined: Wed Feb 28, 2007 7:54 am
Re: V1.77
Hopefully not too long now.Diziet Sma wrote:Speaking of which, is there a rough time-frame for when that might happen, yet?another_commander wrote:once the current feature freeze has been lifted.
- CaptSolo
- ---- E L I T E ----
- Posts: 909
- Joined: Wed Feb 23, 2011 10:08 pm
- Location: Preying Manta
- Contact:
Re: V1.77
Have to say 1.77 rocks! Currently running r5676. Many really nice changes that I like, including more furballs within the stations aegis. And no, I don't have that OXP installed. So much fun to launch and witness up close a Griff viper firing magenta beams at some poor sod.
Bravo to all the devs!
Bravo to all the devs!