[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [21619] branches/blender2.5/blender: - use outliner colors (with subtle stripes) for report so you can see divisions between operators with wrapping.

Campbell Barton ideasman42 at gmail.com
Thu Jul 16 09:11:49 CEST 2009


Revision: 21619
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=21619
Author:   campbellbarton
Date:     2009-07-16 09:11:46 +0200 (Thu, 16 Jul 2009)

Log Message:
-----------
- use outliner colors (with subtle stripes) for report so you can see divisions between operators with wrapping.
- added class option for PyOperators __register__ so you can set if py operators are logged in the console.
- PyOperators was refcounting in a more readable but incorrect way. in some cases would be possible to crash so better not drop the reference before using the value.
- console zoom operator was registering which meant zooming in to see some text would push it away :)

Modified Paths:
--------------
    branches/blender2.5/blender/release/ui/space_console.py
    branches/blender2.5/blender/source/blender/editors/space_console/console_draw.c
    branches/blender2.5/blender/source/blender/editors/space_console/console_ops.c
    branches/blender2.5/blender/source/blender/python/intern/bpy_operator_wrap.c

Modified: branches/blender2.5/blender/release/ui/space_console.py
===================================================================
--- branches/blender2.5/blender/release/ui/space_console.py	2009-07-16 06:27:37 UTC (rev 21618)
+++ branches/blender2.5/blender/release/ui/space_console.py	2009-07-16 07:11:46 UTC (rev 21619)
@@ -87,6 +87,7 @@
 	Operator documentatuon text, will be used for the operator tooltip and python docs.
 	'''
 	__label__ = "Console Execute"
+	__register__ = True
 	
 	# Both prompts must be the same length
 	PROMPT = '>>> ' 
@@ -362,6 +363,7 @@
 	Operator documentatuon text, will be used for the operator tooltip and python docs.
 	'''
 	__label__ = "Console Autocomplete"
+	__register__ = True
 	
 	def poll(self, context):
 		return context.space_data.type == 'PYTHON'

Modified: branches/blender2.5/blender/source/blender/editors/space_console/console_draw.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/space_console/console_draw.c	2009-07-16 06:27:37 UTC (rev 21618)
+++ branches/blender2.5/blender/source/blender/editors/space_console/console_draw.c	2009-07-16 07:11:46 UTC (rev 21619)
@@ -71,44 +71,57 @@
 	BLF_size(sc->lheight, 72);
 }
 
-static void console_line_color(int type)
+static void console_line_color(unsigned char *fg, int type)
 {
-	switch(type){
+	switch(type) {
 	case CONSOLE_LINE_OUTPUT:
-		glColor4ub(96, 128, 255, 255);
+		fg[0]=96; fg[1]=128; fg[2]=255;
 		break;
 	case CONSOLE_LINE_INPUT:
-		glColor4ub(255, 255, 255, 255);
+		fg[0]=255; fg[1]=255; fg[2]=255;
 		break;
 	case CONSOLE_LINE_INFO:
-		glColor4ub(0, 170, 0, 255);
+		fg[0]=0; fg[1]=170; fg[2]=0;
 		break;
 	case CONSOLE_LINE_ERROR:
-		glColor4ub(220, 96, 96, 255);
+		fg[0]=220; fg[1]=96; fg[2]=96;
 		break;
 	}
 }
 
-static void console_report_color(int type)
+static void console_report_color(unsigned char *fg, int type)
 {
-	if(type & RPT_ERROR_ALL)	return glColor4ub(220, 0, 0, 255);
-	if(type & RPT_WARNING_ALL)	return glColor4ub(220, 96, 96, 255);
-	if(type & RPT_OPERATOR_ALL)	return glColor4ub(96, 128, 255, 255);
-	if(type & RPT_INFO_ALL)		return glColor4ub(0, 170, 0, 255); 
-	if(type & RPT_DEBUG_ALL)	return glColor4ub(196, 196, 196, 255);
-	return glColor4ub(196, 196, 196, 255); /* unknown */
+	/*
+	if		(type & RPT_ERROR_ALL)		{ fg[0]=220; fg[1]=0; fg[2]=0; }
+	else if	(type & RPT_WARNING_ALL)	{ fg[0]=220; fg[1]=96; fg[2]=96; }
+	else if	(type & RPT_OPERATOR_ALL)	{ fg[0]=96; fg[1]=128; fg[2]=255; }
+	else if	(type & RPT_INFO_ALL)		{ fg[0]=0; fg[1]=170; fg[2]=0; }
+	else if	(type & RPT_DEBUG_ALL)		{ fg[0]=196; fg[1]=196; fg[2]=196; }
+	else								{ fg[0]=196; fg[1]=196; fg[2]=196; }
+	*/
+
+	fg[0]=0; fg[1]=0; fg[2]=0;
 }
 
 
 /* return 0 if the last line is off the screen
  * should be able to use this for any string type */
-static int console_draw_string(char *str, int str_len, int console_width, int lheight, int ymax, int *x, int *y)
+static int console_draw_string(char *str, int str_len, int console_width, int lheight, unsigned char *fg, unsigned char *bg, int winx, int winy, int *x, int *y)
 {	
+	int rct_ofs= lheight/4;
+
 	if(str_len > console_width) { /* wrap? */
 		int tot_lines = (str_len/console_width)+1;							/* total number of lines for wrapping */
 		char *line_stride= str + ((tot_lines-1) * console_width);	/* advance to the last line and draw it first */
 		char eol;															/* baclup the end of wrapping */
 		
+		if(bg) {
+			glColor3ub(bg[0], bg[1], bg[2]);
+			glRecti(0, *y-rct_ofs, winx, (*y+(lheight*tot_lines))+rct_ofs);
+		}
+
+		glColor3ub(fg[0], fg[1], fg[2]);
+
 		/* last part needs no clipping */
 		BLF_position(*x, *y, 0); (*y) += lheight;
 		BLF_draw(line_stride);
@@ -124,15 +137,23 @@
 			line_stride[console_width] = eol; /* restore */
 			
 			/* check if were out of view bounds */
-			if(*y > ymax)
+			if(*y > winy)
 				return 0;
 		}
 	}
 	else { /* simple, no wrap */
+
+		if(bg) {
+			glColor3ub(bg[0], bg[1], bg[2]);
+			glRecti(0, *y-rct_ofs, winx, *y+lheight-rct_ofs);
+		}
+
+		glColor3ub(fg[0], fg[1], fg[2]);
+
 		BLF_position(*x, *y, 0); (*y) += lheight;
 		BLF_draw(str);
 		
-		if(*y > ymax)
+		if(*y > winy)
 			return 0;
 	}
 
@@ -140,6 +161,7 @@
 }
 
 #define CONSOLE_DRAW_MARGIN 8
+#define CONSOLE_LINE_MARGIN 6
 
 void console_text_main(struct SpaceConsole *sc, struct ARegion *ar, ReportList *reports)
 {
@@ -149,8 +171,8 @@
 	int x,y;
 	int cwidth;
 	int console_width; /* number of characters that fit into the width of the console (fixed width) */
+	unsigned char fg[3];
 	
-	
 	console_font_begin(sc);
 	cwidth = BLF_fixed_width();
 	
@@ -163,7 +185,8 @@
 		int prompt_len= strlen(sc->prompt);
 		
 		/* text */
-		console_line_color(CONSOLE_LINE_INPUT);
+		console_line_color(fg, CONSOLE_LINE_INPUT);
+		glColor3ub(fg[0], fg[1], fg[2]);
 		
 		/* command line */
 		if(prompt_len) {
@@ -174,7 +197,8 @@
 		BLF_draw(cl->line);	
 		
 		/* cursor */
-		console_line_color(CONSOLE_LINE_ERROR); /* lazy */
+		console_line_color(fg, CONSOLE_LINE_ERROR); /* lazy */
+		glColor3ub(fg[0], fg[1], fg[2]);
 		glRecti(x+(cwidth*cl->cursor) -1, y-2, x+(cwidth*cl->cursor) +1, y+sc->lheight-2);
 		
 		x= x_orig; /* remove prompt offset */
@@ -182,9 +206,9 @@
 		y += sc->lheight;
 		
 		for(cl= sc->scrollback.last; cl; cl= cl->prev) {
-			console_line_color(cl->type);
+			console_line_color(fg, cl->type);
 
-			if(!console_draw_string(cl->line, cl->len, console_width, sc->lheight, ar->winy + sc->lheight, &x, &y))
+			if(!console_draw_string(cl->line, cl->len, console_width, sc->lheight+CONSOLE_LINE_MARGIN, fg, NULL, ar->winx, ar->winy, &x, &y))
 				break; /* past the y limits */
 			
 		}
@@ -192,20 +216,28 @@
 	else { 
 		Report *report;
 		int report_mask= 0;
+		int bool= 0;
+		unsigned char bg[3] = {114, 114, 114};
 		
+		glClearColor(120.0/255.0, 120.0/255.0, 120.0/255.0, 1.0);
+		glClear(GL_COLOR_BUFFER_BIT);
+
 		/* convert our display toggles into a flag compatible with BKE_report flags */
 		if(sc->rpt_mask & CONSOLE_RPT_DEBUG)	report_mask |= RPT_DEBUG_ALL;
-		if(sc->rpt_mask & CONSOLE_RPT_INFO)	report_mask |= RPT_INFO_ALL;
+		if(sc->rpt_mask & CONSOLE_RPT_INFO)		report_mask |= RPT_INFO_ALL;
 		if(sc->rpt_mask & CONSOLE_RPT_OP)		report_mask |= RPT_OPERATOR_ALL;
-		if(sc->rpt_mask & CONSOLE_RPT_WARN)	report_mask |= RPT_WARNING_ALL;
+		if(sc->rpt_mask & CONSOLE_RPT_WARN)		report_mask |= RPT_WARNING_ALL;
 		if(sc->rpt_mask & CONSOLE_RPT_ERR)		report_mask |= RPT_ERROR_ALL;
 		
 		for(report=reports->list.last; report; report=report->prev) {
 			
 			if(report->type & report_mask) {
-				console_report_color(report->type);
-				if(!console_draw_string(report->message, strlen(report->message), console_width, sc->lheight, ar->winy + sc->lheight, &x, &y))
+				console_report_color(fg, report->type);
+				if(!console_draw_string(report->message, strlen(report->message), console_width, sc->lheight+CONSOLE_LINE_MARGIN, fg, bool?bg:NULL, ar->winx, ar->winy, &x, &y))
 					break; /* past the y limits */
+
+				y+=CONSOLE_LINE_MARGIN;
+				bool = !(bool);
 			}
 			
 		}

Modified: branches/blender2.5/blender/source/blender/editors/space_console/console_ops.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/space_console/console_ops.c	2009-07-16 06:27:37 UTC (rev 21618)
+++ branches/blender2.5/blender/source/blender/editors/space_console/console_ops.c	2009-07-16 07:11:46 UTC (rev 21619)
@@ -562,7 +562,7 @@
 	ot->exec= zoom_exec;
 
 	/* flags */
-	ot->flag= OPTYPE_REGISTER;
+	/* ot->flag= OPTYPE_REGISTER; */ /* super annoying */
 	
 	/* properties */
 	RNA_def_int(ot->srna, "delta", 0, 0, INT_MAX, "Delta", "Scale the view font.", 0, 1000);

Modified: branches/blender2.5/blender/source/blender/python/intern/bpy_operator_wrap.c
===================================================================
--- branches/blender2.5/blender/source/blender/python/intern/bpy_operator_wrap.c	2009-07-16 06:27:37 UTC (rev 21618)
+++ branches/blender2.5/blender/source/blender/python/intern/bpy_operator_wrap.c	2009-07-16 07:11:46 UTC (rev 21619)
@@ -46,6 +46,7 @@
 #define PYOP_ATTR_UINAME		"__label__"
 #define PYOP_ATTR_IDNAME		"__name__"	/* use pythons class name */
 #define PYOP_ATTR_DESCRIPTION	"__doc__"	/* use pythons docstring */
+#define PYOP_ATTR_REGISTER		"__register__"	/* True/False. if this python operator should be registered */
 
 static struct BPY_flag_def pyop_ret_flags[] = {
 	{"RUNNING_MODAL", OPERATOR_RUNNING_MODAL},
@@ -210,8 +211,8 @@
 
 		/* get class name */
 		item= PyObject_GetAttrString(py_class, PYOP_ATTR_IDNAME);
+		strcpy(class_name, _PyUnicode_AsString(item));
 		Py_DECREF(item);
-		strcpy(class_name, _PyUnicode_AsString(item));
 
 		fprintf(stderr, "%s's %s returned %s\n", class_name, mode == PYOP_EXEC ? "execute" : "invoke", flag_str);
 	}
@@ -246,14 +247,14 @@
 
 	/* identifiers */
 	item= PyObject_GetAttrString(py_class, PYOP_ATTR_IDNAME);
+	ot->idname= _PyUnicode_AsString(item);
 	Py_DECREF(item);
-	ot->idname= _PyUnicode_AsString(item);
 	
 
 	item= PyObject_GetAttrString(py_class, PYOP_ATTR_UINAME);
 	if (item) {
+		ot->name= _PyUnicode_AsString(item);
 		Py_DECREF(item);
-		ot->name= _PyUnicode_AsString(item);
 	}
 	else {
 		ot->name= ot->idname;
@@ -261,8 +262,8 @@
 	}
 
 	item= PyObject_GetAttrString(py_class, PYOP_ATTR_DESCRIPTION);
+	ot->description= (item && PyUnicode_Check(item)) ? _PyUnicode_AsString(item):"";
 	Py_DECREF(item);
-	ot->description= (item && PyUnicode_Check(item)) ? _PyUnicode_AsString(item):"";
 	
 	/* api callbacks, detailed checks dont on adding */ 
 	if (PyObject_HasAttrString(py_class, "invoke"))
@@ -274,13 +275,22 @@
 	
 	ot->pyop_data= userdata;
 	
+	/* flags */
+	item= PyObject_GetAttrString(py_class, PYOP_ATTR_REGISTER);
+	if (item) {
+		ot->flag= PyObject_IsTrue(item)!=0 ? OPTYPE_REGISTER:0;
+		Py_DECREF(item);
+	}
+	else {
+		ot->flag= OPTYPE_REGISTER; /* unspesified, leave on for now to help debug */
+		PyErr_Clear();
+	}
+	
 	props= PyObject_GetAttrString(py_class, PYOP_ATTR_PROP);
 	
 	if (props) {
 		PyObject *dummy_args = PyTuple_New(0);
 		int i;
-		
-		Py_DECREF(props);
 
 		for(i=0; i<PyList_Size(props); i++) {
 			PyObject *py_func_ptr, *py_kw, *py_srna_cobject, *py_ret;
@@ -310,6 +320,7 @@
 			// expect a tuple with a CObject and a dict
 		}
 		Py_DECREF(dummy_args);
+		Py_DECREF(props);
 	} else {
 		PyErr_Clear();
 	}
@@ -340,16 +351,16 @@
 	// in python would be...

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list