2019-06-11 02:59:28 -04:00
|
|
|
#include "common.h"
|
2020-04-17 09:31:11 -04:00
|
|
|
|
2020-05-10 22:55:57 -04:00
|
|
|
#if defined _WIN32 && !defined __MINGW32__
|
2021-01-19 07:35:48 -05:00
|
|
|
#if defined __MWERKS__
|
|
|
|
#include <wctype.h>
|
|
|
|
#else
|
2020-04-19 12:34:08 -04:00
|
|
|
#include "ctype.h"
|
2021-01-19 07:35:48 -05:00
|
|
|
#endif
|
2020-05-10 22:55:57 -04:00
|
|
|
#else
|
|
|
|
#include <cwctype>
|
|
|
|
#endif
|
2020-04-19 12:34:08 -04:00
|
|
|
|
2019-10-29 19:12:58 -04:00
|
|
|
#include "General.h"
|
2020-05-08 14:58:40 -04:00
|
|
|
#include "RwHelper.h"
|
2019-06-11 02:59:28 -04:00
|
|
|
#include "ModelInfo.h"
|
|
|
|
#include "AnimManager.h"
|
|
|
|
#include "RpAnimBlend.h"
|
|
|
|
#include "AnimBlendAssociation.h"
|
|
|
|
#include "AnimBlendAssocGroup.h"
|
|
|
|
|
|
|
|
CAnimBlendAssocGroup::CAnimBlendAssocGroup(void)
|
|
|
|
{
|
|
|
|
assocList = nil;
|
|
|
|
numAssociations = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
CAnimBlendAssocGroup::~CAnimBlendAssocGroup(void)
|
|
|
|
{
|
|
|
|
DestroyAssociations();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssocGroup::DestroyAssociations(void)
|
|
|
|
{
|
|
|
|
if(assocList){
|
|
|
|
delete[] assocList;
|
|
|
|
assocList = nil;
|
|
|
|
numAssociations = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CAnimBlendAssociation*
|
|
|
|
CAnimBlendAssocGroup::GetAnimation(uint32 id)
|
|
|
|
{
|
|
|
|
return &assocList[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
CAnimBlendAssociation*
|
|
|
|
CAnimBlendAssocGroup::GetAnimation(const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < numAssociations; i++)
|
2019-10-29 19:12:58 -04:00
|
|
|
if(!CGeneral::faststricmp(assocList[i].hierarchy->name, name))
|
2019-06-11 02:59:28 -04:00
|
|
|
return &assocList[i];
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CAnimBlendAssociation*
|
|
|
|
CAnimBlendAssocGroup::CopyAnimation(uint32 id)
|
|
|
|
{
|
|
|
|
CAnimBlendAssociation *anim = GetAnimation(id);
|
|
|
|
if(anim == nil)
|
|
|
|
return nil;
|
|
|
|
CAnimManager::UncompressAnimation(anim->hierarchy);
|
|
|
|
return new CAnimBlendAssociation(*anim);
|
|
|
|
}
|
|
|
|
|
|
|
|
CAnimBlendAssociation*
|
|
|
|
CAnimBlendAssocGroup::CopyAnimation(const char *name)
|
|
|
|
{
|
|
|
|
CAnimBlendAssociation *anim = GetAnimation(name);
|
2020-04-18 06:29:28 -04:00
|
|
|
if(anim == nil)
|
|
|
|
return nil;
|
2019-06-11 02:59:28 -04:00
|
|
|
CAnimManager::UncompressAnimation(anim->hierarchy);
|
|
|
|
return new CAnimBlendAssociation(*anim);
|
|
|
|
}
|
|
|
|
|
2019-10-29 19:12:58 -04:00
|
|
|
bool
|
2019-06-11 02:59:28 -04:00
|
|
|
strcmpIgnoringDigits(const char *s1, const char *s2)
|
|
|
|
{
|
|
|
|
char c1, c2;
|
|
|
|
|
2020-04-18 06:29:28 -04:00
|
|
|
for(;;){
|
2019-06-11 02:59:28 -04:00
|
|
|
c1 = *s1;
|
|
|
|
c2 = *s2;
|
|
|
|
if(c1) s1++;
|
|
|
|
if(c2) s2++;
|
2020-04-19 12:34:08 -04:00
|
|
|
if(c1 == '\0' && c2 == '\0') return true;
|
2021-01-19 07:35:48 -05:00
|
|
|
#ifndef ASCII_STRCMP
|
2020-04-19 12:34:08 -04:00
|
|
|
if(iswdigit(c1) && iswdigit(c2))
|
2021-01-19 07:35:48 -05:00
|
|
|
#else
|
|
|
|
if(__ascii_iswdigit(c1) && __ascii_iswdigit(c2))
|
2020-04-19 12:34:08 -04:00
|
|
|
#endif
|
2019-06-11 02:59:28 -04:00
|
|
|
continue;
|
2021-01-19 07:35:48 -05:00
|
|
|
#ifndef ASCII_STRCMP
|
2020-04-19 12:34:08 -04:00
|
|
|
c1 = toupper(c1);
|
|
|
|
c2 = toupper(c2);
|
2021-01-19 07:35:48 -05:00
|
|
|
#else
|
|
|
|
c1 = __ascii_toupper(c1);
|
|
|
|
c2 = __ascii_toupper(c2);
|
2020-04-19 12:34:08 -04:00
|
|
|
#endif
|
|
|
|
|
2020-04-18 06:29:28 -04:00
|
|
|
if(c1 != c2)
|
|
|
|
return false;
|
2019-06-11 02:59:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CBaseModelInfo*
|
|
|
|
GetModelFromName(const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
CBaseModelInfo *mi;
|
|
|
|
|
|
|
|
for(i = 0; i < MODELINFOSIZE; i++){
|
|
|
|
mi = CModelInfo::GetModelInfo(i);
|
2019-06-12 04:50:23 -04:00
|
|
|
if(mi && mi->GetRwObject() && RwObjectGetType(mi->GetRwObject()) == rpCLUMP &&
|
2021-01-08 14:50:59 -05:00
|
|
|
strcmpIgnoringDigits(mi->GetModelName(), name))
|
2019-06-11 02:59:28 -04:00
|
|
|
return mi;
|
|
|
|
}
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CAnimBlendAssocGroup::CreateAssociations(const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
CAnimBlock *animBlock;
|
|
|
|
|
|
|
|
if(assocList)
|
|
|
|
DestroyAssociations();
|
|
|
|
|
|
|
|
animBlock = CAnimManager::GetAnimationBlock(name);
|
|
|
|
assocList = new CAnimBlendAssociation[animBlock->numAnims];
|
|
|
|
numAssociations = 0;
|
|
|
|
|
|
|
|
for(i = 0; i < animBlock->numAnims; i++){
|
|
|
|
CAnimBlendHierarchy *anim = CAnimManager::GetAnimation(animBlock->firstIndex + i);
|
|
|
|
CBaseModelInfo *model = GetModelFromName(anim->name);
|
2019-07-20 08:39:38 -04:00
|
|
|
assert(model);
|
2021-01-08 14:50:59 -05:00
|
|
|
printf("Associated anim %s with model %s\n", anim->name, model->GetModelName());
|
2019-07-20 08:39:38 -04:00
|
|
|
RpClump *clump = (RpClump*)model->CreateInstance();
|
2020-05-08 14:58:40 -04:00
|
|
|
#ifdef PED_SKIN
|
|
|
|
if(IsClumpSkinned(clump))
|
|
|
|
RpClumpForAllAtomics(clump, AtomicRemoveAnimFromSkinCB, nil);
|
|
|
|
#endif
|
2019-07-20 08:39:38 -04:00
|
|
|
RpAnimBlendClumpInit(clump);
|
|
|
|
assocList[i].Init(clump, anim);
|
|
|
|
RpClumpDestroy(clump);
|
|
|
|
assocList[i].animId = i;
|
2019-06-11 02:59:28 -04:00
|
|
|
}
|
|
|
|
numAssociations = animBlock->numAnims;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create associations from hierarchies for a given clump
|
|
|
|
void
|
2019-08-16 14:17:15 -04:00
|
|
|
CAnimBlendAssocGroup::CreateAssociations(const char *blockName, RpClump *clump, const char **animNames, int numAssocs)
|
2019-06-11 02:59:28 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
CAnimBlock *animBlock;
|
|
|
|
|
|
|
|
if(assocList)
|
|
|
|
DestroyAssociations();
|
|
|
|
|
|
|
|
animBlock = CAnimManager::GetAnimationBlock(blockName);
|
2019-06-17 17:31:00 -04:00
|
|
|
assocList = new CAnimBlendAssociation[numAssocs];
|
2019-06-11 02:59:28 -04:00
|
|
|
|
|
|
|
numAssociations = 0;
|
|
|
|
for(i = 0; i < numAssocs; i++){
|
|
|
|
assocList[i].Init(clump, CAnimManager::GetAnimation(animNames[i], animBlock));
|
|
|
|
assocList[i].animId = i;
|
|
|
|
}
|
|
|
|
numAssociations = numAssocs;
|
|
|
|
}
|