mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-15 00:34:09 +00:00
added animation system (with skin support for now)
This commit is contained in:
parent
a600fa9976
commit
e7ed4d0096
23 changed files with 3075 additions and 2 deletions
46
src/animation/AnimBlendClumpData.cpp
Normal file
46
src/animation/AnimBlendClumpData.cpp
Normal file
|
@ -0,0 +1,46 @@
|
|||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "AnimBlendClumpData.h"
|
||||
|
||||
// TODO: implement those
|
||||
#define RwFreeAlign RwFree
|
||||
#define RwMallocAlign(sz, algn) RwMalloc(sz)
|
||||
|
||||
CAnimBlendClumpData::CAnimBlendClumpData(void)
|
||||
{
|
||||
numFrames = 0;
|
||||
pedPosition = nil;
|
||||
frames = nil;
|
||||
link.Init();
|
||||
}
|
||||
|
||||
CAnimBlendClumpData::~CAnimBlendClumpData(void)
|
||||
{
|
||||
link.Remove();
|
||||
if(frames)
|
||||
RwFreeAlign(frames);
|
||||
}
|
||||
|
||||
void
|
||||
CAnimBlendClumpData::SetNumberOfFrames(int n)
|
||||
{
|
||||
if(frames)
|
||||
RwFreeAlign(frames);
|
||||
numFrames = n;
|
||||
frames = (AnimBlendFrameData*)RwMallocAlign(numFrames * sizeof(AnimBlendFrameData), 64);
|
||||
}
|
||||
|
||||
void
|
||||
CAnimBlendClumpData::ForAllFrames(void (*cb)(AnimBlendFrameData*, void*), void *arg)
|
||||
{
|
||||
int i;
|
||||
for(i = 0; i < numFrames; i++)
|
||||
cb(&frames[i], arg);
|
||||
}
|
||||
|
||||
STARTPATCHES
|
||||
InjectHook(0x401880, &CAnimBlendClumpData::ctor, PATCH_JUMP);
|
||||
InjectHook(0x4018B0, &CAnimBlendClumpData::dtor, PATCH_JUMP);
|
||||
InjectHook(0x4018F0, &CAnimBlendClumpData::SetNumberOfFrames, PATCH_JUMP);
|
||||
InjectHook(0x401930, &CAnimBlendClumpData::ForAllFrames, PATCH_JUMP);
|
||||
ENDPATCHES
|
Loading…
Add table
Add a link
Reference in a new issue