About
The CAWeightMgr class represents the Weight Manager dialog window and its functionality. It gives access to the displayed tags (of type CAWeightTag) and joints.
Settings
The settings presented by the Weight Manager dialog are stored with the BaseDocument. They can be safely accessed with these functions:
The setting IDs are defined in oweightmgr.h
.
static Bool SetParameter(BaseDocument *doc, Int32 id, const GeData &newValue)
@ ID_CA_WEIGHT_MGR_ENABLE_DISPLAY
Definition: oweightmgr.h:51
@ ID_CA_WEIGHT_MGR_DISPLAY_POINTS
Definition: oweightmgr.h:50
@ ID_CA_WEIGHT_MGR_DISPLAY_ALL_WEIGHTS
Definition: oweightmgr.h:48
const char * doc
Definition: pyerrors.h:226
Update
The CAWeightMgr class accesses an internal cache. This internal cache is automatically updated if the Weight Manger window is opened or the weight tool is active. If this is not the case the internal cache must be updated manually to handle scene changes.
if (wTag == nullptr)
if (sObject == nullptr)
doc->InsertObject(skinObject, polyObject,
nullptr);
const Int jointCount = joints.GetCount();
for (
Int i = 0;
i < jointCount; ++
i)
{
}
Py_ssize_t i
Definition: abstract.h:645
Definition: ge_autoptr.h:37
TYPE * Release()
Definition: ge_autoptr.h:123
Definition: c4d_baseobject.h:248
void InsertTag(BaseTag *tp, BaseTag *pred=nullptr)
static Bool Update(BaseDocument *doc)
static void SelectAllJoints(BaseDocument *doc)
static Bool AutoWeight(BaseDocument *doc)
Int32 AddJoint(BaseObject *op)
maxon::Int Int
Definition: ge_sys_math.h:60
#define Oskin
Skin deformer.
Definition: ge_prepass.h:1098
#define SELECTION_NEW
Starts a new selection.
Definition: c4d_basedocument.h:388
#define MAXON_SOURCE_LOCATION
Definition: memoryallocationbase.h:67
Weight Tags
The Weight Manager dialog displays the joints of multiple (selected) weight tags.
if (tagCount == 0)
for (
Int32 tagIndex = 0; tagIndex < tagCount; ++tagIndex)
{
if (tag == nullptr)
if (hostObject == nullptr)
}
String GetName() const
Definition: c4d_baselist.h:2544
static CAWeightTag * GetWeightTag(BaseDocument *doc, Int32 tagIdx)
static BaseObject * GetMeshObject(BaseDocument *doc, Int32 tagIdx)
static Int32 GetTagCount(BaseDocument *doc)
maxon::Int32 Int32
Definition: ge_sys_math.h:56
#define ApplicationOutput(formatString,...)
Definition: debugdiagnostics.h:204
Joints
Each CAWeightTag stores weights for joints. These joints are displayed in the Weight Manager dialog.
{
if (joint == nullptr)
}
static BaseObject * GetJointObject(BaseDocument *doc, Int32 tagIdx, Int32 jointIdx)
static Int32 GetJointCount(BaseDocument *doc, Int32 tagIdx)
Selection
It is possible to select joint objects in the Weight Manager. Several operations only apply to such selected objects.
The selection state of all joint objects can easily be managed with:
if (objects == nullptr)
for (
Int32 i = 0;
i < objects->GetCount(); ++
i)
{
if (joint == nullptr)
{
{
}
}
}
Bool GetBit(Int32 mask) const
Definition: c4d_baselist.h:2441
Definition: c4d_baselist.h:1521
Bool IsInstanceOf(Int32 id) const
Definition: c4d_baselist.h:1562
static Bool SelectJoint(BaseDocument *doc, Int32 tagIdx, Int32 jointIdx)
static void UnselectAllJoints(BaseDocument *doc)
static UInt64 GetJointId(BaseDocument *doc, const CAWeightTag *tag, const BaseObject *joint)
Definition: apibasemath.h:54
maxon::UInt64 UInt64
Definition: ge_sys_math.h:59
#define atom
Definition: graminit.h:72
#define BIT_ACTIVE
Active.
Definition: ge_prepass.h:889
@ CHILDREN
Child objects are added to the selection too, provided they are selected. Otherwise only the topmost ...
#define Ojoint
Joint.
Definition: ge_prepass.h:1097
Locked
The Weight Manager can lock a joint object to prevent unintended changes.
The lock state of all joint objects can be managed with:
{
{
}
}
static Bool LockSelectedJoints(BaseDocument *doc)
static Bool UnlockAllJoints(BaseDocument *doc)
static Bool IsJointLocked(BaseDocument *doc, Int32 tagIdx, Int32 jointIdx)
Functions
The weight algorithms are edited with these static functions:
- Note
- The auto weight algorithm IDs are defined in maxon/autoweight.h, the settings in maxon/autoweight_attributes.h.
Several weight tools of the Weight Manager can be invoked with dedicated functions. These functions add an undo step.
- Note
- The functions take the selection state of a joint object into account.
Copy and paste functions are:
const maxon::Id targetMode = maxon::AutoWeightAlgos::BoneglowClass().GetId();
data.Set(maxon::ANIMATION::AUTOWEIGHT::BONEGLOW::USEVISIBILITY,
true)
iferr_return;
data.Set(maxon::ANIMATION::AUTOWEIGHT::BONEGLOW::VISIBILITYRATIO, 0.3_f)
iferr_return;
static maxon::Result< maxon::DataDictionary > GetAutoWeightDictionary(BaseDocument *doc, const maxon::Id &autoweightId)
static maxon::Result< Int > GetAutoWeightAlgoIndex(BaseDocument *doc, const maxon::Id &id)
static maxon::Result< void > SetAutoWeightDictionary(BaseDocument *doc, maxon::DataDictionary dataDictionary, maxon::Id autoweightId)
Definition: c4d_gedata.h:83
void SetInt32(Int32 v)
Definition: c4d_gedata.h:645
Definition: apibaseid.h:243
Py_ssize_t * index
Definition: abstract.h:374
int64_t Int64
64 bit signed integer datatype.
Definition: apibase.h:192
@ ID_CA_WEIGHT_MGR_AUTOWEIGHT_MODE
Definition: oweightmgr.h:151
#define iferr_return
Definition: resultbase.h:1524
Further Reading