CT OBJECT CONTAINER: Difference between revisions
(page overhaul) Tag: Removed redirect |
m (Text replacement - "{{CT|intro" to "Category: Control Types {{CT|intro ") |
||
Line 1: | Line 1: | ||
[[Category: Control Types]] | |||
{{CT|intro | {{CT|intro | ||
|macro = CT_OBJECT_CONTAINER | |macro = CT_OBJECT_CONTAINER | ||
|value = 82 | |value = 82 |
Revision as of 15:30, 29 November 2020
Control Types / MACRO (TYPE VALUE) | |
---|---|
Text/Image/Video |
CT_STATIC (0) | CT_EDIT (2) | CT_HTML (9) | CT_STRUCTURED_TEXT (13) |
Buttons |
CT_BUTTON (1) | CT_ACTIVETEXT (11) | CT_SHORTCUTBUTTON (16) | CT_CHECKBOX (77) | CT_XBUTTON (41) |
Lists |
CT_COMBO (4) | CT_TOOLBOX (6) | CT_CHECKBOXES (7) | CT_TREE (12) | CT_CONTROLS_TABLE (19) | CT_XCOMBO (44) | CT_LISTBOX (5) | CT_LISTNBOX (102) | CT_LISTNBOX_CHECKABLE (104) | CT_XLISTBOX (45) |
3D Objects |
CT_OBJECT (80) | CT_OBJECT_ZOOM (81) | CT_OBJECT_CONTAINER (82) | CT_OBJECT_CONT_ANIM (83) |
Maps |
CT_MAP (100) | CT_MAP_MAIN (101) |
Meta |
CT_SLIDER (3) | CT_XSLIDER (43) | CT_PROGRESS (8) | CT_CONTROLS_GROUP (15) | CT_WEBBROWSER (106) | CT_EXTENSION (107) |
Menu |
CT_CONTEXT_MENU (14) | CT_MENU (46) | CT_MENU_STRIP (47) |
Unknown |
CT_STATIC_SKEW (10) | CT_HITZONES (17) | CT_VEHICLETOGGLES (18) | CT_XKEYDESC (40) | CT_ANIMATED_TEXTURE (45) | CT_LINEBREAK (98) | CT_USER (99) | CT_ITEMSLOT (103) | CT_VEHICLE_DIRECTION (105) |
Introduction
See CT_OBJECT for more information on the basics of object dialogs. In addition to CT_OBJECT this control type supports the addition of controls inside of a predefined area of the object which means that if the object moves so do the controls inside of it.
Related commands & functions
Related User Interface Eventhandlers
Alphabetical Order
#define CT_OBJECT_CONTAINER 82
A
Areas
- Type
- Class
- Description
- n/a
class Areas
{
class Usertexture
{
selection = "display";
class Controls
{
};
};
};
D
direction
- Type
- Array
- Description
- n/a
direction[] = {0,0,1};
E
enableZoom
- Type
- Number
- Description
- n/a
enableZoom = 1;
I
inBack
- Type
- Number
- Description
- n/a
inBack = 0;
M
model
- Type
- String
- Description
- n/a
model = "\core\notepad\notepad.p3d";
P
paper1
- Type
- String
- Description
- n/a
paper1 = "#(argb,8,8,3)color(1,1,1,1)";
paper2
- Type
- String
- Description
- n/a
paper2 = "#(argb,8,8,3)color(1,1,1,1)";
paper3
- Type
- String
- Description
- n/a
paper3 = "#(argb,8,8,3)color(1,1,1,1)";
paper4
- Type
- String
- Description
- n/a
paper4 = "#(argb,8,8,3)color(1,1,1,1)";
paper5
- Type
- String
- Description
- n/a
paper5 = "#(argb,8,8,3)color(1,1,1,1)";
paper6
- Type
- String
- Description
- n/a
paper6 = "#(argb,8,8,3)color(1,1,1,1)";
paper7
- Type
- String
- Description
- n/a
paper7 = "#(argb,8,8,3)color(1,1,1,1)";
position
- Type
- Array
- Description
- n/a
position[] = {-0.08,0,0.32};
positionBack
- Type
- Array
- Description
- n/a
positionBack[] = {-0.325,0.197,0.8};
S
scale
- Type
- Number
- Description
- n/a
scale = 1.2;
selectionPaper
- Type
- String
- Description
- n/a
selectionPaper = "paper";
U
up
- Type
- Array
- Description
- n/a
up[] = {0,1,0};
X
xBack
- Type
- String
- Description
- n/a
xBack = "25 * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)";
Y
yBack
- Type
- String
- Description
- n/a
yBack = "12 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - (((safezoneW / safezoneH) min 1.2) / 1.2))/2)";
Z
z
- Type
- Number
- Description
- n/a
z = 1;
zBack
- Type
- Number
- Description
- n/a
zBack = 2;
zoomDuration
- Type
- Number
- Description
- n/a
zoomDuration = 0.5;
Default Classes
None
Other Examples
class MyDrink
{
idd = -1;
movingEnable = 0;
enableSimulation = 1;
class Objects
{
class Can
{
onObjectMoved = "systemChat str _this";
idc = -1;
type = 82;
model = "\A3\Structures_F\Items\Food\Can_V3_F.p3d";
scale = 1;
direction[] = {0, -0.35, -0.65};
up[] = {0, 0.65, -0.35};
//position[] = {0,0,0.2}; optional
x = 0.5;
y = 0.5;
z = 0.2;
//positionBack[] = {0,0,1.2}; optional
xBack = 0.5;
yBack = 0.5;
zBack = 1.2;
inBack = 1;
enableZoom = 1;
zoomDuration = 0.001;
class Areas
{
class Something1
{
selection = "Area_1";
// game will expect "Area_1 TL", "Area_1 TR", "Area_1 BL" memory points (Top Left, Top Right, Bottom Left) to be present in memory LOD. Basing on that surface will be created for rendering your controls
// Only controls are supported (no object in object)
class Controls
{
};
};
// Multiple areas are supported
class Something2
{
selection = "Area_2";
// game will expect "Area_2 TL", "Area_2 TR", "Area_2 BL" memory points (Top Left, Top Right, Bottom Left) to be present in memory LOD. Basing on that surface will be created for rendering your controls
class Controls
{
};
};
};
};
};
};