2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-03-05 07:57:12 +00:00
|
|
|
|
|
|
|
#include "CToken.hpp"
|
|
|
|
#include "Graphics/CTexture.hpp"
|
|
|
|
#include "zeus/CAABox.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2017-03-05 07:57:12 +00:00
|
|
|
class CStateManager;
|
|
|
|
class CPlayer;
|
|
|
|
class CGameArea;
|
|
|
|
class CActor;
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CMorphBallShadow {
|
|
|
|
std::list<const CActor*> x0_actors;
|
|
|
|
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-05 07:57:12 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
void RenderIdBuffer(const zeus::CAABox& aabb, const CStateManager& mgr, CPlayer& player);
|
|
|
|
void Render(const CStateManager& mgr, float alpha);
|
2017-03-05 07:57:12 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|