2009-08-15 19:48:50 +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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-08-15 19:48:50 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2009 by Nicholas Bishop
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2011-02-23 18:03:40 +00:00
|
|
|
*/
|
2009-08-15 19:48:50 +00:00
|
|
|
|
2011-02-27 20:40:57 +00:00
|
|
|
/** \file blender/blenkernel/intern/paint.c
|
|
|
|
* \ingroup bke
|
|
|
|
*/
|
|
|
|
|
2013-04-13 00:43:49 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2009-08-16 19:50:00 +00:00
|
|
|
|
2013-05-15 08:54:05 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
2009-08-15 19:48:50 +00:00
|
|
|
#include "DNA_object_types.h"
|
2009-10-20 19:27:27 +00:00
|
|
|
#include "DNA_mesh_types.h"
|
2012-03-14 06:31:38 +00:00
|
|
|
#include "DNA_meshdata_types.h"
|
2014-05-06 23:30:51 +03:00
|
|
|
#include "DNA_modifier_types.h"
|
2009-08-16 19:50:00 +00:00
|
|
|
#include "DNA_scene_types.h"
|
2010-08-04 04:01:27 +00:00
|
|
|
#include "DNA_brush_types.h"
|
2012-10-29 19:47:26 +00:00
|
|
|
#include "DNA_space_types.h"
|
2009-08-15 19:48:50 +00:00
|
|
|
|
2012-03-14 06:31:38 +00:00
|
|
|
#include "BLI_bitmap.h"
|
2011-01-07 18:36:47 +00:00
|
|
|
#include "BLI_utildefines.h"
|
2013-03-13 03:46:22 +00:00
|
|
|
#include "BLI_math_vector.h"
|
2014-07-21 12:02:05 +02:00
|
|
|
#include "BLI_listbase.h"
|
2011-01-07 18:36:47 +00:00
|
|
|
|
2009-08-16 19:50:00 +00:00
|
|
|
#include "BKE_brush.h"
|
2015-02-11 15:07:04 +01:00
|
|
|
#include "BKE_colortools.h"
|
2014-07-21 12:02:05 +02:00
|
|
|
#include "BKE_main.h"
|
2012-06-04 07:29:45 +00:00
|
|
|
#include "BKE_context.h"
|
2014-05-06 23:30:51 +03:00
|
|
|
#include "BKE_crazyspace.h"
|
2013-05-15 08:54:05 +00:00
|
|
|
#include "BKE_depsgraph.h"
|
2013-02-05 12:46:15 +00:00
|
|
|
#include "BKE_global.h"
|
2013-05-15 08:54:05 +00:00
|
|
|
#include "BKE_image.h"
|
2014-05-06 23:30:51 +03:00
|
|
|
#include "BKE_key.h"
|
2009-08-17 15:05:18 +00:00
|
|
|
#include "BKE_library.h"
|
2014-05-06 23:30:51 +03:00
|
|
|
#include "BKE_mesh.h"
|
|
|
|
#include "BKE_modifier.h"
|
2013-05-18 10:24:34 +00:00
|
|
|
#include "BKE_object.h"
|
2009-08-15 19:48:50 +00:00
|
|
|
#include "BKE_paint.h"
|
2013-05-15 08:54:05 +00:00
|
|
|
#include "BKE_pbvh.h"
|
2012-03-14 06:31:38 +00:00
|
|
|
#include "BKE_subsurf.h"
|
2009-08-15 19:48:50 +00:00
|
|
|
|
2013-01-19 16:10:21 +00:00
|
|
|
#include "bmesh.h"
|
|
|
|
|
2009-08-20 16:00:17 +00:00
|
|
|
const char PAINT_CURSOR_SCULPT[3] = {255, 100, 100};
|
|
|
|
const char PAINT_CURSOR_VERTEX_PAINT[3] = {255, 255, 255};
|
|
|
|
const char PAINT_CURSOR_WEIGHT_PAINT[3] = {200, 200, 255};
|
|
|
|
const char PAINT_CURSOR_TEXTURE_PAINT[3] = {255, 255, 255};
|
|
|
|
|
2013-04-16 15:02:41 +00:00
|
|
|
static OverlayControlFlags overlay_flags = 0;
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
|
2013-06-06 06:02:46 +00:00
|
|
|
void BKE_paint_invalidate_overlay_tex(Scene *scene, const Tex *tex)
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
{
|
|
|
|
Paint *p = BKE_paint_get_active(scene);
|
|
|
|
Brush *br = p->brush;
|
|
|
|
|
2013-04-16 14:00:18 +00:00
|
|
|
if (!br)
|
|
|
|
return;
|
|
|
|
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
if (br->mtex.tex == tex)
|
|
|
|
overlay_flags |= PAINT_INVALID_OVERLAY_TEXTURE_PRIMARY;
|
|
|
|
if (br->mask_mtex.tex == tex)
|
|
|
|
overlay_flags |= PAINT_INVALID_OVERLAY_TEXTURE_SECONDARY;
|
|
|
|
}
|
|
|
|
|
2013-06-06 06:02:46 +00:00
|
|
|
void BKE_paint_invalidate_cursor_overlay(Scene *scene, CurveMapping *curve)
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
{
|
|
|
|
Paint *p = BKE_paint_get_active(scene);
|
|
|
|
Brush *br = p->brush;
|
|
|
|
|
2013-04-16 14:00:18 +00:00
|
|
|
if (br && br->curve == curve)
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
overlay_flags |= PAINT_INVALID_OVERLAY_CURVE;
|
|
|
|
}
|
|
|
|
|
2013-04-13 00:43:49 +00:00
|
|
|
void BKE_paint_invalidate_overlay_all(void)
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
{
|
2013-04-13 00:43:49 +00:00
|
|
|
overlay_flags |= (PAINT_INVALID_OVERLAY_TEXTURE_SECONDARY |
|
|
|
|
PAINT_INVALID_OVERLAY_TEXTURE_PRIMARY |
|
|
|
|
PAINT_INVALID_OVERLAY_CURVE);
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
}
|
|
|
|
|
2013-04-16 15:02:41 +00:00
|
|
|
OverlayControlFlags BKE_paint_get_overlay_flags(void)
|
2013-04-13 00:43:49 +00:00
|
|
|
{
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
return overlay_flags;
|
|
|
|
}
|
|
|
|
|
2013-04-23 00:32:51 +00:00
|
|
|
void BKE_paint_set_overlay_override(OverlayFlags flags)
|
2013-04-16 15:02:41 +00:00
|
|
|
{
|
2013-04-23 00:32:51 +00:00
|
|
|
if (flags & BRUSH_OVERLAY_OVERRIDE_MASK) {
|
|
|
|
if (flags & BRUSH_OVERLAY_CURSOR_OVERRIDE_ON_STROKE)
|
|
|
|
overlay_flags |= PAINT_OVERLAY_OVERRIDE_CURSOR;
|
|
|
|
if (flags & BRUSH_OVERLAY_PRIMARY_OVERRIDE_ON_STROKE)
|
|
|
|
overlay_flags |= PAINT_OVERLAY_OVERRIDE_PRIMARY;
|
|
|
|
if (flags & BRUSH_OVERLAY_SECONDARY_OVERRIDE_ON_STROKE)
|
|
|
|
overlay_flags |= PAINT_OVERLAY_OVERRIDE_SECONDARY;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
overlay_flags &= ~(PAINT_OVERRIDE_MASK);
|
|
|
|
}
|
2013-04-16 15:02:41 +00:00
|
|
|
}
|
|
|
|
|
2013-04-22 20:46:18 +00:00
|
|
|
void BKE_paint_reset_overlay_invalid(OverlayControlFlags flag)
|
2013-04-13 00:43:49 +00:00
|
|
|
{
|
2013-04-22 20:46:18 +00:00
|
|
|
overlay_flags &= ~(flag);
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 21:37:38 +03:00
|
|
|
Paint *BKE_paint_get_active_from_paintmode(Scene *sce, PaintMode mode)
|
|
|
|
{
|
|
|
|
if (sce) {
|
|
|
|
ToolSettings *ts = sce->toolsettings;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case ePaintSculpt:
|
|
|
|
return &ts->sculpt->paint;
|
|
|
|
case ePaintVertex:
|
|
|
|
return &ts->vpaint->paint;
|
|
|
|
case ePaintWeight:
|
|
|
|
return &ts->wpaint->paint;
|
|
|
|
case ePaintTexture2D:
|
|
|
|
case ePaintTextureProjective:
|
|
|
|
return &ts->imapaint.paint;
|
|
|
|
case ePaintSculptUV:
|
|
|
|
return &ts->uvsculpt->paint;
|
|
|
|
case ePaintInvalid:
|
|
|
|
return NULL;
|
|
|
|
default:
|
|
|
|
return &ts->imapaint.paint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
|
|
|
|
Paint *BKE_paint_get_active(Scene *sce)
|
2009-08-16 19:50:00 +00:00
|
|
|
{
|
2012-03-24 06:18:31 +00:00
|
|
|
if (sce) {
|
2009-08-17 02:49:31 +00:00
|
|
|
ToolSettings *ts = sce->toolsettings;
|
2009-09-16 19:27:08 +00:00
|
|
|
|
2012-03-24 06:18:31 +00:00
|
|
|
if (sce->basact && sce->basact->object) {
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (sce->basact->object->mode) {
|
2012-05-11 08:05:47 +00:00
|
|
|
case OB_MODE_SCULPT:
|
|
|
|
return &ts->sculpt->paint;
|
|
|
|
case OB_MODE_VERTEX_PAINT:
|
|
|
|
return &ts->vpaint->paint;
|
|
|
|
case OB_MODE_WEIGHT_PAINT:
|
|
|
|
return &ts->wpaint->paint;
|
|
|
|
case OB_MODE_TEXTURE_PAINT:
|
2012-01-17 16:31:13 +00:00
|
|
|
return &ts->imapaint.paint;
|
2012-05-11 08:05:47 +00:00
|
|
|
case OB_MODE_EDIT:
|
|
|
|
if (ts->use_uv_sculpt)
|
|
|
|
return &ts->uvsculpt->paint;
|
2013-07-21 08:16:37 +00:00
|
|
|
return &ts->imapaint.paint;
|
2009-09-16 19:27:08 +00:00
|
|
|
}
|
2009-08-16 19:50:00 +00:00
|
|
|
}
|
2009-09-16 19:27:08 +00:00
|
|
|
|
|
|
|
/* default to image paint */
|
|
|
|
return &ts->imapaint.paint;
|
2009-08-16 19:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
Paint *BKE_paint_get_active_from_context(const bContext *C)
|
2012-06-04 07:29:45 +00:00
|
|
|
{
|
|
|
|
Scene *sce = CTX_data_scene(C);
|
2012-10-29 19:47:26 +00:00
|
|
|
SpaceImage *sima;
|
2012-06-04 07:29:45 +00:00
|
|
|
|
|
|
|
if (sce) {
|
|
|
|
ToolSettings *ts = sce->toolsettings;
|
|
|
|
Object *obact = NULL;
|
|
|
|
|
|
|
|
if (sce->basact && sce->basact->object)
|
|
|
|
obact = sce->basact->object;
|
|
|
|
|
2012-10-29 19:47:26 +00:00
|
|
|
if ((sima = CTX_wm_space_image(C)) != NULL) {
|
2012-06-18 14:08:54 +00:00
|
|
|
if (obact && obact->mode == OB_MODE_EDIT) {
|
2012-10-29 19:47:26 +00:00
|
|
|
if (sima->mode == SI_MODE_PAINT)
|
2012-06-04 07:29:45 +00:00
|
|
|
return &ts->imapaint.paint;
|
2012-10-29 19:47:26 +00:00
|
|
|
else if (ts->use_uv_sculpt)
|
|
|
|
return &ts->uvsculpt->paint;
|
2012-06-04 07:29:45 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
return &ts->imapaint.paint;
|
|
|
|
}
|
|
|
|
}
|
2012-06-04 07:44:57 +00:00
|
|
|
else if (obact) {
|
2012-06-04 07:29:45 +00:00
|
|
|
switch (obact->mode) {
|
|
|
|
case OB_MODE_SCULPT:
|
|
|
|
return &ts->sculpt->paint;
|
|
|
|
case OB_MODE_VERTEX_PAINT:
|
|
|
|
return &ts->vpaint->paint;
|
|
|
|
case OB_MODE_WEIGHT_PAINT:
|
|
|
|
return &ts->wpaint->paint;
|
|
|
|
case OB_MODE_TEXTURE_PAINT:
|
|
|
|
return &ts->imapaint.paint;
|
|
|
|
case OB_MODE_EDIT:
|
|
|
|
if (ts->use_uv_sculpt)
|
|
|
|
return &ts->uvsculpt->paint;
|
2013-07-21 08:16:37 +00:00
|
|
|
return &ts->imapaint.paint;
|
2013-06-20 23:20:33 +00:00
|
|
|
default:
|
|
|
|
return &ts->imapaint.paint;
|
2012-06-04 07:29:45 +00:00
|
|
|
}
|
2012-06-04 07:44:57 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-06-04 07:29:45 +00:00
|
|
|
/* default to image paint */
|
|
|
|
return &ts->imapaint.paint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
PaintMode BKE_paintmode_get_active_from_context(const bContext *C)
|
2013-03-06 22:54:44 +00:00
|
|
|
{
|
|
|
|
Scene *sce = CTX_data_scene(C);
|
|
|
|
SpaceImage *sima;
|
|
|
|
|
|
|
|
if (sce) {
|
|
|
|
ToolSettings *ts = sce->toolsettings;
|
|
|
|
Object *obact = NULL;
|
|
|
|
|
|
|
|
if (sce->basact && sce->basact->object)
|
|
|
|
obact = sce->basact->object;
|
|
|
|
|
|
|
|
if ((sima = CTX_wm_space_image(C)) != NULL) {
|
|
|
|
if (obact && obact->mode == OB_MODE_EDIT) {
|
|
|
|
if (sima->mode == SI_MODE_PAINT)
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintTexture2D;
|
2013-03-06 22:54:44 +00:00
|
|
|
else if (ts->use_uv_sculpt)
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintSculptUV;
|
2013-03-06 22:54:44 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintTexture2D;
|
2013-03-06 22:54:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (obact) {
|
|
|
|
switch (obact->mode) {
|
|
|
|
case OB_MODE_SCULPT:
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintSculpt;
|
2013-03-06 22:54:44 +00:00
|
|
|
case OB_MODE_VERTEX_PAINT:
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintVertex;
|
2013-03-06 22:54:44 +00:00
|
|
|
case OB_MODE_WEIGHT_PAINT:
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintWeight;
|
2013-03-06 22:54:44 +00:00
|
|
|
case OB_MODE_TEXTURE_PAINT:
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintTextureProjective;
|
2013-03-06 22:54:44 +00:00
|
|
|
case OB_MODE_EDIT:
|
|
|
|
if (ts->use_uv_sculpt)
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintSculptUV;
|
|
|
|
return ePaintTexture2D;
|
2013-06-20 23:20:33 +00:00
|
|
|
default:
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintTexture2D;
|
2013-03-06 22:54:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* default to image paint */
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintTexture2D;
|
2013-03-06 22:54:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-31 21:37:38 +03:00
|
|
|
return ePaintInvalid;
|
2013-03-06 22:54:44 +00:00
|
|
|
}
|
|
|
|
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
Brush *BKE_paint_brush(Paint *p)
|
2009-08-16 19:50:00 +00:00
|
|
|
{
|
2010-08-04 12:18:07 +00:00
|
|
|
return p ? p->brush : NULL;
|
2009-08-16 19:50:00 +00:00
|
|
|
}
|
|
|
|
|
Paint refactoring commit, non-disruptive (in theory :p)
* Fix precision overflow issue with overlay previews,
* Expose alpha mask mapping to UI (still not functional but coming soon).
* More overlay refactoring:
Overlay now does minimal checking for texture refresh.
Instead, we now have invalidation flags to set an aspect of the brush
overlay as invalid. This is necessary because this way we will be able to
separate and preview different brush attributes on the overlays, using
different textures:
These attributes/aspects are:
Primary texture (main texture for sculpt, vertex, imapaint)
Secondary texture (mask/alpha texture for imapaint)
Cursor texture (cursor texture. It involves brush strength and curves)
Modified the relevant RNA property update functions and C update callback
functions to call the relevant cursor invalidation functions instead
of checking every frame for multiple properties.
Properties that affect this are:
Image changes, if image is used by current brush,
Texture slot changes, similarly
Curve changes,
Object mode change invalidates the cursor
Paint tool change invalidates the cursor.
These changes give slightly more invalidation cases than simply
comparing the relevant properties each frame, but these do not occur in
performance critical moments and it's a much more elegant system than
adding more variables to check per frame each time we add something on
the system.
2013-04-12 17:21:31 +00:00
|
|
|
void BKE_paint_brush_set(Paint *p, Brush *br)
|
2009-08-16 19:50:00 +00:00
|
|
|
{
|
2012-03-24 06:18:31 +00:00
|
|
|
if (p) {
|
2011-06-27 04:05:19 +00:00
|
|
|
id_us_min((ID *)p->brush);
|
|
|
|
id_us_plus((ID *)br);
|
2012-05-11 08:05:47 +00:00
|
|
|
p->brush = br;
|
2011-06-27 04:05:19 +00:00
|
|
|
}
|
2009-08-16 19:50:00 +00:00
|
|
|
}
|
|
|
|
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
/** Free (or release) any data used by this paint curve (does not free the pcurve itself). */
|
2014-07-21 12:02:05 +02:00
|
|
|
void BKE_paint_curve_free(PaintCurve *pc)
|
|
|
|
{
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
MEM_SAFE_FREE(pc->points);
|
|
|
|
pc->tot_points = 0;
|
2014-07-21 12:02:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PaintCurve *BKE_paint_curve_add(Main *bmain, const char *name)
|
|
|
|
{
|
|
|
|
PaintCurve *pc;
|
|
|
|
|
|
|
|
pc = BKE_libblock_alloc(bmain, ID_PC, name);
|
|
|
|
|
|
|
|
return pc;
|
|
|
|
}
|
|
|
|
|
2016-07-28 14:40:26 +02:00
|
|
|
PaintCurve *BKE_paint_curve_copy(Main *bmain, PaintCurve *pc)
|
|
|
|
{
|
|
|
|
PaintCurve *pc_new;
|
|
|
|
|
|
|
|
pc_new = BKE_libblock_copy(bmain, &pc->id);
|
|
|
|
|
|
|
|
if (pc->tot_points != 0) {
|
|
|
|
pc_new->points = MEM_dupallocN(pc->points);
|
|
|
|
}
|
|
|
|
|
|
|
|
BKE_id_copy_ensure_local(bmain, &pc->id, &pc_new->id);
|
|
|
|
|
|
|
|
return pc_new;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_paint_curve_make_local(Main *bmain, PaintCurve *pc, const bool lib_local)
|
|
|
|
{
|
|
|
|
BKE_id_make_local_generic(bmain, &pc->id, true, lib_local);
|
|
|
|
}
|
|
|
|
|
2014-07-21 12:02:05 +02:00
|
|
|
Palette *BKE_paint_palette(Paint *p)
|
|
|
|
{
|
|
|
|
return p ? p->palette : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_paint_palette_set(Paint *p, Palette *palette)
|
|
|
|
{
|
|
|
|
if (p) {
|
|
|
|
id_us_min((ID *)p->palette);
|
|
|
|
id_us_plus((ID *)palette);
|
|
|
|
p->palette = palette;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_paint_curve_set(Brush *br, PaintCurve *pc)
|
|
|
|
{
|
|
|
|
if (br) {
|
|
|
|
id_us_min((ID *)br->paint_curve);
|
|
|
|
id_us_plus((ID *)pc);
|
|
|
|
br->paint_curve = pc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-13 19:27:10 +10:00
|
|
|
void BKE_paint_curve_clamp_endpoint_add_index(PaintCurve *pc, const int add_index)
|
|
|
|
{
|
|
|
|
pc->add_index = (add_index || pc->tot_points == 1) ? (add_index + 1) : 0;
|
|
|
|
}
|
|
|
|
|
2014-07-21 12:02:05 +02:00
|
|
|
/* remove colour from palette. Must be certain color is inside the palette! */
|
2015-03-20 06:07:22 +11:00
|
|
|
void BKE_palette_color_remove(Palette *palette, PaletteColor *color)
|
2014-07-21 12:02:05 +02:00
|
|
|
{
|
2015-03-18 15:09:04 +11:00
|
|
|
if (BLI_listbase_count_ex(&palette->colors, palette->active_color) == palette->active_color) {
|
|
|
|
palette->active_color--;
|
|
|
|
}
|
|
|
|
|
|
|
|
BLI_remlink(&palette->colors, color);
|
|
|
|
|
|
|
|
if (palette->active_color < 0 && !BLI_listbase_is_empty(&palette->colors)) {
|
|
|
|
palette->active_color = 0;
|
|
|
|
}
|
|
|
|
|
2015-03-20 06:07:22 +11:00
|
|
|
MEM_freeN(color);
|
2015-03-18 15:09:04 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_palette_clear(Palette *palette)
|
|
|
|
{
|
|
|
|
BLI_freelistN(&palette->colors);
|
|
|
|
palette->active_color = 0;
|
|
|
|
}
|
|
|
|
|
2014-07-21 12:02:05 +02:00
|
|
|
Palette *BKE_palette_add(Main *bmain, const char *name)
|
|
|
|
{
|
|
|
|
Palette *palette;
|
|
|
|
|
|
|
|
palette = BKE_libblock_alloc(bmain, ID_PAL, name);
|
|
|
|
|
|
|
|
/* enable fake user by default */
|
2015-11-09 20:59:42 +01:00
|
|
|
id_fake_user_set(&palette->id);
|
2014-07-21 12:02:05 +02:00
|
|
|
|
|
|
|
return palette;
|
|
|
|
}
|
|
|
|
|
2016-07-28 14:40:26 +02:00
|
|
|
Palette *BKE_palette_copy(Main *bmain, Palette *palette)
|
|
|
|
{
|
|
|
|
Palette *palette_new;
|
|
|
|
|
|
|
|
palette_new = BKE_libblock_copy(bmain, &palette->id);
|
|
|
|
|
|
|
|
BLI_duplicatelist(&palette_new->colors, &palette->colors);
|
|
|
|
|
|
|
|
BKE_id_copy_ensure_local(bmain, &palette->id, &palette_new->id);
|
|
|
|
|
|
|
|
return palette_new;
|
|
|
|
}
|
|
|
|
|
2016-10-18 09:25:14 -06:00
|
|
|
void BKE_palette_make_local(Main *bmain, Palette *palette, const bool lib_local)
|
2016-07-28 14:40:26 +02:00
|
|
|
{
|
|
|
|
BKE_id_make_local_generic(bmain, &palette->id, true, lib_local);
|
|
|
|
}
|
|
|
|
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
/** Free (or release) any data used by this palette (does not free the palette itself). */
|
2014-07-21 12:02:05 +02:00
|
|
|
void BKE_palette_free(Palette *palette)
|
|
|
|
{
|
|
|
|
BLI_freelistN(&palette->colors);
|
|
|
|
}
|
|
|
|
|
|
|
|
PaletteColor *BKE_palette_color_add(Palette *palette)
|
|
|
|
{
|
|
|
|
PaletteColor *color = MEM_callocN(sizeof(*color), "Pallete Color");
|
|
|
|
BLI_addtail(&palette->colors, color);
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BKE_palette_is_empty(const struct Palette *palette)
|
|
|
|
{
|
|
|
|
return BLI_listbase_is_empty(&palette->colors);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-03 20:26:53 +00:00
|
|
|
/* are we in vertex paint or weight pain face select mode? */
|
2014-02-26 16:00:54 +11:00
|
|
|
bool BKE_paint_select_face_test(Object *ob)
|
2009-08-15 19:48:50 +00:00
|
|
|
{
|
2011-12-03 20:26:53 +00:00
|
|
|
return ( (ob != NULL) &&
|
|
|
|
(ob->type == OB_MESH) &&
|
|
|
|
(ob->data != NULL) &&
|
2012-12-22 14:25:34 +00:00
|
|
|
(((Mesh *)ob->data)->editflag & ME_EDIT_PAINT_FACE_SEL) &&
|
2012-05-11 08:05:47 +00:00
|
|
|
(ob->mode & (OB_MODE_VERTEX_PAINT | OB_MODE_WEIGHT_PAINT | OB_MODE_TEXTURE_PAINT))
|
2011-12-03 20:26:53 +00:00
|
|
|
);
|
2009-08-15 19:48:50 +00:00
|
|
|
}
|
2011-09-18 17:10:28 +00:00
|
|
|
|
2011-12-03 20:26:53 +00:00
|
|
|
/* are we in weight paint vertex select mode? */
|
2014-02-26 16:00:54 +11:00
|
|
|
bool BKE_paint_select_vert_test(Object *ob)
|
2011-07-12 19:06:06 +00:00
|
|
|
{
|
2011-12-03 20:26:53 +00:00
|
|
|
return ( (ob != NULL) &&
|
|
|
|
(ob->type == OB_MESH) &&
|
|
|
|
(ob->data != NULL) &&
|
2012-12-22 14:25:34 +00:00
|
|
|
(((Mesh *)ob->data)->editflag & ME_EDIT_PAINT_VERT_SEL) &&
|
2011-12-03 20:26:53 +00:00
|
|
|
(ob->mode & OB_MODE_WEIGHT_PAINT)
|
|
|
|
);
|
2011-07-12 19:06:06 +00:00
|
|
|
}
|
2011-12-03 20:26:53 +00:00
|
|
|
|
2014-02-26 16:00:54 +11:00
|
|
|
/**
|
|
|
|
* used to check if selection is possible
|
|
|
|
* (when we don't care if its face or vert)
|
|
|
|
*/
|
|
|
|
bool BKE_paint_select_elem_test(Object *ob)
|
|
|
|
{
|
|
|
|
return (BKE_paint_select_vert_test(ob) ||
|
|
|
|
BKE_paint_select_face_test(ob));
|
|
|
|
}
|
|
|
|
|
2015-02-11 15:07:04 +01:00
|
|
|
void BKE_paint_cavity_curve_preset(Paint *p, int preset)
|
|
|
|
{
|
|
|
|
CurveMap *cm = NULL;
|
|
|
|
|
|
|
|
if (!p->cavity_curve)
|
|
|
|
p->cavity_curve = curvemapping_add(1, 0, 0, 1, 1);
|
|
|
|
|
|
|
|
cm = p->cavity_curve->cm;
|
|
|
|
cm->flag &= ~CUMA_EXTEND_EXTRAPOLATE;
|
|
|
|
|
|
|
|
p->cavity_curve->preset = preset;
|
|
|
|
curvemap_reset(cm, &p->cavity_curve->clipr, p->cavity_curve->preset, CURVEMAP_SLOPE_POSITIVE);
|
|
|
|
curvemapping_changed(p->cavity_curve, false);
|
|
|
|
}
|
|
|
|
|
2015-08-31 21:37:38 +03:00
|
|
|
short BKE_paint_object_mode_from_paint_mode(PaintMode mode)
|
|
|
|
{
|
|
|
|
switch (mode) {
|
|
|
|
case ePaintSculpt:
|
|
|
|
return OB_MODE_SCULPT;
|
|
|
|
case ePaintVertex:
|
|
|
|
return OB_MODE_VERTEX_PAINT;
|
|
|
|
case ePaintWeight:
|
|
|
|
return OB_MODE_WEIGHT_PAINT;
|
|
|
|
case ePaintTextureProjective:
|
|
|
|
return OB_MODE_TEXTURE_PAINT;
|
|
|
|
case ePaintTexture2D:
|
|
|
|
return OB_MODE_TEXTURE_PAINT;
|
|
|
|
case ePaintSculptUV:
|
|
|
|
return OB_MODE_EDIT;
|
|
|
|
case ePaintInvalid:
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_paint_init(Scene *sce, PaintMode mode, const char col[3])
|
2009-08-17 02:49:31 +00:00
|
|
|
{
|
2015-08-31 21:37:38 +03:00
|
|
|
UnifiedPaintSettings *ups = &sce->toolsettings->unified_paint_settings;
|
2009-08-17 02:49:31 +00:00
|
|
|
Brush *brush;
|
2015-08-31 21:37:38 +03:00
|
|
|
Paint *paint = BKE_paint_get_active_from_paintmode(sce, mode);
|
2009-08-17 02:49:31 +00:00
|
|
|
|
|
|
|
/* If there's no brush, create one */
|
2015-08-31 21:37:38 +03:00
|
|
|
brush = BKE_paint_brush(paint);
|
|
|
|
if (brush == NULL) {
|
|
|
|
short ob_mode = BKE_paint_object_mode_from_paint_mode(mode);
|
|
|
|
brush = BKE_brush_first_search(G.main, ob_mode);
|
|
|
|
|
|
|
|
if (!brush)
|
|
|
|
brush = BKE_brush_add(G.main, "Brush", ob_mode);
|
|
|
|
BKE_paint_brush_set(paint, brush);
|
|
|
|
}
|
2009-08-20 05:13:07 +00:00
|
|
|
|
2015-08-31 21:37:38 +03:00
|
|
|
memcpy(paint->paint_cursor_col, col, 3);
|
|
|
|
paint->paint_cursor_col[3] = 128;
|
2014-12-29 11:35:22 +01:00
|
|
|
ups->last_stroke_valid = false;
|
|
|
|
zero_v3(ups->average_stroke_accum);
|
|
|
|
ups->average_stroke_counter = 0;
|
2015-08-31 21:37:38 +03:00
|
|
|
if (!paint->cavity_curve)
|
|
|
|
BKE_paint_cavity_curve_preset(paint, CURVE_PRESET_LINE);
|
2009-08-17 02:49:31 +00:00
|
|
|
}
|
|
|
|
|
2012-07-25 22:37:52 +00:00
|
|
|
void BKE_paint_free(Paint *paint)
|
2009-08-16 19:50:00 +00:00
|
|
|
{
|
2015-02-11 15:07:04 +01:00
|
|
|
curvemapping_free(paint->cavity_curve);
|
2009-08-16 19:50:00 +00:00
|
|
|
}
|
|
|
|
|
2011-06-27 04:05:19 +00:00
|
|
|
/* called when copying scene settings, so even if 'src' and 'tar' are the same
|
2012-09-26 20:05:38 +00:00
|
|
|
* still do a id_us_plus(), rather then if we were copying between 2 existing
|
2011-06-27 04:05:19 +00:00
|
|
|
* scenes where a matching value should decrease the existing user count as
|
|
|
|
* with paint_brush_set() */
|
2012-07-25 22:37:52 +00:00
|
|
|
void BKE_paint_copy(Paint *src, Paint *tar)
|
2009-08-16 19:50:00 +00:00
|
|
|
{
|
2012-05-11 08:05:47 +00:00
|
|
|
tar->brush = src->brush;
|
2011-06-27 04:05:19 +00:00
|
|
|
id_us_plus((ID *)tar->brush);
|
2014-07-21 12:02:05 +02:00
|
|
|
id_us_plus((ID *)tar->palette);
|
2015-02-11 15:07:04 +01:00
|
|
|
tar->cavity_curve = curvemapping_copy(src->cavity_curve);
|
2010-07-26 02:35:43 +00:00
|
|
|
}
|
2012-03-14 06:31:38 +00:00
|
|
|
|
2014-12-29 11:35:22 +01:00
|
|
|
void BKE_paint_stroke_get_average(Scene *scene, Object *ob, float stroke[3])
|
|
|
|
{
|
|
|
|
UnifiedPaintSettings *ups = &scene->toolsettings->unified_paint_settings;
|
|
|
|
if (ups->last_stroke_valid && ups->average_stroke_counter > 0) {
|
|
|
|
float fac = 1.0f / ups->average_stroke_counter;
|
|
|
|
mul_v3_v3fl(stroke, ups->average_stroke_accum, fac);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
copy_v3_v3(stroke, ob->obmat[3]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-14 06:31:38 +00:00
|
|
|
/* returns non-zero if any of the face's vertices
|
2012-04-22 11:54:53 +00:00
|
|
|
* are hidden, zero otherwise */
|
2015-07-17 03:36:03 +10:00
|
|
|
bool paint_is_face_hidden(const MLoopTri *lt, const MVert *mvert, const MLoop *mloop)
|
2012-03-14 06:31:38 +00:00
|
|
|
{
|
2015-07-17 03:36:03 +10:00
|
|
|
return ((mvert[mloop[lt->tri[0]].v].flag & ME_HIDE) ||
|
|
|
|
(mvert[mloop[lt->tri[1]].v].flag & ME_HIDE) ||
|
|
|
|
(mvert[mloop[lt->tri[2]].v].flag & ME_HIDE));
|
2012-03-14 06:31:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* returns non-zero if any of the corners of the grid
|
2012-12-29 01:54:58 +00:00
|
|
|
* face whose inner corner is at (x, y) are hidden,
|
2012-04-22 11:54:53 +00:00
|
|
|
* zero otherwise */
|
2014-01-22 02:48:11 +11:00
|
|
|
bool paint_is_grid_face_hidden(const unsigned int *grid_hidden,
|
2012-05-11 08:05:47 +00:00
|
|
|
int gridsize, int x, int y)
|
2012-03-14 06:31:38 +00:00
|
|
|
{
|
|
|
|
/* skip face if any of its corners are hidden */
|
2014-06-06 16:05:15 +10:00
|
|
|
return (BLI_BITMAP_TEST(grid_hidden, y * gridsize + x) ||
|
|
|
|
BLI_BITMAP_TEST(grid_hidden, y * gridsize + x + 1) ||
|
|
|
|
BLI_BITMAP_TEST(grid_hidden, (y + 1) * gridsize + x + 1) ||
|
|
|
|
BLI_BITMAP_TEST(grid_hidden, (y + 1) * gridsize + x));
|
2012-03-14 06:31:38 +00:00
|
|
|
}
|
2012-05-10 20:33:55 +00:00
|
|
|
|
2014-04-01 11:34:00 +11:00
|
|
|
/* Return true if all vertices in the face are visible, false otherwise */
|
2014-01-22 02:48:11 +11:00
|
|
|
bool paint_is_bmesh_face_hidden(BMFace *f)
|
2013-01-19 16:10:21 +00:00
|
|
|
{
|
|
|
|
BMLoop *l_iter;
|
|
|
|
BMLoop *l_first;
|
|
|
|
|
|
|
|
l_iter = l_first = BM_FACE_FIRST_LOOP(f);
|
|
|
|
do {
|
|
|
|
if (BM_elem_flag_test(l_iter->v, BM_ELEM_HIDDEN)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} while ((l_iter = l_iter->next) != l_first);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-10 20:33:55 +00:00
|
|
|
float paint_grid_paint_mask(const GridPaintMask *gpm, unsigned level,
|
2012-05-11 08:05:47 +00:00
|
|
|
unsigned x, unsigned y)
|
2012-05-10 20:33:55 +00:00
|
|
|
{
|
2013-10-01 09:17:35 +00:00
|
|
|
int factor = BKE_ccg_factor(level, gpm->level);
|
|
|
|
int gridsize = BKE_ccg_gridsize(gpm->level);
|
2012-05-10 20:33:55 +00:00
|
|
|
|
2012-05-11 08:05:47 +00:00
|
|
|
return gpm->data[(y * factor) * gridsize + (x * factor)];
|
2012-05-10 20:33:55 +00:00
|
|
|
}
|
2013-03-13 03:46:22 +00:00
|
|
|
|
2014-07-21 20:23:17 +10:00
|
|
|
/* threshold to move before updating the brush rotation */
|
2013-03-13 03:46:22 +00:00
|
|
|
#define RAKE_THRESHHOLD 20
|
|
|
|
|
2015-05-07 18:10:34 +02:00
|
|
|
void paint_update_brush_rake_rotation(UnifiedPaintSettings *ups, Brush *brush, float rotation)
|
2013-03-13 03:46:22 +00:00
|
|
|
{
|
2014-12-26 23:51:27 +01:00
|
|
|
if (brush->mtex.brush_angle_mode & MTEX_ANGLE_RAKE)
|
|
|
|
ups->brush_rotation = rotation;
|
|
|
|
else
|
|
|
|
ups->brush_rotation = 0.0f;
|
2013-03-13 03:46:22 +00:00
|
|
|
|
2014-12-26 23:51:27 +01:00
|
|
|
if (brush->mask_mtex.brush_angle_mode & MTEX_ANGLE_RAKE)
|
|
|
|
ups->brush_rotation_sec = rotation;
|
|
|
|
else
|
|
|
|
ups->brush_rotation_sec = 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
void paint_calculate_rake_rotation(UnifiedPaintSettings *ups, Brush *brush, const float mouse_pos[2])
|
|
|
|
{
|
|
|
|
if ((brush->mtex.brush_angle_mode & MTEX_ANGLE_RAKE) || (brush->mask_mtex.brush_angle_mode & MTEX_ANGLE_RAKE)) {
|
|
|
|
const float r = RAKE_THRESHHOLD;
|
|
|
|
float rotation;
|
|
|
|
|
|
|
|
float dpos[2];
|
|
|
|
sub_v2_v2v2(dpos, ups->last_rake, mouse_pos);
|
|
|
|
|
|
|
|
if (len_squared_v2(dpos) >= r * r) {
|
|
|
|
rotation = atan2f(dpos[0], dpos[1]);
|
|
|
|
|
2015-05-07 15:03:55 +02:00
|
|
|
copy_v2_v2(ups->last_rake, mouse_pos);
|
2013-03-13 03:46:22 +00:00
|
|
|
|
2014-12-26 23:51:27 +01:00
|
|
|
ups->last_rake_angle = rotation;
|
2013-03-13 03:46:22 +00:00
|
|
|
|
2015-05-07 18:10:34 +02:00
|
|
|
paint_update_brush_rake_rotation(ups, brush, rotation);
|
2014-12-26 23:51:27 +01:00
|
|
|
}
|
|
|
|
/* make sure we reset here to the last rotation to avoid accumulating
|
|
|
|
* values in case a random rotation is also added */
|
|
|
|
else {
|
2015-05-07 18:10:34 +02:00
|
|
|
paint_update_brush_rake_rotation(ups, brush, ups->last_rake_angle);
|
2014-12-26 23:51:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-01-02 19:18:57 +11:00
|
|
|
ups->brush_rotation = ups->brush_rotation_sec = 0.0f;
|
2013-03-13 03:46:22 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-15 08:54:05 +00:00
|
|
|
|
2015-04-04 15:15:50 +11:00
|
|
|
void BKE_sculptsession_free_deformMats(SculptSession *ss)
|
2013-05-15 08:54:05 +00:00
|
|
|
{
|
2015-04-16 04:14:01 +10:00
|
|
|
MEM_SAFE_FREE(ss->orig_cos);
|
|
|
|
MEM_SAFE_FREE(ss->deform_cos);
|
|
|
|
MEM_SAFE_FREE(ss->deform_imats);
|
2013-05-15 08:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Write out the sculpt dynamic-topology BMesh to the Mesh */
|
|
|
|
static void sculptsession_bm_to_me_update_data_only(Object *ob, bool reorder)
|
|
|
|
{
|
|
|
|
SculptSession *ss = ob->sculpt;
|
|
|
|
|
|
|
|
if (ss->bm) {
|
|
|
|
if (ob->data) {
|
|
|
|
BMIter iter;
|
|
|
|
BMFace *efa;
|
|
|
|
BM_ITER_MESH (efa, &iter, ss->bm, BM_FACES_OF_MESH) {
|
2014-04-07 17:00:08 +10:00
|
|
|
BM_elem_flag_set(efa, BM_ELEM_SMOOTH, ss->bm_smooth_shading);
|
2013-05-15 08:54:05 +00:00
|
|
|
}
|
|
|
|
if (reorder)
|
|
|
|
BM_log_mesh_elems_reorder(ss->bm, ss->bm_log);
|
2016-04-29 22:33:06 +10:00
|
|
|
BM_mesh_bm_to_me(ss->bm, ob->data, (&(struct BMeshToMeshParams){0}));
|
2013-05-15 08:54:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-07 02:59:23 +03:00
|
|
|
void BKE_sculptsession_bm_to_me(Object *ob, bool reorder)
|
2013-05-15 08:54:05 +00:00
|
|
|
{
|
|
|
|
if (ob && ob->sculpt) {
|
|
|
|
sculptsession_bm_to_me_update_data_only(ob, reorder);
|
|
|
|
|
|
|
|
/* ensure the objects DerivedMesh mesh doesn't hold onto arrays now realloc'd in the mesh [#34473] */
|
|
|
|
DAG_id_tag_update(&ob->id, OB_RECALC_DATA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-07 02:59:23 +03:00
|
|
|
void BKE_sculptsession_bm_to_me_for_render(Object *object)
|
2013-05-15 08:54:05 +00:00
|
|
|
{
|
|
|
|
if (object && object->sculpt) {
|
|
|
|
if (object->sculpt->bm) {
|
|
|
|
/* Ensure no points to old arrays are stored in DM
|
|
|
|
*
|
|
|
|
* Apparently, we could not use DAG_id_tag_update
|
|
|
|
* here because this will lead to the while object
|
|
|
|
* surface to disappear, so we'll release DM in place.
|
|
|
|
*/
|
2013-05-18 10:24:34 +00:00
|
|
|
BKE_object_free_derived_caches(object);
|
|
|
|
|
2013-05-15 08:54:05 +00:00
|
|
|
if (object->sculpt->pbvh) {
|
|
|
|
BKE_pbvh_free(object->sculpt->pbvh);
|
|
|
|
object->sculpt->pbvh = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
sculptsession_bm_to_me_update_data_only(object, false);
|
|
|
|
|
|
|
|
/* In contrast with sculptsession_bm_to_me no need in
|
|
|
|
* DAG tag update here - derived mesh was freed and
|
|
|
|
* old pointers are nowhere stored.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-04 15:15:50 +11:00
|
|
|
void BKE_sculptsession_free(Object *ob)
|
2013-05-15 08:54:05 +00:00
|
|
|
{
|
|
|
|
if (ob && ob->sculpt) {
|
|
|
|
SculptSession *ss = ob->sculpt;
|
|
|
|
DerivedMesh *dm = ob->derivedFinal;
|
|
|
|
|
|
|
|
if (ss->bm) {
|
2014-05-07 02:59:23 +03:00
|
|
|
BKE_sculptsession_bm_to_me(ob, true);
|
2013-05-15 08:54:05 +00:00
|
|
|
BM_mesh_free(ss->bm);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ss->pbvh)
|
|
|
|
BKE_pbvh_free(ss->pbvh);
|
|
|
|
if (ss->bm_log)
|
|
|
|
BM_log_free(ss->bm_log);
|
|
|
|
|
|
|
|
if (dm && dm->getPBVH)
|
|
|
|
dm->getPBVH(NULL, dm); /* signal to clear */
|
|
|
|
|
|
|
|
if (ss->texcache)
|
|
|
|
MEM_freeN(ss->texcache);
|
|
|
|
|
|
|
|
if (ss->tex_pool)
|
|
|
|
BKE_image_pool_free(ss->tex_pool);
|
|
|
|
|
|
|
|
if (ss->layer_co)
|
|
|
|
MEM_freeN(ss->layer_co);
|
|
|
|
|
|
|
|
if (ss->orig_cos)
|
|
|
|
MEM_freeN(ss->orig_cos);
|
|
|
|
if (ss->deform_cos)
|
|
|
|
MEM_freeN(ss->deform_cos);
|
|
|
|
if (ss->deform_imats)
|
|
|
|
MEM_freeN(ss->deform_imats);
|
|
|
|
|
|
|
|
MEM_freeN(ss);
|
|
|
|
|
|
|
|
ob->sculpt = NULL;
|
|
|
|
}
|
|
|
|
}
|
2014-05-06 23:30:51 +03:00
|
|
|
|
|
|
|
/* Sculpt mode handles multires differently from regular meshes, but only if
|
|
|
|
* it's the last modifier on the stack and it is not on the first level */
|
2014-05-07 02:59:23 +03:00
|
|
|
MultiresModifierData *BKE_sculpt_multires_active(Scene *scene, Object *ob)
|
2014-05-06 23:30:51 +03:00
|
|
|
{
|
|
|
|
Mesh *me = (Mesh *)ob->data;
|
|
|
|
ModifierData *md;
|
|
|
|
VirtualModifierData virtualModifierData;
|
|
|
|
|
|
|
|
if (ob->sculpt && ob->sculpt->bm) {
|
|
|
|
/* can't combine multires and dynamic topology */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!CustomData_get_layer(&me->ldata, CD_MDISPS)) {
|
|
|
|
/* multires can't work without displacement layer */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (md = modifiers_getVirtualModifierList(ob, &virtualModifierData); md; md = md->next) {
|
|
|
|
if (md->type == eModifierType_Multires) {
|
|
|
|
MultiresModifierData *mmd = (MultiresModifierData *)md;
|
|
|
|
|
|
|
|
if (!modifier_isEnabled(scene, md, eModifierMode_Realtime))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (mmd->sculptlvl > 0) return mmd;
|
|
|
|
else return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Checks if there are any supported deformation modifiers active */
|
|
|
|
static bool sculpt_modifiers_active(Scene *scene, Sculpt *sd, Object *ob)
|
|
|
|
{
|
|
|
|
ModifierData *md;
|
|
|
|
Mesh *me = (Mesh *)ob->data;
|
2014-05-07 02:59:23 +03:00
|
|
|
MultiresModifierData *mmd = BKE_sculpt_multires_active(scene, ob);
|
2014-05-06 23:30:51 +03:00
|
|
|
VirtualModifierData virtualModifierData;
|
|
|
|
|
|
|
|
if (mmd || ob->sculpt->bm)
|
2014-12-01 17:11:18 +01:00
|
|
|
return false;
|
2014-05-06 23:30:51 +03:00
|
|
|
|
|
|
|
/* non-locked shape keys could be handled in the same way as deformed mesh */
|
|
|
|
if ((ob->shapeflag & OB_SHAPE_LOCK) == 0 && me->key && ob->shapenr)
|
2014-12-01 17:11:18 +01:00
|
|
|
return true;
|
2014-05-06 23:30:51 +03:00
|
|
|
|
|
|
|
md = modifiers_getVirtualModifierList(ob, &virtualModifierData);
|
|
|
|
|
|
|
|
/* exception for shape keys because we can edit those */
|
|
|
|
for (; md; md = md->next) {
|
2015-03-30 21:17:07 +11:00
|
|
|
const ModifierTypeInfo *mti = modifierType_getInfo(md->type);
|
2014-05-06 23:30:51 +03:00
|
|
|
if (!modifier_isEnabled(scene, md, eModifierMode_Realtime)) continue;
|
2014-05-08 17:58:55 +03:00
|
|
|
if (ELEM(md->type, eModifierType_ShapeKey, eModifierType_Multires)) continue;
|
2014-05-06 23:30:51 +03:00
|
|
|
|
2014-12-01 17:11:18 +01:00
|
|
|
if (mti->type == eModifierTypeType_OnlyDeform) return true;
|
|
|
|
else if ((sd->flags & SCULPT_ONLY_DEFORM) == 0) return true;
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
|
2014-12-01 17:11:18 +01:00
|
|
|
return false;
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \param need_mask So the DerivedMesh thats returned has mask data
|
|
|
|
*/
|
2014-05-07 02:59:23 +03:00
|
|
|
void BKE_sculpt_update_mesh_elements(Scene *scene, Sculpt *sd, Object *ob,
|
2014-05-09 18:29:21 +10:00
|
|
|
bool need_pmap, bool need_mask)
|
2014-05-06 23:30:51 +03:00
|
|
|
{
|
|
|
|
DerivedMesh *dm;
|
|
|
|
SculptSession *ss = ob->sculpt;
|
|
|
|
Mesh *me = ob->data;
|
2014-05-07 02:59:23 +03:00
|
|
|
MultiresModifierData *mmd = BKE_sculpt_multires_active(scene, ob);
|
2014-05-06 23:30:51 +03:00
|
|
|
|
|
|
|
ss->modifiers_active = sculpt_modifiers_active(scene, sd, ob);
|
|
|
|
ss->show_diffuse_color = (sd->flags & SCULPT_SHOW_DIFFUSE) != 0;
|
|
|
|
|
|
|
|
if (need_mask) {
|
|
|
|
if (mmd == NULL) {
|
|
|
|
if (!CustomData_has_layer(&me->vdata, CD_PAINT_MASK)) {
|
2014-05-07 02:59:23 +03:00
|
|
|
BKE_sculpt_mask_layers_ensure(ob, NULL);
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!CustomData_has_layer(&me->ldata, CD_GRID_PAINT_MASK)) {
|
|
|
|
#if 1
|
2014-05-07 02:59:23 +03:00
|
|
|
BKE_sculpt_mask_layers_ensure(ob, mmd);
|
2014-05-06 23:30:51 +03:00
|
|
|
#else /* if we wanted to support adding mask data while multi-res painting, we would need to do this */
|
|
|
|
if ((ED_sculpt_mask_layers_ensure(ob, mmd) & ED_SCULPT_MASK_LAYER_CALC_LOOP)) {
|
|
|
|
/* remake the derived mesh */
|
|
|
|
ob->recalc |= OB_RECALC_DATA;
|
|
|
|
BKE_object_handle_update(scene, ob);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-31 16:19:58 +10:00
|
|
|
/* tessfaces aren't used and will become invalid */
|
|
|
|
BKE_mesh_tessface_clear(me);
|
2014-05-06 23:30:51 +03:00
|
|
|
|
2015-07-31 16:19:58 +10:00
|
|
|
ss->kb = (mmd == NULL) ? BKE_keyblock_from_object(ob) : NULL;
|
2014-05-06 23:30:51 +03:00
|
|
|
|
|
|
|
dm = mesh_get_derived_final(scene, ob, CD_MASK_BAREMESH);
|
|
|
|
|
|
|
|
if (mmd) {
|
|
|
|
ss->multires = mmd;
|
|
|
|
ss->totvert = dm->getNumVerts(dm);
|
|
|
|
ss->totpoly = dm->getNumPolys(dm);
|
|
|
|
ss->mvert = NULL;
|
|
|
|
ss->mpoly = NULL;
|
|
|
|
ss->mloop = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ss->totvert = me->totvert;
|
|
|
|
ss->totpoly = me->totpoly;
|
|
|
|
ss->mvert = me->mvert;
|
|
|
|
ss->mpoly = me->mpoly;
|
|
|
|
ss->mloop = me->mloop;
|
|
|
|
ss->multires = NULL;
|
|
|
|
ss->vmask = CustomData_get_layer(&me->vdata, CD_PAINT_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
ss->pbvh = dm->getPBVH(ob, dm);
|
|
|
|
ss->pmap = (need_pmap && dm->getPolyMap) ? dm->getPolyMap(ob, dm) : NULL;
|
|
|
|
|
|
|
|
pbvh_show_diffuse_color_set(ss->pbvh, ss->show_diffuse_color);
|
|
|
|
|
|
|
|
if (ss->modifiers_active) {
|
|
|
|
if (!ss->orig_cos) {
|
|
|
|
int a;
|
|
|
|
|
2015-04-04 15:15:50 +11:00
|
|
|
BKE_sculptsession_free_deformMats(ss);
|
2014-05-06 23:30:51 +03:00
|
|
|
|
2014-11-16 19:15:23 +01:00
|
|
|
ss->orig_cos = (ss->kb) ? BKE_keyblock_convert_to_vertcos(ob, ss->kb) : BKE_mesh_vertexCos_get(me, NULL);
|
2014-05-06 23:30:51 +03:00
|
|
|
|
2014-05-07 02:59:23 +03:00
|
|
|
BKE_crazyspace_build_sculpt(scene, ob, &ss->deform_imats, &ss->deform_cos);
|
2014-05-06 23:30:51 +03:00
|
|
|
BKE_pbvh_apply_vertCos(ss->pbvh, ss->deform_cos);
|
|
|
|
|
|
|
|
for (a = 0; a < me->totvert; ++a) {
|
|
|
|
invert_m3(ss->deform_imats[a]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-04-04 15:15:50 +11:00
|
|
|
BKE_sculptsession_free_deformMats(ss);
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
|
2014-05-15 17:45:35 +02:00
|
|
|
if (ss->kb != NULL && ss->deform_cos == NULL) {
|
2014-11-16 19:15:23 +01:00
|
|
|
ss->deform_cos = BKE_keyblock_convert_to_vertcos(ob, ss->kb);
|
2014-05-15 17:45:35 +02:00
|
|
|
}
|
2014-05-06 23:30:51 +03:00
|
|
|
|
2014-05-15 17:45:35 +02:00
|
|
|
/* if pbvh is deformed, key block is already applied to it */
|
|
|
|
if (ss->kb) {
|
|
|
|
bool pbvh_deformd = BKE_pbvh_isDeformed(ss->pbvh);
|
|
|
|
if (!pbvh_deformd || ss->deform_cos == NULL) {
|
2014-11-16 19:15:23 +01:00
|
|
|
float (*vertCos)[3] = BKE_keyblock_convert_to_vertcos(ob, ss->kb);
|
2014-05-15 17:45:35 +02:00
|
|
|
|
|
|
|
if (vertCos) {
|
|
|
|
if (!pbvh_deformd) {
|
|
|
|
/* apply shape keys coordinates to PBVH */
|
|
|
|
BKE_pbvh_apply_vertCos(ss->pbvh, vertCos);
|
|
|
|
}
|
|
|
|
if (ss->deform_cos == NULL) {
|
|
|
|
ss->deform_cos = vertCos;
|
|
|
|
}
|
|
|
|
if (vertCos != ss->deform_cos) {
|
|
|
|
MEM_freeN(vertCos);
|
|
|
|
}
|
|
|
|
}
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-07 02:59:23 +03:00
|
|
|
int BKE_sculpt_mask_layers_ensure(Object *ob, MultiresModifierData *mmd)
|
2014-05-06 23:30:51 +03:00
|
|
|
{
|
|
|
|
const float *paint_mask;
|
|
|
|
Mesh *me = ob->data;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
paint_mask = CustomData_get_layer(&me->vdata, CD_PAINT_MASK);
|
|
|
|
|
|
|
|
/* if multires is active, create a grid paint mask layer if there
|
|
|
|
* isn't one already */
|
|
|
|
if (mmd && !CustomData_has_layer(&me->ldata, CD_GRID_PAINT_MASK)) {
|
|
|
|
GridPaintMask *gmask;
|
|
|
|
int level = max_ii(1, mmd->sculptlvl);
|
|
|
|
int gridsize = BKE_ccg_gridsize(level);
|
|
|
|
int gridarea = gridsize * gridsize;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
gmask = CustomData_add_layer(&me->ldata, CD_GRID_PAINT_MASK,
|
2014-05-09 18:29:21 +10:00
|
|
|
CD_CALLOC, NULL, me->totloop);
|
2014-05-06 23:30:51 +03:00
|
|
|
|
|
|
|
for (i = 0; i < me->totloop; i++) {
|
|
|
|
GridPaintMask *gpm = &gmask[i];
|
|
|
|
|
|
|
|
gpm->level = level;
|
|
|
|
gpm->data = MEM_callocN(sizeof(float) * gridarea,
|
2014-05-09 18:29:21 +10:00
|
|
|
"GridPaintMask.data");
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if vertices already have mask, copy into multires data */
|
|
|
|
if (paint_mask) {
|
|
|
|
for (i = 0; i < me->totpoly; i++) {
|
|
|
|
const MPoly *p = &me->mpoly[i];
|
|
|
|
float avg = 0;
|
|
|
|
|
|
|
|
/* mask center */
|
|
|
|
for (j = 0; j < p->totloop; j++) {
|
|
|
|
const MLoop *l = &me->mloop[p->loopstart + j];
|
|
|
|
avg += paint_mask[l->v];
|
|
|
|
}
|
|
|
|
avg /= (float)p->totloop;
|
|
|
|
|
|
|
|
/* fill in multires mask corner */
|
|
|
|
for (j = 0; j < p->totloop; j++) {
|
|
|
|
GridPaintMask *gpm = &gmask[p->loopstart + j];
|
|
|
|
const MLoop *l = &me->mloop[p->loopstart + j];
|
|
|
|
const MLoop *prev = ME_POLY_LOOP_PREV(me->mloop, p, j);
|
|
|
|
const MLoop *next = ME_POLY_LOOP_NEXT(me->mloop, p, j);
|
|
|
|
|
|
|
|
gpm->data[0] = avg;
|
|
|
|
gpm->data[1] = (paint_mask[l->v] +
|
2014-05-09 18:29:21 +10:00
|
|
|
paint_mask[next->v]) * 0.5f;
|
2014-05-06 23:30:51 +03:00
|
|
|
gpm->data[2] = (paint_mask[l->v] +
|
2014-05-09 18:29:21 +10:00
|
|
|
paint_mask[prev->v]) * 0.5f;
|
2014-05-06 23:30:51 +03:00
|
|
|
gpm->data[3] = paint_mask[l->v];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-07 02:59:23 +03:00
|
|
|
ret |= SCULPT_MASK_LAYER_CALC_LOOP;
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create vertex paint mask layer if there isn't one already */
|
|
|
|
if (!paint_mask) {
|
|
|
|
CustomData_add_layer(&me->vdata, CD_PAINT_MASK,
|
2014-05-09 18:29:21 +10:00
|
|
|
CD_CALLOC, NULL, me->totvert);
|
2014-05-07 02:59:23 +03:00
|
|
|
ret |= SCULPT_MASK_LAYER_CALC_VERT;
|
2014-05-06 23:30:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|