2016-03-11 05:32:18 +00:00
|
|
|
#include "CGuiFrame.hpp"
|
2016-03-11 22:50:15 +00:00
|
|
|
#include "CGuiWidget.hpp"
|
|
|
|
#include "CGuiSys.hpp"
|
2016-03-14 00:58:19 +00:00
|
|
|
#include "CGuiHeadWidget.hpp"
|
2016-03-15 04:55:57 +00:00
|
|
|
#include "CGuiLight.hpp"
|
|
|
|
#include "CGuiCamera.hpp"
|
|
|
|
#include "Graphics/CGraphics.hpp"
|
2016-03-14 23:32:44 +00:00
|
|
|
#include "Input/CFinalInput.hpp"
|
2016-03-11 22:50:15 +00:00
|
|
|
#include "zeus/CColor.hpp"
|
2016-12-15 22:37:34 +00:00
|
|
|
#include "CSimplePool.hpp"
|
2016-03-11 05:32:18 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
CGuiFrame::CGuiFrame(ResId id, CGuiSys& sys, int a, int b, int c, CSimplePool* sp)
|
|
|
|
: x0_id(id), x8_guiSys(sys), x4c_a(a), x50_b(b), x54_c(c), x58_24_loaded(false)
|
2016-03-11 05:32:18 +00:00
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
x3c_lights.resize(8);
|
|
|
|
x10_rootWidget.reset(new CGuiWidget(
|
2016-03-11 22:50:15 +00:00
|
|
|
CGuiWidget::CGuiWidgetParms(this, false, 0, 0, false, false, false, zeus::CColor::skWhite,
|
2016-03-17 22:19:25 +00:00
|
|
|
CGuiWidget::EGuiModelDrawFlags::Alpha, false,
|
2016-12-15 22:37:34 +00:00
|
|
|
x8_guiSys.x8_mode != CGuiSys::EUsageMode::Zero)));
|
2016-03-11 05:32:18 +00:00
|
|
|
}
|
|
|
|
|
2016-03-12 04:58:56 +00:00
|
|
|
CGuiWidget* CGuiFrame::FindWidget(const std::string& name) const
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
s16 id = x18_idDB.FindWidgetID(name);
|
2016-03-12 04:58:56 +00:00
|
|
|
if (id == -1)
|
|
|
|
return nullptr;
|
|
|
|
return FindWidget(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
CGuiWidget* CGuiFrame::FindWidget(s16 id) const
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
return x10_rootWidget->FindWidget(id);
|
2016-03-14 00:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiFrame::SortDrawOrder()
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
std::sort(x2c_widgets.begin(), x2c_widgets.end(),
|
2016-03-14 00:58:19 +00:00
|
|
|
[](const CGuiWidget* a, const CGuiWidget* b) -> bool
|
|
|
|
{
|
|
|
|
return a->GetWorldPosition().y < b->GetWorldPosition().y;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-15 04:55:57 +00:00
|
|
|
void CGuiFrame::EnableLights(u32 lights) const
|
|
|
|
{
|
|
|
|
CGraphics::DisableAllLights();
|
|
|
|
zeus::CColor accumColor(zeus::CColor::skBlack);
|
|
|
|
ERglLight lightId = ERglLight::Zero;
|
2016-03-17 02:18:01 +00:00
|
|
|
int idx = 0;
|
2016-12-15 22:37:34 +00:00
|
|
|
for (CGuiLight* light : x3c_lights)
|
2016-03-15 04:55:57 +00:00
|
|
|
{
|
2016-03-17 02:18:01 +00:00
|
|
|
if ((lights & (1 << idx)) != 0)
|
|
|
|
{
|
|
|
|
// accumulate color
|
|
|
|
accumColor += light->GetColor();
|
|
|
|
CGraphics::LoadLight(lightId, light->BuildLight());
|
|
|
|
CGraphics::EnableLight(lightId);
|
|
|
|
}
|
2016-03-15 04:55:57 +00:00
|
|
|
++reinterpret_cast<std::underlying_type_t<ERglLight>&>(lightId);
|
2016-03-17 02:18:01 +00:00
|
|
|
++idx;
|
2016-03-15 04:55:57 +00:00
|
|
|
}
|
2016-12-15 22:37:34 +00:00
|
|
|
if (x3c_lights.empty())
|
2016-03-15 04:55:57 +00:00
|
|
|
CGraphics::SetAmbientColor(zeus::CColor::skWhite);
|
|
|
|
else
|
|
|
|
CGraphics::SetAmbientColor(accumColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiFrame::DisableLights() const
|
|
|
|
{
|
|
|
|
CGraphics::DisableAllLights();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiFrame::RemoveLight(CGuiLight* light)
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
x3c_lights[light->GetLoadedIdx()] = nullptr;
|
2016-03-15 04:55:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiFrame::AddLight(CGuiLight* light)
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
x3c_lights[light->GetLoadedIdx()] = light;
|
2016-03-15 04:55:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CGuiFrame::GetIsFinishedLoading() const
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
if (x58_24_loaded)
|
2016-03-15 04:55:57 +00:00
|
|
|
return true;
|
2016-12-15 22:37:34 +00:00
|
|
|
for (const CGuiWidget* widget : x2c_widgets)
|
2016-03-15 04:55:57 +00:00
|
|
|
{
|
|
|
|
if (widget->GetIsFinishedLoading())
|
|
|
|
continue;
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-15 22:37:34 +00:00
|
|
|
const_cast<CGuiFrame*>(this)->x58_24_loaded = true;
|
2016-03-15 04:55:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiFrame::Touch() const
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
for (const CGuiWidget* widget : x2c_widgets)
|
2016-03-15 04:55:57 +00:00
|
|
|
widget->Touch();
|
|
|
|
}
|
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
void CGuiFrame::Update(float dt)
|
2016-03-14 23:32:44 +00:00
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
xc_headWidget->Update(dt);
|
2016-03-15 04:55:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiFrame::Draw(const CGuiWidgetDrawParms& parms) const
|
|
|
|
{
|
2016-12-15 22:37:34 +00:00
|
|
|
if (x4_)
|
2016-03-15 04:55:57 +00:00
|
|
|
{
|
|
|
|
CGraphics::SetCullMode(ERglCullMode::None);
|
|
|
|
CGraphics::SetAmbientColor(zeus::CColor::skWhite);
|
|
|
|
DisableLights();
|
2016-12-15 22:37:34 +00:00
|
|
|
x14_camera->Draw(parms);
|
2016-03-15 04:55:57 +00:00
|
|
|
// Set one-stage modulate
|
|
|
|
CGraphics::SetBlendMode(ERglBlendMode::Blend, ERglBlendFactor::SrcAlpha,
|
|
|
|
ERglBlendFactor::InvSrcAlpha, ERglLogicOp::Clear);
|
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
for (const CGuiWidget* widget : x2c_widgets)
|
2016-03-15 04:55:57 +00:00
|
|
|
if (widget->GetIsVisible())
|
|
|
|
widget->Draw(parms);
|
|
|
|
}
|
|
|
|
CGraphics::SetCullMode(ERglCullMode::Front);
|
|
|
|
}
|
|
|
|
|
2016-03-14 00:58:19 +00:00
|
|
|
void CGuiFrame::Initialize()
|
|
|
|
{
|
|
|
|
SortDrawOrder();
|
2016-12-15 22:37:34 +00:00
|
|
|
xc_headWidget->SetColor(xc_headWidget->xa4_color);
|
2016-12-16 04:35:49 +00:00
|
|
|
xc_headWidget->DispatchInitialize();
|
2016-03-14 00:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGuiFrame::LoadWidgetsInGame(CInputStream& in)
|
|
|
|
{
|
|
|
|
u32 count = in.readUint32Big();
|
2016-12-15 22:37:34 +00:00
|
|
|
x2c_widgets.reserve(count);
|
2016-03-14 00:58:19 +00:00
|
|
|
for (u32 i=0 ; i<count ; ++i)
|
|
|
|
{
|
|
|
|
FourCC type = in.readUint32Big();
|
|
|
|
CGuiWidget* widget = CGuiSys::CreateWidgetInGame(type, in, this);
|
|
|
|
type = widget->GetWidgetTypeID();
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case SBIG('CAMR'):
|
|
|
|
case SBIG('LITE'):
|
|
|
|
case SBIG('BGND'):
|
|
|
|
break;
|
|
|
|
default:
|
2016-12-15 22:37:34 +00:00
|
|
|
x2c_widgets.push_back(widget);
|
2016-03-14 00:58:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Initialize();
|
|
|
|
}
|
|
|
|
|
2016-12-16 04:35:49 +00:00
|
|
|
void CGuiFrame::ProcessUserInput(const CFinalInput& input) const
|
|
|
|
{
|
|
|
|
if (x4_)
|
|
|
|
return;
|
|
|
|
for (CGuiWidget* widget : x2c_widgets)
|
|
|
|
{
|
|
|
|
if (widget->GetIsActive())
|
|
|
|
widget->ProcessUserInput(input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
CGuiFrame* CGuiFrame::CreateFrame(ResId frmeId, CGuiSys& sys, CInputStream& in, CSimplePool* sp)
|
2016-03-14 00:58:19 +00:00
|
|
|
{
|
|
|
|
in.readInt32Big();
|
|
|
|
int a = in.readInt32Big();
|
|
|
|
int b = in.readInt32Big();
|
|
|
|
int c = in.readInt32Big();
|
|
|
|
|
2016-12-15 22:37:34 +00:00
|
|
|
CGuiFrame* ret = new CGuiFrame(frmeId, sys, a, b, c, sp);
|
2016-03-14 00:58:19 +00:00
|
|
|
ret->LoadWidgetsInGame(in);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-03-16 20:49:35 +00:00
|
|
|
std::unique_ptr<IObj> RGuiFrameFactoryInGame(const SObjectTag& tag, CInputStream& in,
|
2016-12-15 22:37:34 +00:00
|
|
|
const CVParamTransfer& cvParms,
|
2016-09-02 19:32:57 +00:00
|
|
|
CObjectReference* selfRef)
|
2016-03-16 20:49:35 +00:00
|
|
|
{
|
2016-12-23 06:41:39 +00:00
|
|
|
CSimplePool* sp = cvParms.GetOwnedObj<CSimplePool*>();
|
2016-12-15 22:37:34 +00:00
|
|
|
std::unique_ptr<CGuiFrame> frame(CGuiFrame::CreateFrame(tag.id, *g_GuiSys, in, sp));
|
2016-03-16 20:49:35 +00:00
|
|
|
return TToken<CGuiFrame>::GetIObjObjectFor(std::move(frame));
|
|
|
|
}
|
|
|
|
|
2016-03-12 04:58:56 +00:00
|
|
|
|
2016-03-11 05:32:18 +00:00
|
|
|
}
|