FifoPlayer: subsume FifoFileStruct.h into FifoDataFile.cpp
There's no reason for it to be in its own file, and it's confusing.
This commit is contained in:
parent
f9a67fbf6f
commit
6a6bfa0dbb
|
@ -339,7 +339,6 @@
|
|||
<ClInclude Include="ec_wii.h" />
|
||||
<ClInclude Include="FifoPlayer\FifoAnalyzer.h" />
|
||||
<ClInclude Include="FifoPlayer\FifoDataFile.h" />
|
||||
<ClInclude Include="FifoPlayer\FifoFileStruct.h" />
|
||||
<ClInclude Include="FifoPlayer\FifoPlaybackAnalyzer.h" />
|
||||
<ClInclude Include="FifoPlayer\FifoPlayer.h" />
|
||||
<ClInclude Include="FifoPlayer\FifoRecordAnalyzer.h" />
|
||||
|
|
|
@ -958,9 +958,6 @@
|
|||
<ClInclude Include="FifoPlayer\FifoDataFile.h">
|
||||
<Filter>FifoPlayer</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="FifoPlayer\FifoFileStruct.h">
|
||||
<Filter>FifoPlayer</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="FifoPlayer\FifoPlaybackAnalyzer.h">
|
||||
<Filter>FifoPlayer</Filter>
|
||||
</ClInclude>
|
||||
|
|
|
@ -9,9 +9,59 @@
|
|||
#include "Common/FileUtil.h"
|
||||
|
||||
#include "Core/FifoPlayer/FifoDataFile.h"
|
||||
#include "Core/FifoPlayer/FifoFileStruct.h"
|
||||
|
||||
using namespace FifoFileStruct;
|
||||
enum
|
||||
{
|
||||
FILE_ID = 0x0d01f1f0,
|
||||
VERSION_NUMBER = 4,
|
||||
MIN_LOADER_VERSION = 1,
|
||||
};
|
||||
|
||||
#pragma pack(push, 1)
|
||||
|
||||
struct FileHeader
|
||||
{
|
||||
u32 fileId;
|
||||
u32 file_version;
|
||||
u32 min_loader_version;
|
||||
u64 bpMemOffset;
|
||||
u32 bpMemSize;
|
||||
u64 cpMemOffset;
|
||||
u32 cpMemSize;
|
||||
u64 xfMemOffset;
|
||||
u32 xfMemSize;
|
||||
u64 xfRegsOffset;
|
||||
u32 xfRegsSize;
|
||||
u64 frameListOffset;
|
||||
u32 frameCount;
|
||||
u32 flags;
|
||||
u64 texMemOffset;
|
||||
u32 texMemSize;
|
||||
u8 reserved[40];
|
||||
};
|
||||
|
||||
struct FileFrameInfo
|
||||
{
|
||||
u64 fifoDataOffset;
|
||||
u32 fifoDataSize;
|
||||
u32 fifoStart;
|
||||
u32 fifoEnd;
|
||||
u64 memoryUpdatesOffset;
|
||||
u32 numMemoryUpdates;
|
||||
u8 reserved[32];
|
||||
};
|
||||
|
||||
struct FileMemoryUpdate
|
||||
{
|
||||
u32 fifoPosition;
|
||||
u32 address;
|
||||
u64 dataOffset;
|
||||
u32 dataSize;
|
||||
u8 type;
|
||||
u8 reserved[3];
|
||||
};
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
FifoDataFile::FifoDataFile() = default;
|
||||
|
||||
|
|
|
@ -1,63 +0,0 @@
|
|||
// Copyright 2011 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
namespace FifoFileStruct
|
||||
{
|
||||
enum
|
||||
{
|
||||
FILE_ID = 0x0d01f1f0,
|
||||
VERSION_NUMBER = 4,
|
||||
MIN_LOADER_VERSION = 1,
|
||||
};
|
||||
|
||||
#pragma pack(push, 1)
|
||||
|
||||
struct FileHeader
|
||||
{
|
||||
u32 fileId;
|
||||
u32 file_version;
|
||||
u32 min_loader_version;
|
||||
u64 bpMemOffset;
|
||||
u32 bpMemSize;
|
||||
u64 cpMemOffset;
|
||||
u32 cpMemSize;
|
||||
u64 xfMemOffset;
|
||||
u32 xfMemSize;
|
||||
u64 xfRegsOffset;
|
||||
u32 xfRegsSize;
|
||||
u64 frameListOffset;
|
||||
u32 frameCount;
|
||||
u32 flags;
|
||||
u64 texMemOffset;
|
||||
u32 texMemSize;
|
||||
u8 reserved[40];
|
||||
};
|
||||
|
||||
struct FileFrameInfo
|
||||
{
|
||||
u64 fifoDataOffset;
|
||||
u32 fifoDataSize;
|
||||
u32 fifoStart;
|
||||
u32 fifoEnd;
|
||||
u64 memoryUpdatesOffset;
|
||||
u32 numMemoryUpdates;
|
||||
u8 reserved[32];
|
||||
};
|
||||
|
||||
struct FileMemoryUpdate
|
||||
{
|
||||
u32 fifoPosition;
|
||||
u32 address;
|
||||
u64 dataOffset;
|
||||
u32 dataSize;
|
||||
u8 type;
|
||||
u8 reserved[3];
|
||||
};
|
||||
|
||||
#pragma pack(pop)
|
||||
}
|
Loading…
Reference in New Issue