2009-04-27 18:05:58 +00:00
|
|
|
/**
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* ***** 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, 2009
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
#include <math.h>
|
2009-04-27 18:05:58 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2009-05-21 15:34:09 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "DNA_curve_types.h"
|
|
|
|
#include "DNA_mesh_types.h"
|
|
|
|
#include "DNA_meshdata_types.h"
|
2009-04-27 18:05:58 +00:00
|
|
|
#include "DNA_modifier_types.h"
|
|
|
|
#include "DNA_object_types.h"
|
2009-07-02 19:41:31 +00:00
|
|
|
#include "DNA_object_force.h"
|
2009-04-27 18:05:58 +00:00
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
|
|
|
#include "BLI_listbase.h"
|
|
|
|
|
2009-05-21 15:34:09 +00:00
|
|
|
#include "BKE_curve.h"
|
2009-04-27 18:05:58 +00:00
|
|
|
#include "BKE_context.h"
|
|
|
|
#include "BKE_depsgraph.h"
|
2009-06-03 00:09:30 +00:00
|
|
|
#include "BKE_displist.h"
|
2009-05-21 15:34:09 +00:00
|
|
|
#include "BKE_DerivedMesh.h"
|
2009-07-02 19:41:31 +00:00
|
|
|
#include "BKE_effect.h"
|
2009-05-21 15:34:09 +00:00
|
|
|
#include "BKE_global.h"
|
2009-06-03 00:09:30 +00:00
|
|
|
#include "BKE_lattice.h"
|
2009-05-21 15:34:09 +00:00
|
|
|
#include "BKE_mesh.h"
|
2009-04-27 18:05:58 +00:00
|
|
|
#include "BKE_modifier.h"
|
2009-05-23 07:12:55 +00:00
|
|
|
#include "BKE_multires.h"
|
2009-05-21 15:34:09 +00:00
|
|
|
#include "BKE_report.h"
|
|
|
|
#include "BKE_object.h"
|
|
|
|
#include "BKE_particle.h"
|
2009-07-02 19:41:31 +00:00
|
|
|
#include "BKE_softbody.h"
|
2009-05-21 15:34:09 +00:00
|
|
|
#include "BKE_utildefines.h"
|
2009-04-27 18:05:58 +00:00
|
|
|
|
|
|
|
#include "RNA_access.h"
|
|
|
|
#include "RNA_define.h"
|
|
|
|
#include "RNA_enum_types.h"
|
|
|
|
|
|
|
|
#include "ED_screen.h"
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
|
|
#include "object_intern.h"
|
|
|
|
|
2009-05-21 15:34:09 +00:00
|
|
|
/******************************** API ****************************/
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
int ED_object_modifier_add(ReportList *reports, Scene *scene, Object *ob, int type)
|
|
|
|
{
|
|
|
|
ModifierData *md;
|
|
|
|
ModifierTypeInfo *mti = modifierType_getInfo(type);
|
|
|
|
|
|
|
|
if(mti->flags&eModifierTypeFlag_Single) {
|
|
|
|
if(modifiers_findByType(ob, type)) {
|
|
|
|
BKE_report(reports, RPT_WARNING, "Only one modifier of this type allowed.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-09 19:49:04 +00:00
|
|
|
if(type == eModifierType_ParticleSystem) {
|
|
|
|
object_add_particle_system(scene, ob);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(mti->flags&eModifierTypeFlag_RequiresOriginalData) {
|
|
|
|
md = ob->modifiers.first;
|
2009-07-02 19:41:31 +00:00
|
|
|
|
2009-07-09 19:49:04 +00:00
|
|
|
while(md && modifierType_getInfo(md->type)->type==eModifierTypeType_OnlyDeform)
|
|
|
|
md = md->next;
|
2009-07-02 19:41:31 +00:00
|
|
|
|
2009-07-09 19:49:04 +00:00
|
|
|
BLI_insertlinkbefore(&ob->modifiers, md, modifier_new(type));
|
2009-07-02 19:41:31 +00:00
|
|
|
}
|
2009-07-09 19:49:04 +00:00
|
|
|
else
|
|
|
|
BLI_addtail(&ob->modifiers, modifier_new(type));
|
|
|
|
|
|
|
|
/* special cases */
|
|
|
|
if(type == eModifierType_Softbody) {
|
|
|
|
if(!ob->soft) {
|
|
|
|
ob->soft= sbNew(scene);
|
|
|
|
ob->softflag |= OB_SB_GOAL|OB_SB_EDGES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(type == eModifierType_Collision) {
|
|
|
|
if(!ob->pd)
|
|
|
|
ob->pd= object_add_collision_fields();
|
2009-07-02 19:41:31 +00:00
|
|
|
|
2009-07-09 19:49:04 +00:00
|
|
|
ob->pd->deflect= 1;
|
|
|
|
DAG_scene_sort(scene);
|
|
|
|
}
|
|
|
|
else if(type == eModifierType_Surface)
|
|
|
|
DAG_scene_sort(scene);
|
2009-07-02 19:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ED_object_modifier_remove(ReportList *reports, Scene *scene, Object *ob, ModifierData *md)
|
2009-05-21 15:34:09 +00:00
|
|
|
{
|
|
|
|
ModifierData *obmd;
|
|
|
|
|
|
|
|
/* It seems on rapid delete it is possible to
|
|
|
|
* get called twice on same modifier, so make
|
|
|
|
* sure it is in list. */
|
2009-07-02 19:41:31 +00:00
|
|
|
for(obmd=ob->modifiers.first; obmd; obmd=obmd->next)
|
|
|
|
if(obmd==md)
|
2009-05-21 15:34:09 +00:00
|
|
|
break;
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
if(!obmd)
|
2009-05-21 15:34:09 +00:00
|
|
|
return 0;
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
/* special cases */
|
2009-05-21 15:34:09 +00:00
|
|
|
if(md->type == eModifierType_ParticleSystem) {
|
|
|
|
ParticleSystemModifierData *psmd=(ParticleSystemModifierData*)md;
|
|
|
|
|
|
|
|
BLI_remlink(&ob->particlesystem, psmd->psys);
|
|
|
|
psys_free(ob, psmd->psys);
|
|
|
|
}
|
2009-07-02 19:41:31 +00:00
|
|
|
else if(md->type == eModifierType_Softbody) {
|
|
|
|
if(ob->soft) {
|
|
|
|
sbFree(ob->soft);
|
|
|
|
ob->soft= NULL;
|
|
|
|
ob->softflag= 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(md->type == eModifierType_Collision) {
|
|
|
|
if(ob->pd)
|
|
|
|
ob->pd->deflect= 0;
|
2009-05-21 15:34:09 +00:00
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
DAG_scene_sort(scene);
|
|
|
|
}
|
|
|
|
else if(md->type == eModifierType_Surface) {
|
|
|
|
if(ob->pd)
|
|
|
|
ob->pd->flag &= ~PFIELD_SURFACE;
|
2009-05-21 15:34:09 +00:00
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
DAG_scene_sort(scene);
|
|
|
|
}
|
2009-08-20 00:33:59 +00:00
|
|
|
else if(md->type == eModifierType_Smoke) {
|
|
|
|
ModifierData *tmd = modifiers_findByType(ob, eModifierType_SmokeHR);
|
|
|
|
if(tmd) {
|
|
|
|
BLI_remlink(&ob->modifiers, tmd);
|
|
|
|
modifier_free(tmd);
|
|
|
|
}
|
|
|
|
}
|
2009-07-02 19:41:31 +00:00
|
|
|
|
|
|
|
BLI_remlink(&ob->modifiers, md);
|
2009-05-21 15:34:09 +00:00
|
|
|
modifier_free(md);
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
|
2009-05-21 15:34:09 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ED_object_modifier_move_up(ReportList *reports, Object *ob, ModifierData *md)
|
|
|
|
{
|
|
|
|
if(md->prev) {
|
|
|
|
ModifierTypeInfo *mti = modifierType_getInfo(md->type);
|
|
|
|
|
|
|
|
if(mti->type!=eModifierTypeType_OnlyDeform) {
|
|
|
|
ModifierTypeInfo *nmti = modifierType_getInfo(md->prev->type);
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
if(nmti->flags&eModifierTypeFlag_RequiresOriginalData) {
|
2009-05-21 15:34:09 +00:00
|
|
|
BKE_report(reports, RPT_WARNING, "Cannot move above a modifier requiring original data.");
|
|
|
|
return 0;
|
2009-07-02 19:41:31 +00:00
|
|
|
}
|
2009-05-21 15:34:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BLI_remlink(&ob->modifiers, md);
|
|
|
|
BLI_insertlink(&ob->modifiers, md->prev->prev, md);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ED_object_modifier_move_down(ReportList *reports, Object *ob, ModifierData *md)
|
|
|
|
{
|
|
|
|
if(md->next) {
|
|
|
|
ModifierTypeInfo *mti = modifierType_getInfo(md->type);
|
|
|
|
|
|
|
|
if(mti->flags&eModifierTypeFlag_RequiresOriginalData) {
|
|
|
|
ModifierTypeInfo *nmti = modifierType_getInfo(md->next->type);
|
|
|
|
|
|
|
|
if(nmti->type!=eModifierTypeType_OnlyDeform) {
|
|
|
|
BKE_report(reports, RPT_WARNING, "Cannot move beyond a non-deforming modifier.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BLI_remlink(&ob->modifiers, md);
|
|
|
|
BLI_insertlink(&ob->modifiers, md->next, md);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ED_object_modifier_convert(ReportList *reports, Scene *scene, Object *ob, ModifierData *md)
|
|
|
|
{
|
|
|
|
Object *obn;
|
|
|
|
ParticleSystem *psys;
|
|
|
|
ParticleCacheKey *key, **cache;
|
|
|
|
ParticleSettings *part;
|
|
|
|
Mesh *me;
|
|
|
|
MVert *mvert;
|
|
|
|
MEdge *medge;
|
|
|
|
int a, k, kmax;
|
|
|
|
int totvert=0, totedge=0, cvert=0;
|
|
|
|
int totpart=0, totchild=0;
|
|
|
|
|
|
|
|
if(md->type != eModifierType_ParticleSystem) return 0;
|
2009-08-16 02:35:44 +00:00
|
|
|
if(ob && ob->mode & OB_MODE_PARTICLE_EDIT) return 0;
|
2009-05-21 15:34:09 +00:00
|
|
|
|
|
|
|
psys=((ParticleSystemModifierData *)md)->psys;
|
|
|
|
part= psys->part;
|
|
|
|
|
2009-07-04 03:50:12 +00:00
|
|
|
if(part->ren_as == PART_DRAW_GR || part->ren_as == PART_DRAW_OB) {
|
2009-05-21 15:34:09 +00:00
|
|
|
; // XXX make_object_duplilist_real(NULL);
|
|
|
|
}
|
|
|
|
else {
|
2009-07-04 03:50:12 +00:00
|
|
|
if(part->ren_as != PART_DRAW_PATH || psys->pathcache == 0)
|
2009-05-21 15:34:09 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
totpart= psys->totcached;
|
|
|
|
totchild= psys->totchildcache;
|
|
|
|
|
|
|
|
if(totchild && (part->draw&PART_DRAW_PARENT)==0)
|
|
|
|
totpart= 0;
|
|
|
|
|
|
|
|
/* count */
|
|
|
|
cache= psys->pathcache;
|
|
|
|
for(a=0; a<totpart; a++) {
|
|
|
|
key= cache[a];
|
|
|
|
totvert+= key->steps+1;
|
|
|
|
totedge+= key->steps;
|
|
|
|
}
|
|
|
|
|
|
|
|
cache= psys->childcache;
|
|
|
|
for(a=0; a<totchild; a++) {
|
|
|
|
key= cache[a];
|
|
|
|
totvert+= key->steps+1;
|
|
|
|
totedge+= key->steps;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(totvert==0) return 0;
|
|
|
|
|
|
|
|
/* add new mesh */
|
|
|
|
obn= add_object(scene, OB_MESH);
|
|
|
|
me= obn->data;
|
|
|
|
|
|
|
|
me->totvert= totvert;
|
|
|
|
me->totedge= totedge;
|
|
|
|
|
|
|
|
me->mvert= CustomData_add_layer(&me->vdata, CD_MVERT, CD_CALLOC, NULL, totvert);
|
|
|
|
me->medge= CustomData_add_layer(&me->edata, CD_MEDGE, CD_CALLOC, NULL, totedge);
|
|
|
|
me->mface= CustomData_add_layer(&me->fdata, CD_MFACE, CD_CALLOC, NULL, 0);
|
|
|
|
|
|
|
|
mvert= me->mvert;
|
|
|
|
medge= me->medge;
|
|
|
|
|
|
|
|
/* copy coordinates */
|
|
|
|
cache= psys->pathcache;
|
|
|
|
for(a=0; a<totpart; a++) {
|
|
|
|
key= cache[a];
|
|
|
|
kmax= key->steps;
|
|
|
|
for(k=0; k<=kmax; k++,key++,cvert++,mvert++) {
|
|
|
|
VECCOPY(mvert->co,key->co);
|
|
|
|
if(k) {
|
|
|
|
medge->v1= cvert-1;
|
|
|
|
medge->v2= cvert;
|
|
|
|
medge->flag= ME_EDGEDRAW|ME_EDGERENDER|ME_LOOSEEDGE;
|
|
|
|
medge++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cache=psys->childcache;
|
|
|
|
for(a=0; a<totchild; a++) {
|
|
|
|
key=cache[a];
|
|
|
|
kmax=key->steps;
|
|
|
|
for(k=0; k<=kmax; k++,key++,cvert++,mvert++) {
|
|
|
|
VECCOPY(mvert->co,key->co);
|
|
|
|
if(k) {
|
|
|
|
medge->v1=cvert-1;
|
|
|
|
medge->v2=cvert;
|
|
|
|
medge->flag= ME_EDGEDRAW|ME_EDGERENDER|ME_LOOSEEDGE;
|
|
|
|
medge++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DAG_scene_sort(scene);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ED_object_modifier_apply(ReportList *reports, Scene *scene, Object *ob, ModifierData *md)
|
|
|
|
{
|
|
|
|
DerivedMesh *dm;
|
|
|
|
Mesh *me = ob->data;
|
|
|
|
int converted = 0;
|
|
|
|
|
|
|
|
if (scene->obedit) {
|
|
|
|
BKE_report(reports, RPT_ERROR, "Modifiers cannot be applied in editmode");
|
|
|
|
return 0;
|
|
|
|
} else if (((ID*) ob->data)->us>1) {
|
|
|
|
BKE_report(reports, RPT_ERROR, "Modifiers cannot be applied to multi-user data");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (md!=ob->modifiers.first)
|
|
|
|
BKE_report(reports, RPT_INFO, "Applied modifier was not first, result may not be as expected.");
|
|
|
|
|
|
|
|
if (ob->type==OB_MESH) {
|
|
|
|
if(me->key) {
|
|
|
|
BKE_report(reports, RPT_ERROR, "Modifier cannot be applied to Mesh with Shape Keys");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mesh_pmv_off(ob, me);
|
2009-07-03 15:59:59 +00:00
|
|
|
|
|
|
|
/* Multires: ensure that recent sculpting is applied */
|
|
|
|
if(md->type == eModifierType_Multires)
|
|
|
|
multires_force_update(ob);
|
2009-05-21 15:34:09 +00:00
|
|
|
|
|
|
|
dm = mesh_create_derived_for_modifier(scene, ob, md);
|
|
|
|
if (!dm) {
|
|
|
|
BKE_report(reports, RPT_ERROR, "Modifier is disabled or returned error, skipping apply");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DM_to_mesh(dm, me);
|
|
|
|
converted = 1;
|
|
|
|
|
|
|
|
dm->release(dm);
|
|
|
|
}
|
|
|
|
else if (ELEM(ob->type, OB_CURVE, OB_SURF)) {
|
|
|
|
ModifierTypeInfo *mti = modifierType_getInfo(md->type);
|
|
|
|
Curve *cu = ob->data;
|
|
|
|
int numVerts;
|
|
|
|
float (*vertexCos)[3];
|
|
|
|
|
|
|
|
BKE_report(reports, RPT_INFO, "Applied modifier only changed CV points, not tesselated/bevel vertices");
|
|
|
|
|
|
|
|
if (!(md->mode&eModifierMode_Realtime) || (mti->isDisabled && mti->isDisabled(md))) {
|
|
|
|
BKE_report(reports, RPT_ERROR, "Modifier is disabled, skipping apply");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
vertexCos = curve_getVertexCos(cu, &cu->nurb, &numVerts);
|
2009-05-31 17:20:57 +00:00
|
|
|
mti->deformVerts(md, ob, NULL, vertexCos, numVerts, 0, 0);
|
2009-05-21 15:34:09 +00:00
|
|
|
curve_applyVertexCos(cu, &cu->nurb, vertexCos);
|
|
|
|
|
|
|
|
converted = 1;
|
|
|
|
|
|
|
|
MEM_freeN(vertexCos);
|
|
|
|
|
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BKE_report(reports, RPT_ERROR, "Cannot apply modifier for this object type");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (converted) {
|
|
|
|
BLI_remlink(&ob->modifiers, md);
|
|
|
|
modifier_free(md);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ED_object_modifier_copy(ReportList *reports, Object *ob, ModifierData *md)
|
|
|
|
{
|
|
|
|
ModifierData *nmd;
|
|
|
|
|
|
|
|
nmd = modifier_new(md->type);
|
|
|
|
modifier_copyData(md, nmd);
|
|
|
|
BLI_insertlink(&ob->modifiers, md, nmd);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************** OPERATORS ****************************/
|
|
|
|
|
|
|
|
/************************ add modifier operator *********************/
|
2009-04-27 18:05:58 +00:00
|
|
|
|
|
|
|
static int modifier_add_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
Object *ob = CTX_data_active_object(C);
|
|
|
|
int type= RNA_enum_get(op->ptr, "type");
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
if(!ED_object_modifier_add(op->reports, scene, ob, type))
|
|
|
|
return OPERATOR_CANCELLED;
|
2009-04-27 18:05:58 +00:00
|
|
|
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_add(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
/* identifiers */
|
|
|
|
ot->name= "Add Modifier";
|
|
|
|
ot->description = "Add a modifier to the active object.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_add";
|
|
|
|
|
|
|
|
/* api callbacks */
|
|
|
|
ot->invoke= WM_menu_invoke;
|
|
|
|
ot->exec= modifier_add_exec;
|
|
|
|
|
|
|
|
ot->poll= ED_operator_object_active;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
|
|
|
|
/* XXX only some types should be here */
|
|
|
|
RNA_def_enum(ot->srna, "type", modifier_type_items, 0, "Type", "");
|
|
|
|
}
|
|
|
|
|
2009-07-02 19:41:31 +00:00
|
|
|
/************************ remove modifier operator *********************/
|
|
|
|
|
|
|
|
static int modifier_remove_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
PointerRNA ptr= CTX_data_pointer_get_type(C, "modifier", &RNA_Modifier);
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
ModifierData *md= ptr.data;
|
|
|
|
|
|
|
|
if(!ob || !md || !ED_object_modifier_remove(op->reports, scene, ob, md))
|
|
|
|
return OPERATOR_CANCELLED;
|
|
|
|
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_remove(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Remove Modifier";
|
|
|
|
ot->description= "Remove a modifier from the active object.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_remove";
|
|
|
|
ot->poll= ED_operator_object_active;
|
|
|
|
|
|
|
|
ot->exec= modifier_remove_exec;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************ move up modifier operator *********************/
|
|
|
|
|
|
|
|
static int modifier_move_up_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
PointerRNA ptr= CTX_data_pointer_get_type(C, "modifier", &RNA_Modifier);
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
ModifierData *md= ptr.data;
|
|
|
|
|
|
|
|
if(!ob || !md || !ED_object_modifier_move_up(op->reports, ob, md))
|
|
|
|
return OPERATOR_CANCELLED;
|
|
|
|
|
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_move_up(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Move Up Modifier";
|
|
|
|
ot->description= "Move modifier up in the stack.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_move_up";
|
|
|
|
ot->poll= ED_operator_object_active;
|
|
|
|
|
|
|
|
ot->exec= modifier_move_up_exec;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************ move down modifier operator *********************/
|
|
|
|
|
|
|
|
static int modifier_move_down_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
PointerRNA ptr= CTX_data_pointer_get_type(C, "modifier", &RNA_Modifier);
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
ModifierData *md= ptr.data;
|
|
|
|
|
|
|
|
if(!ob || !md || !ED_object_modifier_move_down(op->reports, ob, md))
|
|
|
|
return OPERATOR_CANCELLED;
|
|
|
|
|
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_move_down(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Move Down Modifier";
|
|
|
|
ot->description= "Move modifier down in the stack.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_move_down";
|
|
|
|
ot->poll= ED_operator_object_active;
|
|
|
|
|
|
|
|
ot->exec= modifier_move_down_exec;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************ apply modifier operator *********************/
|
|
|
|
|
|
|
|
static int modifier_apply_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
PointerRNA ptr= CTX_data_pointer_get_type(C, "modifier", &RNA_Modifier);
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
ModifierData *md= ptr.data;
|
|
|
|
|
|
|
|
if(!ob || !md || !ED_object_modifier_apply(op->reports, scene, ob, md))
|
|
|
|
return OPERATOR_CANCELLED;
|
|
|
|
|
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_apply(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Apply Modifier";
|
|
|
|
ot->description= "Apply modifier and remove from the stack.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_apply";
|
|
|
|
ot->poll= ED_operator_object_active;
|
|
|
|
|
|
|
|
ot->exec= modifier_apply_exec;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************ convert modifier operator *********************/
|
|
|
|
|
|
|
|
static int modifier_convert_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
PointerRNA ptr= CTX_data_pointer_get_type(C, "modifier", &RNA_Modifier);
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
ModifierData *md= ptr.data;
|
|
|
|
|
|
|
|
if(!ob || !md || !ED_object_modifier_convert(op->reports, scene, ob, md))
|
|
|
|
return OPERATOR_CANCELLED;
|
|
|
|
|
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_convert(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Convert Modifier";
|
|
|
|
ot->description= "Convert particles to a mesh object.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_convert";
|
|
|
|
ot->poll= ED_operator_object_active;
|
|
|
|
|
|
|
|
ot->exec= modifier_convert_exec;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************ copy modifier operator *********************/
|
|
|
|
|
|
|
|
static int modifier_copy_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
PointerRNA ptr= CTX_data_pointer_get_type(C, "modifier", &RNA_Modifier);
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
ModifierData *md= ptr.data;
|
|
|
|
|
|
|
|
if(!ob || !md || !ED_object_modifier_copy(op->reports, ob, md))
|
|
|
|
return OPERATOR_CANCELLED;
|
|
|
|
|
|
|
|
DAG_object_flush_update(scene, ob, OB_RECALC_DATA);
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_copy(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Copy Modifier";
|
|
|
|
ot->description= "Duplicate modifier at the same position in the stack.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_copy";
|
|
|
|
ot->poll= ED_operator_object_active;
|
|
|
|
|
|
|
|
ot->exec= modifier_copy_exec;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
2009-05-27 00:03:49 +00:00
|
|
|
/****************** multires subdivide operator *********************/
|
|
|
|
|
2009-05-23 07:12:55 +00:00
|
|
|
static int multires_subdivide_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
2009-07-02 19:41:31 +00:00
|
|
|
PointerRNA ptr= CTX_data_pointer_get_type(C, "modifier", &RNA_MultiresModifier);
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
MultiresModifierData *mmd= ptr.data;
|
2009-05-23 07:12:55 +00:00
|
|
|
|
|
|
|
if(mmd) {
|
|
|
|
multiresModifier_subdivide(mmd, ob, 1, 0, mmd->simple);
|
|
|
|
WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob);
|
|
|
|
}
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
2009-08-14 01:48:05 +00:00
|
|
|
static int multires_subdivide_poll(bContext *C)
|
|
|
|
{
|
|
|
|
return NULL != CTX_data_active_object(C) && NULL == CTX_data_edit_object(C);
|
|
|
|
}
|
|
|
|
|
2009-05-23 07:12:55 +00:00
|
|
|
void OBJECT_OT_multires_subdivide(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
ot->name= "Multires Subdivide";
|
|
|
|
ot->description= "Add a new level of subdivision.";
|
|
|
|
ot->idname= "OBJECT_OT_multires_subdivide";
|
|
|
|
|
|
|
|
ot->exec= multires_subdivide_exec;
|
2009-08-14 01:48:05 +00:00
|
|
|
ot->poll= multires_subdivide_poll;
|
2009-05-23 07:12:55 +00:00
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
2009-06-03 00:09:30 +00:00
|
|
|
/************************ mdef bind operator *********************/
|
|
|
|
|
|
|
|
static int modifier_mdef_bind_poll(bContext *C)
|
|
|
|
{
|
2009-07-02 19:41:31 +00:00
|
|
|
return CTX_data_pointer_get_type(C, "modifier", &RNA_MeshDeformModifier).data != NULL;
|
2009-06-03 00:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int modifier_mdef_bind_exec(bContext *C, wmOperator *op)
|
|
|
|
{
|
|
|
|
Scene *scene= CTX_data_scene(C);
|
|
|
|
PointerRNA ptr= CTX_data_pointer_get(C, "modifier");
|
|
|
|
Object *ob= ptr.id.data;
|
|
|
|
MeshDeformModifierData *mmd= ptr.data;
|
|
|
|
|
|
|
|
if(mmd->bindcos) {
|
|
|
|
if(mmd->bindweights) MEM_freeN(mmd->bindweights);
|
|
|
|
if(mmd->bindcos) MEM_freeN(mmd->bindcos);
|
|
|
|
if(mmd->dyngrid) MEM_freeN(mmd->dyngrid);
|
|
|
|
if(mmd->dyninfluences) MEM_freeN(mmd->dyninfluences);
|
|
|
|
if(mmd->dynverts) MEM_freeN(mmd->dynverts);
|
|
|
|
mmd->bindweights= NULL;
|
|
|
|
mmd->bindcos= NULL;
|
|
|
|
mmd->dyngrid= NULL;
|
|
|
|
mmd->dyninfluences= NULL;
|
|
|
|
mmd->dynverts= NULL;
|
|
|
|
mmd->totvert= 0;
|
|
|
|
mmd->totcagevert= 0;
|
|
|
|
mmd->totinfluence= 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DerivedMesh *dm;
|
|
|
|
int mode= mmd->modifier.mode;
|
|
|
|
|
|
|
|
/* force modifier to run, it will call binding routine */
|
|
|
|
mmd->needbind= 1;
|
|
|
|
mmd->modifier.mode |= eModifierMode_Realtime;
|
|
|
|
|
|
|
|
if(ob->type == OB_MESH) {
|
|
|
|
dm= mesh_create_derived_view(scene, ob, 0);
|
|
|
|
dm->release(dm);
|
|
|
|
}
|
|
|
|
else if(ob->type == OB_LATTICE) {
|
|
|
|
lattice_calc_modifiers(scene, ob);
|
|
|
|
}
|
|
|
|
else if(ob->type==OB_MBALL) {
|
|
|
|
makeDispListMBall(scene, ob);
|
|
|
|
}
|
|
|
|
else if(ELEM3(ob->type, OB_CURVE, OB_SURF, OB_FONT)) {
|
|
|
|
makeDispListCurveTypes(scene, ob, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
mmd->needbind= 0;
|
|
|
|
mmd->modifier.mode= mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBJECT_OT_modifier_mdef_bind(wmOperatorType *ot)
|
|
|
|
{
|
|
|
|
/* identifiers */
|
|
|
|
ot->name= "Mesh Deform Bind";
|
|
|
|
ot->description = "Bind mesh to cage in mesh deform modifier.";
|
|
|
|
ot->idname= "OBJECT_OT_modifier_mdef_bind";
|
|
|
|
|
|
|
|
/* api callbacks */
|
|
|
|
ot->poll= modifier_mdef_bind_poll;
|
|
|
|
ot->exec= modifier_mdef_bind_exec;
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
|
|
|
}
|
|
|
|
|
2009-05-21 15:34:09 +00:00
|
|
|
#if 0
|
|
|
|
static void modifiers_add(void *ob_v, int type)
|
|
|
|
{
|
|
|
|
Object *ob = ob_v;
|
|
|
|
ModifierTypeInfo *mti = modifierType_getInfo(type);
|
|
|
|
|
|
|
|
if (mti->flags&eModifierTypeFlag_RequiresOriginalData) {
|
|
|
|
ModifierData *md = ob->modifiers.first;
|
|
|
|
|
|
|
|
while (md && modifierType_getInfo(md->type)->type==eModifierTypeType_OnlyDeform) {
|
|
|
|
md = md->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
BLI_insertlinkbefore(&ob->modifiers, md, modifier_new(type));
|
|
|
|
} else {
|
|
|
|
BLI_addtail(&ob->modifiers, modifier_new(type));
|
|
|
|
}
|
|
|
|
ED_undo_push("Add modifier");
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct MenuEntry {
|
|
|
|
char *name;
|
|
|
|
int ID;
|
|
|
|
} MenuEntry;
|
|
|
|
|
|
|
|
static int menuEntry_compare_names(const void *entry1, const void *entry2)
|
|
|
|
{
|
|
|
|
return strcmp(((MenuEntry *)entry1)->name, ((MenuEntry *)entry2)->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uiBlock *modifiers_add_menu(void *ob_v)
|
|
|
|
{
|
|
|
|
Object *ob = ob_v;
|
|
|
|
uiBlock *block;
|
|
|
|
int i, yco=0;
|
|
|
|
int numEntries = 0;
|
|
|
|
MenuEntry entries[NUM_MODIFIER_TYPES];
|
|
|
|
|
|
|
|
block= uiNewBlock(&curarea->uiblocks, "modifier_add_menu",
|
|
|
|
UI_EMBOSSP, UI_HELV, curarea->win);
|
|
|
|
uiBlockSetButmFunc(block, modifiers_add, ob);
|
|
|
|
|
|
|
|
for (i=eModifierType_None+1; i<NUM_MODIFIER_TYPES; i++) {
|
|
|
|
ModifierTypeInfo *mti = modifierType_getInfo(i);
|
|
|
|
|
|
|
|
/* Only allow adding through appropriate other interfaces */
|
2009-07-03 15:23:33 +00:00
|
|
|
if(ELEM(i, eModifierType_ParticleSystem, eModifierType_Surface)) continue;
|
2009-05-21 15:34:09 +00:00
|
|
|
|
|
|
|
if((mti->flags&eModifierTypeFlag_AcceptsCVs) ||
|
|
|
|
(ob->type==OB_MESH && (mti->flags&eModifierTypeFlag_AcceptsMesh))) {
|
|
|
|
entries[numEntries].name = mti->name;
|
|
|
|
entries[numEntries].ID = i;
|
|
|
|
|
|
|
|
++numEntries;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qsort(entries, numEntries, sizeof(*entries), menuEntry_compare_names);
|
|
|
|
|
|
|
|
|
|
|
|
for(i = 0; i < numEntries; ++i)
|
|
|
|
uiDefBut(block, BUTM, B_MODIFIER_RECALC, entries[i].name,
|
|
|
|
0, yco -= 20, 160, 19, NULL, 0, 0, 1, entries[i].ID, "");
|
|
|
|
|
|
|
|
uiTextBoundsBlock(block, 50);
|
|
|
|
uiBlockSetDirection(block, UI_DOWN);
|
|
|
|
|
|
|
|
return block;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-03 00:09:30 +00:00
|
|
|
#if 0
|
|
|
|
static void modifiers_clearHookOffset(bContext *C, void *ob_v, void *md_v)
|
|
|
|
{
|
|
|
|
Object *ob = ob_v;
|
|
|
|
ModifierData *md = md_v;
|
|
|
|
HookModifierData *hmd = (HookModifierData*) md;
|
|
|
|
|
|
|
|
if (hmd->object) {
|
|
|
|
Mat4Invert(hmd->object->imat, hmd->object->obmat);
|
|
|
|
Mat4MulSerie(hmd->parentinv, hmd->object->imat, ob->obmat, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
ED_undo_push(C, "Clear hook offset");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void modifiers_cursorHookCenter(bContext *C, void *ob_v, void *md_v)
|
|
|
|
{
|
|
|
|
/* XXX
|
|
|
|
Object *ob = ob_v;
|
|
|
|
ModifierData *md = md_v;
|
|
|
|
HookModifierData *hmd = (HookModifierData*) md;
|
|
|
|
|
|
|
|
if(G.vd) {
|
|
|
|
float *curs = give_cursor();
|
|
|
|
float bmat[3][3], imat[3][3];
|
|
|
|
|
|
|
|
where_is_object(ob);
|
|
|
|
|
|
|
|
Mat3CpyMat4(bmat, ob->obmat);
|
|
|
|
Mat3Inv(imat, bmat);
|
|
|
|
|
|
|
|
curs= give_cursor();
|
|
|
|
hmd->cent[0]= curs[0]-ob->obmat[3][0];
|
|
|
|
hmd->cent[1]= curs[1]-ob->obmat[3][1];
|
|
|
|
hmd->cent[2]= curs[2]-ob->obmat[3][2];
|
|
|
|
Mat3MulVecfl(imat, hmd->cent);
|
|
|
|
|
|
|
|
ED_undo_push(C, "Hook cursor center");
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static void modifiers_selectHook(bContext *C, void *ob_v, void *md_v)
|
|
|
|
{
|
|
|
|
/* XXX ModifierData *md = md_v;
|
|
|
|
HookModifierData *hmd = (HookModifierData*) md;
|
|
|
|
|
|
|
|
hook_select(hmd);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static void modifiers_reassignHook(bContext *C, void *ob_v, void *md_v)
|
|
|
|
{
|
|
|
|
/* XXX ModifierData *md = md_v;
|
|
|
|
HookModifierData *hmd = (HookModifierData*) md;
|
|
|
|
float cent[3];
|
|
|
|
int *indexar, tot, ok;
|
|
|
|
char name[32];
|
|
|
|
|
|
|
|
ok= hook_getIndexArray(&tot, &indexar, name, cent);
|
|
|
|
|
|
|
|
if (!ok) {
|
|
|
|
uiPupMenuError(C, "Requires selected vertices or active Vertex Group");
|
|
|
|
} else {
|
|
|
|
if (hmd->indexar) {
|
|
|
|
MEM_freeN(hmd->indexar);
|
|
|
|
}
|
|
|
|
|
|
|
|
VECCOPY(hmd->cent, cent);
|
|
|
|
hmd->indexar = indexar;
|
|
|
|
hmd->totindex = tot;
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void modifiers_explodeFacepa(bContext *C, void *arg1, void *arg2)
|
|
|
|
{
|
|
|
|
ExplodeModifierData *emd=arg1;
|
|
|
|
|
|
|
|
emd->flag |= eExplodeFlag_CalcFaces;
|
|
|
|
}
|
|
|
|
|
|
|
|
void modifiers_explodeDelVg(bContext *C, void *arg1, void *arg2)
|
|
|
|
{
|
|
|
|
ExplodeModifierData *emd=arg1;
|
|
|
|
emd->vgroup = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|