Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2005-07-20 08:14:21 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-07-20 08:14:21 +0400
commit259c7b6cad39720dd98044e90238f130716485c7 (patch)
tree72f4cb7fd4ceae3250c607ba594254ce52a6fecb /source/blender/blenkernel/intern/modifier.c
parentca1873df56db3a28fd650b132bdf74b992d0232c (diff)
- added modifier_dependsOnTime to check if modifier needs updating
based on time change. would be nice if dep graph could handle this. - made dep check if modifiers need update on time change - fix render crash (access null) - added new Build Effect modifier type. compared to old one works as a full member of modifier system, means can apply subsurf, etc on it, reorder, what have you. and it is all nice and self contained. - removed old Build effect, old files convert to new style on load - couldn't help myself, added a randomize feature to build effect - removed Python BuildEffect support
Diffstat (limited to 'source/blender/blenkernel/intern/modifier.c')
-rw-r--r--source/blender/blenkernel/intern/modifier.c243
1 files changed, 243 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index 9bba515fbbf..d3d48a6f5f3 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -1,18 +1,24 @@
#include "string.h"
+#include "BLI_rand.h"
+
#include "MEM_guardedalloc.h"
#include "DNA_mesh_types.h"
#include "DNA_meshdata_types.h"
#include "DNA_modifier_types.h"
#include "DNA_object_types.h"
+#include "DNA_scene_types.h"
+#include "BKE_global.h"
#include "BKE_utildefines.h"
#include "BKE_DerivedMesh.h"
#include "BKE_displist.h"
#include "BKE_modifier.h"
#include "BKE_lattice.h"
#include "BKE_subsurf.h"
+#include "BKE_object.h"
+#include "BKE_mesh.h"
#include "depsgraph_private.h"
/***/
@@ -145,6 +151,227 @@ static void *subsurfModifier_applyModifier(ModifierData *md, void *data, Object
}
}
+/* Build */
+
+static ModifierData *buildModifier_allocData(void)
+{
+ BuildModifierData *bmd = allocModifierData(eModifierType_Build, sizeof(BuildModifierData));
+
+ bmd->start = 1.0;
+ bmd->length = 100.0;
+
+ return (ModifierData*) bmd;
+}
+
+static int buildModifier_isDisabled(ModifierData *md)
+{
+ return 0;
+}
+
+static int buildModifier_dependsOnTime(ModifierData *md)
+{
+ return 1;
+}
+
+static void *buildModifier_applyModifier(ModifierData *md, void *data, Object *ob, DerivedMesh *dm, float (*vertexCos)[3], int useRenderParams)
+{
+ BuildModifierData *bmd = (BuildModifierData*) md;
+ DispListMesh *dlm=NULL, *ndlm = MEM_callocN(sizeof(*ndlm), "build_dlm");
+ MVert *mvert;
+ MEdge *medge;
+ MFace *mface;
+ MCol *mcol;
+ TFace *tface;
+ int totvert, totedge, totface;
+ int i,j;
+ float frac;
+
+ if (dm) {
+ dlm = dm->convertToDispListMesh(dm);
+ mvert = dlm->mvert;
+ medge = dlm->medge;
+ mface = dlm->mface;
+ mcol = dlm->mcol;
+ tface = dlm->tface;
+ totvert = dlm->totvert;
+ totedge = dlm->totedge;
+ totface = dlm->totface;
+ } else {
+ Mesh *me = data;
+ mvert = me->mvert;
+ medge = me->medge;
+ mface = me->mface;
+ mcol = me->mcol;
+ tface = me->tface;
+ totvert = me->totvert;
+ totedge = me->totedge;
+ totface = me->totface;
+ }
+
+ if (ob) {
+ frac = bsystem_time(ob, 0, (float)G.scene->r.cfra, bmd->start-1.0f)/bmd->length;
+ } else {
+ frac = G.scene->r.cfra - bmd->start/bmd->length;
+ }
+ CLAMP(frac, 0.0, 1.0);
+
+ ndlm->totface = totface*frac;
+ ndlm->totedge = totedge*frac;
+ if (ndlm->totface) {
+ ndlm->mvert = MEM_mallocN(sizeof(*ndlm->mvert)*totvert, "build_mvert");
+ memcpy(ndlm->mvert, mvert, sizeof(*mvert)*totvert);
+ for (i=0; i<totvert; i++) {
+ ndlm->mvert[i].flag = 0;
+ }
+
+ if (bmd->randomize) {
+ ndlm->mface = MEM_dupallocN(mface);
+ BLI_array_randomize(ndlm->mface, sizeof(*mface), totface, bmd->seed);
+
+ if (tface) {
+ ndlm->tface = MEM_dupallocN(tface);
+ BLI_array_randomize(ndlm->tface, sizeof(*tface), totface, bmd->seed);
+ } else if (mcol) {
+ ndlm->mcol = MEM_dupallocN(mcol);
+ BLI_array_randomize(ndlm->mcol, sizeof(*mcol)*4, totface, bmd->seed);
+ }
+ } else {
+ ndlm->mface = MEM_mallocN(sizeof(*ndlm->mface)*ndlm->totface, "build_mf");
+ memcpy(ndlm->mface, mface, sizeof(*mface)*ndlm->totface);
+
+ if (tface) {
+ ndlm->tface = MEM_mallocN(sizeof(*ndlm->tface)*ndlm->totface, "build_tf");
+ memcpy(ndlm->tface, tface, sizeof(*tface)*ndlm->totface);
+ } else if (mcol) {
+ ndlm->mcol = MEM_mallocN(sizeof(*ndlm->mcol)*4*ndlm->totface, "build_mcol");
+ memcpy(ndlm->mcol, mcol, sizeof(*mcol)*4*ndlm->totface);
+ }
+ }
+
+ for (i=0; i<ndlm->totface; i++) {
+ MFace *mf = &ndlm->mface[i];
+
+ ndlm->mvert[mf->v1].flag = 1;
+ ndlm->mvert[mf->v2].flag = 1;
+ if (mf->v3) {
+ ndlm->mvert[mf->v3].flag = 1;
+ if (mf->v4) ndlm->mvert[mf->v4].flag = 1;
+ }
+ }
+
+ /* Store remapped indices in *((int*) mv->no) */
+ ndlm->totvert = 0;
+ for (i=0; i<totvert; i++) {
+ MVert *mv = &ndlm->mvert[i];
+
+ if (mv->flag)
+ *((int*) mv->no) = ndlm->totvert++;
+ }
+
+ /* Remap face vertex indices */
+ for (i=0; i<ndlm->totface; i++) {
+ MFace *mf = &ndlm->mface[i];
+
+ mf->v1 = *((int*) ndlm->mvert[mf->v1].no);
+ mf->v2 = *((int*) ndlm->mvert[mf->v2].no);
+ if (mf->v3) {
+ mf->v3 = *((int*) ndlm->mvert[mf->v3].no);
+ if (mf->v4) mf->v4 = *((int*) ndlm->mvert[mf->v4].no);
+ }
+ }
+ /* Copy in all edges that have both vertices (remap in process) */
+ if (totedge) {
+ ndlm->totedge = 0;
+ ndlm->medge = MEM_mallocN(sizeof(*ndlm->medge)*totedge, "build_med");
+
+ for (i=0; i<totedge; i++) {
+ MEdge *med = &medge[i];
+
+ if (ndlm->mvert[med->v1].flag && ndlm->mvert[med->v2].flag) {
+ MEdge *nmed = &ndlm->medge[ndlm->totedge++];
+
+ memcpy(nmed, med, sizeof(*med));
+
+ nmed->v1 = *((int*) ndlm->mvert[nmed->v1].no);
+ nmed->v2 = *((int*) ndlm->mvert[nmed->v2].no);
+ }
+ }
+ }
+
+ /* Collapse vertex array to remove unused verts */
+ for(i=j=0; i<totvert; i++) {
+ MVert *mv = &ndlm->mvert[i];
+
+ if (mv->flag) {
+ if (j!=i)
+ memcpy(&ndlm->mvert[j], mv, sizeof(*mv));
+ j++;
+ }
+ }
+ } else if (ndlm->totedge) {
+ ndlm->mvert = MEM_mallocN(sizeof(*ndlm->mvert)*totvert, "build_mvert");
+ memcpy(ndlm->mvert, mvert, sizeof(*mvert)*totvert);
+ for (i=0; i<totvert; i++) {
+ ndlm->mvert[i].flag = 0;
+ }
+
+ if (bmd->randomize) {
+ ndlm->medge = MEM_dupallocN(medge);
+ BLI_array_randomize(ndlm->medge, sizeof(*medge), totedge, bmd->seed);
+ } else {
+ ndlm->medge = MEM_mallocN(sizeof(*ndlm->medge)*ndlm->totedge, "build_mf");
+ memcpy(ndlm->medge, medge, sizeof(*medge)*ndlm->totedge);
+ }
+
+ for (i=0; i<ndlm->totedge; i++) {
+ MEdge *med = &ndlm->medge[i];
+
+ ndlm->mvert[med->v1].flag = 1;
+ ndlm->mvert[med->v2].flag = 1;
+ }
+
+ /* Store remapped indices in *((int*) mv->no) */
+ ndlm->totvert = 0;
+ for (i=0; i<totvert; i++) {
+ MVert *mv = &ndlm->mvert[i];
+
+ if (mv->flag)
+ *((int*) mv->no) = ndlm->totvert++;
+ }
+
+ /* Remap edge vertex indices */
+ for (i=0; i<ndlm->totedge; i++) {
+ MEdge *med = &ndlm->medge[i];
+
+ med->v1 = *((int*) ndlm->mvert[med->v1].no);
+ med->v2 = *((int*) ndlm->mvert[med->v2].no);
+ }
+
+ /* Collapse vertex array to remove unused verts */
+ for(i=j=0; i<totvert; i++) {
+ MVert *mv = &ndlm->mvert[i];
+
+ if (mv->flag) {
+ if (j!=i)
+ memcpy(&ndlm->mvert[j], mv, sizeof(*mv));
+ j++;
+ }
+ }
+ } else {
+ ndlm->totvert = totvert*frac;
+
+ ndlm->mvert = MEM_mallocN(sizeof(*ndlm->mvert)*ndlm->totvert, "build_mvert");
+ memcpy(ndlm->mvert, mvert, sizeof(*mvert)*ndlm->totvert);
+ }
+
+ if (dm) dm->release(dm);
+ if (dlm) displistmesh_free(dlm);
+
+ mesh_calc_normals(ndlm->mvert, ndlm->totvert, ndlm->mface, ndlm->totface, &ndlm->nors);
+
+ return derivedmesh_from_displistmesh(ndlm);
+}
+
/***/
static ModifierTypeInfo typeArr[NUM_MODIFIER_TYPES];
@@ -194,6 +421,16 @@ ModifierTypeInfo *modifierType_get_info(ModifierType type)
mti->isDisabled = subsurfModifier_isDisabled;
mti->applyModifier = subsurfModifier_applyModifier;
+ mti = &typeArr[eModifierType_Build];
+ strcpy(mti->name, "Build");
+ strcpy(mti->structName, "BuildModifierData");
+ mti->type = eModifierTypeType_Nonconstructive;
+ mti->flags = eModifierTypeFlag_AcceptsMesh;
+ mti->allocData = buildModifier_allocData;
+ mti->isDisabled = buildModifier_isDisabled;
+ mti->dependsOnTime = buildModifier_dependsOnTime;
+ mti->applyModifier = buildModifier_applyModifier;
+
typeArrInit = 0;
}
@@ -204,3 +441,9 @@ ModifierTypeInfo *modifierType_get_info(ModifierType type)
}
}
+int modifier_dependsOnTime(ModifierData *md)
+{
+ ModifierTypeInfo *mti = modifierType_get_info(md->type);
+
+ return mti->dependsOnTime && mti->dependsOnTime(md);
+}