@@ -13,6 +13,7 @@ TOSHI_NAMESPACE_USING
1313
1414static U32 s_iPlayForegroundFast = 0 ;
1515
16+ // $JPOG: FUNCTION 006d52d0
1617ABINKMoviePlayer::ABINKMoviePlayer ()
1718{
1819 m_bHasMovieStopped = TTRUE;
@@ -34,6 +35,7 @@ ABINKMoviePlayer::ABINKMoviePlayer()
3435 SetFrameReady (TFALSE);
3536}
3637
38+ // $JPOG: FUNCTION 006d5370
3739TBOOL ABINKMoviePlayer::InitializeMoviePlayer ()
3840{
3941 if (!m_bIsBINKInitialized) {
@@ -44,6 +46,7 @@ TBOOL ABINKMoviePlayer::InitializeMoviePlayer()
4446 return TFALSE;
4547}
4648
49+ // $JPOG: FUNCTION 006d57b0
4750TBOOL ABINKMoviePlayer::ShutdownMoviePlayer ()
4851{
4952 if (m_bIsBINKInitialized) {
@@ -55,6 +58,7 @@ TBOOL ABINKMoviePlayer::ShutdownMoviePlayer()
5558 return TFALSE;
5659}
5760
61+ // $JPOG: FUNCTION 006d58b0
5862TBOOL ABINKMoviePlayer::StartMovie (TPCHAR a_szMovieName, TBOOL a_bUnk1, TPCHAR a_szUnk2, TBOOL a_bUseLocale)
5963{
6064 TRenderInterface *renderer = g_oTheApp.GetRootTask ()->GetRenderInterface ();
@@ -123,6 +127,7 @@ TBOOL ABINKMoviePlayer::StartMovie(TPCHAR a_szMovieName, TBOOL a_bUnk1, TPCHAR a
123127 return TTRUE;
124128}
125129
130+ // $JPOG: FUNCTION 006d5840
126131TBOOL ABINKMoviePlayer::Update (TFLOAT a_fDeltaTime)
127132{
128133 if (!m_bHasMovieStopped && m_hBink) {
@@ -136,6 +141,7 @@ TBOOL ABINKMoviePlayer::Update(TFLOAT a_fDeltaTime)
136141 return TFALSE;
137142}
138143
144+ // $JPOG: FUNCTION 006d5dc0
139145TBOOL ABINKMoviePlayer::RenderToTexture (TTextureResource *a_pTexture)
140146{
141147 if (m_hBink) {
@@ -195,6 +201,7 @@ TBOOL ABINKMoviePlayer::RenderToFrameBuffer(TPBYTE a_pDest, TINT a_iDestWidth, T
195201}
196202
197203
204+ // $JPOG: FUNCTION 006d53a0
198205TBOOL ABINKMoviePlayer::InitializeVideoResource ()
199206{
200207 TRenderInterface *renderer = g_oTheApp.GetRootTask ()->GetRenderInterface ();
@@ -221,6 +228,7 @@ TBOOL ABINKMoviePlayer::InitializeVideoResource()
221228 return TTRUE;
222229}
223230
231+ // $JPOG: FUNCTION 006d5710
224232TBOOL ABINKMoviePlayer::InitializeAudioResource ()
225233{
226234 TRenderD3DInterface *renderer = g_oTheApp.GetRootTask ()->GetRenderInterface ();
@@ -236,18 +244,21 @@ TBOOL ABINKMoviePlayer::InitializeAudioResource()
236244 return TTRUE;
237245}
238246
247+ // $JPOG: FUNCTION 006d57f0
239248TBOOL ABINKMoviePlayer::FreeVideoResource ()
240249{
241250 return TTRUE;
242251}
243252
253+ // $JPOG: FUNCTION 006d6400
244254void ABINKMoviePlayer::SetLocaleInfoA (TPCHAR a_szBuffer)
245255{
246256 // Toshi::TSystem::GetCStringPool();
247257 // Toshi::TSystem::GetLocale();
248258 sprintf (a_szBuffer, " Data\\ Movies\\ %s.bik" , m_szMovieFileName);
249259}
250260
261+ // $JPOG: FUNCTION 006d6310
251262void ABINKMoviePlayer::BinkSleep (TINT a_iMicroseconds)
252263{
253264 static S32 s_iTotalSleep = 0 ;
@@ -277,6 +288,7 @@ void ABINKMoviePlayer::BinkSleep(TINT a_iMicroseconds)
277288 }
278289}
279290
291+ // $JPOG: FUNCTION 006d5f20
280292TBOOL ABINKMoviePlayer::RenderToTiles ()
281293{
282294 return TBOOL ();
0 commit comments