2016-03-04 05:28:20 +00:00
|
|
|
#include "MP1.hpp"
|
2016-07-21 05:21:45 +00:00
|
|
|
#include "Graphics/Shaders/CModelShaders.hpp"
|
2016-07-22 19:46:30 +00:00
|
|
|
#include "Graphics/Shaders/CThermalColdFilter.hpp"
|
2016-08-03 21:53:03 +00:00
|
|
|
#include "Graphics/Shaders/CThermalHotFilter.hpp"
|
2016-07-29 17:38:44 +00:00
|
|
|
#include "Graphics/Shaders/CSpaceWarpFilter.hpp"
|
2016-08-17 06:18:18 +00:00
|
|
|
#include "Graphics/Shaders/CColoredQuadFilter.hpp"
|
|
|
|
#include "Graphics/Shaders/CTexturedQuadFilter.hpp"
|
2016-08-20 18:18:44 +00:00
|
|
|
#include "Graphics/Shaders/CCameraBlurFilter.hpp"
|
2016-08-20 04:22:13 +00:00
|
|
|
#include "Graphics/Shaders/CXRayBlurFilter.hpp"
|
2017-01-29 03:58:16 +00:00
|
|
|
#include "Graphics/Shaders/CTextSupportShader.hpp"
|
2017-04-02 03:03:37 +00:00
|
|
|
#include "Graphics/Shaders/CEnergyBarShader.hpp"
|
2017-04-07 05:35:09 +00:00
|
|
|
#include "Graphics/Shaders/CRadarPaintShader.hpp"
|
2017-04-22 06:42:32 +00:00
|
|
|
#include "Graphics/Shaders/CMapSurfaceShader.hpp"
|
2017-05-06 05:21:42 +00:00
|
|
|
#include "Graphics/Shaders/CPhazonSuitFilter.hpp"
|
2017-06-01 05:34:24 +00:00
|
|
|
#include "Graphics/Shaders/CScanLinesFilter.hpp"
|
|
|
|
#include "Graphics/Shaders/CRandomStaticFilter.hpp"
|
2017-08-14 03:55:06 +00:00
|
|
|
#include "Graphics/Shaders/CFluidPlaneShader.hpp"
|
2017-09-03 05:53:38 +00:00
|
|
|
#include "Graphics/Shaders/CAABoxShader.hpp"
|
2017-10-01 04:26:46 +00:00
|
|
|
#include "Graphics/Shaders/CWorldShadowShader.hpp"
|
2017-10-17 05:51:53 +00:00
|
|
|
#include "Graphics/Shaders/CParticleSwooshShaders.hpp"
|
2017-01-16 09:14:54 +00:00
|
|
|
#include "Audio/CStreamAudioManager.hpp"
|
2017-01-08 02:52:49 +00:00
|
|
|
#include "CGBASupport.hpp"
|
2017-10-26 05:37:46 +00:00
|
|
|
|
|
|
|
#include "CGameHintInfo.hpp"
|
|
|
|
#include "Particle/CParticleDataFactory.hpp"
|
|
|
|
#include "Particle/CGenDescription.hpp"
|
|
|
|
#include "Particle/CElectricDescription.hpp"
|
|
|
|
#include "Particle/CSwooshDescription.hpp"
|
|
|
|
#include "Particle/CParticleElectricDataFactory.hpp"
|
|
|
|
#include "Particle/CParticleSwooshDataFactory.hpp"
|
|
|
|
#include "Particle/CWeaponDescription.hpp"
|
|
|
|
#include "Particle/CProjectileWeaponDataFactory.hpp"
|
|
|
|
#include "Particle/CDecalDataFactory.hpp"
|
|
|
|
#include "GuiSys/CGuiFrame.hpp"
|
|
|
|
#include "GuiSys/CRasterFont.hpp"
|
|
|
|
#include "GuiSys/CStringTable.hpp"
|
|
|
|
#include "Graphics/CModel.hpp"
|
|
|
|
#include "Graphics/CTexture.hpp"
|
|
|
|
#include "Character/CCharLayoutInfo.hpp"
|
|
|
|
#include "Character/CSkinRules.hpp"
|
|
|
|
#include "Character/CAnimCharacterSet.hpp"
|
|
|
|
#include "Character/CAllFormatsAnimSource.hpp"
|
|
|
|
#include "Character/CAnimPOIData.hpp"
|
|
|
|
#include "Collision/CCollidableOBBTreeGroup.hpp"
|
|
|
|
#include "Collision/CCollisionResponseData.hpp"
|
|
|
|
#include "CSaveWorld.hpp"
|
|
|
|
#include "AutoMapper/CMapWorld.hpp"
|
|
|
|
#include "AutoMapper/CMapArea.hpp"
|
|
|
|
#include "AutoMapper/CMapUniverse.hpp"
|
|
|
|
#include "CScannableObjectInfo.hpp"
|
2017-01-20 03:53:32 +00:00
|
|
|
#include "Audio/CAudioGroupSet.hpp"
|
2017-10-26 05:37:46 +00:00
|
|
|
#include "Audio/CSfxManager.hpp"
|
|
|
|
#include "Audio/CMidiManager.hpp"
|
|
|
|
#include "CDependencyGroup.hpp"
|
|
|
|
#include "MP1OriginalIDs.hpp"
|
2015-08-29 01:30:47 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-17 05:26:58 +00:00
|
|
|
{
|
2017-10-17 05:51:53 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CParticleSwooshShaders)
|
2016-07-22 19:46:30 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CThermalColdFilter)
|
2016-08-03 21:53:03 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CThermalHotFilter)
|
2016-07-29 17:38:44 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CSpaceWarpFilter)
|
2016-08-20 18:18:44 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CCameraBlurFilter)
|
2016-08-20 04:22:13 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CXRayBlurFilter)
|
2017-03-14 07:03:58 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CFogVolumePlaneShader)
|
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CFogVolumeFilter)
|
2017-04-02 03:03:37 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CEnergyBarShader)
|
2017-04-07 05:35:09 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CRadarPaintShader)
|
2017-04-22 06:42:32 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CMapSurfaceShader)
|
2017-05-06 05:21:42 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CPhazonSuitFilter)
|
2017-09-03 05:53:38 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CAABoxShader)
|
2017-10-01 04:26:46 +00:00
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CWorldShadowShader)
|
2016-08-17 06:18:18 +00:00
|
|
|
URDE_DECL_SPECIALIZE_MULTI_BLEND_SHADER(CColoredQuadFilter)
|
|
|
|
URDE_DECL_SPECIALIZE_MULTI_BLEND_SHADER(CTexturedQuadFilter)
|
2016-09-14 05:54:09 +00:00
|
|
|
URDE_DECL_SPECIALIZE_MULTI_BLEND_SHADER(CTexturedQuadFilterAlpha)
|
2017-01-29 03:58:16 +00:00
|
|
|
URDE_DECL_SPECIALIZE_MULTI_BLEND_SHADER(CTextSupportShader)
|
2017-06-01 05:34:24 +00:00
|
|
|
URDE_DECL_SPECIALIZE_MULTI_BLEND_SHADER(CScanLinesFilter)
|
|
|
|
URDE_DECL_SPECIALIZE_MULTI_BLEND_SHADER(CRandomStaticFilter)
|
2015-08-18 05:54:43 +00:00
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
namespace MP1
|
|
|
|
{
|
|
|
|
|
2017-02-09 09:23:17 +00:00
|
|
|
CGameArchitectureSupport::CGameArchitectureSupport(CMain& parent,
|
|
|
|
boo::IAudioVoiceEngine* voiceEngine,
|
2016-12-14 22:56:59 +00:00
|
|
|
amuse::IBackendVoiceAllocator& backend)
|
2016-09-30 22:43:19 +00:00
|
|
|
: m_parent(parent),
|
2016-12-29 21:38:59 +00:00
|
|
|
x0_audioSys(voiceEngine, backend, 0,0,0,0,0),
|
|
|
|
x30_inputGenerator(g_tweakPlayer->GetLeftLogicalThreshold(),
|
2016-09-15 07:26:35 +00:00
|
|
|
g_tweakPlayer->GetRightLogicalThreshold()),
|
2016-12-29 21:38:59 +00:00
|
|
|
x44_guiSys(*g_ResFactory, *g_SimplePool, CGuiSys::EUsageMode::Zero)
|
2016-09-14 05:54:09 +00:00
|
|
|
{
|
2017-01-22 01:40:12 +00:00
|
|
|
CMain* m = static_cast<CMain*>(g_Main);
|
|
|
|
|
2016-12-29 21:38:59 +00:00
|
|
|
g_GuiSys = &x44_guiSys;
|
|
|
|
x30_inputGenerator.startScanning();
|
2017-02-18 02:19:50 +00:00
|
|
|
g_InputGenerator = &x30_inputGenerator;
|
2017-01-23 07:22:17 +00:00
|
|
|
|
|
|
|
CAudioSys::SysSetVolume(0x7f);
|
|
|
|
CAudioSys::SetDefaultVolumeScale(0x75);
|
|
|
|
CAudioSys::SetVolumeScale(CAudioSys::GetDefaultVolumeScale());
|
2017-01-16 09:14:54 +00:00
|
|
|
CStreamAudioManager::Initialize();
|
2017-02-06 03:21:58 +00:00
|
|
|
CStreamAudioManager::SetMusicVolume(0x7f);
|
2017-01-22 01:40:12 +00:00
|
|
|
m->ResetGameState();
|
2016-09-14 05:54:09 +00:00
|
|
|
|
2017-01-29 03:58:16 +00:00
|
|
|
//std::shared_ptr<CIOWin> splash = std::make_shared<CSplashScreen>(CSplashScreen::ESplashScreen::Nintendo);
|
|
|
|
//x58_ioWinManager.AddIOWin(splash, 1000, 10000);
|
2016-09-14 05:54:09 +00:00
|
|
|
|
|
|
|
std::shared_ptr<CIOWin> mf = std::make_shared<CMainFlow>();
|
2016-12-29 21:38:59 +00:00
|
|
|
x58_ioWinManager.AddIOWin(mf, 0, 0);
|
2016-09-14 05:54:09 +00:00
|
|
|
|
|
|
|
std::shared_ptr<CIOWin> console = std::make_shared<CConsoleOutputWindow>(8, 5.f, 0.75f);
|
2016-12-29 21:38:59 +00:00
|
|
|
x58_ioWinManager.AddIOWin(console, 100, 0);
|
2016-09-14 05:54:09 +00:00
|
|
|
|
|
|
|
std::shared_ptr<CIOWin> audState = std::make_shared<CAudioStateWin>();
|
2016-12-29 21:38:59 +00:00
|
|
|
x58_ioWinManager.AddIOWin(audState, 100, -1);
|
2016-09-14 05:54:09 +00:00
|
|
|
|
|
|
|
std::shared_ptr<CIOWin> errWin = std::make_shared<CErrorOutputWindow>(false);
|
2016-12-29 21:38:59 +00:00
|
|
|
x58_ioWinManager.AddIOWin(errWin, 10000, 100000);
|
2016-09-14 05:54:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-20 03:53:32 +00:00
|
|
|
void CGameArchitectureSupport::UpdateTicks()
|
2016-09-14 05:54:09 +00:00
|
|
|
{
|
2017-02-18 02:19:50 +00:00
|
|
|
x4_archQueue.Push(MakeMsg::CreateFrameBegin(EArchMsgTarget::Game, x78_gameFrameCount));
|
2017-01-20 03:53:32 +00:00
|
|
|
x4_archQueue.Push(MakeMsg::CreateTimerTick(EArchMsgTarget::Game, 1.f / 60.f));
|
|
|
|
}
|
2016-09-14 05:54:09 +00:00
|
|
|
|
2017-01-20 03:53:32 +00:00
|
|
|
void CGameArchitectureSupport::Update()
|
|
|
|
{
|
2016-09-14 05:54:09 +00:00
|
|
|
g_GameState->GetWorldTransitionManager()->TouchModels();
|
2017-01-22 17:36:25 +00:00
|
|
|
x30_inputGenerator.Update(1 / 60.f, x4_archQueue);
|
2017-02-18 02:19:50 +00:00
|
|
|
x4_archQueue.Push(MakeMsg::CreateFrameEnd(EArchMsgTarget::Game, x78_gameFrameCount));
|
2016-12-29 21:38:59 +00:00
|
|
|
x58_ioWinManager.PumpMessages(x4_archQueue);
|
2017-01-20 03:53:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct AudioGroupInfo
|
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
u32 id;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AudioGroupInfo StaticAudioGroups[] =
|
|
|
|
{
|
|
|
|
{"Misc_AGSC", 39},
|
|
|
|
{"MiscSamus_AGSC", 41},
|
|
|
|
{"UI_AGSC", 40},
|
|
|
|
{"Weapons_AGSC", 43},
|
|
|
|
{"ZZZ_AGSC", 65}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool CGameArchitectureSupport::LoadAudio()
|
|
|
|
{
|
|
|
|
if (x88_audioLoadStatus == EAudioLoadStatus::Loaded)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (int i=0 ; i<5 ; ++i)
|
|
|
|
{
|
|
|
|
TToken<CAudioGroupSet>& tok = x8c_pendingAudioGroups[i];
|
|
|
|
if (tok.IsLocked())
|
|
|
|
{
|
|
|
|
if (tok.IsLoaded())
|
|
|
|
{
|
|
|
|
CAudioGroupSet* set = tok.GetObj();
|
|
|
|
if (!CAudioSys::SysIsGroupSetLoaded(set->GetName()))
|
|
|
|
{
|
|
|
|
CAudioSys::SysLoadGroupSet(tok, set->GetName(), tok.GetObjectTag()->id);
|
|
|
|
CAudioSys::SysAddGroupIntoAmuse(set->GetName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Lock next pending group */
|
|
|
|
tok.Lock();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CSfxManager::LoadTranslationTable(g_SimplePool, g_ResFactory->GetResourceIdByName("sound_lookup"));
|
|
|
|
x8c_pendingAudioGroups = std::vector<TToken<CAudioGroupSet>>();
|
|
|
|
x88_audioLoadStatus = EAudioLoadStatus::Loaded;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameArchitectureSupport::PreloadAudio()
|
|
|
|
{
|
|
|
|
if (x88_audioLoadStatus != EAudioLoadStatus::Uninitialized)
|
|
|
|
return;
|
|
|
|
x8c_pendingAudioGroups.clear();
|
|
|
|
x8c_pendingAudioGroups.reserve(5);
|
|
|
|
|
|
|
|
for (int i=0 ; i<5 ; ++i)
|
|
|
|
{
|
|
|
|
const AudioGroupInfo& info = StaticAudioGroups[i];
|
|
|
|
CToken grp = g_SimplePool->GetObj(info.name);
|
|
|
|
if (i == 0) /* Lock first group in sequence */
|
|
|
|
grp.Lock();
|
|
|
|
x8c_pendingAudioGroups.push_back(std::move(grp));
|
|
|
|
}
|
2016-12-29 21:38:59 +00:00
|
|
|
|
2017-01-20 03:53:32 +00:00
|
|
|
x88_audioLoadStatus = EAudioLoadStatus::Loading;
|
2016-09-14 05:54:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-22 01:40:12 +00:00
|
|
|
void CGameArchitectureSupport::UnloadAudio()
|
|
|
|
{
|
|
|
|
|
|
|
|
for (int i=0 ; i<5 ; ++i)
|
|
|
|
{
|
|
|
|
const AudioGroupInfo& info = StaticAudioGroups[i];
|
|
|
|
const SObjectTag* tag = g_ResFactory->GetResourceIdByName(info.name);
|
|
|
|
const std::string& name = CAudioSys::SysGetGroupSetName(tag->id);
|
|
|
|
CAudioSys::SysRemoveGroupFromAmuse(name);
|
|
|
|
CAudioSys::SysUnloadAudioGroupSet(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
x8c_pendingAudioGroups = std::vector<TToken<CAudioGroupSet>>();
|
|
|
|
x88_audioLoadStatus = EAudioLoadStatus::Uninitialized;
|
|
|
|
}
|
|
|
|
|
2016-09-14 05:54:09 +00:00
|
|
|
void CGameArchitectureSupport::Draw()
|
|
|
|
{
|
2016-12-29 21:38:59 +00:00
|
|
|
x58_ioWinManager.Draw();
|
2017-02-18 02:19:50 +00:00
|
|
|
if (m_parent.x161_24_gameFrameDrawn)
|
|
|
|
{
|
|
|
|
++x78_gameFrameCount;
|
|
|
|
m_parent.x161_24_gameFrameDrawn = false;
|
|
|
|
}
|
2016-09-14 05:54:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-22 01:40:12 +00:00
|
|
|
CGameArchitectureSupport::~CGameArchitectureSupport()
|
|
|
|
{
|
|
|
|
x58_ioWinManager.RemoveAllIOWins();
|
|
|
|
UnloadAudio();
|
|
|
|
CSfxManager::Shutdown();
|
|
|
|
CStreamAudioManager::Shutdown();
|
|
|
|
}
|
|
|
|
|
2017-10-26 10:09:51 +00:00
|
|
|
CMain::CMain(IFactory* resFactory, CSimplePool* resStore,
|
2016-08-17 06:18:18 +00:00
|
|
|
boo::IGraphicsDataFactory* gfxFactory,
|
|
|
|
boo::IGraphicsCommandQueue* cmdQ,
|
2016-09-15 07:26:35 +00:00
|
|
|
boo::ITextureR* spareTex)
|
2016-09-14 05:54:09 +00:00
|
|
|
: m_booSetter(gfxFactory, cmdQ, spareTex),
|
2016-09-15 07:26:35 +00:00
|
|
|
x128_globalObjects(resFactory, resStore)
|
2015-08-17 05:26:58 +00:00
|
|
|
{
|
2015-11-21 01:16:07 +00:00
|
|
|
xe4_gameplayResult = EGameplayResult::Playing;
|
2016-08-15 20:58:07 +00:00
|
|
|
g_Main = this;
|
2015-08-27 00:23:46 +00:00
|
|
|
}
|
2016-04-15 20:42:40 +00:00
|
|
|
|
2016-08-17 06:18:18 +00:00
|
|
|
CMain::BooSetter::BooSetter(boo::IGraphicsDataFactory* factory,
|
|
|
|
boo::IGraphicsCommandQueue* cmdQ,
|
|
|
|
boo::ITextureR* spareTex)
|
|
|
|
{
|
|
|
|
CGraphics::InitializeBoo(factory, cmdQ, spareTex);
|
2017-10-17 05:51:53 +00:00
|
|
|
TShader<CParticleSwooshShaders>::Initialize();
|
2016-08-17 06:18:18 +00:00
|
|
|
TShader<CThermalColdFilter>::Initialize();
|
|
|
|
TShader<CThermalHotFilter>::Initialize();
|
|
|
|
TShader<CSpaceWarpFilter>::Initialize();
|
2016-08-20 18:18:44 +00:00
|
|
|
TShader<CCameraBlurFilter>::Initialize();
|
2016-08-20 04:22:13 +00:00
|
|
|
TShader<CXRayBlurFilter>::Initialize();
|
2017-03-14 07:03:58 +00:00
|
|
|
TShader<CFogVolumePlaneShader>::Initialize();
|
|
|
|
TShader<CFogVolumeFilter>::Initialize();
|
2017-04-02 03:03:37 +00:00
|
|
|
TShader<CEnergyBarShader>::Initialize();
|
2017-04-07 05:35:09 +00:00
|
|
|
TShader<CRadarPaintShader>::Initialize();
|
2017-04-22 06:42:32 +00:00
|
|
|
TShader<CMapSurfaceShader>::Initialize();
|
2017-05-06 05:21:42 +00:00
|
|
|
TShader<CPhazonSuitFilter>::Initialize();
|
2017-09-03 05:53:38 +00:00
|
|
|
TShader<CAABoxShader>::Initialize();
|
2017-10-01 04:26:46 +00:00
|
|
|
TShader<CWorldShadowShader>::Initialize();
|
2016-08-17 06:18:18 +00:00
|
|
|
TMultiBlendShader<CColoredQuadFilter>::Initialize();
|
|
|
|
TMultiBlendShader<CTexturedQuadFilter>::Initialize();
|
2016-09-14 05:54:09 +00:00
|
|
|
TMultiBlendShader<CTexturedQuadFilterAlpha>::Initialize();
|
2017-01-29 03:58:16 +00:00
|
|
|
TMultiBlendShader<CTextSupportShader>::Initialize();
|
2017-06-01 05:34:24 +00:00
|
|
|
TMultiBlendShader<CScanLinesFilter>::Initialize();
|
|
|
|
TMultiBlendShader<CRandomStaticFilter>::Initialize();
|
2016-08-17 06:18:18 +00:00
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CMain::RegisterResourceTweaks()
|
|
|
|
{
|
|
|
|
}
|
2017-10-26 05:37:46 +00:00
|
|
|
|
|
|
|
void CGameGlobalObjects::AddPaksAndFactories()
|
|
|
|
{
|
|
|
|
CGraphics::SetViewPointMatrix(zeus::CTransform::Identity());
|
|
|
|
CGraphics::SetModelMatrix(zeus::CTransform::Identity());
|
|
|
|
if (CResLoader* loader = g_ResFactory->GetResLoader())
|
|
|
|
{
|
|
|
|
loader->AddPakFileAsync("Tweaks", false, false);
|
|
|
|
loader->AddPakFileAsync("NoARAM", false, false);
|
|
|
|
loader->AddPakFileAsync("AudioGrp", false, false);
|
|
|
|
loader->AddPakFileAsync("MiscData", false, false);
|
|
|
|
loader->AddPakFileAsync("SamusGun", true, false);
|
|
|
|
loader->AddPakFileAsync("TestAnim", true, false);
|
|
|
|
loader->AddPakFileAsync("SamGunFx", true, false);
|
|
|
|
loader->AddPakFileAsync("MidiData", false, false);
|
|
|
|
loader->AddPakFileAsync("GGuiSys", false, false);
|
2017-10-27 10:10:32 +00:00
|
|
|
loader->AddPakFileAsync("!original_ids", false, false);
|
|
|
|
loader->WaitForPakFileLoadingComplete();
|
2017-10-26 05:37:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (CFactoryMgr* fmgr = g_ResFactory->GetFactoryMgr())
|
|
|
|
{
|
|
|
|
fmgr->AddFactory(FOURCC('TXTR'), FMemFactoryFunc(FTextureFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('PART'), FFactoryFunc(FParticleFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('FRME'), FFactoryFunc(RGuiFrameFactoryInGame));
|
|
|
|
fmgr->AddFactory(FOURCC('FONT'), FFactoryFunc(FRasterFontFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('CMDL'), FMemFactoryFunc(FModelFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('CINF'), FFactoryFunc(FCharLayoutInfo));
|
|
|
|
fmgr->AddFactory(FOURCC('CSKR'), FFactoryFunc(FSkinRulesFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('ANCS'), FFactoryFunc(FAnimCharacterSet));
|
|
|
|
fmgr->AddFactory(FOURCC('ANIM'), FFactoryFunc(AnimSourceFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('EVNT'), FFactoryFunc(AnimPOIDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('DCLN'), FFactoryFunc(FCollidableOBBTreeGroupFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('DGRP'), FFactoryFunc(FDependencyGroupFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('AGSC'), FMemFactoryFunc(FAudioGroupSetDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('CSNG'), FFactoryFunc(FMidiDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('ATBL'), FFactoryFunc(FAudioTranslationTableFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('STRG'), FFactoryFunc(FStringTableFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('HINT'), FFactoryFunc(FHintFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('SAVW'), FFactoryFunc(FSaveWorldFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('MAPW'), FFactoryFunc(FMapWorldFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('OIDS'), FFactoryFunc(FMP1OriginalIDsFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('SCAN'), FFactoryFunc(FScannableObjectInfoFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('CRSC'), FFactoryFunc(FCollisionResponseDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('SWHC'), FFactoryFunc(FParticleSwooshDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('ELSC'), FFactoryFunc(FParticleElectricDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('WPSC'), FFactoryFunc(FProjectileWeaponDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('DPSC'), FFactoryFunc(FDecalDataFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('MAPA'), FFactoryFunc(FMapAreaFactory));
|
|
|
|
fmgr->AddFactory(FOURCC('MAPU'), FFactoryFunc(FMapUniverseFactory));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMain::AddWorldPaks()
|
|
|
|
{
|
2017-10-27 10:10:32 +00:00
|
|
|
CResLoader* loader = g_ResFactory->GetResLoader();
|
|
|
|
if (!loader)
|
|
|
|
return;
|
2017-10-26 05:37:46 +00:00
|
|
|
auto& pakPrefix = g_tweakGame->GetWorldPrefix();
|
|
|
|
for (int i=0 ; i<9 ; ++i)
|
|
|
|
{
|
|
|
|
std::string path = pakPrefix;
|
|
|
|
if (i != 0)
|
|
|
|
path += '0' + i;
|
2017-10-27 10:10:32 +00:00
|
|
|
if (CDvdFile::FileExists((path + ".upak").c_str()))
|
|
|
|
loader->AddPakFileAsync(path, false, true);
|
2017-10-26 05:37:46 +00:00
|
|
|
}
|
2017-10-27 10:10:32 +00:00
|
|
|
loader->WaitForPakFileLoadingComplete();
|
2017-10-26 05:37:46 +00:00
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CMain::ResetGameState()
|
|
|
|
{
|
2016-12-29 21:38:59 +00:00
|
|
|
CPersistentOptions sysOpts = g_GameState->SystemOptions();
|
|
|
|
CGameOptions gameOpts = g_GameState->GameOptions();
|
|
|
|
x128_globalObjects.ResetGameState();
|
|
|
|
g_GameState->ImportPersistentOptions(sysOpts);
|
|
|
|
g_GameState->SetGameOptions(gameOpts);
|
2017-01-01 06:46:52 +00:00
|
|
|
g_GameState->GetPlayerState()->SetIsFusionEnabled(g_GameState->SystemOptions().GetPlayerFusionSuitActive());
|
2015-08-27 00:23:46 +00:00
|
|
|
}
|
2015-11-02 18:45:39 +00:00
|
|
|
|
2016-12-14 22:56:59 +00:00
|
|
|
void CMain::InitializeSubsystems(const hecl::Runtime::FileStoreManager& storeMgr)
|
2015-08-27 00:23:46 +00:00
|
|
|
{
|
2017-01-08 03:08:02 +00:00
|
|
|
CBasics::Initialize();
|
2016-08-17 06:18:18 +00:00
|
|
|
CModelShaders::Initialize(storeMgr, CGraphics::g_BooFactory);
|
2016-04-15 20:42:40 +00:00
|
|
|
CMoviePlayer::Initialize();
|
|
|
|
CLineRenderer::Initialize();
|
2015-08-27 00:23:46 +00:00
|
|
|
CElementGen::Initialize();
|
|
|
|
CAnimData::InitializeCache();
|
|
|
|
CDecalManager::Initialize();
|
2017-01-08 02:52:49 +00:00
|
|
|
CGBASupport::Initialize();
|
2015-08-27 00:23:46 +00:00
|
|
|
}
|
2015-11-02 18:45:39 +00:00
|
|
|
|
2017-10-22 06:11:22 +00:00
|
|
|
void CMain::MemoryCardInitializePump()
|
|
|
|
{
|
|
|
|
if (!g_MemoryCardSys)
|
|
|
|
{
|
|
|
|
std::unique_ptr<CMemoryCardSys>& memSys = x128_globalObjects.x0_memoryCardSys;
|
|
|
|
if (!memSys)
|
|
|
|
memSys.reset(new CMemoryCardSys());
|
|
|
|
if (memSys->InitializePump())
|
|
|
|
{
|
|
|
|
g_MemoryCardSys = memSys.get();
|
|
|
|
g_GameState->InitializeMemoryStates();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
void CMain::FillInAssetIDs()
|
|
|
|
{
|
|
|
|
}
|
2017-01-20 03:53:32 +00:00
|
|
|
|
|
|
|
bool CMain::LoadAudio()
|
2015-08-27 00:23:46 +00:00
|
|
|
{
|
2017-01-20 03:53:32 +00:00
|
|
|
if (x164_archSupport)
|
|
|
|
return x164_archSupport->LoadAudio();
|
|
|
|
return true;
|
2015-08-27 00:23:46 +00:00
|
|
|
}
|
2015-11-02 18:45:39 +00:00
|
|
|
|
2017-04-15 05:32:25 +00:00
|
|
|
void CMain::EnsureWorldPaksReady()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-08-13 05:26:14 +00:00
|
|
|
void CMain::EnsureWorldPakReady(CAssetId mlvl)
|
2017-04-15 05:32:25 +00:00
|
|
|
{
|
|
|
|
/* TODO: Schedule resource list load for World Pak containing mlvl */
|
|
|
|
}
|
|
|
|
|
2016-12-30 06:37:01 +00:00
|
|
|
void CMain::StreamNewGameState(CBitStreamReader& r, u32 idx)
|
|
|
|
{
|
2017-01-01 06:46:52 +00:00
|
|
|
bool fusionBackup = g_GameState->SystemOptions().GetPlayerFusionSuitActive();
|
2016-12-30 06:43:29 +00:00
|
|
|
x128_globalObjects.x134_gameState = std::make_unique<CGameState>(r, idx);
|
|
|
|
g_GameState = x128_globalObjects.x134_gameState.get();
|
2017-01-01 06:46:52 +00:00
|
|
|
g_GameState->SystemOptions().SetPlayerFusionSuitActive(fusionBackup);
|
2016-12-30 06:43:29 +00:00
|
|
|
g_GameState->GetPlayerState()->SetIsFusionEnabled(fusionBackup);
|
2016-12-30 06:37:01 +00:00
|
|
|
g_GameState->HintOptions().SetNextHintTime();
|
|
|
|
}
|
|
|
|
|
2016-08-17 06:18:18 +00:00
|
|
|
void CMain::Init(const hecl::Runtime::FileStoreManager& storeMgr,
|
2017-02-09 09:23:17 +00:00
|
|
|
boo::IWindow* window,
|
2016-09-15 07:26:35 +00:00
|
|
|
boo::IAudioVoiceEngine* voiceEngine,
|
|
|
|
amuse::IBackendVoiceAllocator& backend)
|
2016-04-15 20:42:40 +00:00
|
|
|
{
|
2017-02-09 09:23:17 +00:00
|
|
|
m_mainWindow = window;
|
2016-12-14 22:56:59 +00:00
|
|
|
InitializeSubsystems(storeMgr);
|
2016-08-15 20:58:07 +00:00
|
|
|
x128_globalObjects.PostInitialize();
|
2016-04-15 20:42:40 +00:00
|
|
|
x70_tweaks.RegisterTweaks();
|
2016-08-31 21:00:06 +00:00
|
|
|
x70_tweaks.RegisterResourceTweaks();
|
2017-10-26 05:37:46 +00:00
|
|
|
AddWorldPaks();
|
2016-04-15 20:42:40 +00:00
|
|
|
FillInAssetIDs();
|
2017-01-20 03:53:32 +00:00
|
|
|
x164_archSupport.reset(new CGameArchitectureSupport(*this, voiceEngine, backend));
|
|
|
|
g_archSupport = x164_archSupport.get();
|
|
|
|
x164_archSupport->PreloadAudio();
|
|
|
|
//g_TweakManager->ReadFromMemoryCard("AudioTweaks");
|
|
|
|
|
2017-01-21 00:20:19 +00:00
|
|
|
//CStreamAudioManager::Start(false, "Audio/rui_samusL.dsp|Audio/rui_samusR.dsp", 0x7f, true, 1.f, 1.f);
|
2016-04-15 20:42:40 +00:00
|
|
|
}
|
|
|
|
|
2017-11-02 09:35:07 +00:00
|
|
|
static logvisor::Module WarmupLog("ShaderWarmup");
|
2017-10-17 05:51:53 +00:00
|
|
|
|
|
|
|
void CMain::WarmupShaders()
|
|
|
|
{
|
|
|
|
if (m_warmupTags.size())
|
|
|
|
return;
|
|
|
|
|
2017-10-22 06:11:22 +00:00
|
|
|
m_needsWarmupClear = true;
|
2017-10-17 05:51:53 +00:00
|
|
|
size_t modelCount = 0;
|
|
|
|
g_ResFactory->EnumerateResources([&](const SObjectTag& tag)
|
|
|
|
{
|
|
|
|
if (tag.type == FOURCC('CMDL') || tag.type == FOURCC('MREA'))
|
|
|
|
++modelCount;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
m_warmupTags.reserve(modelCount);
|
|
|
|
|
2017-10-27 10:10:32 +00:00
|
|
|
std::unordered_set<SObjectTag> addedTags;
|
|
|
|
addedTags.reserve(modelCount);
|
|
|
|
|
2017-10-17 05:51:53 +00:00
|
|
|
g_ResFactory->EnumerateResources([&](const SObjectTag& tag)
|
|
|
|
{
|
|
|
|
if (tag.type == FOURCC('CMDL') || tag.type == FOURCC('MREA'))
|
2017-10-27 10:10:32 +00:00
|
|
|
{
|
|
|
|
if (addedTags.find(tag) != addedTags.end())
|
|
|
|
return true;
|
|
|
|
addedTags.insert(tag);
|
2017-10-17 05:51:53 +00:00
|
|
|
m_warmupTags.push_back(tag);
|
2017-10-27 10:10:32 +00:00
|
|
|
}
|
2017-10-17 05:51:53 +00:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
m_warmupIt = m_warmupTags.begin();
|
|
|
|
|
2017-10-27 10:10:32 +00:00
|
|
|
WarmupLog.report(logvisor::Info, "Began warmup of %" PRISize " objects", m_warmupTags.size());
|
2017-10-17 05:51:53 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 20:42:40 +00:00
|
|
|
bool CMain::Proc()
|
|
|
|
{
|
2017-10-17 05:51:53 +00:00
|
|
|
// Warmup cycle overrides update
|
|
|
|
if (m_warmupTags.size())
|
|
|
|
return false;
|
|
|
|
|
2017-01-08 02:52:49 +00:00
|
|
|
CGBASupport::GlobalPoll();
|
2017-01-20 03:53:32 +00:00
|
|
|
x164_archSupport->UpdateTicks();
|
|
|
|
x164_archSupport->Update();
|
2017-01-23 07:22:17 +00:00
|
|
|
CSfxManager::Update(1.f / 60.f);
|
2017-01-16 09:14:54 +00:00
|
|
|
CStreamAudioManager::Update(1.f / 60.f);
|
2017-02-06 03:21:58 +00:00
|
|
|
if (x164_archSupport->GetIOWinManager().IsEmpty() || CheckReset())
|
|
|
|
{
|
|
|
|
CStreamAudioManager::StopAll();
|
|
|
|
/*
|
|
|
|
x164_archSupport.reset();
|
|
|
|
g_archSupport = x164_archSupport.get();
|
|
|
|
x164_archSupport->PreloadAudio();
|
|
|
|
*/
|
|
|
|
x160_24_finished = true;
|
|
|
|
}
|
2017-01-20 03:53:32 +00:00
|
|
|
return x160_24_finished;
|
2016-04-15 20:42:40 +00:00
|
|
|
}
|
|
|
|
|
2016-09-14 05:54:09 +00:00
|
|
|
void CMain::Draw()
|
|
|
|
{
|
2017-10-17 05:51:53 +00:00
|
|
|
// Warmup cycle overrides draw
|
|
|
|
if (m_warmupTags.size())
|
|
|
|
{
|
2017-10-22 06:11:22 +00:00
|
|
|
if (m_needsWarmupClear)
|
|
|
|
{
|
|
|
|
CGraphics::g_BooMainCommandQueue->clearTarget(true, true);
|
|
|
|
m_needsWarmupClear = false;
|
|
|
|
}
|
2017-10-17 05:51:53 +00:00
|
|
|
auto startTime = std::chrono::steady_clock::now();
|
|
|
|
while (m_warmupIt != m_warmupTags.end())
|
|
|
|
{
|
2017-11-02 09:35:07 +00:00
|
|
|
WarmupLog.report(logvisor::Info, "[%d / %d] Warming %.4s %08X",
|
|
|
|
int(m_warmupIt - m_warmupTags.begin() + 1), int(m_warmupTags.size()),
|
|
|
|
m_warmupIt->type.getChars(), m_warmupIt->id.Value());
|
2017-10-17 05:51:53 +00:00
|
|
|
|
|
|
|
if (m_warmupIt->type == FOURCC('CMDL'))
|
|
|
|
CModel::WarmupShaders(*m_warmupIt);
|
|
|
|
else if (m_warmupIt->type == FOURCC('MREA'))
|
|
|
|
CGameArea::WarmupShaders(*m_warmupIt);
|
|
|
|
++m_warmupIt;
|
|
|
|
|
|
|
|
// Approximately 3/4 frame of warmups
|
|
|
|
auto curTime = std::chrono::steady_clock::now();
|
|
|
|
if (std::chrono::duration_cast<std::chrono::milliseconds>(curTime - startTime).count() > 12)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (m_warmupIt == m_warmupTags.end())
|
|
|
|
{
|
|
|
|
m_warmupTags = std::vector<SObjectTag>();
|
|
|
|
WarmupLog.report(logvisor::Info, "Finished warmup");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-22 06:11:22 +00:00
|
|
|
CGraphics::g_BooMainCommandQueue->clearTarget(true, true);
|
2017-01-20 03:53:32 +00:00
|
|
|
x164_archSupport->Draw();
|
2016-09-14 05:54:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-22 01:40:12 +00:00
|
|
|
void CMain::ShutdownSubsystems()
|
|
|
|
{
|
|
|
|
CMoviePlayer::Shutdown();
|
|
|
|
CLineRenderer::Shutdown();
|
|
|
|
CDecalManager::Shutdown();
|
|
|
|
CElementGen::Shutdown();
|
|
|
|
CAnimData::FreeCache();
|
2017-01-22 17:36:25 +00:00
|
|
|
CMemoryCardSys::Shutdown();
|
2017-03-14 07:03:58 +00:00
|
|
|
CModelShaders::Shutdown();
|
2017-04-22 06:42:32 +00:00
|
|
|
CMappableObject::Shutdown();
|
2017-01-22 01:40:12 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 20:42:40 +00:00
|
|
|
void CMain::Shutdown()
|
|
|
|
{
|
2017-01-22 01:40:12 +00:00
|
|
|
x164_archSupport.reset();
|
|
|
|
ShutdownSubsystems();
|
2017-10-17 05:51:53 +00:00
|
|
|
TShader<CParticleSwooshShaders>::Shutdown();
|
2016-08-20 04:22:13 +00:00
|
|
|
TShader<CThermalColdFilter>::Shutdown();
|
|
|
|
TShader<CThermalHotFilter>::Shutdown();
|
|
|
|
TShader<CSpaceWarpFilter>::Shutdown();
|
2016-08-20 18:18:44 +00:00
|
|
|
TShader<CCameraBlurFilter>::Shutdown();
|
2016-08-20 04:22:13 +00:00
|
|
|
TShader<CXRayBlurFilter>::Shutdown();
|
2017-03-14 07:03:58 +00:00
|
|
|
TShader<CFogVolumePlaneShader>::Shutdown();
|
|
|
|
TShader<CFogVolumeFilter>::Shutdown();
|
2017-04-02 03:03:37 +00:00
|
|
|
TShader<CEnergyBarShader>::Shutdown();
|
2017-04-07 05:35:09 +00:00
|
|
|
TShader<CRadarPaintShader>::Shutdown();
|
2017-04-22 06:42:32 +00:00
|
|
|
TShader<CMapSurfaceShader>::Shutdown();
|
2017-05-06 05:21:42 +00:00
|
|
|
TShader<CPhazonSuitFilter>::Shutdown();
|
2017-09-03 05:53:38 +00:00
|
|
|
TShader<CAABoxShader>::Shutdown();
|
2017-10-01 04:26:46 +00:00
|
|
|
TShader<CWorldShadowShader>::Shutdown();
|
2016-08-20 04:22:13 +00:00
|
|
|
TMultiBlendShader<CColoredQuadFilter>::Shutdown();
|
|
|
|
TMultiBlendShader<CTexturedQuadFilter>::Shutdown();
|
2016-09-14 05:54:09 +00:00
|
|
|
TMultiBlendShader<CTexturedQuadFilterAlpha>::Shutdown();
|
2017-01-29 03:58:16 +00:00
|
|
|
TMultiBlendShader<CTextSupportShader>::Shutdown();
|
2017-06-01 05:34:24 +00:00
|
|
|
TMultiBlendShader<CScanLinesFilter>::Shutdown();
|
|
|
|
TMultiBlendShader<CRandomStaticFilter>::Shutdown();
|
2017-08-14 03:55:06 +00:00
|
|
|
CFluidPlaneShader::Shutdown();
|
2016-04-15 20:42:40 +00:00
|
|
|
}
|
|
|
|
|
2017-02-09 09:23:17 +00:00
|
|
|
boo::IWindow* CMain::GetMainWindow() const
|
|
|
|
{
|
|
|
|
return m_mainWindow;
|
|
|
|
}
|
|
|
|
|
2016-04-15 20:42:40 +00:00
|
|
|
#if MP1_USE_BOO
|
|
|
|
|
2015-11-02 18:45:39 +00:00
|
|
|
int CMain::appMain(boo::IApplication* app)
|
2015-08-27 00:23:46 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
zeus::detectCPU();
|
2016-02-24 03:20:07 +00:00
|
|
|
mainWindow = app->newWindow(_S("Metroid Prime 1 Reimplementation vZygote"), 1);
|
2015-11-02 18:45:39 +00:00
|
|
|
mainWindow->showWindow();
|
2015-08-27 00:23:46 +00:00
|
|
|
TOneStatic<CGameGlobalObjects> globalObjs;
|
|
|
|
InitializeSubsystems();
|
2016-04-15 20:42:40 +00:00
|
|
|
globalObjs->PostInitialize();
|
2015-08-27 00:23:46 +00:00
|
|
|
x70_tweaks.RegisterTweaks();
|
|
|
|
AddWorldPaks();
|
|
|
|
g_TweakManager->ReadFromMemoryCard("AudioTweaks");
|
|
|
|
FillInAssetIDs();
|
2015-08-28 00:11:31 +00:00
|
|
|
TOneStatic<CGameArchitectureSupport> archSupport;
|
2016-02-20 06:45:36 +00:00
|
|
|
mainWindow->setCallback(archSupport.GetAllocSpace());
|
2015-11-02 18:45:39 +00:00
|
|
|
|
|
|
|
boo::IGraphicsCommandQueue* gfxQ = mainWindow->getCommandQueue();
|
2016-02-20 10:26:43 +00:00
|
|
|
boo::SWindowRect windowRect = mainWindow->getWindowFrame();
|
2016-03-30 19:16:01 +00:00
|
|
|
boo::ITextureR* renderTex;
|
|
|
|
boo::GraphicsDataToken data = mainWindow->getMainContextDataFactory()->commitTransaction(
|
|
|
|
[&](boo::IGraphicsDataFactory::Context& ctx) -> bool
|
|
|
|
{
|
|
|
|
renderTex = ctx.newRenderTexture(windowRect.size[0], windowRect.size[1], true, true);
|
|
|
|
return true;
|
|
|
|
});
|
2016-02-20 05:49:47 +00:00
|
|
|
float rgba[4] = { 0.2f, 0.2f, 0.2f, 1.0f};
|
2015-11-02 18:45:39 +00:00
|
|
|
gfxQ->setClearColor(rgba);
|
|
|
|
|
2015-09-17 19:50:43 +00:00
|
|
|
while (!xe8_b24_finished)
|
2015-08-17 05:26:58 +00:00
|
|
|
{
|
2015-09-17 19:50:43 +00:00
|
|
|
xe8_b24_finished = archSupport->Update();
|
2015-11-02 18:45:39 +00:00
|
|
|
|
2016-02-20 10:26:43 +00:00
|
|
|
if (archSupport->isRectDirty())
|
|
|
|
{
|
|
|
|
const boo::SWindowRect& windowRect = archSupport->getWindowRect();
|
|
|
|
gfxQ->resizeRenderTexture(renderTex,
|
|
|
|
windowRect.size[0],
|
|
|
|
windowRect.size[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxQ->setRenderTarget(renderTex);
|
|
|
|
gfxQ->clearTarget();
|
|
|
|
gfxQ->resolveDisplay(renderTex);
|
2015-11-02 18:45:39 +00:00
|
|
|
gfxQ->execute();
|
2016-02-20 12:40:58 +00:00
|
|
|
mainWindow->waitForRetrace();
|
2015-08-17 05:26:58 +00:00
|
|
|
}
|
2015-08-27 00:23:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2015-08-17 05:26:58 +00:00
|
|
|
|
2016-04-15 20:42:40 +00:00
|
|
|
#endif
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|
|
|
|
}
|