Shipwright/ZAPDTR/ZAPD/ZRoom/ZNames.h
M4xw 5dda5762ba git subrepo clone https://github.com/HarbourMasters/ZAPDTR.git
subrepo:
  subdir:   "ZAPDTR"
  merged:   "a53a53ea4"
upstream:
  origin:   "https://github.com/HarbourMasters/ZAPDTR.git"
  branch:   "master"
  commit:   "a53a53ea4"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
2022-03-22 02:54:48 +01:00

50 lines
1.0 KiB
C++

#pragma once
#include <string>
#include "Globals.h"
#include "Utils/StringHelper.h"
class ZNames
{
public:
static std::string GetObjectName(size_t id)
{
if (id >= Globals::Instance->cfg.objectList.size())
return StringHelper::Sprintf("0x%04X", id);
return Globals::Instance->cfg.objectList.at(id);
}
static std::string GetActorName(int32_t id)
{
switch (Globals::Instance->game)
{
case ZGame::OOT_RETAIL:
case ZGame::OOT_SW97:
if (id < ZNames::GetNumActors())
return Globals::Instance->cfg.actorList.at(id);
else
return StringHelper::Sprintf("0x%04X", id);
case ZGame::MM_RETAIL:
{
int32_t flags = id & 0xF000;
id &= 0xFFF;
std::string name;
if (id < ZNames::GetNumActors())
name = Globals::Instance->cfg.actorList.at(id);
else
name = StringHelper::Sprintf("0x%04X", id);
if (flags == 0)
return name;
else
return StringHelper::Sprintf("%s | 0x%04X", name.c_str(), flags);
}
}
return "";
}
static int32_t GetNumActors() { return Globals::Instance->cfg.actorList.size(); }
};