2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Adjust a projectiles velocity and dir + up vector.
|
|
|
|
*
|
2015-09-18 11:09:40 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Projectile <OBJECT>
|
|
|
|
* 1: Adjust azimuth this much. <NUMBER>
|
|
|
|
* 2: Adjust inclination this much. <NUMBER>
|
|
|
|
* 3: Adjust projectile speed this much. In m/s. (optional: 0) <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
2015-09-18 11:09:40 +00:00
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 11:09:40 +00:00
|
|
|
params ["_projectile", "_adjustDir", "_adjustUp", ["_adjustSpeed",0]];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 11:09:40 +00:00
|
|
|
private ["_vdir", "_dir", "_up", "_vlat", "_vup", "_vel"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// get old direction vector
|
2015-04-06 21:10:17 +00:00
|
|
|
_vdir = vectorNormalized velocity _projectile;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// get azimuth and inclination and apply corrections
|
|
|
|
_dir = (_vdir select 0) atan2 (_vdir select 1) + _adjustDir;
|
2015-04-06 21:10:17 +00:00
|
|
|
_up = asin (_vdir select 2) + _adjustUp;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// get new direction vector (this is a unit vector)
|
|
|
|
_vdir = [
|
2015-04-06 21:10:17 +00:00
|
|
|
sin _dir * cos _up,
|
|
|
|
cos _dir * cos _up,
|
|
|
|
sin _up
|
2015-01-11 16:42:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// get best up vector
|
2015-04-06 21:10:17 +00:00
|
|
|
_vlat = vectorNormalized (_vdir vectorCrossProduct [0,0,1]);
|
|
|
|
_vup = _vlat vectorCrossProduct _vdir;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// get new speed vector. Keep total speed, but change to new direction. Yay for vector commands.
|
2015-04-06 21:10:17 +00:00
|
|
|
_vel = _vdir vectorMultiply (_adjustSpeed + vectorMagnitude velocity _projectile);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// set projectile direction dir and up. Projectiles are long objects, especially with tracers, so it would look dumb otherwise.
|
|
|
|
_projectile setVectorDirAndUp [_vdir, _vup];
|
|
|
|
|
|
|
|
// set new speed vector
|
|
|
|
_projectile setVelocity _vel;
|