Conform function headers to coding guidelines (#5255)

* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
This commit is contained in:
Phyma 2017-06-08 15:31:51 +02:00 committed by jonpas
parent 4f90d4da80
commit ffaa195fe5
772 changed files with 3072 additions and 779 deletions

View File

@ -10,6 +10,9 @@
* Return Value:
* muzzle velocity shift - m/s <NUMBER>
*
* Example:
* [[], 5] call ace_advanced_ballistics_fnc_calcilateAmmoTemperatureVelocityShift
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -13,6 +13,9 @@
* Return Value:
* corrected ballistic coefficient <NUMBER>
*
* Example:
* [2, 5, 5, 0.5, "ASM"] call ace_advanced_ballistics_fnc_calculateAtmosphericCorrection
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -4,7 +4,7 @@
* Calculates the muzzle velocity shift caused by different barrel lengths
*
* Arguments:
* 0: barrel length - mm
* 0: barrel length - mm <NUMBER>
* 1: muzzle velocity lookup table - m/s <ARRAY>
* 2: barrel length lookup table - mm <ARRAY>
* 3: muzzle velocity - m/s <NUMBER>
@ -12,6 +12,9 @@
* Return Value:
* muzzle velocity shift - m/s <NUMBER>
*
* Example:
* [5, [0,5], [0,5], 5] call ace_advanced_ballistics_fnc_calculateBarrelLengthVelocityShift
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -11,6 +11,9 @@
* Return Value:
* retardation - m/(s^2) <NUMBER>
*
* Example:
* [5, 20, 10] call ace_advanced_ballistics_fnc_calculateRetardation
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -15,6 +15,9 @@
* Return Value:
* stability factor <NUMBER>
*
* Example:
* [1, 2, 3, 4, 5, 6, 7] call ace_advanced_ballistics_fnc_calculateStabilityFactor
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -10,6 +10,9 @@
* Return Value:
* None
*
* Example:
* [] call ace_advanced_ballistics_fnc_diagnoseWeapons
*
* Public: No
*/
#define DEBUG_MODE_FULL

View File

@ -9,6 +9,9 @@
* Return Value:
* None
*
* Example:
* [] call ace_advanced_ballistics_fnc_displayProtractor
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -8,6 +8,9 @@
* Return Value:
* None
*
* Example:
* [] call ace_advanced_ballistics_fnc_handleFirePFH
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -9,6 +9,9 @@
* Return Value:
* None
*
* Example:
* [] call ace_advanced_ballistics_fnc_handleFired
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -10,6 +10,9 @@
* Return Value:
* None
*
* Example:
* [LOGIC, [bob, kevin], true] call ace_advanced_ballistics_fnc_initModuleSettings
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -8,6 +8,9 @@
* Return Value:
* None
*
* Example:
* [] call ace_advanced_ballistics_fnc_initializeTerrainExtension
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -7,18 +7,21 @@
* ammo - classname <STRING>
*
* Return Value:
* 0: _airFriction
* 1: _caliber
* 2: _bulletLength
* 3: _bulletMass
* 4: _transonicStabilityCoef
* 5: _dragModel
* 6: _ballisticCoefficients
* 7: _velocityBoundaries
* 8: _atmosphereModel
* 9: _ammoTempMuzzleVelocityShifts
* 10: _muzzleVelocityTable
* 11: _barrelLengthTable
* 0: _airFriction <NUMBER>
* 1: _caliber <NUMBER>
* 2: _bulletLength <NUMBER>
* 3: _bulletMass <NUMBER>
* 4: _transonicStabilityCoef <NUMBER>
* 5: _dragModel <NUMBER>
* 6: _ballisticCoefficients <NUMBER>
* 7: _velocityBoundaries <NUMBER>
* 8: _atmosphereModel <NUMBER>
* 9: _ammoTempMuzzleVelocityShifts <NUMBER>
* 10: _muzzleVelocityTable <NUMBER>
* 11: _barrelLengthTable <NUMBER>
*
* Example:
* ["ammo"] call ace_advanced_ballistics_fnc_readAmmoDataFromConfig
*
* Public: No
*/

View File

@ -7,9 +7,12 @@
* weapon - classname <STRING>
*
* Return Value:
* 0: _barrelTwist
* 1: _twistDirection
* 2: _barrelLength
* 0: _barrelTwist <NUMBER>
* 1: _twistDirection <NUMBER>
* 2: _barrelLength <NUMBER>
*
* Example:
* ["weapon"] call ace_advanced_ballistics_fnc_readWeaponDataFromConfig
*
* Public: No
*/

View File

@ -8,6 +8,11 @@
*
* Return Value:
* None
*
* Example:
* ["ID", 5] call ace_advanced_fatigue_fnc_addDutyFactor
*
* Public: No
*/
#include "script_component.hpp"
params [["_id", "", [""]], ["_factor", 1, [0, {}]]];

View File

@ -7,6 +7,11 @@
*
* Return Value:
* None
*
* Example:
* [DISPLAY] call ace_advanced_fatigue_fnc_createStaminaBar
*
* Public: No
*/
#include "script_component.hpp"
params ["_display"];

View File

@ -8,6 +8,11 @@
*
* Return Value:
* None
*
* Example:
* [newbob, oldbob] call ace_advanced_fatigue_fnc_handlePlayerChanged
*
* Public: No
*/
#include "script_component.hpp"
params ["_newUnit", "_oldUnit"];

View File

@ -7,6 +7,11 @@
*
* Return Value:
* None
*
* Example:
* [0.5] call ace_advanced_fatigue_fnc_handleStaminaBar
*
* Public: No
*/
#include "script_component.hpp"
params ["_stamina"];

View File

@ -7,6 +7,11 @@
*
* Return Value:
* None
*
* Example:
* [] call ace_advanced_fatigue_fnc_mainLoop
*
* Public: No
*/
#include "script_component.hpp"
if (!alive ACE_player) exitWith { // Dead people don't breath, Will also handle null (Map intros)

View File

@ -7,6 +7,11 @@
*
* Return Value:
* None
*
* Example:
* [MODULE] call ace_advanced_fatigue_fnc_moduleSettings
*
* Public: No
*/
#include "script_component.hpp"
params ["_logic"];

View File

@ -7,6 +7,11 @@
*
* Return Value:
* None
*
* Example:
* ["ID"] call ace_advanced_fatigue_fnc_removeDutyFactor
*
* Public: No
*/
#include "script_component.hpp"
params [["_id", "", [""]]];

View File

@ -13,8 +13,7 @@
* Example:
* [logic, [unit1, unit2], true] call ace_advanced_throwing_fnc_moduleInit
*
* Public:
* No
* Public: No
*/
#include "script_component.hpp"

View File

@ -7,7 +7,7 @@
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_advanced_throwing_fnc_renderPickUpInteraction

View File

@ -6,7 +6,7 @@
* Nothing
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_add_new_gun

View File

@ -3,10 +3,10 @@
* Calculates distance at which the bullet velocity drops below the threshold velocity
*
* Arguments:
* theshold velocity <number>
* theshold velocity <NUMBER>
*
* Return Value:
* distance <number
* distance <NUMBER>
*
* Example:
* 403 call ace_atragmx_fnc_calculate_distance_at_velocity

View File

@ -3,10 +3,10 @@
* Calculates the range card output based on the current data set
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_calculate_range_card

View File

@ -3,10 +3,10 @@
* Calculates the target range and updates the output fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_calculate_target_range_assist
@ -74,7 +74,7 @@ switch (_this) do {
if (_estRange > 0) then {
_imageSize = atan(_targetSize / _estRange);
};
switch (GVAR(rangeAssistImageSizeUnit)) do {
case 0: {
_imageSize = _imageSize * 6400 / 360;
@ -93,7 +93,7 @@ switch (_this) do {
if (tan(_imageSize) != 0) then {
_estRange = _targetSize / tan(_imageSize);
};
ctrlSetText [7013, Str(Round(_estRange))];
};
};

View File

@ -3,10 +3,10 @@
* Calculates the fireing solution and updates the result input/output fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_calculate_target_solution

View File

@ -3,10 +3,10 @@
* Calculates the target speed and updates the output fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_calculate_target_speed_assist

View File

@ -6,7 +6,7 @@
* parse input <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_calculate_truing_drop
@ -33,7 +33,7 @@ if (_parseInput) then {
_subsonicRange = Round(_subsonicRange);
_subsonicRange = _transonicRange max _subsonicRange;
_transonicDrop = -100 max parseNumber(ctrlText 18013) min 100;
_subsonicDrop = -100 max parseNumber(ctrlText 18014) min 100;
private _dropUnit = GVAR(currentScopeUnit);
@ -56,7 +56,7 @@ if (_parseInput) then {
};
_transonicDrop = Round(_transonicDrop * 100) / 100;
_subsonicDrop = Round(_subsonicDrop * 100) / 100;
_subsonicDrop = _transonicDrop max _subsonicDrop;
};
@ -65,7 +65,7 @@ if ((GVAR(truingDropDropData) select 0) == 0 || {!([_transonicRange, _subsonicRa
call FUNC(calculate_target_solution);
};
private _solutionInput = +GVAR(targetSolutionInput);
if (_transonicRange == 0) then {
_transonicRange = Round(403 call FUNC(calculate_distance_at_velocity));
};

View File

@ -3,7 +3,7 @@
* Tests if the ATragMX dialog can be shown
*
* Arguments:
* Nothing
* None
*
* Return Value:
* can_show <BOOL>

View File

@ -8,7 +8,7 @@
* update display <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_change_gun

View File

@ -6,7 +6,7 @@
* target <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 2 call ace_atragmx_fnc_change_target_slot

View File

@ -3,10 +3,10 @@
* Clears the c1 ballistic coefficient data fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_clear_c1_ballistic_coefficient_data

View File

@ -3,10 +3,10 @@
* Clears the muzzle velocity data fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_clear_muzzle_velocity_data

View File

@ -3,10 +3,10 @@
* Removes all user data from the profileNamespace
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_clear_user_data
@ -43,4 +43,4 @@ profileNamespace setVariable ["ACE_ATragMX_targetRange", nil];
profileNamespace setVariable ["ACE_ATragMX_rangeCardStartRange", nil];
profileNamespace setVariable ["ACE_ATragMX_rangeCardEndRange", nil];
profileNamespace setVariable ["ACE_ATragMX_rangeCardIncrement", nil];
profileNamespace setVariable ["ACE_ATragMX_rangeCardCurrentColumn", nil];
profileNamespace setVariable ["ACE_ATragMX_rangeCardCurrentColumn", nil];

View File

@ -3,10 +3,10 @@
* Creates the ATragMX dialog
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_create_dialog

View File

@ -6,7 +6,7 @@
* step <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_cycle_scope_unit

View File

@ -6,7 +6,7 @@
* step <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_cycle_image_size_units

View File

@ -6,7 +6,7 @@
* step <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_cycle_num_ticks_units

View File

@ -3,10 +3,10 @@
* Cycles through the range card columns
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_cycle_range_card_columns

View File

@ -3,10 +3,10 @@
* Cycles through the scope units
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_cycle_scope_unit

View File

@ -6,7 +6,7 @@
* step <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_cycle_target_size_units

View File

@ -3,10 +3,10 @@
* Cycles through the target directions left/right
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_cycle_target_direction

View File

@ -3,10 +3,10 @@
* Deletes the currently selected gun profile from the profileNamespace
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_delete_gun

View File

@ -6,7 +6,7 @@
* option menu id <number>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_evaluate_option_menu_input

View File

@ -3,10 +3,10 @@
* Inits all global variables with the default values
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_init

View File

@ -3,10 +3,10 @@
* Inits the gun list from user profile
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_initGunList

View File

@ -8,7 +8,7 @@
* c1 ballistic coefficient - <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* [800, 0.485] call ace_atragmx_fnc_insert_c1_ballistic_coefficient_data

View File

@ -7,7 +7,7 @@
* muzzle velocity - <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* [10, 800] call ace_atragmx_fnc_insert_muzzle_velocity_data

View File

@ -1,5 +1,21 @@
/*
* Author: ACE-Team
* On close Dialog
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_atragmx_fnc_on_close_dialog
*
* Public: No
*/
#include "script_component.hpp"
uiNamespace setVariable ['ATragMX_Display', nil];
GVAR(active) = false;
[GVAR(DialogPFH)] call CBA_fnc_removePerFrameHandler;
[GVAR(DialogPFH)] call CBA_fnc_removePerFrameHandler;

View File

@ -3,10 +3,10 @@
* Parses all input fields in the gun-, atmosphere- and target column, the result input fields and the muzzle velocity data input fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_parse_input

View File

@ -3,10 +3,10 @@
* Reads gun list entries from the config and appends them to the gun list
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_read_gun_list_entries_from_config
@ -110,10 +110,10 @@ private _validate_preset = {
{
private _preset = _x >> "preset";
if (isArray(_preset)) then {
private _gun = getArray _preset;
if (_gun call _validate_preset) then {
_gun set [0, (_gun select 0) select [0, 14]];
_gun set [20, false];

View File

@ -7,7 +7,7 @@
* update display <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_recalculate_c1_ballistic_coefficient

View File

@ -7,7 +7,7 @@
* update display <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_recalculate_muzzle_velocity

View File

@ -3,10 +3,10 @@
* Resets the relative click memory and updates the result input/output fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_reset_relative_click_memory

View File

@ -3,10 +3,10 @@
* Restores the atmospheric data defaults
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_restore_atmo_default

View File

@ -6,7 +6,7 @@
* update display <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_restore_truing_drop

View File

@ -3,10 +3,10 @@
* Reads user data from profileNamespace
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_restore_user_data

View File

@ -3,10 +3,10 @@
* Saves the currently select gun profile into the profileNamespace
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_save_gun

View File

@ -6,7 +6,7 @@
* ballistic coefficient - <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 10 call ace_atragmx_fnc_shift_c1_ballistic_coefficient_data

View File

@ -6,7 +6,7 @@
* velocity - <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 10 call ace_atragmx_fnc_shift_muzzle_velocity_data

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_add_new_gun
* false call ace_atragmx_fnc_show_add_new_gun
*
* Public: No
*/

View File

@ -6,7 +6,7 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* false call ace_atragmx_fnc_show_atmo_env_data

View File

@ -6,7 +6,7 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* false call ace_atragmx_fnc_show_c1_ballistic_coefficient_data

View File

@ -6,7 +6,7 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* false call ace_atragmx_fnc_show_gun_ammo_data

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_gun_list
* false call ace_atragmx_fnc_show_gun_list
*
* Public: No
*/

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_main_page
* false call ace_atragmx_fnc_show_main_page
*
* Public: No
*/

View File

@ -6,7 +6,7 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* false call ace_atragmx_fnc_show_muzzle_velocity_data

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_range_card
* false call ace_atragmx_fnc_show_range_card
*
* Public: No
*/

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_range_card_setup
* false call ace_atragmx_fnc_show_range_card_setup
*
* Public: No
*/

View File

@ -6,7 +6,7 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* false call ace_atragmx_fnc_show_solution_setup

View File

@ -6,7 +6,7 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* false call ace_atragmx_fnc_show_target_data

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_target_range_assist
* false call ace_atragmx_fnc_show_target_range_assist
*
* Public: No
*/

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_target_speed_assist
* false call ace_atragmx_fnc_show_target_speed_assist
*
* Public: No
*/

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_target_speed_assist_timer
* false call ace_atragmx_fnc_show_target_speed_assist_timer
*
* Public: No
*/

View File

@ -6,10 +6,10 @@
* visible - <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_show_truing_drop
* false call ace_atragmx_fnc_show_truing_drop
*
* Public: No
*/

View File

@ -8,7 +8,7 @@
* 2: Inclination (Degrees) <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* [1000, 45, 1] call ace_microdagr_fnc_recieveRangefinderData

View File

@ -3,10 +3,10 @@
* Saves the persistent gun list entries into profileNamespace
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_store_user_data

View File

@ -3,10 +3,10 @@
* Saves user data into profileNamespace
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_store_user_data
@ -42,4 +42,4 @@ profileNamespace setVariable ["ACE_ATragMX_targetRange", GVAR(targetRange)];
profileNamespace setVariable ["ACE_ATragMX_rangeCardStartRange", GVAR(rangeCardStartRange)];
profileNamespace setVariable ["ACE_ATragMX_rangeCardEndRange", GVAR(rangeCardEndRange)];
profileNamespace setVariable ["ACE_ATragMX_rangeCardIncrement", GVAR(rangeCardIncrement)];
profileNamespace setVariable ["ACE_ATragMX_rangeCardCurrentColumn", GVAR(rangeCardCurrentColumn)];
profileNamespace setVariable ["ACE_ATragMX_rangeCardCurrentColumn", GVAR(rangeCardCurrentColumn)];

View File

@ -3,10 +3,10 @@
* Shows and starts the target speed assist timer
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_target_speed_assist_timer

View File

@ -6,7 +6,7 @@
* Apply new data? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_atmo_env_data

View File

@ -6,7 +6,7 @@
* Apply new data? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_c1_ballistic_coefficient_data

View File

@ -3,10 +3,10 @@
* Toggles the coriolis and spin drift output on/off
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_toggle_coriolis

View File

@ -6,7 +6,7 @@
* Apply new data? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_gun_ammo_data

View File

@ -6,7 +6,7 @@
* change gun? <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* false call ace_atragmx_fnc_toggle_gun_list

View File

@ -6,7 +6,7 @@
* Apply new data? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_muzzle_velocity_data

View File

@ -6,7 +6,7 @@
* open menu item <BOOL>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_option_menu
@ -29,7 +29,7 @@ if (ctrlVisible 3001) then {
};
} else {
lbClear 3002;
lbAdd [3002, "Accuracy 1st"];
lbAdd [3002, "Muz Vel Table"];
lbAdd [3002, "Drag Coef Table"];
@ -43,9 +43,9 @@ if (ctrlVisible 3001) then {
};
lbAdd [3002, "Set Clicks"];
lbAdd [3002, "Gun Note"];
lbSetCurSel [3002, 0];
ctrlShow [3001, true];
ctrlShow [3002, true];

View File

@ -3,10 +3,10 @@
* Toggles the range card screen on/off
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_toggle_range_card

View File

@ -6,7 +6,7 @@
* Apply new range card settings <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_range_card_setup

View File

@ -6,7 +6,7 @@
* Apply new data? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_solution_setup

View File

@ -6,7 +6,7 @@
* Apply new data? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_target_data

View File

@ -6,7 +6,7 @@
* update range? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_target_range_assist

View File

@ -6,7 +6,7 @@
* update speed? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_target_speed_assist

View File

@ -6,7 +6,7 @@
* Apply new data? <NUMBER>
*
* Return Value:
* Nothing
* None
*
* Example:
* 1 call ace_atragmx_fnc_toggle_truing_drop

View File

@ -3,10 +3,10 @@
* Trims the gun name input field
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_trim_gun_name

View File

@ -3,10 +3,10 @@
* Trues the c1 ballistic coefficient
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_true_c1_ballistic_coefficient

View File

@ -3,10 +3,10 @@
* Trues the muzzle velocity
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_true_muzzle_velocity

View File

@ -3,10 +3,10 @@
* Updates the atmospheric data fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_update_atmo_env_data

View File

@ -3,10 +3,10 @@
* Updates the atmospheric data input method
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_update_atmo_selection

View File

@ -3,10 +3,10 @@
* Updates all atmosphere column input fields
*
* Arguments:
* Nothing
* None
*
* Return Value:
* Nothing
* None
*
* Example:
* call ace_atragmx_fnc_update_atmosphere

Some files were not shown because too many files have changed in this diff Show More