Pixel-Composer/scripts/panel_animation/panel_animation.gml

2069 lines
69 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
enum KEYFRAME_DRAG_TYPE {
move,
ease_in,
ease_out,
ease_both
}
2022-11-14 03:16:15 +01:00
function Panel_Animation() : PanelContent() constructor {
2023-06-04 18:28:29 +02:00
title = __txt("Animation");
2022-01-13 05:24:03 +01:00
context_str = "Animation";
2023-06-04 18:28:29 +02:00
icon = THEME.panel_animation;
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
#region ---- dimension ----
timeline_h = ui(28);
min_w = ui(40);
min_h = ui(48);
tool_width = ui(224);
#endregion
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
static initSize = function() { #region
2023-06-10 13:59:45 +02:00
timeline_w = w - tool_width - ui(80);
2022-11-14 03:16:15 +01:00
timeline_surface = surface_create_valid(timeline_w, timeline_h);
2023-06-10 13:59:45 +02:00
timeline_mask = surface_create_valid(timeline_w, timeline_h);
2023-02-28 09:43:01 +01:00
2023-06-10 13:59:45 +02:00
dope_sheet_w = w - tool_width;
dope_sheet_h = h - timeline_h - ui(20);
dope_sheet_surface = surface_create_valid(dope_sheet_w, 1);
2023-10-14 08:00:35 +02:00
dope_sheet_mask = surface_create_valid(dope_sheet_w, 1);
2023-10-15 15:04:42 +02:00
dope_sheet_name_mask = surface_create_valid(tool_width, 1);
dope_sheet_name_surface = surface_create_valid(tool_width, 1);
2023-08-16 20:16:31 +02:00
} #endregion
2022-11-14 03:16:15 +01:00
initSize();
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
#region ---- position ----
dope_sheet_y = 0;
dope_sheet_y_to = 0;
dope_sheet_y_max = 0;
is_scrolling = false;
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
dopesheet_dragging = noone;
dopesheet_drag_mx = 0;
2023-07-08 20:29:23 +02:00
2023-10-14 13:51:34 +02:00
dope_sheet_node_padding = ui(0);
2023-08-16 20:16:31 +02:00
#endregion
2022-12-12 09:08:03 +01:00
2023-08-16 20:16:31 +02:00
#region ---- timeline ----
timeline_scubbing = false;
timeline_scub_st = 0;
timeline_scale = 20;
timeline_separate = 5;
timeline_sep_line = 1;
_scrub_frame = -1;
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
timeline_shift = 0;
timeline_shift_to = 0;
timeline_dragging = false;
timeline_drag_sx = 0;
timeline_drag_sy = 0;
timeline_drag_mx = 0;
timeline_drag_my = 0;
timeline_draggable = true;
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
timeline_stretch = 0;
timeline_stretch_sx = 0;
timeline_stretch_mx = 0;
2022-12-10 05:06:01 +01:00
2023-08-16 20:16:31 +02:00
timeline_show_time = -1;
timeline_preview = noone;
2023-10-14 08:00:35 +02:00
timeline_contents = [];
2023-08-16 20:16:31 +02:00
#endregion
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
#region ---- keyframes ----
keyframe_dragging = noone;
keyframe_drag_type = -1;
keyframe_dragout = false;
keyframe_drag_mx = 0;
keyframe_drag_my = 0;
keyframe_selecting = [];
2023-07-08 20:29:23 +02:00
2023-08-16 20:16:31 +02:00
keyframe_boxable = true;
keyframe_boxing = false;
keyframe_box_sx = -1;
keyframe_box_sy = -1;
#endregion
2022-09-23 13:28:42 +02:00
2023-08-16 20:16:31 +02:00
#region ---- values ----
value_hovering = noone;
value_focusing = noone;
#endregion
2023-03-05 07:16:44 +01:00
2023-10-14 13:51:34 +02:00
#region ---- display ----
2023-08-16 20:16:31 +02:00
show_node_outside_context = true;
2023-10-15 15:04:42 +02:00
tooltip_loop_prop = noone;
tooltip_loop_type = new tooltipSelector(__txtx("panel_animation_looping_mode", "Looping mode"), global.junctionEndName);
2023-08-16 20:16:31 +02:00
#endregion
2022-12-12 09:08:03 +01:00
2023-10-14 08:00:35 +02:00
#region ---- item hover ----
_item_dragging = noone;
item_dragging = noone;
item_dragging_mx = noone;
item_dragging_my = noone;
item_dragging_dx = noone;
item_dragging_dy = noone;
hovering_folder = noone;
hovering_order = noone;
2023-08-16 20:16:31 +02:00
node_name_type = 0;
#endregion
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
#region ---- stagger ----
stagger_mode = 0;
stagger_index = 0;
#endregion
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
#region ---- tools ----
tool_width_drag = false;
tool_width_start = 0;
tool_width_mx = 0;
#endregion
2023-07-12 21:00:05 +02:00
on_end_dragging_anim = noone;
2023-07-08 20:29:23 +02:00
onion_dragging = noone;
2023-10-09 16:07:33 +02:00
prev_cache = array_create(TOTAL_FRAMES);
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
copy_clipboard = ds_list_create();
#region ++++ control_buttons ++++
control_buttons = [
2023-06-04 18:28:29 +02:00
[ function() { return __txt("Stop"); },
2023-03-11 06:40:34 +01:00
function() { return 4; },
2023-07-06 19:49:16 +02:00
function() { return PROJECT.animator.is_playing? COLORS._main_accent : COLORS._main_icon; },
function() { PROJECT.animator.stop(); } ],
[ function() { return PROJECT.animator.is_playing? __txt("Pause") : __txt("Play"); },
function() { return !PROJECT.animator.is_playing; },
function() { return PROJECT.animator.is_playing? COLORS._main_accent : COLORS._main_icon; },
2023-05-16 21:28:16 +02:00
function() {
2023-07-06 19:49:16 +02:00
if(PROJECT.animator.is_playing) PROJECT.animator.pause();
else PROJECT.animator.resume();
2023-03-11 06:40:34 +01:00
} ],
2023-06-04 18:28:29 +02:00
[ function() { return __txtx("panel_animation_go_to_first_frame", "Go to first frame"); },
2023-03-11 06:40:34 +01:00
function() { return 3; },
function() { return COLORS._main_icon; },
2023-07-06 19:49:16 +02:00
function() { PROJECT.animator.setFrame(0); }
2023-03-11 06:40:34 +01:00
],
2023-06-04 18:28:29 +02:00
[ function() { return __txtx("panel_animation_go_to_last_frame", "Go to last frame"); },
2023-03-11 06:40:34 +01:00
function() { return 2; },
function() { return COLORS._main_icon; },
2023-10-09 16:07:33 +02:00
function() { PROJECT.animator.setFrame(TOTAL_FRAMES - 1); }
2023-03-11 06:40:34 +01:00
],
2023-06-04 18:28:29 +02:00
[ function() { return __txtx("panel_animation_previous_frame", "Previous frame"); },
2023-03-11 06:40:34 +01:00
function() { return 5; },
function() { return COLORS._main_icon; },
2023-07-06 19:49:16 +02:00
function() { PROJECT.animator.setFrame(PROJECT.animator.real_frame - 1); }
2023-03-11 06:40:34 +01:00
],
2023-06-04 18:28:29 +02:00
[ function() { return __txtx("panel_animation_next_frame", "Next frame"); },
2023-03-11 06:40:34 +01:00
function() { return 6; },
function() { return COLORS._main_icon; },
2023-07-06 19:49:16 +02:00
function() { PROJECT.animator.setFrame(PROJECT.animator.real_frame + 1); }
2023-03-11 06:40:34 +01:00
],
];
2023-08-16 20:16:31 +02:00
#endregion
2023-03-11 06:40:34 +01:00
2023-08-16 20:16:31 +02:00
#region ++++ hotkeys ++++
2023-07-25 20:12:40 +02:00
addHotkey("", "Play/Pause", vk_space, MOD_KEY.none, function() { if(PROJECT.animator.is_playing) PROJECT.animator.pause() else PROJECT.animator.play(); });
2023-05-22 20:31:55 +02:00
2023-07-06 19:49:16 +02:00
addHotkey("", "Resume/Pause", vk_space, MOD_KEY.shift, function() { if(PROJECT.animator.is_playing) PROJECT.animator.pause() else PROJECT.animator.resume(); });
2023-05-22 20:31:55 +02:00
2023-07-06 19:49:16 +02:00
addHotkey("", "First frame", vk_home, MOD_KEY.none, function() { PROJECT.animator.setFrame(0); });
2023-10-09 16:07:33 +02:00
addHotkey("", "Last frame", vk_end, MOD_KEY.none, function() { PROJECT.animator.setFrame(TOTAL_FRAMES - 1); });
2022-01-13 05:24:03 +01:00
addHotkey("", "Next frame", vk_right, MOD_KEY.none, function() {
2023-10-09 16:07:33 +02:00
PROJECT.animator.setFrame(min(PROJECT.animator.real_frame + 1, TOTAL_FRAMES - 1));
2022-09-23 13:28:42 +02:00
});
2022-01-13 05:24:03 +01:00
addHotkey("", "Previous frame", vk_left, MOD_KEY.none, function() {
2023-07-06 19:49:16 +02:00
PROJECT.animator.setFrame(max(PROJECT.animator.real_frame - 1, 0));
2022-09-23 13:28:42 +02:00
});
2023-03-21 03:01:53 +01:00
addHotkey("Animation", "Delete keys", vk_delete, MOD_KEY.none, function() { PANEL_ANIMATION.deleteKeys(); });
addHotkey("Animation", "Duplicate", "D", MOD_KEY.ctrl, function() { PANEL_ANIMATION.doDuplicate(); });
addHotkey("Animation", "Copy", "C", MOD_KEY.ctrl, function() { PANEL_ANIMATION.doCopy(); });
addHotkey("Animation", "Paste", "V", MOD_KEY.ctrl, function() { PANEL_ANIMATION.doPaste(PANEL_ANIMATION.value_focusing); });
2023-08-16 20:16:31 +02:00
#endregion
2022-09-23 13:28:42 +02:00
2023-10-14 08:00:35 +02:00
#region ++++ context menu ++++
keyframe_menu = [ #region
2023-07-14 20:34:35 +02:00
menuItem(__txtx("panel_animation_lock_y", "Lock/Unlock Y easing"), function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
2023-07-14 20:34:35 +02:00
var k = keyframe_selecting[i];
k.ease_y_lock = !k.ease_y_lock;
} }),
2023-06-04 18:28:29 +02:00
menuItemGroup(__txtx("panel_animation_ease_in", "Ease in"), [
2022-11-18 03:20:31 +01:00
[ [THEME.timeline_ease, 0], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-08-19 12:42:50 +02:00
k.ease_in_type = CURVE_TYPE.linear;
2023-01-09 03:14:20 +01:00
k.ease_in = [0, 1];
2022-09-23 13:28:42 +02:00
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_linear", "Linear") ],
2022-11-18 03:20:31 +01:00
[ [THEME.timeline_ease, 1], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2022-09-23 13:28:42 +02:00
k.ease_in_type = CURVE_TYPE.bezier;
2023-01-09 03:14:20 +01:00
k.ease_in = [1, 1];
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_smooth", "Smooth") ],
2023-01-09 03:14:20 +01:00
[ [THEME.timeline_ease, 2], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-01-09 03:14:20 +01:00
k.ease_in_type = CURVE_TYPE.bezier;
2023-01-25 06:49:00 +01:00
k.ease_in = [1, 2];
2022-09-23 13:28:42 +02:00
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_overshoot", "Overshoot") ],
2022-11-18 03:20:31 +01:00
[ [THEME.timeline_ease, 3], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-01-09 03:14:20 +01:00
k.ease_in_type = CURVE_TYPE.bezier;
k.ease_in = [0, 0];
2022-09-23 13:28:42 +02:00
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_sharp", "Sharp") ],
2023-01-25 06:49:00 +01:00
[ [THEME.timeline_ease, 4], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-01-25 06:49:00 +01:00
k.ease_in_type = CURVE_TYPE.cut;
k.ease_in = [0, 0];
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_hold", "Hold") ],
2023-02-19 02:13:19 +01:00
]),
2023-06-04 18:28:29 +02:00
menuItemGroup(__txtx("panel_animation_ease_out", "Ease out"), [
2022-11-18 03:20:31 +01:00
[ [THEME.timeline_ease, 0], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-08-19 12:42:50 +02:00
k.ease_out_type = CURVE_TYPE.linear;
2023-01-09 03:14:20 +01:00
k.ease_out = [0, 0];
2022-09-23 13:28:42 +02:00
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_linear", "Linear") ],
2022-11-18 03:20:31 +01:00
[ [THEME.timeline_ease, 1], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2022-09-23 13:28:42 +02:00
k.ease_out_type = CURVE_TYPE.bezier;
2023-01-09 03:14:20 +01:00
k.ease_out = [1, 0];
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_smooth", "Smooth") ],
2023-01-09 03:14:20 +01:00
[ [THEME.timeline_ease, 2], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-01-09 03:14:20 +01:00
k.ease_out_type = CURVE_TYPE.bezier;
2023-02-14 02:51:14 +01:00
k.ease_out = [1, -1];
2022-09-23 13:28:42 +02:00
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_overshoot", "Overshoot") ],
2022-11-18 03:20:31 +01:00
[ [THEME.timeline_ease, 3], function() {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-01-09 03:14:20 +01:00
k.ease_out_type = CURVE_TYPE.bezier;
k.ease_out = [0, 1];
2022-09-23 13:28:42 +02:00
}
2023-06-04 18:28:29 +02:00
}, __txtx("panel_animation_ease_sharp", "Sharp") ],
2023-02-19 02:13:19 +01:00
]),
2022-09-23 13:28:42 +02:00
-1,
2023-06-04 18:28:29 +02:00
menuItemGroup(__txt("Align"), [
2023-08-06 16:00:59 +02:00
[ [THEME.object_halign, 0], function() { alignKeys(fa_left); } ],
[ [THEME.object_halign, 1], function() { alignKeys(fa_center); } ],
[ [THEME.object_halign, 2], function() { alignKeys(fa_right); } ],
2023-02-19 02:13:19 +01:00
]),
2023-06-04 18:28:29 +02:00
menuItem(__txtx("panel_animation_stagger", "Stagger"), function() { stagger_mode = 1; }),
2022-09-23 13:28:42 +02:00
-1,
2023-06-04 18:28:29 +02:00
menuItem(__txt("Delete"), function() { deleteKeys(); }, noone, [ "Animation", "Delete keys" ]),
menuItem(__txt("Duplicate"), function() { doDuplicate(); }, THEME.duplicate, [ "Animation", "Duplicate" ]),
menuItem(__txt("Copy"), function() { doCopy(); }, THEME.copy, [ "Animation", "Copy" ]),
menuItem(__txt("Paste"), function() { doPaste(value_focusing); }, THEME.paste, [ "Animation", "Paste" ]),
2023-10-14 08:00:35 +02:00
]; #endregion
2023-03-05 07:16:44 +01:00
keyframe_menu_empty = [
2023-06-04 18:28:29 +02:00
menuItem(__txt("Paste"), function() { doPaste(value_focusing); }, THEME.paste, [ "Animation", "Paste" ]),
2022-09-23 13:28:42 +02:00
];
2023-10-14 08:00:35 +02:00
context_selecting_item = noone;
name_menu_empty = [
menuItem(__txt("New folder"), function() {
var _dir = new timelineItemGroup();
PROJECT.timelines.addItem(_dir);
}, THEME.folder_content),
];
var _clrs = COLORS.timeline_blend;
var _item = array_create(array_length(_clrs));
2023-10-15 15:04:42 +02:00
function setSelectingItemColor(color) { if(context_selecting_item == noone) return; context_selecting_item.item.color = color; }
2023-10-14 08:00:35 +02:00
for( var i = 0, n = array_length(_clrs); i < n; i++ ) {
_item[i] = [
2023-10-14 13:51:34 +02:00
[ THEME.timeline_color, i > 0, _clrs[i] ],
2023-10-14 08:00:35 +02:00
function(_data) {
2023-10-15 15:04:42 +02:00
setSelectingItemColor(_data.color);
2023-10-14 13:51:34 +02:00
}, "", { color: i == 0? -1 : _clrs[i] }
2023-10-14 08:00:35 +02:00
];
}
2023-10-15 15:04:42 +02:00
array_push(_item, [
[ THEME.timeline_color, 2 ],
function(_data) {
var dialog = dialogCall(o_dialog_color_selector);
dialog.selector.onApply = setSelectingItemColor;
dialog.onApply = setSelectingItemColor;
}
]);
2023-10-14 08:00:35 +02:00
var clr = menuItemGroup(__txt("Color"), _item);
clr.spacing = ui(24);
name_menu_item = [
clr,
2023-10-15 15:04:42 +02:00
-1,
2023-10-14 08:00:35 +02:00
name_menu_empty[0]
];
name_menu_group = [
clr,
menuItem(__txt("Rename"), function() { context_selecting_item.item.rename(); }),
2023-10-15 15:04:42 +02:00
menuItem(__txt("Delete"), function() { context_selecting_item.item.destroy(); }, THEME.cross),
-1,
2023-10-14 08:00:35 +02:00
name_menu_empty[0]
];
2023-08-16 20:16:31 +02:00
#endregion
2022-01-13 05:24:03 +01:00
2023-10-14 08:00:35 +02:00
function deleteKeys() { #region
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
k.anim.removeKey(k);
}
keyframe_selecting = [];
} #endregion
function alignKeys(halign = fa_left) { #region
if(array_empty(keyframe_selecting)) return;
var tt = 0;
switch(halign) {
case fa_left :
tt = 9999;
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ )
tt = min(tt, keyframe_selecting[i].time);
break;
case fa_center :
tt = 0;
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ )
tt += keyframe_selecting[i].time;
tt = round(tt / array_length(keyframe_selecting));
break;
case fa_right :
tt = -9999;
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ )
tt = max(tt, keyframe_selecting[i].time);
break;
}
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
k.anim.setKeyTime(k, tt);
}
} #endregion
function arrangeKeys() { #region
//keyframe_selecting = l;
} #endregion
function staggerKeys(_index, _stag) { #region
var t = keyframe_selecting[_index].time;
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
var _t = t + abs(i - _index) * _stag;
k.anim.setKeyTime(k, _t);
}
} #endregion
2023-03-13 10:45:56 +01:00
function onFocusBegin() { PANEL_ANIMATION = self; }
2023-10-15 15:04:42 +02:00
function surfaceVerify() { #region
2022-01-13 05:24:03 +01:00
if(w - tool_width > 1) {
2023-10-15 15:04:42 +02:00
timeline_mask = surface_verify(timeline_mask, timeline_w, timeline_h);
timeline_surface = surface_verify(timeline_surface, timeline_w, timeline_h);
2022-01-13 05:24:03 +01:00
}
2022-11-14 03:16:15 +01:00
dope_sheet_w = timeline_w;
2022-11-03 11:44:49 +01:00
dope_sheet_h = h - timeline_h - ui(24);
if(dope_sheet_h > ui(8)) {
2023-06-10 13:59:45 +02:00
dope_sheet_mask = surface_verify(dope_sheet_mask, dope_sheet_w, dope_sheet_h);
dope_sheet_surface = surface_verify(dope_sheet_surface, dope_sheet_w, dope_sheet_h);
2023-10-14 08:00:35 +02:00
2023-10-15 15:04:42 +02:00
dope_sheet_name_mask = surface_verify(dope_sheet_name_mask, tool_width, dope_sheet_h);
2023-10-14 08:00:35 +02:00
dope_sheet_name_surface = surface_verify(dope_sheet_name_surface, tool_width, dope_sheet_h);
2022-01-13 05:24:03 +01:00
}
2023-10-15 15:04:42 +02:00
} #endregion
function onResize() { #region
initSize();
surfaceVerify();
2022-01-13 05:24:03 +01:00
resetTimelineMask();
2023-08-16 20:16:31 +02:00
} #endregion
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
function resetTimelineMask() { #region
2023-10-15 15:04:42 +02:00
timeline_mask = surface_verify(timeline_mask, timeline_w, timeline_h);
2022-01-13 05:24:03 +01:00
surface_set_target(timeline_mask);
draw_clear(c_black);
gpu_set_blendmode(bm_subtract);
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.ui_panel_bg, 0, 0, 0, timeline_w, timeline_h);
2022-01-13 05:24:03 +01:00
gpu_set_blendmode(bm_normal);
surface_reset_target();
if(dope_sheet_h > 8) {
2023-10-14 08:00:35 +02:00
gpu_set_blendmode(bm_subtract);
2022-01-13 05:24:03 +01:00
surface_set_target(dope_sheet_mask);
2023-10-14 08:00:35 +02:00
draw_clear(c_black);
draw_sprite_stretched(THEME.ui_panel_bg, 0, 0, 0, dope_sheet_w, dope_sheet_h);
surface_reset_target();
surface_set_target(dope_sheet_name_mask);
draw_clear(c_black);
draw_sprite_stretched(THEME.ui_panel_bg, 0, 0, 0, tool_width, dope_sheet_h);
2022-01-13 05:24:03 +01:00
surface_reset_target();
2023-10-14 08:00:35 +02:00
gpu_set_blendmode(bm_normal);
2022-01-13 05:24:03 +01:00
}
2023-08-16 20:16:31 +02:00
} #endregion
2022-01-13 05:24:03 +01:00
resetTimelineMask();
2023-10-14 08:00:35 +02:00
function getTimelineContentFolder(folder, _context = [], _depth = 0, _show = true) { #region
var ind = 0;
for( var i = 0, n = array_length(folder.contents); i < n; i++ ) {
var _cont = folder.contents[i];
var _content = {
item: _cont,
parent: _cont.parent,
index: ind,
contexts: _context,
y: 0,
h: 0,
depth: _depth,
show: _show,
};
if(is_instanceof(_cont, timelineItemGroup)) {
_content.type = "folder";
array_push(timeline_contents, _content);
var _context_folder = array_create(array_length(_context) + 1);
for( var j = 0, m = array_length(_context); j < m; j++ )
_context_folder[j] = _context[j];
_context_folder[m] = _content;
if(item_dragging == noone || item_dragging.item != _cont)
getTimelineContentFolder(_cont, _context_folder, _depth + 1, _show && _cont.show);
} else if(is_instanceof(_cont, timelineItemNode)) {
var _node = _cont.node;
//if(_node != PROJECT.globalNode && !show_node_outside_context && _node.group != PANEL_GRAPH.getCurrentContext()) continue;
var _anim = [];
var _prop = [];
for( var j = 0, m = ds_list_size(_node.inputs); j < m; j++ ) {
var prop = _node.inputs[| j];
if(!prop.is_anim || prop.value_from != noone) continue;
var anim = prop.sep_axis? prop.animators : [ prop.animator ];
if(prop.sep_axis) array_append(_anim, prop.animators);
else array_push(_anim, prop.animator);
array_push(_prop, { prop, animators: anim, y: 0 });
}
_content.type = "node";
_content.node = _node;
_content.props = _prop;
_content.animators = _anim;
array_push(timeline_contents, _content);
}
2023-05-03 21:42:17 +02:00
2023-10-14 08:00:35 +02:00
if(item_dragging == noone || item_dragging.item != _cont) ind++;
}
2023-08-16 20:16:31 +02:00
} #endregion
2023-05-03 21:42:17 +02:00
2023-10-14 08:00:35 +02:00
function getTimelineContent() { #region
timeline_contents = [];
2022-01-17 12:10:30 +01:00
2023-10-14 08:00:35 +02:00
getTimelineContentFolder(PROJECT.timelines);
2023-08-16 20:16:31 +02:00
} #endregion
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
function drawTimeline() { #region //draw summary
2023-06-10 13:59:45 +02:00
var bar_x = tool_width + ui(16);
2022-11-03 11:44:49 +01:00
var bar_y = h - timeline_h - ui(10);
2022-11-14 03:16:15 +01:00
var bar_w = timeline_w;
2022-01-13 05:24:03 +01:00
var bar_h = timeline_h;
2023-10-09 16:07:33 +02:00
var bar_total_w = TOTAL_FRAMES * ui(timeline_scale);
var inspecting = PANEL_INSPECTOR.getInspecting();
2022-01-13 05:24:03 +01:00
resetTimelineMask();
2023-06-10 13:59:45 +02:00
timeline_surface = surface_verify(timeline_surface, timeline_w, timeline_h);
2022-01-13 05:24:03 +01:00
2022-11-18 03:20:31 +01:00
surface_set_target(timeline_surface);
draw_clear_alpha(COLORS.panel_bg_clear, 0);
#region bg
draw_sprite_stretched(THEME.ui_panel_bg, 1, 0, 0, bar_w, bar_h);
2023-10-09 16:07:33 +02:00
var __w = timeline_shift + TOTAL_FRAMES * ui(timeline_scale) + PANEL_PAD;
2023-06-10 13:59:45 +02:00
draw_sprite_stretched_ext(THEME.ui_panel_bg, 2, 0, 0, min(__w, timeline_w), bar_h, COLORS.panel_animation_timeline_blend, 1);
2022-11-21 06:38:44 +01:00
2023-05-22 20:31:55 +02:00
if(inspecting)
inspecting.drawAnimationTimeline(timeline_shift, bar_w, bar_h, timeline_scale);
2023-10-09 16:07:33 +02:00
for(var i = timeline_separate; i <= TOTAL_FRAMES; i += timeline_separate) {
2022-11-18 03:20:31 +01:00
var bar_line_x = i * ui(timeline_scale) + timeline_shift;
draw_set_color(COLORS.panel_animation_frame_divider);
2023-06-10 13:59:45 +02:00
draw_line(bar_line_x, ui(12), bar_line_x, bar_h - PANEL_PAD);
2022-11-18 03:20:31 +01:00
draw_set_text(f_p2, fa_center, fa_bottom, COLORS._main_text_sub);
2023-06-17 14:30:49 +02:00
draw_text_add(bar_line_x, ui(16), string(i));
2022-11-18 03:20:31 +01:00
}
2023-10-09 16:07:33 +02:00
var bar_line_x = (CURRENT_FRAME + 1) * ui(timeline_scale) + timeline_shift;
2023-07-06 19:49:16 +02:00
var cc = PROJECT.animator.is_playing? COLORS._main_value_positive : COLORS._main_accent;
2022-11-18 03:20:31 +01:00
draw_set_color(cc);
2023-06-10 13:59:45 +02:00
draw_line(bar_line_x, ui(12), bar_line_x, bar_h - PANEL_PAD);
2022-01-13 05:24:03 +01:00
2022-11-18 03:20:31 +01:00
draw_set_text(f_p2, fa_center, fa_bottom, cc);
2023-10-09 16:07:33 +02:00
draw_text_add(bar_line_x, ui(16), string(CURRENT_FRAME + 1));
2022-11-18 03:20:31 +01:00
#endregion
#region cache
if(inspecting && inspecting.use_cache) {
2023-10-09 16:07:33 +02:00
for(var i = 0; i < TOTAL_FRAMES; i++) {
2022-12-10 05:06:01 +01:00
if(i >= array_length(inspecting.cache_result))
2022-11-18 03:20:31 +01:00
break;
2022-11-22 14:25:39 +01:00
var x0 = (i + 0) * ui(timeline_scale) + timeline_shift;
var x1 = (i + 1) * ui(timeline_scale) + timeline_shift;
2023-10-07 16:23:40 +02:00
draw_set_color(inspecting.getAnimationCacheExist(i)? c_lime : c_red);
2022-11-18 03:20:31 +01:00
draw_set_alpha(0.5);
draw_rectangle(x0, bar_h - ui(4), x1, bar_h, false);
draw_set_alpha(1);
2022-01-13 05:24:03 +01:00
}
2022-11-18 03:20:31 +01:00
}
#endregion
2023-10-14 08:00:35 +02:00
#region summary \\\ Set X for all keyframes
2022-11-18 03:20:31 +01:00
var index = 0, key_y = timeline_h / 2;
2023-07-08 20:29:23 +02:00
2023-10-14 08:00:35 +02:00
for( var i = 0, n = array_length(timeline_contents); i < n; i++ ) {
var _cont = timeline_contents[i];
if(_cont.type != "node") continue;
var _anims = _cont.animators;
2022-12-12 09:08:03 +01:00
2023-10-14 08:00:35 +02:00
for( var j = 0, m = array_length(_anims); j < m; j++ ) {
var _anim = _anims[j];
2023-03-21 03:01:53 +01:00
2023-10-14 08:00:35 +02:00
for(var k = 0; k < ds_list_size(_anim.values); k++) {
var t = (_anim.values[| k].time + 1) * ui(timeline_scale) + timeline_shift;
_anim.values[| k].dopesheet_x = t;
2023-07-08 20:29:23 +02:00
2023-10-14 08:00:35 +02:00
var ind = _anim.values[| k].ease_in_type == CURVE_TYPE.cut? 4 : 1;
draw_sprite_ui_uniform(THEME.timeline_keyframe, ind, t, key_y, 1, COLORS.panel_animation_keyframe_hide);
2022-12-18 03:20:38 +01:00
}
2022-11-18 03:20:31 +01:00
}
}
#endregion
#region pan zoom
2022-12-10 05:06:01 +01:00
timeline_shift = lerp_float(timeline_shift, timeline_shift_to, 4);
2022-01-13 05:24:03 +01:00
2022-11-18 03:20:31 +01:00
if(timeline_scubbing) {
2022-12-10 05:06:01 +01:00
var rfrm = (mx - bar_x - timeline_shift) / ui(timeline_scale) - 1;
2023-10-09 16:07:33 +02:00
PROJECT.animator.setFrame(clamp(rfrm, 0, TOTAL_FRAMES - 1));
timeline_show_time = CURRENT_FRAME;
2022-01-13 05:24:03 +01:00
2022-11-18 03:20:31 +01:00
if(timeline_show_time != _scrub_frame) {
_scrub_frame = timeline_show_time;
2022-01-13 05:24:03 +01:00
}
2022-11-18 03:20:31 +01:00
2022-12-10 05:06:01 +01:00
if(mouse_release(mb_left))
2022-11-18 03:20:31 +01:00
timeline_scubbing = false;
}
2022-12-10 05:06:01 +01:00
2022-11-18 03:20:31 +01:00
if(timeline_dragging) {
2023-01-25 06:49:00 +01:00
timeline_shift_to = clamp(timeline_drag_sx + mx - timeline_drag_mx, -max(bar_total_w - bar_w + 32, 0), 0);
2022-11-18 03:20:31 +01:00
timeline_shift = timeline_shift_to;
dope_sheet_y_to = clamp(timeline_drag_sy + my - timeline_drag_my, -dope_sheet_y_max, 0);
2022-12-10 05:06:01 +01:00
if(mouse_release(mb_middle))
2022-11-18 03:20:31 +01:00
timeline_dragging = false;
}
2022-12-10 05:06:01 +01:00
if(pHOVER && point_in_rectangle(mx, my, bar_x, 16, bar_x + bar_w, bar_y - 8)) {
2023-04-07 21:25:27 +02:00
var sca = timeline_scale;
if(mouse_wheel_down()) timeline_scale = max(timeline_scale - 1 * SCROLL_SPEED, 1);
if(mouse_wheel_up()) timeline_scale = min(timeline_scale + 1 * SCROLL_SPEED, 24);
timeline_separate = 5;
timeline_sep_line = 1;
2023-05-22 20:31:55 +02:00
if(timeline_scale <= 1) { timeline_separate = 50; timeline_sep_line = 10; }
else if(timeline_scale <= 3) { timeline_separate = 20; timeline_sep_line = 5; }
else if(timeline_scale <= 10) { timeline_separate = 10; timeline_sep_line = 2; }
2023-04-07 21:25:27 +02:00
if(sca != timeline_scale) {
var mfb = (mx - bar_x - timeline_shift) / ui(timeline_scale);
var mfa = (mx - bar_x - timeline_shift) / ui(sca);
2022-01-13 05:24:03 +01:00
2023-04-07 21:25:27 +02:00
timeline_shift_to = clamp(timeline_shift_to - (mfa - mfb) * timeline_scale,
-max(bar_total_w - bar_w + 32, 0), 0);
timeline_shift = timeline_shift_to;
2022-12-10 05:06:01 +01:00
}
2022-11-18 03:20:31 +01:00
2022-12-10 05:06:01 +01:00
if(mouse_press(mb_middle, pFOCUS)) {
timeline_dragging = true;
2022-01-13 05:24:03 +01:00
2022-12-10 05:06:01 +01:00
timeline_drag_sx = timeline_shift;
timeline_drag_sy = dope_sheet_y_to;
timeline_drag_mx = mx;
timeline_drag_my = my;
2022-11-18 03:20:31 +01:00
}
2022-12-10 05:06:01 +01:00
}
2022-01-13 05:24:03 +01:00
2022-12-12 09:08:03 +01:00
if(pHOVER && point_in_rectangle(mx, my, bar_x, bar_y, bar_x + min(timeline_w, timeline_shift + bar_total_w), bar_y + bar_h)) { //preview
2023-04-07 21:25:27 +02:00
if(mouse_wheel_down()) timeline_shift_to = clamp(timeline_shift_to - 64 * SCROLL_SPEED, -max(bar_total_w - bar_w + 32, 0), 0);
if(mouse_wheel_up()) timeline_shift_to = clamp(timeline_shift_to + 64 * SCROLL_SPEED, -max(bar_total_w - bar_w + 32, 0), 0);
2022-01-13 05:24:03 +01:00
2022-12-10 05:06:01 +01:00
if(mouse_press(mb_left, pFOCUS)) {
timeline_scubbing = true;
2023-10-09 16:07:33 +02:00
timeline_scub_st = CURRENT_FRAME;
2022-12-10 05:06:01 +01:00
_scrub_frame = timeline_scub_st;
2022-11-18 03:20:31 +01:00
}
2022-12-10 05:06:01 +01:00
}
2022-01-13 05:24:03 +01:00
2022-12-12 09:08:03 +01:00
if(pHOVER && point_in_rectangle(mx, my, bar_x, 8, bar_x + min(timeline_w, timeline_shift + bar_total_w), 8 + 16)) { //top bar
2023-07-08 20:29:23 +02:00
if(mouse_press(mb_left, pFOCUS) && timeline_draggable) {
2022-12-10 05:06:01 +01:00
timeline_scubbing = true;
2023-10-09 16:07:33 +02:00
timeline_scub_st = CURRENT_FRAME;
2022-12-10 05:06:01 +01:00
_scrub_frame = timeline_scub_st;
2022-11-18 03:20:31 +01:00
}
}
2023-07-08 20:29:23 +02:00
timeline_draggable = true;
2022-11-18 03:20:31 +01:00
#endregion
gpu_set_blendmode(bm_subtract);
draw_surface_safe(timeline_mask, 0, 0);
gpu_set_blendmode(bm_normal);
surface_reset_target();
draw_surface_safe(timeline_surface, bar_x, bar_y);
2023-08-16 20:16:31 +02:00
} #endregion
2022-11-18 03:20:31 +01:00
2023-08-16 20:16:31 +02:00
function drawDopesheetLine(animator, key_y, msx, msy, _gy_val_min = 999999, _gy_val_max = -999999) { #region
2023-10-09 16:07:33 +02:00
var bar_total_w = TOTAL_FRAMES * ui(timeline_scale);
2023-03-05 07:16:44 +01:00
var bar_show_w = timeline_shift + bar_total_w;
var hovering = noone;
var _gy_top = key_y + ui(16);
2023-03-21 03:01:53 +01:00
var _gy_bottom = _gy_top + animator.prop.graph_h - ui(8);
2023-03-05 07:16:44 +01:00
2023-03-21 03:01:53 +01:00
var amo = ds_list_size(animator.values);
2022-11-21 06:38:44 +01:00
2022-11-18 03:20:31 +01:00
for(var k = 0; k < amo; k++) {
2023-03-21 03:01:53 +01:00
var key_val = animator.values[| k].value;
2022-11-18 03:20:31 +01:00
if(is_array(key_val)) {
for( var ki = 0; ki < array_length(key_val); ki++ ) {
_gy_val_min = min(_gy_val_min, key_val[ki]);
_gy_val_max = max(_gy_val_max, key_val[ki]);
}
} else {
_gy_val_min = min(_gy_val_min, key_val);
_gy_val_max = max(_gy_val_max, key_val);
}
}
2022-11-21 06:38:44 +01:00
2023-03-21 03:01:53 +01:00
var valArray = is_array(animator.values[| 0].value);
2023-01-25 06:49:00 +01:00
var ox = 0, oy = valArray? [] : noone, nx = 0, ny = noone, oly = 0, nly = 0;
2023-03-05 07:16:44 +01:00
for(var k = 0; k < amo - 1; k++) {
2023-03-21 03:01:53 +01:00
var key = animator.values[| k];
2023-03-05 07:16:44 +01:00
var t = key.dopesheet_x;
2023-03-21 03:01:53 +01:00
var key_next = animator.values[| k + 1];
2022-12-18 03:20:38 +01:00
var dx = key_next.time - key.time;
2023-01-09 03:14:20 +01:00
2023-08-19 12:42:50 +02:00
if(key.ease_out_type == CURVE_TYPE.linear && key_next.ease_in_type == CURVE_TYPE.linear) { //linear draw
2022-12-18 03:20:38 +01:00
nx = (key_next.time + 1) * ui(timeline_scale) + timeline_shift;
2023-01-25 06:49:00 +01:00
if(valArray) {
2022-12-18 03:20:38 +01:00
for( var ki = 0; ki < array_length(key.value); ki++ ) {
draw_set_color(COLORS.axis[ki]);
2023-01-25 06:49:00 +01:00
ny[ki] = value_map(key.value[ki], _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
if(array_length(oy) > ki)
draw_line(t, oy[ki], t, ny[ki]);
oy[ki] = ny[ki];
ny[ki] = value_map(key_next.value[ki], _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
draw_line(t, oy[ki], nx, ny[ki]);
oy[ki] = ny[ki];
2022-11-18 03:20:31 +01:00
}
} else {
2023-03-21 03:01:53 +01:00
draw_set_color(animator.prop.sep_axis? COLORS.axis[animator.index] : COLORS.panel_animation_graph_line);
2023-01-25 06:49:00 +01:00
ny = value_map(key.value, _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
if(oy != noone) draw_line(t, oy, t, ny);
oy = ny;
ny = value_map(key_next.value, _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
2022-12-18 03:20:38 +01:00
draw_line(t, oy, nx, ny);
2023-01-25 06:49:00 +01:00
oy = ny;
2022-12-18 03:20:38 +01:00
}
2023-01-25 06:49:00 +01:00
ox = nx;
} else { //bezier easing
2022-12-27 04:00:50 +01:00
var _step = 1 / dx;
2022-12-18 03:20:38 +01:00
for( var _r = 0; _r <= 1; _r += _step ) {
nx = t + _r * dx * ui(timeline_scale);
2023-03-21 03:01:53 +01:00
nly = animator.interpolate(key, key_next, _r);
2022-12-27 04:00:50 +01:00
2023-01-25 06:49:00 +01:00
if(valArray) {
2022-12-18 03:20:38 +01:00
for( var ki = 0; ki < array_length(key.value); ki++ ) {
2023-01-25 06:49:00 +01:00
draw_set_color(COLORS.axis[ki]);
ny[ki] = value_map(lerp(key.value[ki], key_next.value[ki], nly), _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
if(array_length(oy) > ki)
draw_line(ox, oy[ki], nx, ny[ki]);
oy[ki] = ny[ki];
2022-01-13 05:24:03 +01:00
}
2022-12-18 03:20:38 +01:00
} else {
2023-03-21 03:01:53 +01:00
draw_set_color(animator.prop.sep_axis? COLORS.axis[animator.index] : COLORS.panel_animation_graph_line);
2022-12-18 03:20:38 +01:00
ny = value_map(lerp(key.value, key_next.value, nly), _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
2023-01-25 06:49:00 +01:00
if(oy != noone)
2022-12-18 03:20:38 +01:00
draw_line(ox, oy, nx, ny);
2023-01-25 06:49:00 +01:00
oy = ny;
2022-01-13 05:24:03 +01:00
}
2023-01-25 06:49:00 +01:00
2022-12-18 03:20:38 +01:00
ox = nx;
oly = nly;
2022-11-18 03:20:31 +01:00
}
}
}
2023-03-21 03:01:53 +01:00
if(animator.prop.show_graph && ds_list_size(animator.values) > 0) {
if(ds_list_size(animator.values) == 1) { //draw graph before and after
var key_first = animator.values[| 0];
2023-01-25 06:49:00 +01:00
if(valArray) {
for( var ki = 0; ki < array_length(key_first.value); ki++ ) {
draw_set_color(COLORS.axis[ki]);
sy = value_map(key_first.value[ki], _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
draw_line(0, sy, bar_show_w, sy);
}
} else {
2023-03-21 03:01:53 +01:00
draw_set_color(animator.prop.sep_axis? COLORS.axis[animator.index] : COLORS.panel_animation_graph_line);
2023-01-25 06:49:00 +01:00
sy = value_map(key_first.value, _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
draw_line(0, sy, bar_show_w, sy);
}
} else { //draw graph before and after
2023-03-21 03:01:53 +01:00
var key_first = animator.values[| 0];
2023-01-25 06:49:00 +01:00
var t_first = (key_first.time + 1) * ui(timeline_scale) + timeline_shift;
var sy;
if(valArray) {
for( var ki = 0; ki < array_length(key_first.value); ki++ ) {
draw_set_color(COLORS.axis[ki]);
sy = value_map(key_first.value[ki], _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
draw_line(0, sy, t_first, sy);
}
} else {
2023-03-21 03:01:53 +01:00
draw_set_color(animator.prop.sep_axis? COLORS.axis[animator.index] : COLORS.panel_animation_graph_line);
2023-01-25 06:49:00 +01:00
sy = value_map(key_first.value, _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
draw_line(0, sy, t_first, sy);
}
2023-03-21 03:01:53 +01:00
var key_last = animator.values[| ds_list_size(animator.values) - 1];
2023-01-25 06:49:00 +01:00
var t_last = (key_last.time + 1) * ui(timeline_scale) + timeline_shift;
2023-10-09 16:07:33 +02:00
if(key_last.time < TOTAL_FRAMES) {
2023-01-25 06:49:00 +01:00
if(valArray) {
for( var ki = 0; ki < array_length(key_last.value); ki++ ) {
draw_set_color(COLORS.axis[ki]);
ny[ki] = value_map(key_last.value[ki], _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
draw_line(t_last, oy[ki], t_last, ny[ki]);
draw_line(t_last, oy[ki], bar_show_w, oy[ki]);
}
} else {
2023-03-21 03:01:53 +01:00
draw_set_color(animator.prop.sep_axis? COLORS.axis[animator.index] : COLORS.panel_animation_graph_line);
2023-01-25 06:49:00 +01:00
ny = value_map(key_last.value, _gy_val_min, _gy_val_max, _gy_bottom, _gy_top);
draw_line(t_last, oy, t_last, ny);
draw_line(t_last, ny, bar_show_w, ny);
}
2022-11-18 03:20:31 +01:00
}
}
}
2023-08-16 20:16:31 +02:00
} #endregion
2022-11-18 03:20:31 +01:00
2023-08-16 20:16:31 +02:00
function drawDopesheetGraph(prop, key_y, msx, msy) { #region
2023-10-09 16:07:33 +02:00
var bar_total_w = TOTAL_FRAMES * ui(timeline_scale);
2023-03-21 03:01:53 +01:00
var bar_show_w = timeline_shift + bar_total_w;
var _gy_top = key_y + ui(16);
var _gy_bottom = _gy_top + prop.graph_h - ui(8);
if(prop.type == VALUE_TYPE.color) {
var amo = ds_list_size(prop.animator.values);
var _prevKey = prop.animator.values[| 0];
draw_set_color(_prevKey.value);
draw_rectangle(0, _gy_top, _prevKey.dopesheet_x, _gy_bottom, 0);
var ox, nx, oc, nc;
for(var k = 0; k < amo - 1; k++) {
var key = prop.animator.values[| k];
var key_next = prop.animator.values[| k + 1];
var dx = key_next.time - key.time;
var _step = 1 / dx;
for( var _r = 0; _r <= 1; _r += _step ) {
nx = key.dopesheet_x + _r * dx * ui(timeline_scale);
var lrp = prop.animator.interpolate(key, key_next, _r);
nc = merge_color(key.value, key_next.value, lrp);
if(_r > 0)
draw_rectangle_color(ox, _gy_top, nx, _gy_bottom, oc, nc, nc, oc, 0);
ox = nx;
oc = nc;
}
}
key_next = prop.animator.values[| ds_list_size(prop.animator.values) - 1];
2023-10-09 16:07:33 +02:00
if(key_next.time < TOTAL_FRAMES) {
2023-03-21 03:01:53 +01:00
draw_set_color(key_next.value);
draw_rectangle(key_next.dopesheet_x, _gy_top, bar_show_w, _gy_bottom, 0);
}
return;
}
if(prop.sep_axis) {
var _min = 999999;
var _max = -999999;
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(prop.animators); i < n; i++ ) {
2023-03-21 03:01:53 +01:00
var animator = prop.animators[i];
for(var k = 0; k < ds_list_size(animator.values); k++) {
var key_val = animator.values[| k].value;
if(is_array(key_val)) {
for( var ki = 0; ki < array_length(key_val); ki++ ) {
_min = min(_min, key_val[ki]);
_max = max(_max, key_val[ki]);
}
} else {
_min = min(_min, key_val);
_max = max(_max, key_val);
}
}
}
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(prop.animators); i < n; i++ )
2023-03-21 03:01:53 +01:00
drawDopesheetLine(prop.animators[i], key_y, msx, msy, _min, _max);
} else
drawDopesheetLine(prop.animator, key_y, msx, msy);
2023-08-16 20:16:31 +02:00
} #endregion
2023-03-21 03:01:53 +01:00
2023-08-16 20:16:31 +02:00
function drawDopesheetAnimatorKeysBG(animator, msx, msy) { #region
2023-10-14 08:00:35 +02:00
var prop_dope_y = animator.y;
2023-07-08 20:29:23 +02:00
var key_hover = noone;
var key_list = animator.values;
if((animator.prop.on_end == KEYFRAME_END.loop || animator.prop.on_end == KEYFRAME_END.ping) && ds_list_size(key_list) > 1) {
2023-07-12 21:00:05 +02:00
var keyframe_s = animator.prop.loop_range == -1? key_list[| 0].time : key_list[| ds_list_size(key_list) - 1 - animator.prop.loop_range].time;
2023-07-08 20:29:23 +02:00
var keyframe_e = key_list[| ds_list_size(key_list) - 1].time;
var ks_x = (keyframe_s + 1) * ui(timeline_scale) + timeline_shift;
var ke_x = (keyframe_e + 1) * ui(timeline_scale) + timeline_shift;
draw_set_color(COLORS.panel_animation_loop_line);
draw_set_alpha(0.2);
draw_line_width(ks_x, prop_dope_y - 1, ke_x, prop_dope_y - 1, 4);
draw_set_alpha(1);
}
for( var k = 0; k < ds_list_size(key_list); k++ ) { //draw easing
var key = key_list[| k];
var t = key.dopesheet_x;
if(key.ease_in_type == CURVE_TYPE.bezier) {
draw_set_color(COLORS.panel_animation_keyframe_ease_line);
var _tx = t - key.ease_in[0] * ui(timeline_scale) * 2;
draw_line_width(_tx, prop_dope_y - 1, t, prop_dope_y - 1, 2);
if(pHOVER && point_in_circle(msx, msy, _tx, prop_dope_y, ui(6))) {
key_hover = key;
2023-07-14 20:34:35 +02:00
draw_sprite_ui_uniform(THEME.timeline_keyframe, key.ease_y_lock? 2 : 5, _tx, prop_dope_y, 1, COLORS.panel_animation_keyframe_selected);
if(mouse_press(mb_left, pFOCUS) && !key_mod_press(SHIFT)) {
2023-07-08 20:29:23 +02:00
keyframe_dragging = animator.values[| k];
keyframe_drag_type = KEYFRAME_DRAG_TYPE.ease_in;
}
} else
2023-07-14 20:34:35 +02:00
draw_sprite_ui_uniform(THEME.timeline_keyframe, key.ease_y_lock? 2 : 5, _tx, prop_dope_y, 1, COLORS.panel_animation_keyframe_unselected);
2023-07-08 20:29:23 +02:00
}
if(key.ease_out_type == CURVE_TYPE.bezier) {
draw_set_color(COLORS.panel_animation_keyframe_ease_line);
var _tx = t + key.ease_out[0] * ui(timeline_scale) * 2;
draw_line_width(t, prop_dope_y - 1, _tx, prop_dope_y - 1, 2);
if(pHOVER && point_in_circle(msx, msy, _tx, prop_dope_y, ui(6))) {
key_hover = key;
2023-07-14 20:34:35 +02:00
draw_sprite_ui_uniform(THEME.timeline_keyframe, key.ease_y_lock? 3 : 5, _tx, prop_dope_y, 1, COLORS.panel_animation_keyframe_selected);
if(mouse_press(mb_left, pFOCUS) && !key_mod_press(SHIFT)) {
2023-07-08 20:29:23 +02:00
keyframe_dragging = animator.values[| k];
keyframe_drag_type = KEYFRAME_DRAG_TYPE.ease_out;
}
} else
2023-07-14 20:34:35 +02:00
draw_sprite_ui_uniform(THEME.timeline_keyframe, key.ease_y_lock? 3 : 5, _tx, prop_dope_y, 1, COLORS.panel_animation_keyframe_unselected);
2023-07-08 20:29:23 +02:00
}
}
return key_hover;
2023-08-16 20:16:31 +02:00
} #endregion
2023-07-08 20:29:23 +02:00
2023-10-14 08:00:35 +02:00
function drawDopesheetAnimatorKeys(_cont, animator, msx, msy) { #region
var _node = _cont.node;
var prop_y = animator.y;
var node_y = _cont.y + dope_sheet_node_padding;
2023-07-12 21:00:05 +02:00
var anim_set = true;
2023-10-14 08:00:35 +02:00
var key_hover = noone;
2023-07-08 20:29:23 +02:00
for(var k = 0; k < ds_list_size(animator.values); k++) {
var keyframe = animator.values[| k];
var t = keyframe.dopesheet_x;
2023-10-14 08:00:35 +02:00
for( var j = 0, n = array_length(_cont.contexts); j < n; j++ ) {
var _cxt = _cont.contexts[j];
if(!_cxt.show) continue;
draw_sprite_ui_uniform(THEME.timeline_keyframe, 0, t, _cxt.y + ui(10), 1, COLORS._main_icon);
}
if(!_cont.show) continue;
draw_sprite_ui_uniform(THEME.timeline_keyframe, 0, t, node_y + ui(10), 1, COLORS._main_icon);
if(!_cont.item.show) continue;
2023-07-08 20:29:23 +02:00
var cc = COLORS.panel_animation_keyframe_unselected;
2023-07-12 21:00:05 +02:00
if(on_end_dragging_anim == animator.prop && msx < t && anim_set) {
if(k == 0)
animator.prop.loop_range = -1;
else
animator.prop.loop_range = ds_list_size(animator.values) - k;
anim_set = false;
}
2023-07-08 20:29:23 +02:00
if(pHOVER && point_in_circle(msx, msy, t, prop_y, ui(8))) {
cc = COLORS.panel_animation_keyframe_selected;
key_hover = keyframe;
if(pFOCUS && !key_mod_press(SHIFT)) {
2023-07-08 20:29:23 +02:00
if(DOUBLE_CLICK) {
keyframe_dragging = keyframe;
keyframe_drag_type = KEYFRAME_DRAG_TYPE.ease_both;
keyframe_dragout = false;
keyframe_drag_mx = mx;
keyframe_drag_my = my;
} else if(mouse_press(mb_left)) {
keyframe_dragging = keyframe;
keyframe_drag_type = KEYFRAME_DRAG_TYPE.move;
keyframe_drag_mx = mx;
keyframe_drag_my = my;
keyframe_drag_my = my;
}
}
}
if(stagger_mode == 1 && array_exists(keyframe_selecting, keyframe))
cc = key_hover == keyframe? COLORS.panel_animation_keyframe_selected : COLORS._main_accent;
var ind = 1;
if(keyframe.ease_in_type == CURVE_TYPE.cut)
ind = 4;
if(keyframe.anim.prop.type == VALUE_TYPE.trigger)
ind = 4;
draw_sprite_ui_uniform(THEME.timeline_keyframe, ind, t, prop_y, 1, cc);
if(array_exists(keyframe_selecting, keyframe))
draw_sprite_ui_uniform(THEME.timeline_keyframe_selecting, ind != 1, t, prop_y, 1, COLORS._main_accent);
if(keyframe_boxing) {
var box_x0 = min(keyframe_box_sx, msx);
var box_x1 = max(keyframe_box_sx, msx);
var box_y0 = min(keyframe_box_sy, msy);
var box_y1 = max(keyframe_box_sy, msy);
if(pHOVER && !point_in_rectangle(t, prop_y, box_x0, box_y0, box_x1, box_y1) && array_exists(keyframe_selecting, keyframe))
array_remove(keyframe_selecting, keyframe);
if(pHOVER && point_in_rectangle(t, prop_y, box_x0, box_y0, box_x1, box_y1) && !array_exists(keyframe_selecting, keyframe))
array_push(keyframe_selecting, keyframe);
}
}
return key_hover;
2023-08-16 20:16:31 +02:00
} #endregion
2023-07-08 20:29:23 +02:00
2023-10-14 13:51:34 +02:00
function drawDopesheetLabelAnimator(_item, _node, animator, msx, msy) { #region
2023-10-14 08:00:35 +02:00
var prop = animator.prop;
var aa = _node.group == PANEL_GRAPH.getCurrentContext()? 1 : 0.9;
var tx = tool_width;
var ty = animator.y - 1;
2023-10-14 13:51:34 +02:00
2023-10-15 15:04:42 +02:00
if(prop.show_graph) {
var _y1 = ty + ui(10) + prop.graph_h + ui(8);
var c1 = colorMultiply(_item.item.color_cur, COLORS.panel_animation_dope_key_bg_hover);
draw_set_color(c1);
draw_rectangle(0, ty + ui(10), tx, _y1, false);
}
var c0 = colorMultiply(_item.item.color_cur, COLORS.panel_animation_dope_key_bg);
draw_set_color(c0);
2023-10-14 13:51:34 +02:00
draw_rectangle(0, ty - ui(10), tx, ty + ui(10), false);
2023-03-21 03:01:53 +01:00
#region keyframe control
2023-07-08 20:29:23 +02:00
tx = tool_width - ui(20 + 16 * 3);
2023-10-15 15:04:42 +02:00
if(buttonInstant(noone, tx - ui(10), ty - ui(9), ui(20), ui(17), [msx, msy], pFOCUS, pHOVER, "", THEME.prop_keyframe, 0, [COLORS._main_icon, COLORS._main_icon_on_inner]) == 2) {
2023-07-08 20:29:23 +02:00
var _t = -1;
for(var k = 0; k < ds_list_size(animator.values); k++) {
var _key = animator.values[| k];
2023-10-09 16:07:33 +02:00
if(_key.time < CURRENT_FRAME)
2023-07-08 20:29:23 +02:00
_t = _key.time;
2023-03-21 03:01:53 +01:00
}
2023-07-08 20:29:23 +02:00
if(_t > -1) PROJECT.animator.setFrame(_t);
}
tx = tool_width - ui(20 + 16 * 1);
2023-10-15 15:04:42 +02:00
if(buttonInstant(noone, tx - ui(10), ty - ui(9), ui(20), ui(17), [msx, msy], pFOCUS, pHOVER, "", THEME.prop_keyframe, 2, [COLORS._main_icon, COLORS._main_icon_on_inner]) == 2) {
2023-07-08 20:29:23 +02:00
for(var k = 0; k < ds_list_size(animator.values); k++) {
var _key = animator.values[| k];
2023-10-09 16:07:33 +02:00
if(_key.time > CURRENT_FRAME) {
2023-07-08 20:29:23 +02:00
PROJECT.animator.setFrame(_key.time);
break;
2023-03-21 03:01:53 +01:00
}
}
2023-07-08 20:29:23 +02:00
}
2023-03-21 03:01:53 +01:00
#endregion
#region add keyframe
2023-07-08 20:29:23 +02:00
tx = tool_width - ui(20 + 16 * 2);
2023-10-15 15:04:42 +02:00
if(buttonInstant(noone, tx - ui(10), ty - ui(9), ui(20), ui(17), [msx, msy], pFOCUS, pHOVER, "", THEME.prop_keyframe, 1, [COLORS._main_accent, COLORS._main_icon_on_inner]) == 2) {
2023-07-08 20:29:23 +02:00
var _add = false;
for(var k = 0; k < ds_list_size(animator.values); k++) {
var _key = animator.values[| k];
2023-10-09 16:07:33 +02:00
if(_key.time == CURRENT_FRAME) {
2023-07-08 20:29:23 +02:00
if(ds_list_size(animator.values) > 1)
ds_list_delete(animator.values, k);
_add = true;
break;
2023-10-09 16:07:33 +02:00
} else if(_key.time > CURRENT_FRAME) {
ds_list_insert(animator.values, k, new valueKey(CURRENT_FRAME, animator.getValue(), animator));
2023-07-08 20:29:23 +02:00
_add = true;
break;
2023-03-21 03:01:53 +01:00
}
}
2023-10-09 16:07:33 +02:00
if(!_add) ds_list_add(animator.values, new valueKey(CURRENT_FRAME, animator.getValue(, false), animator));
2023-07-08 20:29:23 +02:00
}
2023-03-21 03:01:53 +01:00
#endregion
2023-10-14 08:00:35 +02:00
if(isGraphable(prop)) {
2023-06-10 13:59:45 +02:00
tx = tool_width - ui(16);
2023-10-15 15:04:42 +02:00
if(pHOVER && point_in_rectangle(msx, msy, tx - ui(9), ty - ui(10), tx + ui(10), ty + ui(8))) {
2023-06-10 13:59:45 +02:00
draw_sprite_ui_uniform(THEME.timeline_graph, 1, tx, ty, 1, COLORS._main_icon_on_inner, 1);
2023-06-04 18:28:29 +02:00
TOOLTIP = __txtx("panel_animation_show_graph", "Show graph");
2023-06-10 13:59:45 +02:00
2023-03-21 03:01:53 +01:00
if(mouse_press(mb_left, pFOCUS))
2023-10-14 08:00:35 +02:00
prop.show_graph = !prop.show_graph;
2023-03-21 03:01:53 +01:00
} else
2023-10-14 08:00:35 +02:00
draw_sprite_ui_uniform(THEME.timeline_graph, 1, tx, ty, 1, prop.show_graph? COLORS._main_accent : COLORS._main_icon);
2023-03-21 03:01:53 +01:00
}
2023-07-08 20:29:23 +02:00
tx = tool_width - ui(20 + 16 * 4.5);
2023-10-15 15:04:42 +02:00
if(pHOVER && point_in_rectangle(msx, msy, tx - ui(10), ty - ui(9), tx + ui(10), ty + ui(8))) {
2023-10-14 08:00:35 +02:00
draw_sprite_ui_uniform(THEME.prop_on_end, prop.on_end, tx, ty, 1, COLORS._main_icon_on_inner, 1);
2023-10-15 15:04:42 +02:00
if(tooltip_loop_prop != prop)
tooltip_loop_type.arrow_pos = noone;
tooltip_loop_prop = prop;
tooltip_loop_type.index = prop.on_end;
TOOLTIP = tooltip_loop_type;
2023-03-21 03:01:53 +01:00
2023-07-12 21:00:05 +02:00
if(mouse_release(mb_left, pFOCUS))
2023-10-14 08:00:35 +02:00
prop.on_end = safe_mod(prop.on_end + 1, sprite_get_number(THEME.prop_on_end));
2023-07-12 21:00:05 +02:00
if(mouse_press(mb_left, pFOCUS))
2023-10-14 08:00:35 +02:00
on_end_dragging_anim = prop;
2023-03-21 03:01:53 +01:00
} else
2023-10-14 08:00:35 +02:00
draw_sprite_ui_uniform(THEME.prop_on_end, prop.on_end, tx, ty, 1, on_end_dragging_anim == prop? COLORS._main_accent : COLORS._main_icon);
2023-03-21 03:01:53 +01:00
2023-10-14 08:00:35 +02:00
var hov = item_dragging == noone && pHOVER && point_in_rectangle(msx, msy, 0, ty - ui(8), w, ty + ui(8));
2023-03-21 03:01:53 +01:00
if(hov) {
2023-10-14 08:00:35 +02:00
value_hovering = prop;
2023-03-21 03:01:53 +01:00
if(mouse_click(mb_left, pFOCUS))
2023-10-14 08:00:35 +02:00
value_focusing = prop;
2023-03-21 03:01:53 +01:00
}
2023-10-15 15:04:42 +02:00
var _gx = ui(20);
var _gy = ty;
if(hov)
if(buttonInstant(noone, _gx - ui(10), _gy - ui(9), ui(20), ui(17), [msx, msy], pFOCUS, pHOVER, "", THEME.animate_prop_go, 0, [COLORS._main_icon, COLORS._main_icon_on_inner], 0.75) == 2) {
graphFocusNode(_node);
PANEL_INSPECTOR.highlightProp(prop);
}
2023-10-14 08:00:35 +02:00
var cc = prop.sep_axis? COLORS.axis[animator.index] : COLORS._main_text_inner;
2023-03-21 03:01:53 +01:00
if(hov) cc = COLORS._main_text_accent;
draw_set_color(cc);
draw_set_alpha(aa);
2023-06-17 14:30:49 +02:00
draw_text_add(ui(32), ty - 2, animator.getName());
2023-03-21 03:01:53 +01:00
draw_set_alpha(1);
2023-08-16 20:16:31 +02:00
} #endregion
2023-03-21 03:01:53 +01:00
2023-10-14 08:00:35 +02:00
function drawDopesheetLabelItem(_item, _x, _y, msx = -1, msy = -1, alpha = 1) { #region
2023-10-14 13:51:34 +02:00
var _itx = _x;
2023-10-14 08:00:35 +02:00
var _ity = _y;
2023-10-14 13:51:34 +02:00
var _itw = tool_width;
2023-10-14 08:00:35 +02:00
var _hov = pHOVER && (msy > 0 && msy < dope_sheet_h);
var _foc = pFOCUS;
2023-10-14 13:51:34 +02:00
var _res = _item.item.drawLabel(_item, _itx, _ity, _itw, msx, msy, _hov, _foc, item_dragging, hovering_folder, node_name_type, alpha);
2023-10-14 08:00:35 +02:00
if(_res == 1) {
if(mouse_press(mb_left, _foc)) {
_item_dragging = _item;
item_dragging_mx = msx;
item_dragging_my = msy;
2023-10-12 07:07:24 +02:00
2023-10-14 08:00:35 +02:00
item_dragging_dx = msx - _x;
item_dragging_dy = msy - _y;
2023-10-12 07:07:24 +02:00
}
2023-10-14 08:00:35 +02:00
if(mouse_press(mb_right, _foc))
context_selecting_item = _item;
2023-10-12 07:07:24 +02:00
}
} #endregion
2023-08-16 20:16:31 +02:00
function drawDopesheetLabel() { #region
2023-10-14 08:00:35 +02:00
surface_set_target(dope_sheet_name_surface);
2022-11-18 03:20:31 +01:00
draw_clear_alpha(COLORS.panel_bg_clear, 0);
var msx = mx - ui(8);
var msy = my - ui(8);
draw_set_text(f_p2, fa_left, fa_center);
2022-12-12 09:08:03 +01:00
2023-03-05 07:16:44 +01:00
value_hovering = noone;
if(mouse_click(mb_left, pFOCUS))
value_focusing = noone;
2023-10-14 08:00:35 +02:00
if(mouse_press(mb_right, pFOCUS))
context_selecting_item = noone;
#region draw
hovering_folder = PROJECT.timelines;
hovering_order = 0;
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
var last_y = 0;
var last_i = 0;
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
if(item_dragging != noone)
for( var i = 0, n = array_length(timeline_contents); i < n; i++ ) {
var _cont = timeline_contents[i];
if(!_cont.show) continue;
var _y = _cont.y;
var _h = _cont.h + dope_sheet_node_padding;
if(item_dragging != noone && item_dragging.item == _cont.item) continue;
if(_cont.type == "folder") {
if(msy > _y && msy <= _y + _h) {
hovering_folder = _cont.item;
hovering_order = -1;
}
} else if(_cont.type == "node") {
if(msy > _y && msy <= _y + _h / 2) {
hovering_folder = _cont.parent;
hovering_order = _cont.index;
} else if(msy > _y + _h / 2 && msy <= _y + _h) {
hovering_folder = _cont.parent;
hovering_order = _cont.index + 1;
}
}
last_y = _y + _h;
if(_cont.parent == PROJECT.timelines)
last_i = _cont.index + 1;
}
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
if(msy > last_y) {
hovering_folder = PROJECT.timelines;
hovering_order = last_i;
}
2023-10-14 13:51:34 +02:00
var _itx = -1, _ity, _itw;
2023-10-14 08:00:35 +02:00
for( var i = 0, n = array_length(timeline_contents); i < n; i++ ) {
var _cont = timeline_contents[i];
if(!_cont.show) continue;
if(item_dragging != noone && item_dragging.item == _cont.item) {
2023-10-14 13:51:34 +02:00
_itx = _cont.depth * ui(20);
_ity = _cont.y;
_itw = tool_width - _cont.depth * ui(20);
2023-10-14 08:00:35 +02:00
continue;
}
drawDopesheetLabelItem(_cont, 0, _cont.y + dope_sheet_node_padding, msx, msy);
if(_cont.type == "node" && _cont.item.show)
for( var j = 0; j < array_length(_cont.animators); j++ )
2023-10-14 13:51:34 +02:00
drawDopesheetLabelAnimator(_cont, _cont.node, _cont.animators[j], msx, msy);
2023-10-14 08:00:35 +02:00
} //end node loop
2023-10-14 13:51:34 +02:00
if(_itx != -1) {
draw_set_color(COLORS._main_accent);
draw_line_width(_itx, _ity, _itx + _itw, _ity, 2);
}
2023-10-14 08:00:35 +02:00
if(_item_dragging != noone) {
if(point_distance(msx, msy, item_dragging_mx, item_dragging_my) > 4) {
item_dragging = _item_dragging;
_item_dragging = noone;
}
2022-11-18 03:20:31 +01:00
}
2023-10-12 07:07:24 +02:00
2023-10-14 08:00:35 +02:00
if(item_dragging != noone) {
item_dragging.item.removeSelf();
if(hovering_order == -1)
array_insert(hovering_folder.contents, 0, item_dragging.item);
else {
var _ind = min(array_length(hovering_folder.contents), hovering_order);
array_insert(hovering_folder.contents, _ind, item_dragging.item);
}
item_dragging.item.parent = hovering_folder;
}
if(mouse_release(mb_left)) {
_item_dragging = noone;
item_dragging = noone;
}
#endregion
2022-12-12 09:08:03 +01:00
2023-10-14 08:00:35 +02:00
gpu_set_blendmode(bm_subtract);
draw_surface_safe(dope_sheet_name_mask, 0, 0);
gpu_set_blendmode(bm_normal);
2022-11-18 03:20:31 +01:00
surface_reset_target();
2023-08-16 20:16:31 +02:00
} #endregion
2023-03-21 03:01:53 +01:00
2023-08-16 20:16:31 +02:00
function drawDopesheet() { #region
2023-06-10 13:59:45 +02:00
var bar_x = tool_width + ui(16);
2022-11-18 03:20:31 +01:00
var bar_y = h - timeline_h - ui(10);
var bar_w = timeline_w;
var bar_h = timeline_h;
2023-10-09 16:07:33 +02:00
var bar_total_w = TOTAL_FRAMES * ui(timeline_scale);
2022-01-13 05:24:03 +01:00
2023-10-15 15:04:42 +02:00
surfaceVerify();
2022-11-18 03:20:31 +01:00
#region scroll
2022-12-10 05:06:01 +01:00
dope_sheet_y = lerp_float(dope_sheet_y, dope_sheet_y_to, 4);
2022-11-18 03:20:31 +01:00
2023-04-07 21:25:27 +02:00
if(pHOVER && point_in_rectangle(mx, my, ui(8), ui(8), bar_x, ui(8) + dope_sheet_h)) {
if(mouse_wheel_down()) dope_sheet_y_to = clamp(dope_sheet_y_to - ui(32) * SCROLL_SPEED, -dope_sheet_y_max, 0);
if(mouse_wheel_up()) dope_sheet_y_to = clamp(dope_sheet_y_to + ui(32) * SCROLL_SPEED, -dope_sheet_y_max, 0);
2022-11-18 03:20:31 +01:00
}
var scr_x = bar_x + dope_sheet_w + ui(4);
var scr_y = ui(8);
var scr_s = dope_sheet_h;
var scr_prog = -dope_sheet_y / dope_sheet_y_max;
var scr_size = dope_sheet_h / (dope_sheet_h + dope_sheet_y_max);
var scr_scale_s = scr_s * scr_size;
var scr_prog_s = scr_prog * (scr_s - scr_scale_s);
2022-11-21 06:38:44 +01:00
var scr_w = ui(sprite_get_width(THEME.ui_scrollbar));
2022-11-18 03:20:31 +01:00
var scr_h = scr_s;
2022-11-21 06:38:44 +01:00
var s_bar_w = ui(sprite_get_width(THEME.ui_scrollbar));
2022-11-18 03:20:31 +01:00
var s_bar_h = scr_scale_s;
var s_bar_x = scr_x;
var s_bar_y = scr_y + scr_prog_s;
if(is_scrolling) {
2023-08-19 12:42:50 +02:00
if(scr_s - scr_scale_s != 0)
dope_sheet_y_to = clamp((my - scr_y - scr_scale_s / 2) / (scr_s - scr_scale_s), 0, 1) * -dope_sheet_y_max;
2022-11-18 03:20:31 +01:00
2022-12-10 05:06:01 +01:00
if(mouse_release(mb_left)) is_scrolling = false;
2022-11-18 03:20:31 +01:00
}
2022-01-13 05:24:03 +01:00
2022-12-10 05:06:01 +01:00
if(pHOVER && point_in_rectangle(mx, my, scr_x - ui(2), scr_y - ui(2), scr_x + scr_w + ui(2), scr_y + scr_h + ui(2))) {
2022-11-18 03:20:31 +01:00
draw_sprite_stretched_ext(THEME.ui_scrollbar, 0, s_bar_x, s_bar_y, s_bar_w, s_bar_h, COLORS.scrollbar_hover, 1);
2022-12-10 05:06:01 +01:00
if(mouse_click(mb_left, pFOCUS))
2022-11-18 03:20:31 +01:00
is_scrolling = true;
} else {
draw_sprite_stretched_ext(THEME.ui_scrollbar, 0, s_bar_x, s_bar_y, s_bar_w, s_bar_h, COLORS.scrollbar_idle, 1);
}
#endregion
surface_set_target(dope_sheet_surface);
draw_clear_alpha(COLORS.panel_bg_clear, 0);
var msx = mx - bar_x;
var msy = my - ui(8);
2023-03-05 07:16:44 +01:00
#region bg \\\\ set X, Y for Node and Prop
2023-01-25 06:49:00 +01:00
var bar_show_w = timeline_shift + bar_total_w;
2023-06-10 13:59:45 +02:00
var _bg_w = min(bar_total_w + PANEL_PAD, bar_w);
draw_sprite_stretched_ext(THEME.ui_panel_bg, 2, 0, 0, _bg_w, dope_sheet_h, COLORS.panel_animation_timeline_blend, 1);
2022-11-18 03:20:31 +01:00
dope_sheet_y_max = 0;
2023-10-14 08:00:35 +02:00
var key_y = ui(22) + dope_sheet_y;
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
for( var i = 0, n = array_length(timeline_contents); i < n; i++ ) {
var _cont = timeline_contents[i];
_cont.y = key_y;
_cont.h = 0;
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
if(!_cont.show)
continue;
if(item_dragging != noone && item_dragging.item == _cont.item)
continue;
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
var _expand = _cont.type == "node" && _cont.item.show;
key_y += dope_sheet_node_padding;
_cont.h += dope_sheet_node_padding;
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
var _ks = key_y;
2023-10-15 15:04:42 +02:00
if(_cont.item.color_dsp > -1) {
2023-10-14 13:51:34 +02:00
draw_set_color(_cont.item.color_dsp);
draw_rectangle(0, _ks - 1, bar_show_w, _ks + ui(20), false);
2023-10-15 15:04:42 +02:00
}
if(_cont.item.color_cur > -1) {
var c0 = colorMultiply(_cont.item.color_cur, COLORS.panel_animation_dope_key_bg);
var c1 = colorMultiply(_cont.item.color_cur, COLORS.panel_animation_dope_key_bg_hover);
2023-10-14 13:51:34 +02:00
}
2023-03-05 07:16:44 +01:00
2023-10-14 08:00:35 +02:00
key_y += ui(20) + _expand * ui(10);
_cont.h += ui(20);
_ks = key_y - ui(10);
if(_expand) {
for( var j = 0; j < array_length(_cont.props); j++ ) {
var prop = _cont.props[j];
var _prop = prop.prop;
prop.y = key_y;
2023-10-15 15:04:42 +02:00
2023-03-21 03:01:53 +01:00
for( var k = 0; k < array_length(prop.animators); k++ ) {
2023-10-14 08:00:35 +02:00
prop.animators[k].y = key_y;
2023-10-15 15:04:42 +02:00
if(_cont.item.color_cur > -1) {
draw_set_color(c0);
draw_rectangle(0, key_y - ui(10), bar_show_w, key_y + ui(10), false);
if(_prop == value_focusing) draw_sprite_stretched_ext(THEME.menu_button_mask, 0, 0, key_y - ui(8), bar_show_w, ui(16), c1, 1);
//else if(_prop == value_hovering) draw_sprite_stretched_ext(THEME.menu_button_mask, 0, 0, key_y - ui(2), bar_show_w, ui( 4), c1, 1);
}
2023-10-14 08:00:35 +02:00
key_y += ui(18);
_cont.h += ui(18);
2023-03-21 03:01:53 +01:00
}
2022-01-13 05:24:03 +01:00
2023-10-14 08:00:35 +02:00
if(_prop.show_graph) {
2023-10-15 15:04:42 +02:00
if(_cont.item.color_cur > -1) {
draw_set_color(c1);
draw_rectangle(0, key_y - ui(10), bar_show_w, key_y + _prop.graph_h - ui(2), false);
}
//draw_sprite_stretched_ext(THEME.menu_button_mask, 0, 0, key_y - ui(4), bar_show_w, _prop.graph_h, COLORS.panel_animation_graph_bg, 1);
2023-10-14 08:00:35 +02:00
key_y += _prop.graph_h + ui(8);
_cont.h += _prop.graph_h + ui(8);
}
2022-11-18 03:20:31 +01:00
}
2022-01-13 05:24:03 +01:00
}
2023-10-14 08:00:35 +02:00
key_y -= _expand * ui(10);
dope_sheet_y_max += _cont.h;
2022-11-18 03:20:31 +01:00
}
2022-12-18 03:20:38 +01:00
2022-11-18 03:20:31 +01:00
dope_sheet_y_max = max(0, dope_sheet_y_max - dope_sheet_h + ui(48));
2022-12-12 09:08:03 +01:00
2023-10-09 16:07:33 +02:00
for(var i = timeline_sep_line; i <= TOTAL_FRAMES; i += timeline_sep_line) {
2022-11-18 03:20:31 +01:00
var bar_line_x = i * ui(timeline_scale) + timeline_shift;
draw_set_color(COLORS.panel_animation_frame_divider);
2023-04-07 21:25:27 +02:00
draw_set_alpha(i % timeline_separate == 0? 1 : 0.1);
2023-06-10 13:59:45 +02:00
draw_line(bar_line_x, ui(16), bar_line_x, dope_sheet_h - PANEL_PAD);
2022-11-18 03:20:31 +01:00
}
2023-04-07 21:25:27 +02:00
draw_set_alpha(1);
2022-12-10 05:06:01 +01:00
#endregion
#region stretch
2023-01-25 06:49:00 +01:00
var stx = timeline_shift + bar_total_w + ui(16);
2022-12-10 05:06:01 +01:00
var sty = ui(10);
if(timeline_stretch == 1) {
var len = round((mx - bar_x - timeline_shift) / ui(timeline_scale)) - 2;
len = max(1, len);
2023-06-04 18:28:29 +02:00
TOOLTIP = __txtx("panel_animation_length", "Animation length") + " " + string(len);
2023-10-09 16:07:33 +02:00
TOTAL_FRAMES = len;
2022-11-21 06:38:44 +01:00
2022-12-10 05:06:01 +01:00
if(mouse_release(mb_left))
timeline_stretch = 0;
draw_sprite_ui(THEME.animation_stretch, 0, stx, sty, 1, 1, 0, COLORS._main_accent, 1);
} else if(timeline_stretch == 2) {
var len = round((mx - bar_x - timeline_shift) / ui(timeline_scale)) - 2;
len = max(1, len);
2023-06-04 18:28:29 +02:00
TOOLTIP = __txtx("panel_animation_length", "Animation length") + " " + string(len);
2023-10-09 16:07:33 +02:00
var _len = TOTAL_FRAMES;
TOTAL_FRAMES = len;
2022-12-10 05:06:01 +01:00
if(_len != len) {
2023-07-06 19:49:16 +02:00
var key = ds_map_find_first(PROJECT.nodeMap);
repeat(ds_map_size(PROJECT.nodeMap)) {
2023-07-25 20:12:40 +02:00
var _node = PROJECT.nodeMap[? key];
2023-07-06 19:49:16 +02:00
key = ds_map_find_next(PROJECT.nodeMap, key);
2023-07-25 20:12:40 +02:00
if(!_node || !_node.active) continue;
2022-12-10 05:06:01 +01:00
2023-07-30 13:56:22 +02:00
for(var i = 0; i < ds_list_size(_node.inputs); i++) {
2023-07-25 20:12:40 +02:00
var in = _node.inputs[| i];
2023-03-21 03:01:53 +01:00
if(!in.is_anim) continue;
2022-12-10 05:06:01 +01:00
for(var j = 0; j < ds_list_size(in.animator.values); j++) {
var t = in.animator.values[| j];
2023-01-01 02:06:02 +01:00
t.time = t.ratio * (len - 1);
2022-12-10 05:06:01 +01:00
}
2023-03-21 03:01:53 +01:00
for( var k = 0; k < array_length(in.animators); k++ )
for(var j = 0; j < ds_list_size(in.animators[k].values); j++) {
var t = in.animators[k].values[| j];
t.time = t.ratio * (len - 1);
}
2022-12-10 05:06:01 +01:00
}
}
}
if(mouse_release(mb_left))
timeline_stretch = 0;
draw_sprite_ui(THEME.animation_stretch, 1, stx, sty, 1, 1, 0, COLORS._main_accent, 1);
} else {
if(pHOVER && point_in_circle(msx, msy, stx, sty, sty)) {
2022-12-22 03:09:55 +01:00
if(key_mod_press(CTRL)) {
2022-12-10 05:06:01 +01:00
draw_sprite_ui(THEME.animation_stretch, 1, stx, sty, 1, 1, 0, COLORS._main_icon, 1);
2023-06-04 18:28:29 +02:00
TOOLTIP = __txtx("panel_animation_stretch", "Stretch animation");
2022-12-10 05:06:01 +01:00
if(mouse_press(mb_left, pFOCUS)) {
timeline_stretch = 2;
timeline_stretch_mx = msx;
2023-10-09 16:07:33 +02:00
timeline_stretch_sx = TOTAL_FRAMES;
2022-12-10 05:06:01 +01:00
}
} else {
draw_sprite_ui(THEME.animation_stretch, 0, stx, sty, 1, 1, 0, COLORS._main_icon, 1);
2023-06-04 18:28:29 +02:00
TOOLTIP = __txtx("panel_animation_adjust_length", "Adjust animation length");
2022-12-10 05:06:01 +01:00
if(mouse_press(mb_left, pFOCUS)) {
timeline_stretch = 1;
timeline_stretch_mx = msx;
2023-10-09 16:07:33 +02:00
timeline_stretch_sx = TOTAL_FRAMES;
2022-12-10 05:06:01 +01:00
}
}
} else
draw_sprite_ui(THEME.animation_stretch, 0, stx, sty, 1, 1, 0, COLORS._main_icon, 0.5);
}
2022-11-18 03:20:31 +01:00
#endregion
draw_set_text(f_p2, fa_left, fa_top);
2022-12-18 03:20:38 +01:00
2023-03-02 07:59:14 +01:00
#region drag key
if(keyframe_dragging) {
if(keyframe_drag_type == KEYFRAME_DRAG_TYPE.move) {
var tt = round((mx - bar_x - timeline_shift) / ui(timeline_scale)) - 1;
tt = max(tt, 0);
var sh = tt - keyframe_dragging.time;
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-03-02 07:59:14 +01:00
var kt = k.time + sh;
k.anim.setKeyTime(k, kt, false);
}
timeline_show_time = floor(tt);
if(mouse_release(mb_left) || mouse_press(mb_left)) {
keyframe_dragging = noone;
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-03-02 07:59:14 +01:00
k.anim.setKeyTime(k, k.time);
}
}
} else {
var dx = abs((keyframe_dragging.time + 1) - (mx - bar_x - timeline_shift) / ui(timeline_scale)) / 2;
dx = clamp(dx, 0, 1);
if(dx > 0.2) keyframe_dragout = true;
2023-07-14 20:34:35 +02:00
var dy = -(my - keyframe_drag_my) / 32;
2023-03-02 07:59:14 +01:00
var _in = keyframe_dragging.ease_in;
var _ot = keyframe_dragging.ease_out;
switch(keyframe_drag_type) {
case KEYFRAME_DRAG_TYPE.ease_in :
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-08-19 12:42:50 +02:00
k.ease_in_type = keyframe_dragout? CURVE_TYPE.bezier : CURVE_TYPE.linear;
2023-07-14 20:34:35 +02:00
2023-03-02 07:59:14 +01:00
k.ease_in[0] = dx;
2023-07-14 20:34:35 +02:00
if(!k.ease_y_lock)
k.ease_in[1] = dy;
2023-03-02 07:59:14 +01:00
}
break;
case KEYFRAME_DRAG_TYPE.ease_out :
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-08-19 12:42:50 +02:00
k.ease_out_type = keyframe_dragout? CURVE_TYPE.bezier : CURVE_TYPE.linear;
2023-07-14 20:34:35 +02:00
2023-03-02 07:59:14 +01:00
k.ease_out[0] = dx;
2023-07-14 20:34:35 +02:00
if(!k.ease_y_lock)
k.ease_out[1] = dy;
2023-03-02 07:59:14 +01:00
}
break;
case KEYFRAME_DRAG_TYPE.ease_both :
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var k = keyframe_selecting[i];
2023-08-19 12:42:50 +02:00
k.ease_in_type = keyframe_dragout? CURVE_TYPE.bezier : CURVE_TYPE.linear;
k.ease_out_type = keyframe_dragout? CURVE_TYPE.bezier : CURVE_TYPE.linear;
2023-03-02 07:59:14 +01:00
k.ease_in[0] = dx;
2023-07-14 20:34:35 +02:00
if(!k.ease_y_lock)
k.ease_in[1] = dy;
2023-03-02 07:59:14 +01:00
k.ease_out[0] = dx;
2023-07-14 20:34:35 +02:00
if(!k.ease_y_lock)
k.ease_out[1] = dy;
2023-03-02 07:59:14 +01:00
}
break;
}
if(mouse_release(mb_left)) {
recordAction(ACTION_TYPE.var_modify, keyframe_dragging, [_in, "ease_in"]);
recordAction(ACTION_TYPE.var_modify, keyframe_dragging, [_ot, "ease_out"]);
keyframe_dragging = noone;
}
}
}
#endregion
2022-12-18 03:20:38 +01:00
2023-07-08 20:29:23 +02:00
#region drag dopesheet
//if(dopesheet_dragging != noone) {
// var dx = floor((msx - dopesheet_drag_mx) / timeline_scale);
// if(abs(dx) >= 1) {
// switch(dopesheet_dragging[1]) {
// case 0 : //move both
// break;
// case 1 : //move start
// break;
// case 2 : //move end
// break;
// }
// dopesheet_drag_mx = msx;
// }
// if(mouse_release(mb_left))
// dopesheet_dragging = noone;
//}
#endregion
2023-07-12 21:00:05 +02:00
#region on end dragging
if(on_end_dragging_anim != noone) {
if(mouse_release(mb_left))
on_end_dragging_anim = false;
}
#endregion
2023-03-21 03:01:53 +01:00
#region draw graph, easing line
2023-07-08 20:29:23 +02:00
var key_hover = noone;
2023-10-14 08:00:35 +02:00
for( var i = 0, n = array_length(timeline_contents); i < n; i++ ) {
var _cont = timeline_contents[i];
if(!_cont.show) continue;
if(_cont.type != "node") continue;
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
var _node = _cont.node;
if(_node.active_index > -1) { #region draw active region
2023-07-08 20:29:23 +02:00
var active_inp = _node.inputs[| _node.active_index];
2023-10-14 08:00:35 +02:00
var node_y = _cont.y + ui(2);
2023-07-08 20:29:23 +02:00
var ot = 0, ov = true;
var x0 = 0, x1 = 0;
2023-08-04 13:12:32 +02:00
for( var j = 0; j < ds_list_size(active_inp.animator.values); j++ ) {
var k = active_inp.animator.values[| j];
2023-07-08 20:29:23 +02:00
var t = k.time;
var v = k.value;
if(t > ot && ov) {
x0 = (ot + 1) * ui(timeline_scale) + timeline_shift;
x1 = ( t + 1) * ui(timeline_scale) + timeline_shift;
var aa = 0.25;
draw_sprite_stretched_ext(THEME.timeline_dopesheet_bg, 0, x0, node_y - ui(4), x1 - x0, ui(8), _node.dopesheet_color, aa);
}
ot = t;
ov = v;
}
2023-10-09 16:07:33 +02:00
t = TOTAL_FRAMES - 1;
2023-07-08 20:29:23 +02:00
if(t > ot && ov) {
x0 = (ot + 1) * ui(timeline_scale) + timeline_shift;
x1 = ( t + 1) * ui(timeline_scale) + timeline_shift;
var aa = 0.25;
draw_sprite_stretched_ext(THEME.timeline_dopesheet_bg, 0, x0, node_y - ui(4), x1 - x0, ui(8), _node.dopesheet_color, aa);
}
2023-10-14 08:00:35 +02:00
} #endregion
2023-07-08 20:29:23 +02:00
2023-10-14 08:00:35 +02:00
if(_cont.item.show)
for( var j = 0, m = array_length(_cont.props); j < m; j++ ) {
var prop = _cont.props[j];
var _dy = prop.y;
var _prop = prop.prop;
2023-03-05 07:16:44 +01:00
2023-10-14 08:00:35 +02:00
for( var k = 0; k < array_length(prop.animators); k++ ) {
var key = drawDopesheetAnimatorKeysBG(prop.animators[k], msx, msy);
_dy = prop.animators[k].y;
2023-03-21 03:01:53 +01:00
if(key != noone)
key_hover = key;
2023-03-05 07:16:44 +01:00
}
2023-10-14 08:00:35 +02:00
if(isGraphable(_prop) && _prop.show_graph)
drawDopesheetGraph(_prop, _dy, msx, msy);
2023-03-05 07:16:44 +01:00
}
}
#endregion
2023-10-12 07:07:24 +02:00
if(keyframe_boxing) { #region
2023-06-10 13:59:45 +02:00
draw_sprite_stretched_points(THEME.ui_selection, 0, keyframe_box_sx, keyframe_box_sy, msx, msy);
2023-03-05 07:16:44 +01:00
if(mouse_release(mb_left))
keyframe_boxing = false;
2023-10-12 07:07:24 +02:00
} #endregion
2023-03-05 07:16:44 +01:00
2023-10-14 08:00:35 +02:00
#region ======= draw keys =======
for( var i = 0, n = array_length(timeline_contents); i < n; i++ ) {
var _cont = timeline_contents[i];
2023-03-05 07:16:44 +01:00
2023-10-14 08:00:35 +02:00
if(_cont.type != "node") continue;
var _node = _cont.node;
for( var j = 0, m = array_length(_cont.animators); j < m; j++ ) {
var _anim = _cont.animators[j];
2022-12-18 03:20:38 +01:00
2023-10-14 08:00:35 +02:00
var key = drawDopesheetAnimatorKeys(_cont, _anim, msx, msy);
if(key != noone) key_hover = key;
2022-12-18 03:20:38 +01:00
}
2022-11-18 03:20:31 +01:00
}
2022-12-18 03:20:38 +01:00
#endregion
2023-07-08 20:29:23 +02:00
2023-10-14 08:00:35 +02:00
if(pHOVER && point_in_rectangle(msx, msy, 0, ui(18), dope_sheet_w, dope_sheet_h)) { #region selectrion & stagger
if(mouse_press(mb_right, pFOCUS) && key_hover == noone)
keyframe_selecting = [];
if(mouse_press(mb_left, pFOCUS)) {
2022-11-18 03:20:31 +01:00
if(key_hover == noone) {
keyframe_selecting = [];
} else if(key_mod_press(SHIFT)) {
if(array_exists(keyframe_selecting, key_hover))
array_remove(keyframe_selecting, key_hover);
else
array_push(keyframe_selecting, key_hover)
2022-11-18 03:20:31 +01:00
} else {
if(!array_exists(keyframe_selecting, key_hover))
keyframe_selecting = [ key_hover ];
2022-11-18 03:20:31 +01:00
}
}
2022-12-10 05:06:01 +01:00
if(mouse_press(mb_left, pFOCUS)) {
2022-11-18 03:20:31 +01:00
if(stagger_mode == 1) {
if(key_hover == noone || !array_exists(keyframe_selecting, key_hover))
2022-11-18 03:20:31 +01:00
stagger_mode = 0;
else {
arrangeKeys();
stagger_index = array_find(keyframe_selecting, key_hover);
2022-11-18 03:20:31 +01:00
stagger_mode = 2;
}
} else if(stagger_mode == 2) {
stagger_mode = 0;
2023-07-08 20:29:23 +02:00
} else if(key_hover == noone && keyframe_boxable) {
2022-11-18 03:20:31 +01:00
keyframe_boxing = true;
keyframe_box_sx = msx;
keyframe_box_sy = msy;
}
}
2023-07-08 20:29:23 +02:00
keyframe_boxable = true;
2022-11-21 06:38:44 +01:00
2023-10-14 08:00:35 +02:00
if(stagger_mode == 2) {
var ts = keyframe_selecting[stagger_index].time;
var tm = round((mx - bar_x - timeline_shift) / ui(timeline_scale)) - 1;
tm = max(tm, 0);
var stg = tm - ts;
staggerKeys(stagger_index, stg);
}
} #endregion
#region overlay
2023-06-10 13:59:45 +02:00
var ww = min(bar_show_w, bar_w - PANEL_PAD);
var hh = ui(20);
2022-12-12 09:08:03 +01:00
draw_set_color(COLORS.panel_animation_timeline_top);
2023-10-14 08:00:35 +02:00
draw_rectangle(0, 0, ww, hh, false);
2022-12-12 09:08:03 +01:00
2023-10-09 16:07:33 +02:00
for(var i = timeline_separate; i <= TOTAL_FRAMES; i += timeline_separate) {
2022-12-12 09:08:03 +01:00
var bar_line_x = i * ui(timeline_scale) + timeline_shift;
draw_set_text(f_p2, fa_right, fa_top, COLORS._main_text_sub);
2023-06-17 14:30:49 +02:00
draw_text_add(bar_line_x - ui(2), PANEL_PAD, string(i));
2022-12-12 09:08:03 +01:00
}
2023-07-08 20:29:23 +02:00
if(PROJECT.onion_skin.enabled) { //ONION SKIN
var rang = PROJECT.onion_skin.range;
var colr = PROJECT.onion_skin.color;
2023-10-09 16:07:33 +02:00
var fr = CURRENT_FRAME + 1;
2023-07-08 20:29:23 +02:00
var tx = fr * ui(timeline_scale) + timeline_shift;
var sx = (fr + rang[0]) * ui(timeline_scale) + timeline_shift;
var ex = (fr + rang[1]) * ui(timeline_scale) + timeline_shift;
var y0 = PANEL_PAD;
var y1 = hh;
var yc = (y0 + y1) / 2;
draw_sprite_stretched_ext(THEME.timeline_onion_skin, 0, sx, y0, tx - sx, y1 - y0, colr[0], 1);
draw_sprite_stretched_ext(THEME.timeline_onion_skin, 1, tx, y0, ex - tx, y1 - y0, colr[1], 1);
var _sx = (fr + rang[0]) * ui(timeline_scale) + timeline_shift - ui(8);
var _ex = (fr + rang[1]) * ui(timeline_scale) + timeline_shift + ui(8);
if(point_in_circle(msx, msy, _sx, yc, ui(8))) {
draw_sprite_ext(THEME.arrow, 2, _sx, yc, 1, 1, 0, colr[0], 1);
if(mouse_press(mb_left, pFOCUS))
onion_dragging = 0;
timeline_draggable = false;
} else
draw_sprite_ext(THEME.arrow, 2, _sx, yc, 1, 1, 0, colr[0], 0.5);
if(point_in_circle(msx, msy, _ex, yc, ui(8))) {
draw_sprite_ext(THEME.arrow, 0, _ex, yc, 1, 1, 0, colr[1], 1);
2022-12-12 09:08:03 +01:00
2023-07-08 20:29:23 +02:00
if(mouse_press(mb_left, pFOCUS))
onion_dragging = 1;
timeline_draggable = false;
} else
draw_sprite_ext(THEME.arrow, 0, _ex, yc, 1, 1, 0, colr[1], 0.5);
if(onion_dragging != noone) {
if(onion_dragging == 0) {
var mf = round((msx - timeline_shift + ui(8)) / ui(timeline_scale)) - fr;
mf = min(mf, 0);
if(PROJECT.onion_skin.range[0] != mf) {
PROJECT.onion_skin.range[0] = mf;
}
} else if(onion_dragging == 1) {
var mf = round((msx - timeline_shift - ui(8)) / ui(timeline_scale)) - fr;
mf = max(mf, 0);
if(PROJECT.onion_skin.range[1] != mf) {
PROJECT.onion_skin.range[1] = mf;
}
}
if(mouse_release(mb_left))
onion_dragging = noone;
}
}
2023-10-09 16:07:33 +02:00
var bar_line_x = (CURRENT_FRAME + 1) * ui(timeline_scale) + timeline_shift;
2023-07-06 19:49:16 +02:00
var cc = PROJECT.animator.is_playing? COLORS._main_value_positive : COLORS._main_accent;
2023-07-08 20:29:23 +02:00
2022-12-12 09:08:03 +01:00
draw_set_color(cc);
draw_set_font(f_p2);
2023-06-10 13:59:45 +02:00
draw_line(bar_line_x, PANEL_PAD, bar_line_x, dope_sheet_h);
2022-12-12 09:08:03 +01:00
2023-10-09 16:07:33 +02:00
var cf = string(CURRENT_FRAME + 1);
2022-12-12 09:08:03 +01:00
var tx = string_width(cf) + ui(4);
2023-06-10 13:59:45 +02:00
draw_rectangle(bar_line_x - tx, PANEL_PAD, bar_line_x, hh, false);
2022-12-12 09:08:03 +01:00
2023-06-10 13:59:45 +02:00
draw_set_text(f_p2, fa_right, fa_top, COLORS._main_text_on_accent);
2023-06-17 14:30:49 +02:00
draw_text_add(bar_line_x - ui(2), PANEL_PAD, cf);
2022-12-12 09:08:03 +01:00
#endregion
2023-10-14 08:00:35 +02:00
2022-11-18 03:20:31 +01:00
gpu_set_blendmode(bm_subtract);
draw_surface_safe(dope_sheet_mask, 0, 0);
gpu_set_blendmode(bm_normal);
surface_reset_target();
2023-10-14 08:00:35 +02:00
2023-07-08 20:29:23 +02:00
drawDopesheetLabel();
2023-10-14 08:00:35 +02:00
if(mouse_press(mb_right, pFOCUS)) { #region context menu
if(point_in_rectangle(mx, my, bar_x, ui(8), bar_x + dope_sheet_w, ui(8) + dope_sheet_h)) {
if(array_empty(keyframe_selecting)) menuCall("animation_keyframe_empty_menu",,, keyframe_menu_empty);
else menuCall("animation_keyframe_menu",,, keyframe_menu,, keyframe_selecting);
} else if(point_in_rectangle(mx, my, ui(8), ui(8), ui(8) + tool_width, ui(8) + dope_sheet_h)) {
if(context_selecting_item == noone)
menuCall("animation_name_empty_menu",,, name_menu_empty);
else if(is_instanceof(context_selecting_item.item, timelineItemNode))
menuCall("animation_name_empty_menu",,, name_menu_item);
else if(is_instanceof(context_selecting_item.item, timelineItemGroup))
menuCall("animation_name_empty_menu",,, name_menu_group);
}
} #endregion
2022-11-18 03:20:31 +01:00
2022-11-21 06:38:44 +01:00
draw_sprite_stretched(THEME.ui_panel_bg, 1, ui(8), ui(8), tool_width, dope_sheet_h);
2023-10-14 08:00:35 +02:00
draw_surface_safe(dope_sheet_name_surface, ui(8), ui(8));
2023-06-10 13:59:45 +02:00
draw_sprite_stretched(THEME.ui_panel_bg, 1, bar_x, ui(8), bar_w, dope_sheet_h); //base BG
2022-11-18 03:20:31 +01:00
draw_surface_safe(dope_sheet_surface, bar_x, ui(8));
2023-06-10 13:59:45 +02:00
draw_sprite_stretched(THEME.ui_panel_bg_cover, 1, bar_x, ui(8), bar_w, dope_sheet_h);
2023-10-12 07:07:24 +02:00
2023-10-14 08:00:35 +02:00
if(item_dragging != noone) drawDopesheetLabelItem(item_dragging, mx - item_dragging_dx, my - item_dragging_dy,,, 0.5);
2023-08-16 20:16:31 +02:00
} #endregion
2022-11-18 03:20:31 +01:00
2023-08-16 20:16:31 +02:00
function drawAnimationControl() { #region
2022-11-18 03:20:31 +01:00
var bx = ui(8);
var by = h - ui(40);
2023-03-12 02:28:21 +01:00
var mini = w < ui(348);
2022-01-13 05:24:03 +01:00
2023-03-12 02:28:21 +01:00
if(mini) by = h - ui(40);
2022-01-13 05:24:03 +01:00
2023-03-12 02:28:21 +01:00
var amo = array_length(control_buttons);
var col = floor((w - ui(8)) / ui(36));
var row = ceil(amo / col);
if(col < 1) return;
for( var i = 0; i < row; i++ ) {
var colAmo = min(amo - i * col, col);
if(mini)
bx = w / 2 - ui(36) * colAmo / 2;
for( var j = 0; j < colAmo; j++ ) {
var ind = i * col + j;
if(ind >= amo) return;
var but = control_buttons[ind];
var txt = but[0]();
var ind = but[1]();
var cc = but[2]();
var fnc = but[3];
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, txt, THEME.sequence_control, ind, cc) == 2)
fnc();
bx += ui(36);
}
2022-01-13 05:24:03 +01:00
2023-03-13 10:45:56 +01:00
by -= ui(36);
2022-11-18 03:20:31 +01:00
}
2023-03-11 06:40:34 +01:00
2023-03-12 02:28:21 +01:00
if(mini) {
2023-03-11 06:40:34 +01:00
var y0 = ui(8);
2023-03-13 10:45:56 +01:00
var y1 = by + ui(36) - ui(8);
2023-03-11 06:40:34 +01:00
var cy = (y0 + y1) / 2;
2023-03-12 02:28:21 +01:00
if(y1 - y0 < 12) return;
2023-03-11 06:40:34 +01:00
draw_sprite_stretched(THEME.ui_panel_bg, 1, ui(8), y0, w - ui(16), y1 - y0);
2022-01-13 05:24:03 +01:00
2023-03-11 06:40:34 +01:00
var pw = w - ui(16);
2023-10-09 16:07:33 +02:00
var px = ui(8) + pw * (CURRENT_FRAME / TOTAL_FRAMES);
2023-03-11 06:40:34 +01:00
draw_set_color(COLORS._main_accent);
draw_line(px, y0, px, y1);
if(point_in_rectangle(mx, my, ui(8), y0, w - ui(16), y1)) {
if(mouse_click(mb_left, pFOCUS)) {
2023-10-09 16:07:33 +02:00
var rfrm = (mx - ui(8)) / (w - ui(16)) * TOTAL_FRAMES;
PROJECT.animator.setFrame(clamp(rfrm, 0, TOTAL_FRAMES - 1));
2023-03-11 06:40:34 +01:00
}
}
2023-10-09 16:07:33 +02:00
var txt = string(CURRENT_FRAME + 1) + "/" + string(TOTAL_FRAMES);
2023-03-11 06:40:34 +01:00
2023-03-12 02:28:21 +01:00
if(y1 - y0 < ui(40)) {
2023-03-11 06:40:34 +01:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text_sub);
2023-06-17 14:30:49 +02:00
draw_text_add(ui(16), cy, __txt("Frame"));
2023-07-06 19:49:16 +02:00
draw_set_text(f_p1, fa_right, fa_center, PROJECT.animator.is_playing? COLORS._main_accent : COLORS._main_text_sub);
2023-06-17 14:30:49 +02:00
draw_text_add(w - ui(16), cy, txt);
2023-03-11 06:40:34 +01:00
} else {
draw_set_text(f_p1, fa_center, fa_center, COLORS._main_text_sub);
2023-06-17 14:30:49 +02:00
draw_text_add(w / 2, cy - ui(12), __txt("Frame"));
2023-03-11 06:40:34 +01:00
2023-07-06 19:49:16 +02:00
draw_set_text(f_h5, fa_center, fa_center, PROJECT.animator.is_playing? COLORS._main_accent : COLORS._main_text_sub);
2023-06-17 14:30:49 +02:00
draw_text_add(w / 2, cy + ui(6), txt);
2023-03-11 06:40:34 +01:00
}
return;
2022-11-18 03:20:31 +01:00
}
2022-01-13 05:24:03 +01:00
2023-03-19 09:17:39 +01:00
by += ui(36);
2022-12-12 09:08:03 +01:00
bx = w - ui(44);
2023-06-04 18:28:29 +02:00
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, __txtx("panel_animation_animation_settings", "Animation settings"), THEME.animation_setting, 2) == 2)
dialogPanelCall(new Panel_Animation_Setting(), x + bx + ui(32), y + by - ui(8), { anchor: ANCHOR.right | ANCHOR.bottom });
2023-03-12 02:28:21 +01:00
by -= ui(40); if(by < 8) return;
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, __txtx("panel_animation_scale_animation", "Scale animation"), THEME.animation_timing, 2) == 2)
dialogPanelCall(new Panel_Animation_Scaler(), x + bx + ui(32), y + by - ui(8), { anchor: ANCHOR.right | ANCHOR.bottom });
2023-03-12 02:28:21 +01:00
if(by < ui(28)) return;
by = ui(8);
2023-10-14 08:00:35 +02:00
var txt = __txt("New folder");
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(24), [mx, my], pFOCUS, pHOVER, txt, THEME.folder_content) == 2) {
var _dir = new timelineItemGroup();
PROJECT.timelines.addItem(_dir);
}
2023-10-15 15:04:42 +02:00
//by += ui(28);
//var txt = show_node_outside_context? __txtx("panel_animation_hide_node", "Hide node outside context") : __txtx("panel_animation_show_node", "Show node outside context");
//if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(24), [mx, my], pFOCUS, pHOVER, txt, THEME.junc_visible, show_node_outside_context) == 2)
// show_node_outside_context = !show_node_outside_context;
2023-04-11 13:34:01 +02:00
by += ui(28);
var txt = "";
switch(node_name_type) {
2023-06-04 18:28:29 +02:00
case 0 : txt = __txtx("panel_animation_name_full", "Show full name"); break;
case 1 : txt = __txtx("panel_animation_name_type", "Show node type"); break;
case 2 : txt = __txtx("panel_animation_name_only", "Show node name"); break;
2023-04-11 13:34:01 +02:00
}
2023-04-14 12:23:25 +02:00
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(24), [mx, my], pFOCUS, pHOVER, txt, THEME.node_name_type, node_name_type) == 2)
2023-04-11 13:34:01 +02:00
node_name_type = (node_name_type + 1) % 3;
2023-05-22 20:31:55 +02:00
by += ui(28);
2023-06-04 18:28:29 +02:00
txt = __txtx("panel_animation_keyframe_override", "Override Keyframe");
2023-05-22 20:31:55 +02:00
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(24), [mx, my], pFOCUS, pHOVER, txt, THEME.keyframe_override, global.FLAG.keyframe_override) == 2)
global.FLAG.keyframe_override = !global.FLAG.keyframe_override;
2023-07-08 20:29:23 +02:00
by += ui(28);
txt = __txt("Onion skin");
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(24), [mx, my], pFOCUS, pHOVER, txt, THEME.onion_skin,, PROJECT.onion_skin.enabled? c_white : COLORS._main_icon) == 2)
PROJECT.onion_skin.enabled = !PROJECT.onion_skin.enabled;
2023-08-16 20:16:31 +02:00
} #endregion
2022-01-13 05:24:03 +01:00
2023-08-16 20:16:31 +02:00
function drawContent(panel) { #region
2022-11-18 03:20:31 +01:00
draw_clear_alpha(COLORS.panel_bg_clear, 0);
2023-07-23 21:15:45 +02:00
if(!PROJECT.active) return;
2022-01-13 05:24:03 +01:00
2023-07-08 20:29:23 +02:00
if(tool_width_drag) {
CURSOR = cr_size_we;
tool_width = tool_width_start + (mx - tool_width_mx);
tool_width = clamp(tool_width, ui(224), w - ui(128));
onResize();
if(mouse_release(mb_left))
tool_width_drag = false;
}
2023-10-14 08:00:35 +02:00
getTimelineContent();
2023-03-19 09:17:39 +01:00
if(w >= ui(348)) {
2023-03-11 01:40:17 +01:00
drawTimeline();
2023-07-08 20:29:23 +02:00
if(dope_sheet_h > 8) {
2023-03-11 01:40:17 +01:00
drawDopesheet();
2023-07-08 20:29:23 +02:00
if(pHOVER && point_in_rectangle(mx, my, tool_width + ui(10), ui(8), tool_width + ui(12), ui(8) + dope_sheet_h)) {
CURSOR = cr_size_we;
if(mouse_press(mb_left, pFOCUS)) {
tool_width_drag = true;
tool_width_start = tool_width;
tool_width_mx = mx;
}
}
}
2023-03-11 01:40:17 +01:00
}
2022-11-18 03:20:31 +01:00
drawAnimationControl();
2022-01-13 05:24:03 +01:00
if(timeline_show_time > -1) {
2023-10-09 16:07:33 +02:00
TOOLTIP = __txt("Frame") + " " + string(timeline_show_time + 1) + "/" + string(TOTAL_FRAMES);
2022-01-13 05:24:03 +01:00
timeline_show_time = -1;
}
2023-08-16 20:16:31 +02:00
} #endregion
2023-03-02 07:59:14 +01:00
2023-08-16 20:16:31 +02:00
function doDuplicate() { #region
if(array_empty(keyframe_selecting)) return;
2023-03-02 07:59:14 +01:00
var clones = [];
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ ) {
var cl = keyframe_selecting[i].cloneAnimator(,, false);
2023-03-05 07:16:44 +01:00
if(cl == noone) continue;
2023-10-01 06:17:39 +02:00
array_push(clones, cl);
2023-03-02 07:59:14 +01:00
}
2023-10-01 06:17:39 +02:00
if(array_empty(clones)) return;
2023-03-02 07:59:14 +01:00
keyframe_selecting = clones;
keyframe_dragging = keyframe_selecting[0];
2023-03-02 07:59:14 +01:00
keyframe_drag_type = KEYFRAME_DRAG_TYPE.move;
keyframe_drag_mx = mx;
keyframe_drag_my = my;
2023-08-16 20:16:31 +02:00
} #endregion
2023-03-02 07:59:14 +01:00
2023-08-16 20:16:31 +02:00
function doCopy() { #region
2023-03-02 07:59:14 +01:00
ds_list_clear(copy_clipboard);
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(keyframe_selecting); i < n; i++ )
ds_list_add(copy_clipboard, keyframe_selecting[i]);
2023-08-16 20:16:31 +02:00
} #endregion
2023-03-02 07:59:14 +01:00
2023-08-16 20:16:31 +02:00
function doPaste(val = noone) { #region
2023-03-02 07:59:14 +01:00
if(ds_list_empty(copy_clipboard)) return;
var shf = 0;
2023-10-09 16:07:33 +02:00
var minx = TOTAL_FRAMES + 2;
2023-03-02 07:59:14 +01:00
for( var i = 0; i < ds_list_size(copy_clipboard); i++ )
minx = min(minx, copy_clipboard[| i].time);
2023-10-09 16:07:33 +02:00
shf = CURRENT_FRAME - minx;
2023-03-02 07:59:14 +01:00
2023-03-05 07:16:44 +01:00
var multiVal = false;
var _val = noone;
for( var i = 0; i < ds_list_size(copy_clipboard); i++ ) {
if(_val != noone && _val != copy_clipboard[| i].anim) {
multiVal = true;
break;
}
_val = copy_clipboard[| i].anim;
}
if(multiVal && val != noone) {
var nodeTo = val.node;
for( var i = 0; i < ds_list_size(copy_clipboard); i++ ) {
var propFrom = copy_clipboard[| i].anim.prop;
var propTo = noone;
for( var j = 0; j < ds_list_size(nodeTo.inputs); j++ ) {
if(nodeTo.inputs[| j].name == propFrom.name) {
propTo = nodeTo.inputs[| j].animator;
copy_clipboard[| i].cloneAnimator(shf, propTo);
break;
}
}
}
} else {
for( var i = 0; i < ds_list_size(copy_clipboard); i++ )
copy_clipboard[| i].cloneAnimator(shf, (multiVal || val == noone)? noone : val.animator);
}
2023-08-16 20:16:31 +02:00
} #endregion
2023-03-05 07:16:44 +01:00
}