1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-07 17:36:07 +00:00

Add clamp and wrap loop modes for animation tracks.

This commit is contained in:
Juan Linietsky
2017-01-09 00:41:16 -03:00
parent 62273e51a2
commit a168cd7a23
6 changed files with 122 additions and 26 deletions

View File

@@ -1157,6 +1157,12 @@ void AnimationKeyEditor::_track_editor_draw() {
Ref<Texture> add_key_icon = get_icon("TrackAddKey","EditorIcons");
Ref<Texture> add_key_icon_hl = get_icon("TrackAddKeyHl","EditorIcons");
Ref<Texture> down_icon = get_icon("select_arrow","Tree");
Ref<Texture> wrap_icon[2]={
get_icon("InterpWrapClamp","EditorIcons"),
get_icon("InterpWrapLoop","EditorIcons"),
};
Ref<Texture> interp_icon[3]={
get_icon("InterpRaw","EditorIcons"),
get_icon("InterpLinear","EditorIcons"),
@@ -1181,7 +1187,7 @@ void AnimationKeyEditor::_track_editor_draw() {
Ref<Texture> type_hover=get_icon("KeyHover","EditorIcons");
Ref<Texture> type_selected=get_icon("KeySelected","EditorIcons");
int right_separator_ofs = down_icon->get_width() *2 + add_key_icon->get_width() + interp_icon[0]->get_width() + cont_icon[0]->get_width() + hsep*7;
int right_separator_ofs = down_icon->get_width() *3 + add_key_icon->get_width() + interp_icon[0]->get_width() + wrap_icon[0]->get_width() + cont_icon[0]->get_width() + hsep*9;
int h = font->get_height()+sep;
@@ -1421,6 +1427,20 @@ void AnimationKeyEditor::_track_editor_draw() {
icon_ofs.x-=hsep;
*/
track_ofs[0]=size.width-icon_ofs.x;
icon_ofs.x-=down_icon->get_width();
te->draw_texture(down_icon,icon_ofs);
int wrap_type = animation->track_get_interpolation_loop_wrap(idx)?1:0;
icon_ofs.x-=hsep;
icon_ofs.x-=wrap_icon[wrap_type]->get_width();
te->draw_texture(wrap_icon[wrap_type],icon_ofs);
icon_ofs.x-=hsep;
te->draw_line(Point2(icon_ofs.x,ofs.y+y),Point2(icon_ofs.x,ofs.y+y+h),sepcolor);
track_ofs[1]=size.width-icon_ofs.x;
icon_ofs.x-=down_icon->get_width();
te->draw_texture(down_icon,icon_ofs);
@@ -1433,6 +1453,8 @@ void AnimationKeyEditor::_track_editor_draw() {
icon_ofs.x-=hsep;
te->draw_line(Point2(icon_ofs.x,ofs.y+y),Point2(icon_ofs.x,ofs.y+y+h),sepcolor);
track_ofs[2]=size.width-icon_ofs.x;
if (animation->track_get_type(idx)==Animation::TYPE_VALUE) {
@@ -1453,10 +1475,14 @@ void AnimationKeyEditor::_track_editor_draw() {
icon_ofs.x-=hsep;
te->draw_line(Point2(icon_ofs.x,ofs.y+y),Point2(icon_ofs.x,ofs.y+y+h),sepcolor);
track_ofs[3]=size.width-icon_ofs.x;
icon_ofs.x-=hsep;
icon_ofs.x-=add_key_icon->get_width();
te->draw_texture((mouse_over.over==MouseOver::OVER_ADD_KEY && mouse_over.track==idx)?add_key_icon_hl:add_key_icon,icon_ofs);
track_ofs[4]=size.width-icon_ofs.x;
//draw the keys;
int tt = animation->track_get_type(idx);
float key_vofs = Math::floor((h - type_icon[tt]->get_height())/2);
@@ -1621,6 +1647,14 @@ void AnimationKeyEditor::_track_menu_selected(int p_idx) {
undo_redo->add_do_method(animation.ptr(),"value_track_set_update_mode",cont_editing,p_idx);
undo_redo->add_undo_method(animation.ptr(),"value_track_set_update_mode",cont_editing,animation->value_track_get_update_mode(cont_editing));
undo_redo->commit_action();
} else if (wrap_editing!=-1) {
ERR_FAIL_INDEX(wrap_editing,animation->get_track_count());
undo_redo->create_action(TTR("Anim Track Change Wrap Mode"));
undo_redo->add_do_method(animation.ptr(),"track_set_interpolation_loop_wrap",wrap_editing,p_idx?true:false);
undo_redo->add_undo_method(animation.ptr(),"track_set_interpolation_loop_wrap",wrap_editing,animation->track_get_interpolation_loop_wrap(wrap_editing));
undo_redo->commit_action();
} else {
switch (p_idx) {
@@ -1833,6 +1867,10 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
Ref<Texture> hsize_icon = get_icon("Hsize","EditorIcons");
Ref<Texture> add_key_icon = get_icon("TrackAddKey","EditorIcons");
Ref<Texture> wrap_icon[2]={
get_icon("InterpWrapClamp","EditorIcons"),
get_icon("InterpWrapLoop","EditorIcons"),
};
Ref<Texture> interp_icon[3]={
get_icon("InterpRaw","EditorIcons"),
get_icon("InterpLinear","EditorIcons"),
@@ -1848,7 +1886,7 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
get_icon("KeyXform","EditorIcons"),
get_icon("KeyCall","EditorIcons")
};
int right_separator_ofs = down_icon->get_width() *2 + add_key_icon->get_width() + interp_icon[0]->get_width() + cont_icon[0]->get_width() + hsep*7;
int right_separator_ofs = down_icon->get_width() *3 + add_key_icon->get_width() + interp_icon[0]->get_width() + wrap_icon[0]->get_width() + cont_icon[0]->get_width() + hsep*9;
int h = font->get_height()+sep;
@@ -2054,6 +2092,7 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
interp_editing=-1;
cont_editing=-1;
wrap_editing=-1;
track_menu->popup();
}
@@ -2277,7 +2316,33 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
ofsx-=hsep*3+move_up_icon->get_width();
*/
if (ofsx < down_icon->get_width() + interp_icon[0]->get_width() + hsep*2) {
if (ofsx < track_ofs[1]) {
track_menu->clear();
track_menu->set_size(Point2(1,1));
static const char *interp_name[2]={"Clamp Loop Interp","Wrap Loop Interp"};
for(int i=0;i<2;i++) {
track_menu->add_icon_item(wrap_icon[i],interp_name[i]);
}
int popup_y = ofs.y+((int(mpos.y)/h)+2)*h;
int popup_x = size.width-track_ofs[1];
track_menu->set_pos(te->get_global_pos()+Point2(popup_x,popup_y));
wrap_editing=idx;
interp_editing=-1;
cont_editing=-1;
track_menu->popup();
return;
}
if (ofsx < track_ofs[2]) {
track_menu->clear();
track_menu->set_size(Point2(1,1));
@@ -2286,24 +2351,22 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
track_menu->add_icon_item(interp_icon[i],interp_name[i]);
}
int lofs = remove_icon->get_width() + move_up_icon->get_width() + move_down_icon->get_width() + down_icon->get_width() *2 + hsep*7;//interp_icon[0]->get_width() + cont_icon[0]->get_width() ;
int popup_y = ofs.y+((int(mpos.y)/h)+2)*h;
int popup_x = ofs.x+size.width-lofs;
int popup_x = size.width-track_ofs[2];
track_menu->set_pos(te->get_global_pos()+Point2(popup_x,popup_y));
interp_editing=idx;
cont_editing=-1;
wrap_editing=-1;
track_menu->popup();
return;
}
ofsx-=hsep*2+interp_icon[0]->get_width()+down_icon->get_width();
if (ofsx < down_icon->get_width() + cont_icon[0]->get_width()) {
if (ofsx < track_ofs[3]) {
track_menu->clear();
track_menu->set_size(Point2(1,1));
@@ -2312,13 +2375,14 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
track_menu->add_icon_item(cont_icon[i],cont_name[i]);
}
int lofs = settings_limit;
int popup_y = ofs.y+((int(mpos.y)/h)+2)*h;
int popup_x = ofs.x+lofs;
int popup_x = size.width-track_ofs[3];
track_menu->set_pos(te->get_global_pos()+Point2(popup_x,popup_y));
interp_editing=-1;
wrap_editing=-1;
cont_editing=idx;
track_menu->popup();
@@ -2326,9 +2390,7 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
return;
}
ofsx-=hsep*3+cont_icon[0]->get_width()+down_icon->get_width();
if (ofsx < add_key_icon->get_width()) {
if (ofsx < track_ofs[4]) {
Animation::TrackType tt = animation->track_get_type(idx);
@@ -2940,7 +3002,15 @@ void AnimationKeyEditor::_track_editor_gui_input(const InputEvent& p_input) {
*/
if (ofsx < down_icon->get_width() + interp_icon[0]->get_width() + hsep*2) {
if (ofsx < down_icon->get_width() + wrap_icon[0]->get_width() + hsep*3) {
mouse_over.over=MouseOver::OVER_WRAP;
return;
}
ofsx-=hsep*3+wrap_icon[0]->get_width() + down_icon->get_width();
if (ofsx < down_icon->get_width() + interp_icon[0]->get_width() + hsep*3) {
mouse_over.over=MouseOver::OVER_INTERP;
return;
@@ -3068,8 +3138,13 @@ void AnimationKeyEditor::_notification(int p_what) {
get_icon("TrackTrigger","EditorIcons")
};
Ref<Texture> wrap_icon[2]={
get_icon("InterpWrapClamp","EditorIcons"),
get_icon("InterpWrapLoop","EditorIcons"),
};
//right_data_size_cache = remove_icon->get_width() + move_up_icon->get_width() + move_down_icon->get_width() + down_icon->get_width() *2 + interp_icon[0]->get_width() + cont_icon[0]->get_width() + add_key_icon->get_width() + hsep*11;
right_data_size_cache = down_icon->get_width() *2 + add_key_icon->get_width() + interp_icon[0]->get_width() + cont_icon[0]->get_width() + hsep*7;
right_data_size_cache = down_icon->get_width() *3 + add_key_icon->get_width() + interp_icon[0]->get_width() + cont_icon[0]->get_width() + wrap_icon[0]->get_width() + hsep*8;
}