2016-02-05 01:27:03 +00:00
|
|
|
#include "CParticleDataFactory.hpp"
|
|
|
|
#include "CToken.hpp"
|
|
|
|
#include "CSimplePool.hpp"
|
|
|
|
#include "CGenDescription.hpp"
|
2016-02-15 08:23:50 +00:00
|
|
|
#include "CRandom16.hpp"
|
2016-03-04 23:04:53 +00:00
|
|
|
#include "Graphics/CModel.hpp"
|
2016-02-17 05:20:34 +00:00
|
|
|
#include "CSwooshDescription.hpp"
|
|
|
|
#include "CElectricDescription.hpp"
|
2016-02-05 01:27:03 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2016-02-05 01:27:03 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
static logvisor::Module Log("urde::CParticleDataFactory");
|
2016-02-05 01:27:03 +00:00
|
|
|
|
|
|
|
float CParticleDataFactory::GetReal(CInputStream& in)
|
|
|
|
{
|
|
|
|
return in.readFloatBig();
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t CParticleDataFactory::GetInt(CInputStream& in)
|
|
|
|
{
|
|
|
|
return in.readInt32Big();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CParticleDataFactory::GetBool(CInputStream& in)
|
|
|
|
{
|
|
|
|
FourCC cid = GetClassID(in);
|
|
|
|
if (cid != FOURCC('CNST'))
|
2016-03-04 23:04:53 +00:00
|
|
|
Log.report(logvisor::Fatal, "bool element does not begin with CNST");
|
2016-02-05 01:27:03 +00:00
|
|
|
return in.readBool();
|
|
|
|
}
|
|
|
|
|
|
|
|
FourCC CParticleDataFactory::GetClassID(CInputStream& in)
|
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
in.readBytesToBuf(&val, 4);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2016-02-06 00:34:40 +00:00
|
|
|
SParticleModel CParticleDataFactory::GetModel(CInputStream& in, CSimplePool* resPool)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
if (clsId == SBIG('NONE'))
|
|
|
|
return {};
|
2016-02-07 07:25:34 +00:00
|
|
|
TResId id = in.readUint32Big();
|
2016-02-06 00:34:40 +00:00
|
|
|
if (!id)
|
|
|
|
return {};
|
2016-02-17 03:42:27 +00:00
|
|
|
return {std::move(resPool->GetObj({FOURCC('CMDL'), id})), true};
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
|
|
|
|
2016-02-07 07:25:34 +00:00
|
|
|
SChildGeneratorDesc CParticleDataFactory::GetChildGeneratorDesc(TResId res, CSimplePool* resPool, const std::vector<TResId>& tracker)
|
2016-02-06 00:34:40 +00:00
|
|
|
{
|
|
|
|
if (std::count(tracker.cbegin(), tracker.cend(), res) == 0)
|
2016-02-17 03:42:27 +00:00
|
|
|
return {std::move(resPool->GetObj({FOURCC('PART'), res})), true};
|
2016-02-06 00:34:40 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2016-02-07 07:25:34 +00:00
|
|
|
SChildGeneratorDesc CParticleDataFactory::GetChildGeneratorDesc(CInputStream& in, CSimplePool* resPool, const std::vector<TResId>& tracker)
|
2016-02-06 00:34:40 +00:00
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
if (clsId == SBIG('NONE'))
|
|
|
|
return {};
|
2016-02-07 07:25:34 +00:00
|
|
|
TResId id = in.readUint32Big();
|
2016-02-06 00:34:40 +00:00
|
|
|
if (!id)
|
|
|
|
return {};
|
|
|
|
return GetChildGeneratorDesc(id, resPool, tracker);
|
|
|
|
}
|
|
|
|
|
|
|
|
SSwooshGeneratorDesc CParticleDataFactory::GetSwooshGeneratorDesc(CInputStream& in, CSimplePool* resPool)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
if (clsId == SBIG('NONE'))
|
|
|
|
return {};
|
2016-02-07 07:25:34 +00:00
|
|
|
TResId id = in.readUint32Big();
|
2016-02-06 00:34:40 +00:00
|
|
|
if (!id)
|
|
|
|
return {};
|
2016-02-17 03:42:27 +00:00
|
|
|
return {std::move(resPool->GetObj({FOURCC('SWHC'), id})), true};
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SElectricGeneratorDesc CParticleDataFactory::GetElectricGeneratorDesc(CInputStream& in, CSimplePool* resPool)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
if (clsId == SBIG('NONE'))
|
|
|
|
return {};
|
2016-02-07 07:25:34 +00:00
|
|
|
TResId id = in.readUint32Big();
|
2016-02-06 00:34:40 +00:00
|
|
|
if (!id)
|
|
|
|
return {};
|
2016-02-17 03:42:27 +00:00
|
|
|
return {std::move(resPool->GetObj({FOURCC('ELSC'), id})), true};
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CUVElement* CParticleDataFactory::GetTextureElement(CInputStream& in, CSimplePool* resPool)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('CNST'):
|
|
|
|
{
|
|
|
|
FourCC subId = GetClassID(in);
|
|
|
|
if (subId == SBIG('NONE'))
|
|
|
|
return nullptr;
|
2016-02-07 07:25:34 +00:00
|
|
|
TResId id = in.readUint32Big();
|
2016-02-06 00:34:40 +00:00
|
|
|
TToken<CTexture> txtr = resPool->GetObj({FOURCC('TXTR'), id});
|
|
|
|
return new CUVEConstant(std::move(txtr));
|
|
|
|
}
|
|
|
|
case SBIG('ATEX'):
|
|
|
|
{
|
|
|
|
FourCC subId = GetClassID(in);
|
|
|
|
if (subId == SBIG('NONE'))
|
|
|
|
return nullptr;
|
2016-02-07 07:25:34 +00:00
|
|
|
TResId id = in.readUint32Big();
|
2016-02-06 00:34:40 +00:00
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
CIntElement* d = GetIntElement(in);
|
|
|
|
CIntElement* e = GetIntElement(in);
|
|
|
|
bool f = GetBool(in);
|
|
|
|
TToken<CTexture> txtr = resPool->GetObj({FOURCC('TXTR'), id});
|
|
|
|
return new CUVEAnimTexture(std::move(txtr), a, b, c, d, e, f);
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CColorElement* CParticleDataFactory::GetColorElement(CInputStream& in)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('KEYE'):
|
|
|
|
case SBIG('KEYP'):
|
|
|
|
{
|
|
|
|
return new CCEKeyframeEmitter(in);
|
|
|
|
}
|
|
|
|
case SBIG('CNST'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
if (a->IsConstant() && b->IsConstant() && c->IsConstant() && d->IsConstant())
|
|
|
|
{
|
|
|
|
float af, bf, cf, df;
|
|
|
|
a->GetValue(0, af);
|
|
|
|
b->GetValue(0, bf);
|
|
|
|
c->GetValue(0, cf);
|
|
|
|
d->GetValue(0, df);
|
|
|
|
return new CCEFastConstant(af, bf, cf, df);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return new CCEConstant(a, b, c, d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case SBIG('CHAN'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
CColorElement* b = GetColorElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
return new CCETimeChain(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('CFDE'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
CColorElement* b = GetColorElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
return new CCEFadeEnd(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('FADE'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
CColorElement* b = GetColorElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
return new CCEFade(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('PULS'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CColorElement* c = GetColorElement(in);
|
|
|
|
CColorElement* d = GetColorElement(in);
|
|
|
|
return new CCEPulse(a, b, c, d);
|
|
|
|
}
|
2016-02-12 06:06:17 +00:00
|
|
|
case SBIG('PCOL'):
|
|
|
|
{
|
|
|
|
return new CCEParticleColor();
|
|
|
|
}
|
2016-02-06 00:34:40 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CModVectorElement* CParticleDataFactory::GetModVectorElement(CInputStream& in)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('IMPL'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
bool e = GetBool(in);
|
|
|
|
return new CMVEImplosion(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
case SBIG('EMPL'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
bool e = GetBool(in);
|
|
|
|
return new CMVEExponentialImplosion(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
case SBIG('CHAN'):
|
|
|
|
{
|
|
|
|
CModVectorElement* a = GetModVectorElement(in);
|
|
|
|
CModVectorElement* b = GetModVectorElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
return new CMVETimeChain(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('BNCE'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
bool e = GetBool(in);
|
|
|
|
return new CMVEBounce(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
case SBIG('CNST'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
if (a->IsConstant() && b->IsConstant() && c->IsConstant())
|
|
|
|
{
|
|
|
|
float af, bf, cf;
|
|
|
|
a->GetValue(0, af);
|
|
|
|
b->GetValue(0, bf);
|
|
|
|
c->GetValue(0, cf);
|
|
|
|
return new CMVEFastConstant(af, bf, cf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return new CMVEConstant(a, b, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case SBIG('GRAV'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
return new CMVEGravity(a);
|
|
|
|
}
|
|
|
|
case SBIG('EXPL'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CMVEExplode(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('SPOS'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
return new CMVESetPosition(a);
|
|
|
|
}
|
|
|
|
case SBIG('LMPL'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
bool e = GetBool(in);
|
|
|
|
return new CMVELinearImplosion(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
case SBIG('PULS'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CModVectorElement* c = GetModVectorElement(in);
|
|
|
|
CModVectorElement* d = GetModVectorElement(in);
|
|
|
|
return new CMVEPulse(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('WIND'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CMVEWind(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('SWRL'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
return new CMVESwirl(a, b, c, d);
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CEmitterElement* CParticleDataFactory::GetEmitterElement(CInputStream& in)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('SETR'):
|
|
|
|
{
|
|
|
|
FourCC prop = GetClassID(in);
|
|
|
|
if (prop == SBIG('ILOC'))
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
prop = GetClassID(in);
|
|
|
|
if (prop == SBIG('IVEC'))
|
|
|
|
{
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
return new CEESimpleEmitter(a, b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
case SBIG('SEMR'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
return new CEESimpleEmitter(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('SPHE'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
return new CVESphere(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('ASPH'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
CRealElement* e = GetRealElement(in);
|
|
|
|
CRealElement* f = GetRealElement(in);
|
|
|
|
CRealElement* g = GetRealElement(in);
|
|
|
|
return new CVEAngleSphere(a, b, c, d, e, f, g);
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CVectorElement* CParticleDataFactory::GetVectorElement(CInputStream& in)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('CONE'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CVECone(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('CHAN'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
return new CVETimeChain(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('ANGC'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
CRealElement* e = GetRealElement(in);
|
|
|
|
return new CVEAngleCone(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
case SBIG('ADD_'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
return new CVEAdd(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('CCLU'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
return new CVECircleCluster(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('CNST'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
if (a->IsConstant() && b->IsConstant() && c->IsConstant())
|
|
|
|
{
|
|
|
|
float af, bf, cf;
|
|
|
|
a->GetValue(0, af);
|
|
|
|
b->GetValue(0, bf);
|
|
|
|
c->GetValue(0, cf);
|
|
|
|
return new CVEFastConstant(af, bf, cf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return new CVEConstant(a, b, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case SBIG('CIRC'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
CRealElement* e = GetRealElement(in);
|
|
|
|
return new CVECircle(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
case SBIG('KEYE'):
|
|
|
|
case SBIG('KEYP'):
|
|
|
|
{
|
|
|
|
return new CVEKeyframeEmitter(in);
|
|
|
|
}
|
|
|
|
case SBIG('MULT'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
return new CVEMultiply(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('RTOV'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
return new CVERealToVector(a);
|
|
|
|
}
|
|
|
|
case SBIG('PULS'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CVectorElement* c = GetVectorElement(in);
|
|
|
|
CVectorElement* d = GetVectorElement(in);
|
|
|
|
return new CVEPulse(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('PVEL'):
|
|
|
|
{
|
|
|
|
return new CVEParticleVelocity;
|
|
|
|
}
|
|
|
|
case SBIG('PLCO'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CVEParticleColor;
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
|
|
|
case SBIG('PLOC'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CVEParticleLocation;
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
2016-02-12 06:06:17 +00:00
|
|
|
case SBIG('PSOF'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CVEParticleSystemOrientationFront;
|
2016-02-12 06:06:17 +00:00
|
|
|
}
|
|
|
|
case SBIG('PSOU'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CVEParticleSystemOrientationUp;
|
2016-02-12 06:06:17 +00:00
|
|
|
}
|
2016-02-06 00:34:40 +00:00
|
|
|
case SBIG('PSOR'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CVEParticleSystemOrientationRight;
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
2016-02-12 06:06:17 +00:00
|
|
|
case SBIG('PSTR'):
|
2016-02-06 00:34:40 +00:00
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CVEParticleSystemTranslation;
|
2016-02-12 06:06:17 +00:00
|
|
|
}
|
|
|
|
case SBIG('SUB_'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
return new CVESubtract(a, b);
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
2016-02-17 08:07:32 +00:00
|
|
|
case SBIG('CTVC'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
return new CVEColorToVector(a);
|
|
|
|
}
|
2016-02-06 00:34:40 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CRealElement* CParticleDataFactory::GetRealElement(CInputStream& in)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('LFTW'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CRELifetimeTween(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('CNST'):
|
|
|
|
{
|
|
|
|
float a = GetReal(in);
|
|
|
|
return new CREConstant(a);
|
|
|
|
}
|
|
|
|
case SBIG('CHAN'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
return new CRETimeChain(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('ADD_'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CREAdd(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('CLMP'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
return new CREClamp(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('KEYE'):
|
|
|
|
case SBIG('KEYP'):
|
|
|
|
{
|
|
|
|
return new CREKeyframeEmitter(in);
|
|
|
|
}
|
|
|
|
case SBIG('IRND'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CREInitialRandom(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('RAND'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CRERandom(a, b);
|
|
|
|
}
|
2016-02-12 06:06:17 +00:00
|
|
|
case SBIG('DOTP'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
CVectorElement* b = GetVectorElement(in);
|
|
|
|
return new CREDotProduct(a, b);
|
|
|
|
}
|
2016-02-06 00:34:40 +00:00
|
|
|
case SBIG('MULT'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CREMultiply(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('PULS'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
return new CREPulse(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('SCAL'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
return new CRETimeScale(a);
|
|
|
|
}
|
|
|
|
case SBIG('RLPT'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
return new CRELifetimePercent(a);
|
|
|
|
}
|
|
|
|
case SBIG('SINE'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
return new CRESineWave(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('ISWT'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CREISWT(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('CLTN'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
return new CRECompareLessThan(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('CEQL'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
return new CRECompareEquals(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('PAP1'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam1;
|
|
|
|
}
|
|
|
|
case SBIG('PAP2'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam2;
|
|
|
|
}
|
|
|
|
case SBIG('PAP3'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam3;
|
|
|
|
}
|
|
|
|
case SBIG('PAP4'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam4;
|
|
|
|
}
|
|
|
|
case SBIG('PAP5'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam5;
|
|
|
|
}
|
|
|
|
case SBIG('PAP6'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam6;
|
|
|
|
}
|
|
|
|
case SBIG('PAP7'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam7;
|
|
|
|
}
|
|
|
|
case SBIG('PAP8'):
|
|
|
|
{
|
|
|
|
return new CREParticleAccessParam8;
|
|
|
|
}
|
|
|
|
case SBIG('PSLL'):
|
|
|
|
{
|
|
|
|
return new CREPSLL;
|
|
|
|
}
|
|
|
|
case SBIG('PRLW'):
|
|
|
|
{
|
|
|
|
return new CREPRLW;
|
|
|
|
}
|
|
|
|
case SBIG('SUB_'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
return new CRESubtract(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('VMAG'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
return new CREVectorMagnitude(a);
|
|
|
|
}
|
|
|
|
case SBIG('VXTR'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
return new CREVectorXToReal(a);
|
|
|
|
}
|
|
|
|
case SBIG('VYTR'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
return new CREVectorYToReal(a);
|
|
|
|
}
|
|
|
|
case SBIG('VZTR'):
|
|
|
|
{
|
|
|
|
CVectorElement* a = GetVectorElement(in);
|
|
|
|
return new CREVectorZToReal(a);
|
|
|
|
}
|
|
|
|
case SBIG('CEXT'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
return new CRECEXT(a);
|
|
|
|
}
|
|
|
|
case SBIG('ITRL'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
2016-02-07 00:19:59 +00:00
|
|
|
return new CREIntTimesReal(a, b);
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
2016-02-12 06:06:17 +00:00
|
|
|
case SBIG('CRNG'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
CRealElement* b = GetRealElement(in);
|
|
|
|
CRealElement* c = GetRealElement(in);
|
|
|
|
CRealElement* d = GetRealElement(in);
|
|
|
|
CRealElement* e = GetRealElement(in);
|
|
|
|
return new CREConstantRange(a, b, c, d, e);
|
|
|
|
}
|
|
|
|
case SBIG('GTCR'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
return new CREGetComponentRed(a);
|
|
|
|
}
|
|
|
|
case SBIG('GTCG'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
return new CREGetComponentGreen(a);
|
|
|
|
}
|
|
|
|
case SBIG('GTCB'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
return new CREGetComponentBlue(a);
|
|
|
|
}
|
|
|
|
case SBIG('GTCA'):
|
|
|
|
{
|
|
|
|
CColorElement* a = GetColorElement(in);
|
|
|
|
return new CREGetComponentAlpha(a);
|
|
|
|
}
|
2016-02-06 00:34:40 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CIntElement* CParticleDataFactory::GetIntElement(CInputStream& in)
|
|
|
|
{
|
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('KEYE'):
|
|
|
|
case SBIG('KEYP'):
|
|
|
|
{
|
|
|
|
return new CIEKeyframeEmitter(in);
|
|
|
|
}
|
|
|
|
case SBIG('DETH'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
return new CIEDeath(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('CLMP'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
return new CIEClamp(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('CHAN'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
return new CIETimeChain(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('ADD_'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
return new CIEAdd(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('CNST'):
|
|
|
|
{
|
|
|
|
int a = GetInt(in);
|
|
|
|
return new CIEConstant(a);
|
|
|
|
}
|
|
|
|
case SBIG('IMPL'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
return new CIEImpulse(a);
|
|
|
|
}
|
|
|
|
case SBIG('ILPT'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
return new CIELifetimePercent(a);
|
|
|
|
}
|
|
|
|
case SBIG('IRND'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
return new CIEInitialRandom(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('PULS'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
CIntElement* d = GetIntElement(in);
|
|
|
|
return new CIEPulse(a, b, c, d);
|
|
|
|
}
|
|
|
|
case SBIG('MULT'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
return new CIEMultiply(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('SPAH'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
CIntElement* c = GetIntElement(in);
|
|
|
|
return new CIESampleAndHold(a, b, c);
|
|
|
|
}
|
|
|
|
case SBIG('RAND'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
return new CIERandom(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('TSCL'):
|
|
|
|
{
|
|
|
|
CRealElement* a = GetRealElement(in);
|
|
|
|
return new CIETimeScale(a);
|
|
|
|
}
|
2016-02-11 20:32:42 +00:00
|
|
|
case SBIG('GAPC'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CIEGetActiveParticleCount;
|
2016-02-11 20:32:42 +00:00
|
|
|
}
|
2016-02-06 00:34:40 +00:00
|
|
|
case SBIG('GTCP'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CIEGetCumulativeParticleCount;
|
2016-02-06 00:34:40 +00:00
|
|
|
}
|
2016-02-11 20:32:42 +00:00
|
|
|
case SBIG('GEMT'):
|
|
|
|
{
|
2016-03-19 02:04:12 +00:00
|
|
|
return new CIEGetEmitterTime;
|
2016-02-11 20:32:42 +00:00
|
|
|
}
|
2016-02-06 00:34:40 +00:00
|
|
|
case SBIG('MODU'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
return new CIEModulo(a, b);
|
|
|
|
}
|
|
|
|
case SBIG('SUB_'):
|
|
|
|
{
|
|
|
|
CIntElement* a = GetIntElement(in);
|
|
|
|
CIntElement* b = GetIntElement(in);
|
|
|
|
return new CIESubtract(a, b);
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-02-05 01:27:03 +00:00
|
|
|
CGenDescription* CParticleDataFactory::GetGeneratorDesc(CInputStream& in, CSimplePool* resPool)
|
|
|
|
{
|
2016-02-07 07:25:34 +00:00
|
|
|
std::vector<TResId> tracker;
|
2016-02-05 01:27:03 +00:00
|
|
|
tracker.reserve(8);
|
|
|
|
return CreateGeneratorDescription(in, tracker, 0, resPool);
|
|
|
|
}
|
|
|
|
|
2016-02-07 07:25:34 +00:00
|
|
|
CGenDescription* CParticleDataFactory::CreateGeneratorDescription(CInputStream& in, std::vector<TResId>& tracker,
|
|
|
|
TResId resId, CSimplePool* resPool)
|
2016-02-05 01:27:03 +00:00
|
|
|
{
|
|
|
|
if (std::count(tracker.cbegin(), tracker.cend(), resId) == 0)
|
|
|
|
{
|
|
|
|
tracker.push_back(resId);
|
|
|
|
FourCC cid = GetClassID(in);
|
|
|
|
if (cid == FOURCC('GPSM'))
|
|
|
|
{
|
|
|
|
CGenDescription* ret = new CGenDescription;
|
|
|
|
CreateGPSM(ret, in, tracker, resPool);
|
|
|
|
LoadGPSMTokens(ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CParticleDataFactory::CreateGPSM(CGenDescription* fillDesc, CInputStream& in,
|
2016-02-07 07:25:34 +00:00
|
|
|
std::vector<TResId>& tracker, CSimplePool* resPool)
|
2016-02-05 01:27:03 +00:00
|
|
|
{
|
2016-02-15 08:23:50 +00:00
|
|
|
CRandom16 rand{99};
|
|
|
|
CGlobalRandom gr(rand);
|
2016-02-05 01:27:03 +00:00
|
|
|
FourCC clsId = GetClassID(in);
|
|
|
|
while (clsId != SBIG('_END'))
|
|
|
|
{
|
|
|
|
switch (clsId)
|
|
|
|
{
|
|
|
|
case SBIG('PMCL'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x78_x64_PMCL.reset(GetColorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LFOR'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x118_x104_LFOR.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('IDTS'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xa4_x90_IDTS = GetChildGeneratorDesc(in, resPool, tracker);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('EMTR'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x40_x2c_EMTR.reset(GetEmitterElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('COLR'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x30_x24_COLR.reset(GetColorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('CIND'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_30_x32_24_CIND = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('AAPH'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_26_x30_26_AAPH = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('CSSD'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xa0_x8c_CSSD.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('GRTE'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x2c_x20_GRTE.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('FXLL'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_25_x30_25_FXLL = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('ICTS'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x8c_x78_ICTS = GetChildGeneratorDesc(in, resPool, tracker);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('KSSM'):
|
|
|
|
{
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xd0_xbc_KSSM.reset();
|
2016-02-05 01:27:03 +00:00
|
|
|
FourCC cid = GetClassID(in);
|
|
|
|
if (cid != SBIG('CNST'))
|
|
|
|
break;
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xd0_xbc_KSSM.reset(new CSpawnSystemKeyframeData(in));
|
|
|
|
fillDesc->xd0_xbc_KSSM->LoadAllSpawnedSystemTokens(resPool);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SBIG('ILOC'):
|
2016-03-03 01:06:42 +00:00
|
|
|
delete GetVectorElement(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('IITS'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xb8_xa4_IITS = GetChildGeneratorDesc(in, resPool, tracker);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('IVEC'):
|
2016-03-03 01:06:42 +00:00
|
|
|
delete GetVectorElement(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LDIR'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x110_xfc_LDIR.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LCLR'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x104_xf0_LCLR.reset(GetColorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LENG'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x20_x14_LENG.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('MAXP'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x28_x1c_MAXP.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LOFF'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x10c_xf8_LOFF.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LINT'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x108_xf4_LINT.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LINE'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_24_x30_24_LINE = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LFOT'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x114_x100_LFOT.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LIT_'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_29_x30_29_LIT_ = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LTME'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x34_x28_LTME.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LSLA'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x11c_x108_LSLA.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('LTYP'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x100_xec_LTYP.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('NDSY'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xb4_xa0_NDSY.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('MBSP'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x48_x34_MBSP.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('MBLR'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_30_x31_24_MBLR = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('NCSY'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x9c_x88_NCSY.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PISY'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xc8_xb4_PISY.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('OPTS'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_31_x32_25_OPTS = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PMAB'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_31_x31_25_PMAB = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SESD'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xf8_xe4_SESD.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SEPO'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xfc_xe8_SEPO.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PSLT'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xc_x0_PSLT.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PMSC'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x74_x60_PMSC.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PMOP'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x6c_x58_PMOP.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PMDL'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x5c_x48_PMDL = GetModel(in, resPool);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PMRT'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x70_x5c_PMRT.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('POFS'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x18_xc_POFS.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PMUS'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_24_x31_26_PMUS = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PSIV'):
|
2016-03-03 01:06:42 +00:00
|
|
|
delete GetVectorElement(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('ROTA'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x50_x3c_ROTA.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PSVM'):
|
2016-03-03 01:06:42 +00:00
|
|
|
delete GetModVectorElement(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PSTS'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x14_x8_PSTS.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PSOV'):
|
2016-03-03 01:06:42 +00:00
|
|
|
delete GetVectorElement(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PSWT'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x10_x4_PSWT.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
2016-02-13 05:16:39 +00:00
|
|
|
case SBIG('SEED'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x1c_x10_SEED.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('PMOO'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_25_x31_27_PMOO = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SSSD'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xe4_xd0_SSSD.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SORT'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_28_x30_28_SORT = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SIZE'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x4c_x38_SIZE.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SISY'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xcc_xb8_SISY.reset(GetIntElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SSPO'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xe8_xd4_SSPO.reset(GetVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('TEXR'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x54_x40_TEXR.reset(GetTextureElement(in, resPool));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('SSWH'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xd4_xc0_SSWH = GetSwooshGeneratorDesc(in, resPool);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('TIND'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x58_x44_TIND.reset(GetTextureElement(in, resPool));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VMD4'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_29_x31_31_VMD4 = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VMD3'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_28_x31_30_VMD3 = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VMD2'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_27_x31_29_VMD2 = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VMD1'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x45_26_x31_28_VMD1 = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VEL4'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x88_x74_VEL4.reset(GetModVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VEL3'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x84_x70_VEL3.reset(GetModVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VEL2'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x80_x6c_VEL2.reset(GetModVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('VEL1'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x7c_x68_VEL1.reset(GetModVectorElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('ZBUF'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->x44_27_x30_27_ZBUF = GetBool(in);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('WIDT'):
|
2016-03-04 01:01:37 +00:00
|
|
|
fillDesc->x24_x18_WIDT.reset(GetRealElement(in));
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
case SBIG('ORNT'):
|
|
|
|
fillDesc->x30_30_ORNT = GetBool(in);
|
|
|
|
break;
|
|
|
|
case SBIG('RSOP'):
|
|
|
|
fillDesc->x30_31_RSOP = GetBool(in);
|
|
|
|
break;
|
|
|
|
case SBIG('ADV1'):
|
|
|
|
fillDesc->x10c_ADV1.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('ADV2'):
|
|
|
|
fillDesc->x110_ADV2.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('ADV3'):
|
|
|
|
fillDesc->x114_ADV3.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('ADV4'):
|
|
|
|
fillDesc->x118_ADV4.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('ADV5'):
|
|
|
|
fillDesc->x11c_ADV5.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('ADV6'):
|
|
|
|
fillDesc->x120_ADV6.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('ADV7'):
|
|
|
|
fillDesc->x124_ADV7.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('ADV8'):
|
|
|
|
fillDesc->x128_ADV8.reset(GetRealElement(in));
|
|
|
|
break;
|
|
|
|
case SBIG('SELC'):
|
2016-03-03 01:06:42 +00:00
|
|
|
fillDesc->xec_xd8_SELC = GetElectricGeneratorDesc(in, resPool);
|
2016-02-05 01:27:03 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
uint32_t clsName = clsId.toUint32();
|
2016-03-04 23:04:53 +00:00
|
|
|
Log.report(logvisor::Fatal, "Unknown GPSM class %.4s @%" PRIi64, &clsName, in.position());
|
2016-02-05 01:27:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
clsId = GetClassID(in);
|
|
|
|
}
|
2016-02-15 19:12:55 +00:00
|
|
|
|
|
|
|
/* Now for our custom additions, if available */
|
2016-04-02 08:42:00 +00:00
|
|
|
if (!in.atEnd() && (in.position() + 4) < in.length())
|
2016-02-15 19:12:55 +00:00
|
|
|
{
|
|
|
|
clsId = GetClassID(in);
|
|
|
|
if (clsId == 0xFFFFFFFF)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
while (clsId != SBIG('_END') && !in.atEnd())
|
|
|
|
{
|
|
|
|
switch(clsId)
|
|
|
|
{
|
|
|
|
case SBIG('BGCL'):
|
|
|
|
fillDesc->m_bevelGradient.reset(GetColorElement(in));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
clsId = GetClassID(in);
|
|
|
|
}
|
|
|
|
}
|
2016-02-05 01:27:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CParticleDataFactory::LoadGPSMTokens(CGenDescription* desc)
|
|
|
|
{
|
2016-03-03 01:06:42 +00:00
|
|
|
if (desc->x5c_x48_PMDL.m_found)
|
|
|
|
desc->x5c_x48_PMDL.m_model = desc->x5c_x48_PMDL.m_token.GetObj();
|
2016-02-15 02:31:46 +00:00
|
|
|
|
2016-03-03 01:06:42 +00:00
|
|
|
if (desc->x8c_x78_ICTS.m_found)
|
|
|
|
desc->x8c_x78_ICTS.m_gen = desc->x8c_x78_ICTS.m_token.GetObj();
|
2016-02-15 02:31:46 +00:00
|
|
|
|
2016-03-03 01:06:42 +00:00
|
|
|
if (desc->xa4_x90_IDTS.m_found)
|
|
|
|
desc->xa4_x90_IDTS.m_gen = desc->xa4_x90_IDTS.m_token.GetObj();
|
2016-02-15 02:31:46 +00:00
|
|
|
|
2016-03-03 01:06:42 +00:00
|
|
|
if (desc->xb8_xa4_IITS.m_found)
|
|
|
|
desc->xb8_xa4_IITS.m_gen = desc->xb8_xa4_IITS.m_token.GetObj();
|
2016-02-15 02:31:46 +00:00
|
|
|
|
2016-03-03 01:06:42 +00:00
|
|
|
if (desc->xd4_xc0_SSWH.m_found)
|
|
|
|
desc->xd4_xc0_SSWH.m_swoosh = desc->xd4_xc0_SSWH.m_token.GetObj();
|
2016-02-05 01:27:03 +00:00
|
|
|
}
|
|
|
|
|
2016-03-31 00:38:03 +00:00
|
|
|
CFactoryFnReturn FParticleFactory(const SObjectTag& tag, CInputStream& in,
|
2016-03-16 20:49:35 +00:00
|
|
|
const CVParamTransfer& vparms)
|
2016-02-05 01:27:03 +00:00
|
|
|
{
|
|
|
|
CSimplePool* sp = static_cast<CSimplePool*>(static_cast<TObjOwnerParam<IObjectStore*>*>(vparms.GetObj())->GetParam());
|
|
|
|
return TToken<CGenDescription>::GetIObjObjectFor(std::unique_ptr<CGenDescription>(CParticleDataFactory::GetGeneratorDesc(in, sp)));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|