mirror of https://github.com/AxioDL/metaforce.git
Add GAPC and GEMT
This commit is contained in:
parent
5b0dfde1d8
commit
aa1bceb605
|
@ -207,6 +207,18 @@ bool CIEGTCP::GetValue(int frame, int& valOut) const
|
|||
return false;
|
||||
}
|
||||
|
||||
bool CIEGAPC::GetValue(int frame, int &valOut) const
|
||||
{
|
||||
/* TODO: Do */
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CIEGEMT::GetValue(int frame, int &valOut) const
|
||||
{
|
||||
/* TODO: Do */
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CIEModulo::GetValue(int frame, int& valOut) const
|
||||
{
|
||||
int a, b;
|
||||
|
|
|
@ -158,6 +158,18 @@ public:
|
|||
bool GetValue(int frame, int& valOut) const;
|
||||
};
|
||||
|
||||
class CIEGAPC : public CIntElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, int &valOut) const;
|
||||
};
|
||||
|
||||
class CIEGEMT : public CIntElement
|
||||
{
|
||||
public:
|
||||
bool GetValue(int frame, int &valOut) const;
|
||||
};
|
||||
|
||||
class CIEModulo : public CIntElement
|
||||
{
|
||||
std::unique_ptr<CIntElement> x4_a;
|
||||
|
|
|
@ -739,10 +739,18 @@ CIntElement* CParticleDataFactory::GetIntElement(CInputStream& in)
|
|||
CRealElement* a = GetRealElement(in);
|
||||
return new CIETimeScale(a);
|
||||
}
|
||||
case SBIG('GAPC'):
|
||||
{
|
||||
return new CIEGAPC;
|
||||
}
|
||||
case SBIG('GTCP'):
|
||||
{
|
||||
return new CIEGTCP;
|
||||
}
|
||||
case SBIG('GEMT'):
|
||||
{
|
||||
return new GIEGEMT;
|
||||
}
|
||||
case SBIG('MODU'):
|
||||
{
|
||||
CIntElement* a = GetIntElement(in);
|
||||
|
|
Loading…
Reference in New Issue