metaforce/Runtime/AutoMapper/CMappableObject.hpp

96 lines
3.0 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-07-29 10:00:23 -07:00
#include <array>
#include <optional>
#include <utility>
#include "Runtime/GameGlobalObjects.hpp"
#include "Runtime/Graphics/CLineRenderer.hpp"
#include "Runtime/Graphics/Shaders/CMapSurfaceShader.hpp"
2022-01-31 16:06:54 -08:00
#include "Runtime/RetroTypes.hpp"
#include <zeus/CAABox.hpp>
#include <zeus/CTransform.hpp>
2016-07-29 10:00:23 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2017-04-21 23:42:32 -07:00
class CMapWorldInfo;
class CStateManager;
2017-04-21 23:42:32 -07:00
2018-12-07 21:30:43 -08:00
class CMappableObject {
2016-07-29 10:00:23 -07:00
public:
2018-12-07 21:30:43 -08:00
enum class EMappableObjectType {
BlueDoor = 0,
ShieldDoor = 1,
IceDoor = 2,
WaveDoor = 3,
PlasmaDoor = 4,
BigDoor1 = 5,
BigDoor2 = 6,
IceDoorCeiling = 7,
IceDoorFloor = 8,
WaveDoorCeiling = 9,
WaveDoorFloor = 10,
PlasmaDoorCeiling = 11,
PlasmaDoorFloor = 12,
IceDoorFloor2 = 13,
WaveDoorFloor2 = 14,
PlasmaDoorFloor2 = 15,
DownArrowYellow = 27, /* Maintenance Tunnel */
UpArrowYellow = 28, /* Phazon Processing Center */
DownArrowGreen = 29, /* Elevator A */
UpArrowGreen = 30, /* Elite Control Access */
DownArrowRed = 31, /* Elevator B */
UpArrowRed = 32, /* Fungal Hall Access */
TransportLift = 33,
SaveStation = 34,
MissileStation = 37
};
2016-07-29 10:00:23 -07:00
2018-12-07 21:30:43 -08:00
enum class EVisMode { Always, MapStationOrVisit, Visit, Never, MapStationOrVisit2 };
2017-04-22 14:46:18 -07:00
2016-07-29 10:00:23 -07:00
private:
static std::array<zeus::CVector3f, 8> skDoorVerts;
2022-01-31 16:06:54 -08:00
static std::array<u16, 24> skDoorIndices;
2016-07-29 10:00:23 -07:00
2018-12-07 21:30:43 -08:00
EMappableObjectType x0_type;
EVisMode x4_visibilityMode;
TEditorId x8_objId;
u32 xc_;
zeus::CTransform x10_transform;
2017-04-21 23:42:32 -07:00
2022-07-29 13:16:55 -07:00
// struct DoorSurface {
// CMapSurfaceShader m_surface;
// CLineRenderer m_outline;
// explicit DoorSurface()
// : m_surface(skDoorVerts, skDoorIndices)
// , m_outline(CLineRenderer::EPrimitiveMode::LineLoop, 5, {}, false, false, true) {}
// };
// std::optional<DoorSurface> m_doorSurface;
2018-12-07 21:30:43 -08:00
zeus::CTransform AdjustTransformForType() const;
2018-12-07 21:30:43 -08:00
std::pair<zeus::CColor, zeus::CColor> GetDoorColors(int idx, const CMapWorldInfo& mwInfo, float alpha) const;
2017-04-21 23:42:32 -07:00
2016-07-29 10:00:23 -07:00
public:
explicit CMappableObject(const void* buf);
2018-12-07 21:30:43 -08:00
CMappableObject(CMappableObject&&) = default;
void PostConstruct(const void*);
const zeus::CTransform& GetTransform() const { return x10_transform; }
EMappableObjectType GetType() const { return x0_type; }
void Draw(int, const CMapWorldInfo&, float, bool);
void DrawDoorSurface(int curArea, const CMapWorldInfo& mwInfo, float alpha, int surfIdx, bool needsVtxLoad);
2018-12-07 21:30:43 -08:00
zeus::CVector3f BuildSurfaceCenterPoint(int surfIdx) const;
bool IsDoorConnectedToArea(int idx, const CStateManager&) const;
bool IsDoorConnectedToVisitedArea(const CStateManager&) const;
bool IsVisibleToAutoMapper(bool worldVis, const CMapWorldInfo& mwInfo) const;
bool GetIsSeen() const;
2022-07-29 13:16:55 -07:00
// void CreateDoorSurface() { m_doorSurface.emplace(); }
2016-07-29 10:00:23 -07:00
2018-12-07 21:30:43 -08:00
static void ReadAutoMapperTweaks(const ITweakAutoMapper&);
static bool GetTweakIsMapVisibilityCheat();
static bool IsDoorType(EMappableObjectType type) {
return type >= EMappableObjectType::BlueDoor && type <= EMappableObjectType::PlasmaDoorFloor2;
}
static void Shutdown();
2016-07-29 10:00:23 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce