Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laserdesignator does not stay locked to area on CUP A-10 with ACE #10766

Open
TheLukio opened this issue Mar 1, 2025 · 1 comment
Open

Laserdesignator does not stay locked to area on CUP A-10 with ACE #10766

TheLukio opened this issue Mar 1, 2025 · 1 comment
Labels

Comments

@TheLukio
Copy link

TheLukio commented Mar 1, 2025

Mods (complete and add to the following information):

  • Arma 3: Game version: 2.18.152405 Branch: profiling
  • CBA: v 3.18.1.241014`
  • ACE3: v 3.19.0.96`
  • CUP Vehicles/Units/Weapons 1.18.1

Description:
When flying the CUP A-10A, and locking the TGP to an area, the viewpoint/reticule will start moving as soon as the laser designator is activated. This occurs only over landmass. Over water the viewpoint with activated laser designator behaves normally.

Steps to reproduce:

  1. Open editor, place CUP A-10 A into map whilst having only CBA3, CUP and ACE loaded.
  2. Place A-10A (CUP_B_A10_DYN_USA) on map, set height of plane to 1000m to start flying, start mission (Preview / MP )
  3. Activate targeting camera of A-10
  4. Lock camera view to an area over landmass
  5. Note camera target stays locked on area
  6. Switch to laser designator weapon
  7. Turn on laser designator.
  8. Note previously area locked target starts moving
  9. Unlock target and move over water
  10. Lock target reticule to area over water while laser designator is still active
  11. Note that target area remains locked and does not move, unlike on land.

Normally the locked view of a target pod remains (within some constraints of the aircraft) to the targetetted area, regardless if the laser designator is turned on or off. However with ACE enabled, the target area wanders off and only will stay on point of water.

Where did the issue occur?

  • This issue occurred single player/editor/self-hosted only with CUP A-10A (class name: "CUP_B_A10_DYN_USA"). This issue does not occur with the A-164 Wipeout (Vanilla Arma) / A-10D (Ace renamed)

Log Files:

  • No log attached, as there is no specific error message, the log shows no irregularities.

Additional context:

  • There is no error message, glitch or anything. The previously target reticule will just start moving as soon as the laser designator is active over a landmass. I've asked in CUP Disocrd and they said it's related to ACE.

Screenshots:
Youtube Video demonstrating issue on Stratis:
https://youtu.be/f_E_ywE7npQ

@LorenLuke
Copy link
Contributor

LorenLuke commented Mar 3, 2025

Just commenting as the person who implemented the following, I'm almost certain it has to do with the 'laser point track' (https://github.com/acemod/ACE3/blob/master/addons/laser/functions/fnc_laserPointTrack.sqf) function. The original purpose of the laser point track was to allow it to 'grab' a location on an object or building, rather than the terrain behind it. Trying to constantly set the pilot target at strange angles may result in the targeting pod 'walking' as it tries to follow the laser.

Recommend replacing lines 27-38 with the following (or something similar):

    if (isNull _targetObj) then {
        private _laserTargetPos = getPosASL (laserTarget _vehicle);
        private _pilotCameraPos = _vehicle modelToWorldVisualWorld (getPilotCameraPosition _vehicle);
        private _pilotCameraVector = _pilotCameraPos vectorFromTo _laserTargetPos;
        private _laserDistance = _pilotCameraPos distance _laserTargetPos;
        private _spotDistance = _spotPos distance _laserTargetPos;
        if (_spotDistance > 3.5) then {
            private _vehPos = getPosASL _vehicle;
            private _vectorToLaser = _pilotCameraPos vectorFromTo _laserTargetPos;
            private _vectorToSpot = _pilotCameraPos vectorFromTo _spotPos;
            if (acos (_vectorToLaser vectorCos _vectorToSpot) < 0.015) then {
                _vehicle setPilotCameraTarget _laserTargetPos;
                hint format ["%1\n%2\n%3\n%4", _pilotCameraPos, _laserTargetPos, _spotDistance, _laserDistance];
            };
        };
    };

Since this should use an identical vector to what's already being generated by the camera (instead of slaving to some point within a particular angle), and only changing the distance to the 'locked' terrain point, this code change should reduce, if not completely eliminate, any laser walking as the camera being slaved to a point should no longer introduce angular change.

This can use the same logic, and also increase the tolerances a bit, as well as recalculates all angular differences from the targeting pod instead of the vehicle center, reducing any parallax error that might cause laser spot walk.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants