I just looked over the AimpointUnit class.
Some thoughts:
- A straight line distance threshold of a mere 10,000m will execute the code. If a plane is, say, at 7,000m AGL, for a line of sight distance of 10,000m the ground distance is roughly 7,000m as well, corresponding to a look-down angle of about 45 degrees. If the plane is way upstairs at 10km, the object is directly below before any action is taken. And if the plane is higher still, the threshold distance is exceeded and nothing happens here.
- A fixed line-of-sight threshold, resulting in a longer ground distance for aircraft lower altitudes, could mean that a direction-altering waypoint establishing setup of the drop should not be placed inside said ground distance. Meaning for safety at least 10km from the target. I suspect this because the plane's heading relative to the aimpoint object is taken into account upon crossing the distance threshold. If it subsequently changes due to a waypoint causing a turn, this might induce additional error. Now, this is after just a first look at the code, and be aware always that I'm a NARP
TM (Not A Real Programmer).

- variable d16 goes toward calculating the error.
d16 = plane speed * sqrt(plane height above object * 0.2039)
For a height difference of 5,000m and a line of sight distance of 10,000m, the ground distance is 8,660m.
For a height difference of 5,000m and a plane speed of 100m/s, d16 = 3,190
error = ground distance - d16
For a ground distance of 8,660m and d16 = 3,190
error = 8,660 - 3,190 = 5,470
All this suggests to me that a fixed line-of-sight threshold of 10,000m is not good. It makes the error comparatively
larger when the plane is at
lower altitudes. And it results in activation from too close when the plane is at a high altitude. My instinct is to set the line-of-sight threshold by taking into account the height difference; the smaller this height difference the smaller the activation threshold. I took such a course for another of the C&C effects which employed a line-of-sight threshold distance.
- Variable d5 is a head scratcher, seeming to me to be incorrectly constructed. But this variable is not actually used, and so caused no harm if indeed wrong.
I don't see where the randomizing comes into it toward the end of the algorithm.
The existing code, with my notes:
public class CandC$AimpointUnit extends CandCGeneric
{
public boolean danger()
{
if(!active)
return false;
Point3d point3d = new Point3d();
Vector3d vector3d = new Vector3d();
for(java.util.Map.Entry entry = Engine.name2Actor().nextEntry(null); entry != null; entry = Engine.name2Actor().nextEntry(entry))
{
pos.getAbs(point3d);
Actor actor = (Actor)entry.getValue();
if((actor instanceof TypeBomber) || (actor instanceof TypeStormovik) && actor.getArmy() == myArmy && actor.pos.getAbsPoint().distance(point3d) < 10000D) //10,000m seems small!
{
boolean flag = ((Maneuver)((Aircraft)actor).FM).hasBombs();
double d = Main3D.cur3D().land2D.worldOfsX() + ((Tuple3d) (point3d)).x; //d = aimpoint object x position on map
double d1 = Main3D.cur3D().land2D.worldOfsY() + ((Tuple3d) (point3d)).y; //d1 = aimpoint object y position on map
double d2 = World.land().HQ(((Tuple3d) (point3d)).x, ((Tuple3d) (point3d)).y); //d2 = ground height at aimpoint object
double d3 = Main3D.cur3D().land2D.worldOfsX() + actor.pos.getAbsPoint().x; //d3 = plane x position on map
double d4 = Main3D.cur3D().land2D.worldOfsY() + actor.pos.getAbsPoint().y; //d4 = plane y position on map
double d5 = Main3D.cur3D().land2D.worldOfsY() + actor.pos.getAbsPoint().z; //??? should be worldOfsZ()??? Anyway, d5 is NOT used
double d6 = actor.getSpeed(vector3d); //d6 = plane speed m/s
double d7 = ((Maneuver)((Aircraft)actor).FM).getAltitude(); //d7 = plane height ASL
double d8 = d - d3; //d8 = obj x - plane x = delta x
double d9 = d1 - d4; //d9 = obj y - plane y = delta y
float f = 57.32484F * (float)Math.atan2(d9, -d8); //f = arctan(delta y / -delta x) = hdg angle to obj
double d10 = Math.floor((int)f) - 90D; //correct hdg angle for map east
if(d10 < 0.0D)
d10 = 360D + d10;
double d11 = (double)(-actor.pos.getAbsOrient().getYaw()) + 90D; //d11 = plane hdg, corrected for map east
if(d11 < 0.0D)
d11 += 360D;
double d12 = d3 - d; //d12 = plane x - obj x = delta x
double d13 = d4 - d1; //d13 = plane y - obj y = delta y
double d14 = Math.sqrt(d13 * d13 + d12 * d12); //d14 = gnd dist between plane and obj
double d15 = d7 - World.land().HQ(((Tuple3d) (point3d)).x, ((Tuple3d) (point3d)).y); //d15 = plane height above obj (could be d7 -d2)
if(d15 < 0.0D)
d15 = 0.0D;
double d16 = d6 * Math.sqrt(d15 * 0.20386999845504761D); //d16 = speed * sqrt(AGL * 0.2039); e.g., 100 * sqrt(5,000 * 0.2039) = 100 * sqrt(1,019.5) = 100 * 31.9 = 3190
if(!marked && actor == World.getPlayerAircraft() && !flag)
{
error = (float)(d14 - d16); //error = gnd dist - d16
marked = true;
HUD.logCenter(" Bombs Gone! Aimpoint Error: " + (int)error);
}
Random random = new Random();
int i = Mission.cur().sectFile().get("Mods", "AimpointError", 300);
randomInt = random.nextInt(i);
if(Mission.cur() != null && Mission.cur().sectFile().get("Mods", "AimpointNoMark", 0) == 1)
error = 0.0F;
if(Mission.cur() != null && Mission.cur().sectFile().get("Mods", "AimpointMode", 0) != 1)
d16 += (float)randomInt + error;
if(d14 <= d16)
((Pilot)((Aircraft)actor).FM).bombsOut = true;
}
}
return true;
}
private float error;
private boolean marked;
private int randomInt;
private int maxerror;
public boolean active;
public AimpointUnit()
{
error = 0.0F;
marked = false;
randomInt = 0;
maxerror = 300;
active = true;
Timer1 = Timer2 = 1.0F;
delay = 10F;
}
}