prime/include/Kyoto/CDvdFile.hpp

58 lines
1.4 KiB
C++
Raw Normal View History

#ifndef _CDVDFILE
#define _CDVDFILE
2023-01-29 22:16:26 +00:00
#include "Kyoto/CDvdRequest.hpp"
#include "types.h"
#include "rstl/auto_ptr.hpp"
#include "rstl/reserved_vector.hpp"
#include "rstl/single_ptr.hpp"
2023-01-29 22:16:26 +00:00
#include "rstl/string.hpp"
enum ESeekOrigin { kSO_Set, kSO_Cur, kSO_End };
class CDvdFile;
struct CDvdFileARAM;
2023-01-13 00:05:25 +00:00
struct DVDFileInfo;
class CDvdFile {
public:
CDvdFile(const char* name);
~CDvdFile();
uint Length() { return x14_size; }
2023-01-29 22:16:26 +00:00
void HandleDVDInterrupt();
void HandleARAMInterrupt();
void PingARAMTransfer();
void TryARAMFile();
void PushARAMFileLoad();
void PopARAMFileLoad();
bool IsARAMFileLoaded();
2023-01-29 22:16:26 +00:00
void StartARAMFileLoad();
void StallForARAMFile();
CDvdRequest* SyncRead(void* buf, uint len);
CDvdRequest* SyncSeekRead(void* buf, uint len, ESeekOrigin, int offset);
CDvdRequest* AsyncSeekRead(void* buf, uint len, ESeekOrigin, int offset);
void CloseFile();
void CalcFileOffset(int offset, ESeekOrigin origin);
void UpdateFilePos(int pos);
const int GetFileSize() const { return x14_size; }
static bool FileExists(const char*);
2023-01-13 00:05:25 +00:00
static void DVDARAMXferCallback(long, DVDFileInfo*);
2023-01-14 09:26:24 +00:00
static void ARAMARAMXferCallback(u32 addr);
2023-01-29 22:16:26 +00:00
static void internalCallback(s32, DVDFileInfo*);
private:
2023-01-29 22:16:26 +00:00
int x0_fileEntry;
uchar* x4_;
bool x8_;
bool x9_;
rstl::single_ptr< CDvdFileARAM > xc_;
2023-01-29 22:16:26 +00:00
int x10_offset;
int x14_size;
rstl::string x18_filename;
};
CHECK_SIZEOF(CDvdFile, 0x28)
#endif // _CDVDFILE