Pixel-Composer/scripts/node_particle/node_particle.gml

64 lines
2 KiB
Text
Raw Normal View History

2022-12-16 15:18:09 +07:00
function Node_Particle(_x, _y, _group = -1) : Node_VFX_Spawner_Base(_x, _y, _group) constructor {
2022-01-13 11:24:03 +07:00
name = "Particle";
use_cache = true;
2022-12-13 15:20:36 +07:00
inputs[| input_len + 0] = nodeValue(input_len + 0, "Output dimension", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, def_surf_size2)
2022-01-19 09:05:13 +07:00
.setDisplay(VALUE_DISPLAY.vector);
2022-01-13 11:24:03 +07:00
2022-12-13 15:20:36 +07:00
inputs[| input_len + 1] = nodeValue(input_len + 1, "Round position", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true );
2022-01-13 11:24:03 +07:00
2022-12-13 15:20:36 +07:00
inputs[| input_len + 2] = nodeValue(input_len + 2, "Blend mode", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0 )
2022-01-19 09:05:13 +07:00
.setDisplay(VALUE_DISPLAY.enum_scroll, [ "Normal", "Additive" ]);
2022-01-13 11:24:03 +07:00
2022-09-21 11:09:40 +07:00
outputs[| 0] = nodeValue(0, "Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, PIXEL_SURFACE);
2022-01-13 11:24:03 +07:00
2022-12-13 15:20:36 +07:00
array_insert(input_display_list, 0, ["Output", true], input_len + 0);
array_push(input_display_list, input_len + 1, input_len + 2);
2022-01-13 11:24:03 +07:00
2022-12-13 15:20:36 +07:00
def_surface = -1;
2022-12-10 11:06:01 +07:00
2022-12-13 15:20:36 +07:00
static onStep = function() {
if(!ANIMATOR.frame_progress) return;
2022-01-13 11:24:03 +07:00
2022-12-13 15:20:36 +07:00
if(recoverCache()) {
triggerRender();
return;
2022-01-13 11:24:03 +07:00
}
2022-12-13 15:20:36 +07:00
if(!ANIMATOR.is_playing) return;
2022-01-13 11:24:03 +07:00
2022-12-13 15:20:36 +07:00
if(ANIMATOR.current_frame == 0) {
reset();
2022-12-16 15:18:09 +07:00
runVFX(ANIMATOR.current_frame);
2022-12-13 15:20:36 +07:00
} else if(cached_output[ANIMATOR.current_frame - 1] != 0) {
2022-12-16 15:18:09 +07:00
runVFX(ANIMATOR.current_frame);
2022-01-13 11:24:03 +07:00
}
}
2022-12-10 11:06:01 +07:00
function render(_time = ANIMATOR.current_frame) {
2022-12-13 15:20:36 +07:00
var _dim = inputs[| input_len + 0].getValue(_time);
var _exact = inputs[| input_len + 1].getValue(_time);
var _blend = inputs[| input_len + 2].getValue(_time);
2022-01-13 11:24:03 +07:00
var _outSurf = outputs[| 0].getValue();
2022-12-27 10:00:50 +07:00
_outSurf = surface_verify(_outSurf, _dim[0], _dim[1]);
outputs[| 0].setValue(_outSurf);
2022-01-13 11:24:03 +07:00
surface_set_target(_outSurf);
2022-09-27 11:37:28 +07:00
draw_clear_alpha(c_white, 0);
2022-01-13 11:24:03 +07:00
switch(_blend) {
2022-09-27 11:37:28 +07:00
case PARTICLE_BLEND_MODE.normal : gpu_set_blendmode(bm_normal); break;
case PARTICLE_BLEND_MODE.additive : gpu_set_blendmode(bm_add); break;
2022-01-13 11:24:03 +07:00
}
for(var i = 0; i < PREF_MAP[? "part_max_amount"]; i++)
parts[| i].draw(_exact);
gpu_set_blendmode(bm_normal);
surface_reset_target();
cacheCurrentFrame(_outSurf);
}
}