2023-03-19 09:17:39 +01:00
|
|
|
enum DIMENSION {
|
|
|
|
width,
|
|
|
|
height
|
|
|
|
}
|
|
|
|
|
2023-05-03 21:42:17 +02:00
|
|
|
function vectorBox(_size, _onModify, _unit = noone) : widget() constructor {
|
2022-01-13 05:24:03 +01:00
|
|
|
size = _size;
|
|
|
|
onModify = _onModify;
|
2022-12-27 04:00:50 +01:00
|
|
|
unit = _unit;
|
2023-05-03 21:42:17 +02:00
|
|
|
current_value = [];
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2022-12-27 04:00:50 +01:00
|
|
|
linked = false;
|
|
|
|
b_link = button(function() { linked = !linked; });
|
|
|
|
b_link.icon = THEME.value_link;
|
|
|
|
|
|
|
|
onModifyIndex = function(index, val) {
|
2023-05-03 21:42:17 +02:00
|
|
|
var v = toNumber(val);
|
|
|
|
|
2022-12-27 04:00:50 +01:00
|
|
|
if(linked) {
|
2023-02-14 05:32:32 +01:00
|
|
|
var modi = false;
|
2023-05-07 20:55:13 +02:00
|
|
|
for( var i = 0; i < size; i++ ) {
|
|
|
|
tb[i]._input_text = v;
|
|
|
|
|
|
|
|
if(is_callable(onModify))
|
|
|
|
modi |= onModify(i, v);
|
|
|
|
}
|
2023-02-14 05:32:32 +01:00
|
|
|
return modi;
|
2022-12-27 04:00:50 +01:00
|
|
|
}
|
|
|
|
|
2023-05-07 20:55:13 +02:00
|
|
|
if(is_callable(onModify))
|
|
|
|
return onModify(index, v);
|
|
|
|
return noone;
|
2022-12-27 04:00:50 +01:00
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
|
|
|
|
axis = [ "x", "y", "z", "w" ];
|
2023-02-14 05:32:32 +01:00
|
|
|
onModifySingle[0] = function(val) { return onModifyIndex(0, val); }
|
|
|
|
onModifySingle[1] = function(val) { return onModifyIndex(1, val); }
|
|
|
|
onModifySingle[2] = function(val) { return onModifyIndex(2, val); }
|
|
|
|
onModifySingle[3] = function(val) { return onModifyIndex(3, val); }
|
2022-01-13 05:24:03 +01:00
|
|
|
|
|
|
|
extras = -1;
|
|
|
|
|
2023-04-16 15:26:52 +02:00
|
|
|
for(var i = 0; i < 4; i++) {
|
2023-05-03 21:42:17 +02:00
|
|
|
tb[i] = new textBox(TEXTBOX_INPUT.number, onModifySingle[i]);
|
2022-01-13 05:24:03 +01:00
|
|
|
tb[i].slidable = true;
|
|
|
|
}
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
static setSlideSpeed = function(speed) {
|
|
|
|
for(var i = 0; i < size; i++)
|
|
|
|
tb[i].slide_speed = speed;
|
|
|
|
}
|
|
|
|
|
2023-01-25 06:49:00 +01:00
|
|
|
static setInteract = function(interactable) {
|
|
|
|
self.interactable = interactable;
|
|
|
|
b_link.interactable = interactable;
|
|
|
|
|
|
|
|
if(extras)
|
|
|
|
extras.interactable = interactable;
|
|
|
|
|
|
|
|
for( var i = 0; i < size; i++ )
|
|
|
|
tb[i].interactable = interactable;
|
|
|
|
}
|
|
|
|
|
2023-01-17 08:11:55 +01:00
|
|
|
static register = function(parent = noone) {
|
|
|
|
b_link.register(parent);
|
|
|
|
|
|
|
|
for( var i = 0; i < size; i++ )
|
|
|
|
tb[i].register(parent);
|
|
|
|
|
|
|
|
if(extras)
|
|
|
|
extras.register(parent);
|
|
|
|
|
|
|
|
if(unit != noone && unit.reference != noone)
|
|
|
|
unit.triggerButton.register(parent);
|
|
|
|
}
|
|
|
|
|
2022-01-24 02:21:25 +01:00
|
|
|
static draw = function(_x, _y, _w, _h, _data, _m) {
|
2023-01-17 08:11:55 +01:00
|
|
|
x = _x;
|
|
|
|
y = _y;
|
|
|
|
w = _w;
|
|
|
|
h = _h;
|
|
|
|
|
2023-03-19 09:17:39 +01:00
|
|
|
if(!is_array(_data)) return;
|
2023-05-03 21:42:17 +02:00
|
|
|
current_value = _data;
|
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
if(extras && instanceof(extras) == "buttonClass") {
|
2023-03-25 12:27:04 +01:00
|
|
|
extras.setActiveFocus(hover, active);
|
2022-11-18 03:20:31 +01:00
|
|
|
extras.draw(_x + _w - ui(32), _y + _h / 2 - ui(32 / 2), ui(32), ui(32), _m, THEME.button_hide);
|
2022-11-03 11:44:49 +01:00
|
|
|
_w -= ui(40);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
2022-12-27 04:00:50 +01:00
|
|
|
if(unit != noone && unit.reference != noone) {
|
|
|
|
_w += ui(4);
|
|
|
|
|
2023-03-25 12:27:04 +01:00
|
|
|
unit.triggerButton.setActiveFocus(ihover, iactive);
|
2022-12-27 04:00:50 +01:00
|
|
|
unit.draw(_x + _w - ui(32), _y + _h / 2 - ui(32 / 2), ui(32), ui(32), _m);
|
|
|
|
_w -= ui(40);
|
|
|
|
}
|
|
|
|
|
2023-03-25 12:27:04 +01:00
|
|
|
b_link.setActiveFocus(hover, active);
|
2022-12-27 04:00:50 +01:00
|
|
|
b_link.icon_index = linked;
|
|
|
|
b_link.icon_blend = linked? COLORS._main_accent : COLORS._main_icon;
|
2023-06-04 18:28:29 +02:00
|
|
|
b_link.tooltip = linked? __txt("Unlink values") : __txt("Link values");
|
2022-12-27 04:00:50 +01:00
|
|
|
|
|
|
|
var bx = _x;
|
|
|
|
var by = _y + _h / 2 - ui(32 / 2);
|
2022-12-27 13:30:02 +01:00
|
|
|
b_link.draw(bx + ui(4), by + ui(4), ui(24), ui(24), _m, THEME.button_hide);
|
2022-12-27 04:00:50 +01:00
|
|
|
|
|
|
|
_x += ui(28);
|
|
|
|
_w -= ui(28);
|
|
|
|
|
2023-01-25 06:49:00 +01:00
|
|
|
var sz = min(size, array_length(_data));
|
|
|
|
var ww = _w / sz;
|
|
|
|
for(var i = 0; i < sz; i++) {
|
2023-03-25 12:27:04 +01:00
|
|
|
tb[i].setActiveFocus(hover, active);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
|
|
|
var bx = _x + ww * i;
|
2022-11-03 11:44:49 +01:00
|
|
|
tb[i].draw(bx + ui(24), _y, ww - ui(24), _h, _data[i], _m);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2022-11-18 03:20:31 +01:00
|
|
|
draw_set_text(f_p0, fa_left, fa_center, COLORS._main_text_sub);
|
2022-11-03 11:44:49 +01:00
|
|
|
draw_text(bx + ui(8), _y + _h / 2, axis[i]);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
2023-01-17 08:11:55 +01:00
|
|
|
|
|
|
|
resetFocus();
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
2023-05-03 21:42:17 +02:00
|
|
|
|
|
|
|
static apply = function() {
|
|
|
|
for( var i = 0; i < size; i++ ) {
|
|
|
|
tb[i].apply();
|
2023-05-07 20:55:13 +02:00
|
|
|
current_value[i] = toNumber(tb[i]._input_text);
|
2023-05-03 21:42:17 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|