2015-03-21 01:17:49 +00:00
|
|
|
//The disarming dialog
|
|
|
|
//Meant to mimic the real BIS inventory (so people understand how to use it)
|
|
|
|
|
2015-02-23 00:44:33 +00:00
|
|
|
class RscText;
|
2015-02-28 00:43:42 +00:00
|
|
|
class RscPicture;
|
|
|
|
class RscActiveText;
|
2015-02-23 00:44:33 +00:00
|
|
|
class RscListBox;
|
|
|
|
|
2015-03-21 01:27:04 +00:00
|
|
|
//Use the definese from
|
|
|
|
#define X_BIS(num) (num * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2))
|
|
|
|
#define Y_BIS(num) (num * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - (((safezoneW / safezoneH) min 1.2) / 1.2))/2))
|
|
|
|
#define W_BIS(num) (num * (((safezoneW / safezoneH) min 1.2) / 40))
|
|
|
|
#define H_BIS(num) (num * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25))
|
|
|
|
|
|
|
|
#define X_MAKEITBIGGA(num) (num * (safeZoneH / 40) + (safezoneX + (safezoneW - safeZoneH)/2))
|
|
|
|
#define Y_MAKEITBIGGA(num) (num * (safeZoneH / 30) + (safezoneY + (safezoneH - (safeZoneH / 1.2))/2))
|
|
|
|
#define W_MAKEITBIGGA(num) (num * (safeZoneH / 40))
|
|
|
|
#define H_MAKEITBIGGA(num) (num * (safeZoneH / 30))
|
|
|
|
|
2023-11-05 18:36:00 +00:00
|
|
|
#define X_PART(num) QUOTE(linearConversion [ARR_5(0,2,(missionNamespace getVariable [ARR_2(QUOTE(QEGVAR(inventory,inventoryDisplaySize)),0)]),X_BIS(num),X_MAKEITBIGGA(num))])
|
|
|
|
#define Y_PART(num) QUOTE(linearConversion [ARR_5(0,2,(missionNamespace getVariable [ARR_2(QUOTE(QEGVAR(inventory,inventoryDisplaySize)),0)]),Y_BIS(num),Y_MAKEITBIGGA(num))])
|
|
|
|
#define W_PART(num) QUOTE(linearConversion [ARR_5(0,2,(missionNamespace getVariable [ARR_2(QUOTE(QEGVAR(inventory,inventoryDisplaySize)),0)]),W_BIS(num),W_MAKEITBIGGA(num))])
|
|
|
|
#define H_PART(num) QUOTE(linearConversion [ARR_5(0,2,(missionNamespace getVariable [ARR_2(QUOTE(QEGVAR(inventory,inventoryDisplaySize)),0)]),H_BIS(num),H_MAKEITBIGGA(num))])
|
2015-03-21 01:27:04 +00:00
|
|
|
|
2015-02-28 00:43:42 +00:00
|
|
|
class GVAR(remoteInventory) {
|
2015-02-23 00:44:33 +00:00
|
|
|
idd = -1;
|
|
|
|
movingEnable = 0;
|
|
|
|
enableSimulation = 1;
|
|
|
|
enableDisplay = 1;
|
2015-02-28 00:43:42 +00:00
|
|
|
onLoad = "uiNamespace setVariable ['ACE_remoteInventory', _this select 0];";
|
2015-02-23 00:44:33 +00:00
|
|
|
duration = 2147483647;
|
|
|
|
fadein = 0;
|
|
|
|
fadeout = 0;
|
|
|
|
|
2015-03-21 01:17:49 +00:00
|
|
|
class Colors {
|
2015-11-30 16:27:09 +00:00
|
|
|
dragValidBgr[] = {"(profilenamespace getVariable ['IGUI_TEXT_RGB_R',0])","(profilenamespace getVariable ['IGUI_TEXT_RGB_G',1])","(profilenamespace getVariable ['IGUI_TEXT_RGB_B',1])",0.5};
|
|
|
|
dragInvalidBgr[] = {"(profilenamespace getVariable ['IGUI_ERROR_RGB_R',0.8])","(profilenamespace getVariable ['IGUI_ERROR_RGB_G',0.0])","(profilenamespace getVariable ['IGUI_ERROR_RGB_B',0.0])",0.5};
|
|
|
|
dragValidBar[] = {"(profilenamespace getVariable ['IGUI_WARNING_RGB_R',0.8])","(profilenamespace getVariable ['IGUI_WARNING_RGB_G',0.5])","(profilenamespace getVariable ['IGUI_WARNING_RGB_B',0.0])",0.5};
|
|
|
|
dragInvalidBar[] = {"(profilenamespace getVariable ['IGUI_ERROR_RGB_R',0.8])","(profilenamespace getVariable ['IGUI_ERROR_RGB_G',0.0])","(profilenamespace getVariable ['IGUI_ERROR_RGB_B',0.0])",0.5};
|
|
|
|
progressBar[] = {"(profilenamespace getVariable ['IGUI_TEXT_RGB_R',0])","(profilenamespace getVariable ['IGUI_TEXT_RGB_G',1])","(profilenamespace getVariable ['IGUI_TEXT_RGB_B',1])",1};
|
|
|
|
progressBarBgr[] = {"(profilenamespace getVariable ['IGUI_BCG_RGB_R',0])","(profilenamespace getVariable ['IGUI_BCG_RGB_G',1])","(profilenamespace getVariable ['IGUI_BCG_RGB_B',1])",0.75};
|
|
|
|
highlight[] = {"(profilenamespace getVariable ['IGUI_TEXT_RGB_R',0])","(profilenamespace getVariable ['IGUI_TEXT_RGB_G',1])","(profilenamespace getVariable ['IGUI_TEXT_RGB_B',1])",0.5};
|
2015-02-28 00:43:42 +00:00
|
|
|
};
|
|
|
|
|
2015-02-23 00:44:33 +00:00
|
|
|
class controlsBackground {};
|
|
|
|
|
|
|
|
class controls {
|
|
|
|
class CA_ContainerBackground: RscText {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
|
|
|
x = X_PART(1);
|
|
|
|
y = Y_PART(1);
|
|
|
|
w = W_PART(12);
|
|
|
|
h = H_PART(22.5);
|
2015-02-23 00:44:33 +00:00
|
|
|
colorBackground[] = {0.05,0.05,0.05,0.7};
|
|
|
|
};
|
2015-02-28 00:43:42 +00:00
|
|
|
class CA_PlayerBackground: RscText {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
|
|
|
x = X_PART(14.6);
|
|
|
|
y = Y_PART(2);
|
|
|
|
w = W_PART(24.4);
|
|
|
|
h = H_PART(21.5);
|
2015-02-28 00:43:42 +00:00
|
|
|
colorBackground[] = {0.05,0.05,0.05,0.7};
|
|
|
|
};
|
|
|
|
class TitleBackground: RscText {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
|
|
|
x = X_PART(14.6);
|
|
|
|
y = Y_PART(1);
|
|
|
|
w = W_PART(24.4);
|
|
|
|
h = H_PART(1);
|
2015-02-28 00:43:42 +00:00
|
|
|
colorBackground[] = {0.1,0.1,0.1,1};
|
|
|
|
};
|
|
|
|
class PlayersName: RscText {
|
|
|
|
idc = 111;
|
2015-03-21 01:27:04 +00:00
|
|
|
// text = "Player name here:";
|
|
|
|
x = X_PART(15.6);
|
|
|
|
y = Y_PART(1);
|
|
|
|
w = W_PART(19.8);
|
|
|
|
h = H_PART(1);
|
2015-02-28 00:43:42 +00:00
|
|
|
};
|
|
|
|
class RankBackground: RscText {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
|
|
|
x = X_PART(15.1);
|
|
|
|
y = Y_PART(1.25);
|
|
|
|
w = W_PART(0.6);
|
|
|
|
h = H_PART(0.6);
|
2015-02-28 00:43:42 +00:00
|
|
|
colorBackground[] = {1,1,1,0.2};
|
|
|
|
};
|
|
|
|
class RankPicture: RscPicture {
|
|
|
|
idc = 1203;
|
2015-03-21 01:27:04 +00:00
|
|
|
// text = "\A3\Ui_f\data\GUI\Cfg\Ranks\corporal_gs.paa";
|
|
|
|
x = X_PART(15.1);
|
|
|
|
y = Y_PART(1.25);
|
|
|
|
w = W_PART(0.6);
|
|
|
|
h = H_PART(0.6);
|
2015-02-28 00:43:42 +00:00
|
|
|
};
|
|
|
|
class ButtonBack: RscActiveText {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
2015-02-28 00:43:42 +00:00
|
|
|
style = 48;
|
|
|
|
color[] = {1,1,1,0.7};
|
|
|
|
text = "\A3\Ui_f\data\GUI\Rsc\RscDisplayArcadeMap\icon_exit_cross_ca.paa";
|
2015-03-21 01:27:04 +00:00
|
|
|
x = X_PART(38);
|
|
|
|
y = Y_PART(1);
|
|
|
|
w = W_PART(1);
|
|
|
|
h = H_PART(1);
|
2015-02-28 00:43:42 +00:00
|
|
|
colorText[] = {1,1,1,0.7};
|
|
|
|
colorActive[] = {1,1,1,1};
|
2015-03-21 01:47:34 +00:00
|
|
|
tooltip = "$STR_DISP_OPT_CLOSE";
|
|
|
|
onButtonClick = "closeDialog 0";
|
2015-02-28 00:43:42 +00:00
|
|
|
};
|
|
|
|
class ExternalContainerBackground: RscPicture {
|
|
|
|
colorText[] = {1,1,1,0.1};
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
|
|
|
x = X_PART(1.5);
|
|
|
|
y = Y_PART(3.7);
|
|
|
|
w = W_PART(11);
|
|
|
|
h = H_PART(18.4);
|
2015-02-28 00:43:42 +00:00
|
|
|
};
|
|
|
|
class PlayerContainerBackground: ExternalContainerBackground {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
|
|
|
x = X_PART(15.1);
|
|
|
|
y = Y_PART(6);
|
|
|
|
w = W_PART(11);
|
|
|
|
h = H_PART(14);
|
2015-02-28 00:43:42 +00:00
|
|
|
};
|
|
|
|
class GroundTitleBackground: RscText {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
|
|
|
x = X_PART(1);
|
|
|
|
y = Y_PART(1);
|
|
|
|
w = W_PART(12);
|
|
|
|
h = H_PART(1);
|
2015-02-28 00:43:42 +00:00
|
|
|
colorBackground[] = {0.1,0.1,0.1,1};
|
|
|
|
};
|
|
|
|
class GroundName: RscText {
|
2015-03-21 01:27:04 +00:00
|
|
|
idc = -1;
|
2015-11-30 16:00:32 +00:00
|
|
|
text = "$STR_cfgVehicles_WeaponHolder0"; //"ground"
|
2015-03-21 01:27:04 +00:00
|
|
|
x = X_PART(1);
|
|
|
|
y = Y_PART(1);
|
|
|
|
w = W_PART(12);
|
|
|
|
h = H_PART(1);
|
2015-02-23 00:44:33 +00:00
|
|
|
};
|
|
|
|
class GroundContainer: RscListBox {
|
|
|
|
idc = 632;
|
2015-03-21 01:17:49 +00:00
|
|
|
sizeEx = "0.8 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
|
|
|
|
sizeEx2 = "0.8 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
|
|
|
|
rowHeight = "1.75 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
|
2015-02-28 00:43:42 +00:00
|
|
|
canDrag = 0;
|
2015-02-23 00:44:33 +00:00
|
|
|
colorText[] = {1,1,1,1};
|
|
|
|
colorBackground[] = {0,0,0,0};
|
2015-02-28 00:43:42 +00:00
|
|
|
itemBackground[] = {1,1,1,0.2};
|
2015-02-23 00:44:33 +00:00
|
|
|
itemSpacing = 0.001;
|
2015-03-21 01:27:04 +00:00
|
|
|
x = X_PART(1.5);
|
|
|
|
y = Y_PART(2.5);
|
|
|
|
w = W_PART(11);
|
2015-03-21 01:48:39 +00:00
|
|
|
h = H_PART(21);
|
2015-02-23 00:44:33 +00:00
|
|
|
};
|
2015-02-28 00:43:42 +00:00
|
|
|
class UniformContainer: GroundContainer {
|
2015-02-23 00:44:33 +00:00
|
|
|
idc = 633;
|
2015-02-28 00:43:42 +00:00
|
|
|
canDrag = 1;
|
2015-03-21 01:27:04 +00:00
|
|
|
x = X_PART(15.1);
|
2015-02-23 00:44:33 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|