| 
									
										
										
										
											2011-10-24 23:32:24 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +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, | 
					
						
							| 
									
										
										
										
											2012-02-11 04:16:17 +00:00
										 |  |  |  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is Copyright (C) 2004 Blender Foundation. | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is: all of this file. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Contributor(s): none yet. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ***** END GPL LICENSE BLOCK ***** | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-24 00:20:36 +00:00
										 |  |  | /** \file blender/editors/mesh/editmesh_select.c
 | 
					
						
							|  |  |  |  *  \ingroup edmesh | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | #include "MEM_guardedalloc.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | #include "BLI_bitmap.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | #include "BLI_listbase.h"
 | 
					
						
							| 
									
										
										
										
											2013-06-04 01:23:51 +00:00
										 |  |  | #include "BLI_linklist.h"
 | 
					
						
							| 
									
										
										
										
											2013-08-17 05:33:55 +00:00
										 |  |  | #include "BLI_linklist_stack.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-23 14:41:22 +00:00
										 |  |  | #include "BLI_math.h"
 | 
					
						
							| 
									
										
										
										
											2015-04-22 04:10:15 +10:00
										 |  |  | #include "BLI_math_bits.h"
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | #include "BLI_rand.h"
 | 
					
						
							| 
									
										
										
										
											2009-09-17 23:05:33 +00:00
										 |  |  | #include "BLI_array.h"
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "BKE_context.h"
 | 
					
						
							|  |  |  | #include "BKE_report.h"
 | 
					
						
							| 
									
										
										
										
											2011-02-27 06:19:40 +00:00
										 |  |  | #include "BKE_paint.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-13 20:31:52 +00:00
										 |  |  | #include "BKE_editmesh.h"
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "IMB_imbuf_types.h"
 | 
					
						
							|  |  |  | #include "IMB_imbuf.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "WM_api.h"
 | 
					
						
							|  |  |  | #include "WM_types.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "RNA_access.h"
 | 
					
						
							|  |  |  | #include "RNA_define.h"
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | #include "RNA_enum_types.h"
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "ED_mesh.h"
 | 
					
						
							|  |  |  | #include "ED_screen.h"
 | 
					
						
							|  |  |  | #include "ED_view3d.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-28 17:13:09 +00:00
										 |  |  | #include "DNA_mesh_types.h"
 | 
					
						
							| 
									
										
										
										
											2013-03-13 06:44:43 +00:00
										 |  |  | #include "DNA_meshdata_types.h"
 | 
					
						
							| 
									
										
										
										
											2013-06-28 17:13:09 +00:00
										 |  |  | #include "DNA_object_types.h"
 | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | #include "UI_resources.h"
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 15:40:50 +10:00
										 |  |  | #include "bmesh_tools.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | #include "mesh_intern.h"  /* own include */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-15 04:34:14 +00:00
										 |  |  | /* use bmesh operator flags for a few operators */ | 
					
						
							|  |  |  | #define BMO_ELE_TAG 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | /* ****************************** MIRROR **************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-07 20:54:17 +11:00
										 |  |  | void EDBM_select_mirrored( | 
					
						
							|  |  |  |         BMEditMesh *em, const int axis, const bool extend, | 
					
						
							|  |  |  |         int *r_totmirr, int *r_totfail) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-06-28 17:13:09 +00:00
										 |  |  | 	Mesh *me = (Mesh *)em->ob->data; | 
					
						
							| 
									
										
										
										
											2013-07-01 21:56:59 +00:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							| 
									
										
										
										
											2012-02-06 09:39:47 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							| 
									
										
										
										
											2013-06-05 05:58:51 +00:00
										 |  |  | 	int totmirr = 0; | 
					
						
							|  |  |  | 	int totfail = 0; | 
					
						
							| 
									
										
										
										
											2013-06-28 17:13:09 +00:00
										 |  |  | 	bool use_topology = (me && (me->editflag & ME_EDIT_MIRROR_TOPO)); | 
					
						
							| 
									
										
										
										
											2013-06-05 05:58:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*r_totmirr = *r_totfail = 0; | 
					
						
							| 
									
										
										
										
											2011-05-10 23:48:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 21:56:59 +00:00
										 |  |  | 	/* select -> tag */ | 
					
						
							|  |  |  | 	if (bm->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 		BMVert *v; | 
					
						
							|  |  |  | 		BM_ITER_MESH (v, &iter, bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 			BM_elem_flag_set(v, BM_ELEM_TAG, BM_elem_flag_test(v, BM_ELEM_SELECT)); | 
					
						
							| 
									
										
										
										
											2012-02-06 09:39:47 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-01 21:56:59 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							|  |  |  | 		BMEdge *e; | 
					
						
							|  |  |  | 		BM_ITER_MESH (e, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			BM_elem_flag_set(e, BM_ELEM_TAG, BM_elem_flag_test(e, BM_ELEM_SELECT)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		BMFace *f; | 
					
						
							|  |  |  | 		BM_ITER_MESH (f, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							|  |  |  | 			BM_elem_flag_set(f, BM_ELEM_TAG, BM_elem_flag_test(f, BM_ELEM_SELECT)); | 
					
						
							| 
									
										
										
										
											2012-02-06 09:39:47 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-07 20:54:17 +11:00
										 |  |  | 	EDBM_verts_mirror_cache_begin(em, axis, true, true, use_topology); | 
					
						
							| 
									
										
										
										
											2012-02-06 09:39:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!extend) | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2012-02-06 09:39:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 21:56:59 +00:00
										 |  |  | 	if (bm->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 		BMVert *v; | 
					
						
							|  |  |  | 		BM_ITER_MESH (v, &iter, bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 			if (!BM_elem_flag_test(v, BM_ELEM_HIDDEN) && BM_elem_flag_test(v, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 				BMVert *v_mirr = EDBM_verts_mirror_get(em, v); | 
					
						
							|  |  |  | 				if (v_mirr && !BM_elem_flag_test(v_mirr, BM_ELEM_HIDDEN)) { | 
					
						
							|  |  |  | 					BM_vert_select_set(bm, v_mirr, true); | 
					
						
							|  |  |  | 					totmirr++; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					totfail++; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-06-05 05:58:51 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-01 21:56:59 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							|  |  |  | 		BMEdge *e; | 
					
						
							|  |  |  | 		BM_ITER_MESH (e, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			if (!BM_elem_flag_test(e, BM_ELEM_HIDDEN) && BM_elem_flag_test(e, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 				BMEdge *e_mirr = EDBM_verts_mirror_get_edge(em, e); | 
					
						
							|  |  |  | 				if (e_mirr && !BM_elem_flag_test(e_mirr, BM_ELEM_HIDDEN)) { | 
					
						
							|  |  |  | 					BM_edge_select_set(bm, e_mirr, true); | 
					
						
							|  |  |  | 					totmirr++; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					totfail++; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		BMFace *f; | 
					
						
							|  |  |  | 		BM_ITER_MESH (f, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							|  |  |  | 			if (!BM_elem_flag_test(f, BM_ELEM_HIDDEN) && BM_elem_flag_test(f, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 				BMFace *f_mirr = EDBM_verts_mirror_get_face(em, f); | 
					
						
							|  |  |  | 				if (f_mirr && !BM_elem_flag_test(f_mirr, BM_ELEM_HIDDEN)) { | 
					
						
							|  |  |  | 					BM_face_select_set(bm, f_mirr, true); | 
					
						
							|  |  |  | 					totmirr++; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					totfail++; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-06 09:39:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-27 04:46:52 +00:00
										 |  |  | 	EDBM_verts_mirror_cache_end(em); | 
					
						
							| 
									
										
										
										
											2013-06-05 05:58:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*r_totmirr = totmirr; | 
					
						
							|  |  |  | 	*r_totfail = totfail; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-16 05:13:12 +00:00
										 |  |  | void EDBM_automerge(Scene *scene, Object *obedit, bool update, const char hflag) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 11:25:41 +10:00
										 |  |  | 	bool ok; | 
					
						
							| 
									
										
										
										
											2013-06-16 05:13:12 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2012-12-13 00:41:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-16 05:13:12 +00:00
										 |  |  | 	ok = BMO_op_callf(em->bm, BMO_FLAG_DEFAULTS, | 
					
						
							|  |  |  | 	                  "automerge verts=%hv dist=%f", | 
					
						
							|  |  |  | 	                  hflag, scene->toolsettings->doublimit); | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-16 05:13:12 +00:00
										 |  |  | 	if (LIKELY(ok) && update) { | 
					
						
							|  |  |  | 		EDBM_update_generic(em, true, true); | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ****************************** SELECTION ROUTINES **************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | unsigned int bm_solidoffs = 0, bm_wireoffs = 0, bm_vertoffs = 0;    /* set in drawobject.c ... for colorindices */ | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* facilities for border select and circle select */ | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | static BLI_bitmap *selbuf = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static BLI_bitmap *edbm_backbuf_alloc(const int size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return BLI_BITMAP_NEW(size, "selbuf"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* reads rect, and builds selection array for quick lookup */ | 
					
						
							|  |  |  | /* returns if all is OK */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | bool EDBM_backbuf_border_init(ViewContext *vc, short xmin, short ymin, short xmax, short ymax) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ImBuf *buf; | 
					
						
							|  |  |  | 	unsigned int *dr; | 
					
						
							|  |  |  | 	int a; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2015-04-20 23:39:54 +10:00
										 |  |  | 	if (vc->obedit == NULL || !V3D_IS_ZBUF(vc->v3d)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 	buf = ED_view3d_backbuf_read(vc, xmin, ymin, xmax, ymax); | 
					
						
							| 
									
										
										
										
											2015-07-11 21:09:22 +10:00
										 |  |  | 	if ((buf == NULL) || (bm_vertoffs == 0)) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dr = buf->rect; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* build selection lookup */ | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 	selbuf = edbm_backbuf_alloc(bm_vertoffs + 1); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-03-21 09:10:08 +00:00
										 |  |  | 	a = (xmax - xmin + 1) * (ymax - ymin + 1); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	while (a--) { | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 		if (*dr > 0 && *dr <= bm_vertoffs) { | 
					
						
							| 
									
										
										
										
											2014-06-06 16:05:15 +10:00
										 |  |  | 			BLI_BITMAP_ENABLE(selbuf, *dr); | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		dr++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	IMB_freeImBuf(buf); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | bool EDBM_backbuf_check(unsigned int index) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-03 07:02:52 +00:00
										 |  |  | 	/* odd logic, if selbuf is NULL we assume no zbuf-selection is enabled
 | 
					
						
							|  |  |  | 	 * and just ignore the depth buffer, this is error prone since its possible | 
					
						
							|  |  |  | 	 * code doesn't set the depth buffer by accident, but leave for now. - Campbell */ | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 	if (selbuf == NULL) | 
					
						
							|  |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2013-10-03 07:02:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	if (index > 0 && index <= bm_vertoffs) | 
					
						
							| 
									
										
										
										
											2014-06-06 16:05:15 +10:00
										 |  |  | 		return BLI_BITMAP_TEST_BOOL(selbuf, index); | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-27 04:46:52 +00:00
										 |  |  | void EDBM_backbuf_free(void) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (selbuf) MEM_freeN(selbuf); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	selbuf = NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | struct LassoMaskData { | 
					
						
							|  |  |  | 	unsigned int *px; | 
					
						
							|  |  |  | 	int width; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 23:29:42 +11:00
										 |  |  | static void edbm_mask_lasso_px_cb(int x, int x_end, int y, void *user_data) | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct LassoMaskData *data = user_data; | 
					
						
							| 
									
										
										
										
											2016-01-08 23:29:42 +11:00
										 |  |  | 	unsigned int *px = &data->px[(y * data->width) + x]; | 
					
						
							|  |  |  | 	do { | 
					
						
							|  |  |  | 		*px = true; | 
					
						
							|  |  |  | 		px++; | 
					
						
							|  |  |  | 	} while (++x != x_end); | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | /* mcords is a polygon mask
 | 
					
						
							| 
									
										
										
										
											2012-03-03 16:31:46 +00:00
										 |  |  |  * - grab backbuffer, | 
					
						
							|  |  |  |  * - draw with black in backbuffer,  | 
					
						
							|  |  |  |  * - grab again and compare | 
					
						
							|  |  |  |  * returns 'OK'  | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | bool EDBM_backbuf_border_mask_init(ViewContext *vc, const int mcords[][2], short tot, short xmin, short ymin, short xmax, short ymax) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | 	unsigned int *dr, *dr_mask, *dr_mask_arr; | 
					
						
							|  |  |  | 	struct ImBuf *buf; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	int a; | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | 	struct LassoMaskData lasso_mask_data; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* method in use for face selecting too */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	if (vc->obedit == NULL) { | 
					
						
							| 
									
										
										
										
											2014-02-26 16:00:54 +11:00
										 |  |  | 		if (!BKE_paint_select_elem_test(vc->obact)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2012-03-10 22:00:55 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-20 23:39:54 +10:00
										 |  |  | 	else if (!V3D_IS_ZBUF(vc->v3d)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 	buf = ED_view3d_backbuf_read(vc, xmin, ymin, xmax, ymax); | 
					
						
							| 
									
										
										
										
											2015-07-11 21:09:22 +10:00
										 |  |  | 	if ((buf == NULL) || (bm_vertoffs == 0)) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dr = buf->rect; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | 	dr_mask = dr_mask_arr = MEM_callocN(sizeof(*dr_mask) * buf->x * buf->y, __func__); | 
					
						
							|  |  |  | 	lasso_mask_data.px = dr_mask; | 
					
						
							|  |  |  | 	lasso_mask_data.width = (xmax - xmin) + 1; | 
					
						
							| 
									
										
										
										
											2012-09-11 02:18:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | 	fill_poly_v2i_n( | 
					
						
							|  |  |  | 	       xmin, ymin, xmax + 1, ymax + 1, | 
					
						
							|  |  |  | 	       mcords, tot, | 
					
						
							|  |  |  | 	       edbm_mask_lasso_px_cb, &lasso_mask_data); | 
					
						
							| 
									
										
										
										
											2012-09-11 02:18:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	/* build selection lookup */ | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 	selbuf = edbm_backbuf_alloc(bm_vertoffs + 1); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	a = (xmax - xmin + 1) * (ymax - ymin + 1); | 
					
						
							|  |  |  | 	while (a--) { | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 		if (*dr > 0 && *dr <= bm_vertoffs && *dr_mask == true) { | 
					
						
							| 
									
										
										
										
											2014-06-06 16:05:15 +10:00
										 |  |  | 			BLI_BITMAP_ENABLE(selbuf, *dr); | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | 		dr++; dr_mask++; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	IMB_freeImBuf(buf); | 
					
						
							| 
									
										
										
										
											2013-10-04 15:02:05 +00:00
										 |  |  | 	MEM_freeN(dr_mask_arr); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* circle shaped sample area */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | bool EDBM_backbuf_circle_init(ViewContext *vc, short xs, short ys, short rads) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ImBuf *buf; | 
					
						
							|  |  |  | 	unsigned int *dr; | 
					
						
							|  |  |  | 	short xmin, ymin, xmax, ymax, xc, yc; | 
					
						
							|  |  |  | 	int radsq; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* method in use for face selecting too */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	if (vc->obedit == NULL) { | 
					
						
							| 
									
										
										
										
											2014-02-26 16:00:54 +11:00
										 |  |  | 		if (!BKE_paint_select_elem_test(vc->obact)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2012-03-10 22:00:55 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-20 23:39:54 +10:00
										 |  |  | 	else if (!V3D_IS_ZBUF(vc->v3d)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2013-03-09 03:46:30 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	xmin = xs - rads; xmax = xs + rads; | 
					
						
							|  |  |  | 	ymin = ys - rads; ymax = ys + rads; | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 	buf = ED_view3d_backbuf_read(vc, xmin, ymin, xmax, ymax); | 
					
						
							| 
									
										
										
										
											2015-07-11 21:09:22 +10:00
										 |  |  | 	if ((buf == NULL) || (bm_vertoffs == 0)) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dr = buf->rect; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* build selection lookup */ | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 	selbuf = edbm_backbuf_alloc(bm_vertoffs + 1); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	radsq = rads * rads; | 
					
						
							|  |  |  | 	for (yc = -rads; yc <= rads; yc++) { | 
					
						
							|  |  |  | 		for (xc = -rads; xc <= rads; xc++, dr++) { | 
					
						
							|  |  |  | 			if (xc * xc + yc * yc < radsq) { | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 				if (*dr > 0 && *dr <= bm_vertoffs) { | 
					
						
							| 
									
										
										
										
											2014-06-06 16:05:15 +10:00
										 |  |  | 					BLI_BITMAP_ENABLE(selbuf, *dr); | 
					
						
							| 
									
										
										
										
											2013-10-10 22:30:16 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	IMB_freeImBuf(buf); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* -------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** \name Find Nearest Vert/Edge/Face
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  |  * | 
					
						
							|  |  |  |  * \note Screen-space manhatten distances are used here, | 
					
						
							|  |  |  |  * since its faster and good enough for the purpose of selection. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \note \a dist_bias is used so we can bias against selected items. | 
					
						
							|  |  |  |  * when choosing between elements of a single type, but return the real distance | 
					
						
							|  |  |  |  * to avoid the bias interfering with distance comparisons when mixing types. | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  |  * \{ */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | #define FIND_NEAR_SELECT_BIAS 5
 | 
					
						
							|  |  |  | #define FIND_NEAR_CYCLE_THRESHOLD_MIN 3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct NearestVertUserData_Hit { | 
					
						
							|  |  |  | 	float   dist; | 
					
						
							|  |  |  | 	float   dist_bias; | 
					
						
							|  |  |  | 	int     index; | 
					
						
							|  |  |  | 	BMVert *vert; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct NearestVertUserData { | 
					
						
							|  |  |  | 	float mval_fl[2]; | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 	bool use_select_bias; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	bool use_cycle; | 
					
						
							|  |  |  | 	int cycle_index_prev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct NearestVertUserData_Hit hit; | 
					
						
							|  |  |  | 	struct NearestVertUserData_Hit hit_cycle; | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | static void findnearestvert__doClosest(void *userData, BMVert *eve, const float screen_co[2], int index) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	struct NearestVertUserData *data = userData; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	float dist_test, dist_test_bias; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	dist_test = dist_test_bias = len_manhattan_v2v2(data->mval_fl, screen_co); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if (data->use_select_bias && BM_elem_flag_test(eve, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 		dist_test_bias += FIND_NEAR_SELECT_BIAS; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if (dist_test_bias < data->hit.dist_bias) { | 
					
						
							|  |  |  | 		data->hit.dist_bias = dist_test_bias; | 
					
						
							|  |  |  | 		data->hit.dist = dist_test; | 
					
						
							|  |  |  | 		data->hit.index = index; | 
					
						
							|  |  |  | 		data->hit.vert = eve; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if (data->use_cycle) { | 
					
						
							|  |  |  | 		if ((data->hit_cycle.vert == NULL) && | 
					
						
							|  |  |  | 		    (index > data->cycle_index_prev) && | 
					
						
							|  |  |  | 		    (dist_test_bias < FIND_NEAR_CYCLE_THRESHOLD_MIN)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			data->hit_cycle.dist_bias = dist_test_bias; | 
					
						
							|  |  |  | 			data->hit_cycle.dist = dist_test; | 
					
						
							|  |  |  | 			data->hit_cycle.index = index; | 
					
						
							|  |  |  | 			data->hit_cycle.vert = eve; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2015-04-20 23:37:04 +10:00
										 |  |  |  * Nearest vertex under the cursor. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \param r_dist (in/out), minimal distance to the nearest and at the end, actual distance | 
					
						
							|  |  |  |  * \param use_select_bias | 
					
						
							|  |  |  |  * - When true, selected vertice are given a 5 pixel bias to make them further than unselect verts. | 
					
						
							|  |  |  |  * - When false, unselected vertice are given the bias. | 
					
						
							| 
									
										
										
										
											2015-04-22 00:13:33 +10:00
										 |  |  |  * \param use_cycle Cycle over elements within #FIND_NEAR_CYCLE_THRESHOLD_MIN in order of index. | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | BMVert *EDBM_vert_find_nearest_ex( | 
					
						
							| 
									
										
										
										
											2015-04-20 23:37:04 +10:00
										 |  |  |         ViewContext *vc, float *r_dist, | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  |         const bool use_select_bias, bool use_cycle) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	BMesh *bm = vc->em->bm; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 23:39:54 +10:00
										 |  |  | 	if (V3D_IS_ZBUF(vc->v3d)) { | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 		const int dist_px = ED_view3d_backbuf_sample_size_clamp(vc->ar, *r_dist); | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		float dist_test; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		unsigned int index; | 
					
						
							|  |  |  | 		BMVert *eve; | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 		index = ED_view3d_backbuf_sample_rect( | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		        vc, vc->mval, dist_px, bm_wireoffs, 0xFFFFFF, &dist_test); | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 		eve = index ? BM_vert_at_index_find_or_table(bm, index - 1) : NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		if (eve) { | 
					
						
							|  |  |  | 			if (dist_test < *r_dist) { | 
					
						
							|  |  |  | 				*r_dist = dist_test; | 
					
						
							|  |  |  | 				return eve; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		struct NearestVertUserData data = {{0}}; | 
					
						
							|  |  |  | 		const struct NearestVertUserData_Hit *hit; | 
					
						
							|  |  |  | 		const eV3DProjTest clip_flag = V3D_PROJ_TEST_CLIP_DEFAULT; | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		static int prev_select_index = 0; | 
					
						
							|  |  |  | 		static const BMVert *prev_select_elem = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		if ((use_cycle == false) || | 
					
						
							|  |  |  | 		    (prev_select_elem && (prev_select_elem != BM_vert_at_index_find_or_table(bm, prev_select_index)))) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 			prev_select_index = 0; | 
					
						
							|  |  |  | 			prev_select_elem = NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 		data.mval_fl[0] = vc->mval[0]; | 
					
						
							|  |  |  | 		data.mval_fl[1] = vc->mval[1]; | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 		data.use_select_bias = use_select_bias; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		data.use_cycle = use_cycle; | 
					
						
							|  |  |  | 		data.hit.dist      = data.hit_cycle.dist = \ | 
					
						
							|  |  |  | 		data.hit.dist_bias = data.hit_cycle.dist_bias = *r_dist; | 
					
						
							|  |  |  | 		data.cycle_index_prev = prev_select_index; | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		mesh_foreachScreenVert(vc, findnearestvert__doClosest, &data, clip_flag); | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		hit = (data.use_cycle && data.hit_cycle.vert) ? &data.hit_cycle : &data.hit; | 
					
						
							|  |  |  | 		*r_dist = hit->dist; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		prev_select_elem = hit->vert; | 
					
						
							|  |  |  | 		prev_select_index = hit->index; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		return hit->vert; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | BMVert *EDBM_vert_find_nearest(ViewContext *vc, float *r_dist) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	return EDBM_vert_find_nearest_ex(vc, r_dist, false, false); | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | /* find the distance to the edge we already have */ | 
					
						
							|  |  |  | struct NearestEdgeUserData_ZBuf { | 
					
						
							|  |  |  | 	float mval_fl[2]; | 
					
						
							|  |  |  | 	float dist; | 
					
						
							|  |  |  | 	const BMEdge *edge_test; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void find_nearest_edge_center__doZBuf( | 
					
						
							|  |  |  |         void *userData, BMEdge *eed, | 
					
						
							|  |  |  |         const float screen_co_a[2], const float screen_co_b[2], | 
					
						
							|  |  |  |         int UNUSED(index)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct NearestEdgeUserData_ZBuf *data = userData; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (eed == data->edge_test) { | 
					
						
							|  |  |  | 		float dist_test; | 
					
						
							|  |  |  | 		float screen_co_mid[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		mid_v2_v2v2(screen_co_mid, screen_co_a, screen_co_b); | 
					
						
							|  |  |  | 		dist_test = len_manhattan_v2v2(data->mval_fl, screen_co_mid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (dist_test < data->dist) { | 
					
						
							|  |  |  | 			data->dist = dist_test; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | struct NearestEdgeUserData_Hit { | 
					
						
							|  |  |  | 	float   dist; | 
					
						
							|  |  |  | 	float   dist_bias; | 
					
						
							|  |  |  | 	int     index; | 
					
						
							|  |  |  | 	BMEdge *edge; | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* edges only, un-biased manhatten distance to which ever edge we pick
 | 
					
						
							|  |  |  | 	 * (not used for choosing) */ | 
					
						
							|  |  |  | 	float   dist_center; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | struct NearestEdgeUserData { | 
					
						
							|  |  |  | 	ViewContext vc; | 
					
						
							|  |  |  | 	float mval_fl[2]; | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 	bool use_select_bias; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	bool use_cycle; | 
					
						
							|  |  |  | 	int cycle_index_prev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct NearestEdgeUserData_Hit hit; | 
					
						
							|  |  |  | 	struct NearestEdgeUserData_Hit hit_cycle; | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | /* note; uses v3d, so needs active 3d window */ | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | static void find_nearest_edge__doClosest( | 
					
						
							|  |  |  |         void *userData, BMEdge *eed, | 
					
						
							|  |  |  |         const float screen_co_a[2], const float screen_co_b[2], | 
					
						
							|  |  |  |         int index) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	struct NearestEdgeUserData *data = userData; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	float dist_test, dist_test_bias; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 	float fac = line_point_factor_v2(data->mval_fl, screen_co_a, screen_co_b); | 
					
						
							|  |  |  | 	float screen_co[2]; | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 	if (fac <= 0.0f) { | 
					
						
							|  |  |  | 		fac = 0.0f; | 
					
						
							|  |  |  | 		copy_v2_v2(screen_co, screen_co_a); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (fac >= 1.0f) { | 
					
						
							|  |  |  | 		fac = 1.0f; | 
					
						
							|  |  |  | 		copy_v2_v2(screen_co, screen_co_b); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2015-04-29 19:38:19 +02:00
										 |  |  | 		interp_v2_v2v2(screen_co, screen_co_a, screen_co_b, fac); | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	dist_test = dist_test_bias = len_manhattan_v2v2(data->mval_fl, screen_co); | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (data->use_select_bias && BM_elem_flag_test(eed, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2015-07-21 12:25:15 +10:00
										 |  |  | 		dist_test_bias += FIND_NEAR_SELECT_BIAS; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if (data->vc.rv3d->rflag & RV3D_CLIPPING) { | 
					
						
							|  |  |  | 		float vec[3]; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		interp_v3_v3v3(vec, eed->v1->co, eed->v2->co, fac); | 
					
						
							|  |  |  | 		if (ED_view3d_clipping_test(data->vc.rv3d, vec, true)) { | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dist_test_bias < data->hit.dist_bias) { | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		float screen_co_mid[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		data->hit.dist_bias = dist_test_bias; | 
					
						
							|  |  |  | 		data->hit.dist = dist_test; | 
					
						
							|  |  |  | 		data->hit.index = index; | 
					
						
							|  |  |  | 		data->hit.edge = eed; | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		mid_v2_v2v2(screen_co_mid, screen_co_a, screen_co_b); | 
					
						
							|  |  |  | 		data->hit.dist_center = len_manhattan_v2v2(data->mval_fl, screen_co_mid); | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (data->use_cycle) { | 
					
						
							|  |  |  | 		if ((data->hit_cycle.edge == NULL) && | 
					
						
							|  |  |  | 		    (index > data->cycle_index_prev) && | 
					
						
							|  |  |  | 		    (dist_test_bias < FIND_NEAR_CYCLE_THRESHOLD_MIN)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 			float screen_co_mid[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 			data->hit_cycle.dist_bias = dist_test_bias; | 
					
						
							|  |  |  | 			data->hit_cycle.dist = dist_test; | 
					
						
							|  |  |  | 			data->hit_cycle.index = index; | 
					
						
							|  |  |  | 			data->hit_cycle.edge = eed; | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			mid_v2_v2v2(screen_co_mid, screen_co_a, screen_co_b); | 
					
						
							|  |  |  | 			data->hit_cycle.dist_center = len_manhattan_v2v2(data->mval_fl, screen_co_mid); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | BMEdge *EDBM_edge_find_nearest_ex( | 
					
						
							|  |  |  |         ViewContext *vc, float *r_dist, | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  |         float *r_dist_center, | 
					
						
							|  |  |  |         const bool use_select_bias, const bool use_cycle, | 
					
						
							|  |  |  |         BMEdge **r_eed_zbuf) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	BMesh *bm = vc->em->bm; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 23:39:54 +10:00
										 |  |  | 	if (V3D_IS_ZBUF(vc->v3d)) { | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 		const int dist_px = ED_view3d_backbuf_sample_size_clamp(vc->ar, *r_dist); | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		float dist_test = 0.0f; | 
					
						
							| 
									
										
										
										
											2009-11-09 22:47:55 +00:00
										 |  |  | 		unsigned int index; | 
					
						
							|  |  |  | 		BMEdge *eed; | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 		ED_view3d_backbuf_validate(vc); | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		index = ED_view3d_backbuf_sample_rect(vc, vc->mval, dist_px, bm_solidoffs, bm_wireoffs, &dist_test); | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 		eed = index ? BM_edge_at_index_find_or_table(bm, index - 1) : NULL; | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (r_eed_zbuf) { | 
					
						
							|  |  |  | 			*r_eed_zbuf = eed; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* exception for faces (verts don't need this) */ | 
					
						
							|  |  |  | 		if (r_dist_center && eed) { | 
					
						
							|  |  |  | 			struct NearestEdgeUserData_ZBuf data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			data.mval_fl[0] = vc->mval[0]; | 
					
						
							|  |  |  | 			data.mval_fl[1] = vc->mval[1]; | 
					
						
							|  |  |  | 			data.dist = FLT_MAX; | 
					
						
							|  |  |  | 			data.edge_test = eed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mesh_foreachScreenEdge(vc, find_nearest_edge_center__doZBuf, &data, V3D_PROJ_TEST_CLIP_DEFAULT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			*r_dist_center = data.dist; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		/* end exception */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		if (eed) { | 
					
						
							|  |  |  | 			if (dist_test < *r_dist) { | 
					
						
							|  |  |  | 				*r_dist = dist_test; | 
					
						
							|  |  |  | 				return eed; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		struct NearestEdgeUserData data = {{0}}; | 
					
						
							|  |  |  | 		const struct NearestEdgeUserData_Hit *hit; | 
					
						
							| 
									
										
										
										
											2015-04-22 00:13:33 +10:00
										 |  |  | 		/* interpolate along the edge before doing a clipping plane test */ | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		const eV3DProjTest clip_flag = V3D_PROJ_TEST_CLIP_DEFAULT & ~V3D_PROJ_TEST_CLIP_BB; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		static int prev_select_index = 0; | 
					
						
							|  |  |  | 		static const BMEdge *prev_select_elem = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ((use_cycle == false) || | 
					
						
							|  |  |  | 		    (prev_select_elem && (prev_select_elem != BM_edge_at_index_find_or_table(bm, prev_select_index)))) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			prev_select_index = 0; | 
					
						
							|  |  |  | 			prev_select_elem = NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		data.vc = *vc; | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 		data.mval_fl[0] = vc->mval[0]; | 
					
						
							|  |  |  | 		data.mval_fl[1] = vc->mval[1]; | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | 		data.use_select_bias = use_select_bias; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		data.use_cycle = use_cycle; | 
					
						
							|  |  |  | 		data.hit.dist      = data.hit_cycle.dist = \ | 
					
						
							|  |  |  | 		data.hit.dist_bias = data.hit_cycle.dist_bias = *r_dist; | 
					
						
							|  |  |  | 		data.cycle_index_prev = prev_select_index; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 		ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		mesh_foreachScreenEdge(vc, find_nearest_edge__doClosest, &data, clip_flag); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		hit = (data.use_cycle && data.hit_cycle.edge) ? &data.hit_cycle : &data.hit; | 
					
						
							|  |  |  | 		*r_dist = hit->dist; | 
					
						
							| 
									
										
										
										
											2015-04-24 02:38:15 +10:00
										 |  |  | 		if (r_dist_center) { | 
					
						
							|  |  |  | 			*r_dist_center = hit->dist_center; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		prev_select_elem = hit->edge; | 
					
						
							|  |  |  | 		prev_select_index = hit->index; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return hit->edge; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | BMEdge *EDBM_edge_find_nearest( | 
					
						
							|  |  |  |         ViewContext *vc, float *r_dist) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-07-21 12:25:15 +10:00
										 |  |  | 	return EDBM_edge_find_nearest_ex(vc, r_dist, NULL, false, false, NULL); | 
					
						
							| 
									
										
										
										
											2015-04-21 04:45:26 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | /* find the distance to the face we already have */ | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | struct NearestFaceUserData_ZBuf { | 
					
						
							|  |  |  | 	float mval_fl[2]; | 
					
						
							|  |  |  | 	float dist; | 
					
						
							|  |  |  | 	const BMFace *face_test; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | static void find_nearest_face_center__doZBuf(void *userData, BMFace *efa, const float screen_co[2], int UNUSED(index)) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	struct NearestFaceUserData_ZBuf *data = userData; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	if (efa == data->face_test) { | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 		const float dist_test = len_manhattan_v2v2(data->mval_fl, screen_co); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 		if (dist_test < data->dist) { | 
					
						
							|  |  |  | 			data->dist = dist_test; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | struct NearestFaceUserData_Hit { | 
					
						
							|  |  |  | 	float   dist; | 
					
						
							|  |  |  | 	float   dist_bias; | 
					
						
							|  |  |  | 	int     index; | 
					
						
							|  |  |  | 	BMFace *face; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct NearestFaceUserData { | 
					
						
							|  |  |  | 	float mval_fl[2]; | 
					
						
							|  |  |  | 	bool use_select_bias; | 
					
						
							|  |  |  | 	bool use_cycle; | 
					
						
							|  |  |  | 	int cycle_index_prev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct NearestFaceUserData_Hit hit; | 
					
						
							|  |  |  | 	struct NearestFaceUserData_Hit hit_cycle; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | static void findnearestface__doClosest(void *userData, BMFace *efa, const float screen_co[2], int index) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	struct NearestFaceUserData *data = userData; | 
					
						
							|  |  |  | 	float dist_test, dist_test_bias; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	dist_test = dist_test_bias = len_manhattan_v2v2(data->mval_fl, screen_co); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (data->use_select_bias && BM_elem_flag_test(efa, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 		dist_test_bias += FIND_NEAR_SELECT_BIAS; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if (dist_test_bias < data->hit.dist_bias) { | 
					
						
							|  |  |  | 		data->hit.dist_bias = dist_test_bias; | 
					
						
							|  |  |  | 		data->hit.dist = dist_test; | 
					
						
							|  |  |  | 		data->hit.index = index; | 
					
						
							|  |  |  | 		data->hit.face = efa; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if (data->use_cycle) { | 
					
						
							|  |  |  | 		if ((data->hit_cycle.face == NULL) && | 
					
						
							|  |  |  | 		    (index > data->cycle_index_prev) && | 
					
						
							|  |  |  | 		    (dist_test_bias < FIND_NEAR_CYCLE_THRESHOLD_MIN)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			data->hit_cycle.dist_bias = dist_test_bias; | 
					
						
							|  |  |  | 			data->hit_cycle.dist = dist_test; | 
					
						
							|  |  |  | 			data->hit_cycle.index = index; | 
					
						
							|  |  |  | 			data->hit_cycle.face = efa; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-09-16 17:43:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | BMFace *EDBM_face_find_nearest_ex( | 
					
						
							|  |  |  |         ViewContext *vc, float *r_dist, | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  |         float *r_dist_center, | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  |         const bool use_select_bias, const bool use_cycle, | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  |         BMFace **r_efa_zbuf) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	BMesh *bm = vc->em->bm; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 23:39:54 +10:00
										 |  |  | 	if (V3D_IS_ZBUF(vc->v3d)) { | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		float dist_test = 0.0f; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		unsigned int index; | 
					
						
							|  |  |  | 		BMFace *efa; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 		ED_view3d_backbuf_validate(vc); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 		index = ED_view3d_backbuf_sample(vc, vc->mval[0], vc->mval[1]); | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 		efa = index ? BM_face_at_index_find_or_table(bm, index - 1) : NULL; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 		if (r_efa_zbuf) { | 
					
						
							|  |  |  | 			*r_efa_zbuf = efa; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		/* exception for faces (verts don't need this) */ | 
					
						
							|  |  |  | 		if (r_dist_center && efa) { | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 			struct NearestFaceUserData_ZBuf data; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 			data.mval_fl[0] = vc->mval[0]; | 
					
						
							|  |  |  | 			data.mval_fl[1] = vc->mval[1]; | 
					
						
							| 
									
										
										
										
											2012-12-11 14:21:52 +00:00
										 |  |  | 			data.dist = FLT_MAX; | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 			data.face_test = efa; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 13:00:52 +00:00
										 |  |  | 			ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 			mesh_foreachScreenFace(vc, find_nearest_face_center__doZBuf, &data, V3D_PROJ_TEST_CLIP_DEFAULT); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 			*r_dist_center = data.dist; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		/* end exception */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (efa) { | 
					
						
							|  |  |  | 			if (dist_test < *r_dist) { | 
					
						
							|  |  |  | 				*r_dist = dist_test; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 				return efa; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		struct NearestFaceUserData data = {{0}}; | 
					
						
							|  |  |  | 		const struct NearestFaceUserData_Hit *hit; | 
					
						
							|  |  |  | 		const eV3DProjTest clip_flag = V3D_PROJ_TEST_CLIP_DEFAULT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 		static int prev_select_index = 0; | 
					
						
							|  |  |  | 		static const BMFace *prev_select_elem = NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		if ((use_cycle == false) || | 
					
						
							|  |  |  | 		    (prev_select_elem && (prev_select_elem != BM_face_at_index_find_or_table(bm, prev_select_index)))) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 			prev_select_index = 0; | 
					
						
							|  |  |  | 			prev_select_elem = NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 		data.mval_fl[0] = vc->mval[0]; | 
					
						
							|  |  |  | 		data.mval_fl[1] = vc->mval[1]; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		data.use_select_bias = use_select_bias; | 
					
						
							|  |  |  | 		data.use_cycle = use_cycle; | 
					
						
							|  |  |  | 		data.hit.dist      = data.hit_cycle.dist = \ | 
					
						
							|  |  |  | 		data.hit.dist_bias = data.hit_cycle.dist_bias = *r_dist; | 
					
						
							|  |  |  | 		data.cycle_index_prev = prev_select_index; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 13:00:52 +00:00
										 |  |  | 		ED_view3d_init_mats_rv3d(vc->obedit, vc->rv3d); | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		mesh_foreachScreenFace(vc, findnearestface__doClosest, &data, clip_flag); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		hit = (data.use_cycle && data.hit_cycle.face) ? &data.hit_cycle : &data.hit; | 
					
						
							| 
									
										
										
										
											2015-04-24 02:38:15 +10:00
										 |  |  | 		*r_dist = hit->dist; | 
					
						
							|  |  |  | 		if (r_dist_center) { | 
					
						
							|  |  |  | 			*r_dist_center = hit->dist; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		prev_select_elem = hit->face; | 
					
						
							|  |  |  | 		prev_select_index = hit->index; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 		return hit->face; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | BMFace *EDBM_face_find_nearest(ViewContext *vc, float *r_dist) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 	return EDBM_face_find_nearest_ex(vc, r_dist, NULL, false, false, NULL); | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-22 00:13:33 +10:00
										 |  |  | #undef FIND_NEAR_SELECT_BIAS
 | 
					
						
							|  |  |  | #undef FIND_NEAR_CYCLE_THRESHOLD_MIN
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | /* best distance based on screen coords. 
 | 
					
						
							| 
									
										
										
										
											2012-03-03 16:31:46 +00:00
										 |  |  |  * use em->selectmode to define how to use  | 
					
						
							|  |  |  |  * selected vertices and edges get disadvantage | 
					
						
							|  |  |  |  * return 1 if found one | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | static int unified_findnearest(ViewContext *vc, BMVert **r_eve, BMEdge **r_eed, BMFace **r_efa) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	BMEditMesh *em = vc->em; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	static short mval_prev[2] = {-1, -1}; | 
					
						
							|  |  |  | 	/* only cycle while the mouse remains still */ | 
					
						
							|  |  |  | 	const bool use_cycle = ((mval_prev[0] == vc->mval[0]) && (mval_prev[1] == vc->mval[1])); | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	const float dist_init = ED_view3d_select_dist_px(); | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	/* since edges select lines, we give dots advantage of ~20 pix */ | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 	const float dist_margin = (dist_init / 2); | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | 	float dist = dist_init; | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 	BMFace *efa_zbuf = NULL; | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 	BMEdge *eed_zbuf = NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 	BMVert *eve = NULL; | 
					
						
							|  |  |  | 	BMEdge *eed = NULL; | 
					
						
							|  |  |  | 	BMFace *efa = NULL; | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	/* no afterqueue (yet), so we check it now, otherwise the em_xxxofs indices are bad */ | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 	ED_view3d_backbuf_validate(vc); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if ((dist > 0.0f) && em->selectmode & SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		float dist_center = 0.0f; | 
					
						
							|  |  |  | 		float *dist_center_p = (em->selectmode & (SCE_SELECT_EDGE | SCE_SELECT_VERTEX)) ? &dist_center : NULL; | 
					
						
							|  |  |  | 		efa = EDBM_face_find_nearest_ex(vc, &dist, dist_center_p, true, use_cycle, &efa_zbuf); | 
					
						
							|  |  |  | 		if (efa && dist_center_p) { | 
					
						
							|  |  |  | 			dist = min_ff(dist_margin, dist_center); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if ((dist > 0.0f) && (em->selectmode & SCE_SELECT_EDGE)) { | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		float dist_center = 0.0f; | 
					
						
							|  |  |  | 		float *dist_center_p = (em->selectmode & SCE_SELECT_VERTEX) ? &dist_center : NULL; | 
					
						
							|  |  |  | 		eed = EDBM_edge_find_nearest_ex(vc, &dist, dist_center_p, true, use_cycle, &eed_zbuf); | 
					
						
							|  |  |  | 		if (eed && dist_center_p) { | 
					
						
							|  |  |  | 			dist = min_ff(dist_margin, dist_center); | 
					
						
							| 
									
										
										
										
											2015-04-22 00:43:31 +10:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if ((dist > 0.0f) && em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 		eve = EDBM_vert_find_nearest_ex(vc, &dist, true, use_cycle); | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* return only one of 3 pointers, for frontbuffer redraws */ | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	if (eve) { | 
					
						
							|  |  |  | 		efa = NULL; eed = NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	else if (eed) { | 
					
						
							|  |  |  | 		efa = NULL; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	/* there may be a face under the cursor, who's center if too far away
 | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 	 * use this if all else fails, it makes sense to select this */ | 
					
						
							|  |  |  | 	if ((eve || eed || efa) == 0) { | 
					
						
							| 
									
										
										
										
											2015-04-23 16:11:54 +10:00
										 |  |  | 		if (eed_zbuf) { | 
					
						
							|  |  |  | 			eed = eed_zbuf; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (efa_zbuf) { | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 			efa = efa_zbuf; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 21:16:19 +10:00
										 |  |  | 	mval_prev[0] = vc->mval[0]; | 
					
						
							|  |  |  | 	mval_prev[1] = vc->mval[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 02:06:20 +10:00
										 |  |  | 	*r_eve = eve; | 
					
						
							|  |  |  | 	*r_eed = eed; | 
					
						
							|  |  |  | 	*r_efa = efa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (eve || eed || efa); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 01:33:09 +10:00
										 |  |  | /** \} */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | /* ****************  SIMILAR "group" SELECTS. FACE, EDGE AND VERTEX ************** */ | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | static EnumPropertyItem prop_similar_compare_types[] = { | 
					
						
							|  |  |  | 	{SIM_CMP_EQ, "EQUAL", 0, "Equal", ""}, | 
					
						
							|  |  |  | 	{SIM_CMP_GT, "GREATER", 0, "Greater", ""}, | 
					
						
							| 
									
										
										
										
											2012-11-01 04:27:59 +00:00
										 |  |  | 	{SIM_CMP_LT, "LESS", 0, "Less", ""}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{0, NULL, 0, NULL, NULL} | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | static EnumPropertyItem prop_similar_types[] = { | 
					
						
							|  |  |  | 	{SIMVERT_NORMAL, "NORMAL", 0, "Normal", ""}, | 
					
						
							|  |  |  | 	{SIMVERT_FACE, "FACE", 0, "Amount of Adjacent Faces", ""}, | 
					
						
							|  |  |  | 	{SIMVERT_VGROUP, "VGROUP", 0, "Vertex Groups", ""}, | 
					
						
							| 
									
										
										
										
											2012-06-15 01:43:01 +00:00
										 |  |  | 	{SIMVERT_EDGE, "EDGE", 0, "Amount of connecting edges", ""}, | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 	{SIMEDGE_LENGTH, "LENGTH", 0, "Length", ""}, | 
					
						
							|  |  |  | 	{SIMEDGE_DIR, "DIR", 0, "Direction", ""}, | 
					
						
							|  |  |  | 	{SIMEDGE_FACE, "FACE", 0, "Amount of Faces Around an Edge", ""}, | 
					
						
							|  |  |  | 	{SIMEDGE_FACE_ANGLE, "FACE_ANGLE", 0, "Face Angles", ""}, | 
					
						
							|  |  |  | 	{SIMEDGE_CREASE, "CREASE", 0, "Crease", ""}, | 
					
						
							| 
									
										
										
										
											2012-05-12 14:06:35 +00:00
										 |  |  | 	{SIMEDGE_BEVEL, "BEVEL", 0, "Bevel", ""}, | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 	{SIMEDGE_SEAM, "SEAM", 0, "Seam", ""}, | 
					
						
							|  |  |  | 	{SIMEDGE_SHARP, "SHARP", 0, "Sharpness", ""}, | 
					
						
							| 
									
										
										
										
											2012-12-20 07:57:26 +00:00
										 |  |  | #ifdef WITH_FREESTYLE
 | 
					
						
							| 
									
										
										
										
											2012-02-21 01:40:04 +00:00
										 |  |  | 	{SIMEDGE_FREESTYLE, "FREESTYLE_EDGE", 0, "Freestyle Edge Marks", ""}, | 
					
						
							| 
									
										
										
										
											2012-12-20 07:57:26 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	{SIMFACE_MATERIAL, "MATERIAL", 0, "Material", ""}, | 
					
						
							|  |  |  | 	{SIMFACE_IMAGE, "IMAGE", 0, "Image", ""}, | 
					
						
							|  |  |  | 	{SIMFACE_AREA, "AREA", 0, "Area", ""}, | 
					
						
							| 
									
										
										
										
											2012-10-30 06:43:30 +00:00
										 |  |  | 	{SIMFACE_SIDES, "SIDES", 0, "Polygon Sides", ""}, | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 	{SIMFACE_PERIMETER, "PERIMETER", 0, "Perimeter", ""}, | 
					
						
							|  |  |  | 	{SIMFACE_NORMAL, "NORMAL", 0, "Normal", ""}, | 
					
						
							|  |  |  | 	{SIMFACE_COPLANAR, "COPLANAR", 0, "Co-planar", ""}, | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:30 +01:00
										 |  |  | 	{SIMFACE_SMOOTH, "SMOOTH", 0, "Flat/Smooth", ""}, | 
					
						
							| 
									
										
										
										
											2012-12-20 07:57:26 +00:00
										 |  |  | #ifdef WITH_FREESTYLE
 | 
					
						
							| 
									
										
										
										
											2012-02-21 01:40:04 +00:00
										 |  |  | 	{SIMFACE_FREESTYLE, "FREESTYLE_FACE", 0, "Freestyle Face Marks", ""}, | 
					
						
							| 
									
										
										
										
											2012-12-20 07:57:26 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-16 06:27:37 +00:00
										 |  |  | 	{0, NULL, 0, NULL, NULL} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | /* selects new faces/edges/verts based on the existing selection */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | static int similar_face_select_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *ob = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(ob); | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 	BMOperator bmop; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 	/* get the type from RNA */ | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	const int type = RNA_enum_get(op->ptr, "type"); | 
					
						
							|  |  |  | 	const float thresh = RNA_float_get(op->ptr, "threshold"); | 
					
						
							|  |  |  | 	const int compare = RNA_enum_get(op->ptr, "compare"); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 	/* initialize the bmop using EDBM api, which does various ui error reporting and other stuff */ | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	EDBM_op_init(em, &bmop, op, | 
					
						
							|  |  |  | 	             "similar_faces faces=%hf type=%i thresh=%f compare=%i", | 
					
						
							|  |  |  | 	             BM_ELEM_SELECT, type, thresh, compare); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 	/* execute the operator */ | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BMO_op_exec(em->bm, &bmop); | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* clear the existing selection */ | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 	EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* select the output */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	BMO_slot_buffer_hflag_enable(em->bm, bmop.slots_out, "faces.out", BM_FACE, BM_ELEM_SELECT, true); | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* finish the operator */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	if (!EDBM_op_finish(em, &bmop, op, true)) { | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							| 
									
										
										
										
											2012-02-07 13:54:16 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	EDBM_update_generic(em, false, false); | 
					
						
							| 
									
										
										
										
											2009-08-22 04:45:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | }	 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ***************************************************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* EDGE GROUP */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* wrap the above function but do selection flushing edge to face */ | 
					
						
							|  |  |  | static int similar_edge_select_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 	Object *ob = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(ob); | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 	BMOperator bmop; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* get the type from RNA */ | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	const int type = RNA_enum_get(op->ptr, "type"); | 
					
						
							|  |  |  | 	const float thresh = RNA_float_get(op->ptr, "threshold"); | 
					
						
							|  |  |  | 	const int compare = RNA_enum_get(op->ptr, "compare"); | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* initialize the bmop using EDBM api, which does various ui error reporting and other stuff */ | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	EDBM_op_init(em, &bmop, op, | 
					
						
							|  |  |  | 	             "similar_edges edges=%he type=%i thresh=%f compare=%i", | 
					
						
							|  |  |  | 	             BM_ELEM_SELECT, type, thresh, compare); | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* execute the operator */ | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BMO_op_exec(em->bm, &bmop); | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* clear the existing selection */ | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 	EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* select the output */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	BMO_slot_buffer_hflag_enable(em->bm, bmop.slots_out, "edges.out", BM_EDGE, BM_ELEM_SELECT, true); | 
					
						
							| 
									
										
										
										
											2012-02-10 06:16:21 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* finish the operator */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	if (!EDBM_op_finish(em, &bmop, op, true)) { | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							| 
									
										
										
										
											2012-02-07 13:54:16 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	EDBM_update_generic(em, false, false); | 
					
						
							| 
									
										
										
										
											2009-08-28 09:36:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ********************************* */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2012-03-03 16:31:46 +00:00
										 |  |  |  * VERT GROUP | 
					
						
							|  |  |  |  * mode 1: same normal | 
					
						
							|  |  |  |  * mode 2: same number of face users | 
					
						
							|  |  |  |  * mode 3: same vertex groups | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | static int similar_vert_select_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 	Object *ob = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(ob); | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 	BMOperator bmop; | 
					
						
							|  |  |  | 	/* get the type from RNA */ | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	const int type = RNA_enum_get(op->ptr, "type"); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	const float thresh = RNA_float_get(op->ptr, "threshold"); | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	const int compare = RNA_enum_get(op->ptr, "compare"); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 	/* initialize the bmop using EDBM api, which does various ui error reporting and other stuff */ | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	EDBM_op_init(em, &bmop, op, | 
					
						
							|  |  |  | 	             "similar_verts verts=%hv type=%i thresh=%f compare=%i", | 
					
						
							|  |  |  | 	             BM_ELEM_SELECT, type, thresh, compare); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 	/* execute the operator */ | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BMO_op_exec(em->bm, &bmop); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 	/* clear the existing selection */ | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 	EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 	/* select the output */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	BMO_slot_buffer_hflag_enable(em->bm, bmop.slots_out, "verts.out", BM_VERT, BM_ELEM_SELECT, true); | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* finish the operator */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	if (!EDBM_op_finish(em, &bmop, op, true)) { | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							| 
									
										
										
										
											2012-02-07 13:54:16 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 06:16:21 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	EDBM_update_generic(em, false, false); | 
					
						
							| 
									
										
										
										
											2009-08-28 10:59:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_select_similar_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-21 07:49:05 +00:00
										 |  |  | 	ToolSettings *ts = CTX_data_tool_settings(C); | 
					
						
							|  |  |  | 	PropertyRNA *prop = RNA_struct_find_property(op->ptr, "threshold"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	const int type = RNA_enum_get(op->ptr, "type"); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-21 07:49:05 +00:00
										 |  |  | 	if (!RNA_property_is_set(op->ptr, prop)) { | 
					
						
							|  |  |  | 		RNA_property_float_set(op->ptr, prop, ts->select_thresh); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		ts->select_thresh = RNA_property_float_get(op->ptr, prop); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if      (type < 100) return similar_vert_select_exec(C, op); | 
					
						
							|  |  |  | 	else if (type < 200) return similar_edge_select_exec(C, op); | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	else                 return similar_face_select_exec(C, op); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | static EnumPropertyItem *select_similar_type_itemf(bContext *C, PointerRNA *UNUSED(ptr), PropertyRNA *UNUSED(prop), | 
					
						
							| 
									
										
										
										
											2014-01-04 18:08:43 +11:00
										 |  |  |                                                    bool *r_free) | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-17 10:42:24 +00:00
										 |  |  | 	Object *obedit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!C) /* needed for docs and i18n tools */ | 
					
						
							|  |  |  | 		return prop_similar_types; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2011-09-07 06:49:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (obedit && obedit->type == OB_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		EnumPropertyItem *item = NULL; | 
					
						
							|  |  |  | 		int a, totitem = 0; | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 		BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		if (em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			for (a = SIMVERT_NORMAL; a < SIMEDGE_LENGTH; a++) { | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 				RNA_enum_items_add_value(&item, &totitem, prop_similar_types, a); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			for (a = SIMEDGE_LENGTH; a < SIMFACE_MATERIAL; a++) { | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 				RNA_enum_items_add_value(&item, &totitem, prop_similar_types, a); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else if (em->selectmode & SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2012-12-20 07:57:26 +00:00
										 |  |  | #ifdef WITH_FREESTYLE
 | 
					
						
							| 
									
										
										
										
											2013-07-19 16:44:17 +00:00
										 |  |  | 			const int a_end = SIMFACE_FREESTYLE; | 
					
						
							| 
									
										
										
										
											2012-12-20 07:57:26 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:30 +01:00
										 |  |  | 			const int a_end = SIMFACE_SMOOTH; | 
					
						
							| 
									
										
										
										
											2012-12-20 07:57:26 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-07-19 16:44:17 +00:00
										 |  |  | 			for (a = SIMFACE_MATERIAL; a <= a_end; a++) { | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 				RNA_enum_items_add_value(&item, &totitem, prop_similar_types, a); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 		RNA_enum_item_end(&item, &totitem); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-04 18:08:43 +11:00
										 |  |  | 		*r_free = true; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return item; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-05-17 10:42:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-07 23:09:08 +10:00
										 |  |  | 	return prop_similar_types; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_similar(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PropertyRNA *prop; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Similar"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_similar"; | 
					
						
							| 
									
										
										
										
											2012-04-15 10:07:57 +00:00
										 |  |  | 	ot->description = "Select similar vertices, edges or faces by property types"; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->invoke = WM_menu_invoke; | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_similar_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* properties */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	prop = ot->prop = RNA_def_enum(ot->srna, "type", prop_similar_types, SIMVERT_NORMAL, "Type", ""); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | 	RNA_def_enum_funcs(prop, select_similar_type_itemf); | 
					
						
							| 
									
										
										
										
											2012-03-21 07:49:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-30 07:29:17 +00:00
										 |  |  | 	RNA_def_enum(ot->srna, "compare", prop_similar_compare_types, SIM_CMP_EQ, "Compare", ""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-21 21:56:35 +02:00
										 |  |  | 	RNA_def_float(ot->srna, "threshold", 0.0f, 0.0f, 1.0f, "Threshold", "", 0.0f, 1.0f); | 
					
						
							| 
									
										
										
										
											2009-08-18 20:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 15:40:50 +10:00
										 |  |  | /* -------------------------------------------------------------------- */ | 
					
						
							|  |  |  | /* Select Similar Regions */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int edbm_select_similar_region_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							|  |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							|  |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 	bool changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* group vars */ | 
					
						
							|  |  |  | 	int *groups_array; | 
					
						
							|  |  |  | 	int (*group_index)[2]; | 
					
						
							|  |  |  | 	int group_tot; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bm->totfacesel < 2) { | 
					
						
							|  |  |  | 		BKE_report(op->reports, RPT_ERROR, "No face regions selected"); | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	groups_array = MEM_mallocN(sizeof(*groups_array) * bm->totfacesel, __func__); | 
					
						
							|  |  |  | 	group_tot = BM_mesh_calc_face_groups(bm, groups_array, &group_index, | 
					
						
							|  |  |  | 	                                     NULL, NULL, | 
					
						
							|  |  |  | 	                                     BM_ELEM_SELECT, BM_VERT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BM_mesh_elem_table_ensure(bm, BM_FACE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < group_tot; i++) { | 
					
						
							|  |  |  | 		ListBase faces_regions; | 
					
						
							|  |  |  | 		int tot; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		const int fg_sta = group_index[i][0]; | 
					
						
							|  |  |  | 		const int fg_len = group_index[i][1]; | 
					
						
							|  |  |  | 		int j; | 
					
						
							|  |  |  | 		BMFace **fg = MEM_mallocN(sizeof(*fg) * fg_len, __func__); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (j = 0; j < fg_len; j++) { | 
					
						
							|  |  |  | 			fg[j] = BM_face_at_index(bm, groups_array[fg_sta + j]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		tot = BM_mesh_region_match(bm, fg, fg_len, &faces_regions); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		MEM_freeN(fg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (tot) { | 
					
						
							|  |  |  | 			LinkData *link; | 
					
						
							|  |  |  | 			while ((link = BLI_pophead(&faces_regions))) { | 
					
						
							|  |  |  | 				BMFace *f, **faces = link->data; | 
					
						
							| 
									
										
										
										
											2015-11-23 15:44:15 +11:00
										 |  |  | 				while ((f = *(faces++))) { | 
					
						
							| 
									
										
										
										
											2014-09-15 15:40:50 +10:00
										 |  |  | 					BM_face_select_set(bm, f, true); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-11-26 08:45:36 +11:00
										 |  |  | 				MEM_freeN(link->data); | 
					
						
							| 
									
										
										
										
											2014-09-15 15:40:50 +10:00
										 |  |  | 				MEM_freeN(link); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				changed = true; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	MEM_freeN(groups_array); | 
					
						
							| 
									
										
										
										
											2014-12-28 15:26:24 +11:00
										 |  |  | 	MEM_freeN(group_index); | 
					
						
							| 
									
										
										
										
											2014-09-15 15:40:50 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (changed) { | 
					
						
							|  |  |  | 		WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		BKE_report(op->reports, RPT_WARNING, "No matching face regions found"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_similar_region(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Similar Regions"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_similar_region"; | 
					
						
							|  |  |  | 	ot->description = "Select similar face regions to the current selection"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = edbm_select_similar_region_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | /* ****************  Mode Select *************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int edbm_select_mode_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	const int type        = RNA_enum_get(op->ptr,    "type"); | 
					
						
							|  |  |  | 	const int action      = RNA_enum_get(op->ptr,    "action"); | 
					
						
							|  |  |  | 	const bool use_extend = RNA_boolean_get(op->ptr, "use_extend"); | 
					
						
							|  |  |  | 	const bool use_expand = RNA_boolean_get(op->ptr, "use_expand"); | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (EDBM_selectmode_toggle(C, type, action, use_extend, use_expand)) { | 
					
						
							|  |  |  | 		return OPERATOR_FINISHED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 09:03:46 +00:00
										 |  |  | static int edbm_select_mode_invoke(bContext *C, wmOperator *op, const wmEvent *event) | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-28 16:37:18 +00:00
										 |  |  | 	/* detecting these options based on shift/ctrl here is weak, but it's done
 | 
					
						
							|  |  |  | 	 * to make this work when clicking buttons or menus */ | 
					
						
							|  |  |  | 	if (!RNA_struct_property_is_set(op->ptr, "use_extend")) | 
					
						
							|  |  |  | 		RNA_boolean_set(op->ptr, "use_extend", event->shift); | 
					
						
							|  |  |  | 	if (!RNA_struct_property_is_set(op->ptr, "use_expand")) | 
					
						
							|  |  |  | 		RNA_boolean_set(op->ptr, "use_expand", event->ctrl); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 	return edbm_select_mode_exec(C, op); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_mode(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PropertyRNA *prop; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static EnumPropertyItem elem_items[] = { | 
					
						
							|  |  |  | 		{SCE_SELECT_VERTEX, "VERT", ICON_VERTEXSEL, "Vertices", ""}, | 
					
						
							|  |  |  | 		{SCE_SELECT_EDGE,   "EDGE", ICON_EDGESEL, "Edges", ""}, | 
					
						
							|  |  |  | 		{SCE_SELECT_FACE,   "FACE", ICON_FACESEL, "Faces", ""}, | 
					
						
							|  |  |  | 		{0, NULL, 0, NULL, NULL}, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static EnumPropertyItem actions_items[] = { | 
					
						
							|  |  |  | 		{0, "DISABLE", 0, "Disable", "Disable selected markers"}, | 
					
						
							|  |  |  | 		{1, "ENABLE", 0, "Enable", "Enable selected markers"}, | 
					
						
							|  |  |  | 		{2, "TOGGLE", 0, "Toggle", "Toggle disabled flag for selected markers"}, | 
					
						
							|  |  |  | 		{0, NULL, 0, NULL, NULL} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Mode"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_mode"; | 
					
						
							|  |  |  | 	ot->description = "Change selection mode"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->invoke = edbm_select_mode_invoke; | 
					
						
							|  |  |  | 	ot->exec = edbm_select_mode_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* properties */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	prop = RNA_def_boolean(ot->srna, "use_extend", false, "Extend", ""); | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 	RNA_def_property_flag(prop, PROP_SKIP_SAVE); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	prop = RNA_def_boolean(ot->srna, "use_expand", false, "Expand", ""); | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 	RNA_def_property_flag(prop, PROP_SKIP_SAVE); | 
					
						
							|  |  |  | 	ot->prop = prop = RNA_def_enum(ot->srna, "type", elem_items, 0, "Type", ""); | 
					
						
							|  |  |  | 	RNA_def_property_flag(prop, PROP_SKIP_SAVE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RNA_def_enum(ot->srna, "action", actions_items, 2, "Action", "Selection action to execute"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | /* ***************************************************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ****************  LOOP SELECTS *************** */ | 
					
						
							| 
									
										
										
										
											2009-07-29 00:43:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | static void walker_select_count(BMEditMesh *em, int walkercode, void *start, const bool select, const bool select_mix, | 
					
						
							|  |  |  |                                 int *r_totsel, int *r_totunsel) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 	BMElem *ele; | 
					
						
							|  |  |  | 	BMWalker walker; | 
					
						
							|  |  |  | 	int tot[2] = {0, 0}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BMW_init(&walker, bm, walkercode, | 
					
						
							|  |  |  | 	         BMW_MASK_NOP, BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							|  |  |  | 	         BMW_FLAG_TEST_HIDDEN, | 
					
						
							|  |  |  | 	         BMW_NIL_LAY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ele = BMW_begin(&walker, start); ele; ele = BMW_step(&walker)) { | 
					
						
							|  |  |  | 		tot[(BM_elem_flag_test_bool(ele, BM_ELEM_SELECT) != select)] += 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!select_mix && tot[0] && tot[1]) { | 
					
						
							|  |  |  | 			tot[0] = tot[1] = -1; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	*r_totsel = tot[0]; | 
					
						
							|  |  |  | 	*r_totunsel = tot[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BMW_end(&walker); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | static void walker_select(BMEditMesh *em, int walkercode, void *start, const bool select) | 
					
						
							| 
									
										
										
										
											2009-06-16 20:33:13 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMesh *bm = em->bm; | 
					
						
							| 
									
										
										
										
											2012-02-25 22:23:40 +00:00
										 |  |  | 	BMElem *ele; | 
					
						
							| 
									
										
										
										
											2009-06-16 20:33:13 +00:00
										 |  |  | 	BMWalker walker; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BMW_init(&walker, bm, walkercode, | 
					
						
							| 
									
										
										
										
											2012-03-29 13:09:07 +00:00
										 |  |  | 	         BMW_MASK_NOP, BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							| 
									
										
										
										
											2012-03-30 08:43:47 +00:00
										 |  |  | 	         BMW_FLAG_TEST_HIDDEN, | 
					
						
							| 
									
										
										
										
											2012-02-06 05:18:08 +00:00
										 |  |  | 	         BMW_NIL_LAY); | 
					
						
							| 
									
										
										
										
											2013-01-14 09:53:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (ele = BMW_begin(&walker, start); ele; ele = BMW_step(&walker)) { | 
					
						
							| 
									
										
										
										
											2012-02-06 05:18:08 +00:00
										 |  |  | 		if (!select) { | 
					
						
							| 
									
										
										
										
											2012-02-25 22:23:40 +00:00
										 |  |  | 			BM_select_history_remove(bm, ele); | 
					
						
							| 
									
										
										
										
											2012-02-06 05:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-25 22:23:40 +00:00
										 |  |  | 		BM_elem_select_set(bm, ele, select); | 
					
						
							| 
									
										
										
										
											2009-06-16 20:33:13 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BMW_end(&walker); | 
					
						
							| 
									
										
										
										
											2009-06-16 20:33:13 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_loop_multiselect_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	BMEdge *eed; | 
					
						
							|  |  |  | 	BMEdge **edarray; | 
					
						
							| 
									
										
										
										
											2011-06-26 01:11:03 +00:00
										 |  |  | 	int edindex; | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	const bool is_ring = RNA_boolean_get(op->ptr, "ring"); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-06-26 01:11:03 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	int totedgesel = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-20 19:49:27 +00:00
										 |  |  | 	BM_ITER_MESH (eed, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 		if (BM_elem_flag_test(eed, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2011-06-26 01:11:03 +00:00
										 |  |  | 			totedgesel++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-03-21 09:10:08 +00:00
										 |  |  | 	edarray = MEM_mallocN(sizeof(BMEdge *) * totedgesel, "edge array"); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	edindex = 0; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-05-20 19:49:27 +00:00
										 |  |  | 	BM_ITER_MESH (eed, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 		if (BM_elem_flag_test(eed, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			edarray[edindex] = eed; | 
					
						
							| 
									
										
										
										
											2011-06-26 01:11:03 +00:00
										 |  |  | 			edindex++; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	if (is_ring) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (edindex = 0; edindex < totedgesel; edindex += 1) { | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			eed = edarray[edindex]; | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			walker_select(em, BMW_EDGERING, eed, true); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-10 06:16:21 +00:00
										 |  |  | 		EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-28 16:47:12 +00:00
										 |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (edindex = 0; edindex < totedgesel; edindex += 1) { | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			eed = edarray[edindex]; | 
					
						
							| 
									
										
										
										
											2015-05-15 10:55:22 +10:00
										 |  |  | 			walker_select(em, BMW_EDGELOOP, eed, true); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-10 06:16:21 +00:00
										 |  |  | 		EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	MEM_freeN(edarray); | 
					
						
							|  |  |  | //	if (EM_texFaceCheck())
 | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-23 03:24:15 +00:00
										 |  |  | void MESH_OT_loop_multi_select(wmOperatorType *ot) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Multi Select Loops"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_loop_multi_select"; | 
					
						
							| 
									
										
										
										
											2012-04-15 10:07:57 +00:00
										 |  |  | 	ot->description = "Select a loop of connected edges by connection type"; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_loop_multiselect_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* properties */ | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "ring", 0, "Ring", ""); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | /* ***************** MAIN MOUSE SELECTION ************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ***************** loop select (non modal) ************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | static void mouse_mesh_loop_face(BMEditMesh *em, BMEdge *eed, bool select, bool select_clear) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (select_clear) { | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	walker_select(em, BMW_FACELOOP, eed, select); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mouse_mesh_loop_edge_ring(BMEditMesh *em, BMEdge *eed, bool select, bool select_clear) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (select_clear) { | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	walker_select(em, BMW_EDGERING, eed, select); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mouse_mesh_loop_edge(BMEditMesh *em, BMEdge *eed, bool select, bool select_clear, bool select_cycle) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bool edge_boundary = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-15 10:55:22 +10:00
										 |  |  | 	/* cycle between BMW_EDGELOOP / BMW_EDGEBOUNDARY  */ | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 	if (select_cycle && BM_edge_is_boundary(eed)) { | 
					
						
							|  |  |  | 		int tot[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* if the loops selected toggle the boundaries */ | 
					
						
							| 
									
										
										
										
											2015-05-15 10:55:22 +10:00
										 |  |  | 		walker_select_count(em, BMW_EDGELOOP, eed, select, false, | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 		                    &tot[0], &tot[1]); | 
					
						
							|  |  |  | 		if (tot[select] == 0) { | 
					
						
							|  |  |  | 			edge_boundary = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* if the boundaries selected, toggle back to the loop */ | 
					
						
							|  |  |  | 			walker_select_count(em, BMW_EDGEBOUNDARY, eed, select, false, | 
					
						
							|  |  |  | 			                    &tot[0], &tot[1]); | 
					
						
							|  |  |  | 			if (tot[select] == 0) { | 
					
						
							|  |  |  | 				edge_boundary = false; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (select_clear) { | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (edge_boundary) { | 
					
						
							|  |  |  | 		walker_select(em, BMW_EDGEBOUNDARY, eed, select); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2015-05-15 10:55:22 +10:00
										 |  |  | 		walker_select(em, BMW_EDGELOOP, eed, select); | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | static bool mouse_mesh_loop(bContext *C, const int mval[2], bool extend, bool deselect, bool toggle, bool ring) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	ViewContext vc; | 
					
						
							| 
									
										
										
										
											2009-05-18 08:46:04 +00:00
										 |  |  | 	BMEditMesh *em; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	BMEdge *eed; | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	bool select = true; | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 	bool select_clear = false; | 
					
						
							|  |  |  | 	bool select_cycle = true; | 
					
						
							| 
									
										
										
										
											2014-03-11 15:34:19 +11:00
										 |  |  | 	float dist = ED_view3d_select_dist_px() * 0.6666f; | 
					
						
							| 
									
										
										
										
											2012-06-25 13:32:04 +00:00
										 |  |  | 	float mvalf[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	em_setup_viewcontext(C, &vc); | 
					
						
							| 
									
										
										
										
											2012-06-25 13:32:04 +00:00
										 |  |  | 	mvalf[0] = (float)(vc.mval[0] = mval[0]); | 
					
						
							|  |  |  | 	mvalf[1] = (float)(vc.mval[1] = mval[1]); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	em = vc.em; | 
					
						
							| 
									
										
										
										
											2012-06-25 13:32:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 	/* no afterqueue (yet), so we check it now, otherwise the bm_xxxofs indices are bad */ | 
					
						
							| 
									
										
										
										
											2015-04-21 03:19:27 +10:00
										 |  |  | 	ED_view3d_backbuf_validate(&vc); | 
					
						
							| 
									
										
										
										
											2009-10-22 23:22:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-21 12:25:15 +10:00
										 |  |  | 	eed = EDBM_edge_find_nearest_ex(&vc, &dist, NULL, true, true, NULL); | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	if (eed == NULL) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	if (extend == false && deselect == false && toggle == false) { | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 		select_clear = true; | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	if (extend) { | 
					
						
							|  |  |  | 		select = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (deselect) { | 
					
						
							|  |  |  | 		select = false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 	else if (select_clear || (BM_elem_flag_test(eed, BM_ELEM_SELECT) == 0)) { | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 		select = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (toggle) { | 
					
						
							|  |  |  | 		select = false; | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 		select_cycle = false; | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	if (em->selectmode & SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 		mouse_mesh_loop_face(em, eed, select, select_clear); | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-03-07 10:10:23 +11:00
										 |  |  | 	else { | 
					
						
							|  |  |  | 		if (ring) { | 
					
						
							|  |  |  | 			mouse_mesh_loop_edge_ring(em, eed, select, select_clear); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			mouse_mesh_loop_edge(em, eed, select, select_clear, select_cycle); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-06-25 13:32:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2012-10-05 04:18:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	/* sets as active, useful for other tools */ | 
					
						
							|  |  |  | 	if (select) { | 
					
						
							|  |  |  | 		if (em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 			/* Find nearest vert from mouse
 | 
					
						
							|  |  |  | 			 * (initialize to large values incase only one vertex can be projected) */ | 
					
						
							|  |  |  | 			float v1_co[2], v2_co[2]; | 
					
						
							|  |  |  | 			float length_1 = FLT_MAX; | 
					
						
							|  |  |  | 			float length_2 = FLT_MAX; | 
					
						
							| 
									
										
										
										
											2012-10-05 04:18:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 			/* We can't be sure this has already been set... */ | 
					
						
							|  |  |  | 			ED_view3d_init_mats_rv3d(vc.obedit, vc.rv3d); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (ED_view3d_project_float_object(vc.ar, eed->v1->co, v1_co, V3D_PROJ_TEST_CLIP_NEAR) == V3D_PROJ_RET_OK) { | 
					
						
							|  |  |  | 				length_1 = len_squared_v2v2(mvalf, v1_co); | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (ED_view3d_project_float_object(vc.ar, eed->v2->co, v2_co, V3D_PROJ_TEST_CLIP_NEAR) == V3D_PROJ_RET_OK) { | 
					
						
							|  |  |  | 				length_2 = len_squared_v2v2(mvalf, v2_co); | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | 			printf("mouse to v1: %f\nmouse to v2: %f\n", len_squared_v2v2(mvalf, v1_co), | 
					
						
							|  |  |  | 			       len_squared_v2v2(mvalf, v2_co)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 			BM_select_history_store(em->bm, (length_1 < length_2) ? eed->v1 : eed->v2); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							|  |  |  | 			BM_select_history_store(em->bm, eed); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (em->selectmode & SCE_SELECT_FACE) { | 
					
						
							|  |  |  | 			/* Select the face of eed which is the nearest of mouse. */ | 
					
						
							|  |  |  | 			BMFace *f, *efa = NULL; | 
					
						
							|  |  |  | 			BMIter iterf; | 
					
						
							|  |  |  | 			float best_dist = FLT_MAX; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* We can't be sure this has already been set... */ | 
					
						
							|  |  |  | 			ED_view3d_init_mats_rv3d(vc.obedit, vc.rv3d); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			BM_ITER_ELEM (f, &iterf, eed, BM_FACES_OF_EDGE) { | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(f, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 					float cent[3]; | 
					
						
							|  |  |  | 					float co[2], tdist; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					BM_face_calc_center_mean(f, cent); | 
					
						
							|  |  |  | 					if (ED_view3d_project_float_object(vc.ar, cent, co, V3D_PROJ_TEST_CLIP_NEAR) == V3D_PROJ_RET_OK) { | 
					
						
							|  |  |  | 						tdist = len_squared_v2v2(mvalf, co); | 
					
						
							|  |  |  | 						if (tdist < best_dist) { | 
					
						
							|  |  |  | /*							printf("Best face: %p (%f)\n", f, tdist);*/ | 
					
						
							|  |  |  | 							best_dist = tdist; | 
					
						
							|  |  |  | 							efa = f; | 
					
						
							| 
									
										
										
										
											2012-06-25 13:32:04 +00:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			if (efa) { | 
					
						
							|  |  |  | 				BM_mesh_active_face_set(em->bm, efa); | 
					
						
							|  |  |  | 				BM_select_history_store(em->bm, efa); | 
					
						
							| 
									
										
										
										
											2012-06-25 13:32:04 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, vc.obedit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 09:03:46 +00:00
										 |  |  | static int edbm_select_loop_invoke(bContext *C, wmOperator *op, const wmEvent *event) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	view3d_operator_needs_opengl(C); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-03-07 08:09:33 +11:00
										 |  |  | 	if (mouse_mesh_loop(C, event->mval, | 
					
						
							|  |  |  | 	                    RNA_boolean_get(op->ptr, "extend"), | 
					
						
							|  |  |  | 	                    RNA_boolean_get(op->ptr, "deselect"), | 
					
						
							|  |  |  | 	                    RNA_boolean_get(op->ptr, "toggle"), | 
					
						
							|  |  |  | 	                    RNA_boolean_get(op->ptr, "ring"))) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return OPERATOR_FINISHED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-23 03:24:15 +00:00
										 |  |  | void MESH_OT_loop_select(wmOperatorType *ot) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Loop Select"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_loop_select"; | 
					
						
							| 
									
										
										
										
											2012-04-15 10:07:57 +00:00
										 |  |  | 	ot->description = "Select a loop of connected edges"; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->invoke = edbm_select_loop_invoke; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh_region_view3d; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-02-27 12:53:23 +00:00
										 |  |  | 	ot->flag = OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* properties */ | 
					
						
							| 
									
										
										
										
											2011-09-07 08:34:15 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "extend", 0, "Extend Select", "Extend the selection"); | 
					
						
							| 
									
										
										
										
											2012-11-21 01:51:31 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "deselect", 0, "Deselect", "Remove from the selection"); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "toggle", 0, "Toggle Select", "Toggle the selection"); | 
					
						
							| 
									
										
										
										
											2011-09-07 08:34:15 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "ring", 0, "Select Ring", "Select ring"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 16:04:37 +00:00
										 |  |  | void MESH_OT_edgering_select(wmOperatorType *ot) | 
					
						
							| 
									
										
										
										
											2011-09-07 08:34:15 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* description */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Edge Ring Select"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_edgering_select"; | 
					
						
							|  |  |  | 	ot->description = "Select an edge ring"; | 
					
						
							| 
									
										
										
										
											2011-09-07 08:34:15 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->invoke = edbm_select_loop_invoke; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh_region_view3d; | 
					
						
							| 
									
										
										
										
											2011-09-07 08:34:15 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-02-27 12:53:23 +00:00
										 |  |  | 	ot->flag = OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2011-09-07 08:34:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend the selection"); | 
					
						
							| 
									
										
										
										
											2012-11-21 01:51:31 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "deselect", 0, "Deselect", "Remove from the selection"); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "toggle", 0, "Toggle Select", "Toggle the selection"); | 
					
						
							| 
									
										
										
										
											2011-09-07 08:34:15 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "ring", 1, "Select Ring", "Select ring"); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | /* ******************** (de)select all operator **************** */ | 
					
						
							|  |  |  | static int edbm_select_all_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	const int action = RNA_enum_get(op->ptr, "action"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (action) { | 
					
						
							|  |  |  | 		case SEL_TOGGLE: | 
					
						
							|  |  |  | 			EDBM_select_toggle_all(em); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case SEL_SELECT: | 
					
						
							|  |  |  | 			EDBM_flag_enable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case SEL_DESELECT: | 
					
						
							|  |  |  | 			EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case SEL_INVERT: | 
					
						
							|  |  |  | 			EDBM_select_swap(em); | 
					
						
							|  |  |  | 			EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_all(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "(De)select All"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_all"; | 
					
						
							|  |  |  | 	ot->description = "(De)select all vertices, edges or faces"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = edbm_select_all_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WM_operator_properties_select_all(ot); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int edbm_faces_select_interior_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (EDBM_select_interior_faces(em)) { | 
					
						
							|  |  |  | 		WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return OPERATOR_FINISHED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_interior_faces(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Interior Faces"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_interior_faces"; | 
					
						
							|  |  |  | 	ot->description = "Select faces where all edges have more than 2 face users"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = edbm_faces_select_interior_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************** */ | 
					
						
							|  |  |  | /* here actual select happens */ | 
					
						
							|  |  |  | /* gets called via generic mouse select operator */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | bool EDBM_select_pick(bContext *C, const int mval[2], bool extend, bool deselect, bool toggle) | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	ViewContext vc; | 
					
						
							| 
									
										
										
										
											2009-05-18 08:46:04 +00:00
										 |  |  | 	BMVert *eve = NULL; | 
					
						
							|  |  |  | 	BMEdge *eed = NULL; | 
					
						
							|  |  |  | 	BMFace *efa = NULL; | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	/* setup view context for argument to callbacks */ | 
					
						
							|  |  |  | 	em_setup_viewcontext(C, &vc); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	vc.mval[0] = mval[0]; | 
					
						
							|  |  |  | 	vc.mval[1] = mval[1]; | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (unified_findnearest(&vc, &eve, &eed, &efa)) { | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* Deselect everything */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		if (extend == false && deselect == false && toggle == false) | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			EDBM_flag_disable_all(vc.em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		if (efa) { | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			if (extend) { | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 				/* set the last selected face */ | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 				BM_mesh_active_face_set(vc.em->bm, efa); | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				/* Work-around: deselect first, so we can guarantee it will */ | 
					
						
							|  |  |  | 				/* be active even if it was already selected */ | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				BM_select_history_remove(vc.em->bm, efa); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_face_select_set(vc.em->bm, efa, false); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:19:18 +00:00
										 |  |  | 				BM_select_history_store(vc.em->bm, efa); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_face_select_set(vc.em->bm, efa, true); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			else if (deselect) { | 
					
						
							| 
									
										
										
										
											2012-04-24 21:19:18 +00:00
										 |  |  | 				BM_select_history_remove(vc.em->bm, efa); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_face_select_set(vc.em->bm, efa, false); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 				/* set the last selected face */ | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 				BM_mesh_active_face_set(vc.em->bm, efa); | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				if (!BM_elem_flag_test(efa, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 					BM_select_history_store(vc.em->bm, efa); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 					BM_face_select_set(vc.em->bm, efa, true); | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				else if (toggle) { | 
					
						
							|  |  |  | 					BM_select_history_remove(vc.em->bm, efa); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 					BM_face_select_set(vc.em->bm, efa, false); | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		else if (eed) { | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			if (extend) { | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 				/* Work-around: deselect first, so we can guarantee it will */ | 
					
						
							|  |  |  | 				/* be active even if it was already selected */ | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				BM_select_history_remove(vc.em->bm, eed); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_edge_select_set(vc.em->bm, eed, false); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:19:18 +00:00
										 |  |  | 				BM_select_history_store(vc.em->bm, eed); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_edge_select_set(vc.em->bm, eed, true); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			else if (deselect) { | 
					
						
							| 
									
										
										
										
											2012-04-24 21:19:18 +00:00
										 |  |  | 				BM_select_history_remove(vc.em->bm, eed); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_edge_select_set(vc.em->bm, eed, false); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			else { | 
					
						
							|  |  |  | 				if (!BM_elem_flag_test(eed, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 					BM_select_history_store(vc.em->bm, eed); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 					BM_edge_select_set(vc.em->bm, eed, true); | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				else if (toggle) { | 
					
						
							|  |  |  | 					BM_select_history_remove(vc.em->bm, eed); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 					BM_edge_select_set(vc.em->bm, eed, false); | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		else if (eve) { | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			if (extend) { | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 				/* Work-around: deselect first, so we can guarantee it will */ | 
					
						
							|  |  |  | 				/* be active even if it was already selected */ | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				BM_select_history_remove(vc.em->bm, eve); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_vert_select_set(vc.em->bm, eve, false); | 
					
						
							| 
									
										
										
										
											2012-04-24 21:19:18 +00:00
										 |  |  | 				BM_select_history_store(vc.em->bm, eve); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_vert_select_set(vc.em->bm, eve, true); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			else if (deselect) { | 
					
						
							| 
									
										
										
										
											2012-04-24 21:19:18 +00:00
										 |  |  | 				BM_select_history_remove(vc.em->bm, eve); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_vert_select_set(vc.em->bm, eve, false); | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 			else { | 
					
						
							|  |  |  | 				if (!BM_elem_flag_test(eve, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 					BM_select_history_store(vc.em->bm, eve); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 					BM_vert_select_set(vc.em->bm, eve, true); | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				else if (toggle) { | 
					
						
							|  |  |  | 					BM_select_history_remove(vc.em->bm, eve); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 					BM_vert_select_set(vc.em->bm, eve, false); | 
					
						
							| 
									
										
										
										
											2012-05-24 21:05:27 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 06:16:21 +00:00
										 |  |  | 		EDBM_selectmode_flush(vc.em); | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-02 11:51:36 +00:00
										 |  |  | 		/* change active material on object */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		if (efa && efa->mat_nr != vc.obedit->actcol - 1) { | 
					
						
							|  |  |  | 			vc.obedit->actcol = efa->mat_nr + 1; | 
					
						
							|  |  |  | 			vc.em->mat_nr = efa->mat_nr; | 
					
						
							| 
									
										
										
										
											2012-04-02 11:51:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-26 08:52:07 +00:00
										 |  |  | 			WM_event_add_notifier(C, NC_MATERIAL | ND_SHADING_LINKS, NULL); | 
					
						
							| 
									
										
										
										
											2012-04-02 11:51:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 		WM_event_add_notifier(C, NC_GEOM | ND_SELECT, vc.obedit); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2009-05-16 16:18:08 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-27 04:46:52 +00:00
										 |  |  | static void edbm_strip_selections(BMEditMesh *em) | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMEditSelection *ese, *nextese; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (!(em->selectmode & SCE_SELECT_VERTEX)) { | 
					
						
							| 
									
										
										
										
											2009-07-17 10:54:00 +00:00
										 |  |  | 		ese = em->bm->selected.first; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		while (ese) { | 
					
						
							|  |  |  | 			nextese = ese->next; | 
					
						
							|  |  |  | 			if (ese->htype == BM_VERT) BLI_freelinkN(&(em->bm->selected), ese); | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 			ese = nextese; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (!(em->selectmode & SCE_SELECT_EDGE)) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		ese = em->bm->selected.first; | 
					
						
							|  |  |  | 		while (ese) { | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 			nextese = ese->next; | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 			if (ese->htype == BM_EDGE) BLI_freelinkN(&(em->bm->selected), ese); | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 			ese = nextese; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (!(em->selectmode & SCE_SELECT_FACE)) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		ese = em->bm->selected.first; | 
					
						
							|  |  |  | 		while (ese) { | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 			nextese = ese->next; | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 			if (ese->htype == BM_FACE) BLI_freelinkN(&(em->bm->selected), ese); | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 			ese = nextese; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 08:36:27 +00:00
										 |  |  | /* when switching select mode, makes sure selection is consistent for editing */ | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | /* also for paranoia checks to make sure edge or face mode works */ | 
					
						
							|  |  |  | void EDBM_selectmode_set(BMEditMesh *em) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BMVert *eve; | 
					
						
							|  |  |  | 	BMEdge *eed; | 
					
						
							|  |  |  | 	BMFace *efa; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	em->bm->selectmode = em->selectmode; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-27 04:46:52 +00:00
										 |  |  | 	edbm_strip_selections(em); /* strip BMEditSelections from em->selected that are not relevant to new mode */ | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	if (em->bm->totvertsel == 0 && | 
					
						
							|  |  |  | 	    em->bm->totedgesel == 0 && | 
					
						
							|  |  |  | 	    em->bm->totfacesel == 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		if (em->bm->totvertsel) { | 
					
						
							|  |  |  | 			EDBM_select_flush(em); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 		/* deselect vertices, and select again based on edge select */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		BM_ITER_MESH (eve, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 			BM_vert_select_set(em->bm, eve, false); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (em->bm->totedgesel) { | 
					
						
							|  |  |  | 			BM_ITER_MESH (eed, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(eed, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 					BM_edge_select_set(em->bm, eed, true); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			/* selects faces based on edge status */ | 
					
						
							|  |  |  | 			EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (em->selectmode & SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 		/* deselect eges, and select again based on face select */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		BM_ITER_MESH (eed, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			BM_edge_select_set(em->bm, eed, false); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (em->bm->totfacesel) { | 
					
						
							| 
									
										
										
										
											2013-07-24 18:38:55 +00:00
										 |  |  | 			BM_ITER_MESH (efa, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				if (BM_elem_flag_test(efa, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 					BM_face_select_set(em->bm, efa, true); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  |  * Expand & Contract the Selection | 
					
						
							| 
									
										
										
										
											2015-09-14 02:21:15 +10:00
										 |  |  |  * (used when changing modes and Ctrl key held) | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  |  * Flush the selection up: | 
					
						
							|  |  |  |  * - vert -> edge | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  |  * - vert -> face | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  |  * - edge -> face | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Flush the selection down: | 
					
						
							|  |  |  |  * - face -> edge | 
					
						
							|  |  |  |  * - face -> vert | 
					
						
							|  |  |  |  * - edge -> vert | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-07-20 09:49:54 +00:00
										 |  |  | void EDBM_selectmode_convert(BMEditMesh *em, const short selectmode_old, const short selectmode_new) | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BMVert *eve; | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 	BMEdge *eed; | 
					
						
							|  |  |  | 	BMFace *efa; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 	/* first tag-to-select, then select --- this avoids a feedback loop */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* have to find out what the selectionmode was previously */ | 
					
						
							| 
									
										
										
										
											2012-07-20 09:49:54 +00:00
										 |  |  | 	if (selectmode_old == SCE_SELECT_VERTEX) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 		if (bm->totvertsel == 0) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			/* pass */ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (selectmode_new == SCE_SELECT_EDGE) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			/* flush up (vert -> edge) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 			/* select all edges associated with every selected vert */ | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			BM_ITER_MESH (eed, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 				BM_elem_flag_set(eed, BM_ELEM_TAG, BM_edge_is_any_vert_flag_test(eed, BM_ELEM_SELECT)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			BM_ITER_MESH (eed, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 				if (BM_elem_flag_test(eed, BM_ELEM_TAG)) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 					BM_edge_select_set(bm, eed, true); | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-10-21 05:46:41 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-07-20 09:49:54 +00:00
										 |  |  | 		else if (selectmode_new == SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			/* flush up (vert -> face) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 			/* select all faces associated with every selected vert */ | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			BM_ITER_MESH (efa, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 				BM_elem_flag_set(efa, BM_ELEM_TAG, BM_face_is_any_vert_flag_test(efa, BM_ELEM_SELECT)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			BM_ITER_MESH (efa, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 				if (BM_elem_flag_test(efa, BM_ELEM_TAG)) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 					BM_face_select_set(bm, efa, true); | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-07-20 09:49:54 +00:00
										 |  |  | 	else if (selectmode_old == SCE_SELECT_EDGE) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 		if (bm->totedgesel == 0) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			/* pass */ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (selectmode_new == SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			/* flush up (edge -> face) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 			/* select all faces associated with every selected edge */ | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			BM_ITER_MESH (efa, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 				BM_elem_flag_set(efa, BM_ELEM_TAG, BM_face_is_any_edge_flag_test(efa, BM_ELEM_SELECT)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			BM_ITER_MESH (efa, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-11-11 23:33:59 +00:00
										 |  |  | 				if (BM_elem_flag_test(efa, BM_ELEM_TAG)) { | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 					BM_face_select_set(bm, efa, true); | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 		else if (selectmode_new == SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 			/* flush down (edge -> vert) */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			BM_ITER_MESH (eve, &iter, bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 				if (!BM_vert_is_all_edge_flag_test(eve, BM_ELEM_SELECT, true)) { | 
					
						
							|  |  |  | 					BM_vert_select_set(bm, eve, false); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* deselect edges without both verts selected */ | 
					
						
							|  |  |  | 			BM_mesh_deselect_flush(bm); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (selectmode_old == SCE_SELECT_FACE) { | 
					
						
							|  |  |  | 		if (bm->totfacesel == 0) { | 
					
						
							|  |  |  | 			/* pass */ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (selectmode_new == SCE_SELECT_EDGE) { | 
					
						
							|  |  |  | 			/* flush down (face -> edge) */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			BM_ITER_MESH (eed, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 				if (!BM_edge_is_all_face_flag_test(eed, BM_ELEM_SELECT, true)) { | 
					
						
							|  |  |  | 					BM_edge_select_set(bm, eed, false); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (selectmode_new == SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 			/* flush down (face -> vert) */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			BM_ITER_MESH (eve, &iter, bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 				if (!BM_vert_is_all_face_flag_test(eve, BM_ELEM_SELECT, true)) { | 
					
						
							|  |  |  | 					BM_vert_select_set(bm, eve, false); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* deselect faces without verts selected */ | 
					
						
							|  |  |  | 			BM_mesh_deselect_flush(bm); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-05-28 04:41:02 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | /* user facing function, does notification */ | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | bool EDBM_selectmode_toggle(bContext *C, const short selectmode_new, | 
					
						
							|  |  |  |                             const int action, const bool use_extend, const bool use_expand) | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	ToolSettings *ts = CTX_data_tool_settings(C); | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							|  |  |  | 	BMEditMesh *em = NULL; | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	bool ret = false; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (obedit && obedit->type == OB_MESH) { | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 		em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (em == NULL) { | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (action) { | 
					
						
							|  |  |  | 		case -1: | 
					
						
							|  |  |  | 			/* already set */ | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 0:  /* disable */ | 
					
						
							|  |  |  | 			/* check we have something to do */ | 
					
						
							|  |  |  | 			if ((em->selectmode & selectmode_new) == 0) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				return false; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			em->selectmode &= ~selectmode_new; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 1:  /* enable */ | 
					
						
							|  |  |  | 			/* check we have something to do */ | 
					
						
							|  |  |  | 			if ((em->selectmode & selectmode_new) != 0) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				return false; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			em->selectmode |= selectmode_new; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 2:  /* toggle */ | 
					
						
							|  |  |  | 			/* can't disable this flag if its the only one set */ | 
					
						
							|  |  |  | 			if (em->selectmode == selectmode_new) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				return false; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			em->selectmode ^= selectmode_new; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			BLI_assert(0); | 
					
						
							| 
									
										
										
										
											2013-07-21 08:16:37 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 	if (use_extend == 0 || em->selectmode == 0) { | 
					
						
							|  |  |  | 		if (use_expand) { | 
					
						
							|  |  |  | 			const short selmode_max = highest_order_bit_s(ts->selectmode); | 
					
						
							|  |  |  | 			EDBM_selectmode_convert(em, selmode_max, selectmode_new); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 	switch (selectmode_new) { | 
					
						
							|  |  |  | 		case SCE_SELECT_VERTEX: | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			if (use_extend == 0 || em->selectmode == 0) { | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 				em->selectmode = SCE_SELECT_VERTEX; | 
					
						
							| 
									
										
										
										
											2014-03-17 00:23:05 +11:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 			ts->selectmode = em->selectmode; | 
					
						
							|  |  |  | 			EDBM_selectmode_set(em); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			ret = true; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case SCE_SELECT_EDGE: | 
					
						
							|  |  |  | 			if (use_extend == 0 || em->selectmode == 0) { | 
					
						
							|  |  |  | 				em->selectmode = SCE_SELECT_EDGE; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			ts->selectmode = em->selectmode; | 
					
						
							|  |  |  | 			EDBM_selectmode_set(em); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			ret = true; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case SCE_SELECT_FACE: | 
					
						
							|  |  |  | 			if (use_extend == 0 || em->selectmode == 0) { | 
					
						
							|  |  |  | 				em->selectmode = SCE_SELECT_FACE; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			ts->selectmode = em->selectmode; | 
					
						
							|  |  |  | 			EDBM_selectmode_set(em); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			ret = true; | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			BLI_assert(0); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	if (ret == true) { | 
					
						
							| 
									
										
										
										
											2012-11-13 05:44:49 +00:00
										 |  |  | 		WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							|  |  |  | 		WM_main_add_notifier(NC_SCENE | ND_TOOLSETTINGS, NULL); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Use to disable a selectmode if its enabled, Using another mode as a fallback | 
					
						
							|  |  |  |  * if the disabled mode is the only mode set. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \return true if the mode is changed. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | bool EDBM_selectmode_disable(Scene *scene, BMEditMesh *em, | 
					
						
							|  |  |  |                              const short selectmode_disable, | 
					
						
							|  |  |  |                              const short selectmode_fallback) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* note essential, but switch out of vertex mode since the
 | 
					
						
							|  |  |  | 	 * selected regions wont be nicely isolated after flushing */ | 
					
						
							|  |  |  | 	if (em->selectmode & selectmode_disable) { | 
					
						
							|  |  |  | 		if (em->selectmode == selectmode_disable) { | 
					
						
							|  |  |  | 			em->selectmode = selectmode_fallback; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			em->selectmode &= ~selectmode_disable; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		scene->toolsettings->selectmode = em->selectmode; | 
					
						
							|  |  |  | 		EDBM_selectmode_set(em); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		WM_main_add_notifier(NC_SCENE | ND_TOOLSETTINGS, scene); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-01 11:34:00 +11:00
										 |  |  | void EDBM_deselect_by_material(BMEditMesh *em, const short index, const bool select) | 
					
						
							| 
									
										
										
										
											2011-08-16 18:45:03 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMFace *efa; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_MESH (efa, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 		if (BM_elem_flag_test(efa, BM_ELEM_HIDDEN)) | 
					
						
							| 
									
										
										
										
											2011-08-16 18:45:03 +00:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		if (efa->mat_nr == index) { | 
					
						
							| 
									
										
										
										
											2012-04-20 16:55:47 +00:00
										 |  |  | 			BM_face_select_set(em->bm, efa, select); | 
					
						
							| 
									
										
										
										
											2011-08-16 18:45:03 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 23:41:33 +00:00
										 |  |  | void EDBM_select_toggle_all(BMEditMesh *em) /* exported for UV */ | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (em->bm->totvertsel || em->bm->totedgesel || em->bm->totfacesel) | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		EDBM_flag_enable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-08-16 18:45:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | void EDBM_select_swap(BMEditMesh *em) /* exported for UV */ | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMVert *eve; | 
					
						
							|  |  |  | 	BMEdge *eed; | 
					
						
							|  |  |  | 	BMFace *efa; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (em->bm->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (eve, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 			if (BM_elem_flag_test(eve, BM_ELEM_HIDDEN)) | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2012-04-20 16:55:47 +00:00
										 |  |  | 			BM_vert_select_set(em->bm, eve, !BM_elem_flag_test(eve, BM_ELEM_SELECT)); | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (eed, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 			if (BM_elem_flag_test(eed, BM_ELEM_HIDDEN)) | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2012-04-20 16:55:47 +00:00
										 |  |  | 			BM_edge_select_set(em->bm, eed, !BM_elem_flag_test(eed, BM_ELEM_SELECT)); | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (efa, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 			if (BM_elem_flag_test(efa, BM_ELEM_HIDDEN)) | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2012-04-20 16:55:47 +00:00
										 |  |  | 			BM_face_select_set(em->bm, efa, !BM_elem_flag_test(efa, BM_ELEM_SELECT)); | 
					
						
							| 
									
										
										
										
											2009-07-21 08:39:58 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | //	if (EM_texFaceCheck())
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-05 14:58:30 +00:00
										 |  |  | bool EDBM_select_interior_faces(BMEditMesh *em) | 
					
						
							| 
									
										
										
										
											2012-02-19 20:27:30 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMIter eiter; | 
					
						
							|  |  |  | 	BMFace *efa; | 
					
						
							|  |  |  | 	BMEdge *eed; | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	bool ok; | 
					
						
							| 
									
										
										
										
											2013-11-26 06:39:14 +11:00
										 |  |  | 	bool changed = false; | 
					
						
							| 
									
										
										
										
											2012-02-19 20:27:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_MESH (efa, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-19 20:27:30 +00:00
										 |  |  | 		if (BM_elem_flag_test(efa, BM_ELEM_HIDDEN)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		ok = true; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_ELEM (eed, &eiter, efa, BM_EDGES_OF_FACE) { | 
					
						
							| 
									
										
										
										
											2015-04-12 15:21:40 +10:00
										 |  |  | 			if (!BM_edge_face_count_is_over(eed, 2)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				ok = false; | 
					
						
							| 
									
										
										
										
											2012-02-19 20:27:30 +00:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (ok) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			BM_face_select_set(bm, efa, true); | 
					
						
							| 
									
										
										
										
											2013-11-26 06:39:14 +11:00
										 |  |  | 			changed = true; | 
					
						
							| 
									
										
										
										
											2012-02-19 20:27:30 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-26 06:39:14 +11:00
										 |  |  | 	return changed; | 
					
						
							| 
									
										
										
										
											2012-02-19 20:27:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /************************ Select Linked Operator *************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | /* so we can have last-used default depend on selection mode (rare exception!) */ | 
					
						
							| 
									
										
										
										
											2015-12-23 15:11:54 +11:00
										 |  |  | #define USE_LINKED_SELECT_DEFAULT_HACK
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 12:21:31 +10:00
										 |  |  | struct DelimitData { | 
					
						
							|  |  |  | 	int cd_loop_type; | 
					
						
							|  |  |  | 	int cd_loop_offset; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static bool select_linked_delimit_test( | 
					
						
							|  |  |  |         BMEdge *e, int delimit, | 
					
						
							|  |  |  |         const struct DelimitData *delimit_data) | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | { | 
					
						
							|  |  |  | 	BLI_assert(delimit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (delimit & BMO_DELIM_SEAM) { | 
					
						
							|  |  |  | 		if (BM_elem_flag_test(e, BM_ELEM_SEAM)) { | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:18:38 +10:00
										 |  |  | 	if (delimit & BMO_DELIM_SHARP) { | 
					
						
							|  |  |  | 		if (BM_elem_flag_test(e, BM_ELEM_SMOOTH) == 0) { | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 	if (delimit & BMO_DELIM_NORMAL) { | 
					
						
							|  |  |  | 		if (!BM_edge_is_contiguous(e)) { | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (delimit & BMO_DELIM_MATERIAL) { | 
					
						
							|  |  |  | 		if (e->l && e->l->radial_next != e->l) { | 
					
						
							|  |  |  | 			const short mat_nr = e->l->f->mat_nr; | 
					
						
							|  |  |  | 			BMLoop *l_iter = e->l->radial_next; | 
					
						
							|  |  |  | 			do { | 
					
						
							|  |  |  | 				if (l_iter->f->mat_nr != mat_nr) { | 
					
						
							|  |  |  | 					return true; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} while ((l_iter = l_iter->radial_next) != e->l); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 12:21:31 +10:00
										 |  |  | 	if (delimit & BMO_DELIM_UV) { | 
					
						
							|  |  |  | 		if (BM_edge_is_contiguous_loop_cd(e, delimit_data->cd_loop_type, delimit_data->cd_loop_offset) == 0) { | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 15:11:54 +11:00
										 |  |  | #ifdef USE_LINKED_SELECT_DEFAULT_HACK
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Gets the default from the operator fallback to own last-used value | 
					
						
							|  |  |  |  * (selected based on mode) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int select_linked_delimit_default_from_op(wmOperator *op, BMEditMesh *em) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static char delimit_last_store[2] = {0, BMO_DELIM_SEAM}; | 
					
						
							|  |  |  | 	int delimit_last_index = (em->selectmode & (SCE_SELECT_VERTEX | SCE_SELECT_EDGE)) == 0; | 
					
						
							|  |  |  | 	char *delimit_last = &delimit_last_store[delimit_last_index]; | 
					
						
							|  |  |  | 	PropertyRNA *prop_delimit = RNA_struct_find_property(op->ptr, "delimit"); | 
					
						
							|  |  |  | 	int delimit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (RNA_property_is_set(op->ptr, prop_delimit)) { | 
					
						
							|  |  |  | 		delimit = RNA_property_enum_get(op->ptr, prop_delimit); | 
					
						
							|  |  |  | 		*delimit_last = delimit; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		delimit = *delimit_last; | 
					
						
							|  |  |  | 		RNA_property_enum_set(op->ptr, prop_delimit, delimit); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return delimit; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:51:34 +10:00
										 |  |  | static void select_linked_delimit_validate(BMesh *bm, int *delimit) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if ((*delimit) & BMO_DELIM_UV) { | 
					
						
							|  |  |  | 		if (!CustomData_has_layer(&bm->ldata, CD_MLOOPUV)) { | 
					
						
							|  |  |  | 			(*delimit) &= ~BMO_DELIM_UV; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | static void select_linked_delimit_begin(BMesh *bm, short selectmode, int delimit) | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-16 12:21:31 +10:00
										 |  |  | 	struct DelimitData delimit_data = {0}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMEdge *e; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 12:21:31 +10:00
										 |  |  | 	if (delimit & BMO_DELIM_UV) { | 
					
						
							|  |  |  | 		delimit_data.cd_loop_type = CD_MLOOPUV; | 
					
						
							|  |  |  | 		delimit_data.cd_loop_offset = CustomData_get_offset(&bm->ldata, delimit_data.cd_loop_type); | 
					
						
							|  |  |  | 		if (delimit_data.cd_loop_offset == -1) { | 
					
						
							|  |  |  | 			delimit &= ~BMO_DELIM_UV; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 	/* grr, shouldn't need to alloc BMO flags here */ | 
					
						
							|  |  |  | 	BM_mesh_elem_toolflags_ensure(bm); | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 	if (selectmode ==  SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 		BM_ITER_MESH (e, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			const bool is_walk_ok = ( | 
					
						
							| 
									
										
										
										
											2015-05-16 12:21:31 +10:00
										 |  |  | 			        (select_linked_delimit_test(e, delimit, &delimit_data) == false)); | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			BMO_elem_flag_set(bm, e, BMO_ELE_TAG, is_walk_ok); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		/* don't delimit selected edges in vert/edge mode */ | 
					
						
							|  |  |  | 		BM_ITER_MESH (e, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			const bool is_walk_ok = ( | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 			        BM_elem_flag_test(e, BM_ELEM_SELECT) || | 
					
						
							| 
									
										
										
										
											2015-05-16 12:21:31 +10:00
										 |  |  | 			        (select_linked_delimit_test(e, delimit, &delimit_data) == false)); | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			BMO_elem_flag_set(bm, e, BMO_ELE_TAG, is_walk_ok); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | static void select_linked_delimit_end(BMEditMesh *em) | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BM_mesh_elem_toolflags_clear(bm); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | static int edbm_select_linked_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMWalker walker; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 15:11:54 +11:00
										 |  |  | #ifdef USE_LINKED_SELECT_DEFAULT_HACK
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	int delimit = select_linked_delimit_default_from_op(op, em); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:51:34 +10:00
										 |  |  | 	int delimit = RNA_enum_get(op->ptr, "delimit"); | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:51:34 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	select_linked_delimit_validate(bm, &delimit); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 	if (delimit) { | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 		select_linked_delimit_begin(em->bm, em->selectmode, delimit); | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 	if (em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 		BMVert *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BM_ITER_MESH (v, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 			BM_elem_flag_set(v, BM_ELEM_TAG, BM_elem_flag_test(v, BM_ELEM_SELECT)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 		BMW_init(&walker, em->bm, delimit ? BMW_LOOP_SHELL_WIRE : BMW_VERT_SHELL, | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		         BMW_MASK_NOP, delimit ? BMO_ELE_TAG : BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		         BMW_FLAG_TEST_HIDDEN, | 
					
						
							|  |  |  | 		         BMW_NIL_LAY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		if (delimit) { | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 			BM_ITER_MESH (v, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(v, BM_ELEM_TAG)) { | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 					BMElem *ele_walk; | 
					
						
							|  |  |  | 					BMW_ITER (ele_walk, &walker, v) { | 
					
						
							|  |  |  | 						if (ele_walk->head.htype == BM_LOOP) { | 
					
						
							|  |  |  | 							BMVert *v_step = ((BMLoop *)ele_walk)->v; | 
					
						
							|  |  |  | 							BM_vert_select_set(em->bm, v_step, true); | 
					
						
							|  |  |  | 							BM_elem_flag_disable(v_step, BM_ELEM_TAG); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						else { | 
					
						
							|  |  |  | 							BMEdge *e_step = (BMEdge *)ele_walk; | 
					
						
							|  |  |  | 							BLI_assert(ele_walk->head.htype == BM_EDGE); | 
					
						
							|  |  |  | 							BM_edge_select_set(em->bm, e_step, true); | 
					
						
							|  |  |  | 							BM_elem_flag_disable(e_step->v1, BM_ELEM_TAG); | 
					
						
							|  |  |  | 							BM_elem_flag_disable(e_step->v2, BM_ELEM_TAG); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			BM_ITER_MESH (v, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(v, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 					BMEdge *e_walk; | 
					
						
							|  |  |  | 					BMW_ITER (e_walk, &walker, v) { | 
					
						
							|  |  |  | 						BM_edge_select_set(em->bm, e_walk, true); | 
					
						
							|  |  |  | 						BM_elem_flag_disable(e_walk, BM_ELEM_TAG); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		BMW_end(&walker); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 		EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							|  |  |  | 		BMEdge *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			BM_elem_flag_set(e, BM_ELEM_TAG, BM_elem_flag_test(e, BM_ELEM_SELECT)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 		BMW_init(&walker, em->bm, delimit ? BMW_LOOP_SHELL_WIRE : BMW_VERT_SHELL, | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		         BMW_MASK_NOP, delimit ? BMO_ELE_TAG : BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 		         BMW_FLAG_TEST_HIDDEN, | 
					
						
							|  |  |  | 		         BMW_NIL_LAY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		if (delimit) { | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 			BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(e, BM_ELEM_TAG)) { | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 					BMElem *ele_walk; | 
					
						
							|  |  |  | 					BMW_ITER (ele_walk, &walker, e) { | 
					
						
							|  |  |  | 						if (ele_walk->head.htype == BM_LOOP) { | 
					
						
							|  |  |  | 							BMLoop *l_step = (BMLoop *)ele_walk; | 
					
						
							|  |  |  | 							BM_edge_select_set(em->bm, l_step->e, true); | 
					
						
							|  |  |  | 							BM_edge_select_set(em->bm, l_step->prev->e, true); | 
					
						
							|  |  |  | 							BM_elem_flag_disable(l_step->e, BM_ELEM_TAG); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						else { | 
					
						
							|  |  |  | 							BMEdge *e_step = (BMEdge *)ele_walk; | 
					
						
							|  |  |  | 							BLI_assert(ele_walk->head.htype == BM_EDGE); | 
					
						
							|  |  |  | 							BM_edge_select_set(em->bm, e_step, true); | 
					
						
							|  |  |  | 							BM_elem_flag_disable(e_step, BM_ELEM_TAG); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(e, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 					BMEdge *e_walk; | 
					
						
							|  |  |  | 					BMW_ITER (e_walk, &walker, e) { | 
					
						
							|  |  |  | 						BM_edge_select_set(em->bm, e_walk, true); | 
					
						
							|  |  |  | 						BM_elem_flag_disable(e_walk, BM_ELEM_TAG); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		BMW_end(&walker); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 		BMFace *f; | 
					
						
							| 
									
										
										
										
											2013-10-10 23:18:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 		BM_ITER_MESH (f, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							|  |  |  | 			BM_elem_flag_set(f, BM_ELEM_TAG, BM_elem_flag_test(f, BM_ELEM_SELECT)); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 		BMW_init(&walker, bm, BMW_ISLAND, | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		         BMW_MASK_NOP, delimit ? BMO_ELE_TAG : BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		         BMW_FLAG_TEST_HIDDEN, | 
					
						
							|  |  |  | 		         BMW_NIL_LAY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 		BM_ITER_MESH (f, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							|  |  |  | 			if (BM_elem_flag_test(f, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 				BMFace *f_walk; | 
					
						
							|  |  |  | 				BMW_ITER (f_walk, &walker, f) { | 
					
						
							|  |  |  | 					BM_face_select_set(bm, f_walk, true); | 
					
						
							|  |  |  | 					BM_elem_flag_disable(f_walk, BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		BMW_end(&walker); | 
					
						
							| 
									
										
										
										
											2015-05-15 17:08:27 +10:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 	if (delimit) { | 
					
						
							|  |  |  | 		select_linked_delimit_end(em); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_linked(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	PropertyRNA *prop; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Linked All"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_linked"; | 
					
						
							|  |  |  | 	ot->description = "Select all vertices linked to the active mesh"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = edbm_select_linked_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	prop = RNA_def_enum_flag(ot->srna, "delimit", rna_enum_mesh_delimit_mode_items, BMO_DELIM_SEAM, "Delimit", | 
					
						
							|  |  |  | 	                         "Delimit selected region"); | 
					
						
							| 
									
										
										
										
											2015-12-23 15:11:54 +11:00
										 |  |  | #ifdef USE_LINKED_SELECT_DEFAULT_HACK
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	RNA_def_property_flag(prop, PROP_SKIP_SAVE); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	UNUSED_VARS(prop); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | static int edbm_select_linked_pick_exec(bContext *C, wmOperator *op); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 21:26:02 +11:00
										 |  |  | static void edbm_select_linked_pick_ex(BMEditMesh *em, BMElem *ele, bool sel, int delimit) | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 	BMWalker walker; | 
					
						
							| 
									
										
										
										
											2012-02-09 01:53:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:51:34 +10:00
										 |  |  | 	select_linked_delimit_validate(bm, &delimit); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 	if (delimit) { | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 		select_linked_delimit_begin(bm, em->selectmode, delimit); | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Note: logic closely matches 'edbm_select_linked_exec', keep in sync */ | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 21:26:02 +11:00
										 |  |  | 	if (ele->head.htype == BM_VERT) { | 
					
						
							|  |  |  | 		BMVert *eve = (BMVert *)ele; | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 		BMW_init(&walker, bm, delimit ? BMW_LOOP_SHELL_WIRE : BMW_VERT_SHELL, | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		         BMW_MASK_NOP, delimit ? BMO_ELE_TAG : BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 		         BMW_FLAG_TEST_HIDDEN, | 
					
						
							|  |  |  | 		         BMW_NIL_LAY); | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		if (delimit) { | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 			BMElem *ele_walk; | 
					
						
							|  |  |  | 			BMW_ITER (ele_walk, &walker, eve) { | 
					
						
							|  |  |  | 				if (ele_walk->head.htype == BM_LOOP) { | 
					
						
							|  |  |  | 					BMVert *v_step = ((BMLoop *)ele_walk)->v; | 
					
						
							|  |  |  | 					BM_vert_select_set(bm, v_step, sel); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					BMEdge *e_step = (BMEdge *)ele_walk; | 
					
						
							|  |  |  | 					BLI_assert(ele_walk->head.htype == BM_EDGE); | 
					
						
							|  |  |  | 					BM_edge_select_set(bm, e_step, sel); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			BMEdge *e_walk; | 
					
						
							|  |  |  | 			BMW_ITER (e_walk, &walker, eve) { | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 				BM_edge_select_set(bm, e_walk, sel); | 
					
						
							| 
									
										
										
										
											2012-02-09 01:53:14 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 		BMW_end(&walker); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-28 21:26:02 +11:00
										 |  |  | 	else if (ele->head.htype == BM_EDGE) { | 
					
						
							|  |  |  | 		BMEdge *eed = (BMEdge *)ele; | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 		BMW_init(&walker, bm, delimit ? BMW_LOOP_SHELL_WIRE : BMW_VERT_SHELL, | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		         BMW_MASK_NOP, delimit ? BMO_ELE_TAG : BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							| 
									
										
										
										
											2012-03-29 13:09:07 +00:00
										 |  |  | 		         BMW_FLAG_TEST_HIDDEN, | 
					
						
							| 
									
										
										
										
											2012-02-06 05:18:08 +00:00
										 |  |  | 		         BMW_NIL_LAY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		if (delimit) { | 
					
						
							| 
									
										
										
										
											2015-05-29 14:27:39 +10:00
										 |  |  | 			BMElem *ele_walk; | 
					
						
							|  |  |  | 			BMW_ITER (ele_walk, &walker, eed) { | 
					
						
							|  |  |  | 				if (ele_walk->head.htype == BM_LOOP) { | 
					
						
							|  |  |  | 					BMEdge *e_step = ((BMLoop *)ele_walk)->e; | 
					
						
							|  |  |  | 					BM_edge_select_set(bm, e_step, sel); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					BMEdge *e_step = (BMEdge *)ele_walk; | 
					
						
							|  |  |  | 					BLI_assert(ele_walk->head.htype == BM_EDGE); | 
					
						
							|  |  |  | 					BM_edge_select_set(bm, e_step, sel); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 		else { | 
					
						
							|  |  |  | 			BMEdge *e_walk; | 
					
						
							|  |  |  | 			BMW_ITER (e_walk, &walker, eed) { | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 				BM_edge_select_set(bm, e_walk, sel); | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 		BMW_end(&walker); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-28 21:26:02 +11:00
										 |  |  | 	else if (ele->head.htype == BM_FACE) { | 
					
						
							|  |  |  | 		BMFace *efa = (BMFace *)ele; | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 		BMW_init(&walker, bm, BMW_ISLAND, | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 		         BMW_MASK_NOP, delimit ? BMO_ELE_TAG : BMW_MASK_NOP, BMW_MASK_NOP, | 
					
						
							| 
									
										
										
										
											2012-03-29 13:09:07 +00:00
										 |  |  | 		         BMW_FLAG_TEST_HIDDEN, | 
					
						
							| 
									
										
										
										
											2012-02-06 05:18:08 +00:00
										 |  |  | 		         BMW_NIL_LAY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			BMFace *f_walk; | 
					
						
							|  |  |  | 			BMW_ITER (f_walk, &walker, efa) { | 
					
						
							|  |  |  | 				BM_face_select_set(bm, f_walk, sel); | 
					
						
							|  |  |  | 				BM_elem_flag_disable(f_walk, BM_ELEM_TAG); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 		BMW_end(&walker); | 
					
						
							| 
									
										
										
										
											2015-05-16 09:35:35 +10:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-30 00:58:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 10:15:48 +10:00
										 |  |  | 	if (delimit) { | 
					
						
							|  |  |  | 		select_linked_delimit_end(em); | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int edbm_select_linked_pick_invoke(bContext *C, wmOperator *op, const wmEvent *event) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							|  |  |  | 	ViewContext vc; | 
					
						
							|  |  |  | 	BMEditMesh *em; | 
					
						
							|  |  |  | 	BMesh *bm; | 
					
						
							|  |  |  | 	BMVert *eve; | 
					
						
							|  |  |  | 	BMEdge *eed; | 
					
						
							|  |  |  | 	BMFace *efa; | 
					
						
							|  |  |  | 	const bool sel = !RNA_boolean_get(op->ptr, "deselect"); | 
					
						
							|  |  |  | 	int index; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (RNA_struct_property_is_set(op->ptr, "index")) { | 
					
						
							|  |  |  | 		return edbm_select_linked_pick_exec(C, op); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* unified_finednearest needs ogl */ | 
					
						
							|  |  |  | 	view3d_operator_needs_opengl(C); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* setup view context for argument to callbacks */ | 
					
						
							|  |  |  | 	em_setup_viewcontext(C, &vc); | 
					
						
							|  |  |  | 	em = vc.em; | 
					
						
							|  |  |  | 	bm = em->bm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bm->totedge == 0) { | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	vc.mval[0] = event->mval[0]; | 
					
						
							|  |  |  | 	vc.mval[1] = event->mval[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* return warning! */ | 
					
						
							|  |  |  | 	if (unified_findnearest(&vc, &eve, &eed, &efa) == 0) { | 
					
						
							|  |  |  | 		WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 15:11:54 +11:00
										 |  |  | #ifdef USE_LINKED_SELECT_DEFAULT_HACK
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	int delimit = select_linked_delimit_default_from_op(op, em); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	int delimit = RNA_enum_get(op->ptr, "delimit"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 21:26:02 +11:00
										 |  |  | 	BMElem *ele = EDBM_elem_from_selectmode(em, eve, eed, efa); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	edbm_select_linked_pick_ex(em, ele, sel, delimit); | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* to support redo */ | 
					
						
							| 
									
										
										
										
											2015-12-28 21:26:02 +11:00
										 |  |  | 	BM_mesh_elem_index_ensure(bm, ele->head.htype); | 
					
						
							|  |  |  | 	index = EDBM_elem_to_index_any(em, ele); | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RNA_int_set(op->ptr, "index", index); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int edbm_select_linked_pick_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							|  |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							|  |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 	int index; | 
					
						
							|  |  |  | 	const bool sel = !RNA_boolean_get(op->ptr, "deselect"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	index = RNA_int_get(op->ptr, "index"); | 
					
						
							|  |  |  | 	if (index < 0 || index >= (bm->totvert + bm->totedge + bm->totface)) { | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 18:03:20 +11:00
										 |  |  | 	BMElem *ele = EDBM_elem_from_index_any(em, index); | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 15:11:54 +11:00
										 |  |  | #ifdef USE_LINKED_SELECT_DEFAULT_HACK
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	int delimit = select_linked_delimit_default_from_op(op, em); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	int delimit = RNA_enum_get(op->ptr, "delimit"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 21:26:02 +11:00
										 |  |  | 	edbm_select_linked_pick_ex(em, ele, sel, delimit); | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							| 
									
										
										
										
											2013-04-15 04:34:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_linked_pick(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 	PropertyRNA *prop; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Linked"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_linked_pick"; | 
					
						
							| 
									
										
										
										
											2012-04-15 10:07:57 +00:00
										 |  |  | 	ot->description = "(De)select all vertices linked to the edge under the mouse cursor"; | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->invoke = edbm_select_linked_pick_invoke; | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 	ot->exec = edbm_select_linked_pick_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "deselect", 0, "Deselect", ""); | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	prop = RNA_def_enum_flag(ot->srna, "delimit", rna_enum_mesh_delimit_mode_items, BMO_DELIM_SEAM, "Delimit", | 
					
						
							|  |  |  | 	                         "Delimit selected region"); | 
					
						
							| 
									
										
										
										
											2015-12-23 15:11:54 +11:00
										 |  |  | #ifdef USE_LINKED_SELECT_DEFAULT_HACK
 | 
					
						
							| 
									
										
										
										
											2015-12-23 14:54:26 +11:00
										 |  |  | 	RNA_def_property_flag(prop, PROP_SKIP_SAVE); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* use for redo */ | 
					
						
							| 
									
										
										
										
											2015-06-21 21:56:35 +02:00
										 |  |  | 	prop = RNA_def_int(ot->srna, "index", -1, -1, INT_MAX, "", "", 0, INT_MAX); | 
					
						
							| 
									
										
										
										
											2015-05-16 20:53:35 +10:00
										 |  |  | 	RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | 
					
						
							| 
									
										
										
										
											2009-08-01 00:53:04 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | static int edbm_select_face_by_sides_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	BMFace *efa; | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	const int numverts = RNA_int_get(op->ptr, "number"); | 
					
						
							|  |  |  | 	const int type = RNA_enum_get(op->ptr, "type"); | 
					
						
							| 
									
										
										
										
											2012-02-09 01:53:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	if (!RNA_boolean_get(op->ptr, "extend")) | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2012-02-09 01:53:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	BM_ITER_MESH (efa, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-09 01:53:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-01 11:34:00 +11:00
										 |  |  | 		bool select; | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		switch (type) { | 
					
						
							|  |  |  | 			case 0: | 
					
						
							|  |  |  | 				select = (efa->len < numverts); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 1: | 
					
						
							|  |  |  | 				select = (efa->len == numverts); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 2: | 
					
						
							|  |  |  | 				select = (efa->len > numverts); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 3: | 
					
						
							|  |  |  | 				select = (efa->len != numverts); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				BLI_assert(0); | 
					
						
							|  |  |  | 				select = false; | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		if (select) { | 
					
						
							|  |  |  | 			BM_face_select_set(em->bm, efa, true); | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2012-02-06 05:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-11-19 23:52:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | void MESH_OT_select_face_by_sides(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static const EnumPropertyItem type_items[] = { | 
					
						
							|  |  |  | 		{0, "LESS", 0, "Less Than", ""}, | 
					
						
							|  |  |  | 		{1, "EQUAL", 0, "Equal To", ""}, | 
					
						
							|  |  |  | 		{2, "GREATER", 0, "Greater Than", ""}, | 
					
						
							|  |  |  | 		{3, "NOTEQUAL", 0, "Not Equal To", ""}, | 
					
						
							|  |  |  | 		{0, NULL, 0, NULL, NULL} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Faces by Sides"; | 
					
						
							|  |  |  | 	ot->description = "Select vertices or faces by the number of polygon sides"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_face_by_sides"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = edbm_select_face_by_sides_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* properties */ | 
					
						
							|  |  |  | 	RNA_def_int(ot->srna, "number", 4, 3, INT_MAX, "Number of Vertices", "", 3, INT_MAX); | 
					
						
							|  |  |  | 	RNA_def_enum(ot->srna, "type", type_items, 1, "Type", "Type of comparison to make"); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "extend", true, "Extend", "Extend the selection"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 16:59:53 +00:00
										 |  |  | static int edbm_select_loose_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-04-29 16:59:53 +00:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!RNA_boolean_get(op->ptr, "extend")) | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 16:59:53 +00:00
										 |  |  | 	if (em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							|  |  |  | 		BMVert *eve; | 
					
						
							|  |  |  | 		BM_ITER_MESH (eve, &iter, bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 			if (!eve->e) { | 
					
						
							|  |  |  | 				BM_vert_select_set(bm, eve, true); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-11-19 23:52:24 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 16:59:53 +00:00
										 |  |  | 	if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							|  |  |  | 		BMEdge *eed; | 
					
						
							|  |  |  | 		BM_ITER_MESH (eed, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			if (BM_edge_is_wire(eed)) { | 
					
						
							|  |  |  | 				BM_edge_select_set(bm, eed, true); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (em->selectmode & SCE_SELECT_FACE) { | 
					
						
							|  |  |  | 		BMFace *efa; | 
					
						
							|  |  |  | 		BM_ITER_MESH (efa, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							|  |  |  | 			BMIter liter; | 
					
						
							|  |  |  | 			BMLoop *l; | 
					
						
							|  |  |  | 			bool is_loose = true; | 
					
						
							|  |  |  | 			BM_ITER_ELEM (l, &liter, efa, BM_LOOPS_OF_FACE) { | 
					
						
							|  |  |  | 				if (!BM_edge_is_boundary(l->e)) { | 
					
						
							|  |  |  | 					is_loose = false; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (is_loose) { | 
					
						
							|  |  |  | 				BM_face_select_set(bm, efa, true); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-11-24 01:33:41 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2012-03-29 13:09:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 16:59:53 +00:00
										 |  |  | void MESH_OT_select_loose(wmOperatorType *ot) | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2013-04-29 16:59:53 +00:00
										 |  |  | 	ot->name = "Select Loose Geometry"; | 
					
						
							|  |  |  | 	ot->description = "Select loose geometry based on the selection mode"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_loose"; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2013-04-29 16:59:53 +00:00
										 |  |  | 	ot->exec = edbm_select_loose_exec; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2013-01-08 17:30:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* props */ | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "extend", false, "Extend", "Extend the selection"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int edbm_select_mirror_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2016-01-07 20:54:17 +11:00
										 |  |  | 	const int axis_flag = RNA_enum_get(op->ptr, "axis"); | 
					
						
							|  |  |  | 	const bool extend = RNA_boolean_get(op->ptr, "extend"); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (em->bm->totvert && em->bm->totvertsel) { | 
					
						
							| 
									
										
										
										
											2013-06-05 05:58:51 +00:00
										 |  |  | 		int totmirr, totfail; | 
					
						
							| 
									
										
										
										
											2013-07-01 21:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-07 20:54:17 +11:00
										 |  |  | 		for (int axis = 0; axis < 3; axis++) { | 
					
						
							|  |  |  | 			if ((1 << axis) & axis_flag) { | 
					
						
							|  |  |  | 				EDBM_select_mirrored(em, axis, extend, &totmirr, &totfail); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-05 05:58:51 +00:00
										 |  |  | 		if (totmirr) { | 
					
						
							|  |  |  | 			EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 			WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 21:56:59 +00:00
										 |  |  | 		ED_mesh_report_mirror_ex(op, totmirr, totfail, em->bm->selectmode); | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | void MESH_OT_select_mirror(wmOperatorType *ot) | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	ot->name = "Select Mirror"; | 
					
						
							|  |  |  | 	ot->description = "Select mesh items at mirrored locations"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_mirror"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	ot->exec = edbm_select_mirror_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* props */ | 
					
						
							| 
									
										
										
										
											2016-01-07 20:54:17 +11:00
										 |  |  | 	RNA_def_enum_flag(ot->srna, "axis", rna_enum_axis_flag_xyz_items, (1 << 0), "Axis", ""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend the existing selection"); | 
					
						
							| 
									
										
										
										
											2009-08-05 02:34:54 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ******************** **************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | static int edbm_select_more_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | 	const bool use_face_step = RNA_boolean_get(op->ptr, "use_face_step"); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | 	EDBM_select_more(em, use_face_step); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_more(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select More"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_more"; | 
					
						
							|  |  |  | 	ot->description = "Select more vertices, edges or faces connected to initial selection"; | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_more_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "use_face_step", true, "Face Step", "Connected faces (instead of edges)"); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | static int edbm_select_less_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | 	const bool use_face_step = RNA_boolean_get(op->ptr, "use_face_step"); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | 	EDBM_select_less(em, use_face_step); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_less(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Less"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_less"; | 
					
						
							|  |  |  | 	ot->description = "Deselect vertices, edges or faces at the boundary of each selection region"; | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_less_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2014-11-06 15:17:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "use_face_step", true, "Face Step", "Connected faces (instead of edges)"); | 
					
						
							| 
									
										
										
										
											2009-08-05 07:15:17 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-23 20:37:46 +10:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Check if we're connected to another selected efge. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static bool bm_edge_is_select_isolated(BMEdge *e) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BMIter viter; | 
					
						
							|  |  |  | 	BMVert *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BM_ITER_ELEM (v, &viter, e, BM_VERTS_OF_EDGE) { | 
					
						
							|  |  |  | 		BMIter eiter; | 
					
						
							|  |  |  | 		BMEdge *e_other; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BM_ITER_ELEM (e_other, &eiter, v, BM_EDGES_OF_VERT) { | 
					
						
							|  |  |  | 			if ((e_other != e) && BM_elem_flag_test(e_other, BM_ELEM_SELECT)) { | 
					
						
							|  |  |  | 				return false; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | /* Walk all reachable elements of the same type as h_act in breadth-first
 | 
					
						
							| 
									
										
										
										
											2012-03-03 16:31:46 +00:00
										 |  |  |  * order, starting from h_act. Deselects elements if the depth when they | 
					
						
							|  |  |  |  * are reached is not a multiple of "nth". */ | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | static void walker_deselect_nth( | 
					
						
							|  |  |  |         BMEditMesh *em, const struct CheckerIntervalParams *op_params, | 
					
						
							|  |  |  |         BMHeader *h_act) | 
					
						
							| 
									
										
										
										
											2011-09-26 00:32:45 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-25 22:23:40 +00:00
										 |  |  | 	BMElem *ele; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	BMWalker walker; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	int walktype = 0, itertype = 0, flushtype = 0; | 
					
						
							| 
									
										
										
										
											2012-03-29 13:09:07 +00:00
										 |  |  | 	short mask_vert = 0, mask_edge = 0, mask_face = 0; | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	/* No active element from which to start - nothing to do */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	if (h_act == NULL) { | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	/* Determine which type of iter, walker, and select flush to use
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	 * based on type of the elements being deselected */ | 
					
						
							| 
									
										
										
										
											2011-11-01 14:36:23 +00:00
										 |  |  | 	switch (h_act->htype) { | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 		case BM_VERT: | 
					
						
							|  |  |  | 			itertype = BM_VERTS_OF_MESH; | 
					
						
							|  |  |  | 			walktype = BMW_CONNECTED_VERTEX; | 
					
						
							|  |  |  | 			flushtype = SCE_SELECT_VERTEX; | 
					
						
							| 
									
										
										
										
											2013-04-15 04:34:14 +00:00
										 |  |  | 			mask_vert = BMO_ELE_TAG; | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case BM_EDGE: | 
					
						
							| 
									
										
										
										
											2014-05-23 20:37:46 +10:00
										 |  |  | 			/* When an edge has no connected-selected edges,
 | 
					
						
							|  |  |  | 			 * use face-stepping (supports edge-rings) */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 			itertype = BM_EDGES_OF_MESH; | 
					
						
							| 
									
										
										
										
											2014-05-23 20:37:46 +10:00
										 |  |  | 			walktype = bm_edge_is_select_isolated((BMEdge *)h_act) ? BMW_FACE_SHELL : BMW_VERT_SHELL; | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 			flushtype = SCE_SELECT_EDGE; | 
					
						
							| 
									
										
										
										
											2013-04-15 04:34:14 +00:00
										 |  |  | 			mask_edge = BMO_ELE_TAG; | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case BM_FACE: | 
					
						
							|  |  |  | 			itertype = BM_FACES_OF_MESH; | 
					
						
							|  |  |  | 			walktype = BMW_ISLAND; | 
					
						
							|  |  |  | 			flushtype = SCE_SELECT_FACE; | 
					
						
							| 
									
										
										
										
											2013-04-15 04:34:14 +00:00
										 |  |  | 			mask_face = BMO_ELE_TAG; | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2011-09-26 00:32:45 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-20 20:45:04 +00:00
										 |  |  | 	/* grr, shouldn't need to alloc BMO flags here */ | 
					
						
							|  |  |  | 	BM_mesh_elem_toolflags_ensure(bm); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	/* Walker restrictions uses BMO flags, not header flags,
 | 
					
						
							| 
									
										
										
										
											2012-02-12 06:24:12 +00:00
										 |  |  | 	 * so transfer BM_ELEM_SELECT from HFlags onto a BMO flag layer. */ | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	BMO_push(bm, NULL); | 
					
						
							| 
									
										
										
										
											2012-04-19 12:45:56 +00:00
										 |  |  | 	BM_ITER_MESH (ele, &iter, bm, itertype) { | 
					
						
							| 
									
										
										
										
											2012-02-25 22:23:40 +00:00
										 |  |  | 		if (BM_elem_flag_test(ele, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2013-04-15 04:34:14 +00:00
										 |  |  | 			BMO_elem_flag_enable(bm, (BMElemF *)ele, BMO_ELE_TAG); | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	/* Walk over selected elements starting at active */ | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BMW_init(&walker, bm, walktype, | 
					
						
							| 
									
										
										
										
											2012-03-29 13:09:07 +00:00
										 |  |  | 	         mask_vert, mask_edge, mask_face, | 
					
						
							| 
									
										
										
										
											2012-04-16 09:34:43 +00:00
										 |  |  | 	         BMW_FLAG_NOP, /* don't use BMW_FLAG_TEST_HIDDEN here since we want to desel all */ | 
					
						
							| 
									
										
										
										
											2012-02-06 05:18:08 +00:00
										 |  |  | 	         BMW_NIL_LAY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-16 16:04:12 +00:00
										 |  |  | 	/* use tag to avoid touching the same verts twice */ | 
					
						
							|  |  |  | 	BM_ITER_MESH (ele, &iter, bm, itertype) { | 
					
						
							|  |  |  | 		BM_elem_flag_disable(ele, BM_ELEM_TAG); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	BLI_assert(walker.order == BMW_BREADTH_FIRST); | 
					
						
							| 
									
										
										
										
											2012-02-25 22:23:40 +00:00
										 |  |  | 	for (ele = BMW_begin(&walker, h_act); ele != NULL; ele = BMW_step(&walker)) { | 
					
						
							| 
									
										
										
										
											2012-10-16 16:04:12 +00:00
										 |  |  | 		if (!BM_elem_flag_test(ele, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 			/* Deselect elements that aren't at "nth" depth from active */ | 
					
						
							| 
									
										
										
										
											2015-03-19 04:40:43 +11:00
										 |  |  | 			const int depth = BMW_current_depth(&walker) - 1; | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 			if (WM_operator_properties_checker_interval_test(op_params, depth)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_elem_select_set(bm, ele, false); | 
					
						
							| 
									
										
										
										
											2012-10-16 16:04:12 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			BM_elem_flag_enable(ele, BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BMW_end(&walker); | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	BMO_pop(bm); | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	/* Flush selection up */ | 
					
						
							| 
									
										
										
										
											2012-02-10 06:16:21 +00:00
										 |  |  | 	EDBM_selectmode_flush_ex(em, flushtype); | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | static void deselect_nth_active(BMEditMesh *em, BMVert **r_eve, BMEdge **r_eed, BMFace **r_efa) | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 	BMElem *ele; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 	*r_eve = NULL; | 
					
						
							|  |  |  | 	*r_eed = NULL; | 
					
						
							|  |  |  | 	*r_efa = NULL; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 06:16:21 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 	ele = BM_mesh_active_elem_get(em->bm); | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 18:49:44 +00:00
										 |  |  | 	if (ele && BM_elem_flag_test(ele, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2013-06-27 01:10:19 +00:00
										 |  |  | 		switch (ele->head.htype) { | 
					
						
							|  |  |  | 			case BM_VERT: | 
					
						
							|  |  |  | 				*r_eve = (BMVert *)ele; | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			case BM_EDGE: | 
					
						
							|  |  |  | 				*r_eed = (BMEdge *)ele; | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			case BM_FACE: | 
					
						
							|  |  |  | 				*r_efa = (BMFace *)ele; | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							| 
									
										
										
										
											2013-07-23 18:49:44 +00:00
										 |  |  | 		BMVert *v; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (v, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 			if (BM_elem_flag_test(v, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 				*r_eve = v; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							| 
									
										
										
										
											2013-07-23 18:49:44 +00:00
										 |  |  | 		BMEdge *e; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 			if (BM_elem_flag_test(e, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 				*r_eed = e; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (em->selectmode & SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2013-07-23 18:49:44 +00:00
										 |  |  | 		BMFace *f = BM_mesh_active_face_get(em->bm, true, false); | 
					
						
							|  |  |  | 		if (f && BM_elem_flag_test(f, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 			*r_efa = f; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | static bool edbm_deselect_nth(BMEditMesh *em, const struct CheckerIntervalParams *op_params) | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMVert *v; | 
					
						
							|  |  |  | 	BMEdge *e; | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	deselect_nth_active(em, &v, &e, &f); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 	if (v) { | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 		walker_deselect_nth(em, op_params, &v->head); | 
					
						
							| 
									
										
										
										
											2013-04-05 14:58:30 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (e) { | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 		walker_deselect_nth(em, op_params, &e->head); | 
					
						
							| 
									
										
										
										
											2013-04-05 14:58:30 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (f) { | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 		walker_deselect_nth(em, op_params, &f->head); | 
					
						
							| 
									
										
										
										
											2013-04-05 14:58:30 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-05 14:58:30 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_select_nth_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 	struct CheckerIntervalParams op_params; | 
					
						
							| 
									
										
										
										
											2011-09-26 03:38:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 	WM_operator_properties_checker_interval_from_op(op, &op_params); | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 	if (edbm_deselect_nth(em, &op_params) == false) { | 
					
						
							| 
									
										
										
										
											2011-09-23 13:31:48 +00:00
										 |  |  | 		BKE_report(op->reports, RPT_ERROR, "Mesh has no active vert/edge/face"); | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	EDBM_update_generic(em, false, false); | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_nth(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-11-01 05:07:15 +00:00
										 |  |  | 	ot->name = "Checker Deselect"; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->idname = "MESH_OT_select_nth"; | 
					
						
							| 
									
										
										
										
											2013-02-23 11:51:10 +00:00
										 |  |  | 	ot->description = "Deselect every Nth element starting from the active vertex, edge or face"; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_nth_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2011-08-28 17:15:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 17:46:55 +11:00
										 |  |  | 	WM_operator_properties_checker_interval(ot, false); | 
					
						
							| 
									
										
										
										
											2010-01-05 22:33:41 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-01-28 00:45:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void em_setup_viewcontext(bContext *C, ViewContext *vc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	view3d_set_viewcontext(C, vc); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (vc->obedit) { | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 		vc->em = BKE_editmesh_from_object(vc->obedit); | 
					
						
							| 
									
										
										
										
											2010-01-28 00:45:30 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_select_sharp_edges_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* Find edges that have exactly two neighboring faces,
 | 
					
						
							| 
									
										
										
										
											2012-03-03 16:31:46 +00:00
										 |  |  | 	 * check the angle between those faces, and if angle is | 
					
						
							|  |  |  | 	 * small enough, select the edge | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMEdge *e; | 
					
						
							|  |  |  | 	BMLoop *l1, *l2; | 
					
						
							| 
									
										
										
										
											2015-10-30 16:20:22 +11:00
										 |  |  | 	const float angle_limit_cos = cosf(RNA_float_get(op->ptr, "sharpness")); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 		if (BM_elem_flag_test(e, BM_ELEM_HIDDEN) == false && | 
					
						
							| 
									
										
										
										
											2012-09-14 11:10:03 +00:00
										 |  |  | 		    BM_edge_loop_pair(e, &l1, &l2)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			/* edge has exactly two neighboring faces, check angle */ | 
					
						
							| 
									
										
										
										
											2015-10-30 16:20:22 +11:00
										 |  |  | 			const float angle_cos = dot_v3v3(l1->f->no, l2->f->no); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-30 16:20:22 +11:00
										 |  |  | 			if (angle_cos < angle_limit_cos) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 				BM_edge_select_set(em->bm, e, true); | 
					
						
							| 
									
										
										
										
											2012-09-14 11:10:03 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_edges_select_sharp(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-20 13:56:42 +00:00
										 |  |  | 	PropertyRNA *prop; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Sharp Edges"; | 
					
						
							| 
									
										
										
										
											2012-05-20 13:56:42 +00:00
										 |  |  | 	ot->description = "Select all sharp-enough edges"; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->idname = "MESH_OT_edges_select_sharp"; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_sharp_edges_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* props */ | 
					
						
							| 
									
										
										
										
											2012-05-20 13:56:42 +00:00
										 |  |  | 	prop = RNA_def_float_rotation(ot->srna, "sharpness", 0, NULL, DEG2RADF(0.01f), DEG2RADF(180.0f), | 
					
						
							|  |  |  | 	                              "Sharpness", "", DEG2RADF(1.0f), DEG2RADF(180.0f)); | 
					
						
							| 
									
										
										
										
											2012-09-14 11:10:03 +00:00
										 |  |  | 	RNA_def_property_float_default(prop, DEG2RADF(30.0f)); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_select_linked_flat_faces_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-05-25 21:24:09 +00:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-17 05:33:55 +00:00
										 |  |  | 	BLI_LINKSTACK_DECLARE(stack, BMFace *); | 
					
						
							| 
									
										
										
										
											2013-05-25 21:24:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	BMIter iter, liter, liter2; | 
					
						
							| 
									
										
										
										
											2013-05-25 21:24:09 +00:00
										 |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	BMLoop *l, *l2; | 
					
						
							| 
									
										
										
										
											2015-10-30 16:20:22 +11:00
										 |  |  | 	const float angle_limit_cos = cosf(RNA_float_get(op->ptr, "sharpness")); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 18:03:40 +00:00
										 |  |  | 	BM_mesh_elem_hflag_disable_all(bm, BM_FACE, BM_ELEM_TAG, false); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 04:06:49 +00:00
										 |  |  | 	BLI_LINKSTACK_INIT(stack); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-25 21:24:09 +00:00
										 |  |  | 	BM_ITER_MESH (f, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							|  |  |  | 		if ((BM_elem_flag_test(f, BM_ELEM_HIDDEN) != 0) || | 
					
						
							|  |  |  | 		    (BM_elem_flag_test(f, BM_ELEM_TAG)    != 0) || | 
					
						
							|  |  |  | 		    (BM_elem_flag_test(f, BM_ELEM_SELECT) == 0)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 04:06:49 +00:00
										 |  |  | 		BLI_assert(BLI_LINKSTACK_SIZE(stack) == 0); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-25 21:24:09 +00:00
										 |  |  | 		do { | 
					
						
							|  |  |  | 			BM_face_select_set(bm, f, true); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 			BM_elem_flag_enable(f, BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 			BM_ITER_ELEM (l, &liter, f, BM_LOOPS_OF_FACE) { | 
					
						
							|  |  |  | 				BM_ITER_ELEM (l2, &liter2, l, BM_LOOPS_OF_LOOP) { | 
					
						
							| 
									
										
										
										
											2015-10-30 16:20:22 +11:00
										 |  |  | 					float angle_cos; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-25 21:24:09 +00:00
										 |  |  | 					if (BM_elem_flag_test(l2->f, BM_ELEM_TAG) || | 
					
						
							|  |  |  | 					    BM_elem_flag_test(l2->f, BM_ELEM_HIDDEN)) | 
					
						
							|  |  |  | 					{ | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 						continue; | 
					
						
							| 
									
										
										
										
											2013-05-25 21:24:09 +00:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-30 16:20:22 +11:00
										 |  |  | 					angle_cos = dot_v3v3(f->no, l2->f->no); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-30 16:20:22 +11:00
										 |  |  | 					if (angle_cos > angle_limit_cos) { | 
					
						
							| 
									
										
										
										
											2013-08-17 05:33:55 +00:00
										 |  |  | 						BLI_LINKSTACK_PUSH(stack, l2->f); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-08-17 05:33:55 +00:00
										 |  |  | 		} while ((f = BLI_LINKSTACK_POP(stack))); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-17 05:33:55 +00:00
										 |  |  | 	BLI_LINKSTACK_FREE(stack); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_faces_select_linked_flat(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-20 13:56:42 +00:00
										 |  |  | 	PropertyRNA *prop; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Linked Flat Faces"; | 
					
						
							|  |  |  | 	ot->description = "Select linked faces by angle"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_faces_select_linked_flat"; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_linked_flat_faces_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* props */ | 
					
						
							| 
									
										
										
										
											2012-05-20 13:56:42 +00:00
										 |  |  | 	prop = RNA_def_float_rotation(ot->srna, "sharpness", 0, NULL, DEG2RADF(0.01f), DEG2RADF(180.0f), | 
					
						
							|  |  |  | 	                              "Sharpness", "", DEG2RADF(1.0f), DEG2RADF(180.0f)); | 
					
						
							|  |  |  | 	RNA_def_property_float_default(prop, DEG2RADF(1.0f)); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_select_non_manifold_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	BMVert *v; | 
					
						
							|  |  |  | 	BMEdge *e; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-19 21:25:53 +10:00
										 |  |  | 	const bool use_wire = RNA_boolean_get(op->ptr, "use_wire"); | 
					
						
							|  |  |  | 	const bool use_boundary = RNA_boolean_get(op->ptr, "use_boundary"); | 
					
						
							|  |  |  | 	const bool use_multi_face = RNA_boolean_get(op->ptr, "use_multi_face"); | 
					
						
							|  |  |  | 	const bool use_non_contiguous = RNA_boolean_get(op->ptr, "use_non_contiguous"); | 
					
						
							|  |  |  | 	const bool use_verts = RNA_boolean_get(op->ptr, "use_verts"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-12 10:48:10 +00:00
										 |  |  | 	if (!RNA_boolean_get(op->ptr, "extend")) | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	/* Selects isolated verts, and edges that do not have 2 neighboring
 | 
					
						
							|  |  |  | 	 * faces | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	if (em->selectmode == SCE_SELECT_FACE) { | 
					
						
							| 
									
										
										
										
											2012-10-26 17:32:50 +00:00
										 |  |  | 		BKE_report(op->reports, RPT_ERROR, "Does not work in face selection mode"); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-07-19 21:25:53 +10:00
										 |  |  | 	if (use_verts) { | 
					
						
							|  |  |  | 		BM_ITER_MESH (v, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 			if (!BM_elem_flag_test(v, BM_ELEM_HIDDEN)) { | 
					
						
							|  |  |  | 				if (!BM_vert_is_manifold(v)) { | 
					
						
							|  |  |  | 					BM_vert_select_set(em->bm, v, true); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-07-19 21:25:53 +10:00
										 |  |  | 	if (use_wire || use_boundary || use_multi_face || use_non_contiguous) { | 
					
						
							|  |  |  | 		BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 			if (!BM_elem_flag_test(e, BM_ELEM_HIDDEN)) { | 
					
						
							|  |  |  | 				if ((use_wire && BM_edge_is_wire(e)) || | 
					
						
							|  |  |  | 				    (use_boundary && BM_edge_is_boundary(e)) || | 
					
						
							|  |  |  | 				    (use_non_contiguous && (BM_edge_is_manifold(e) && !BM_edge_is_contiguous(e))) || | 
					
						
							| 
									
										
										
										
											2015-04-12 15:21:40 +10:00
										 |  |  | 				    (use_multi_face && (BM_edge_face_count_is_over(e, 2)))) | 
					
						
							| 
									
										
										
										
											2014-07-19 21:25:53 +10:00
										 |  |  | 				{ | 
					
						
							|  |  |  | 					/* check we never select perfect edge (in test above) */ | 
					
						
							|  |  |  | 					BLI_assert(!(BM_edge_is_manifold(e) && BM_edge_is_contiguous(e))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					BM_edge_select_set(em->bm, e, true); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 15:45:30 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_non_manifold(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Non Manifold"; | 
					
						
							|  |  |  | 	ot->description = "Select all non-manifold vertices or edges"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_non_manifold"; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_non_manifold_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2013-01-12 10:48:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* props */ | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "extend", true, "Extend", "Extend the selection"); | 
					
						
							| 
									
										
										
										
											2014-07-19 21:25:53 +10:00
										 |  |  | 	/* edges */ | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "use_wire", true, "Wire", | 
					
						
							|  |  |  | 	                "Wire edges"); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "use_boundary", true, "Boundaries", | 
					
						
							|  |  |  | 	                "Boundary edges"); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "use_multi_face", true, | 
					
						
							|  |  |  | 	                "Multiple Faces", "Edges shared by 3+ faces"); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "use_non_contiguous", true, "Non Contiguous", | 
					
						
							|  |  |  | 	                "Edges between faces pointing in alternate directions"); | 
					
						
							|  |  |  | 	/* verts */ | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "use_verts", true, "Vertices", | 
					
						
							|  |  |  | 	                "Vertices connecting multiple face regions"); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_select_random_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 	const bool select = (RNA_enum_get(op->ptr, "action") == SEL_SELECT); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	const float randfac =  RNA_float_get(op->ptr, "percent") / 100.0f; | 
					
						
							| 
									
										
										
										
											2016-03-29 01:20:45 +11:00
										 |  |  | 	const int seed = WM_operator_properties_select_random_seed_increment_get(op); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 	BMIter iter; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-10 23:47:41 +11:00
										 |  |  | 	RNG *rng = BLI_rng_new_srandom(seed); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	if (em->selectmode & SCE_SELECT_VERTEX) { | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 		BMVert *eve; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (eve, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2015-10-10 23:47:41 +11:00
										 |  |  | 			if (!BM_elem_flag_test(eve, BM_ELEM_HIDDEN) && BLI_rng_get_float(rng) < randfac) { | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 				BM_vert_select_set(em->bm, eve, select); | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 	else if (em->selectmode & SCE_SELECT_EDGE) { | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 		BMEdge *eed; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (eed, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2015-10-10 23:47:41 +11:00
										 |  |  | 			if (!BM_elem_flag_test(eed, BM_ELEM_HIDDEN) && BLI_rng_get_float(rng) < randfac) { | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 				BM_edge_select_set(em->bm, eed, select); | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 		BMFace *efa; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_MESH (efa, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2015-10-10 23:47:41 +11:00
										 |  |  | 			if (!BM_elem_flag_test(efa, BM_ELEM_HIDDEN) && BLI_rng_get_float(rng) < randfac) { | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 				BM_face_select_set(em->bm, efa, select); | 
					
						
							| 
									
										
										
										
											2011-12-21 03:33:32 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-10 23:47:41 +11:00
										 |  |  | 	BLI_rng_free(rng); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 	if (select) { | 
					
						
							| 
									
										
										
										
											2014-02-21 08:51:30 +11:00
										 |  |  | 		/* was EDBM_select_flush, but it over select in edge/face mode */ | 
					
						
							|  |  |  | 		EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2014-01-13 20:36:38 +11:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		EDBM_deselect_flush(em); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_random(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Random"; | 
					
						
							|  |  |  | 	ot->description = "Randomly select vertices"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_random"; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_select_random_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* props */ | 
					
						
							| 
									
										
										
										
											2015-10-10 23:47:41 +11:00
										 |  |  | 	WM_operator_properties_select_random(ot); | 
					
						
							| 
									
										
										
										
											2013-03-16 16:11:50 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-01 06:07:26 +00:00
										 |  |  | static int edbm_select_ungrouped_poll(bContext *C) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (ED_operator_editmesh(C)) { | 
					
						
							|  |  |  | 		Object *obedit = CTX_data_edit_object(C); | 
					
						
							|  |  |  | 		BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-05-27 12:42:48 +00:00
										 |  |  | 		const int cd_dvert_offset = CustomData_get_offset(&em->bm->vdata, CD_MDEFORMVERT); | 
					
						
							| 
									
										
										
										
											2013-05-01 06:07:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if ((em->selectmode & SCE_SELECT_VERTEX) == 0) { | 
					
						
							|  |  |  | 			CTX_wm_operator_poll_msg_set(C, "Must be in vertex selection mode"); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-08 06:07:10 +11:00
										 |  |  | 		else if (BLI_listbase_is_empty(&obedit->defbase) || cd_dvert_offset == -1) { | 
					
						
							| 
									
										
										
										
											2013-05-01 06:07:26 +00:00
										 |  |  | 			CTX_wm_operator_poll_msg_set(C, "No weights/vertex groups on object"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-16 16:11:50 +00:00
										 |  |  | static int edbm_select_ungrouped_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-05-27 12:42:48 +00:00
										 |  |  | 	const int cd_dvert_offset = CustomData_get_offset(&em->bm->vdata, CD_MDEFORMVERT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-16 16:11:50 +00:00
										 |  |  | 	BMVert *eve; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!RNA_boolean_get(op->ptr, "extend")) { | 
					
						
							|  |  |  | 		EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BM_ITER_MESH (eve, &iter, em->bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 		if (!BM_elem_flag_test(eve, BM_ELEM_HIDDEN)) { | 
					
						
							| 
									
										
										
										
											2013-05-27 12:42:48 +00:00
										 |  |  | 			MDeformVert *dv = BM_ELEM_CD_GET_VOID_P(eve, cd_dvert_offset); | 
					
						
							| 
									
										
										
										
											2013-03-16 16:11:50 +00:00
										 |  |  | 			/* no dv or dv set with no weight */ | 
					
						
							| 
									
										
										
										
											2013-05-01 05:59:58 +00:00
										 |  |  | 			if (ELEM(NULL, dv, dv->dw)) { | 
					
						
							| 
									
										
										
										
											2013-03-16 16:11:50 +00:00
										 |  |  | 				BM_vert_select_set(em->bm, eve, true); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-01 05:59:58 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							| 
									
										
										
										
											2013-03-16 16:11:50 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_ungrouped(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Ungrouped"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_ungrouped"; | 
					
						
							|  |  |  | 	ot->description = "Select vertices without a group"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = edbm_select_ungrouped_exec; | 
					
						
							| 
									
										
										
										
											2013-05-01 06:07:26 +00:00
										 |  |  | 	ot->poll = edbm_select_ungrouped_poll; | 
					
						
							| 
									
										
										
										
											2013-03-16 16:11:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "extend", false, "Extend", "Extend the selection"); | 
					
						
							| 
									
										
										
										
											2010-03-04 01:07:26 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-03-27 02:56:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* BMESH_TODO - some way to select on an arbitrary axis */ | 
					
						
							|  |  |  | static int edbm_select_axis_exec(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 	BMesh *bm = em->bm; | 
					
						
							|  |  |  | 	BMVert *v_act = BM_mesh_active_vert_get(bm); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 	const int axis = RNA_enum_get(op->ptr, "axis"); | 
					
						
							|  |  |  | 	const int mode = RNA_enum_get(op->ptr, "mode"); /* -1 == aligned, 0 == neg, 1 == pos */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 	if (v_act == NULL) { | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		BKE_report(op->reports, RPT_WARNING, "This operator requires an active vertex (last selected)"); | 
					
						
							|  |  |  | 		return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 		BMVert *v; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 		BMIter iter; | 
					
						
							| 
									
										
										
										
											2015-06-07 02:09:41 +10:00
										 |  |  | 		const float limit = RNA_float_get(op->ptr, "threshold"); | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 		float value = v_act->co[axis]; | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (mode == 0) | 
					
						
							|  |  |  | 			value -= limit; | 
					
						
							|  |  |  | 		else if (mode == 1) | 
					
						
							|  |  |  | 			value += limit; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 		BM_ITER_MESH (v, &iter, bm, BM_VERTS_OF_MESH) { | 
					
						
							|  |  |  | 			if (!BM_elem_flag_test(v, BM_ELEM_HIDDEN)) { | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 				switch (mode) { | 
					
						
							|  |  |  | 					case -1: /* aligned */ | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 						if (fabsf(v->co[axis] - value) < limit) | 
					
						
							|  |  |  | 							BM_vert_select_set(bm, v, true); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 						break; | 
					
						
							|  |  |  | 					case 0: /* neg */ | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 						if (v->co[axis] > value) | 
					
						
							|  |  |  | 							BM_vert_select_set(bm, v, true); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 						break; | 
					
						
							|  |  |  | 					case 1: /* pos */ | 
					
						
							| 
									
										
										
										
											2013-06-24 04:51:56 +00:00
										 |  |  | 						if (v->co[axis] < value) | 
					
						
							|  |  |  | 							BM_vert_select_set(bm, v, true); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 						break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_DATA, obedit->data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_select_axis(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static EnumPropertyItem axis_mode_items[] = { | 
					
						
							|  |  |  | 		{0,  "POSITIVE", 0, "Positive Axis", ""}, | 
					
						
							|  |  |  | 		{1,  "NEGATIVE", 0, "Negative Axis", ""}, | 
					
						
							|  |  |  | 		{-1, "ALIGNED",  0, "Aligned Axis", ""}, | 
					
						
							|  |  |  | 		{0, NULL, 0, NULL, NULL} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static EnumPropertyItem axis_items_xyz[] = { | 
					
						
							|  |  |  | 		{0, "X_AXIS", 0, "X Axis", ""}, | 
					
						
							|  |  |  | 		{1, "Y_AXIS", 0, "Y Axis", ""}, | 
					
						
							|  |  |  | 		{2, "Z_AXIS", 0, "Z Axis", ""}, | 
					
						
							|  |  |  | 		{0, NULL, 0, NULL, NULL} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							|  |  |  | 	ot->name = "Select Axis"; | 
					
						
							|  |  |  | 	ot->description = "Select all data in the mesh on a single axis"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_select_axis"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							|  |  |  | 	ot->exec = edbm_select_axis_exec; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							|  |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* properties */ | 
					
						
							|  |  |  | 	RNA_def_enum(ot->srna, "mode", axis_mode_items, 0, "Axis Mode", "Axis side to use when selecting"); | 
					
						
							|  |  |  | 	RNA_def_enum(ot->srna, "axis", axis_items_xyz, 0, "Axis", "Select the axis to compare each vertex on"); | 
					
						
							| 
									
										
										
										
											2015-06-21 21:56:35 +02:00
										 |  |  | 	RNA_def_float(ot->srna, "threshold", 0.0001f, 0.000001f, 50.0f,  "Threshold", "", 0.00001f, 10.0f); | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_region_to_loop_exec(bContext *C, wmOperator *UNUSED(op)) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	BMFace *f; | 
					
						
							|  |  |  | 	BMEdge *e; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	BM_mesh_elem_hflag_disable_all(em->bm, BM_EDGE, BM_ELEM_TAG, false); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_MESH (f, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 		BMLoop *l1, *l2; | 
					
						
							|  |  |  | 		BMIter liter1, liter2; | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_ELEM (l1, &liter1, f, BM_LOOPS_OF_FACE) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			int tot = 0, totsel = 0; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 			BM_ITER_ELEM (l2, &liter2, l1->e, BM_LOOPS_OF_EDGE) { | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 				tot++; | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 				totsel += BM_elem_flag_test(l2->f, BM_ELEM_SELECT) != 0; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			if ((tot != totsel && totsel > 0) || (totsel == 1 && tot == 1)) | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 				BM_elem_flag_enable(l1->e, BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 	EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-04-19 16:57:50 +00:00
										 |  |  | 		if (BM_elem_flag_test(e, BM_ELEM_TAG)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			BM_edge_select_set(em->bm, e, true); | 
					
						
							| 
									
										
										
										
											2012-04-19 16:57:50 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-10-15 14:47:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* If in face-only select mode, switch to edge select mode so that
 | 
					
						
							| 
									
										
										
										
											2012-03-03 16:31:46 +00:00
										 |  |  | 	 * an edge-only selection is not inconsistent state */ | 
					
						
							| 
									
										
										
										
											2011-10-15 14:47:37 +00:00
										 |  |  | 	if (em->selectmode == SCE_SELECT_FACE) { | 
					
						
							|  |  |  | 		em->selectmode = SCE_SELECT_EDGE; | 
					
						
							|  |  |  | 		EDBM_selectmode_set(em); | 
					
						
							|  |  |  | 		EDBM_selectmode_to_scene(C); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							| 
									
										
										
										
											2011-10-15 14:47:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_region_to_loop(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Boundary Loop"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_region_to_loop"; | 
					
						
							| 
									
										
										
										
											2012-04-15 10:07:57 +00:00
										 |  |  | 	ot->description = "Select boundary edges around the selected faces"; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_region_to_loop_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 14:38:09 +00:00
										 |  |  | static int loop_find_region(BMLoop *l, int flag, | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  |                             GSet *visit_face_set, BMFace ***region_out) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 	BMFace **region = NULL; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	BMFace **stack = NULL; | 
					
						
							| 
									
										
										
										
											2013-07-28 09:05:27 +00:00
										 |  |  | 	BLI_array_declare(region); | 
					
						
							|  |  |  | 	BLI_array_declare(stack); | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	BLI_array_append(stack, l->f); | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  | 	BLI_gset_insert(visit_face_set, l->f); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	while (BLI_array_count(stack) > 0) { | 
					
						
							|  |  |  | 		BMIter liter1, liter2; | 
					
						
							|  |  |  | 		BMLoop *l1, *l2; | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		f = BLI_array_pop(stack); | 
					
						
							|  |  |  | 		BLI_array_append(region, f); | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_ELEM (l1, &liter1, f, BM_LOOPS_OF_FACE) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 			if (BM_elem_flag_test(l1->e, flag)) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 			BM_ITER_ELEM (l2, &liter2, l1->e, BM_LOOPS_OF_EDGE) { | 
					
						
							| 
									
										
										
										
											2014-05-22 14:58:34 +10:00
										 |  |  | 				/* avoids finding same region twice
 | 
					
						
							|  |  |  | 				 * (otherwise) the logic works fine without */ | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(l2->f, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if (BLI_gset_add(visit_face_set, l2->f)) { | 
					
						
							|  |  |  | 					BLI_array_append(stack, l2->f); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	BLI_array_free(stack); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	*region_out = region; | 
					
						
							|  |  |  | 	return BLI_array_count(region); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-11 02:14:43 +00:00
										 |  |  | static int verg_radial(const void *va, const void *vb) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-01 23:26:03 +11:00
										 |  |  | 	const BMEdge *e_a = *((const BMEdge **)va); | 
					
						
							|  |  |  | 	const BMEdge *e_b = *((const BMEdge **)vb); | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	int a, b; | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	a = BM_edge_face_count(e_a); | 
					
						
							|  |  |  | 	b = BM_edge_face_count(e_b); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	if (a > b) return -1; | 
					
						
							|  |  |  | 	if (a < b) return  1; | 
					
						
							|  |  |  | 	return  0; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-22 14:58:34 +10:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * This function leaves faces tagged which are apart of the new region. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \note faces already tagged are ignored, to avoid finding the same regions twice: | 
					
						
							|  |  |  |  * important when we have regions with equal face counts, see: T40309 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | static int loop_find_regions(BMEditMesh *em, const bool selbigger) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  | 	GSet *visit_face_set; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	const int edges_len = em->bm->totedgesel; | 
					
						
							|  |  |  | 	BMEdge *e, **edges; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	int count = 0, i; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  | 	visit_face_set = BLI_gset_ptr_new_ex(__func__, edges_len); | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	edges = MEM_mallocN(sizeof(*edges) * edges_len, __func__); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	i = 0; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_MESH (e, &iter, em->bm, BM_EDGES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 		if (BM_elem_flag_test(e, BM_ELEM_SELECT)) { | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 			edges[i++] = e; | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 			BM_elem_flag_enable(e, BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2012-02-05 15:55:28 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 			BM_elem_flag_disable(e, BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* sort edges by radial cycle length */ | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	qsort(edges, edges_len, sizeof(*edges), verg_radial); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	for (i = 0; i < edges_len; i++) { | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 		BMIter liter; | 
					
						
							|  |  |  | 		BMLoop *l; | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 		BMFace **region = NULL, **region_out; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		int c, tot = 0; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		e = edges[i]; | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 		if (!BM_elem_flag_test(e, BM_ELEM_TAG)) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 		BM_ITER_ELEM (l, &liter, e, BM_LOOPS_OF_EDGE) { | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  | 			if (BLI_gset_haskey(visit_face_set, l->f)) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			c = loop_find_region(l, BM_ELEM_SELECT, visit_face_set, ®ion_out); | 
					
						
							| 
									
										
										
										
											2011-09-30 15:15:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 			if (!region || (selbigger ? c >= tot : c < tot)) { | 
					
						
							| 
									
										
										
										
											2011-09-30 15:15:57 +00:00
										 |  |  | 				/* this region is the best seen so far */ | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 				tot = c; | 
					
						
							| 
									
										
										
										
											2011-09-30 15:15:57 +00:00
										 |  |  | 				if (region) { | 
					
						
							|  |  |  | 					/* free the previous best */ | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 					MEM_freeN(region); | 
					
						
							| 
									
										
										
										
											2011-09-30 15:15:57 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				/* track the current region as the new best */ | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 				region = region_out; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-09-30 15:15:57 +00:00
										 |  |  | 			else { | 
					
						
							|  |  |  | 				/* this region is not as good as best so far, just free it */ | 
					
						
							| 
									
										
										
										
											2012-02-28 07:42:48 +00:00
										 |  |  | 				MEM_freeN(region_out); | 
					
						
							| 
									
										
										
										
											2011-09-30 15:15:57 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		if (region) { | 
					
						
							|  |  |  | 			int j; | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			for (j = 0; j < tot; j++) { | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 				BM_elem_flag_enable(region[j], BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 				BM_ITER_ELEM (l, &liter, region[j], BM_LOOPS_OF_FACE) { | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 					BM_elem_flag_disable(l->e, BM_ELEM_TAG); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			count += tot; | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			MEM_freeN(region); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-02-02 17:41:02 +11:00
										 |  |  | 	MEM_freeN(edges); | 
					
						
							| 
									
										
										
										
											2014-05-29 14:03:22 +10:00
										 |  |  | 	BLI_gset_free(visit_face_set, NULL); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	return count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | static int edbm_loop_to_region_exec(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	const bool select_bigger = RNA_boolean_get(op->ptr, "select_bigger"); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	int a, b; | 
					
						
							| 
									
										
										
										
											2011-10-15 14:47:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-22 14:58:34 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* find the set of regions with smallest number of total faces */ | 
					
						
							| 
									
										
										
										
											2014-05-22 14:58:34 +10:00
										 |  |  | 	BM_mesh_elem_hflag_disable_all(em->bm, BM_FACE, BM_ELEM_TAG, false); | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 	a = loop_find_regions(em, select_bigger); | 
					
						
							|  |  |  | 	b = loop_find_regions(em, !select_bigger); | 
					
						
							| 
									
										
										
										
											2014-05-22 14:58:34 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BM_mesh_elem_hflag_disable_all(em->bm, BM_FACE, BM_ELEM_TAG, false); | 
					
						
							|  |  |  | 	loop_find_regions(em, ((a <= b) != select_bigger) ? select_bigger : !select_bigger); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-02-12 18:43:59 +00:00
										 |  |  | 	EDBM_flag_disable_all(em, BM_ELEM_SELECT); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_MESH (f, &iter, em->bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 		if (BM_elem_flag_test(f, BM_ELEM_TAG) && !BM_elem_flag_test(f, BM_ELEM_HIDDEN)) { | 
					
						
							| 
									
										
										
										
											2013-03-24 12:13:13 +00:00
										 |  |  | 			BM_face_select_set(em->bm, f, true); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-06-27 05:19:25 +00:00
										 |  |  | 	EDBM_selectmode_flush(em); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data); | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	return OPERATOR_FINISHED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MESH_OT_loop_to_region(wmOperatorType *ot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* identifiers */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Select Loop Inner-Region"; | 
					
						
							|  |  |  | 	ot->idname = "MESH_OT_loop_to_region"; | 
					
						
							| 
									
										
										
										
											2012-04-15 10:07:57 +00:00
										 |  |  | 	ot->description = "Select region of faces inside of a selected loop of edges"; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* api callbacks */ | 
					
						
							| 
									
										
										
										
											2012-03-23 21:25:07 +00:00
										 |  |  | 	ot->exec = edbm_loop_to_region_exec; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->poll = ED_operator_editmesh; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; | 
					
						
							| 
									
										
										
										
											2011-05-01 20:43:54 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "select_bigger", 0, "Select Bigger", "Select bigger regions instead of smaller ones"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-04 01:23:51 +00:00
										 |  |  | /************************ Select Path Operator *************************/ |