Pixel-Composer/scripts/node_FLIP_destroy/node_FLIP_destroy.gml

77 lines
2.5 KiB
Plaintext
Raw Normal View History

2024-03-21 13:57:44 +01:00
function Node_FLIP_Destroy(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Destroy Fluid";
color = COLORS.node_blend_fluid;
icon = THEME.fluid_sim;
2024-03-28 14:18:02 +01:00
setDimension(96, 96);
2024-03-21 13:57:44 +01:00
manual_ungroupable = false;
2024-08-08 06:57:51 +02:00
inputs[0] = nodeValue_Fdomain("Domain", self, noone )
2024-03-21 13:57:44 +01:00
.setVisible(true, true);
2024-08-12 13:42:05 +02:00
inputs[1] = nodeValue_Vec2("Position", self, [ 0, 0 ] )
2024-03-21 13:57:44 +01:00
.setUnitRef(function(index) { return getDimension(); });
2024-08-08 06:57:51 +02:00
inputs[2] = nodeValue_Enum_Scroll("Shape", self, 0 , [ new scrollItem("Circle", s_node_shape_circle, 0), new scrollItem("Rectangle", s_node_shape_rectangle, 0), ]);
2024-03-21 13:57:44 +01:00
2024-08-08 06:57:51 +02:00
inputs[3] = nodeValue_Float("Radius", self, 4 )
2024-03-21 13:57:44 +01:00
.setDisplay(VALUE_DISPLAY.slider, { range: [1, 16, 0.1] });
2024-08-12 13:42:05 +02:00
inputs[4] = nodeValue_Vec2("Size", self, [ 4, 4 ] );
2024-03-21 13:57:44 +01:00
2024-08-08 06:57:51 +02:00
inputs[5] = nodeValue_Float("Ratio", self, 1 )
2024-03-21 13:57:44 +01:00
.setDisplay(VALUE_DISPLAY.slider);
2024-08-08 06:57:51 +02:00
outputs[0] = nodeValue_Output("Domain", self, VALUE_TYPE.fdomain, noone );
2024-03-21 13:57:44 +01:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) { #region
var _pos = getInputData(1);
var _shp = getInputData(2);
var _rad = getInputData(3);
var _siz = getInputData(4);
var _px = _x + _pos[0] * _s;
var _py = _y + _pos[1] * _s;
var _r = _rad * _s;
var _w = _siz[0] * _s;
var _h = _siz[1] * _s;
draw_set_color(COLORS._main_accent);
if(_shp == 0) draw_circle(_px, _py, _r, true);
else if(_shp == 1) draw_rectangle(_px - _w, _py - _h, _px + _w, _py + _h, true);
2024-08-08 06:57:51 +02:00
if(inputs[1].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny)) active = false;
2024-03-21 13:57:44 +01:00
} #endregion
static step = function() { #region
var _shp = getInputData(2);
2024-08-08 06:57:51 +02:00
inputs[3].setVisible(_shp == 0);
inputs[4].setVisible(_shp == 1);
2024-03-21 13:57:44 +01:00
} #endregion
static update = function() { #region
var domain = getInputData(0);
if(!instance_exists(domain)) return;
2024-08-08 06:57:51 +02:00
outputs[0].setValue(domain);
2024-03-21 13:57:44 +01:00
var _pos = getInputData(1);
var _shp = getInputData(2);
var _rad = getInputData(3);
var _siz = getInputData(4);
var _rat = getInputData(5);
if(_shp == 0) FLIP_deleteParticle_circle(domain.domain, _pos[0], _pos[1], _rad, _rat);
else if(_shp == 1) FLIP_deleteParticle_rectangle(domain.domain, _pos[0], _pos[1], _siz[0], _siz[1], _rat);
} #endregion
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
draw_sprite_fit(s_node_fluidSim_destroy_fluid, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
}
2024-03-22 09:44:11 +01:00
static getPreviewValues = function() { var domain = getInputData(0); return instance_exists(domain)? domain.domain_preview : noone; }
2024-03-21 13:57:44 +01:00
}