2022-02-26 16:42:42 +00:00
|
|
|
#include "Runtime/Graphics/CCubeRenderer.hpp"
|
2022-02-25 07:45:25 +00:00
|
|
|
|
2022-02-26 16:42:42 +00:00
|
|
|
#include "Runtime/GameGlobalObjects.hpp"
|
2022-03-12 15:47:20 +00:00
|
|
|
#include "Runtime/Graphics/CCubeMaterial.hpp"
|
|
|
|
#include "Runtime/Graphics/CCubeModel.hpp"
|
|
|
|
#include "Runtime/Graphics/CCubeSurface.hpp"
|
2022-02-26 16:42:42 +00:00
|
|
|
#include "Runtime/Graphics/CDrawable.hpp"
|
|
|
|
#include "Runtime/Graphics/CDrawablePlaneObject.hpp"
|
2022-03-12 15:47:20 +00:00
|
|
|
#include "Runtime/Graphics/CGX.hpp"
|
2022-02-26 16:42:42 +00:00
|
|
|
#include "Runtime/Graphics/CLight.hpp"
|
2022-03-12 15:47:20 +00:00
|
|
|
#include "Runtime/Graphics/CMetroidModelInstance.hpp"
|
2022-02-26 16:42:42 +00:00
|
|
|
#include "Runtime/Graphics/CModel.hpp"
|
2022-03-12 17:03:55 +00:00
|
|
|
#include "Runtime/World/CGameArea.hpp"
|
2022-02-27 20:12:02 +00:00
|
|
|
#include "Runtime/Particle/CParticleGen.hpp"
|
2022-02-25 07:45:25 +00:00
|
|
|
|
|
|
|
namespace metaforce {
|
|
|
|
static logvisor::Module Log("CCubeRenderer");
|
|
|
|
|
|
|
|
static rstl::reserved_vector<CDrawable, 512> sDataHolder;
|
|
|
|
static rstl::reserved_vector<rstl::reserved_vector<CDrawable*, 128>, 50> sBucketsHolder;
|
|
|
|
static rstl::reserved_vector<CDrawablePlaneObject, 8> sPlaneObjectDataHolder;
|
|
|
|
static rstl::reserved_vector<u16, 8> sPlaneObjectBucketHolder;
|
|
|
|
|
|
|
|
class Buckets {
|
|
|
|
friend class CCubeRenderer;
|
|
|
|
|
|
|
|
static inline rstl::reserved_vector<u16, 50> sBucketIndex;
|
|
|
|
static inline rstl::reserved_vector<CDrawable, 512>* sData = nullptr;
|
|
|
|
static inline rstl::reserved_vector<rstl::reserved_vector<CDrawable*, 128>, 50>* sBuckets = nullptr;
|
|
|
|
static inline rstl::reserved_vector<CDrawablePlaneObject, 8>* sPlaneObjectData = nullptr;
|
|
|
|
static inline rstl::reserved_vector<u16, 8>* sPlaneObjectBucket = nullptr;
|
|
|
|
static constexpr std::array skWorstMinMaxDistance{99999.0f, -99999.0f};
|
|
|
|
static inline std::array sMinMaxDistance{0.0f, 0.0f};
|
|
|
|
|
|
|
|
public:
|
|
|
|
static void Clear();
|
|
|
|
static void Sort();
|
|
|
|
static void InsertPlaneObject(float closeDist, float farDist, const zeus::CAABox& aabb, bool invertTest,
|
|
|
|
const zeus::CPlane& plane, bool zOnly, EDrawableType dtype, void* data);
|
|
|
|
static void Insert(const zeus::CVector3f& pos, const zeus::CAABox& aabb, EDrawableType dtype, void* data,
|
|
|
|
const zeus::CPlane& plane, u16 extraSort);
|
|
|
|
static void Shutdown();
|
|
|
|
static void Init();
|
|
|
|
};
|
|
|
|
|
|
|
|
void Buckets::Clear() {
|
|
|
|
sData->clear();
|
|
|
|
sBucketIndex.clear();
|
|
|
|
sPlaneObjectData->clear();
|
|
|
|
sPlaneObjectBucket->clear();
|
|
|
|
for (rstl::reserved_vector<CDrawable*, 128>& bucket : *sBuckets) {
|
|
|
|
bucket.clear();
|
|
|
|
}
|
|
|
|
sMinMaxDistance = skWorstMinMaxDistance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buckets::Sort() {
|
|
|
|
float delta = std::max(1.f, sMinMaxDistance[1] - sMinMaxDistance[0]);
|
|
|
|
float pitch = 49.f / delta;
|
|
|
|
for (auto it = sPlaneObjectData->begin(); it != sPlaneObjectData->end(); ++it)
|
|
|
|
if (sPlaneObjectBucket->size() != sPlaneObjectBucket->capacity())
|
|
|
|
sPlaneObjectBucket->push_back(s16(it - sPlaneObjectData->begin()));
|
|
|
|
|
|
|
|
u32 precision = 50;
|
|
|
|
if (sPlaneObjectBucket->size()) {
|
|
|
|
std::sort(sPlaneObjectBucket->begin(), sPlaneObjectBucket->end(),
|
|
|
|
[](u16 a, u16 b) { return (*sPlaneObjectData)[a].GetDistance() < (*sPlaneObjectData)[b].GetDistance(); });
|
|
|
|
precision = 50 / u32(sPlaneObjectBucket->size() + 1);
|
|
|
|
pitch = 1.f / (delta / float(precision - 2));
|
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
s32 accum = 0;
|
2022-02-25 07:45:25 +00:00
|
|
|
for (u16 idx : *sPlaneObjectBucket) {
|
|
|
|
++accum;
|
|
|
|
CDrawablePlaneObject& planeObj = (*sPlaneObjectData)[idx];
|
|
|
|
planeObj.x24_targetBucket = u16(precision * accum);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (CDrawable& drawable : *sData) {
|
2022-03-07 03:07:00 +00:00
|
|
|
s32 slot;
|
2022-02-25 07:45:25 +00:00
|
|
|
float relDist = drawable.GetDistance() - sMinMaxDistance[0];
|
|
|
|
if (sPlaneObjectBucket->empty()) {
|
2022-03-07 03:07:00 +00:00
|
|
|
slot = zeus::clamp(1, s32(relDist * pitch), 49);
|
2022-02-25 07:45:25 +00:00
|
|
|
} else {
|
2022-03-07 03:07:00 +00:00
|
|
|
slot = zeus::clamp(0, s32(relDist * pitch), s32(precision) - 2);
|
2022-02-25 07:45:25 +00:00
|
|
|
for (u16 idx : *sPlaneObjectBucket) {
|
|
|
|
CDrawablePlaneObject& planeObj = (*sPlaneObjectData)[idx];
|
|
|
|
bool partial, full;
|
|
|
|
if (planeObj.x3c_25_zOnly) {
|
|
|
|
partial = drawable.GetBounds().max.z() > planeObj.GetPlane().d();
|
|
|
|
full = drawable.GetBounds().min.z() > planeObj.GetPlane().d();
|
|
|
|
} else {
|
|
|
|
partial = planeObj.GetPlane().pointToPlaneDist(
|
|
|
|
drawable.GetBounds().closestPointAlongVector(planeObj.GetPlane().normal())) > 0.f;
|
|
|
|
full = planeObj.GetPlane().pointToPlaneDist(
|
|
|
|
drawable.GetBounds().furthestPointAlongVector(planeObj.GetPlane().normal())) > 0.f;
|
|
|
|
}
|
|
|
|
bool cont;
|
|
|
|
if (drawable.GetType() == EDrawableType::Particle)
|
|
|
|
cont = planeObj.x3c_24_invertTest ? !partial : full;
|
|
|
|
else
|
|
|
|
cont = planeObj.x3c_24_invertTest ? (!partial || !full) : (partial || full);
|
|
|
|
if (!cont)
|
|
|
|
break;
|
|
|
|
slot += precision;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (slot == -1)
|
|
|
|
slot = 49;
|
|
|
|
rstl::reserved_vector<CDrawable*, 128>& bucket = (*sBuckets)[slot];
|
|
|
|
if (bucket.size() < bucket.capacity())
|
|
|
|
bucket.push_back(&drawable);
|
|
|
|
// else
|
|
|
|
// Log.report(logvisor::Fatal, FMT_STRING("Full bucket!!!"));
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 bucketIdx = u16(sBuckets->size());
|
|
|
|
for (auto it = sBuckets->rbegin(); it != sBuckets->rend(); ++it) {
|
|
|
|
--bucketIdx;
|
|
|
|
sBucketIndex.push_back(bucketIdx);
|
|
|
|
rstl::reserved_vector<CDrawable*, 128>& bucket = *it;
|
|
|
|
if (bucket.size()) {
|
|
|
|
std::sort(bucket.begin(), bucket.end(), [](CDrawable* a, CDrawable* b) {
|
|
|
|
if (a->GetDistance() == b->GetDistance())
|
|
|
|
return a->GetExtraSort() > b->GetExtraSort();
|
|
|
|
return a->GetDistance() > b->GetDistance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it = sPlaneObjectBucket->rbegin(); it != sPlaneObjectBucket->rend(); ++it) {
|
|
|
|
CDrawablePlaneObject& planeObj = (*sPlaneObjectData)[*it];
|
|
|
|
rstl::reserved_vector<CDrawable*, 128>& bucket = (*sBuckets)[planeObj.x24_targetBucket];
|
|
|
|
bucket.push_back(&planeObj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buckets::InsertPlaneObject(float closeDist, float farDist, const zeus::CAABox& aabb, bool invertTest,
|
|
|
|
const zeus::CPlane& plane, bool zOnly, EDrawableType dtype, void* data) {
|
|
|
|
if (sPlaneObjectData->size() == sPlaneObjectData->capacity()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
sPlaneObjectData->emplace_back(dtype, closeDist, farDist, aabb, invertTest, plane, zOnly, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buckets::Insert(const zeus::CVector3f& pos, const zeus::CAABox& aabb, EDrawableType dtype, void* data,
|
|
|
|
const zeus::CPlane& plane, u16 extraSort) {
|
|
|
|
if (sData->size() == sData->capacity()) {
|
|
|
|
Log.report(logvisor::Fatal, FMT_STRING("Rendering buckets filled to capacity"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const float dist = plane.pointToPlaneDist(pos);
|
|
|
|
sData->emplace_back(dtype, extraSort, dist, aabb, data);
|
|
|
|
sMinMaxDistance[0] = std::min(sMinMaxDistance[0], dist);
|
|
|
|
sMinMaxDistance[1] = std::max(sMinMaxDistance[1], dist);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buckets::Shutdown() {
|
|
|
|
sData = nullptr;
|
|
|
|
sBuckets = nullptr;
|
|
|
|
sPlaneObjectData = nullptr;
|
|
|
|
sPlaneObjectBucket = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buckets::Init() {
|
|
|
|
sData = &sDataHolder;
|
|
|
|
sBuckets = &sBucketsHolder;
|
|
|
|
sBuckets->resize(50);
|
|
|
|
sPlaneObjectData = &sPlaneObjectDataHolder;
|
|
|
|
sPlaneObjectBucket = &sPlaneObjectBucketHolder;
|
|
|
|
sMinMaxDistance = skWorstMinMaxDistance;
|
|
|
|
}
|
|
|
|
|
2022-02-27 20:12:02 +00:00
|
|
|
CCubeRenderer::CAreaListItem::CAreaListItem(const std::vector<CMetroidModelInstance>* geom,
|
|
|
|
const CAreaRenderOctTree* octTree,
|
2022-03-06 04:50:54 +00:00
|
|
|
std::unique_ptr<std::vector<TCachedToken<CTexture>>>&& textures,
|
|
|
|
std::unique_ptr<std::vector<std::unique_ptr<CCubeModel>>>&& models,
|
2022-03-07 03:07:00 +00:00
|
|
|
s32 areaIdx)
|
2022-02-27 20:12:02 +00:00
|
|
|
: x0_geometry(geom)
|
|
|
|
, x4_octTree(octTree)
|
|
|
|
, x8_textures(std::move(textures))
|
|
|
|
, x10_models(std::move(models))
|
|
|
|
, x18_areaIdx(areaIdx) {}
|
|
|
|
|
2022-02-25 07:45:25 +00:00
|
|
|
CCubeRenderer::CCubeRenderer(IObjectStore& store, IFactory& resFac) : x8_factory(resFac), xc_store(store) {
|
2022-03-06 04:50:54 +00:00
|
|
|
void* data = xe4_blackTex.Lock();
|
|
|
|
memset(data, 0, 32);
|
|
|
|
xe4_blackTex.UnLock();
|
2022-02-25 07:45:25 +00:00
|
|
|
GenerateReflectionTex();
|
|
|
|
GenerateFogVolumeRampTex();
|
|
|
|
GenerateSphereRampTex();
|
|
|
|
LoadThermoPalette();
|
|
|
|
g_Renderer = this;
|
|
|
|
Buckets::Init();
|
|
|
|
// GX draw sync
|
|
|
|
}
|
2022-02-26 16:42:42 +00:00
|
|
|
|
2022-02-27 20:12:02 +00:00
|
|
|
CCubeRenderer::~CCubeRenderer() { g_Renderer = nullptr; }
|
2022-02-26 16:42:42 +00:00
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
void CCubeRenderer::GenerateReflectionTex() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::GenerateFogVolumeRampTex() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::GenerateSphereRampTex() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::LoadThermoPalette() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::ReallyDrawPhazonSuitIndirectEffect(const zeus::CColor& vertColor, CTexture& maskTex,
|
|
|
|
CTexture& indTex, const zeus::CColor& modColor, float scale,
|
|
|
|
float offX, float offY) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::ReallyDrawPhazonSuitEffect(const zeus::CColor& modColor, CTexture& maskTex) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DoPhazonSuitIndirectAlphaBlur(float blurRadius, float f2, const TLockedToken<CTexture>& indTex) {
|
|
|
|
// TODO
|
|
|
|
}
|
2022-03-06 04:50:54 +00:00
|
|
|
|
|
|
|
void CCubeRenderer::AddWorldSurfaces(CCubeModel& model) {
|
|
|
|
for (auto* it = model.GetFirstSortedSurface(); it != nullptr; it = it->GetNextSurface()) {
|
|
|
|
auto mat = model.GetMaterialByIndex(it->GetMaterialIndex());
|
|
|
|
auto blend = mat.GetCompressedBlend();
|
|
|
|
auto bounds = it->GetBounds();
|
|
|
|
auto pos = bounds.closestPointAlongVector(xb0_viewPlane.normal());
|
|
|
|
Buckets::Insert(pos, bounds, EDrawableType::WorldSurface, it, xb0_viewPlane, static_cast<u16>(blend == 0x50004));
|
|
|
|
}
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-02-26 16:42:42 +00:00
|
|
|
void CCubeRenderer::AddStaticGeometry(const std::vector<CMetroidModelInstance>* geometry,
|
2022-03-07 03:07:00 +00:00
|
|
|
const CAreaRenderOctTree* octTree, s32 areaIdx) {
|
2022-03-06 04:50:54 +00:00
|
|
|
auto search = FindStaticGeometry(geometry);
|
|
|
|
if (search == x1c_areaListItems.end()) {
|
|
|
|
auto textures = std::make_unique<std::vector<TCachedToken<CTexture>>>();
|
|
|
|
auto models = std::make_unique<std::vector<std::unique_ptr<CCubeModel>>>();
|
|
|
|
if (!geometry->empty()) {
|
|
|
|
CCubeModel::MakeTexturesFromMats((*geometry)[0].GetMaterialPointer(), *textures.get(), &xc_store, false);
|
|
|
|
models->reserve(geometry->size());
|
2022-03-07 03:07:00 +00:00
|
|
|
s32 instIdx = 0;
|
2022-03-06 04:50:54 +00:00
|
|
|
for (const CMetroidModelInstance& inst : *geometry) {
|
|
|
|
models->emplace_back(
|
|
|
|
std::make_unique<CCubeModel>(const_cast<std::vector<CCubeSurface>*>(inst.GetSurfaces()), textures.get(),
|
|
|
|
const_cast<u8*>(inst.GetMaterialPointer()),
|
|
|
|
const_cast<std::vector<zeus::CVector3f>*>(inst.GetVertexPointer()),
|
|
|
|
const_cast<std::vector<zeus::CColor>*>(inst.GetColorPointer()),
|
|
|
|
const_cast<std::vector<zeus::CVector3f>*>(inst.GetNormalPointer()),
|
2022-03-08 07:44:46 +00:00
|
|
|
const_cast<std::vector<aurora::Vec2<float>>*>(inst.GetTCPointer()),
|
|
|
|
const_cast<std::vector<aurora::Vec2<float>>*>(inst.GetPackedTCPointer()),
|
2022-03-06 04:50:54 +00:00
|
|
|
inst.GetBoundingBox(), inst.GetFlags(), false, instIdx));
|
|
|
|
++instIdx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x1c_areaListItems.emplace_back(geometry, octTree, std::move(textures), std::move(models), areaIdx);
|
|
|
|
}
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 20:12:02 +00:00
|
|
|
void CCubeRenderer::EnablePVS(const CPVSVisSet& set, u32 areaIdx) {
|
|
|
|
if (!xdc_) {
|
|
|
|
xc8_pvs.emplace(set);
|
|
|
|
xdc_ = true;
|
|
|
|
} else {
|
|
|
|
xc8_pvs.emplace(set);
|
|
|
|
}
|
|
|
|
|
|
|
|
xe0_pvsAreaIdx = areaIdx;
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 20:12:02 +00:00
|
|
|
void CCubeRenderer::DisablePVS() { xc8_pvs.reset(); }
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::RemoveStaticGeometry(const std::vector<CMetroidModelInstance>* geometry) {
|
|
|
|
auto search = FindStaticGeometry(geometry);
|
|
|
|
if (search != x1c_areaListItems.end()) {
|
|
|
|
x1c_areaListItems.erase(search);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DrawUnsortedGeometry(s32 areaIdx, s32 mask, s32 targetMask, bool shadowRender) {
|
2022-03-06 21:01:25 +00:00
|
|
|
SetupRendererStates(true);
|
|
|
|
CModelFlags flags;
|
|
|
|
CAreaListItem* lastOctreeItem = nullptr;
|
|
|
|
|
|
|
|
for (CAreaListItem& item : x1c_areaListItems) {
|
2022-03-07 03:07:00 +00:00
|
|
|
if (areaIdx != -1 && item.x18_areaIdx != areaIdx) {
|
2022-03-06 21:01:25 +00:00
|
|
|
continue;
|
2022-03-07 03:07:00 +00:00
|
|
|
}
|
2022-03-06 21:01:25 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
if (item.x4_octTree != nullptr) {
|
2022-03-06 21:01:25 +00:00
|
|
|
lastOctreeItem = &item;
|
2022-03-07 03:07:00 +00:00
|
|
|
}
|
2022-03-06 21:01:25 +00:00
|
|
|
|
|
|
|
CPVSVisSet* pvs = nullptr;
|
2022-03-07 03:07:00 +00:00
|
|
|
if (xc8_pvs) {
|
2022-03-06 21:01:25 +00:00
|
|
|
pvs = &*xc8_pvs;
|
2022-03-07 03:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (xe0_pvsAreaIdx != item.x18_areaIdx) {
|
2022-03-06 21:01:25 +00:00
|
|
|
pvs = nullptr;
|
2022-03-07 03:07:00 +00:00
|
|
|
}
|
2022-03-06 21:01:25 +00:00
|
|
|
|
|
|
|
u32 idx = 0;
|
|
|
|
for (auto it = item.x10_models->begin(); it != item.x10_models->end(); ++it, ++idx) {
|
|
|
|
const auto& model = *it;
|
2022-03-07 03:07:00 +00:00
|
|
|
if (pvs != nullptr) {
|
2022-03-06 21:01:25 +00:00
|
|
|
bool vis = pvs->GetVisible(idx) != EPVSVisSetState::EndOfTree;
|
|
|
|
switch (xc0_pvsMode) {
|
|
|
|
case EPVSMode::PVS: {
|
|
|
|
if (!vis) {
|
|
|
|
model->SetVisible(false);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EPVSMode::PVSAndMask: {
|
|
|
|
if (!vis && (model->GetFlags() & mask) != targetMask) {
|
|
|
|
model->SetVisible(false);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((model->GetFlags() & mask) != targetMask) {
|
|
|
|
model->SetVisible(false);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!x44_frustumPlanes.aabbFrustumTest(model->GetBounds())) {
|
|
|
|
model->SetVisible(false);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x318_25_drawWireframe) {
|
|
|
|
model->SetVisible(false);
|
|
|
|
HandleUnsortedModelWireframe(lastOctreeItem, *model);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
model->SetVisible(true);
|
|
|
|
HandleUnsortedModel(lastOctreeItem, *model, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SetupCGraphicsState();
|
|
|
|
}
|
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::DrawSortedGeometry(s32 areaIdx, s32 mask, s32 targetMask) {
|
2022-03-06 04:50:54 +00:00
|
|
|
SetupRendererStates(true);
|
|
|
|
const CAreaListItem* item = nullptr;
|
|
|
|
for (const auto& areaListItem : x1c_areaListItems) {
|
|
|
|
if (areaIdx == -1 || areaIdx == areaListItem.x18_areaIdx) {
|
|
|
|
if (areaListItem.x4_octTree != nullptr) {
|
|
|
|
item = &areaListItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto& model : *areaListItem.x10_models) {
|
|
|
|
if (model->IsVisible()) {
|
|
|
|
AddWorldSurfaces(*model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-03 08:33:24 +00:00
|
|
|
Buckets::Sort();
|
2022-03-06 04:50:54 +00:00
|
|
|
RenderBucketItems(item);
|
|
|
|
SetupCGraphicsState();
|
|
|
|
DrawRenderBucketsDebug();
|
2022-03-03 08:33:24 +00:00
|
|
|
Buckets::Clear();
|
|
|
|
}
|
2022-03-06 04:50:54 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::DrawStaticGeometry(s32 areaIdx, s32 mask, s32 targetMask) {
|
|
|
|
DrawUnsortedGeometry(areaIdx, mask, targetMask);
|
|
|
|
DrawSortedGeometry(areaIdx, mask, targetMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DrawAreaGeometry(s32 areaIdx, s32 mask, s32 targetMask) {
|
|
|
|
x318_30_inAreaDraw = true;
|
|
|
|
SetupRendererStates(true);
|
2022-03-08 22:21:15 +00:00
|
|
|
constexpr CModelFlags flags{0, 0, 3, zeus::skWhite};
|
2022-03-07 03:07:00 +00:00
|
|
|
|
|
|
|
for (CAreaListItem& item : x1c_areaListItems) {
|
|
|
|
if (areaIdx != -1 || item.x18_areaIdx == areaIdx) {
|
|
|
|
CPVSVisSet* pvs = xc8_pvs ? &*xc8_pvs : nullptr;
|
|
|
|
if (xe0_pvsAreaIdx != item.x18_areaIdx) {
|
|
|
|
pvs = nullptr;
|
|
|
|
}
|
|
|
|
s32 modelIdx = 0;
|
|
|
|
for (auto it = item.x10_models->begin(); it != item.x10_models->end(); ++it, ++modelIdx) {
|
|
|
|
const auto& model = *it;
|
|
|
|
if (pvs != nullptr) {
|
|
|
|
bool visible = pvs->GetVisible(modelIdx) != EPVSVisSetState::EndOfTree;
|
|
|
|
if ((xc0_pvsMode == EPVSMode::PVS && !visible) || (xc0_pvsMode == EPVSMode::PVSAndMask && visible)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((model->GetFlags() & mask) != targetMask) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!x44_frustumPlanes.aabbFrustumTest(model->GetBounds())) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto* surf = model->GetFirstUnsortedSurface(); surf != nullptr; surf = surf->GetNextSurface()) {
|
2022-03-08 22:21:15 +00:00
|
|
|
model->DrawSurface(*surf, flags);
|
2022-03-07 03:07:00 +00:00
|
|
|
}
|
|
|
|
for (const auto* surf = model->GetFirstSortedSurface(); surf != nullptr; surf = surf->GetNextSurface()) {
|
2022-03-08 22:21:15 +00:00
|
|
|
model->DrawSurface(*surf, flags);
|
2022-03-07 03:07:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-06 04:50:54 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
x318_30_inAreaDraw = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::RenderBucketItems(const CAreaListItem* item) {
|
|
|
|
CCubeModel* lastModel = nullptr;
|
|
|
|
EDrawableType lastDrawableType = EDrawableType::Invalid;
|
|
|
|
for (u16 idx : Buckets::sBucketIndex) {
|
|
|
|
rstl::reserved_vector<CDrawable*, 128>& bucket = (*Buckets::sBuckets)[idx];
|
|
|
|
for (CDrawable* drawable : bucket) {
|
|
|
|
EDrawableType type = drawable->GetType();
|
|
|
|
switch (type) {
|
|
|
|
case EDrawableType::Particle: {
|
|
|
|
if (lastDrawableType != EDrawableType::Particle) {
|
|
|
|
SetupCGraphicsState();
|
|
|
|
}
|
|
|
|
|
|
|
|
static_cast<CParticleGen*>(drawable->GetData())->Render();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EDrawableType::WorldSurface: {
|
|
|
|
if (lastDrawableType != EDrawableType::WorldSurface) {
|
|
|
|
SetupRendererStates(false);
|
|
|
|
lastModel = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* surface = static_cast<CCubeSurface*>(drawable->GetData());
|
|
|
|
auto* model = surface->GetParent();
|
|
|
|
if (model != lastModel) {
|
|
|
|
model->SetArraysCurrent();
|
|
|
|
ActivateLightsForModel(item, *model);
|
|
|
|
}
|
|
|
|
model->DrawSurface(*surface, CModelFlags(0, 0, 1, zeus::skWhite));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
if (type != lastDrawableType) {
|
|
|
|
CCubeMaterial::EnsureTevsDirect();
|
|
|
|
}
|
|
|
|
if (xa8_drawableCallback != nullptr) {
|
|
|
|
xa8_drawableCallback(drawable->GetData(), xac_drawableCallbackUserData, s32(drawable->GetType()) - 2);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lastDrawableType = type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
|
|
|
|
void CCubeRenderer::PostRenderFogs() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::SetModelMatrix(const zeus::CTransform& xf) { CGraphics::SetModelMatrix(xf); }
|
|
|
|
|
2022-03-06 21:01:25 +00:00
|
|
|
void CCubeRenderer::HandleUnsortedModel(CAreaListItem* areaItem, CCubeModel& model, const CModelFlags& flags) {
|
|
|
|
if (model.GetFirstUnsortedSurface() == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
model.SetArraysCurrent();
|
|
|
|
ActivateLightsForModel(areaItem, model);
|
2022-03-07 03:07:00 +00:00
|
|
|
for (auto* it = model.GetFirstUnsortedSurface(); it != nullptr; it = it->GetNextSurface()) {
|
2022-03-06 21:01:25 +00:00
|
|
|
model.DrawSurface(*it, CModelFlags(0, 0, 3, zeus::skWhite));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::HandleUnsortedModelWireframe(CAreaListItem* areaItem, CCubeModel& model) {
|
|
|
|
model.SetArraysCurrent();
|
|
|
|
ActivateLightsForModel(areaItem, model);
|
|
|
|
for (auto* it = model.GetFirstUnsortedSurface(); it != nullptr; it = it->GetNextSurface()) {
|
|
|
|
model.DrawSurfaceWireframe(*it);
|
|
|
|
}
|
|
|
|
for (auto* it = model.GetFirstSortedSurface(); it != nullptr; it = it->GetNextSurface()) {
|
|
|
|
model.DrawSurfaceWireframe(*it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:03:55 +00:00
|
|
|
constexpr bool TestBit(const u32* words, size_t bit) { return (words[bit / 32] & (1U << (bit & 0x1f))) != 0; }
|
2022-03-13 19:14:11 +00:00
|
|
|
|
|
|
|
void CCubeRenderer::ActivateLightsForModel(const CAreaListItem* areaItem, CCubeModel& model) {
|
|
|
|
constexpr u32 LightCount = 4;
|
|
|
|
GX::LightMask lightMask;
|
|
|
|
|
|
|
|
if (!x300_dynamicLights.empty()) {
|
|
|
|
std::array<u32, LightCount> addedLights{};
|
|
|
|
std::array<float, LightCount> lightRads{-1.f, -1.f, -1.f, -1.f};
|
|
|
|
|
|
|
|
u32 lightOctreeWordCount = 0;
|
|
|
|
const u32* lightOctreeWords = nullptr;
|
|
|
|
if (areaItem != nullptr && model.GetIndex() != UINT32_MAX) {
|
|
|
|
lightOctreeWordCount = areaItem->x4_octTree->x14_bitmapWordCount;
|
|
|
|
lightOctreeWords = areaItem->x1c_lightOctreeWords.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 lightIdx = 0;
|
|
|
|
for (const auto& light : x300_dynamicLights) {
|
|
|
|
if (lightOctreeWords == nullptr || TestBit(lightOctreeWords, model.GetIndex())) {
|
|
|
|
bool loaded = false;
|
|
|
|
const float radius =
|
|
|
|
model.GetBounds().intersectionRadius(zeus::CSphere(light.GetPosition(), light.GetRadius()));
|
|
|
|
|
|
|
|
if (lightIdx > 0) {
|
|
|
|
for (u32 i = 0; i < lightIdx; ++i) {
|
|
|
|
if (addedLights[i] == light.GetId()) {
|
|
|
|
if (radius >= 0.f && radius < lightRads[i]) {
|
|
|
|
lightRads[i] = radius;
|
|
|
|
CGraphics::LoadLight(i, light);
|
|
|
|
loaded = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!loaded) {
|
|
|
|
lightRads[lightIdx] = radius;
|
|
|
|
if (radius >= 0.f) {
|
|
|
|
CGraphics::LoadLight(lightIdx, light);
|
|
|
|
addedLights[lightIdx] = light.GetId();
|
|
|
|
lightMask.set(lightIdx);
|
|
|
|
++lightIdx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lightOctreeWords += lightOctreeWordCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lightMask.any()) {
|
|
|
|
CGraphics::SetLightState(lightMask);
|
|
|
|
CGX::SetChanMatColor(CGX::EChannelId::Channel0, zeus::skWhite);
|
|
|
|
} else {
|
|
|
|
CGraphics::DisableAllLights();
|
2022-03-13 19:17:13 +00:00
|
|
|
CGX::SetChanMatColor(CGX::EChannelId::Channel0, CGX::GetChanAmbColor(CGX::EChannelId::Channel0));
|
2022-03-13 19:14:11 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-02-27 20:12:02 +00:00
|
|
|
void CCubeRenderer::AddParticleGen(CParticleGen& gen) {
|
|
|
|
auto bounds = gen.GetBounds();
|
|
|
|
|
|
|
|
if (bounds) {
|
|
|
|
auto closestPoint = bounds->closestPointAlongVector(xb0_viewPlane.normal());
|
|
|
|
Buckets::Insert(closestPoint, *bounds, EDrawableType::Particle, reinterpret_cast<void*>(&gen), xb0_viewPlane, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 20:12:02 +00:00
|
|
|
void CCubeRenderer::AddParticleGen(CParticleGen& gen, const zeus::CVector3f& pos, const zeus::CAABox& bounds) {
|
|
|
|
Buckets::Insert(pos, bounds, EDrawableType::Particle, reinterpret_cast<void*>(&gen), xb0_viewPlane, 0);
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::AddPlaneObject(void* obj, const zeus::CAABox& aabb, const zeus::CPlane& plane, s32 type) {
|
2022-02-27 20:12:02 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
const auto closestPoint = aabb.closestPointAlongVector(xb0_viewPlane.normal());
|
|
|
|
const auto closestDist = xb0_viewPlane.pointToPlaneDist(closestPoint);
|
|
|
|
const auto furthestPoint = aabb.furthestPointAlongVector(xb0_viewPlane.normal());
|
|
|
|
const auto furthestDist = xb0_viewPlane.pointToPlaneDist(furthestPoint);
|
2022-02-27 20:12:02 +00:00
|
|
|
|
|
|
|
if (closestDist >= 0.f || furthestDist >= 0.f) {
|
2022-03-07 03:07:00 +00:00
|
|
|
const bool zOnly = plane.normal() == zeus::skUp;
|
|
|
|
const bool invertTest = zOnly ? CGraphics::g_GXModelView.origin.z() >= plane.d()
|
|
|
|
: plane.pointToPlaneDist(CGraphics::g_GXModelView.origin) >= 0.f;
|
2022-02-27 20:12:02 +00:00
|
|
|
Buckets::InsertPlaneObject(closestDist, furthestDist, aabb, invertTest, plane, zOnly, EDrawableType(type + 2), obj);
|
|
|
|
}
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::AddDrawable(void* obj, const zeus::CVector3f& pos, const zeus::CAABox& aabb, s32 mode,
|
2022-02-27 20:12:02 +00:00
|
|
|
IRenderer::EDrawableSorting sorting) {
|
|
|
|
if (sorting == EDrawableSorting::UnsortedCallback) {
|
|
|
|
xa8_drawableCallback(obj, xac_drawableCallbackUserData, mode);
|
|
|
|
} else {
|
|
|
|
Buckets::Insert(pos, aabb, EDrawableType(mode + 2), obj, xb0_viewPlane, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::SetDrawableCallback(IRenderer::TDrawableCallback cb, void* ctx) {
|
|
|
|
xa8_drawableCallback = cb;
|
|
|
|
xac_drawableCallbackUserData = ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::SetWorldViewpoint(const zeus::CTransform& xf) {
|
|
|
|
CGraphics::SetViewPointMatrix(xf);
|
|
|
|
auto front = xf.frontVector();
|
|
|
|
xb0_viewPlane = zeus::CPlane(front, front.dot(xf.origin));
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::SetPerspective(float fovy, float aspect, float znear, float zfar) {
|
|
|
|
CGraphics::SetPerspective(fovy, aspect, znear, zfar);
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::SetPerspective(float fovy, float width, float height, float znear, float zfar) {
|
|
|
|
CGraphics::SetPerspective(fovy, width / height, znear, zfar);
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:42:42 +00:00
|
|
|
std::pair<zeus::CVector2f, zeus::CVector2f> CCubeRenderer::SetViewportOrtho(bool centered, float znear, float zfar) {
|
2022-03-06 04:50:54 +00:00
|
|
|
auto left = static_cast<float>(centered ? CGraphics::GetViewportLeft() - CGraphics::GetViewportWidth() / 2
|
|
|
|
: CGraphics::GetViewportLeft());
|
|
|
|
auto top = static_cast<float>(centered ? CGraphics::GetViewportTop() - CGraphics::GetViewportHeight() / 2
|
|
|
|
: CGraphics::GetViewportHeight());
|
|
|
|
auto right = static_cast<float>(CGraphics::GetViewportLeft() +
|
|
|
|
(centered ? CGraphics::GetViewportWidth() / 2 : CGraphics::GetViewportWidth()));
|
|
|
|
auto bottom = static_cast<float>(CGraphics::GetViewportTop() +
|
|
|
|
(centered ? CGraphics::GetViewportHeight() / 2 : CGraphics::GetViewportHeight()));
|
|
|
|
CGraphics::SetOrtho(left, right, top, bottom, znear, zfar);
|
|
|
|
CGraphics::SetViewPointMatrix({});
|
|
|
|
CGraphics::SetModelMatrix({});
|
|
|
|
return {{left, top}, {right, bottom}};
|
2022-02-26 16:42:42 +00:00
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::SetClippingPlanes(const zeus::CFrustum& frustum) { x44_frustumPlanes = frustum; }
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::SetViewport(s32 left, s32 bottom, s32 width, s32 height) {
|
2022-02-27 21:17:44 +00:00
|
|
|
CGraphics::SetViewport(left, bottom, width, height);
|
|
|
|
CGraphics::SetScissor(left, bottom, width, height);
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::BeginScene() {
|
|
|
|
CGraphics::SetUseVideoFilter(true);
|
|
|
|
CGraphics::SetViewport(0, 0, CGraphics::g_Viewport.x8_width, CGraphics::g_Viewport.xc_height);
|
|
|
|
|
|
|
|
CGraphics::SetClearColor(zeus::skClear);
|
|
|
|
CGraphics::SetCullMode(ERglCullMode::Front);
|
|
|
|
CGraphics::SetDepthWriteMode(true, ERglEnum::LEqual, true);
|
|
|
|
CGraphics::SetBlendMode(ERglBlendMode::Blend, ERglBlendFactor::SrcAlpha, ERglBlendFactor::InvSrcAlpha,
|
|
|
|
ERglLogicOp::Clear);
|
|
|
|
CGraphics::SetPerspective(75.f, CGraphics::g_Viewport.x8_width / CGraphics::g_Viewport.xc_height, 1.f, 4096.f);
|
|
|
|
CGraphics::SetModelMatrix(zeus::CTransform());
|
|
|
|
if (x310_phazonSuitMaskCountdown != 0) {
|
|
|
|
--x310_phazonSuitMaskCountdown;
|
|
|
|
if (x310_phazonSuitMaskCountdown == 0) {
|
|
|
|
x314_phazonSuitMask.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!x318_31_persistRGBA6) {
|
|
|
|
x318_26_requestRGBA6 = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GXSetPixelFmt(x318_26_requestRGBA6, GX_ZC_LINEAR);
|
2022-03-12 15:47:20 +00:00
|
|
|
GXSetAlphaUpdate(true);
|
|
|
|
GXSetDstAlpha(true, 0.f);
|
2022-02-27 21:17:44 +00:00
|
|
|
CGraphics::BeginScene();
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::EndScene() {
|
|
|
|
x318_31_persistRGBA6 = !CGraphics::g_IsBeginSceneClearFb;
|
|
|
|
CGraphics::EndScene();
|
|
|
|
|
|
|
|
if (x2dc_reflectionAge < 2) {
|
|
|
|
++x2dc_reflectionAge;
|
|
|
|
} else {
|
|
|
|
x14c_reflectionTex.reset();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::SetDebugOption(IRenderer::EDebugOption option, s32 value) {
|
2022-02-27 21:17:44 +00:00
|
|
|
if (option == EDebugOption::PVSState) {
|
2022-03-08 23:35:40 +00:00
|
|
|
if (xc8_pvs) {
|
|
|
|
xc8_pvs->SetState(EPVSVisSetState(value));
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
} else if (option == EDebugOption::PVSMode) {
|
2022-02-27 21:17:44 +00:00
|
|
|
xc0_pvsMode = EPVSMode(value);
|
2022-02-27 21:58:27 +00:00
|
|
|
} else if (option == EDebugOption::FogDisabled) {
|
2022-02-27 21:17:44 +00:00
|
|
|
x318_28_disableFog = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::BeginPrimitive(IRenderer::EPrimitiveType type, s32 nverts) {
|
|
|
|
x18_primVertCount = nverts;
|
|
|
|
CGraphics::StreamBegin(GX::Primitive(type));
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::BeginLines(s32 nverts) { BeginPrimitive(EPrimitiveType::Lines, nverts); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::BeginLineStrip(s32 nverts) { BeginPrimitive(EPrimitiveType::LineStrip, nverts); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::BeginTriangles(s32 nverts) { BeginPrimitive(EPrimitiveType::Triangles, nverts); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::BeginTriangleStrip(s32 nverts) { BeginPrimitive(EPrimitiveType::TriangleStrip, nverts); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::BeginTriangleFan(s32 nverts) { BeginPrimitive(EPrimitiveType::TriangleFan, nverts); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::PrimVertex(const zeus::CVector3f& vertex) {
|
|
|
|
--x18_primVertCount;
|
|
|
|
CGraphics::StreamColor(x2e0_primColor);
|
|
|
|
CGraphics::StreamNormal(x2e4_primNormal);
|
|
|
|
CGraphics::StreamVertex(vertex);
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::PrimNormal(const zeus::CVector3f& normal) { x2e4_primNormal = normal; }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::PrimColor(float r, float g, float b, float a) { PrimColor({r, g, b, a}); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::PrimColor(const zeus::CColor& color) { x2e0_primColor = color; }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::EndPrimitive() {
|
|
|
|
while (x18_primVertCount > 0) {
|
|
|
|
PrimVertex(zeus::skZero3f);
|
|
|
|
}
|
|
|
|
CGraphics::StreamEnd();
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-06 04:50:54 +00:00
|
|
|
void CCubeRenderer::SetAmbientColor(const zeus::CColor& color) { CGraphics::SetAmbientColor(color); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::DrawString(const char* string, s32 x, s32 y) { x10_font.DrawString(string, x, y, zeus::skWhite); }
|
2022-02-27 02:18:58 +00:00
|
|
|
|
|
|
|
u32 CCubeRenderer::GetFPS() { return CGraphics::GetFPS(); }
|
2022-03-12 15:47:20 +00:00
|
|
|
|
|
|
|
void CCubeRenderer::CacheReflection(IRenderer::TReflectionCallback cb, void* ctx, bool clearAfter) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DrawSpaceWarp(const zeus::CVector3f& pt, float strength) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DrawThermalModel(CModel& model, const zeus::CColor& multCol, const zeus::CColor& addCol,
|
|
|
|
TConstVectorRef positions, TConstVectorRef normals, const CModelFlags& flags) {
|
|
|
|
model.UpdateLastFrame();
|
|
|
|
// TODO
|
|
|
|
// DoThermalModelDraw(model.GetInstance(), multCol, addCol, positions, normals, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DrawModelDisintegrate(CModel& model, CTexture& tex, const zeus::CColor& color,
|
|
|
|
TConstVectorRef positions, TConstVectorRef normals, float t) {
|
|
|
|
tex.Load(GX::TEXMAP0, EClampMode::Clamp);
|
|
|
|
CGX::SetNumIndStages(0);
|
|
|
|
CGX::SetNumTevStages(2);
|
|
|
|
CGX::SetNumTexGens(2);
|
|
|
|
CGX::SetNumChans(0);
|
|
|
|
CGX::SetBlendMode(GX::BM_BLEND, GX::BL_SRCALPHA, GX::BL_INVSRCALPHA, GX::LO_CLEAR);
|
|
|
|
CGX::SetStandardTevColorAlphaOp(GX::TEVSTAGE0);
|
|
|
|
CGX::SetStandardTevColorAlphaOp(GX::TEVSTAGE1);
|
|
|
|
CGX::SetTevColorIn(GX::TEVSTAGE0, GX::CC_ZERO, GX::CC_ZERO, GX::CC_ZERO, GX::CC_TEXC);
|
|
|
|
CGX::SetTevAlphaIn(GX::TEVSTAGE0, GX::CA_ZERO, GX::CA_ZERO, GX::CA_ZERO, GX::CA_TEXA);
|
|
|
|
CGX::SetTevColorIn(GX::TEVSTAGE1, GX::CC_ZERO, GX::CC_TEXC, GX::CC_CPREV, GX::CC_KONST);
|
|
|
|
CGX::SetTevAlphaIn(GX::TEVSTAGE1, GX::CA_ZERO, GX::CA_TEXA, GX::CA_APREV, GX::CA_ZERO);
|
|
|
|
CGX::SetTevOrder(GX::TEVSTAGE0, GX::TEXCOORD0, GX::TEXMAP0, GX::COLOR_NULL);
|
|
|
|
CGX::SetTevOrder(GX::TEVSTAGE1, GX::TEXCOORD1, GX::TEXMAP0, GX::COLOR_NULL);
|
|
|
|
CGX::SetTevKColorSel(GX::TEVSTAGE1, GX::TEV_KCSEL_K0);
|
|
|
|
CGX::SetTevKColor(GX::KCOLOR0, color);
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DrawModelFlat(CModel& model, const CModelFlags& flags, bool unsortedOnly, TConstVectorRef positions,
|
|
|
|
TConstVectorRef normals) {
|
|
|
|
if (flags.x0_blendMode >= 7) {
|
|
|
|
CGX::SetBlendMode(GX::BM_BLEND, GX::BL_SRCALPHA, GX::BL_ONE, GX::LO_CLEAR);
|
|
|
|
} else if (flags.x0_blendMode >= 5) {
|
|
|
|
CGX::SetBlendMode(GX::BM_BLEND, GX::BL_SRCALPHA, GX::BL_INVSRCALPHA, GX::LO_CLEAR);
|
|
|
|
} else {
|
|
|
|
CGX::SetBlendMode(GX::BM_BLEND, GX::BL_ONE, GX::BL_ZERO, GX::LO_CLEAR);
|
|
|
|
}
|
|
|
|
CGX::SetZMode(true, flags.x2_flags & CModelFlagBits::DepthTest ? GX::LEQUAL : GX::ALWAYS,
|
|
|
|
flags.x2_flags.IsSet(CModelFlagBits::DepthUpdate));
|
|
|
|
CGX::SetNumTevStages(1);
|
|
|
|
CGX::SetNumTexGens(1);
|
|
|
|
CGX::SetNumChans(0);
|
|
|
|
CGX::SetNumIndStages(0);
|
|
|
|
CGX::SetAlphaCompare(GX::ALWAYS, 0, GX::AOP_AND, GX::ALWAYS, 0);
|
|
|
|
CGX::SetTevColorIn(GX::TEVSTAGE0, GX::CC_ZERO, GX::CC_ZERO, GX::CC_ZERO, GX::CC_KONST);
|
|
|
|
CGX::SetTevAlphaIn(GX::TEVSTAGE0, GX::CA_ZERO, GX::CA_ZERO, GX::CA_ZERO, GX::CA_KONST);
|
|
|
|
CGX::SetTevKColor(GX::KCOLOR0, flags.x4_color);
|
|
|
|
CGX::SetTevKColorSel(GX::TEVSTAGE0, GX::TEV_KCSEL_K0);
|
|
|
|
CGX::SetTevKAlphaSel(GX::TEVSTAGE0, GX::TEV_KASEL_K0_A);
|
|
|
|
CGX::SetTevOrder(GX::TEVSTAGE0, GX::TEXCOORD_NULL, GX::TEXMAP_NULL, GX::COLOR_NULL);
|
|
|
|
CGX::SetStandardTevColorAlphaOp(GX::TEVSTAGE0);
|
|
|
|
CGX::SetTevDirect(GX::TEVSTAGE0);
|
|
|
|
CGX::SetTexCoordGen(GX::TEXCOORD0, GX::TG_MTX2x4, GX::TG_POS, GX::IDENTITY, false, GX::PTIDENTITY);
|
|
|
|
model.UpdateLastFrame();
|
|
|
|
model.GetInstance().DrawFlat(positions, normals, unsortedOnly ? ESurfaceSelection::Unsorted : ESurfaceSelection::All);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::SetWireframeFlags(s32 flags) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::SetWorldFog(ERglFogMode mode, float startz, float endz, const zeus::CColor& color) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:42:42 +00:00
|
|
|
void CCubeRenderer::RenderFogVolume(const zeus::CColor& color, const zeus::CAABox& aabb,
|
2022-03-12 15:47:20 +00:00
|
|
|
const TLockedToken<CModel>* model, const CSkinnedModel* sModel) {
|
|
|
|
// TODO
|
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
void CCubeRenderer::SetThermal(bool thermal, float level, const zeus::CColor& color) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::SetThermalColdScale(float scale) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DoThermalBlendCold() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::DoThermalBlendHot() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CCubeRenderer::GetStaticWorldDataSize() {
|
|
|
|
// TODO
|
|
|
|
return 0;
|
2022-02-27 21:17:44 +00:00
|
|
|
}
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
void CCubeRenderer::SetGXRegister1Color(const zeus::CColor& color) { GXSetTevColor(GX::TevRegID::TEVREG1, color); }
|
|
|
|
|
2022-02-27 21:17:44 +00:00
|
|
|
void CCubeRenderer::SetWorldLightFadeLevel(float level) { x2fc_tevReg1Color = zeus::CColor(level, level, level, 1.f); }
|
2022-02-27 21:58:27 +00:00
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
void CCubeRenderer::PrepareDynamicLights(const std::vector<CLight>& lights) {
|
2022-03-13 19:14:11 +00:00
|
|
|
x300_dynamicLights = lights;
|
|
|
|
|
|
|
|
for (CAreaListItem& area : x1c_areaListItems) {
|
|
|
|
if (const CAreaRenderOctTree* arot = area.x4_octTree) {
|
|
|
|
area.x1c_lightOctreeWords.clear();
|
|
|
|
area.x1c_lightOctreeWords.resize(arot->x14_bitmapWordCount * lights.size());
|
|
|
|
u32* wordPtr = area.x1c_lightOctreeWords.data();
|
|
|
|
for (const CLight& light : lights) {
|
|
|
|
float radius = light.GetRadius();
|
|
|
|
zeus::CVector3f vMin = light.GetPosition() - radius;
|
|
|
|
zeus::CVector3f vMax = light.GetPosition() + radius;
|
|
|
|
zeus::CAABox aabb(vMin, vMax);
|
|
|
|
arot->FindOverlappingModels(wordPtr, aabb);
|
|
|
|
wordPtr += arot->x14_bitmapWordCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCubeRenderer::AllocatePhazonSuitMaskTexture() {
|
|
|
|
// TODO
|
|
|
|
}
|
2022-03-08 22:21:15 +00:00
|
|
|
|
2022-02-26 16:42:42 +00:00
|
|
|
void CCubeRenderer::DrawPhazonSuitIndirectEffect(const zeus::CColor& nonIndirectMod,
|
|
|
|
const TLockedToken<CTexture>& indTex, const zeus::CColor& indirectMod,
|
2022-03-08 22:21:15 +00:00
|
|
|
float blurRadius, float scale, float offX, float offY) {
|
|
|
|
// TODO
|
2022-03-12 15:47:20 +00:00
|
|
|
GXSetDstAlpha(false, 0.f);
|
2022-03-08 22:21:15 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
void CCubeRenderer::DrawXRayOutline(const zeus::CAABox& aabb) {
|
|
|
|
// TODO
|
|
|
|
}
|
2022-03-06 04:50:54 +00:00
|
|
|
|
|
|
|
std::list<CCubeRenderer::CAreaListItem>::iterator
|
|
|
|
CCubeRenderer::FindStaticGeometry(const std::vector<CMetroidModelInstance>* geometry) {
|
|
|
|
return std::find_if(x1c_areaListItems.begin(), x1c_areaListItems.end(),
|
|
|
|
[&](const CAreaListItem& item) { return item.x0_geometry == geometry; });
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:42:42 +00:00
|
|
|
void CCubeRenderer::FindOverlappingWorldModels(std::vector<u32>& modelBits, const zeus::CAABox& aabb) const {}
|
2022-03-07 03:07:00 +00:00
|
|
|
s32 CCubeRenderer::DrawOverlappingWorldModelIDs(s32 alphaVal, const std::vector<u32>& modelBits,
|
2022-02-26 16:42:42 +00:00
|
|
|
const zeus::CAABox& aabb) {
|
2022-03-07 03:07:00 +00:00
|
|
|
SetupRendererStates(true);
|
|
|
|
|
2022-02-26 16:42:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2022-03-07 03:07:00 +00:00
|
|
|
void CCubeRenderer::DrawOverlappingWorldModelShadows(s32 alphaVal, const std::vector<u32>& modelBits,
|
2022-02-26 16:42:42 +00:00
|
|
|
const zeus::CAABox& aabb, float alpha) {}
|
2022-03-06 04:50:54 +00:00
|
|
|
|
|
|
|
void CCubeRenderer::SetupCGraphicsState() {
|
|
|
|
CGraphics::DisableAllLights();
|
|
|
|
CGraphics::SetModelMatrix({});
|
|
|
|
CTevCombiners::ResetStates();
|
|
|
|
CGraphics::SetAmbientColor({0.4f});
|
2022-03-12 15:47:20 +00:00
|
|
|
CGX::SetChanMatColor(CGX::EChannelId::Channel0, zeus::skWhite);
|
2022-03-06 04:50:54 +00:00
|
|
|
CGraphics::SetDepthWriteMode(true, ERglEnum::LEqual, true);
|
2022-03-12 15:47:20 +00:00
|
|
|
CGX::SetChanCtrl(CGX::EChannelId::Channel1, false, GX::SRC_REG, GX::SRC_REG, GX::LIGHT_NULL, GX::DF_NONE,
|
|
|
|
GX::AF_NONE);
|
2022-03-06 04:50:54 +00:00
|
|
|
CCubeMaterial::EnsureTevsDirect();
|
|
|
|
}
|
2022-03-06 07:46:42 +00:00
|
|
|
|
|
|
|
void CCubeRenderer::SetupRendererStates(bool depthWrite) {
|
|
|
|
CGraphics::DisableAllLights();
|
|
|
|
CGraphics::SetModelMatrix({});
|
|
|
|
CGraphics::SetAmbientColor(zeus::skBlack);
|
|
|
|
CGraphics::SetDepthWriteMode(true, ERglEnum::LEqual, depthWrite);
|
|
|
|
CCubeMaterial::ResetCachedMaterials();
|
2022-03-12 15:47:20 +00:00
|
|
|
GXSetTevColor(GX::TEVREG1, x2fc_tevReg1Color);
|
2022-03-06 07:46:42 +00:00
|
|
|
}
|
2022-02-25 07:45:25 +00:00
|
|
|
} // namespace metaforce
|