mirror of https://github.com/AxioDL/metaforce.git
General: Normalize several headers' include paths
Normalizes the include paths and makes them consistent. Also adds any missing includes relevant to the interface.
This commit is contained in:
parent
8cdf7f3af3
commit
06789d1860
|
@ -1,8 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "GCNTypes.hpp"
|
#include <memory>
|
||||||
#include "Input/CFinalInput.hpp"
|
|
||||||
#include "rstl.hpp"
|
#include "Runtime/GCNTypes.hpp"
|
||||||
|
#include "Runtime/rstl.hpp"
|
||||||
|
#include "Runtime/Input/CFinalInput.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CIOWin;
|
class CIOWin;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
#include "CArchitectureMessage.hpp"
|
#include "Runtime/CArchitectureMessage.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/GCNTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CFactoryMgr.hpp"
|
#include <vector>
|
||||||
|
#include "Runtime/CFactoryMgr.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CDependencyGroup {
|
class CDependencyGroup {
|
||||||
|
|
|
@ -1,13 +1,18 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include <atomic>
|
||||||
#include "athena/FileReader.hpp"
|
|
||||||
|
|
||||||
#include <thread>
|
|
||||||
#include <mutex>
|
|
||||||
#include <condition_variable>
|
#include <condition_variable>
|
||||||
|
#include <memory>
|
||||||
|
#include <mutex>
|
||||||
|
#include <string>
|
||||||
|
#include <thread>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
|
#include "Runtime/GCNTypes.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
|
#include <athena/FileReader.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
enum class ESeekOrigin { Begin = 0, Cur = 1, End = 2 };
|
enum class ESeekOrigin { Begin = 0, Cur = 1, End = 2 };
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include "IOStreams.hpp"
|
#include "Runtime/IFactory.hpp"
|
||||||
#include "IFactory.hpp"
|
#include "Runtime/IOStreams.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
struct SObjectTag;
|
struct SObjectTag;
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include <cstddef>
|
||||||
|
#include <memory>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGameAllocator {
|
class CGameAllocator {
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include <string_view>
|
||||||
#include "IFactory.hpp"
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/IFactory.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGameHintInfo {
|
class CGameHintInfo {
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include "RetroTypes.hpp"
|
#include <vector>
|
||||||
#include "Audio/CAudioSys.hpp"
|
|
||||||
#include "CSaveWorld.hpp"
|
#include "Runtime/CSaveWorld.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
#include "Runtime/Audio/CAudioSys.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
struct CFinalInput;
|
struct CFinalInput;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <utility>
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,18 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include "CBasics.hpp"
|
#include <vector>
|
||||||
#include "CPlayerState.hpp"
|
|
||||||
#include "CGameOptions.hpp"
|
|
||||||
#include "CRelayTracker.hpp"
|
|
||||||
#include "World/CWorldTransManager.hpp"
|
|
||||||
#include "AutoMapper/CMapWorldInfo.hpp"
|
|
||||||
#include "World/CWorld.hpp"
|
|
||||||
#include "DataSpec/DNACommon/DNACommon.hpp"
|
#include "DataSpec/DNACommon/DNACommon.hpp"
|
||||||
|
|
||||||
|
#include "Runtime/CBasics.hpp"
|
||||||
|
#include "Runtime/CGameOptions.hpp"
|
||||||
|
#include "Runtime/CPlayerState.hpp"
|
||||||
|
#include "Runtime/CRelayTracker.hpp"
|
||||||
|
#include "Runtime/AutoMapper/CMapWorldInfo.hpp"
|
||||||
|
#include "Runtime/World/CWorld.hpp"
|
||||||
|
#include "Runtime/World/CWorldTransManager.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSaveWorldMemory;
|
class CSaveWorldMemory;
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <functional>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CArchitectureMessage;
|
class CArchitectureMessage;
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <list>
|
#include <list>
|
||||||
#include "CIOWin.hpp"
|
#include <memory>
|
||||||
#include "rstl.hpp"
|
|
||||||
#include "CArchitectureQueue.hpp"
|
#include "Runtime/CArchitectureQueue.hpp"
|
||||||
|
#include "Runtime/CIOWin.hpp"
|
||||||
|
#include "Runtime/rstl.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CIOWin.hpp"
|
#include "Runtime/CIOWin.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CIOWin.hpp"
|
#include "Runtime/CIOWin.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,23 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CToken.hpp"
|
#include <memory>
|
||||||
#include "World/CWorld.hpp"
|
#include <optional>
|
||||||
#include "CGameHintInfo.hpp"
|
#include <string>
|
||||||
#include "CSaveWorld.hpp"
|
|
||||||
#include "GuiSys/CStringTable.hpp"
|
|
||||||
#include "kabufuda/Card.hpp"
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/CGameHintInfo.hpp"
|
||||||
|
#include "Runtime/CSaveWorld.hpp"
|
||||||
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/rstl.hpp"
|
||||||
|
#include "Runtime/GuiSys/CStringTable.hpp"
|
||||||
|
#include "Runtime/World/CWorld.hpp"
|
||||||
|
|
||||||
|
#include <kabufuda/Card.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CDummyWorld;
|
class CDummyWorld;
|
||||||
class CStringTable;
|
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
class CStringTable;
|
||||||
|
|
||||||
class CSaveWorldMemory {
|
class CSaveWorldMemory {
|
||||||
friend class CMemoryCardSys;
|
friend class CMemoryCardSys;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "World/CEntity.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/World/CEntity.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include "CStringExtras.hpp"
|
#include "Runtime/CDvdFile.hpp"
|
||||||
#include "CDvdFile.hpp"
|
#include "Runtime/CDvdRequest.hpp"
|
||||||
#include "CDvdRequest.hpp"
|
#include "Runtime/CFactoryMgr.hpp"
|
||||||
#include "CFactoryMgr.hpp"
|
#include "Runtime/CStringExtras.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include <memory>
|
||||||
#include "CToken.hpp"
|
#include <vector>
|
||||||
#include "Graphics/CTexture.hpp"
|
|
||||||
#include "Graphics/Shaders/CEnergyBarShader.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/Graphics/CTexture.hpp"
|
||||||
|
#include "Runtime/Graphics/Shaders/CEnergyBarShader.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,8 +1,16 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "CToken.hpp"
|
#include "Runtime/rstl.hpp"
|
||||||
#include "Graphics/Shaders/CTexturedQuadFilter.hpp"
|
#include "Runtime/Graphics/Shaders/CTexturedQuadFilter.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CVector2f.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
|
namespace zeus {
|
||||||
|
class CColor;
|
||||||
|
}
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiGroup.hpp"
|
#include <memory>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/GCNTypes.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiGroup.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,16 +1,20 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include <vector>
|
||||||
#include "zeus/CQuaternion.hpp"
|
|
||||||
#include "CToken.hpp"
|
#include "Runtime/CPlayerState.hpp"
|
||||||
#include "Graphics/CLineRenderer.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "CPlayerState.hpp"
|
#include "Runtime/Graphics/CLineRenderer.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CQuaternion.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CActor;
|
class CActor;
|
||||||
class CModel;
|
class CModel;
|
||||||
class CStateManager;
|
|
||||||
class CScriptGrapplePoint;
|
class CScriptGrapplePoint;
|
||||||
|
class CStateManager;
|
||||||
|
|
||||||
class CTargetReticleRenderState {
|
class CTargetReticleRenderState {
|
||||||
TUniqueId x0_target;
|
TUniqueId x0_target;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CIOWin.hpp"
|
#include "Runtime/CIOWin.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CGuiTextSupport.hpp"
|
#include "Runtime/GuiSys/CGuiTextSupport.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CIOWin.hpp"
|
#include "Runtime/CIOWin.hpp"
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "CToken.hpp"
|
|
||||||
#include "zeus/CVector2f.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CVector2f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CTexture;
|
class CTexture;
|
||||||
|
|
|
@ -1,18 +1,21 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiTextSupport.hpp"
|
#include <list>
|
||||||
#include "CSaveableState.hpp"
|
#include <vector>
|
||||||
#include "CDrawStringOptions.hpp"
|
|
||||||
|
#include "Runtime/GuiSys/CDrawStringOptions.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiTextSupport.hpp"
|
||||||
|
#include "Runtime/GuiSys/CSaveableState.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CLineInstruction;
|
|
||||||
class CBlockInstruction;
|
class CBlockInstruction;
|
||||||
|
class CLineInstruction;
|
||||||
|
|
||||||
class CFontRenderState : public CSaveableState {
|
class CFontRenderState : public CSaveableState {
|
||||||
friend class CLineInstruction;
|
|
||||||
friend class CBlockInstruction;
|
friend class CBlockInstruction;
|
||||||
friend class CTextInstruction;
|
|
||||||
friend class CImageInstruction;
|
friend class CImageInstruction;
|
||||||
|
friend class CLineInstruction;
|
||||||
|
friend class CTextInstruction;
|
||||||
friend class CWordInstruction;
|
friend class CWordInstruction;
|
||||||
|
|
||||||
CBlockInstruction* x88_curBlock = nullptr;
|
CBlockInstruction* x88_curBlock = nullptr;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
#include "CGuiCamera.hpp"
|
#include "Runtime/GuiSys/CGuiCamera.hpp"
|
||||||
#include "CGuiFrame.hpp"
|
|
||||||
#include "Graphics/CGraphics.hpp"
|
#include "Runtime/Graphics/CGraphics.hpp"
|
||||||
#include "CGuiWidgetDrawParms.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidgetDrawParms.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include <memory>
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "CGuiCompoundWidget.hpp"
|
#include "Runtime/GuiSys/CGuiCompoundWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
#include "CGuiFrame.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
#include "CGuiWidget.hpp"
|
|
||||||
#include "CGuiSys.hpp"
|
#include "Runtime/CSimplePool.hpp"
|
||||||
#include "CGuiHeadWidget.hpp"
|
#include "Runtime/Graphics/CGraphics.hpp"
|
||||||
#include "CGuiLight.hpp"
|
#include "Runtime/Graphics/CModel.hpp"
|
||||||
#include "CGuiCamera.hpp"
|
#include "Runtime/GuiSys/CGuiCamera.hpp"
|
||||||
#include "Graphics/CGraphics.hpp"
|
#include "Runtime/GuiSys/CGuiHeadWidget.hpp"
|
||||||
#include "Input/CFinalInput.hpp"
|
#include "Runtime/GuiSys/CGuiLight.hpp"
|
||||||
#include "zeus/CColor.hpp"
|
#include "Runtime/GuiSys/CGuiSys.hpp"
|
||||||
#include "CSimplePool.hpp"
|
#include "Runtime/GuiSys/CGuiTableGroup.hpp"
|
||||||
#include "Graphics/CModel.hpp"
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
#include "CGuiWidgetDrawParms.hpp"
|
#include "Runtime/GuiSys/CGuiWidgetDrawParms.hpp"
|
||||||
#include "CGuiTableGroup.hpp"
|
#include "Runtime/Input/CFinalInput.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,27 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
|
||||||
#include "CGuiHeadWidget.hpp"
|
|
||||||
#include "CGuiWidgetIdDB.hpp"
|
|
||||||
#include "IObj.hpp"
|
|
||||||
#include "boo/IWindow.hpp"
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
#include <functional>
|
||||||
|
#include <memory>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/IObj.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiHeadWidget.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidgetIdDB.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
|
#include <boo/IWindow.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
class CBooModel;
|
||||||
|
class CGuiCamera;
|
||||||
|
class CGuiLight;
|
||||||
class CGuiSys;
|
class CGuiSys;
|
||||||
class CLight;
|
class CLight;
|
||||||
class CGuiCamera;
|
|
||||||
struct CFinalInput;
|
|
||||||
class CGuiLight;
|
|
||||||
class CVParamTransfer;
|
|
||||||
class CObjectReference;
|
class CObjectReference;
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
class CBooModel;
|
class CVParamTransfer;
|
||||||
|
struct CFinalInput;
|
||||||
|
|
||||||
class CGuiFrame {
|
class CGuiFrame {
|
||||||
friend class CGuiSys;
|
friend class CGuiSys;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "CGuiGroup.hpp"
|
#include "Runtime/GuiSys/CGuiGroup.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiCompoundWidget.hpp"
|
#include <memory>
|
||||||
|
#include "Runtime/GuiSys/CGuiCompoundWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "CGuiHeadWidget.hpp"
|
#include "Runtime/GuiSys/CGuiHeadWidget.hpp"
|
||||||
#include "CGuiFrame.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "CGuiLight.hpp"
|
#include "Runtime/GuiSys/CGuiLight.hpp"
|
||||||
#include "CGuiFrame.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include <memory>
|
||||||
#include "Graphics/CLight.hpp"
|
|
||||||
|
#include "Runtime/Graphics/CLight.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
#include "CGuiModel.hpp"
|
#include "Runtime/GuiSys/CGuiModel.hpp"
|
||||||
#include "CGuiFrame.hpp"
|
|
||||||
#include "CGuiSys.hpp"
|
#include "Runtime/CSimplePool.hpp"
|
||||||
#include "CSimplePool.hpp"
|
#include "Runtime/Graphics/CGraphics.hpp"
|
||||||
#include "CGuiWidgetDrawParms.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
#include "Graphics/CGraphics.hpp"
|
#include "Runtime/GuiSys/CGuiSys.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidgetDrawParms.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include <memory>
|
||||||
#include "CToken.hpp"
|
|
||||||
#include "Graphics/CModel.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/Graphics/CModel.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
#include "CGuiObject.hpp"
|
#include "Runtime/GuiSys/CGuiObject.hpp"
|
||||||
#include "CGuiWidgetDrawParms.hpp"
|
|
||||||
#include "Graphics/CTexture.hpp"
|
#include "Runtime/Graphics/CTexture.hpp"
|
||||||
#include "CGuiWidget.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
#include "CGuiFrame.hpp"
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidgetDrawParms.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "zeus/CVector3f.hpp"
|
|
||||||
#include "zeus/CQuaternion.hpp"
|
#include <zeus/CQuaternion.hpp>
|
||||||
#include "zeus/CTransform.hpp"
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
struct CGuiWidgetDrawParms;
|
struct CGuiWidgetDrawParms;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "CGuiPane.hpp"
|
#include "Runtime/GuiSys/CGuiPane.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiWidget.hpp"
|
#include <memory>
|
||||||
#include "specter/View.hpp"
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
|
||||||
|
#include <specter/View.hpp>
|
||||||
|
|
||||||
|
#include <zeus/CVector2f.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#include "CGuiSliderGroup.hpp"
|
#include "Runtime/GuiSys/CGuiSliderGroup.hpp"
|
||||||
#include "Input/CFinalInput.hpp"
|
|
||||||
#include "CGuiModel.hpp"
|
#include "Runtime/GuiSys/CGuiModel.hpp"
|
||||||
|
#include "Runtime/Input/CFinalInput.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiCompoundWidget.hpp"
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
#include "Runtime/GuiSys/CGuiCompoundWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,21 +1,22 @@
|
||||||
#include "CGuiSys.hpp"
|
#include "Runtime/GuiSys/CGuiSys.hpp"
|
||||||
#include "CGuiWidget.hpp"
|
|
||||||
#include "CGuiHeadWidget.hpp"
|
#include "Runtime/CSimplePool.hpp"
|
||||||
#include "CGuiLight.hpp"
|
#include "Runtime/GuiSys/CAuiEnergyBarT01.hpp"
|
||||||
#include "CGuiCamera.hpp"
|
#include "Runtime/GuiSys/CAuiImagePane.hpp"
|
||||||
#include "CGuiGroup.hpp"
|
#include "Runtime/GuiSys/CAuiMeter.hpp"
|
||||||
#include "CGuiPane.hpp"
|
#include "Runtime/GuiSys/CGuiCamera.hpp"
|
||||||
#include "CAuiImagePane.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
#include "CAuiMeter.hpp"
|
#include "Runtime/GuiSys/CGuiGroup.hpp"
|
||||||
#include "CGuiModel.hpp"
|
#include "Runtime/GuiSys/CGuiHeadWidget.hpp"
|
||||||
#include "CGuiTableGroup.hpp"
|
#include "Runtime/GuiSys/CGuiLight.hpp"
|
||||||
#include "CGuiSliderGroup.hpp"
|
#include "Runtime/GuiSys/CGuiModel.hpp"
|
||||||
#include "CGuiTextPane.hpp"
|
#include "Runtime/GuiSys/CGuiPane.hpp"
|
||||||
#include "CAuiEnergyBarT01.hpp"
|
#include "Runtime/GuiSys/CGuiSliderGroup.hpp"
|
||||||
#include "CTextParser.hpp"
|
#include "Runtime/GuiSys/CGuiTableGroup.hpp"
|
||||||
#include "CSimplePool.hpp"
|
#include "Runtime/GuiSys/CGuiTextPane.hpp"
|
||||||
#include "CTextExecuteBuffer.hpp"
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
#include "CGuiFrame.hpp"
|
#include "Runtime/GuiSys/CTextExecuteBuffer.hpp"
|
||||||
|
#include "Runtime/GuiSys/CTextParser.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,25 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "hecl/hecl.hpp"
|
#include <memory>
|
||||||
#include <unordered_map>
|
|
||||||
#include <vector>
|
|
||||||
#include <stack>
|
#include <stack>
|
||||||
#include "CSaveableState.hpp"
|
#include <unordered_set>
|
||||||
#include "IOStreams.hpp"
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/IOStreams.hpp"
|
||||||
|
#include "Runtime/GuiSys/CSaveableState.hpp"
|
||||||
|
|
||||||
|
#include <hecl/hecl.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiObject;
|
|
||||||
class CVParamTransfer;
|
|
||||||
struct SObjectTag;
|
|
||||||
class IFactory;
|
|
||||||
class CSimplePool;
|
|
||||||
class CGuiWidget;
|
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
class CTextParser;
|
class CGuiObject;
|
||||||
|
class CGuiWidget;
|
||||||
|
class CSimplePool;
|
||||||
class CTextExecuteBuffer;
|
class CTextExecuteBuffer;
|
||||||
|
class CTextParser;
|
||||||
|
class CVParamTransfer;
|
||||||
|
class IFactory;
|
||||||
|
struct SObjectTag;
|
||||||
|
|
||||||
class CGuiSys {
|
class CGuiSys {
|
||||||
friend class CGuiFrame;
|
friend class CGuiFrame;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "CGuiTableGroup.hpp"
|
#include "Runtime/GuiSys/CGuiTableGroup.hpp"
|
||||||
#include "Input/CFinalInput.hpp"
|
#include "Runtime/Input/CFinalInput.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiCompoundWidget.hpp"
|
#include <functional>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
#include "Runtime/GuiSys/CGuiCompoundWidget.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
#include "CGuiTextPane.hpp"
|
#include "Runtime/GuiSys/CGuiTextPane.hpp"
|
||||||
#include "CFontImageDef.hpp"
|
|
||||||
#include "CGuiFrame.hpp"
|
#include "Runtime/Graphics/CGraphics.hpp"
|
||||||
#include "CGuiSys.hpp"
|
#include "Runtime/Graphics/CGraphicsPalette.hpp"
|
||||||
#include "CGuiWidgetDrawParms.hpp"
|
#include "Runtime/GuiSys/CFontImageDef.hpp"
|
||||||
#include "Graphics/CGraphics.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
#include "Graphics/CGraphicsPalette.hpp"
|
#include "Runtime/GuiSys/CGuiSys.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidgetDrawParms.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CGuiPane.hpp"
|
#include <memory>
|
||||||
#include "CGuiTextSupport.hpp"
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/GuiSys/CGuiPane.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiTextSupport.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
#include "CGuiTextSupport.hpp"
|
#include "Runtime/GuiSys/CGuiTextSupport.hpp"
|
||||||
#include "CSimplePool.hpp"
|
|
||||||
#include "CFontImageDef.hpp"
|
#include "Runtime/CSimplePool.hpp"
|
||||||
#include "CGuiSys.hpp"
|
#include "Runtime/Graphics/CGraphics.hpp"
|
||||||
#include "CTextExecuteBuffer.hpp"
|
#include "Runtime/Graphics/CGraphicsPalette.hpp"
|
||||||
#include "CTextParser.hpp"
|
#include "Runtime/GuiSys/CFontImageDef.hpp"
|
||||||
#include "Graphics/CGraphicsPalette.hpp"
|
#include "Runtime/GuiSys/CGuiSys.hpp"
|
||||||
#include "Graphics/CGraphics.hpp"
|
#include "Runtime/GuiSys/CRasterFont.hpp"
|
||||||
#include "GuiSys/CRasterFont.hpp"
|
#include "Runtime/GuiSys/CTextExecuteBuffer.hpp"
|
||||||
|
#include "Runtime/GuiSys/CTextParser.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,23 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "zeus/CColor.hpp"
|
#include <list>
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include "CToken.hpp"
|
|
||||||
#include "CTextRenderBuffer.hpp"
|
|
||||||
#include "CGuiWidget.hpp"
|
|
||||||
#include "CSaveWorld.hpp"
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/CSaveWorld.hpp"
|
||||||
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
|
#include "Runtime/GuiSys/CTextRenderBuffer.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
|
||||||
class CRasterFont;
|
class CRasterFont;
|
||||||
class CTextRenderBuffer;
|
class CSimplePool;
|
||||||
class CTextExecuteBuffer;
|
class CTextExecuteBuffer;
|
||||||
|
class CTextRenderBuffer;
|
||||||
|
|
||||||
enum class EJustification { Left = 0, Center, Right, Full, NLeft, NCenter, NRight, LeftMono, CenterMono, RightMono };
|
enum class EJustification { Left = 0, Center, Right, Full, NLeft, NCenter, NRight, LeftMono, CenterMono, RightMono };
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#include "CGuiWidget.hpp"
|
#include "Runtime/GuiSys/CGuiWidget.hpp"
|
||||||
#include "CGuiFrame.hpp"
|
#include "Runtime/GuiSys/CGuiFrame.hpp"
|
||||||
|
|
||||||
|
#include <logvisor/logvisor.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
static logvisor::Module Log("urde::CGuiWidget");
|
static logvisor::Module Log("urde::CGuiWidget");
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "IOStreams.hpp"
|
#include <memory>
|
||||||
#include "CGuiObject.hpp"
|
#include <optional>
|
||||||
#include "zeus/CColor.hpp"
|
#include <string>
|
||||||
#include "boo/IWindow.hpp"
|
|
||||||
|
#include "Runtime/GCNTypes.hpp"
|
||||||
|
#include "Runtime/IOStreams.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiObject.hpp"
|
||||||
|
|
||||||
|
#include <boo/IWindow.hpp>
|
||||||
|
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "CGuiWidgetDrawParms.hpp"
|
#include "Runtime/GuiSys/CGuiWidgetDrawParms.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
const CGuiWidgetDrawParms CGuiWidgetDrawParms::Default = {};
|
const CGuiWidgetDrawParms CGuiWidgetDrawParms::Default = {};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "zeus/CVector3f.hpp"
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "CGuiWidgetIdDB.hpp"
|
#include "Runtime/GuiSys/CGuiWidgetIdDB.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/GCNTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "rstl.hpp"
|
#include "Runtime/rstl.hpp"
|
||||||
#include "zeus/CVector3f.hpp"
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiFrame;
|
|
||||||
class CGuiWidget;
|
|
||||||
class CGuiCamera;
|
class CGuiCamera;
|
||||||
|
class CGuiFrame;
|
||||||
class CGuiModel;
|
class CGuiModel;
|
||||||
class CGuiTextPane;
|
class CGuiTextPane;
|
||||||
|
class CGuiWidget;
|
||||||
|
|
||||||
class CHudBallInterface {
|
class CHudBallInterface {
|
||||||
CGuiCamera* x0_camera;
|
CGuiCamera* x0_camera;
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "zeus/CVector3f.hpp"
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiFrame;
|
|
||||||
class CGuiWidget;
|
|
||||||
class CAuiEnergyBarT01;
|
class CAuiEnergyBarT01;
|
||||||
|
class CGuiFrame;
|
||||||
class CGuiTextPane;
|
class CGuiTextPane;
|
||||||
|
class CGuiWidget;
|
||||||
|
|
||||||
class CHudBossEnergyInterface {
|
class CHudBossEnergyInterface {
|
||||||
float x0_alpha;
|
float x0_alpha;
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "zeus/CMatrix3f.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "zeus/CQuaternion.hpp"
|
#include "Runtime/GuiSys/CScanDisplay.hpp"
|
||||||
#include "zeus/CVector3f.hpp"
|
#include "Runtime/World/CPlayer.hpp"
|
||||||
#include "CToken.hpp"
|
|
||||||
#include "CScanDisplay.hpp"
|
#include <zeus/CMatrix3f.hpp>
|
||||||
#include "World/CPlayer.hpp"
|
#include <zeus/CQuaternion.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CHudInterface.hpp"
|
#include "Runtime/GuiSys/CHudInterface.hpp"
|
||||||
#include "zeus/CVector3f.hpp"
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiFrame;
|
|
||||||
class CGuiWidget;
|
|
||||||
class CGuiTextPane;
|
|
||||||
class CAuiMeter;
|
|
||||||
class CAuiEnergyBarT01;
|
class CAuiEnergyBarT01;
|
||||||
|
class CAuiMeter;
|
||||||
|
class CGuiFrame;
|
||||||
|
class CGuiTextPane;
|
||||||
|
class CGuiWidget;
|
||||||
|
|
||||||
class CHudEnergyInterface {
|
class CHudEnergyInterface {
|
||||||
EHudType x0_hudType;
|
EHudType x0_hudType;
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CHudInterface.hpp"
|
#include "Runtime/GuiSys/CHudInterface.hpp"
|
||||||
#include "zeus/CTransform.hpp"
|
#include <zeus/CTransform.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
class CGuiWidget;
|
|
||||||
class CGuiModel;
|
class CGuiModel;
|
||||||
|
class CGuiWidget;
|
||||||
|
|
||||||
class IFreeLookInterface {
|
class IFreeLookInterface {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "zeus/CMatrix3f.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "RetroTypes.hpp"
|
#include <zeus/CMatrix3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
class CGuiCamera;
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
class CGuiWidget;
|
class CGuiWidget;
|
||||||
class CGuiCamera;
|
|
||||||
|
|
||||||
class CHudHelmetInterface {
|
class CHudHelmetInterface {
|
||||||
zeus::CMatrix3f x0_hudLagRotation;
|
zeus::CMatrix3f x0_hudLagRotation;
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CHudInterface.hpp"
|
#include "Runtime/GuiSys/CHudInterface.hpp"
|
||||||
#include "zeus/CTransform.hpp"
|
#include <zeus/CTransform.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CStateManager;
|
|
||||||
class CGuiFrame;
|
|
||||||
class CGuiWidget;
|
|
||||||
class CGuiTextPane;
|
|
||||||
class CAuiEnergyBarT01;
|
class CAuiEnergyBarT01;
|
||||||
|
class CGuiFrame;
|
||||||
class CGuiModel;
|
class CGuiModel;
|
||||||
|
class CGuiTextPane;
|
||||||
|
class CGuiWidget;
|
||||||
|
class CStateManager;
|
||||||
|
|
||||||
class CHudMissileInterface {
|
class CHudMissileInterface {
|
||||||
enum class EInventoryStatus { Normal, Warning, Depleted };
|
enum class EInventoryStatus { Normal, Warning, Depleted };
|
||||||
|
|
|
@ -1,13 +1,18 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CToken.hpp"
|
#include <vector>
|
||||||
#include "Graphics/CTexture.hpp"
|
|
||||||
#include "Graphics/Shaders/CRadarPaintShader.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/Graphics/CTexture.hpp"
|
||||||
|
#include "Runtime/Graphics/Shaders/CRadarPaintShader.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
class CGuiCamera;
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
class CGuiWidget;
|
class CGuiWidget;
|
||||||
class CGuiCamera;
|
|
||||||
class CStateManager;
|
class CStateManager;
|
||||||
|
|
||||||
class CHudRadarInterface {
|
class CHudRadarInterface {
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CHudInterface.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/GuiSys/CHudInterface.hpp"
|
||||||
#include "zeus/CTransform.hpp"
|
#include <zeus/CTransform.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
class CAuiEnergyBarT01;
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
class CGuiWidget;
|
|
||||||
class CGuiModel;
|
class CGuiModel;
|
||||||
class CGuiTextPane;
|
class CGuiTextPane;
|
||||||
class CAuiEnergyBarT01;
|
class CGuiWidget;
|
||||||
|
|
||||||
class CHudThreatInterface {
|
class CHudThreatInterface {
|
||||||
enum class EThreatStatus { Normal, Warning, Damage };
|
enum class EThreatStatus { Normal, Warning, Damage };
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include <cfloat>
|
#include <cfloat>
|
||||||
|
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
#include "Runtime/rstl.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGuiFrame;
|
class CGuiFrame;
|
||||||
class CGuiWidget;
|
|
||||||
class CGuiTextPane;
|
|
||||||
class CGuiModel;
|
class CGuiModel;
|
||||||
|
class CGuiTextPane;
|
||||||
|
class CGuiWidget;
|
||||||
|
|
||||||
class CHudVisorBeamMenu {
|
class CHudVisorBeamMenu {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CToken.hpp"
|
|
||||||
#include "CGuiTextSupport.hpp"
|
|
||||||
#include "CFontImageDef.hpp"
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/GuiSys/CFontImageDef.hpp"
|
||||||
|
#include "Runtime/GuiSys/CGuiTextSupport.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
class CFontImageDef;
|
||||||
class CFontRenderState;
|
class CFontRenderState;
|
||||||
class CTextRenderBuffer;
|
class CTextRenderBuffer;
|
||||||
class CFontImageDef;
|
|
||||||
|
|
||||||
class CInstruction {
|
class CInstruction {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "CToken.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "Graphics/CModel.hpp"
|
#include "Runtime/Graphics/CModel.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CStateManager;
|
class CStateManager;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../RetroTypes.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CKeyboardMouseController.hpp"
|
#include "Runtime/Input/CKeyboardMouseController.hpp"
|
||||||
|
|
||||||
#include <boo/inputdev/DolphinSmashAdapter.hpp>
|
#include <boo/inputdev/DolphinSmashAdapter.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
|
#include "Runtime/Input/CFinalInput.hpp"
|
||||||
|
#include "Runtime/Input/CKeyboardMouseController.hpp"
|
||||||
|
|
||||||
#include <boo/boo.hpp>
|
#include <boo/boo.hpp>
|
||||||
#include "CFinalInput.hpp"
|
|
||||||
#include "CKeyboardMouseController.hpp"
|
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CArchitectureQueue;
|
class CArchitectureQueue;
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "boo/IWindow.hpp"
|
#include <type_traits>
|
||||||
|
|
||||||
|
#include <boo/IWindow.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
struct CFinalInput;
|
struct CFinalInput;
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "IElement.hpp"
|
#include <memory>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/GCNTypes.hpp"
|
||||||
|
#include "Runtime/Particle/IElement.hpp"
|
||||||
|
|
||||||
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Color_Elements */
|
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Color_Elements */
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/CRandom16.hpp"
|
||||||
#include "CToken.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "zeus/CTransform.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CDecalDescription.hpp"
|
#include "Runtime/Particle/CDecalDescription.hpp"
|
||||||
#include "CRandom16.hpp"
|
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
struct SQuadDescr;
|
struct SQuadDescr;
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/CFactoryMgr.hpp"
|
||||||
#include "CFactoryMgr.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "IObj.hpp"
|
#include "Runtime/IObj.hpp"
|
||||||
#include "CToken.hpp"
|
#include "Runtime/IOStreams.hpp"
|
||||||
#include "IOStreams.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CDecalDescription.hpp"
|
#include "Runtime/Particle/CDecalDescription.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSimplePool;
|
class CSimplePool;
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CRealElement.hpp"
|
#include <memory>
|
||||||
#include "CIntElement.hpp"
|
|
||||||
#include "CVectorElement.hpp"
|
#include "Runtime/Particle/CColorElement.hpp"
|
||||||
#include "CColorElement.hpp"
|
#include "Runtime/Particle/CIntElement.hpp"
|
||||||
#include "CUVElement.hpp"
|
#include "Runtime/Particle/CParticleDataFactory.hpp"
|
||||||
#include "CParticleDataFactory.hpp"
|
#include "Runtime/Particle/CRealElement.hpp"
|
||||||
|
#include "Runtime/Particle/CUVElement.hpp"
|
||||||
|
#include "Runtime/Particle/CVectorElement.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include "rstl.hpp"
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include "CToken.hpp"
|
|
||||||
#include "CDecal.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "zeus/CFrustum.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
#include "Runtime/rstl.hpp"
|
||||||
|
#include "Runtime/Particle/CDecal.hpp"
|
||||||
|
#include <zeus/CFrustum.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CStateManager;
|
class CStateManager;
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CParticleDataFactory.hpp"
|
#include <memory>
|
||||||
#include "CRealElement.hpp"
|
|
||||||
#include "CIntElement.hpp"
|
#include "Runtime/Particle/CColorElement.hpp"
|
||||||
#include "CVectorElement.hpp"
|
#include "Runtime/Particle/CIntElement.hpp"
|
||||||
#include "CModVectorElement.hpp"
|
#include "Runtime/Particle/CModVectorElement.hpp"
|
||||||
#include "CColorElement.hpp"
|
#include "Runtime/Particle/CParticleDataFactory.hpp"
|
||||||
#include "CUVElement.hpp"
|
#include "Runtime/Particle/CRealElement.hpp"
|
||||||
|
#include "Runtime/Particle/CUVElement.hpp"
|
||||||
|
#include "Runtime/Particle/CVectorElement.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CElectricDescription {
|
class CElectricDescription {
|
||||||
|
|
|
@ -1,18 +1,22 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include <array>
|
||||||
#include "zeus/CTransform.hpp"
|
#include <vector>
|
||||||
#include "zeus/CVector3f.hpp"
|
|
||||||
#include "zeus/CColor.hpp"
|
#include "Runtime/CRandom16.hpp"
|
||||||
#include "zeus/CAABox.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "CToken.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "Graphics/CLight.hpp"
|
#include "Runtime/Graphics/CGraphics.hpp"
|
||||||
#include "Graphics/CGraphics.hpp"
|
#include "Runtime/Graphics/CLight.hpp"
|
||||||
#include "CRandom16.hpp"
|
#include "Runtime/Graphics/CLineRenderer.hpp"
|
||||||
#include "CParticleGen.hpp"
|
#include "Runtime/Graphics/Shaders/CElementGenShaders.hpp"
|
||||||
#include "Graphics/Shaders/CElementGenShaders.hpp"
|
#include "Runtime/Particle/CGenDescription.hpp"
|
||||||
#include "Graphics/CLineRenderer.hpp"
|
#include "Runtime/Particle/CParticleGen.hpp"
|
||||||
#include "Particle/CGenDescription.hpp"
|
|
||||||
|
#include <zeus/CAABox.hpp>
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CWarp;
|
class CWarp;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "IElement.hpp"
|
#include <memory>
|
||||||
|
#include "Runtime/Particle/IElement.hpp"
|
||||||
|
|
||||||
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Emitter_Elements */
|
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Emitter_Elements */
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CWarp.hpp"
|
#include "Runtime/rstl.hpp"
|
||||||
|
#include "Runtime/Particle/CWarp.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CAABox.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CStateManager;
|
class CStateManager;
|
||||||
|
|
|
@ -1,15 +1,16 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include "CRealElement.hpp"
|
|
||||||
#include "CIntElement.hpp"
|
#include "Runtime/Particle/CColorElement.hpp"
|
||||||
#include "CVectorElement.hpp"
|
#include "Runtime/Particle/CEmitterElement.hpp"
|
||||||
#include "CModVectorElement.hpp"
|
#include "Runtime/Particle/CIntElement.hpp"
|
||||||
#include "CColorElement.hpp"
|
#include "Runtime/Particle/CModVectorElement.hpp"
|
||||||
#include "CUVElement.hpp"
|
#include "Runtime/Particle/CParticleDataFactory.hpp"
|
||||||
#include "CEmitterElement.hpp"
|
#include "Runtime/Particle/CRealElement.hpp"
|
||||||
#include "CSpawnSystemKeyframeData.hpp"
|
#include "Runtime/Particle/CSpawnSystemKeyframeData.hpp"
|
||||||
#include "CParticleDataFactory.hpp"
|
#include "Runtime/Particle/CUVElement.hpp"
|
||||||
|
#include "Runtime/Particle/CVectorElement.hpp"
|
||||||
|
|
||||||
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/PART_(File_Format) */
|
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/PART_(File_Format) */
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "IElement.hpp"
|
#include <memory>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/Particle/IElement.hpp"
|
||||||
|
|
||||||
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Int_Elements */
|
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Int_Elements */
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "IElement.hpp"
|
#include <memory>
|
||||||
|
#include "Runtime/Particle/IElement.hpp"
|
||||||
|
|
||||||
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Mod_Vector_Elements */
|
/* Documentation at: http://www.metroid2002.com/retromodding/wiki/Particle_Script#Mod_Vector_Elements */
|
||||||
|
|
||||||
|
|
|
@ -1,25 +1,28 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include <memory>
|
||||||
#include "CFactoryMgr.hpp"
|
#include <vector>
|
||||||
#include "IObj.hpp"
|
|
||||||
#include "CToken.hpp"
|
#include "Runtime/CFactoryMgr.hpp"
|
||||||
#include "IOStreams.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/IOStreams.hpp"
|
||||||
|
#include "Runtime/IObj.hpp"
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CGenDescription;
|
|
||||||
class CSwooshDescription;
|
|
||||||
class CElectricDescription;
|
|
||||||
class CSimplePool;
|
|
||||||
class CVParamTransfer;
|
|
||||||
class CModel;
|
|
||||||
class CUVElement;
|
|
||||||
class CColorElement;
|
class CColorElement;
|
||||||
class CModVectorElement;
|
class CElectricDescription;
|
||||||
class CEmitterElement;
|
class CEmitterElement;
|
||||||
class CVectorElement;
|
class CGenDescription;
|
||||||
class CRealElement;
|
|
||||||
class CIntElement;
|
class CIntElement;
|
||||||
|
class CModVectorElement;
|
||||||
|
class CModel;
|
||||||
|
class CRealElement;
|
||||||
|
class CSimplePool;
|
||||||
|
class CSwooshDescription;
|
||||||
|
class CUVElement;
|
||||||
|
class CVParamTransfer;
|
||||||
|
class CVectorElement;
|
||||||
|
|
||||||
struct SParticleModel {
|
struct SParticleModel {
|
||||||
TLockedToken<CModel> m_token;
|
TLockedToken<CModel> m_token;
|
||||||
|
|
|
@ -1,14 +1,25 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CParticleGen.hpp"
|
#include <list>
|
||||||
#include "CToken.hpp"
|
#include <memory>
|
||||||
#include "CRandom16.hpp"
|
#include <optional>
|
||||||
#include "Graphics/CLineRenderer.hpp"
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/CRandom16.hpp"
|
||||||
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/rstl.hpp"
|
||||||
|
#include "Runtime/Graphics/CLineRenderer.hpp"
|
||||||
|
#include "Runtime/Particle/CParticleGen.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CAABox.hpp>
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CElectricDescription;
|
class CElectricDescription;
|
||||||
class CParticleSwoosh;
|
|
||||||
class CElementGen;
|
class CElementGen;
|
||||||
|
class CParticleSwoosh;
|
||||||
|
|
||||||
class CParticleElectric : public CParticleGen {
|
class CParticleElectric : public CParticleGen {
|
||||||
static u16 g_GlobalSeed;
|
static u16 g_GlobalSeed;
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/CFactoryMgr.hpp"
|
||||||
#include "CFactoryMgr.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "IObj.hpp"
|
#include "Runtime/IOStreams.hpp"
|
||||||
#include "CToken.hpp"
|
#include "Runtime/IObj.hpp"
|
||||||
#include "IOStreams.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CElectricDescription;
|
class CElectricDescription;
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include "Graphics/CLight.hpp"
|
|
||||||
#include "zeus/CColor.hpp"
|
|
||||||
#include "zeus/CVector3f.hpp"
|
|
||||||
#include "zeus/CTransform.hpp"
|
|
||||||
#include "zeus/CAABox.hpp"
|
|
||||||
#include <list>
|
#include <list>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
#include "Runtime/Graphics/CLight.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CAABox.hpp>
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CWarp;
|
class CWarp;
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "zeus/CVector3f.hpp"
|
|
||||||
#include "zeus/CVector4f.hpp"
|
|
||||||
#include "zeus/CMatrix4f.hpp"
|
|
||||||
#include "zeus/CColor.hpp"
|
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
#include <zeus/CMatrix4f.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
#include <zeus/CVector4f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CElementGen;
|
class CElementGen;
|
||||||
|
|
|
@ -1,13 +1,21 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CParticleGen.hpp"
|
#include <memory>
|
||||||
#include "CToken.hpp"
|
#include <vector>
|
||||||
#include "CRandom16.hpp"
|
|
||||||
#include "Graphics/CTexture.hpp"
|
|
||||||
#include "Graphics/CLineRenderer.hpp"
|
|
||||||
#include "CUVElement.hpp"
|
|
||||||
#include "DataSpec/DNACommon/GX.hpp"
|
#include "DataSpec/DNACommon/GX.hpp"
|
||||||
#include "Graphics/Shaders/CParticleSwooshShaders.hpp"
|
|
||||||
|
#include "Runtime/CRandom16.hpp"
|
||||||
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/Graphics/CLineRenderer.hpp"
|
||||||
|
#include "Runtime/Graphics/CTexture.hpp"
|
||||||
|
#include "Runtime/Graphics/Shaders/CParticleSwooshShaders.hpp"
|
||||||
|
#include "Runtime/Particle/CParticleGen.hpp"
|
||||||
|
#include "Runtime/Particle/CUVElement.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CColor.hpp>
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSwooshDescription;
|
class CSwooshDescription;
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/CFactoryMgr.hpp"
|
||||||
#include "CFactoryMgr.hpp"
|
#include "Runtime/CToken.hpp"
|
||||||
#include "IObj.hpp"
|
#include "Runtime/IOStreams.hpp"
|
||||||
#include "CToken.hpp"
|
#include "Runtime/IObj.hpp"
|
||||||
#include "IOStreams.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CSwooshDescription;
|
class CSwooshDescription;
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CPlayerState.hpp"
|
#include <memory>
|
||||||
#include "RetroTypes.hpp"
|
|
||||||
#include "CStateManager.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "CGunWeapon.hpp"
|
#include "Runtime/rstl.hpp"
|
||||||
#include "CWeapon.hpp"
|
#include "Runtime/CPlayerState.hpp"
|
||||||
|
#include "Runtime/CStateManager.hpp"
|
||||||
|
#include "Runtime/Weapon/CGunWeapon.hpp"
|
||||||
|
#include "Runtime/Weapon/CWeapon.hpp"
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RetroTypes.hpp"
|
#include "Runtime/IOStreams.hpp"
|
||||||
#include "IOStreams.hpp"
|
#include "Runtime/RetroTypes.hpp"
|
||||||
#include "zeus/CColor.hpp"
|
#include <zeus/CColor.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CBeamInfo {
|
class CBeamInfo {
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "Weapon/CGameProjectile.hpp"
|
#include "Runtime/rstl.hpp"
|
||||||
|
#include "Runtime/Weapon/CGameProjectile.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CAABox.hpp>
|
||||||
|
#include <zeus/CTransform.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
class CBeamProjectile : public CGameProjectile {
|
class CBeamProjectile : public CGameProjectile {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -1,7 +1,13 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CWeapon.hpp"
|
#include <memory>
|
||||||
#include "CToken.hpp"
|
#include <optional>
|
||||||
|
|
||||||
|
#include "Runtime/CToken.hpp"
|
||||||
|
#include "Runtime/Weapon/CWeapon.hpp"
|
||||||
|
|
||||||
|
#include <zeus/CAABox.hpp>
|
||||||
|
#include <zeus/CVector3f.hpp>
|
||||||
|
|
||||||
namespace urde {
|
namespace urde {
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue