2010-04-11 22:12:30 +00:00
|
|
|
/*
|
2011-10-23 17:52:20 +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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2005 by the Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Daniel Dunbar
|
|
|
|
* Ton Roosendaal,
|
|
|
|
* Ben Batt,
|
|
|
|
* Brecht Van Lommel,
|
|
|
|
* Campbell Barton
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
*/
|
2010-04-11 22:12:30 +00:00
|
|
|
|
2011-02-25 13:57:17 +00:00
|
|
|
/** \file blender/modifiers/intern/MOD_multires.c
|
|
|
|
* \ingroup modifiers
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-06-02 18:04:31 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2011-12-23 20:30:23 +00:00
|
|
|
#include "DNA_mesh_types.h"
|
2012-03-14 06:32:13 +00:00
|
|
|
#include "DNA_object_types.h"
|
2011-12-23 20:30:23 +00:00
|
|
|
|
2012-07-08 06:00:27 +00:00
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
2010-04-11 22:12:30 +00:00
|
|
|
#include "BKE_cdderivedmesh.h"
|
2012-03-14 06:32:13 +00:00
|
|
|
#include "BKE_mesh.h"
|
2010-04-11 22:12:30 +00:00
|
|
|
#include "BKE_multires.h"
|
|
|
|
#include "BKE_modifier.h"
|
2012-03-14 06:32:13 +00:00
|
|
|
#include "BKE_subsurf.h"
|
2010-04-11 22:12:30 +00:00
|
|
|
|
2017-08-01 09:06:34 +10:00
|
|
|
#include "MOD_modifiertypes.h"
|
|
|
|
|
2010-04-11 22:12:30 +00:00
|
|
|
static void initData(ModifierData *md)
|
|
|
|
{
|
2012-05-06 13:38:33 +00:00
|
|
|
MultiresModifierData *mmd = (MultiresModifierData *)md;
|
2010-04-11 22:12:30 +00:00
|
|
|
|
|
|
|
mmd->lvl = 0;
|
|
|
|
mmd->sculptlvl = 0;
|
|
|
|
mmd->renderlvl = 0;
|
|
|
|
mmd->totlvl = 0;
|
|
|
|
}
|
|
|
|
|
2018-05-12 08:04:56 +02:00
|
|
|
static DerivedMesh *applyModifier(
|
|
|
|
ModifierData *md, Object *ob, DerivedMesh *dm,
|
|
|
|
ModifierApplyFlag flag)
|
2010-04-11 22:12:30 +00:00
|
|
|
{
|
2012-05-06 13:38:33 +00:00
|
|
|
MultiresModifierData *mmd = (MultiresModifierData *)md;
|
2010-04-11 22:12:30 +00:00
|
|
|
DerivedMesh *result;
|
2012-05-06 13:38:33 +00:00
|
|
|
Mesh *me = (Mesh *)ob->data;
|
2014-06-12 13:49:46 +06:00
|
|
|
const bool useRenderParams = (flag & MOD_APPLY_RENDER) != 0;
|
|
|
|
const bool ignore_simplify = (flag & MOD_APPLY_IGNORE_SIMPLIFY) != 0;
|
2012-05-10 20:32:09 +00:00
|
|
|
MultiresFlags flags = 0;
|
2014-01-28 03:52:21 +11:00
|
|
|
const bool has_mask = CustomData_has_layer(&me->ldata, CD_GRID_PAINT_MASK);
|
2010-07-22 11:27:54 +00:00
|
|
|
|
2012-03-24 06:24:53 +00:00
|
|
|
if (mmd->totlvl) {
|
|
|
|
if (!CustomData_get_layer(&me->ldata, CD_MDISPS)) {
|
2010-09-09 00:14:51 +00:00
|
|
|
/* multires always needs a displacement layer */
|
2011-04-03 00:25:01 +00:00
|
|
|
CustomData_add_layer(&me->ldata, CD_MDISPS, CD_CALLOC, NULL, me->totloop);
|
2010-07-22 11:27:54 +00:00
|
|
|
}
|
|
|
|
}
|
2010-04-11 22:12:30 +00:00
|
|
|
|
2012-10-01 05:19:57 +00:00
|
|
|
if (has_mask)
|
|
|
|
flags |= MULTIRES_ALLOC_PAINT_MASK;
|
|
|
|
|
2012-05-10 20:32:09 +00:00
|
|
|
if (useRenderParams)
|
|
|
|
flags |= MULTIRES_USE_RENDER_PARAMS;
|
|
|
|
|
2014-06-12 13:49:46 +06:00
|
|
|
if (ignore_simplify)
|
|
|
|
flags |= MULTIRES_IGNORE_SIMPLIFY;
|
|
|
|
|
2012-05-10 20:32:09 +00:00
|
|
|
result = multires_make_derived_from_derived(dm, mmd, ob, flags);
|
2010-04-11 22:12:30 +00:00
|
|
|
|
2012-03-24 06:24:53 +00:00
|
|
|
if (result == dm)
|
2010-04-11 22:12:30 +00:00
|
|
|
return dm;
|
|
|
|
|
2012-05-11 08:05:47 +00:00
|
|
|
if (useRenderParams || !(flag & MOD_APPLY_USECACHE)) {
|
2012-03-14 06:32:13 +00:00
|
|
|
DerivedMesh *cddm;
|
|
|
|
|
2012-05-06 13:38:33 +00:00
|
|
|
cddm = CDDM_copy(result);
|
2012-03-14 06:32:13 +00:00
|
|
|
|
2012-05-10 20:34:23 +00:00
|
|
|
/* copy hidden/masks to vertices */
|
2012-03-24 06:24:53 +00:00
|
|
|
if (!useRenderParams) {
|
2012-03-14 06:32:13 +00:00
|
|
|
struct MDisps *mdisps;
|
2012-05-10 20:34:23 +00:00
|
|
|
struct GridPaintMask *grid_paint_mask;
|
|
|
|
|
2012-03-14 06:32:13 +00:00
|
|
|
mdisps = CustomData_get_layer(&me->ldata, CD_MDISPS);
|
2012-05-10 20:34:23 +00:00
|
|
|
grid_paint_mask = CustomData_get_layer(&me->ldata, CD_GRID_PAINT_MASK);
|
|
|
|
|
2012-03-24 06:24:53 +00:00
|
|
|
if (mdisps) {
|
2012-03-14 06:32:13 +00:00
|
|
|
subsurf_copy_grid_hidden(result, me->mpoly,
|
2012-05-06 13:38:33 +00:00
|
|
|
cddm->getVertArray(cddm),
|
|
|
|
mdisps);
|
2012-03-14 06:32:13 +00:00
|
|
|
|
2013-06-26 02:47:56 +00:00
|
|
|
BKE_mesh_flush_hidden_from_verts_ex(cddm->getVertArray(cddm),
|
|
|
|
cddm->getLoopArray(cddm),
|
|
|
|
cddm->getEdgeArray(cddm),
|
|
|
|
cddm->getNumEdges(cddm),
|
|
|
|
cddm->getPolyArray(cddm),
|
|
|
|
cddm->getNumPolys(cddm));
|
2012-03-14 06:32:13 +00:00
|
|
|
}
|
2012-05-11 08:05:47 +00:00
|
|
|
if (grid_paint_mask) {
|
2012-05-10 20:34:23 +00:00
|
|
|
float *paint_mask = CustomData_add_layer(&cddm->vertData,
|
2012-05-11 08:05:47 +00:00
|
|
|
CD_PAINT_MASK,
|
|
|
|
CD_CALLOC, NULL,
|
|
|
|
cddm->getNumVerts(cddm));
|
2012-05-10 20:34:23 +00:00
|
|
|
|
|
|
|
subsurf_copy_grid_paint_mask(result, me->mpoly,
|
2012-05-11 08:05:47 +00:00
|
|
|
paint_mask, grid_paint_mask);
|
2012-05-10 20:34:23 +00:00
|
|
|
}
|
2012-03-14 06:32:13 +00:00
|
|
|
}
|
|
|
|
|
2010-04-11 22:12:30 +00:00
|
|
|
result->release(result);
|
2012-05-06 13:38:33 +00:00
|
|
|
result = cddm;
|
2010-04-11 22:12:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ModifierTypeInfo modifierType_Multires = {
|
|
|
|
/* name */ "Multires",
|
|
|
|
/* structName */ "MultiresModifierData",
|
|
|
|
/* structSize */ sizeof(MultiresModifierData),
|
|
|
|
/* type */ eModifierTypeType_Constructive,
|
2012-05-06 13:38:33 +00:00
|
|
|
/* flags */ eModifierTypeFlag_AcceptsMesh |
|
|
|
|
eModifierTypeFlag_SupportsMapping |
|
|
|
|
eModifierTypeFlag_RequiresOriginalData,
|
2010-04-11 22:12:30 +00:00
|
|
|
|
2018-05-08 15:04:10 +02:00
|
|
|
/* copyData */ modifier_copyData_generic,
|
2011-03-05 10:29:10 +00:00
|
|
|
/* deformVerts */ NULL,
|
|
|
|
/* deformMatrices */ NULL,
|
|
|
|
/* deformVertsEM */ NULL,
|
|
|
|
/* deformMatricesEM */ NULL,
|
2010-04-11 22:12:30 +00:00
|
|
|
/* applyModifier */ applyModifier,
|
2011-03-05 10:29:10 +00:00
|
|
|
/* applyModifierEM */ NULL,
|
2010-04-11 22:12:30 +00:00
|
|
|
/* initData */ initData,
|
2011-03-05 10:29:10 +00:00
|
|
|
/* requiredDataMask */ NULL,
|
|
|
|
/* freeData */ NULL,
|
|
|
|
/* isDisabled */ NULL,
|
|
|
|
/* updateDepgraph */ NULL,
|
Depsgraph: New dependency graph integration commit
This commit integrates the work done so far on the new dependency graph system,
where goal was to replace legacy depsgraph with the new one, supporting loads of
neat features like:
- More granular dependency relation nature, which solves issues with fake cycles
in the dependencies.
- Move towards all-animatable, by better integration of drivers into the system.
- Lay down some basis for upcoming copy-on-write, overrides and so on.
The new system is living side-by-side with the previous one and disabled by
default, so nothing will become suddenly broken. The way to enable new depsgraph
is to pass `--new-depsgraph` command line argument.
It's a bit early to consider the system production-ready, there are some TODOs
and issues were discovered during the merge period, they'll be addressed ASAP.
But it's important to merge, because it's the only way to attract artists to
really start testing this system.
There are number of assorted documents related on the design of the new system:
* http://wiki.blender.org/index.php/User:Aligorith/GSoC2013_Depsgraph#Design_Documents
* http://wiki.blender.org/index.php/User:Nazg-gul/DependencyGraph
There are also some user-related information online:
* http://code.blender.org/2015/02/blender-dependency-graph-branch-for-users/
* http://code.blender.org/2015/03/more-dependency-graph-tricks/
Kudos to everyone who was involved into the project:
- Joshua "Aligorith" Leung -- design specification, initial code
- Lukas "lukas_t" Toenne -- integrating code into blender, with further fixes
- Sergey "Sergey" "Sharybin" -- some mocking around, trying to wrap up the
project and so
- Bassam "slikdigit" Kurdali -- stressing the new system, reporting all the
issues and recording/writing documentation.
- Everyone else who i forgot to mention here :)
2015-05-12 15:05:57 +05:00
|
|
|
/* updateDepsgraph */ NULL,
|
2011-03-05 10:29:10 +00:00
|
|
|
/* dependsOnTime */ NULL,
|
|
|
|
/* dependsOnNormals */ NULL,
|
|
|
|
/* foreachObjectLink */ NULL,
|
|
|
|
/* foreachIDLink */ NULL,
|
2011-08-12 18:11:22 +00:00
|
|
|
/* foreachTexLink */ NULL,
|
2010-04-11 22:12:30 +00:00
|
|
|
};
|