• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Elouda

Captain
31 Badges
Aug 6, 2009
426
249
  • Cities in Motion
  • BATTLETECH - Initiate of the Order
  • Victoria 2: A House Divided
  • Supreme Ruler: Cold War
  • Supreme Ruler 2020
  • Sword of the Stars II
  • Sword of the Stars
  • Sengoku
  • Semper Fi
  • Naval War: Arctic Circle
  • Hearts of Iron III
  • For the Motherland
  • Iron Cross
  • Europa Universalis III: Chronicles
  • Europa Universalis III
  • Crusader Kings II
  • Cities in Motion 2
  • Arsenal of Democracy
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Stellaris: Distant Stars Pre-Order
  • BATTLETECH - Backer
  • BATTLETECH - Beta Backer
  • Steel Division: Normand 44 Sign-up
  • PDXCON 2017 Standard Ticket holder
  • Hearts of Iron IV Sign-up
  • Europa Universalis IV: Pre-order
  • 500k Club
  • Victoria 2
  • Europa Universalis IV
  • Cities: Skylines
So, in the process of putting togeather some 'high-detail' ships, I've bumped into something of a wall; when a platform fires a weapon with the <RequiresPlatformFireControl> tag as True, it will light up ALL the sensors on platform, even if one of them is already active and tracking the target. I noticed this as the DDG51 I had put togeather despite having is SPY-1D array active, lit up both the SPS-67 and SPS-73 surface radars when firing a SM-2 missile at an air target, despite the fact that activating either of radars wouldnt really help at all.

So now I find myself in a dilemma; do I cut the <RequiresPlatformFireControl> to False on everything? Not optimal, since it means that even with weapons that do need actives, they wont be needed (this isnt actually the case on the DDG51, as the SPY-1D can be turned off if target data is fed in from elsewhere, only the SPG-62 FC Radar needs to be online).

It would be nice if we could define exactly WHAT sensor needs to active for each weapon; for example, adding a new field into each <UnitClassWeaponLoad> section as follows would allow for much greater detail;

<UnitClassWeaponLoad>
<WeaponClassId>mod_rim66m</WeaponClassId>
<XPosition>0</XPosition>
<YPosition>-10</YPosition>
<HeightPosition>20</HeightPosition>
<WeaponBearingDeg>0</WeaponBearingDeg>
<WeaponPitchDeg>90</WeaponPitchDeg>
<MaxAmmunition>60</MaxAmmunition>
<IsPrimaryWeapon>false</IsPrimaryWeapon>
<PlatformFireControl>mod_anspg62</PlatformFireControl>
</UnitClassWeaponLoad>

This should either point to a sensor on the ship, or be 'undefined' for weapons with completely integrated FCS like Phalanx (though I guess if you wanted to get REALLY detailed, you could include all the separate FC radars for them) or that dont need FC.

Lastly a question; when sensors have a <SensorBearingRangeDeg> less than 360; what determines their facing? For weapons its defined through the <WeaponBearingDeg> fields, but what about sensors?
 
Last edited:
Good suggestions. You may want to put it in the suggestions forum so we easier keep track of it.

Bearing for sensors is relative to forward.

Sorry, I wasnt sure if this was better here or in there. Should I repost it or can it be moved?

Is there a way to alter what sensor bearing is relative to? For example with weapons if <WeaponBearingDeg> is 90, and the weapon has <WeaponBearingRangeDeg> 180, then it would be able to fire anywhere from 0 (ahead) through to 180 (astern) on the right side. As I understand it the sensor will always be centered on the bow?

EDIT: Also, I just noticed something that if intentional is VERY cool; my SPS-67 picked up a low flying plane at ~30nm. This is a radar I've defined as surface only, so if that actually means surface and low altitude, then that is excellent and very realistic.
 
Feel free to repost your thoughts there, yes.

Yes, the sensors are centered on the bow, so to say, though baffle zones are calculated correctly based on <SonarType>. Not trivial to change, but I think you can accomplish what you want anyway.

Yes, surface radars can pick up low-flying aircraft. Glad you like :)