metaforce/Runtime/World/CMorphBallShadow.hpp

35 lines
799 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2017-03-04 23:57:12 -08:00
#include <list>
#include <vector>
#include "Runtime/CToken.hpp"
#include "Runtime/Graphics/CTexture.hpp"
#include <zeus/CAABox.hpp>
2017-03-04 23:57:12 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2017-03-04 23:57:12 -08:00
class CActor;
class CGameArea;
class CPlayer;
class CStateManager;
2017-03-04 23:57:12 -08:00
2018-12-07 21:30:43 -08:00
class CMorphBallShadow {
std::list<CActor*> x0_actors;
2018-12-07 21:30:43 -08:00
std::list<TAreaId> x18_areas;
std::vector<u32> x30_worldModelBits;
// CTexture x40_;
// TToken<CTexture> xa8_ballFade;
// int xb0_idW;
// int xb4_idH;
zeus::CAABox xb8_shadowVolume;
bool xd0_hasIds = false;
void GatherAreas(const CStateManager& mgr);
bool AreasValid(const CStateManager& mgr) const;
2017-03-04 23:57:12 -08:00
public:
2018-12-07 21:30:43 -08:00
void RenderIdBuffer(const zeus::CAABox& aabb, const CStateManager& mgr, CPlayer& player);
void Render(const CStateManager& mgr, float alpha);
2017-03-04 23:57:12 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce