mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Animation SDL variable names => plString
This commit is contained in:
@ -665,30 +665,15 @@ float plEmoteAnim::GetFadeOut() const
|
|||||||
plAgeGlobalAnim::plAgeGlobalAnim()
|
plAgeGlobalAnim::plAgeGlobalAnim()
|
||||||
: plAGAnim()
|
: plAGAnim()
|
||||||
{
|
{
|
||||||
fGlobalVarName = nil;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ctor --------------------------------------------------------------------
|
// ctor --------------------------------------------------------------------
|
||||||
// -----
|
// -----
|
||||||
plAgeGlobalAnim::plAgeGlobalAnim(const plString &name, double start, double end)
|
plAgeGlobalAnim::plAgeGlobalAnim(const plString &name, double start, double end)
|
||||||
: plAGAnim(name, start, end),
|
: plAGAnim(name, start, end)
|
||||||
fGlobalVarName(nil)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// dtor ---------------------------
|
|
||||||
// -----
|
|
||||||
plAgeGlobalAnim::~plAgeGlobalAnim()
|
|
||||||
{
|
|
||||||
delete [] fGlobalVarName;
|
|
||||||
}
|
|
||||||
|
|
||||||
void plAgeGlobalAnim::SetGlobalVarName(char *name)
|
|
||||||
{
|
|
||||||
delete [] fGlobalVarName;
|
|
||||||
fGlobalVarName = hsStrcpy(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Read ---------------------------------------------------
|
// Read ---------------------------------------------------
|
||||||
// -----
|
// -----
|
||||||
@ -696,7 +681,7 @@ void plAgeGlobalAnim::Read(hsStream *stream, hsResMgr *mgr)
|
|||||||
{
|
{
|
||||||
plAGAnim::Read(stream, mgr);
|
plAGAnim::Read(stream, mgr);
|
||||||
|
|
||||||
fGlobalVarName = stream->ReadSafeString();
|
fGlobalVarName = stream->ReadSafeString_TEMP();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write ---------------------------------------------------
|
// Write ---------------------------------------------------
|
||||||
|
@ -417,11 +417,9 @@ public:
|
|||||||
/** Construct with name, start time, and end time (within the max note track)
|
/** Construct with name, start time, and end time (within the max note track)
|
||||||
*/
|
*/
|
||||||
plAgeGlobalAnim(const plString &name, double begin, double end);
|
plAgeGlobalAnim(const plString &name, double begin, double end);
|
||||||
/** Destruct, freeing the underlying animation data. */
|
|
||||||
virtual ~plAgeGlobalAnim();
|
|
||||||
|
|
||||||
const char * GetGlobalVarName() const { return fGlobalVarName; }
|
plString GetGlobalVarName() const { return fGlobalVarName; }
|
||||||
void SetGlobalVarName(char *name);
|
void SetGlobalVarName(const plString &name) { fGlobalVarName = name; }
|
||||||
|
|
||||||
// PLASMA PROTOCOL
|
// PLASMA PROTOCOL
|
||||||
// rtti
|
// rtti
|
||||||
@ -433,7 +431,7 @@ public:
|
|||||||
virtual void Write(hsStream* stream, hsResMgr* mgr);
|
virtual void Write(hsStream* stream, hsResMgr* mgr);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
char *fGlobalVarName; // Name of the SDL variable we animate on.
|
plString fGlobalVarName; // Name of the SDL variable we animate on.
|
||||||
};
|
};
|
||||||
|
|
||||||
// USEFUL HELPER FUNCTIONS
|
// USEFUL HELPER FUNCTIONS
|
||||||
|
@ -674,12 +674,7 @@ bool plLayerLinkAnimation::MsgReceive( plMessage* pMsg )
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
plLayerSDLAnimation::plLayerSDLAnimation() : plLayerAnimationBase(), fVar(nil), fVarName(nil) {}
|
plLayerSDLAnimation::plLayerSDLAnimation() : plLayerAnimationBase(), fVar(nil) {}
|
||||||
|
|
||||||
plLayerSDLAnimation::~plLayerSDLAnimation()
|
|
||||||
{
|
|
||||||
delete [] fVarName;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint32_t plLayerSDLAnimation::Eval(double wSecs, uint32_t frame, uint32_t ignore)
|
uint32_t plLayerSDLAnimation::Eval(double wSecs, uint32_t frame, uint32_t ignore)
|
||||||
{
|
{
|
||||||
@ -691,7 +686,7 @@ uint32_t plLayerSDLAnimation::Eval(double wSecs, uint32_t frame, uint32_t ignore
|
|||||||
|
|
||||||
if (fEvalTime < 0)
|
if (fEvalTime < 0)
|
||||||
{
|
{
|
||||||
if (fVarName != nil)
|
if (!fVarName.IsEmpty())
|
||||||
{
|
{
|
||||||
extern const plSDLModifier *ExternFindAgeSDL();
|
extern const plSDLModifier *ExternFindAgeSDL();
|
||||||
const plSDLModifier *sdlMod = ExternFindAgeSDL();
|
const plSDLModifier *sdlMod = ExternFindAgeSDL();
|
||||||
@ -741,7 +736,7 @@ void plLayerSDLAnimation::Read(hsStream* s, hsResMgr* mgr)
|
|||||||
{
|
{
|
||||||
plLayerAnimationBase::Read(s, mgr);
|
plLayerAnimationBase::Read(s, mgr);
|
||||||
|
|
||||||
fVarName = s->ReadSafeString();
|
fVarName = s->ReadSafeString_TEMP();
|
||||||
}
|
}
|
||||||
|
|
||||||
void plLayerSDLAnimation::Write(hsStream* s, hsResMgr* mgr)
|
void plLayerSDLAnimation::Write(hsStream* s, hsResMgr* mgr)
|
||||||
@ -750,9 +745,3 @@ void plLayerSDLAnimation::Write(hsStream* s, hsResMgr* mgr)
|
|||||||
|
|
||||||
s->WriteSafeString(fVarName);
|
s->WriteSafeString(fVarName);
|
||||||
}
|
}
|
||||||
|
|
||||||
void plLayerSDLAnimation::SetVarName(char *name)
|
|
||||||
{
|
|
||||||
delete [] fVarName;
|
|
||||||
fVarName = hsStrcpy(name);
|
|
||||||
}
|
|
||||||
|
@ -189,11 +189,10 @@ class plLayerSDLAnimation : public plLayerAnimationBase
|
|||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
plSimpleStateVariable *fVar;
|
plSimpleStateVariable *fVar;
|
||||||
char *fVarName;
|
plString fVarName;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
plLayerSDLAnimation();
|
plLayerSDLAnimation();
|
||||||
virtual ~plLayerSDLAnimation();
|
|
||||||
|
|
||||||
CLASSNAME_REGISTER( plLayerSDLAnimation );
|
CLASSNAME_REGISTER( plLayerSDLAnimation );
|
||||||
GETINTERFACE_ANY( plLayerSDLAnimation, plLayerAnimationBase );
|
GETINTERFACE_ANY( plLayerSDLAnimation, plLayerAnimationBase );
|
||||||
@ -205,8 +204,8 @@ public:
|
|||||||
virtual void Read(hsStream* s, hsResMgr* mgr);
|
virtual void Read(hsStream* s, hsResMgr* mgr);
|
||||||
virtual void Write(hsStream* s, hsResMgr* mgr);
|
virtual void Write(hsStream* s, hsResMgr* mgr);
|
||||||
|
|
||||||
char *GetVarName() { return fVarName; }
|
plString GetVarName() const { return fVarName; }
|
||||||
void SetVarName(char *name);
|
void SetVarName(const plString &name) { fVarName = name; }
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // plLayerAnimation_inc
|
#endif // plLayerAnimation_inc
|
||||||
|
Reference in New Issue
Block a user