Pixel-Composer/scripts/node_lua_global/node_lua_global.gml

46 lines
1.4 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Lua_Global(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2023-01-25 06:49:00 +01:00
name = "Lua Global";
2023-01-04 02:30:04 +01:00
preview_channel = 1;
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Lua code", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "", o_dialog_lua_reference)
2023-09-07 20:59:14 +02:00
.setDisplay(VALUE_DISPLAY.codeLUA);
2023-01-04 02:30:04 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 1] = nodeValue("Run order", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
2023-01-04 02:30:04 +01:00
.setDisplay(VALUE_DISPLAY.enum_scroll, [ "On start", "Every frame" ]);
2023-02-14 05:32:32 +01:00
inputs[| 2] = nodeValue("Execution thread", self, JUNCTION_CONNECT.input, VALUE_TYPE.node, noone)
2023-01-04 02:30:04 +01:00
.setVisible(false, true);
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Execution thread", self, JUNCTION_CONNECT.output, VALUE_TYPE.node, noone );
2023-01-04 02:30:04 +01:00
input_display_list = [
2024-01-23 14:40:03 +01:00
["Main", false], 2, 1, 0,
2023-01-09 03:14:20 +01:00
];
2023-01-04 02:30:04 +01:00
2024-01-23 14:40:03 +01:00
lua_state = lua_create();
2023-03-07 14:29:47 +01:00
is_beginning = false;
2023-01-04 02:30:04 +01:00
2023-11-23 02:32:26 +01:00
static getState = function() { #region
if(inputs[| 2].value_from == noone) return lua_state;
2023-01-04 02:30:04 +01:00
return inputs[| 2].value_from.node.getState();
2023-11-23 02:32:26 +01:00
} #endregion
2023-01-04 02:30:04 +01:00
2023-11-23 02:32:26 +01:00
static update = function(frame = CURRENT_FRAME) { #region
var _code = getInputData(0);
var _type = getInputData(1);
2024-01-23 14:40:03 +01:00
update_on_frame = _type;
2023-01-04 02:30:04 +01:00
2023-03-08 07:35:51 +01:00
lua_projectData(getState());
2024-01-23 14:40:03 +01:00
try { lua_add_code(getState(), _code); }
catch(e) { noti_warning(exception_print(e),, self); }
2023-11-23 02:32:26 +01:00
} #endregion
2023-03-19 09:17:39 +01:00
2024-05-23 14:40:30 +02:00
static onDestroy = function() {
2023-03-08 07:35:51 +01:00
lua_state_destroy(lua_state);
2024-05-23 14:40:30 +02:00
}
static onRestore = function() {
lua_state = lua_create();
}
2023-01-04 02:30:04 +01:00
}