[tuhopuu-cvs] CVS commit: tuhopuu3/source/blender/blenkernel BKE_global.h tuhopuu3/source/blender/blenkernel/intern ipo.c tuhopuu3/source/blender/include BIF_resources.h blendef.h tuhopuu3/source/blender/makesdna DNA_scene_types.h tuhopuu3/source/blender/src blenderbuttons.c buttons_scene.c drawipo.c drawsound.c editipo.c ...

Matt Ebb matt at mke3.net
Tue Feb 22 15:22:47 CET 2005


broken (Matt Ebb) 2005/02/22 15:22:47 CET

  Modified files:
    tuhopuu3/source/blender/blenkernel BKE_global.h 
    tuhopuu3/source/blender/blenkernel/intern ipo.c 
    tuhopuu3/source/blender/include BIF_resources.h blendef.h 
    tuhopuu3/source/blender/makesdna DNA_scene_types.h 
    tuhopuu3/source/blender/src blenderbuttons.c buttons_scene.c 
                                drawipo.c drawsound.c editipo.c 
                                editobject.c editsound.c 
                                header_sound.c headerbuttons.c 
                                interface_draw.c resources.c 
                                space.c 
  
  Log:
  * Better Timeline (1st revision, more to come)
  
  http://mke3.net/blender/interface/timeline/timelinewip02.png
  Continuing Ton's earlier abuse in 2.30, the 'Audio Timeline' has
  been renamed just to 'Timeline' and given a new icon (though the
  audio capabilities still work). Much of this work has been a looong
  time coming, and I apologise to Fabrizio (ilac) for the delays in
  moving this from concept last year to this.
  
  * Now there are useful controls for start/end/current frame, and
  buttons to rewind, play and fast forward in the active time area.
  The area before the start frame and after the end is now tinted
  out slightly.
  
  * I've also re-done the auto key recording to be actually useful ;)
  Rather than being a user preference, it's now a toggle in the
  timeline (red record symbol) which can be flicked on and off
  quickly, which is really how this is meant to be used. The button
  works for both object and action keyframes, and in the future I'd
  like to extend this to other keyable things like material
  properties.
  
  * Keyframes of the active object are shown as little lines in the
  timeline. Yellow lines represent object keys, blue lines represent
  action keys (anyone have suggestions for this? I used blue since
  it's like pose mode). Future ideas are to add a right-click menu
  and/or hotkeys for inserting and removing keys here.
  
  * There's a little bit of unfinished code here for another neat
  feature that will be properly committed soon. I didn't feel like
  tearing my source files up only to have to put it back together
  again in the next commit.
  
  * The key recording only works with the OLD transform! Theeth, if
  you want to add it to your code, feel free. I didn't know how to -
  I suspect this sort of thing hasn't been implemented yet?
  
  * Also a few theme tweaks to go with it (and some unrelated)
  
  Revision  Changes    Path
  1.2       +10 -1     tuhopuu3/source/blender/blenkernel/BKE_global.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/blenkernel/BKE_global.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +30 -1     tuhopuu3/source/blender/blenkernel/intern/ipo.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/blenkernel/intern/ipo.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.3       +6 -6      tuhopuu3/source/blender/include/BIF_resources.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/include/BIF_resources.h.diff?r1=1.2&r2=1.3&cvsroot=tuhopuu>
  1.5       +4 -1      tuhopuu3/source/blender/include/blendef.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/include/blendef.h.diff?r1=1.4&r2=1.5&cvsroot=tuhopuu>
  1.3       +3 -1      tuhopuu3/source/blender/makesdna/DNA_scene_types.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/makesdna/DNA_scene_types.h.diff?r1=1.2&r2=1.3&cvsroot=tuhopuu>
  1.3       +1378 -1348tuhopuu3/source/blender/src/blenderbuttons.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/blenderbuttons.c.diff?r1=1.2&r2=1.3&cvsroot=tuhopuu>
  1.6       +2 -159    tuhopuu3/source/blender/src/buttons_scene.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/buttons_scene.c.diff?r1=1.5&r2=1.6&cvsroot=tuhopuu>
  1.2       +9 -11     tuhopuu3/source/blender/src/drawipo.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/drawipo.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +156 -4    tuhopuu3/source/blender/src/drawsound.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/drawsound.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +17 -15    tuhopuu3/source/blender/src/editipo.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/editipo.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.11      +5 -3      tuhopuu3/source/blender/src/editobject.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/editobject.c.diff?r1=1.10&r2=1.11&cvsroot=tuhopuu>
  1.2       +30 -1     tuhopuu3/source/blender/src/editsound.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/editsound.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +64 -3     tuhopuu3/source/blender/src/header_sound.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/header_sound.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.6       +4 -2      tuhopuu3/source/blender/src/headerbuttons.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/headerbuttons.c.diff?r1=1.5&r2=1.6&cvsroot=tuhopuu>
  1.11      +2 -2      tuhopuu3/source/blender/src/interface_draw.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/interface_draw.c.diff?r1=1.10&r2=1.11&cvsroot=tuhopuu>
  1.7       +13 -11    tuhopuu3/source/blender/src/resources.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/resources.c.diff?r1=1.6&r2=1.7&cvsroot=tuhopuu>
  1.30      +4 -3      tuhopuu3/source/blender/src/space.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/space.c.diff?r1=1.29&r2=1.30&cvsroot=tuhopuu>



More information about the tuhopuu-cvs mailing list