Initial commit of current work on Prime World Editor

This commit is contained in:
parax0
2015-07-26 17:39:49 -04:00
commit 66e8c2ebcb
305 changed files with 33469 additions and 0 deletions

55
Core/CAreaAttributes.cpp Normal file
View File

@@ -0,0 +1,55 @@
#include "CAreaAttributes.h"
#include <Resource/script/CMasterTemplate.h>
#include <Resource/script/CScriptLayer.h>
CAreaAttributes::CAreaAttributes(CScriptObject *pObj)
{
SetObject(pObj);
}
CAreaAttributes::~CAreaAttributes()
{
}
void CAreaAttributes::SetObject(CScriptObject *pObj)
{
mpObj = pObj;
mGame = pObj->Template()->MasterTemplate()->GetGame();
}
bool CAreaAttributes::IsLayerEnabled()
{
return mpObj->Layer()->IsActive();
}
bool CAreaAttributes::IsSkyEnabled()
{
CPropertyStruct *pBaseStruct = mpObj->Properties();
switch (mGame)
{
case ePrime:
case eEchoes:
return static_cast<CBoolProperty*>(pBaseStruct->PropertyByIndex(1))->Get();
case eCorruption:
return static_cast<CBoolProperty*>(pBaseStruct->PropertyByIndex(9))->Get();
default:
return false;
}
}
CModel* CAreaAttributes::SkyModel()
{
CPropertyStruct *pBaseStruct = mpObj->Properties();
switch (mGame)
{
case ePrime:
case eEchoes:
return (CModel*) static_cast<CFileProperty*>(pBaseStruct->PropertyByIndex(7))->Get();
case eCorruption:
return (CModel*) static_cast<CFileProperty*>(pBaseStruct->PropertyByIndex(8))->Get();
default:
return nullptr;
}
}