2016-08-02 06:19:52 +00:00
|
|
|
#include "CMapUniverse.hpp"
|
|
|
|
#include "GameGlobalObjects.hpp"
|
|
|
|
#include "CSimplePool.hpp"
|
2017-04-25 01:11:31 +00:00
|
|
|
#include "CGameState.hpp"
|
2016-08-02 06:19:52 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
CMapUniverse::CMapUniverse(CInputStream& in, u32 version)
|
|
|
|
: x0_hexagonId(in.readUint32Big())
|
|
|
|
{
|
2017-10-22 06:11:22 +00:00
|
|
|
x4_hexagonToken = g_SimplePool->GetObj({FOURCC('MAPA'), x0_hexagonId});
|
2016-08-02 06:19:52 +00:00
|
|
|
u32 count = in.readUint32Big();
|
|
|
|
x10_worldDatas.reserve(count);
|
|
|
|
for (u32 i = 0 ; i<count ; ++i)
|
|
|
|
x10_worldDatas.emplace_back(in, version);
|
|
|
|
}
|
|
|
|
|
|
|
|
CMapUniverse::CMapWorldData::CMapWorldData(CInputStream& in, u32 version)
|
|
|
|
: x0_label(in.readString()),
|
|
|
|
x10_worldAssetId(in.readUint32Big())
|
|
|
|
{
|
|
|
|
x14_transform.read34RowMajor(in);
|
|
|
|
u32 worldCount = in.readUint32Big();
|
2017-04-15 05:32:25 +00:00
|
|
|
x44_hexagonXfs.reserve(worldCount);
|
2016-08-02 06:19:52 +00:00
|
|
|
for (u32 i = 0 ; i<worldCount ; ++i)
|
|
|
|
{
|
2017-04-15 05:32:25 +00:00
|
|
|
x44_hexagonXfs.emplace_back();
|
|
|
|
x44_hexagonXfs.back().read34RowMajor(in);
|
2016-08-02 06:19:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (version != 0)
|
2017-04-25 01:11:31 +00:00
|
|
|
x54_surfColorSelected.readRGBABig(in);
|
2016-08-02 06:19:52 +00:00
|
|
|
else
|
2017-08-13 05:26:14 +00:00
|
|
|
x54_surfColorSelected.fromRGBA32(255 | (u32(x10_worldAssetId.Value()) & 0xFFFFFF00));
|
2016-08-02 06:19:52 +00:00
|
|
|
|
2017-04-25 01:11:31 +00:00
|
|
|
x58_outlineColorSelected = zeus::CColor::lerp(zeus::CColor::skWhite, x54_surfColorSelected, 0.5f);
|
|
|
|
x5c_surfColorUnselected = zeus::CColor::lerp(zeus::CColor::skBlack, x54_surfColorSelected, 0.5f);
|
|
|
|
x60_outlineColorUnselected = zeus::CColor::lerp(zeus::CColor::skWhite, x5c_surfColorUnselected, 0.5f);
|
2016-08-02 06:19:52 +00:00
|
|
|
|
2017-04-15 05:32:25 +00:00
|
|
|
for (const zeus::CTransform& xf : x44_hexagonXfs)
|
|
|
|
x64_centerPoint += xf.origin;
|
2016-08-02 06:19:52 +00:00
|
|
|
|
2017-12-18 02:54:50 +00:00
|
|
|
x64_centerPoint *= zeus::CVector3f(1.0f / float(x44_hexagonXfs.size()));
|
2016-08-02 06:19:52 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 20:56:34 +00:00
|
|
|
void CMapUniverse::Draw(const CMapUniverseDrawParms& parms, const zeus::CVector3f&, float, float) const
|
|
|
|
{
|
2017-04-25 01:11:31 +00:00
|
|
|
if (!x4_hexagonToken.IsLoaded())
|
|
|
|
return;
|
2017-04-16 20:56:34 +00:00
|
|
|
|
2017-04-25 01:11:31 +00:00
|
|
|
u32 totalSurfaceCount = 0;
|
|
|
|
for (const CMapWorldData& data : x10_worldDatas)
|
|
|
|
totalSurfaceCount += data.GetNumMapAreaDatas() * x4_hexagonToken->GetNumSurfaces();
|
|
|
|
|
|
|
|
std::vector<CMapObjectSortInfo> sortInfos;
|
|
|
|
sortInfos.reserve(totalSurfaceCount);
|
|
|
|
|
|
|
|
for (int w=0 ; w<x10_worldDatas.size() ; ++w)
|
|
|
|
{
|
|
|
|
const CMapWorldData& data = x10_worldDatas[w];
|
|
|
|
const CMapWorldInfo& mwInfo = *g_GameState->StateForWorld(data.GetWorldAssetId()).MapWorldInfo();
|
|
|
|
if (!mwInfo.IsAnythingSet())
|
|
|
|
continue;
|
|
|
|
zeus::CColor surfColor, outlineColor;
|
|
|
|
if (w == parms.GetFocusWorldIndex())
|
|
|
|
{
|
|
|
|
surfColor = data.GetSurfaceColorSelected();
|
|
|
|
surfColor.a *= parms.GetAlpha();
|
|
|
|
outlineColor = data.GetOutlineColorSelected();
|
|
|
|
outlineColor.a *= parms.GetAlpha();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
surfColor = data.GetSurfaceColorUnselected();
|
|
|
|
surfColor.a *= parms.GetAlpha();
|
|
|
|
outlineColor = data.GetSurfaceColorUnselected();
|
|
|
|
outlineColor.a *= parms.GetAlpha();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int h=0 ; h<data.GetNumMapAreaDatas() ; ++h)
|
|
|
|
{
|
|
|
|
zeus::CTransform hexXf = parms.GetCameraTransform().inverse() * data.GetMapAreaData(h);
|
|
|
|
for (int s=0 ; s<x4_hexagonToken->GetNumSurfaces() ; ++s)
|
|
|
|
{
|
|
|
|
const CMapArea::CMapAreaSurface& surf = x4_hexagonToken->GetSurface(s);
|
|
|
|
zeus::CVector3f centerPos = hexXf * surf.GetCenterPosition();
|
|
|
|
sortInfos.emplace_back(centerPos.y, w, h, s, surfColor, outlineColor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(sortInfos.begin(), sortInfos.end(),
|
|
|
|
[](const CMapObjectSortInfo& a, const CMapObjectSortInfo& b)
|
|
|
|
{
|
|
|
|
return a.GetZDistance() < b.GetZDistance();
|
|
|
|
});
|
|
|
|
|
|
|
|
int lastWldIdx = -1;
|
|
|
|
int lastHexIdx = -1;
|
|
|
|
int instIdx = 0;
|
|
|
|
for (const CMapObjectSortInfo& info : sortInfos)
|
|
|
|
{
|
|
|
|
const CMapWorldData& mwData = x10_worldDatas[info.GetWorldIndex()];
|
|
|
|
zeus::CColor surfColor = info.GetSurfaceColor();
|
|
|
|
zeus::CColor outlineColor = info.GetOutlineColor();
|
|
|
|
if (parms.GetWorldAssetId() == mwData.GetWorldAssetId() && parms.GetClosestArea() == info.GetAreaIndex())
|
|
|
|
{
|
|
|
|
surfColor = zeus::CColor::lerp(g_tweakAutoMapper->GetSurfaceSelectVisitedColor(),
|
|
|
|
g_tweakAutoMapper->GetAreaFlashPulseColor(),
|
|
|
|
parms.GetFlashPulse());
|
|
|
|
surfColor.a = info.GetSurfaceColor().a;
|
|
|
|
outlineColor = zeus::CColor::lerp(g_tweakAutoMapper->GetOutlineSelectVisitedColor(),
|
|
|
|
g_tweakAutoMapper->GetAreaFlashPulseColor(),
|
|
|
|
parms.GetFlashPulse());
|
|
|
|
outlineColor.a = info.GetOutlineColor().a;
|
|
|
|
}
|
|
|
|
|
|
|
|
zeus::CTransform hexXf = mwData.GetMapAreaData(info.GetAreaIndex());
|
|
|
|
hexXf.orthonormalize();
|
|
|
|
const CMapArea::CMapAreaSurface& surf = x4_hexagonToken->GetSurface(info.GetObjectIndex());
|
|
|
|
zeus::CColor color(std::max(0.f, (-parms.GetCameraTransform().basis[1]).dot(hexXf.rotate(surf.GetNormal()))) *
|
|
|
|
g_tweakAutoMapper->GetMapSurfaceNormColorLinear() + g_tweakAutoMapper->GetMapSurfaceNormColorConstant());
|
|
|
|
surfColor *= color;
|
|
|
|
|
|
|
|
if (info.GetAreaIndex() != lastHexIdx || info.GetWorldIndex() != lastWldIdx)
|
|
|
|
CGraphics::SetModelMatrix(parms.GetPaneProjectionTransform() * mwData.GetMapAreaData(info.GetAreaIndex()));
|
|
|
|
|
|
|
|
surf.Draw(x4_hexagonToken->GetVertices(), surfColor, outlineColor, 2.f, instIdx++);
|
|
|
|
}
|
2017-04-16 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 05:30:16 +00:00
|
|
|
CFactoryFnReturn FMapUniverseFactory(const SObjectTag&, CInputStream& in, const CVParamTransfer&,
|
|
|
|
CObjectReference*)
|
2016-08-02 06:19:52 +00:00
|
|
|
{
|
|
|
|
in.readUint32Big();
|
|
|
|
u32 version = in.readUint32Big();
|
|
|
|
|
2016-08-03 23:20:31 +00:00
|
|
|
return TToken<CMapUniverse>::GetIObjObjectFor(std::make_unique<CMapUniverse>(in, version));
|
2016-08-02 06:19:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|