2020-01-15 12:07:48 +00:00
|
|
|
#include "Runtime/AutoMapper/CMapWorldInfo.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/CMemoryCardSys.hpp"
|
|
|
|
#include "Runtime/GameGlobalObjects.hpp"
|
2015-08-17 22:05:00 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-09-25 01:58:20 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CMapWorldInfo::CMapWorldInfo(CBitStreamReader& reader, const CSaveWorld& savw, CAssetId mlvlId) {
|
|
|
|
const CSaveWorldMemory& worldMem = g_MemoryCardSys->GetSaveWorldMemory(mlvlId);
|
2016-10-09 21:41:23 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
x4_visitedAreas.reserve((worldMem.GetAreaCount() + 31) / 32);
|
2019-06-12 02:05:17 +00:00
|
|
|
for (u32 i = 0; i < worldMem.GetAreaCount(); ++i) {
|
2018-12-08 05:30:43 +00:00
|
|
|
bool visited = reader.ReadEncoded(1);
|
|
|
|
SetAreaVisited(i, visited);
|
|
|
|
}
|
2017-02-08 06:48:43 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
x18_mappedAreas.reserve((worldMem.GetAreaCount() + 31) / 32);
|
2019-06-12 02:05:17 +00:00
|
|
|
for (u32 i = 0; i < worldMem.GetAreaCount(); ++i) {
|
2018-12-08 05:30:43 +00:00
|
|
|
bool mapped = reader.ReadEncoded(1);
|
|
|
|
SetIsMapped(i, mapped);
|
|
|
|
}
|
2016-04-22 20:22:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
for (TEditorId doorId : savw.GetDoors())
|
|
|
|
SetDoorVisited(doorId, reader.ReadEncoded(1));
|
|
|
|
|
|
|
|
x38_mapStationUsed = reader.ReadEncoded(1);
|
2016-08-14 03:00:58 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CMapWorldInfo::PutTo(CBitStreamWriter& writer, const CSaveWorld& savw, CAssetId mlvlId) const {
|
|
|
|
const CSaveWorldMemory& worldMem = g_MemoryCardSys->GetSaveWorldMemory(mlvlId);
|
|
|
|
|
2019-06-12 02:05:17 +00:00
|
|
|
for (u32 i = 0; i < worldMem.GetAreaCount(); ++i) {
|
2018-12-08 05:30:43 +00:00
|
|
|
if (i < x0_visitedAreasAllocated)
|
|
|
|
writer.WriteEncoded(IsAreaVisted(i), 1);
|
|
|
|
else
|
|
|
|
writer.WriteEncoded(0, 1);
|
|
|
|
}
|
|
|
|
|
2019-06-12 02:05:17 +00:00
|
|
|
for (u32 i = 0; i < worldMem.GetAreaCount(); ++i) {
|
2018-12-08 05:30:43 +00:00
|
|
|
if (i < x14_mappedAreasAllocated)
|
|
|
|
writer.WriteEncoded(IsMapped(i), 1);
|
2016-08-14 03:00:58 +00:00
|
|
|
else
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.WriteEncoded(0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (TEditorId doorId : savw.GetDoors())
|
|
|
|
writer.WriteEncoded(IsDoorVisited(doorId), 1);
|
|
|
|
|
|
|
|
writer.WriteEncoded(x38_mapStationUsed, 1);
|
2016-08-14 03:00:58 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CMapWorldInfo::SetDoorVisited(TEditorId eid, bool visited) { x28_visitedDoors[eid] = visited; }
|
|
|
|
|
|
|
|
bool CMapWorldInfo::IsDoorVisited(TEditorId eid) const { return x28_visitedDoors.find(eid) != x28_visitedDoors.end(); }
|
|
|
|
|
|
|
|
bool CMapWorldInfo::IsAreaVisted(TAreaId aid) const {
|
|
|
|
if (aid + 1 > x0_visitedAreasAllocated) {
|
|
|
|
const_cast<CMapWorldInfo&>(*this).x4_visitedAreas.resize((aid + 32) / 32);
|
|
|
|
const_cast<CMapWorldInfo&>(*this).x0_visitedAreasAllocated = aid + 1;
|
|
|
|
}
|
|
|
|
return (x4_visitedAreas[aid / 32] >> (aid % 32)) & 0x1;
|
2017-02-08 06:48:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CMapWorldInfo::SetAreaVisited(TAreaId aid, bool visited) {
|
|
|
|
if (aid + 1 > x0_visitedAreasAllocated) {
|
|
|
|
x4_visitedAreas.resize((aid + 32) / 32);
|
|
|
|
x0_visitedAreasAllocated = aid + 1;
|
|
|
|
}
|
|
|
|
if (visited)
|
|
|
|
x4_visitedAreas[aid / 32] |= 1 << (aid % 32);
|
|
|
|
else
|
|
|
|
x4_visitedAreas[aid / 32] &= ~(1 << (aid % 32));
|
2017-02-08 06:48:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool CMapWorldInfo::IsMapped(TAreaId aid) const {
|
|
|
|
if (aid + 1 > x14_mappedAreasAllocated) {
|
|
|
|
const_cast<CMapWorldInfo&>(*this).x18_mappedAreas.resize((aid + 32) / 32);
|
|
|
|
const_cast<CMapWorldInfo&>(*this).x14_mappedAreasAllocated = aid + 1;
|
|
|
|
}
|
|
|
|
return (x18_mappedAreas[aid / 32] >> (aid % 32)) & 0x1;
|
2017-02-08 06:48:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CMapWorldInfo::SetIsMapped(TAreaId aid, bool mapped) {
|
|
|
|
if (aid + 1 > x14_mappedAreasAllocated) {
|
|
|
|
x18_mappedAreas.resize((aid + 32) / 32);
|
|
|
|
x14_mappedAreasAllocated = aid + 1;
|
|
|
|
}
|
|
|
|
if (mapped)
|
|
|
|
x18_mappedAreas[aid / 32] |= 1 << (aid % 32);
|
|
|
|
else
|
|
|
|
x18_mappedAreas[aid / 32] &= ~(1 << (aid % 32));
|
2017-04-16 05:52:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool CMapWorldInfo::IsWorldVisible(TAreaId aid) const { return x38_mapStationUsed || IsMapped(aid); }
|
|
|
|
|
2018-12-10 05:12:55 +00:00
|
|
|
bool CMapWorldInfo::IsAreaVisible(TAreaId aid) const { return IsAreaVisted(aid) || IsMapped(aid); }
|
2017-04-16 05:52:43 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool CMapWorldInfo::IsAnythingSet() const {
|
2019-06-12 02:05:17 +00:00
|
|
|
for (u32 i = 0; i < x0_visitedAreasAllocated; ++i)
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x4_visitedAreas[i / 32] & (1 << (i % 32)))
|
|
|
|
return true;
|
2019-06-12 02:05:17 +00:00
|
|
|
for (u32 i = 0; i < x14_mappedAreasAllocated; ++i)
|
2018-12-08 05:30:43 +00:00
|
|
|
if (x18_mappedAreas[i / 32] & (1 << (i % 32)))
|
|
|
|
return true;
|
|
|
|
return x38_mapStationUsed;
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
} // namespace urde
|