2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2008-12-30 13:16:14 +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,
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation, Campbell Barton
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2011-02-27 20:29:51 +00:00
|
|
|
/** \file blender/editors/mesh/editface.c
|
|
|
|
* \ingroup edmesh
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
2011-05-09 04:06:48 +00:00
|
|
|
#include "BLI_utildefines.h"
|
2008-12-30 13:16:14 +00:00
|
|
|
#include "BLI_blenlib.h"
|
2009-11-10 20:43:45 +00:00
|
|
|
#include "BLI_math.h"
|
2008-12-30 13:16:14 +00:00
|
|
|
#include "BLI_edgehash.h"
|
|
|
|
#include "BLI_editVert.h"
|
|
|
|
|
|
|
|
#include "IMB_imbuf_types.h"
|
|
|
|
#include "IMB_imbuf.h"
|
|
|
|
|
|
|
|
#include "DNA_meshdata_types.h"
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
|
|
|
#include "BKE_DerivedMesh.h"
|
|
|
|
#include "BKE_global.h"
|
|
|
|
#include "BKE_mesh.h"
|
2009-11-01 00:06:53 +00:00
|
|
|
#include "BKE_context.h"
|
2010-01-28 00:45:30 +00:00
|
|
|
#include "BKE_tessmesh.h"
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
#include "BIF_gl.h"
|
|
|
|
|
|
|
|
#include "ED_mesh.h"
|
2009-11-01 00:06:53 +00:00
|
|
|
#include "ED_screen.h"
|
2009-01-05 15:19:31 +00:00
|
|
|
#include "ED_view3d.h"
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
|
|
/* own include */
|
2009-01-01 13:15:35 +00:00
|
|
|
#include "mesh_intern.h"
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2009-10-22 23:22:05 +00:00
|
|
|
/* copy the face flags, most importantly selection from the mesh to the final derived mesh,
|
|
|
|
* use in object mode when selecting faces (while painting) */
|
2011-10-14 09:05:20 +00:00
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
void paintface_flush_flags(Object *ob)
|
2009-10-22 23:22:05 +00:00
|
|
|
{
|
2011-10-14 09:05:20 +00:00
|
|
|
Mesh *me = get_mesh(ob);
|
|
|
|
DerivedMesh *dm = ob->derivedFinal;
|
|
|
|
MPoly *polys, *mp_orig;
|
2011-10-25 16:17:26 +00:00
|
|
|
MFace *faces;
|
2011-10-14 09:05:20 +00:00
|
|
|
int *index_array = NULL;
|
|
|
|
int totface, totpoly;
|
2011-07-25 10:51:24 +00:00
|
|
|
int i;
|
2009-10-22 23:22:05 +00:00
|
|
|
|
2011-10-14 09:05:20 +00:00
|
|
|
if (me==NULL || dm==NULL) {
|
2009-11-25 13:11:44 +00:00
|
|
|
return;
|
2011-10-14 09:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-11-13 15:13:59 +00:00
|
|
|
* Try to push updated mesh poly flags to three other data sets:
|
2011-10-14 09:05:20 +00:00
|
|
|
* - Mesh polys => Mesh tess faces
|
2011-11-13 15:13:59 +00:00
|
|
|
* - Mesh polys => Final derived polys
|
|
|
|
* - Final derived polys => Final derived tessfaces
|
2011-10-14 09:05:20 +00:00
|
|
|
*/
|
|
|
|
|
2011-11-13 15:13:59 +00:00
|
|
|
if ((index_array = CustomData_get_layer(&me->fdata, CD_POLYINDEX))) {
|
2011-10-14 09:05:20 +00:00
|
|
|
faces = me->mface;
|
|
|
|
totface = me->totface;
|
|
|
|
|
|
|
|
/* loop over tessfaces */
|
|
|
|
for (i= 0; i<totface; i++) {
|
2011-11-13 15:13:59 +00:00
|
|
|
/* Copy flags onto the original tessface from its original poly */
|
2011-10-14 09:05:20 +00:00
|
|
|
mp_orig = me->mpoly + index_array[i];
|
|
|
|
faces[i].flag = mp_orig->flag;
|
|
|
|
}
|
|
|
|
}
|
2009-11-25 13:11:44 +00:00
|
|
|
|
2011-10-17 03:06:20 +00:00
|
|
|
if ((index_array = CustomData_get_layer(&dm->polyData, CD_ORIGINDEX))) {
|
2011-10-14 09:05:20 +00:00
|
|
|
polys = dm->getPolyArray(dm);
|
|
|
|
totpoly = dm->getNumFaces(dm);
|
2009-11-25 13:11:44 +00:00
|
|
|
|
2011-10-14 09:05:20 +00:00
|
|
|
/* loop over final derived polys */
|
|
|
|
for (i= 0; i<totpoly; i++) {
|
2011-11-13 15:13:59 +00:00
|
|
|
/* Copy flags onto the final derived poly from the original mesh poly */
|
2011-10-14 09:05:20 +00:00
|
|
|
mp_orig = me->mpoly + index_array[i];
|
|
|
|
polys[i].flag = mp_orig->flag;
|
|
|
|
}
|
2009-10-22 23:22:05 +00:00
|
|
|
}
|
2011-11-13 15:13:59 +00:00
|
|
|
|
|
|
|
if ((index_array = CustomData_get_layer(&dm->faceData, CD_POLYINDEX))) {
|
|
|
|
polys = dm->getPolyArray(dm);
|
|
|
|
faces = dm->getTessFaceArray(dm);;
|
|
|
|
totface = dm->getNumTessFaces(dm);
|
|
|
|
|
|
|
|
/* loop over tessfaces */
|
|
|
|
for (i= 0; i<totface; i++) {
|
|
|
|
/* Copy flags onto the final tessface from its final poly */
|
|
|
|
mp_orig = polys + index_array[i];
|
|
|
|
faces[i].flag = mp_orig->flag;
|
|
|
|
}
|
|
|
|
}
|
2009-10-22 23:22:05 +00:00
|
|
|
}
|
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
/* returns 0 if not found, otherwise 1 */
|
2011-05-13 04:04:53 +00:00
|
|
|
static int facesel_face_pick(struct bContext *C, Mesh *me, Object *ob, const int mval[2], unsigned int *index, short rect)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
2010-01-28 00:45:30 +00:00
|
|
|
Scene *scene = CTX_data_scene(C);
|
2009-11-01 00:06:53 +00:00
|
|
|
ViewContext vc;
|
|
|
|
view3d_set_viewcontext(C, &vc);
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
if (!me || me->totpoly==0)
|
2008-12-30 13:16:14 +00:00
|
|
|
return 0;
|
|
|
|
|
2011-04-15 05:20:18 +00:00
|
|
|
makeDerivedMesh(scene, ob, NULL, CD_MASK_BAREMESH, 0);
|
2010-01-28 00:45:30 +00:00
|
|
|
|
|
|
|
// XXX if (v3d->flag & V3D_INVALID_BACKBUF) {
|
2008-12-30 13:16:14 +00:00
|
|
|
// XXX drawview.c! check_backbuf();
|
|
|
|
// XXX persp(PERSP_VIEW);
|
2009-11-01 00:06:53 +00:00
|
|
|
// XXX }
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
if (rect) {
|
|
|
|
/* sample rect to increase changes of selecting, so that when clicking
|
|
|
|
on an edge in the backbuf, we can still select a face */
|
2009-11-01 00:06:53 +00:00
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
int dist;
|
2009-11-01 00:06:53 +00:00
|
|
|
*index = view3d_sample_backbuf_rect(&vc, mval, 3, 1, me->totface+1, &dist,0,NULL, NULL);
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2009-11-01 00:06:53 +00:00
|
|
|
else {
|
2008-12-30 13:16:14 +00:00
|
|
|
/* sample only on the exact position */
|
2009-11-01 00:06:53 +00:00
|
|
|
*index = view3d_sample_backbuf(&vc, mval[0], mval[1]);
|
|
|
|
}
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
if ((*index)<=0 || (*index)>(unsigned int)me->totpoly)
|
2008-12-30 13:16:14 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
(*index)--;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* last_sel, use em->act_face otherwise get the last selected face in the editselections
|
|
|
|
* at the moment, last_sel is mainly useful for gaking sure the space image dosnt flicker */
|
2011-05-11 02:14:43 +00:00
|
|
|
static MTexPoly *EDBM_get_active_mtface(BMEditMesh *em, BMFace **act_efa, int sloppy)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
2010-01-28 00:45:30 +00:00
|
|
|
BMFace *efa = NULL;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
if(!EDBM_texFaceCheck(em))
|
2008-12-30 13:16:14 +00:00
|
|
|
return NULL;
|
|
|
|
|
2011-09-13 13:41:20 +00:00
|
|
|
efa = BM_get_actFace(em->bm, sloppy);
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
if (efa) {
|
|
|
|
if (act_efa) *act_efa = efa;
|
2010-01-28 00:45:30 +00:00
|
|
|
return CustomData_bmesh_get(&em->bm->pdata, efa->head.data, CD_MTEXPOLY);
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2010-01-28 00:45:30 +00:00
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
if (act_efa) *act_efa= NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-24 16:04:36 +00:00
|
|
|
void paintface_hide(Object *ob, const int unselected)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mface;
|
2008-12-30 13:16:14 +00:00
|
|
|
int a;
|
|
|
|
|
2011-02-24 16:04:36 +00:00
|
|
|
me= get_mesh(ob);
|
2011-04-15 01:19:13 +00:00
|
|
|
if(me==NULL || me->totpoly==0) return;
|
2011-02-24 16:04:36 +00:00
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
mface= me->mpoly;
|
|
|
|
a= me->totpoly;
|
2008-12-30 13:16:14 +00:00
|
|
|
while(a--) {
|
2011-02-24 16:04:36 +00:00
|
|
|
if((mface->flag & ME_HIDE) == 0) {
|
|
|
|
if(unselected) {
|
|
|
|
if( (mface->flag & ME_FACE_SEL)==0) mface->flag |= ME_HIDE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( (mface->flag & ME_FACE_SEL)) mface->flag |= ME_HIDE;
|
|
|
|
}
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2011-02-24 16:04:36 +00:00
|
|
|
if(mface->flag & ME_HIDE) mface->flag &= ~ME_FACE_SEL;
|
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
mface++;
|
|
|
|
}
|
2011-02-24 16:04:36 +00:00
|
|
|
|
|
|
|
paintface_flush_flags(ob);
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
2011-02-24 16:04:36 +00:00
|
|
|
|
|
|
|
void paintface_reveal(Object *ob)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mface;
|
2008-12-30 13:16:14 +00:00
|
|
|
int a;
|
2011-02-24 16:04:36 +00:00
|
|
|
|
|
|
|
me= get_mesh(ob);
|
2011-04-15 01:19:13 +00:00
|
|
|
if(me==NULL || me->totpoly==0) return;
|
2011-02-24 16:04:36 +00:00
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
mface= me->mpoly;
|
|
|
|
a= me->totpoly;
|
2008-12-30 13:16:14 +00:00
|
|
|
while(a--) {
|
2011-02-24 16:04:36 +00:00
|
|
|
if(mface->flag & ME_HIDE) {
|
|
|
|
mface->flag |= ME_FACE_SEL;
|
|
|
|
mface->flag -= ME_HIDE;
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
mface++;
|
|
|
|
}
|
2011-02-24 16:04:36 +00:00
|
|
|
|
|
|
|
paintface_flush_flags(ob);
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
2009-11-01 00:06:53 +00:00
|
|
|
/* Set tface seams based on edge data, uses hash table to find seam edges. */
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
static void hash_add_face(EdgeHash *ehash, MPoly *mf, MLoop *mloop)
|
2009-11-01 00:06:53 +00:00
|
|
|
{
|
2010-01-28 00:45:30 +00:00
|
|
|
MLoop *ml, *ml2;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0, ml=mloop; i<mf->totloop; i++, ml++) {
|
|
|
|
ml2 = mloop + (i+1) % mf->totloop;
|
|
|
|
BLI_edgehash_insert(ehash, ml->v, ml2->v, NULL);
|
|
|
|
}
|
2009-11-01 00:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
static void select_linked_tfaces_with_seams(int mode, Mesh *me, unsigned int index)
|
2009-11-01 00:06:53 +00:00
|
|
|
{
|
|
|
|
EdgeHash *ehash, *seamhash;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mf;
|
|
|
|
MLoop *ml;
|
2009-11-01 00:06:53 +00:00
|
|
|
MEdge *med;
|
2010-01-28 00:45:30 +00:00
|
|
|
char *linkflag;
|
|
|
|
int a, b, doit=1, mark=0;
|
2009-11-01 00:06:53 +00:00
|
|
|
|
|
|
|
ehash= BLI_edgehash_new();
|
|
|
|
seamhash = BLI_edgehash_new();
|
2010-01-28 00:45:30 +00:00
|
|
|
linkflag= MEM_callocN(sizeof(char)*me->totpoly, "linkflaguv");
|
2009-11-01 00:06:53 +00:00
|
|
|
|
|
|
|
for(med=me->medge, a=0; a < me->totedge; a++, med++)
|
|
|
|
if(med->flag & ME_SEAM)
|
|
|
|
BLI_edgehash_insert(seamhash, med->v1, med->v2, NULL);
|
|
|
|
|
|
|
|
if (mode==0 || mode==1) {
|
|
|
|
/* only put face under cursor in array */
|
2010-01-28 00:45:30 +00:00
|
|
|
mf= ((MPoly*)me->mpoly) + index;
|
|
|
|
hash_add_face(ehash, mf, me->mloop + mf->loopstart);
|
2009-11-01 00:06:53 +00:00
|
|
|
linkflag[index]= 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* fill array by selection */
|
2010-01-28 00:45:30 +00:00
|
|
|
mf= me->mpoly;
|
|
|
|
for(a=0; a<me->totpoly; a++, mf++) {
|
2009-11-01 00:06:53 +00:00
|
|
|
if(mf->flag & ME_HIDE);
|
|
|
|
else if(mf->flag & ME_FACE_SEL) {
|
2010-01-28 00:45:30 +00:00
|
|
|
hash_add_face(ehash, mf, me->mloop + mf->loopstart);
|
2009-11-01 00:06:53 +00:00
|
|
|
linkflag[a]= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while(doit) {
|
|
|
|
doit= 0;
|
|
|
|
|
|
|
|
/* expand selection */
|
2010-01-28 00:45:30 +00:00
|
|
|
mf= me->mpoly;
|
|
|
|
for(a=0; a<me->totpoly; a++, mf++) {
|
2009-11-01 00:06:53 +00:00
|
|
|
if(mf->flag & ME_HIDE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(!linkflag[a]) {
|
2010-01-28 00:45:30 +00:00
|
|
|
MLoop *mnextl;
|
2009-11-01 00:06:53 +00:00
|
|
|
mark= 0;
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
ml = me->mloop + mf->loopstart;
|
|
|
|
for (b=0; b<mf->totloop; b++, ml++) {
|
|
|
|
mnextl = b < mf->totloop-1 ? ml - 1 : me->mloop + mf->loopstart;
|
|
|
|
if (!BLI_edgehash_haskey(seamhash, ml->v, mnextl->v))
|
|
|
|
if (!BLI_edgehash_haskey(ehash, ml->v, mnextl->v))
|
|
|
|
mark = 1;
|
2009-11-01 00:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(mark) {
|
|
|
|
linkflag[a]= 1;
|
2010-01-28 00:45:30 +00:00
|
|
|
hash_add_face(ehash, mf, me->mloop + mf->loopstart);
|
2009-11-01 00:06:53 +00:00
|
|
|
doit= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
BLI_edgehash_free(ehash, NULL);
|
|
|
|
BLI_edgehash_free(seamhash, NULL);
|
|
|
|
|
|
|
|
if(mode==0 || mode==2) {
|
2010-01-28 00:45:30 +00:00
|
|
|
for(a=0, mf=me->mpoly; a<me->totpoly; a++, mf++)
|
2009-11-01 00:06:53 +00:00
|
|
|
if(linkflag[a])
|
|
|
|
mf->flag |= ME_FACE_SEL;
|
|
|
|
else
|
|
|
|
mf->flag &= ~ME_FACE_SEL;
|
|
|
|
}
|
|
|
|
else if(mode==1) {
|
2010-01-28 00:45:30 +00:00
|
|
|
for(a=0, mf=me->mpoly; a<me->totpoly; a++, mf++)
|
2009-11-01 00:06:53 +00:00
|
|
|
if(linkflag[a] && (mf->flag & ME_FACE_SEL))
|
|
|
|
break;
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
if (a<me->totpoly) {
|
|
|
|
for(a=0, mf=me->mpoly; a<me->totpoly; a++, mf++)
|
2009-11-01 00:06:53 +00:00
|
|
|
if(linkflag[a])
|
|
|
|
mf->flag &= ~ME_FACE_SEL;
|
|
|
|
}
|
|
|
|
else {
|
2010-03-11 19:14:35 +00:00
|
|
|
for(a=0, mf=me->mpoly; a<me->totpoly; a++, mf++)
|
2009-11-01 00:06:53 +00:00
|
|
|
if(linkflag[a])
|
|
|
|
mf->flag |= ME_FACE_SEL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MEM_freeN(linkflag);
|
|
|
|
}
|
|
|
|
|
2011-05-12 16:47:36 +00:00
|
|
|
void paintface_select_linked(bContext *UNUSED(C), Object *ob, int UNUSED(mval[2]), int mode)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
|
|
|
Mesh *me;
|
|
|
|
unsigned int index=0;
|
|
|
|
|
|
|
|
me = get_mesh(ob);
|
2011-04-15 01:19:13 +00:00
|
|
|
if(me==NULL || me->totpoly==0) return;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
if (mode==0 || mode==1) {
|
2009-11-01 00:06:53 +00:00
|
|
|
// XXX - Causes glitches, not sure why
|
|
|
|
/*
|
|
|
|
if (!facesel_face_pick(C, me, mval, &index, 1))
|
|
|
|
return;
|
|
|
|
*/
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
2009-11-01 00:06:53 +00:00
|
|
|
select_linked_tfaces_with_seams(mode, me, index);
|
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
paintface_flush_flags(ob);
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
2011-10-31 03:55:01 +00:00
|
|
|
void paintface_deselect_all_visible(Object *ob, int action, short flush_flags)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mface;
|
2009-11-29 22:16:29 +00:00
|
|
|
int a;
|
2009-11-01 00:06:53 +00:00
|
|
|
|
|
|
|
me= get_mesh(ob);
|
2011-03-03 17:59:04 +00:00
|
|
|
if(me==NULL) return;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2011-02-24 16:04:36 +00:00
|
|
|
if(action == SEL_INVERT) {
|
2010-01-28 00:45:30 +00:00
|
|
|
mface= me->mpoly;
|
|
|
|
a= me->totpoly;
|
2009-11-29 22:16:29 +00:00
|
|
|
while(a--) {
|
2011-02-24 16:04:36 +00:00
|
|
|
if((mface->flag & ME_HIDE) == 0) {
|
|
|
|
mface->flag ^= ME_FACE_SEL;
|
2009-11-29 22:16:29 +00:00
|
|
|
}
|
|
|
|
mface++;
|
2009-10-22 23:22:05 +00:00
|
|
|
}
|
2011-10-31 03:55:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2011-02-24 16:04:36 +00:00
|
|
|
if (action == SEL_TOGGLE) {
|
|
|
|
action = SEL_SELECT;
|
|
|
|
|
2011-02-27 06:19:40 +00:00
|
|
|
mface= me->mpoly;
|
|
|
|
a= me->totpoly;
|
2011-02-24 16:04:36 +00:00
|
|
|
while(a--) {
|
|
|
|
if((mface->flag & ME_HIDE) == 0 && mface->flag & ME_FACE_SEL) {
|
|
|
|
action = SEL_DESELECT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mface++;
|
2009-11-29 22:16:29 +00:00
|
|
|
}
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2011-10-31 03:55:01 +00:00
|
|
|
|
|
|
|
mface= me->mpoly;
|
|
|
|
a= me->totpoly;
|
|
|
|
while(a--) {
|
|
|
|
if((mface->flag & ME_HIDE) == 0) {
|
|
|
|
switch (action) {
|
|
|
|
case SEL_SELECT:
|
|
|
|
mface->flag |= ME_FACE_SEL;
|
|
|
|
break;
|
|
|
|
case SEL_DESELECT:
|
|
|
|
mface->flag &= ~ME_FACE_SEL;
|
|
|
|
break;
|
|
|
|
case SEL_INVERT:
|
|
|
|
mface->flag ^= ME_FACE_SEL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mface++;
|
|
|
|
}
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
2011-10-31 03:55:01 +00:00
|
|
|
if(flush_flags) {
|
|
|
|
paintface_flush_flags(ob);
|
|
|
|
}
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
2011-05-11 02:14:43 +00:00
|
|
|
static void selectswap_tface(Scene *scene)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mface;
|
2008-12-30 13:16:14 +00:00
|
|
|
int a;
|
|
|
|
|
|
|
|
me= get_mesh(OBACT);
|
|
|
|
if(me==0) return;
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
mface= me->mpoly;
|
|
|
|
a= me->totpoly;
|
2008-12-30 13:16:14 +00:00
|
|
|
while(a--) {
|
|
|
|
if(mface->flag & ME_HIDE);
|
|
|
|
else {
|
|
|
|
if(mface->flag & ME_FACE_SEL) mface->flag &= ~ME_FACE_SEL;
|
|
|
|
else mface->flag |= ME_FACE_SEL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
int paintface_minmax(Object *ob, float *min, float *max)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mf;
|
|
|
|
MTexPoly *tf;
|
|
|
|
MLoop *ml;
|
2011-11-07 09:02:10 +00:00
|
|
|
MVert *mvert;
|
2010-01-28 00:45:30 +00:00
|
|
|
int a, b, ok=0;
|
2008-12-30 13:16:14 +00:00
|
|
|
float vec[3], bmat[3][3];
|
2010-01-28 00:45:30 +00:00
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
me= get_mesh(ob);
|
2010-01-28 00:45:30 +00:00
|
|
|
if(!me || !me->mtpoly) return ok;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2009-11-10 20:43:45 +00:00
|
|
|
copy_m3_m4(bmat, ob->obmat);
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2011-11-07 09:02:10 +00:00
|
|
|
mvert= me->mvert;
|
2010-01-28 00:45:30 +00:00
|
|
|
mf= me->mpoly;
|
|
|
|
tf= me->mtpoly;
|
|
|
|
for (a=me->totpoly; a>0; a--, mf++, tf++) {
|
2008-12-30 13:16:14 +00:00
|
|
|
if (mf->flag & ME_HIDE || !(mf->flag & ME_FACE_SEL))
|
|
|
|
continue;
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
ml = me->mloop + mf->totloop;
|
|
|
|
for (b=0; b<mf->totloop; b++, ml++) {
|
2011-11-07 09:02:10 +00:00
|
|
|
copy_v3_v3(vec, (mvert[ml->v].co));
|
2009-11-10 20:43:45 +00:00
|
|
|
mul_m3_v3(bmat, vec);
|
|
|
|
add_v3_v3v3(vec, vec, ob->obmat[3]);
|
2010-01-28 00:45:30 +00:00
|
|
|
DO_MINMAX(vec, min, max);
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2010-01-28 00:45:30 +00:00
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
ok= 1;
|
|
|
|
}
|
2010-01-28 00:45:30 +00:00
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2009-01-31 13:30:56 +00:00
|
|
|
/* *************************************** */
|
2010-11-03 01:56:02 +00:00
|
|
|
#if 0
|
2010-01-28 00:45:30 +00:00
|
|
|
static void seam_edgehash_insert_face(EdgeHash *ehash, MPoly *mf, MLoop *loopstart)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
2010-01-28 00:45:30 +00:00
|
|
|
MLoop *ml1, *ml2;
|
|
|
|
int a;
|
|
|
|
|
|
|
|
for (a=0; a<mf->totloop; a++) {
|
|
|
|
ml1 = loopstart + a;
|
|
|
|
ml2 = loopstart + (a+1) % mf->totloop;
|
|
|
|
|
|
|
|
BLI_edgehash_insert(ehash, ml1->v, ml2->v, NULL);
|
|
|
|
}
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void seam_mark_clear_tface(Scene *scene, short mode)
|
|
|
|
{
|
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mf;
|
|
|
|
MLoop *ml1, *ml2;
|
2008-12-30 13:16:14 +00:00
|
|
|
MEdge *med;
|
2010-01-28 00:45:30 +00:00
|
|
|
int a, b;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
me= get_mesh(OBACT);
|
2010-01-28 00:45:30 +00:00
|
|
|
if(me==0 || me->totpoly==0) return;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
if (mode == 0)
|
|
|
|
mode = pupmenu("Seams%t|Mark Border Seam %x1|Clear Seam %x2");
|
|
|
|
|
|
|
|
if (mode != 1 && mode != 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (mode == 2) {
|
|
|
|
EdgeHash *ehash = BLI_edgehash_new();
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
for (a=0, mf=me->mpoly; a<me->totpoly; a++, mf++)
|
2008-12-30 13:16:14 +00:00
|
|
|
if (!(mf->flag & ME_HIDE) && (mf->flag & ME_FACE_SEL))
|
2010-01-28 00:45:30 +00:00
|
|
|
seam_edgehash_insert_face(ehash, mf, me->mloop + mf->loopstart);
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
for (a=0, med=me->medge; a<me->totedge; a++, med++)
|
|
|
|
if (BLI_edgehash_haskey(ehash, med->v1, med->v2))
|
|
|
|
med->flag &= ~ME_SEAM;
|
|
|
|
|
|
|
|
BLI_edgehash_free(ehash, NULL);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* mark edges that are on both selected and deselected faces */
|
|
|
|
EdgeHash *ehash1 = BLI_edgehash_new();
|
|
|
|
EdgeHash *ehash2 = BLI_edgehash_new();
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
for (a=0, mf=me->mpoly; a<me->totpoly; a++, mf++) {
|
2008-12-30 13:16:14 +00:00
|
|
|
if ((mf->flag & ME_HIDE) || !(mf->flag & ME_FACE_SEL))
|
2010-01-28 00:45:30 +00:00
|
|
|
seam_edgehash_insert_face(ehash1, mf, me->mloop + mf->loopstart);
|
2008-12-30 13:16:14 +00:00
|
|
|
else
|
2010-01-28 00:45:30 +00:00
|
|
|
seam_edgehash_insert_face(ehash2, mf, me->mloop + mf->loopstart);
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (a=0, med=me->medge; a<me->totedge; a++, med++)
|
|
|
|
if (BLI_edgehash_haskey(ehash1, med->v1, med->v2) &&
|
2010-03-22 09:30:00 +00:00
|
|
|
BLI_edgehash_haskey(ehash2, med->v1, med->v2))
|
2008-12-30 13:16:14 +00:00
|
|
|
med->flag |= ME_SEAM;
|
|
|
|
|
|
|
|
BLI_edgehash_free(ehash1, NULL);
|
|
|
|
BLI_edgehash_free(ehash2, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX if (G.rt == 8)
|
|
|
|
// unwrap_lscm(1);
|
|
|
|
|
2009-01-31 13:30:56 +00:00
|
|
|
me->drawflag |= ME_DRAWSEAMS;
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2010-11-03 01:56:02 +00:00
|
|
|
#endif
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2011-05-12 16:47:36 +00:00
|
|
|
int paintface_mouse_select(struct bContext *C, Object *ob, const int mval[2], int extend)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mface, *msel;
|
2008-12-30 13:16:14 +00:00
|
|
|
unsigned int a, index;
|
|
|
|
|
|
|
|
/* Get the face under the cursor */
|
|
|
|
me = get_mesh(ob);
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
if (!facesel_face_pick(C, me, ob, mval, &index, 1))
|
2009-11-01 00:06:53 +00:00
|
|
|
return 0;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
if (index >= me->totpoly || index < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
msel= me->mpoly + index;
|
2009-11-01 00:06:53 +00:00
|
|
|
if (msel->flag & ME_HIDE) return 0;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
/* clear flags */
|
2010-01-28 00:45:30 +00:00
|
|
|
mface = me->mpoly;
|
|
|
|
a = me->totpoly;
|
2009-11-01 00:06:53 +00:00
|
|
|
if (!extend) {
|
2008-12-30 13:16:14 +00:00
|
|
|
while (a--) {
|
|
|
|
mface->flag &= ~ME_FACE_SEL;
|
|
|
|
mface++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
me->act_face = (int)index;
|
|
|
|
|
2009-11-01 00:06:53 +00:00
|
|
|
if (extend) {
|
2008-12-30 13:16:14 +00:00
|
|
|
if (msel->flag & ME_FACE_SEL)
|
|
|
|
msel->flag &= ~ME_FACE_SEL;
|
|
|
|
else
|
|
|
|
msel->flag |= ME_FACE_SEL;
|
|
|
|
}
|
|
|
|
else msel->flag |= ME_FACE_SEL;
|
|
|
|
|
|
|
|
/* image window redraw */
|
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
paintface_flush_flags(ob);
|
2009-11-01 00:06:53 +00:00
|
|
|
WM_event_add_notifier(C, NC_GEOM|ND_SELECT, ob->data);
|
|
|
|
ED_region_tag_redraw(CTX_wm_region(C)); // XXX - should redraw all 3D views
|
|
|
|
return 1;
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
int do_paintface_box_select(ViewContext *vc, rcti *rect, int select, int extend)
|
2008-12-30 13:16:14 +00:00
|
|
|
{
|
2011-02-27 06:19:40 +00:00
|
|
|
Object *ob = vc->obact;
|
2008-12-30 13:16:14 +00:00
|
|
|
Mesh *me;
|
2010-01-28 00:45:30 +00:00
|
|
|
MPoly *mface;
|
2008-12-30 13:16:14 +00:00
|
|
|
struct ImBuf *ibuf;
|
|
|
|
unsigned int *rt;
|
|
|
|
char *selar;
|
2011-02-27 06:19:40 +00:00
|
|
|
int a, index;
|
2010-11-03 01:56:02 +00:00
|
|
|
int sx= rect->xmax-rect->xmin+1;
|
|
|
|
int sy= rect->ymax-rect->ymin+1;
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2009-11-01 00:06:53 +00:00
|
|
|
me= get_mesh(ob);
|
2011-02-27 06:19:40 +00:00
|
|
|
if(me==0) return 0;
|
|
|
|
if(me->totpoly==0) return 0;
|
2010-11-03 01:56:02 +00:00
|
|
|
|
|
|
|
if(me==NULL || me->totface==0 || sx*sy <= 0)
|
|
|
|
return OPERATOR_CANCELLED;
|
2009-11-01 00:06:53 +00:00
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
selar= MEM_callocN(me->totpoly+1, "selar");
|
2009-11-01 00:06:53 +00:00
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
if (extend == 0 && select)
|
|
|
|
paintface_deselect_all_visible(vc->obact, SEL_DESELECT, FALSE);
|
2009-11-01 00:06:53 +00:00
|
|
|
|
2009-11-29 22:16:29 +00:00
|
|
|
if (extend == 0 && select) {
|
2010-01-28 00:45:30 +00:00
|
|
|
mface= me->mpoly;
|
|
|
|
for(a=1; a<=me->totpoly; a++, mface++) {
|
2009-11-29 22:16:29 +00:00
|
|
|
if((mface->flag & ME_HIDE) == 0)
|
|
|
|
mface->flag &= ~ME_FACE_SEL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-03 01:56:02 +00:00
|
|
|
view3d_validate_backbuf(vc);
|
2009-11-01 00:06:53 +00:00
|
|
|
|
2010-10-16 14:32:17 +00:00
|
|
|
ibuf = IMB_allocImBuf(sx,sy,32,IB_rect);
|
2009-11-01 00:06:53 +00:00
|
|
|
rt = ibuf->rect;
|
2010-11-03 01:56:02 +00:00
|
|
|
glReadPixels(rect->xmin+vc->ar->winrct.xmin, rect->ymin+vc->ar->winrct.ymin, sx, sy, GL_RGBA, GL_UNSIGNED_BYTE, ibuf->rect);
|
2009-11-01 00:06:53 +00:00
|
|
|
if(ENDIAN_ORDER==B_ENDIAN) IMB_convert_rgba_to_abgr(ibuf);
|
|
|
|
|
|
|
|
a= sx*sy;
|
|
|
|
while(a--) {
|
|
|
|
if(*rt) {
|
|
|
|
index= WM_framebuffer_to_index(*rt);
|
|
|
|
if(index<=me->totface) selar[index]= 1;
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2009-11-01 00:06:53 +00:00
|
|
|
rt++;
|
|
|
|
}
|
|
|
|
|
2010-01-28 00:45:30 +00:00
|
|
|
mface= me->mpoly;
|
|
|
|
for(a=1; a<=me->totpoly; a++, mface++) {
|
2009-11-01 00:06:53 +00:00
|
|
|
if(selar[a]) {
|
|
|
|
if(mface->flag & ME_HIDE);
|
|
|
|
else {
|
|
|
|
if(select) mface->flag |= ME_FACE_SEL;
|
|
|
|
else mface->flag &= ~ME_FACE_SEL;
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-01 00:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
IMB_freeImBuf(ibuf);
|
|
|
|
MEM_freeN(selar);
|
2008-12-30 13:16:14 +00:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
glReadBuffer(GL_BACK);
|
|
|
|
#endif
|
2010-11-03 01:56:02 +00:00
|
|
|
|
|
|
|
paintface_flush_flags(vc->obact);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
2008-12-30 13:16:14 +00:00
|
|
|
}
|
2011-09-22 16:09:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* (similar to void paintface_flush_flags(Object *ob))
|
|
|
|
* copy the vertex flags, most importantly selection from the mesh to the final derived mesh,
|
|
|
|
* use in object mode when selecting vertices (while painting) */
|
|
|
|
void paintvert_flush_flags(Object *ob)
|
|
|
|
{
|
|
|
|
Mesh *me= get_mesh(ob);
|
|
|
|
DerivedMesh *dm= ob->derivedFinal;
|
|
|
|
MVert *dm_mvert, *dm_mv;
|
|
|
|
int *index_array = NULL;
|
|
|
|
int totvert;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(me==NULL || dm==NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
index_array = dm->getVertDataArray(dm, CD_ORIGINDEX);
|
|
|
|
|
|
|
|
dm_mvert = dm->getVertArray(dm);
|
|
|
|
totvert = dm->getNumVerts(dm);
|
|
|
|
|
|
|
|
dm_mv= dm_mvert;
|
|
|
|
|
|
|
|
if(index_array) {
|
|
|
|
int orig_index;
|
|
|
|
for (i= 0; i<totvert; i++, dm_mv++) {
|
|
|
|
orig_index= index_array[i];
|
|
|
|
if(orig_index != ORIGINDEX_NONE) {
|
|
|
|
dm_mv->flag= me->mvert[index_array[i]].flag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (i= 0; i<totvert; i++, dm_mv++) {
|
|
|
|
dm_mv->flag= me->mvert[i].flag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* note: if the caller passes FALSE to flush_flags, then they will need to run paintvert_flush_flags(ob) themselves */
|
|
|
|
void paintvert_deselect_all_visible(Object *ob, int action, short flush_flags)
|
|
|
|
{
|
|
|
|
Mesh *me;
|
|
|
|
MVert *mvert;
|
|
|
|
int a;
|
|
|
|
|
|
|
|
me= get_mesh(ob);
|
|
|
|
if(me==NULL) return;
|
|
|
|
|
|
|
|
if(action == SEL_INVERT) {
|
|
|
|
mvert= me->mvert;
|
|
|
|
a= me->totvert;
|
|
|
|
while(a--) {
|
|
|
|
if((mvert->flag & ME_HIDE) == 0) {
|
|
|
|
mvert->flag ^= SELECT;
|
|
|
|
}
|
|
|
|
mvert++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (action == SEL_TOGGLE) {
|
|
|
|
action = SEL_SELECT;
|
|
|
|
|
|
|
|
mvert= me->mvert;
|
|
|
|
a= me->totvert;
|
|
|
|
while(a--) {
|
|
|
|
if((mvert->flag & ME_HIDE) == 0 && mvert->flag & SELECT) {
|
|
|
|
action = SEL_DESELECT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mvert++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mvert= me->mvert;
|
|
|
|
a= me->totvert;
|
|
|
|
while(a--) {
|
|
|
|
if((mvert->flag & ME_HIDE) == 0) {
|
|
|
|
switch (action) {
|
|
|
|
case SEL_SELECT:
|
|
|
|
mvert->flag |= SELECT;
|
|
|
|
break;
|
|
|
|
case SEL_DESELECT:
|
|
|
|
mvert->flag &= ~SELECT;
|
|
|
|
break;
|
|
|
|
case SEL_INVERT:
|
|
|
|
mvert->flag ^= SELECT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mvert++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(flush_flags) {
|
|
|
|
paintvert_flush_flags(ob);
|
|
|
|
}
|
|
|
|
}
|