CMoviePlayer progress

This commit is contained in:
2024-10-24 14:58:22 -07:00
parent a425ca9b42
commit 62035f1dba
11 changed files with 396 additions and 19 deletions

View File

@@ -1,20 +1,32 @@
#ifndef _CMOVIEPLAYER
#define _CMOVIEPLAYER
#include "Kyoto/CDvdFile.hpp"
#include "types.h"
class CMoviePlayer {
public:
static void SetSfxVolume(uchar);
static void SetSfxVolume(uchar);
CMoviePlayer(const char*, float, bool, bool);
~CMoviePlayer();
CMoviePlayer(const char*, float, bool, bool);
~CMoviePlayer();
void Update(float);
bool DrawVideo() const;
void Update(float);
bool DrawVideo() const;
private:
char x0_pad[0x100];
private:
CDvdFile x0_movieFile;
uint x84_;
uint x88_;
uint x8c_;
uchar x90_;
uint x94_;
uint x98_;
uint x9c_;
uint xa0_;
uint xa4_;
uint xa8_;
// char x0_pad[0x100];
};
#endif // _CMOVIEPLAYER