[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51273] trunk/blender/source/blender/ editors/transform: Auto key warning - Stripping down to basics

Joshua Leung aligorith at gmail.com
Thu Oct 11 11:53:18 CEST 2012


Revision: 51273
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51273
Author:   aligorith
Date:     2012-10-11 09:53:17 +0000 (Thu, 11 Oct 2012)
Log Message:
-----------
Auto key warning - Stripping down to basics

Now just a static icon + text display in corner of view. No blinking. No
red/orange text. No window borders.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/transform/transform.c
    trunk/blender/source/blender/editors/transform/transform.h

Modified: trunk/blender/source/blender/editors/transform/transform.c
===================================================================
--- trunk/blender/source/blender/editors/transform/transform.c	2012-10-11 08:26:49 UTC (rev 51272)
+++ trunk/blender/source/blender/editors/transform/transform.c	2012-10-11 09:53:17 UTC (rev 51273)
@@ -90,7 +90,6 @@
 #include "BLI_linklist.h"
 #include "BLI_smallhash.h"
 #include "BLI_array.h"
-#include "PIL_time.h"
 
 #include "UI_interface_icons.h"
 #include "UI_resources.h"
@@ -1276,7 +1275,6 @@
 		t->redraw |= t->handleEvent(t, event);
 
 	if (handled || t->redraw) {
-		t->last_update = PIL_check_seconds_timer();
 		return 0;
 	}
 	else {
@@ -1567,50 +1565,26 @@
 /* just draw a little warning message in the top-right corner of the viewport to warn that autokeying is enabled */
 static void drawAutoKeyWarning(TransInfo *t, ARegion *ar)
 {
-	int show_warning;
+	const char printable[] = "Auto Keying On";
+	int xco, yco;
 	
-	/* colored border around the viewport */
-	UI_ThemeColor(TH_VERTEX_SELECT);
+	xco = ar->winx - BLF_width_default(printable)  - 10;
+	yco = ar->winy - BLF_height_default(printable) - 10;
 	
-	glBegin(GL_LINE_LOOP);
-		glVertex2f(1,          1);
-		glVertex2f(1,          ar->winy-1);
-		glVertex2f(ar->winx-1, ar->winy-1);
-		glVertex2f(ar->winx-1, 1);
-	glEnd();
-	
-	/* Entire warning should "blink" to catch periphery attention without being overly distracting 
-	 * much like how a traditional recording sign in the corner of a camcorder works
-	 *
-	 * - Blink frequency here is 0.5 secs (i.e. a compromise between epilepsy-inducing flicker + too slow to notice).
-	 *   We multiply by two to speed up the odd/even time-in-seconds = on/off toggle.
-	 * - Always start with warning shown so that animators are more likely to notice when starting to transform
+	/* warning text (to clarify meaning of overlays)
+	 * - original color was red to match the icon, but that clashes badly with a less nasty border
 	 */
-
-	show_warning = ((int)((t->last_update - floor(t->last_update)) * 2.0) & 1);
+	UI_ThemeColorShade(TH_TEXT_HI, -50);
+	BLF_draw_default_ascii(xco, ar->winy - 17, 0.0f, printable, sizeof(printable));
 	
-	if ((show_warning) || (t->state == TRANS_STARTING)) {
-		const char printable[] = "Auto Keying On";
-		int xco, yco;
-		
-		xco = ar->winx - BLF_width_default(printable)  - 10;
-		yco = ar->winy - BLF_height_default(printable) - 10;
-		
-		/* warning text (to clarify meaning of overlays)
-		 * - original color was red to match the icon, but that clashes badly with a less nasty border
-		 */
-		UI_ThemeColor(TH_VERTEX_SELECT);
-		BLF_draw_default_ascii(xco, ar->winy - 17, 0.0f, printable, sizeof(printable));
-		
-		/* autokey recording icon... */
-		glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
-		glEnable(GL_BLEND);
-		
-		xco -= (ICON_DEFAULT_WIDTH + 2);
-		UI_icon_draw(xco, yco, ICON_REC);
-		
-		glDisable(GL_BLEND);
-	}
+	/* autokey recording icon... */
+	glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
+	glEnable(GL_BLEND);
+	
+	xco -= (ICON_DEFAULT_WIDTH + 2);
+	UI_icon_draw(xco, yco, ICON_REC);
+	
+	glDisable(GL_BLEND);
 }
 
 static void drawTransformPixel(const struct bContext *UNUSED(C), ARegion *ar, void *arg)

Modified: trunk/blender/source/blender/editors/transform/transform.h
===================================================================
--- trunk/blender/source/blender/editors/transform/transform.h	2012-10-11 08:26:49 UTC (rev 51272)
+++ trunk/blender/source/blender/editors/transform/transform.h	2012-10-11 09:53:17 UTC (rev 51273)
@@ -323,8 +323,6 @@
 	float		axis[3];
 	float		axis_orig[3];	/* TransCon can change 'axis', store the original value here */
 	
-	double      last_update;  /* Time of last update (in seconds) */
-
 	void		*view;
 	struct bContext *context; /* Only valid (non null) during an operator called function. */
 	struct ScrArea	*sa;




More information about the Bf-blender-cvs mailing list