2012-02-19 18:31:04 +00:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup bmesh
|
2012-02-19 18:31:04 +00:00
|
|
|
*
|
|
|
|
|
* BM Inline functions.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-03-24 01:24:58 +00:00
|
|
|
#pragma once
|
2012-02-19 18:31:04 +00:00
|
|
|
|
2012-03-21 12:08:16 +00:00
|
|
|
/* stuff for dealing with header flags */
|
2012-04-03 02:38:27 +00:00
|
|
|
#define BM_elem_flag_test(ele, hflag) _bm_elem_flag_test(&(ele)->head, hflag)
|
|
|
|
|
#define BM_elem_flag_test_bool(ele, hflag) _bm_elem_flag_test_bool(&(ele)->head, hflag)
|
|
|
|
|
#define BM_elem_flag_enable(ele, hflag) _bm_elem_flag_enable(&(ele)->head, hflag)
|
|
|
|
|
#define BM_elem_flag_disable(ele, hflag) _bm_elem_flag_disable(&(ele)->head, hflag)
|
|
|
|
|
#define BM_elem_flag_set(ele, hflag, val) _bm_elem_flag_set(&(ele)->head, hflag, val)
|
|
|
|
|
#define BM_elem_flag_toggle(ele, hflag) _bm_elem_flag_toggle(&(ele)->head, hflag)
|
|
|
|
|
#define BM_elem_flag_merge(ele_a, ele_b) _bm_elem_flag_merge(&(ele_a)->head, &(ele_b)->head)
|
2019-01-16 15:26:16 +11:00
|
|
|
#define BM_elem_flag_merge_ex(ele_a, ele_b, hflag_and) \
|
|
|
|
|
_bm_elem_flag_merge_ex(&(ele_a)->head, &(ele_b)->head, hflag_and)
|
2012-10-26 06:19:49 +00:00
|
|
|
#define BM_elem_flag_merge_into(ele, ele_a, ele_b) \
|
|
|
|
|
_bm_elem_flag_merge_into(&(ele)->head, &(ele_a)->head, &(ele_b)->head)
|
2012-03-21 12:08:16 +00:00
|
|
|
|
2015-05-01 19:16:58 +10:00
|
|
|
ATTR_WARN_UNUSED_RESULT
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE char _bm_elem_flag_test(const BMHeader *head, const char hflag)
|
2012-02-19 18:31:04 +00:00
|
|
|
{
|
2012-02-27 14:57:09 +00:00
|
|
|
return head->hflag & hflag;
|
2012-02-19 18:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
2015-05-01 19:16:58 +10:00
|
|
|
ATTR_WARN_UNUSED_RESULT
|
2013-01-14 16:42:43 +00:00
|
|
|
BLI_INLINE bool _bm_elem_flag_test_bool(const BMHeader *head, const char hflag)
|
2012-04-03 02:38:27 +00:00
|
|
|
{
|
|
|
|
|
return (head->hflag & hflag) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE void _bm_elem_flag_enable(BMHeader *head, const char hflag)
|
2012-02-19 18:31:04 +00:00
|
|
|
{
|
2012-02-27 14:57:09 +00:00
|
|
|
head->hflag |= hflag;
|
2012-02-19 18:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE void _bm_elem_flag_disable(BMHeader *head, const char hflag)
|
2012-02-19 18:31:04 +00:00
|
|
|
{
|
2013-09-01 00:46:04 +00:00
|
|
|
head->hflag &= (char)~hflag;
|
2012-02-19 18:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE void _bm_elem_flag_set(BMHeader *head, const char hflag, const int val)
|
2012-02-25 19:43:51 +00:00
|
|
|
{
|
2019-03-27 17:14:36 +11:00
|
|
|
if (val) {
|
|
|
|
|
_bm_elem_flag_enable(head, hflag);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
_bm_elem_flag_disable(head, hflag);
|
|
|
|
|
}
|
2012-02-25 19:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE void _bm_elem_flag_toggle(BMHeader *head, const char hflag)
|
2012-02-19 18:31:04 +00:00
|
|
|
{
|
2012-02-27 14:57:09 +00:00
|
|
|
head->hflag ^= hflag;
|
2012-02-19 18:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE void _bm_elem_flag_merge(BMHeader *head_a, BMHeader *head_b)
|
2012-02-19 18:31:04 +00:00
|
|
|
{
|
2012-02-27 14:57:09 +00:00
|
|
|
head_a->hflag = head_b->hflag = head_a->hflag | head_b->hflag;
|
2012-02-19 18:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
2019-01-16 15:26:16 +11:00
|
|
|
BLI_INLINE void _bm_elem_flag_merge_ex(BMHeader *head_a, BMHeader *head_b, const char hflag_and)
|
|
|
|
|
{
|
|
|
|
|
if (((head_a->hflag & head_b->hflag) & hflag_and) == 0) {
|
|
|
|
|
head_a->hflag &= ~hflag_and;
|
|
|
|
|
head_b->hflag &= ~hflag_and;
|
|
|
|
|
}
|
|
|
|
|
_bm_elem_flag_merge(head_a, head_b);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-26 06:19:49 +00:00
|
|
|
BLI_INLINE void _bm_elem_flag_merge_into(BMHeader *head,
|
|
|
|
|
const BMHeader *head_a,
|
|
|
|
|
const BMHeader *head_b)
|
|
|
|
|
{
|
|
|
|
|
head->hflag = head_a->hflag | head_b->hflag;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-24 02:51:46 +00:00
|
|
|
/**
|
|
|
|
|
* notes on #BM_elem_index_set(...) usage,
|
2012-03-21 12:08:16 +00:00
|
|
|
* Set index is sometimes abused as temp storage, other times we cant be
|
|
|
|
|
* sure if the index values are valid because certain operations have modified
|
|
|
|
|
* the mesh structure.
|
|
|
|
|
*
|
|
|
|
|
* To set the elements to valid indices 'BM_mesh_elem_index_ensure' should be used
|
|
|
|
|
* rather than adding inline loops, however there are cases where we still
|
|
|
|
|
* set the index directly
|
|
|
|
|
*
|
2012-03-24 02:51:46 +00:00
|
|
|
* In an attempt to manage this,
|
|
|
|
|
* here are 5 tags I'm adding to uses of #BM_elem_index_set
|
2012-03-21 12:08:16 +00:00
|
|
|
*
|
|
|
|
|
* - 'set_inline' -- since the data is already being looped over set to a
|
|
|
|
|
* valid value inline.
|
|
|
|
|
*
|
|
|
|
|
* - 'set_dirty!' -- intentionally sets the index to an invalid value,
|
|
|
|
|
* flagging 'bm->elem_index_dirty' so we don't use it.
|
|
|
|
|
*
|
|
|
|
|
* - 'set_ok' -- this is valid use since the part of the code is low level.
|
|
|
|
|
*
|
|
|
|
|
* - 'set_ok_invalid' -- set to -1 on purpose since this should not be
|
|
|
|
|
* used without a full array re-index, do this on
|
|
|
|
|
* adding new vert/edge/faces since they may be added at
|
|
|
|
|
* the end of the array.
|
|
|
|
|
*
|
|
|
|
|
* - campbell */
|
|
|
|
|
|
|
|
|
|
#define BM_elem_index_get(ele) _bm_elem_index_get(&(ele)->head)
|
|
|
|
|
#define BM_elem_index_set(ele, index) _bm_elem_index_set(&(ele)->head, index)
|
|
|
|
|
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE void _bm_elem_index_set(BMHeader *head, const int index)
|
2012-02-19 18:31:04 +00:00
|
|
|
{
|
2012-02-27 14:57:09 +00:00
|
|
|
head->index = index;
|
2012-02-19 18:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
2015-05-01 19:16:58 +10:00
|
|
|
ATTR_WARN_UNUSED_RESULT
|
2012-03-20 08:42:26 +00:00
|
|
|
BLI_INLINE int _bm_elem_index_get(const BMHeader *head)
|
2012-02-19 18:31:04 +00:00
|
|
|
{
|
2012-02-27 14:57:09 +00:00
|
|
|
return head->index;
|
2012-02-19 18:31:04 +00:00
|
|
|
}
|