100 lines
2.1 KiB
C++
100 lines
2.1 KiB
C++
#include "StdAfx.h"
|
|
#include "MapBase.h"
|
|
|
|
CMapBase::CMapBase()
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
CMapBase::~CMapBase()
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
void CMapBase::Clear()
|
|
{
|
|
m_strName = "";
|
|
m_eType = MAPTYPE_INVALID;
|
|
mc_pEnvironmentData = NULL;
|
|
Leave();
|
|
}
|
|
|
|
bool CMapBase::Enter()
|
|
{
|
|
m_bReady = true;
|
|
return true;
|
|
}
|
|
|
|
bool CMapBase::Leave()
|
|
{
|
|
m_bReady = false;
|
|
return true;
|
|
}
|
|
|
|
void CMapBase::SetEnvironmentDataPtr(const TEnvironmentData * c_pEnvironmentData)
|
|
{
|
|
mc_pEnvironmentData = c_pEnvironmentData;
|
|
OnSetEnvironmentDataPtr();
|
|
}
|
|
|
|
void CMapBase::ResetEnvironmentDataPtr(const TEnvironmentData * c_pEnvironmentData)
|
|
{
|
|
mc_pEnvironmentData = c_pEnvironmentData;
|
|
OnResetEnvironmentDataPtr();
|
|
}
|
|
|
|
void CMapBase::Render()
|
|
{
|
|
if (IsReady())
|
|
OnRender();
|
|
}
|
|
|
|
bool CMapBase::LoadProperty()
|
|
{
|
|
std::string strFileName = GetName() + "\\MapProperty.txt";
|
|
|
|
CTokenVectorMap stTokenVectorMap;
|
|
|
|
if (!LoadMultipleTextData(strFileName.c_str(), stTokenVectorMap))
|
|
{
|
|
TraceError("CMapBase::LoadProperty(FileName=%s) - LoadMultipleTextData ERROR File not found.", strFileName.c_str());
|
|
return false;
|
|
}
|
|
|
|
if (stTokenVectorMap.end() == stTokenVectorMap.find("scripttype"))
|
|
{
|
|
TraceError("CMapBase::LoadProperty(FileName=%s) - FIND 'scripttype' - FAILED", strFileName.c_str());
|
|
return false;
|
|
}
|
|
|
|
if (stTokenVectorMap.end() == stTokenVectorMap.find("maptype"))
|
|
{
|
|
TraceError("CMapBase::LoadProperty(FileName=%s) - FIND 'maptype' - FAILED", strFileName.c_str());
|
|
return false;
|
|
}
|
|
|
|
if (stTokenVectorMap.end() != stTokenVectorMap.find("parentmapname"))
|
|
{
|
|
m_strParentMapName = stTokenVectorMap["parentmapname"][0];
|
|
}
|
|
|
|
const std::string & c_rstrType = stTokenVectorMap["scripttype"][0];
|
|
const std::string & c_rstrMapType = stTokenVectorMap["maptype"][0];
|
|
|
|
if (0 != c_rstrType.compare("MapProperty"))
|
|
{
|
|
TraceError("CMapBase::LoadProperty(FileName=%s) - Resourse Type ERROR", strFileName.c_str());
|
|
return false;
|
|
}
|
|
|
|
if (0 == c_rstrMapType.compare("Indoor"))
|
|
SetType(MAPTYPE_INDOOR);
|
|
else if (0 == c_rstrMapType.compare("Outdoor"))
|
|
SetType(MAPTYPE_OUTDOOR);
|
|
else if (0 == c_rstrMapType.compare("Invalid"))
|
|
SetType(MAPTYPE_OUTDOOR);
|
|
|
|
return true;
|
|
}
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|