Pixel-Composer/scripts/shader_functions/shader_functions.gml

152 lines
3.8 KiB
Plaintext
Raw Normal View History

2023-03-25 12:27:04 +01:00
function shader_set_i(uniform, value) {
var shader = shader_current();
2023-02-28 09:43:01 +01:00
if(is_array(value)) {
shader_set_i_array(shader, uniform, value);
return;
}
2023-03-26 07:13:36 +02:00
if(argument_count > 2) {
2023-02-28 09:43:01 +01:00
var array = [];
2023-03-26 07:13:36 +02:00
for( var i = 1; i < argument_count; i++ )
2023-02-28 09:43:01 +01:00
array_push(array, argument[i]);
shader_set_i_array(shader, uniform, array)
return;
}
shader_set_uniform_i(shader_get_uniform(shader, uniform), value);
}
function shader_set_i_array(shader, uniform, array) {
shader_set_uniform_i_array(shader_get_uniform(shader, uniform), array);
}
2023-03-25 12:27:04 +01:00
function shader_set_f(uniform, value) {
var shader = shader_current();
2023-02-14 02:48:33 +01:00
if(is_array(value)) {
shader_set_f_array(shader, uniform, value);
return;
}
2023-07-28 19:41:57 +02:00
2023-03-26 07:13:36 +02:00
if(argument_count > 2) {
2023-02-14 02:48:33 +01:00
var array = [];
2023-03-26 07:13:36 +02:00
for( var i = 1; i < argument_count; i++ )
2023-02-14 02:48:33 +01:00
array_push(array, argument[i]);
shader_set_f_array(shader, uniform, array)
return;
}
shader_set_uniform_f(shader_get_uniform(shader, uniform), value);
}
2023-07-28 19:41:57 +02:00
function shader_set_f_array(shader, uniform, array, max_length = 128) {
shader_set_uniform_f_array_safe(shader_get_uniform(shader, uniform), array, max_length);
2023-02-14 02:48:33 +01:00
}
2023-07-28 19:41:57 +02:00
function shader_set_uniform_f_array_safe(uniform, array, max_length = 128) {
2023-02-14 02:48:33 +01:00
if(!is_array(array)) return;
if(array_length(array) == 0) return;
2023-07-28 19:41:57 +02:00
if(array_length(array) > max_length)
array_resize(array, max_length)
2023-02-14 02:48:33 +01:00
shader_set_uniform_f_array(uniform, array);
2023-02-28 09:43:01 +01:00
}
function shader_set_surface(sampler, surface, linear = false, _repeat = false) {
2023-03-25 12:27:04 +01:00
var shader = shader_current();
2023-02-28 09:43:01 +01:00
if(!is_surface(surface)) return;
var t = shader_get_sampler_index(shader, sampler);
texture_set_stage(t, surface_get_texture(surface));
gpu_set_tex_filter_ext(t, linear);
gpu_set_tex_repeat_ext(t, _repeat);
2023-03-21 03:01:53 +01:00
}
2023-07-14 20:34:35 +02:00
function shader_set_surface_dimension(uniform, surface) {
var shader = shader_current();
if(!is_surface(surface)) return;
var texture = surface_get_texture(surface);
var tw = texture_get_texel_width(texture);
var th = texture_get_texel_height(texture);
tw = 2048;
th = 2048;
shader_set_uniform_f(shader_get_uniform(shader, uniform), tw, th);
}
2023-07-21 12:40:20 +02:00
function shader_set_dim(uniform = "dimension", surf = noone) {
if(!is_surface(surf)) return;
shader_set_f(uniform, surface_get_width(surf), surface_get_height(surf));
}
function shader_set_color(uniform, col, alpha = 1) {
shader_set_f(uniform, colToVec4(col, alpha));
}
2023-07-28 19:41:57 +02:00
function shader_set_palette(pal, pal_uni = "palette", amo_uni = "paletteAmount", max_length = 128) {
shader_set_i(amo_uni, min(max_length, array_length(pal)));
2023-07-21 12:40:20 +02:00
var _pal = [];
2023-07-28 19:41:57 +02:00
for( var i = 0, n = min(max_length, array_length(pal)); i < n; i++ )
2023-07-21 12:40:20 +02:00
array_append(_pal, colToVec4(pal[i]));
if(array_length(_pal))
shader_set_f(pal_uni, _pal);
}
2023-03-21 03:01:53 +01:00
#region prebuild
enum BLEND {
normal,
add,
over,
alpha,
alphamulp,
}
function shader_set_interpolation(surface) {
2023-07-30 13:56:22 +02:00
var intp = attributes.interpolation;
2023-03-21 03:01:53 +01:00
gpu_set_tex_filter(intp);
2023-08-12 12:35:35 +02:00
shader_set_i("interpolation", intp);
2023-03-25 12:27:04 +01:00
shader_set_f("sampleDimension", surface_get_width(surface), surface_get_height(surface));
2023-08-12 12:35:35 +02:00
shader_set_i("sampleMode", struct_try_get(attributes, "oversample"));
2023-03-21 03:01:53 +01:00
}
2023-08-01 19:21:51 +02:00
function surface_set_shader(surface, shader = sh_sample, clear = true, blend = BLEND.alpha) {
2023-03-30 08:33:53 +02:00
if(!is_surface(surface)) {
__surface_set = false;
return;
}
__surface_set = true;
2023-03-21 03:01:53 +01:00
surface_set_target(surface);
if(clear) DRAW_CLEAR;
switch(blend) {
case BLEND.add : BLEND_ADD; break;
case BLEND.over: BLEND_OVERRIDE; break;
case BLEND.alpha: BLEND_ALPHA; break;
case BLEND.alphamulp: BLEND_ALPHA_MULP; break;
}
2023-07-14 20:34:35 +02:00
if(shader == noone)
__shader_set = false;
else {
__shader_set = true;
shader_set(shader);
}
2023-03-21 03:01:53 +01:00
}
function surface_reset_shader() {
2023-03-30 08:33:53 +02:00
if(!__surface_set) return;
2023-03-21 03:01:53 +01:00
gpu_set_tex_filter(false);
BLEND_NORMAL;
surface_reset_target();
2023-07-14 20:34:35 +02:00
if(__shader_set)
shader_reset();
2023-03-21 03:01:53 +01:00
}
#endregion