-
Notifications
You must be signed in to change notification settings - Fork 738
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RangeCard - Take bore height into account
- Loading branch information
Showing
9 changed files
with
78 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Author: Ruthberg | ||
* Gets the bore height of the weapon & optic combination with the given weapon index | ||
* | ||
* Arguments: | ||
* 0: Unit <OBJECT> | ||
* 1: Weapon index <NUMBER> | ||
* | ||
* Return Value: | ||
* bore height <NUMBER> | ||
* | ||
* Example: | ||
* [player] call ace_scopes_fnc_getBoreHeight | ||
* | ||
* Public: Yes | ||
*/ | ||
#include "script_component.hpp" | ||
|
||
params ["_player", "_weaponIndex"]; | ||
|
||
if (_weaponIndex < 0 || {_weaponIndex > 2}) exitWith { 0 }; | ||
|
||
private _weaponClass = [primaryWeapon _player, secondaryWeapon _player, handgunWeapon _player] select _weaponIndex; | ||
private _opticsClass = ([_player] call FUNC(getOptics)) select _weaponIndex; | ||
|
||
if (_opticsClass == "") then { _opticsClass = _weaponClass; }; | ||
|
||
// Determine rail height above bore | ||
private _railHeightAboveBore = 0; | ||
private _weaponConfig = configFile >> "CfgWeapons" >> _weaponClass; | ||
if (isNumber (_weaponConfig >> "ACE_RailHeightAboveBore")) then { | ||
_railHeightAboveBore = getNumber(_weaponConfig >> "ACE_RailHeightAboveBore"); | ||
} else { | ||
switch (_weaponIndex) do { | ||
case 0: { _railHeightAboveBore = 2.0; }; // Rifle | ||
case 2: { _railHeightAboveBore = 0.7; }; // Pistol | ||
}; | ||
}; | ||
// Determine scope height above rail | ||
private _scopeHeightAboveRail = 0; | ||
private _opticConfig = configFile >> "CfgWeapons" >> _opticsClass; | ||
if (isNumber (_opticConfig >> "ACE_ScopeHeightAboveRail")) then { | ||
_scopeHeightAboveRail = getNumber(_opticConfig >> "ACE_ScopeHeightAboveRail"); | ||
} else { | ||
switch (getNumber(_opticConfig >> "ItemInfo" >> "opticType")) do { | ||
case 1: { _scopeHeightAboveRail = 3.0; }; // RCO or similar | ||
case 2: { _scopeHeightAboveRail = 4.0; }; // High power scope | ||
default { | ||
switch (_weaponIndex) do { | ||
case 0: { _scopeHeightAboveRail = 0.5; }; // Rifle iron sights | ||
case 2: { _scopeHeightAboveRail = 0.3; }; // Pistol iron sights | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
(_railHeightAboveBore + _scopeHeightAboveRail) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters