mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 14:33:53 +01:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
function Node_Spout_Send(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|
name = "Spout Send";
|
|
|
|
newInput(0, nodeValue_Text("Sender name", self, "PixelComposer"));
|
|
|
|
newInput(1, nodeValue_Surface("Surface", self));
|
|
|
|
newOutput(0, nodeValue_Output("Surface", self, VALUE_TYPE.surface, noone))
|
|
.setVisible(false);
|
|
|
|
spoutIndex = spoutSenderInit();
|
|
if(spoutIndex == noone) {
|
|
var _txt = "Spout initialize error";
|
|
logNode(_txt); noti_warning(_txt);
|
|
}
|
|
|
|
surf_buff = buffer_create(1, buffer_grow, 1);
|
|
|
|
static update = function() { #region
|
|
if(spoutIndex == noone) return;
|
|
|
|
var _name = inputs[0].getValue();
|
|
var _surf = inputs[1].getValue();
|
|
|
|
if(!is_surface(_surf)) return;
|
|
|
|
var _sw = surface_get_width_safe(_surf);
|
|
var _sh = surface_get_height_safe(_surf);
|
|
|
|
buffer_resize(surf_buff, _sw * _sh * 4);
|
|
buffer_get_surface(surf_buff, _surf, 0);
|
|
|
|
spoutSetSenderName(spoutIndex, _name);
|
|
spoutSendPixels(spoutIndex, buffer_get_address(surf_buff), _sw, _sh);
|
|
|
|
outputs[0].setValue(_surf);
|
|
} #endregion
|
|
} |