| 
									
										
										
										
											2011-02-23 10:52:22 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  |  * ***** BEGIN GPL LICENSE BLOCK ***** | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  |  * of the License, or (at your option) any later version.  | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software Foundation, | 
					
						
							| 
									
										
										
										
											2010-02-12 13:34:04 +00:00
										 |  |  |  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is Copyright (C) 2008 Blender Foundation. | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Contributor(s): Blender Foundation, Nathan Letwory | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ***** END GPL LICENSE BLOCK ***** | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-27 20:29:51 +00:00
										 |  |  | /** \file blender/editors/space_node/node_select.c
 | 
					
						
							|  |  |  |  *  \ingroup spnode | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 12:51:50 +00:00
										 |  |  | #include "BLI_listbase.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | #include "DNA_node_types.h"
 | 
					
						
							|  |  |  | #include "DNA_scene_types.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "BKE_context.h"
 | 
					
						
							| 
									
										
										
										
											2011-08-12 18:27:48 +00:00
										 |  |  | #include "BKE_main.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "BLI_rect.h"
 | 
					
						
							| 
									
										
										
										
											2011-01-07 18:36:47 +00:00
										 |  |  | #include "BLI_utildefines.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 18:27:48 +00:00
										 |  |  | #include "ED_node.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | #include "ED_screen.h"
 | 
					
						
							|  |  |  | #include "ED_types.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "RNA_access.h"
 | 
					
						
							|  |  |  | #include "RNA_define.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "WM_api.h"
 | 
					
						
							|  |  |  | #include "WM_types.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "UI_view2d.h"
 | 
					
						
							|  |  |  |   | 
					
						
							|  |  |  | #include "node_intern.h"
 | 
					
						
							| 
									
										
										
										
											2010-01-06 03:00:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ****** helpers ****** */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static bNode *node_under_mouse(bNodeTree *ntree, int mx, int my) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bNode *node; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 	for(node=ntree->nodes.last; node; node=node->prev) { | 
					
						
							| 
									
										
										
										
											2010-01-06 03:00:19 +00:00
										 |  |  | 		/* node body (header and scale are in other operators) */ | 
					
						
							|  |  |  | 		if (BLI_in_rctf(&node->totr, mx, my)) | 
					
						
							|  |  |  | 			return node; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 12:51:50 +00:00
										 |  |  | static int compare_nodes(bNode *a, bNode *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bNode *parent; | 
					
						
							|  |  |  | 	/* These tell if either the node or any of the parent nodes is selected.
 | 
					
						
							|  |  |  | 	 * A selected parent means an unselected node is also in foreground! | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	int a_select=(a->flag & NODE_SELECT), b_select=(b->flag & NODE_SELECT); | 
					
						
							|  |  |  | 	int a_active=(a->flag & NODE_ACTIVE), b_active=(b->flag & NODE_ACTIVE); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* if one is an ancestor of the other */ | 
					
						
							|  |  |  | 	/* XXX there might be a better sorting algorithm for stable topological sort, this is O(n^2) worst case */ | 
					
						
							|  |  |  | 	for (parent = a->parent; parent; parent=parent->parent) { | 
					
						
							|  |  |  | 		/* if b is an ancestor, it is always behind a */ | 
					
						
							|  |  |  | 		if (parent==b) | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		/* any selected ancestor moves the node forward */ | 
					
						
							|  |  |  | 		if (parent->flag & NODE_ACTIVE) | 
					
						
							|  |  |  | 			a_active = 1; | 
					
						
							|  |  |  | 		if (parent->flag & NODE_SELECT) | 
					
						
							|  |  |  | 			a_select = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for (parent = b->parent; parent; parent=parent->parent) { | 
					
						
							|  |  |  | 		/* if a is an ancestor, it is always behind b */ | 
					
						
							|  |  |  | 		if (parent==a) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		/* any selected ancestor moves the node forward */ | 
					
						
							|  |  |  | 		if (parent->flag & NODE_ACTIVE) | 
					
						
							|  |  |  | 			b_active = 1; | 
					
						
							|  |  |  | 		if (parent->flag & NODE_SELECT) | 
					
						
							|  |  |  | 			b_select = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* if one of the nodes is in the background and the other not */ | 
					
						
							|  |  |  | 	if ((a->flag & NODE_BACKGROUND) && !(b->flag & NODE_BACKGROUND)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	else if (!(a->flag & NODE_BACKGROUND) && (b->flag & NODE_BACKGROUND)) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* if one has a higher selection state (active > selected > nothing) */ | 
					
						
							|  |  |  | 	if (!b_active && a_active) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	else if (!b_select && (a_active || a_select)) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Sorts nodes by selection: unselected nodes first, then selected,
 | 
					
						
							|  |  |  |  * then the active node at the very end. Relative order is kept intact! | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void node_sort(bNodeTree *ntree) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* merge sort is the algorithm of choice here */ | 
					
						
							|  |  |  | 	bNode *first_a, *first_b, *node_a, *node_b, *tmp; | 
					
						
							|  |  |  | 	int totnodes= BLI_countlist(&ntree->nodes); | 
					
						
							|  |  |  | 	int k, a, b; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	k = 1; | 
					
						
							|  |  |  | 	while (k < totnodes) { | 
					
						
							|  |  |  | 		first_a = first_b = ntree->nodes.first; | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			/* setup first_b pointer */ | 
					
						
							|  |  |  | 			for (b=0; b < k && first_b; ++b) { | 
					
						
							|  |  |  | 				first_b = first_b->next; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* all batches merged? */ | 
					
						
							|  |  |  | 			if (first_b==NULL) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			/* merge batches */ | 
					
						
							|  |  |  | 			node_a = first_a; | 
					
						
							|  |  |  | 			node_b = first_b; | 
					
						
							|  |  |  | 			a = b = 0; | 
					
						
							|  |  |  | 			while (a < k && b < k && node_b) { | 
					
						
							|  |  |  | 				if (compare_nodes(node_a, node_b)==0) { | 
					
						
							|  |  |  | 					node_a = node_a->next; | 
					
						
							|  |  |  | 					++a; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					tmp = node_b; | 
					
						
							|  |  |  | 					node_b = node_b->next; | 
					
						
							|  |  |  | 					++b; | 
					
						
							|  |  |  | 					BLI_remlink(&ntree->nodes, tmp); | 
					
						
							|  |  |  | 					BLI_insertlinkbefore(&ntree->nodes, node_a, tmp); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* setup first pointers for next batch */ | 
					
						
							|  |  |  | 			first_b = node_b; | 
					
						
							|  |  |  | 			for (; b < k; ++b) { | 
					
						
							|  |  |  | 				/* all nodes sorted? */ | 
					
						
							|  |  |  | 				if (first_b==NULL) | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				first_b = first_b->next; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			first_a = first_b; | 
					
						
							|  |  |  | 		} while (first_b); | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		k = k << 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* no undo here! */ | 
					
						
							|  |  |  | void node_deselect_all(SpaceNode *snode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bNode *node; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	for(node= snode->edittree->nodes.first; node; node= node->next) | 
					
						
							|  |  |  | 		node->flag &= ~SELECT; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* return 1 if we need redraw otherwise zero. */ | 
					
						
							|  |  |  | int node_select_same_type(SpaceNode *snode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bNode *nac, *p; | 
					
						
							|  |  |  | 	int redraw; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* search for the active node. */ | 
					
						
							|  |  |  | 	for (nac= snode->edittree->nodes.first; nac; nac= nac->next) { | 
					
						
							|  |  |  | 		if (nac->flag & SELECT) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* no active node, return. */ | 
					
						
							|  |  |  | 	if (!nac) | 
					
						
							|  |  |  | 		return(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	redraw= 0; | 
					
						
							|  |  |  | 	for (p= snode->edittree->nodes.first; p; p= p->next) { | 
					
						
							|  |  |  | 		if (p->type != nac->type && p->flag & SELECT) { | 
					
						
							|  |  |  | 			/* if it's selected but different type, unselect */ | 
					
						
							|  |  |  | 			redraw= 1; | 
					
						
							|  |  |  | 			p->flag &= ~SELECT; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (p->type == nac->type && (!(p->flag & SELECT))) { | 
					
						
							|  |  |  | 			/* if it's the same type and is not selected, select! */ | 
					
						
							|  |  |  | 			redraw= 1; | 
					
						
							|  |  |  | 			p->flag |= SELECT; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return(redraw); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* return 1 if we need redraw, otherwise zero.
 | 
					
						
							|  |  |  |  * dir can be 0 == next or 0 != prev. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int node_select_same_type_np(SpaceNode *snode, int dir) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bNode *nac, *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* search the active one. */ | 
					
						
							|  |  |  | 	for (nac= snode->edittree->nodes.first; nac; nac= nac->next) { | 
					
						
							|  |  |  | 		if (nac->flag & SELECT) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* no active node, return. */ | 
					
						
							|  |  |  | 	if (!nac) | 
					
						
							|  |  |  | 		return(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dir == 0) | 
					
						
							|  |  |  | 		p= nac->next; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		p= nac->prev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (p) { | 
					
						
							|  |  |  | 		/* Now search the next with the same type. */ | 
					
						
							|  |  |  | 		if (p->type == nac->type) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (dir == 0) | 
					
						
							|  |  |  | 			p= p->next; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			p= p->prev; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p) { | 
					
						
							|  |  |  | 		node_deselect_all(snode); | 
					
						
							|  |  |  | 		p->flag |= SELECT; | 
					
						
							|  |  |  | 		return(1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return(0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void node_select_single(bContext *C, bNode *node) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Main *bmain= CTX_data_main(C); | 
					
						
							|  |  |  | 	SpaceNode *snode= CTX_wm_space_node(C); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	node_deselect_all(snode); | 
					
						
							|  |  |  | 	node->flag |= SELECT; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	ED_node_set_active(bmain, snode->edittree, node); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-20 21:04:41 +00:00
										 |  |  | /* ****** Click Select ****** */ | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2011-08-12 18:27:48 +00:00
										 |  |  | static bNode *node_mouse_select(Main *bmain, SpaceNode *snode, ARegion *ar, const int mval[2], short extend) | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	bNode *node; | 
					
						
							|  |  |  | 	float mx, my; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	/* get mouse coordinates in view2d space */ | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 	mx= (float)mval[0]; | 
					
						
							|  |  |  | 	my= (float)mval[1]; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	UI_view2d_region_to_view(&ar->v2d, mval[0], mval[1], &mx, &my); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	/* find the closest visible node */ | 
					
						
							| 
									
										
										
										
											2010-01-06 03:00:19 +00:00
										 |  |  | 	node = node_under_mouse(snode->edittree, mx, my); | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	if (node) { | 
					
						
							|  |  |  | 		if (extend == 0) { | 
					
						
							| 
									
										
										
										
											2011-12-18 12:51:50 +00:00
										 |  |  | 			node_deselect_all(snode); | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 			node->flag |= SELECT; | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-12-28 20:49:37 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 			node->flag ^= SELECT; | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2011-08-12 18:27:48 +00:00
										 |  |  | 		ED_node_set_active(bmain, snode->edittree, node); | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		node_sort(snode->edittree); | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-06 15:31:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return node; | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int node_select_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-12 18:27:48 +00:00
										 |  |  | 	Main *bmain= CTX_data_main(C); | 
					
						
							| 
									
										
										
										
											2009-07-28 16:33:02 +00:00
										 |  |  | 	SpaceNode *snode= CTX_wm_space_node(C); | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 	ARegion *ar= CTX_wm_region(C); | 
					
						
							| 
									
										
										
										
											2011-05-12 16:47:36 +00:00
										 |  |  | 	int mval[2]; | 
					
						
							| 
									
										
										
										
											2009-01-02 23:58:03 +00:00
										 |  |  | 	short extend; | 
					
						
							| 
									
										
										
										
											2011-09-20 08:48:48 +00:00
										 |  |  | 	/* bNode *node= NULL; */ /* UNUSED */ | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	/* get settings from RNA properties for operator */ | 
					
						
							|  |  |  | 	mval[0] = RNA_int_get(op->ptr, "mouse_x"); | 
					
						
							|  |  |  | 	mval[1] = RNA_int_get(op->ptr, "mouse_y"); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	extend = RNA_boolean_get(op->ptr, "extend"); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* perform the select */ | 
					
						
							| 
									
										
										
										
											2011-09-20 08:48:48 +00:00
										 |  |  | 	/* node= */ /* UNUSED*/ node_mouse_select(bmain, snode, ar, mval, extend); | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2010-03-22 09:30:00 +00:00
										 |  |  | 	/* send notifiers */ | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2009-02-06 16:34:05 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-01-28 15:39:39 +00:00
										 |  |  | 	/* allow tweak event to work too */ | 
					
						
							| 
									
										
										
										
											2009-01-28 21:43:43 +00:00
										 |  |  | 	return OPERATOR_FINISHED|OPERATOR_PASS_THROUGH; | 
					
						
							| 
									
										
										
										
											2009-01-12 00:00:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | static int node_select_invoke(bContext *C, wmOperator *op, wmEvent *event) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-20 07:40:05 +00:00
										 |  |  | 	RNA_int_set(op->ptr, "mouse_x", event->mval[0]); | 
					
						
							|  |  |  | 	RNA_int_set(op->ptr, "mouse_y", event->mval[1]); | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return node_select_exec(C,op); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-28 20:49:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | void NODE_OT_select(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	ot->name= "Select"; | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 	ot->idname= "NODE_OT_select"; | 
					
						
							| 
									
										
										
										
											2011-09-19 12:26:20 +00:00
										 |  |  | 	ot->description= "Select the node under the cursor"; | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->invoke= node_select_invoke; | 
					
						
							|  |  |  | 	ot->poll= ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-01-31 19:40:40 +00:00
										 |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	/* properties */ | 
					
						
							| 
									
										
										
										
											2009-01-16 23:53:11 +00:00
										 |  |  | 	RNA_def_int(ot->srna, "mouse_x", 0, INT_MIN, INT_MAX, "Mouse X", "", INT_MIN, INT_MAX); | 
					
						
							|  |  |  | 	RNA_def_int(ot->srna, "mouse_y", 0, INT_MIN, INT_MAX, "Mouse Y", "", INT_MIN, INT_MAX); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "extend", 0, "Extend", ""); | 
					
						
							| 
									
										
										
										
											2008-12-28 00:08:34 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ****** Border Select ****** */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int node_borderselect_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-28 16:33:02 +00:00
										 |  |  | 	SpaceNode *snode= CTX_wm_space_node(C); | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	ARegion *ar= CTX_wm_region(C); | 
					
						
							|  |  |  | 	bNode *node; | 
					
						
							|  |  |  | 	rcti rect; | 
					
						
							|  |  |  | 	rctf rectf; | 
					
						
							| 
									
										
										
										
											2009-11-06 22:51:08 +00:00
										 |  |  | 	int gesture_mode= RNA_int_get(op->ptr, "gesture_mode"); | 
					
						
							| 
									
										
										
										
											2011-11-16 19:22:14 +00:00
										 |  |  | 	int extend= RNA_boolean_get(op->ptr, "extend"); | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	rect.xmin= RNA_int_get(op->ptr, "xmin"); | 
					
						
							|  |  |  | 	rect.ymin= RNA_int_get(op->ptr, "ymin"); | 
					
						
							|  |  |  | 	UI_view2d_region_to_view(&ar->v2d, rect.xmin, rect.ymin, &rectf.xmin, &rectf.ymin); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	rect.xmax= RNA_int_get(op->ptr, "xmax"); | 
					
						
							|  |  |  | 	rect.ymax= RNA_int_get(op->ptr, "ymax"); | 
					
						
							|  |  |  | 	UI_view2d_region_to_view(&ar->v2d, rect.xmax, rect.ymax, &rectf.xmax, &rectf.ymax); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	for(node= snode->edittree->nodes.first; node; node= node->next) { | 
					
						
							|  |  |  | 		if(BLI_isect_rctf(&rectf, &node->totr, NULL)) { | 
					
						
							| 
									
										
										
										
											2009-11-06 22:51:08 +00:00
										 |  |  | 			if(gesture_mode==GESTURE_MODAL_SELECT) | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 				node->flag |= SELECT; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				node->flag &= ~SELECT; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-11-16 19:22:14 +00:00
										 |  |  | 		else if(!extend) { | 
					
						
							|  |  |  | 			node->flag &= ~SELECT; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2009-01-07 16:49:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-06 03:00:19 +00:00
										 |  |  | static int node_border_select_invoke(bContext *C, wmOperator *op, wmEvent *event) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int tweak = RNA_boolean_get(op->ptr, "tweak"); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (tweak) { | 
					
						
							|  |  |  | 		/* prevent initiating the border select if the mouse is over a node */ | 
					
						
							|  |  |  | 		/* this allows border select on empty space, but drag-translate on nodes */ | 
					
						
							|  |  |  | 		SpaceNode *snode= CTX_wm_space_node(C); | 
					
						
							|  |  |  | 		ARegion *ar= CTX_wm_region(C); | 
					
						
							|  |  |  | 		float mx, my; | 
					
						
							| 
									
										
										
										
											2011-05-20 07:40:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		UI_view2d_region_to_view(&ar->v2d, event->mval[0], event->mval[1], &mx, &my); | 
					
						
							| 
									
										
										
										
											2010-01-06 03:00:19 +00:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		if (node_under_mouse(snode->edittree, mx, my)) | 
					
						
							|  |  |  | 			return OPERATOR_CANCELLED|OPERATOR_PASS_THROUGH; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	return WM_border_select_invoke(C, op, event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-29 02:15:13 +00:00
										 |  |  | void NODE_OT_select_border(wmOperatorType *ot) | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name= "Border Select"; | 
					
						
							| 
									
										
										
										
											2009-03-29 02:15:13 +00:00
										 |  |  | 	ot->idname= "NODE_OT_select_border"; | 
					
						
							| 
									
										
										
										
											2010-12-08 21:56:50 +00:00
										 |  |  | 	ot->description= "Use box selection to select nodes"; | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2010-01-06 03:00:19 +00:00
										 |  |  | 	ot->invoke= node_border_select_invoke; | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	ot->exec= node_borderselect_exec; | 
					
						
							|  |  |  | 	ot->modal= WM_border_select_modal; | 
					
						
							| 
									
										
										
										
											2011-06-06 11:04:54 +00:00
										 |  |  | 	ot->cancel= WM_border_select_cancel; | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	ot->poll= ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-01-31 19:40:40 +00:00
										 |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-01-05 23:53:04 +00:00
										 |  |  | 	/* rna */ | 
					
						
							| 
									
										
										
										
											2011-11-16 19:22:14 +00:00
										 |  |  | 	WM_operator_properties_gesture_border(ot, TRUE); | 
					
						
							| 
									
										
										
										
											2010-01-06 03:00:19 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "tweak", 0, "Tweak", "Only activate when mouse is not over a node - useful for tweak gesture"); | 
					
						
							| 
									
										
										
										
											2009-01-16 23:53:11 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ****** Select/Deselect All ****** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-15 01:36:14 +00:00
										 |  |  | static int node_select_all_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	SpaceNode *snode = CTX_wm_space_node(C); | 
					
						
							|  |  |  | 	bNode *first = snode->edittree->nodes.first; | 
					
						
							|  |  |  | 	bNode *node; | 
					
						
							|  |  |  | 	int count= 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for(node=first; node; node=node->next) | 
					
						
							|  |  |  | 		if(node->flag & NODE_SELECT) | 
					
						
							|  |  |  | 			count++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if(count) { | 
					
						
							|  |  |  | 		for(node=first; node; node=node->next) | 
					
						
							|  |  |  | 			node->flag &= ~NODE_SELECT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		for(node=first; node; node=node->next) | 
					
						
							|  |  |  | 			node->flag |= NODE_SELECT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NODE_OT_select_all(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2010-07-21 22:57:48 +00:00
										 |  |  | 	ot->name = "Select or Deselect All"; | 
					
						
							| 
									
										
										
										
											2010-02-10 21:15:44 +00:00
										 |  |  | 	ot->description = "(De)select all nodes"; | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	ot->idname = "NODE_OT_select_all"; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = node_select_all_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ****** Select Linked To ****** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-15 01:36:14 +00:00
										 |  |  | static int node_select_linked_to_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	SpaceNode *snode = CTX_wm_space_node(C); | 
					
						
							|  |  |  | 	bNodeLink *link; | 
					
						
							|  |  |  | 	bNode *node; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	for (node=snode->edittree->nodes.first; node; node=node->next) | 
					
						
							|  |  |  | 		node->flag &= ~NODE_TEST; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	for (link=snode->edittree->links.first; link; link=link->next) { | 
					
						
							| 
									
										
										
										
											2011-02-21 13:47:49 +00:00
										 |  |  | 		if (link->fromnode && link->tonode && (link->fromnode->flag & NODE_SELECT)) | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 			link->tonode->flag |= NODE_TEST; | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	for (node=snode->edittree->nodes.first; node; node=node->next) { | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 		if (node->flag & NODE_TEST) | 
					
						
							|  |  |  | 			node->flag |= NODE_SELECT; | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NODE_OT_select_linked_to(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Linked To"; | 
					
						
							| 
									
										
										
										
											2010-02-10 21:15:44 +00:00
										 |  |  | 	ot->description = "Select nodes linked to the selected ones"; | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	ot->idname = "NODE_OT_select_linked_to"; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = node_select_linked_to_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ****** Select Linked From ****** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-15 01:36:14 +00:00
										 |  |  | static int node_select_linked_from_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	SpaceNode *snode = CTX_wm_space_node(C); | 
					
						
							|  |  |  | 	bNodeLink *link; | 
					
						
							|  |  |  | 	bNode *node; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	for(node=snode->edittree->nodes.first; node; node=node->next) | 
					
						
							|  |  |  | 		node->flag &= ~NODE_TEST; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	for(link=snode->edittree->links.first; link; link=link->next) { | 
					
						
							| 
									
										
										
										
											2011-02-21 13:47:49 +00:00
										 |  |  | 		if(link->fromnode && link->tonode && (link->tonode->flag & NODE_SELECT)) | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 			link->fromnode->flag |= NODE_TEST; | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	for(node=snode->edittree->nodes.first; node; node=node->next) { | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 		if(node->flag & NODE_TEST) | 
					
						
							|  |  |  | 			node->flag |= NODE_SELECT; | 
					
						
							| 
									
										
										
										
											2009-11-20 04:19:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NODE_OT_select_linked_from(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Linked From"; | 
					
						
							| 
									
										
										
										
											2010-02-10 21:15:44 +00:00
										 |  |  | 	ot->description = "Select nodes linked from the selected ones"; | 
					
						
							| 
									
										
										
										
											2009-09-14 08:47:13 +00:00
										 |  |  | 	ot->idname = "NODE_OT_select_linked_from"; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = node_select_linked_from_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-12 12:03:38 +00:00
										 |  |  | /* ****** Select Same Type ****** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-15 01:36:14 +00:00
										 |  |  | static int node_select_same_type_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							| 
									
										
										
										
											2010-05-12 12:03:38 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	SpaceNode *snode = CTX_wm_space_node(C); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	node_select_same_type(snode); | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2010-05-12 12:03:38 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NODE_OT_select_same_type(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Same Type"; | 
					
						
							| 
									
										
										
										
											2011-09-19 12:26:20 +00:00
										 |  |  | 	ot->description = "Select all the nodes of the same type"; | 
					
						
							| 
									
										
										
										
											2010-05-12 12:03:38 +00:00
										 |  |  | 	ot->idname = "NODE_OT_select_same_type"; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = node_select_same_type_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-05-12 13:55:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ****** Select The Next/Prev Node Of The Same Type ****** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-15 01:36:14 +00:00
										 |  |  | static int node_select_same_type_next_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							| 
									
										
										
										
											2010-05-12 13:55:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	SpaceNode *snode = CTX_wm_space_node(C); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	node_select_same_type_np(snode, 0); | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-12 13:55:09 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NODE_OT_select_same_type_next(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Same Type Next"; | 
					
						
							| 
									
										
										
										
											2011-09-19 12:26:20 +00:00
										 |  |  | 	ot->description = "Select the next node of the same type"; | 
					
						
							| 
									
										
										
										
											2010-05-12 13:55:09 +00:00
										 |  |  | 	ot->idname = "NODE_OT_select_same_type_next"; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = node_select_same_type_next_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-15 01:36:14 +00:00
										 |  |  | static int node_select_same_type_prev_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							| 
									
										
										
										
											2010-05-12 13:55:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	SpaceNode *snode = CTX_wm_space_node(C); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	node_select_same_type_np(snode, 1); | 
					
						
							| 
									
										
										
										
											2011-09-05 21:01:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	node_sort(snode->edittree); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-18 04:39:32 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_NODE|NA_SELECTED, NULL); | 
					
						
							| 
									
										
										
										
											2010-05-12 13:55:09 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void NODE_OT_select_same_type_prev(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Same Type Prev"; | 
					
						
							| 
									
										
										
										
											2011-09-19 12:26:20 +00:00
										 |  |  | 	ot->description = "Select the prev node of the same type"; | 
					
						
							| 
									
										
										
										
											2010-05-12 13:55:09 +00:00
										 |  |  | 	ot->idname = "NODE_OT_select_same_type_prev"; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = node_select_same_type_prev_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_node_active; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO; | 
					
						
							|  |  |  | } |