mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Merge pull request #3567 from BaerMitUmlaut/microdagr-microoverhaul
MicroDAGR Microoverhaul
This commit is contained in:
commit
bce92e8d42
@ -27,7 +27,7 @@ if (GVAR(currentApplicationPage) == 1) then {
|
|||||||
_theMap ctrlMapAnimAdd [0, DUMMY_ZOOM, DUMMY_POS];
|
_theMap ctrlMapAnimAdd [0, DUMMY_ZOOM, DUMMY_POS];
|
||||||
ctrlMapAnimCommit _theMap;
|
ctrlMapAnimCommit _theMap;
|
||||||
_size = 412 * _mapSize;
|
_size = 412 * _mapSize;
|
||||||
_theMap drawIcon [QUOTE(PATHTO_R(images\compass_starInverted.paa)), [1,1,1,1], DUMMY_POS, _size, _size, (-1 * (getDir ACE_player)), '', 0 ];
|
_theMap drawIcon [QUOTE(PATHTO_R(images\compass_starInverted.paa)), [1,1,1,1], DUMMY_POS, _size, _size, (-1 * (([ACE_player] call CBA_fnc_headDir) select 0)), '', 0 ];
|
||||||
_theMap drawIcon [QUOTE(PATHTO_R(images\compass_needle.paa)), [0.533,0.769,0.76,1], DUMMY_POS, _size, _size, 0, '', 0 ];
|
_theMap drawIcon [QUOTE(PATHTO_R(images\compass_needle.paa)), [0.533,0.769,0.76,1], DUMMY_POS, _size, _size, 0, '', 0 ];
|
||||||
|
|
||||||
if (GVAR(currentWaypoint) != -1) then {
|
if (GVAR(currentWaypoint) != -1) then {
|
||||||
@ -56,7 +56,7 @@ if (GVAR(currentApplicationPage) == 1) then {
|
|||||||
ctrlMapAnimCommit _theMap;
|
ctrlMapAnimCommit _theMap;
|
||||||
};
|
};
|
||||||
_size = 48 * _mapSize;
|
_size = 48 * _mapSize;
|
||||||
_theMap drawIcon [QUOTE(PATHTO_R(images\icon_self.paa)), [0.533,0.769,0.76,0.75], (getPosASL ACE_player), _size, _size, (getDir ACE_player), '', 0 ];
|
_theMap drawIcon [QUOTE(PATHTO_R(images\icon_self.paa)), [0.533,0.769,0.76,0.75], (getPosASL ACE_player), _size, _size, (([ACE_player] call CBA_fnc_headDir) select 0), '', 0 ];
|
||||||
|
|
||||||
if (GVAR(settingShowAllWaypointsOnMap)) then {
|
if (GVAR(settingShowAllWaypointsOnMap)) then {
|
||||||
_size = 32 * _mapSize;
|
_size = 32 * _mapSize;
|
||||||
|
@ -38,7 +38,7 @@ if (GVAR(currentApplicationPage) == APP_MODE_INFODISPLAY) then {
|
|||||||
(_display displayCtrl IDC_MODEDISPLAY_MODEPOSTIMECG) ctrlShow false;
|
(_display displayCtrl IDC_MODEDISPLAY_MODEPOSTIMECG) ctrlShow false;
|
||||||
(_display displayCtrl IDC_MODEDISPLAY_MODEPOSTARGETCG) ctrlShow true;
|
(_display displayCtrl IDC_MODEDISPLAY_MODEPOSTARGETCG) ctrlShow true;
|
||||||
if (GVAR(currentWaypoint) == -2) then {
|
if (GVAR(currentWaypoint) == -2) then {
|
||||||
(_display displayCtrl IDC_MODEDISPLAY_TARGETICON) ctrlSetText "\A3\ui_f\data\igui\rscingameui\rscoptics\laser_designator_iconLaserOn.paa"
|
(_display displayCtrl IDC_MODEDISPLAY_TARGETICON) ctrlSetText QUOTE(PATHTOF(images\icon_menuLaser.paa));
|
||||||
} else {
|
} else {
|
||||||
(_display displayCtrl IDC_MODEDISPLAY_TARGETICON) ctrlSetText QPATHTOF(images\icon_menuMark.paa);
|
(_display displayCtrl IDC_MODEDISPLAY_TARGETICON) ctrlSetText QPATHTOF(images\icon_menuMark.paa);
|
||||||
};
|
};
|
||||||
|
@ -47,9 +47,9 @@ case (APP_MODE_INFODISPLAY): {
|
|||||||
|
|
||||||
//Heading:
|
//Heading:
|
||||||
_compassAngleText = if (GVAR(settingUseMils)) then {
|
_compassAngleText = if (GVAR(settingUseMils)) then {
|
||||||
[(floor ((6400 / 360) * (getDir ACE_player))), 4, 0] call CBA_fnc_formatNumber;
|
[(floor ((6400 / 360) * (([ACE_player] call CBA_fnc_headDir) select 0))), 4, 0] call CBA_fnc_formatNumber;
|
||||||
} else {
|
} else {
|
||||||
([(floor (getDir ACE_player)), 3, 1] call CBA_fnc_formatNumber) + "°" //degree symbol is in UTF-8
|
([(floor (([ACE_player] call CBA_fnc_headDir) select 0)), 3, 1] call CBA_fnc_formatNumber) + "°" //degree symbol is in UTF-8
|
||||||
};
|
};
|
||||||
(_display displayCtrl IDC_MODEDISPLAY_HEADINGNUM) ctrlSetText _compassAngleText;
|
(_display displayCtrl IDC_MODEDISPLAY_HEADINGNUM) ctrlSetText _compassAngleText;
|
||||||
|
|
||||||
@ -107,9 +107,9 @@ case (APP_MODE_INFODISPLAY): {
|
|||||||
case (APP_MODE_COMPASS): {
|
case (APP_MODE_COMPASS): {
|
||||||
//Heading:
|
//Heading:
|
||||||
_compassAngleText = if (GVAR(settingUseMils)) then {
|
_compassAngleText = if (GVAR(settingUseMils)) then {
|
||||||
[(floor ((6400 / 360) * (getDir ACE_player))), 4, 0] call CBA_fnc_formatNumber;
|
[(floor ((6400 / 360) * (([ACE_player] call CBA_fnc_headDir) select 0))), 4, 0] call CBA_fnc_formatNumber;
|
||||||
} else {
|
} else {
|
||||||
([(floor (getDir ACE_player)), 3, 1] call CBA_fnc_formatNumber) + "°" //degree symbol is in UTF-8
|
([(floor (([ACE_player] call CBA_fnc_headDir) select 0)), 3, 1] call CBA_fnc_formatNumber) + "°" //degree symbol is in UTF-8
|
||||||
};
|
};
|
||||||
(_display displayCtrl IDC_MODECOMPASS_HEADING) ctrlSetText _compassAngleText;
|
(_display displayCtrl IDC_MODECOMPASS_HEADING) ctrlSetText _compassAngleText;
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ class controlsBackground {
|
|||||||
};
|
};
|
||||||
class RangefinderConnectedIcon: RscPicture {
|
class RangefinderConnectedIcon: RscPicture {
|
||||||
idc = IDC_RANGEFINDERCONNECTEDICON;
|
idc = IDC_RANGEFINDERCONNECTEDICON;
|
||||||
text = "\A3\ui_f\data\igui\rscingameui\rscoptics\laser_designator_iconLaserOn.paa";
|
text = QUOTE(PATHTOF(images\icon_menuLaser.paa));
|
||||||
x = X_PART(6.35);
|
x = X_PART(6.35);
|
||||||
y = Y_PART(0.1);
|
y = Y_PART(0.1);
|
||||||
w = W_PART(2.7);
|
w = W_PART(2.7);
|
||||||
@ -486,7 +486,7 @@ class controls {
|
|||||||
onbuttonclick = QUOTE([5] call FUNC(saveCurrentAndSetNewMode));
|
onbuttonclick = QUOTE([5] call FUNC(saveCurrentAndSetNewMode));
|
||||||
};
|
};
|
||||||
class ButtonBL: ButtonTL {
|
class ButtonBL: ButtonTL {
|
||||||
text = "\A3\ui_f\data\igui\rscingameui\rscoptics\laser_designator_iconLaserOn.paa";
|
text = QUOTE(PATHTOF(images\icon_menuLaser.paa));
|
||||||
x = W_PART(3);
|
x = W_PART(3);
|
||||||
y = H_PART(10.5);
|
y = H_PART(10.5);
|
||||||
onbuttonclick = QUOTE(_this call FUNC(appMenuButtonConnectRangefinder));
|
onbuttonclick = QUOTE(_this call FUNC(appMenuButtonConnectRangefinder));
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
addons/microdagr/images/icon_menuLaser.paa
Normal file
BIN
addons/microdagr/images/icon_menuLaser.paa
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user