]> git.saurik.com Git - wxWidgets.git/blame - src/osx/carbon/mediactrl.cpp
guaranteeing autorelease pools for overridden OnRun on OSX
[wxWidgets.git] / src / osx / carbon / mediactrl.cpp
CommitLineData
489468fe 1/////////////////////////////////////////////////////////////////////////////
524c47aa 2// Name: src/osx/carbon/mediactrl.cpp
489468fe
SC
3// Purpose: Built-in Media Backends for Mac
4// Author: Ryan Norton <wxprojects@comcast.net>
5// Modified by:
6// Created: 11/07/04
7// RCS-ID: $Id$
8// Copyright: (c) 2004-2006 Ryan Norton
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13// OK, a casual overseer of this file may wonder why we don't use
14// either CreateMovieControl or HIMovieView...
15//
16// CreateMovieControl
17// 1) Need to dispose and create each time a new movie is loaded
18// 2) Not that many real advantages
19// 3) Progressively buggier in higher OSX versions
20// (see main.c of QTCarbonShell sample for details)
21// HIMovieView
22// 1) Crashes on destruction in ALL cases on quite a few systems!
23// (With the only real "alternative" is to simply not
24// dispose of it and let it leak...)
25// 2) Massive refreshing bugs with its movie controller between
26// movies
27//
28// At one point we had a complete implementation for CreateMovieControl
29// and on my (RN) local copy I had one for HIMovieView - but they
30// were simply deemed to be too buggy/unuseful. HIMovieView could
31// have been useful as well because it uses OpenGL contexts instead
32// of GWorlds. Perhaps someday when someone comes out with some
33// ingenious workarounds :).
34//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35
36// For compilers that support precompilation, includes "wx.h".
37#include "wx/wxprec.h"
38
39#if wxUSE_MEDIACTRL
40
41#include "wx/mediactrl.h"
42
43#ifndef WX_PRECOMP
44 #include "wx/log.h"
45 #include "wx/timer.h"
46#endif
47
b2680ced 48#if wxOSX_USE_CARBON
489468fe
SC
49#define USE_QUICKTIME 1
50#else
51#define USE_QUICKTIME 0
52#endif
53
54#if USE_QUICKTIME
55
524c47aa
SC
56#include "wx/osx/private.h"
57#include <QuickTime/QuickTimeComponents.h>
58
489468fe
SC
59//---------------------------------------------------------------------------
60// Height and Width of movie controller in the movie control (apple samples)
61//---------------------------------------------------------------------------
62#define wxMCWIDTH 320
63#define wxMCHEIGHT 16
64
65//===========================================================================
66// BACKEND DECLARATIONS
67//===========================================================================
68
69//---------------------------------------------------------------------------
70// wxQTMediaBackend
71//---------------------------------------------------------------------------
72
73class WXDLLIMPEXP_MEDIA wxQTMediaBackend : public wxMediaBackendCommonBase
74{
75public:
76 wxQTMediaBackend();
77 virtual ~wxQTMediaBackend();
78
79 virtual bool CreateControl(wxControl* ctrl, wxWindow* parent,
80 wxWindowID id,
81 const wxPoint& pos,
82 const wxSize& size,
83 long style,
84 const wxValidator& validator,
85 const wxString& name);
86
87 virtual bool Load(const wxString& fileName);
88 virtual bool Load(const wxURI& location);
89
90 virtual bool Play();
91 virtual bool Pause();
92 virtual bool Stop();
93
94 virtual wxMediaState GetState();
95
96 virtual bool SetPosition(wxLongLong where);
97 virtual wxLongLong GetPosition();
98 virtual wxLongLong GetDuration();
99
100 virtual void Move(int x, int y, int w, int h);
101 wxSize GetVideoSize() const;
102
103 virtual double GetPlaybackRate();
104 virtual bool SetPlaybackRate(double dRate);
105
106 virtual double GetVolume();
107 virtual bool SetVolume(double);
108
109 void Cleanup();
110 void FinishLoad();
111
112 virtual bool ShowPlayerControls(wxMediaCtrlPlayerControls flags);
113
114 virtual wxLongLong GetDownloadProgress();
115 virtual wxLongLong GetDownloadTotal();
116
117 virtual void MacVisibilityChanged();
118
119 //
120 // ------ Implementation from now on --------
121 //
122 bool DoPause();
123 bool DoStop();
124
125 void DoLoadBestSize();
126 void DoSetControllerVisible(wxMediaCtrlPlayerControls flags);
127
128 wxLongLong GetDataSizeFromStart(TimeValue end);
129
130 Boolean IsQuickTime4Installed();
131 void DoNewMovieController();
132
133 static pascal void PPRMProc(
134 Movie theMovie, OSErr theErr, void* theRefCon);
135
136 //TODO: Last param actually long - does this work on 64bit machines?
137 static pascal Boolean MCFilterProc(MovieController theController,
138 short action, void *params, long refCon);
139
140 static pascal OSStatus WindowEventHandler(
141 EventHandlerCallRef inHandlerCallRef,
142 EventRef inEvent, void *inUserData );
143
144 wxSize m_bestSize; // Original movie size
145 Movie m_movie; // Movie instance
146 bool m_bPlaying; // Whether media is playing or not
147 class wxTimer* m_timer; // Timer for streaming the movie
148 MovieController m_mc; // MovieController instance
149 wxMediaCtrlPlayerControls m_interfaceflags; // Saved interface flags
150
151 // Event handlers and UPPs/Callbacks
152 EventHandlerRef m_windowEventHandler;
153 EventHandlerUPP m_windowUPP;
154
155 MoviePrePrerollCompleteUPP m_preprerollupp;
156 MCActionFilterWithRefConUPP m_mcactionupp;
157
158 GWorldPtr m_movieWorld; //Offscreen movie GWorld
159
160 friend class wxQTMediaEvtHandler;
161
162 DECLARE_DYNAMIC_CLASS(wxQTMediaBackend)
163};
164
165// helper to hijack background erasing for the QT window
166class WXDLLIMPEXP_MEDIA wxQTMediaEvtHandler : public wxEvtHandler
167{
168public:
169 wxQTMediaEvtHandler(wxQTMediaBackend *qtb)
170 {
171 m_qtb = qtb;
172
173 qtb->m_ctrl->Connect(
174 qtb->m_ctrl->GetId(), wxEVT_ERASE_BACKGROUND,
175 wxEraseEventHandler(wxQTMediaEvtHandler::OnEraseBackground),
176 NULL, this);
177 }
178
179 void OnEraseBackground(wxEraseEvent& event);
180
181private:
182 wxQTMediaBackend *m_qtb;
183
c0c133e1 184 wxDECLARE_NO_COPY_CLASS(wxQTMediaEvtHandler);
489468fe
SC
185};
186
187//===========================================================================
188// IMPLEMENTATION
189//===========================================================================
190
191
192//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
193//
194// wxQTMediaBackend
195//
196//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
197
198IMPLEMENT_DYNAMIC_CLASS(wxQTMediaBackend, wxMediaBackend)
199
200//Time between timer calls - this is the Apple recommondation to the TCL
201//team I believe
202#define MOVIE_DELAY 20
203
204//---------------------------------------------------------------------------
205// wxQTMediaLoadTimer
206//
207// QT, esp. QT for Windows is very picky about how you go about
208// async loading. If you were to go through a Windows message loop
209// or a MoviesTask or both and then check the movie load state
210// it would still return 1000 (loading)... even (pre)prerolling doesn't
211// help. However, making a load timer like this works
212//---------------------------------------------------------------------------
213class wxQTMediaLoadTimer : public wxTimer
214{
215public:
216 wxQTMediaLoadTimer(wxQTMediaBackend* parent) :
217 m_parent(parent) {}
218
219 void Notify()
220 {
221 ::MCIdle(m_parent->m_mc);
222
223 // kMovieLoadStatePlayable is not enough on MAC:
224 // it plays, but IsMovieDone might return true (!)
225 // sure we need to wait until kMovieLoadStatePlaythroughOK
226 if (::GetMovieLoadState(m_parent->m_movie) >= 20000)
227 {
228 m_parent->FinishLoad();
229 delete this;
230 }
231 }
232
233protected:
234 wxQTMediaBackend *m_parent; // Backend pointer
235};
236
237// --------------------------------------------------------------------------
238// wxQTMediaPlayTimer - Handle Asyncronous Playing
239//
240// 1) Checks to see if the movie is done, and if not continues
241// streaming the movie
242// 2) Sends the wxEVT_MEDIA_STOP event if we have reached the end of
243// the movie.
244// --------------------------------------------------------------------------
245class wxQTMediaPlayTimer : public wxTimer
246{
247public:
248 wxQTMediaPlayTimer(wxQTMediaBackend* parent) :
249 m_parent(parent) {}
250
251 void Notify()
252 {
253 //
254 // OK, a little explaining - basically originally
255 // we only called MoviesTask if the movie was actually
256 // playing (not paused or stopped)... this was before
257 // we realized MoviesTask actually handles repainting
258 // of the current frame - so if you were to resize
259 // or something it would previously not redraw that
260 // portion of the movie.
261 //
262 // So now we call MoviesTask always so that it repaints
263 // correctly.
264 //
265 ::MCIdle(m_parent->m_mc);
266
267 //
268 // Handle the stop event - if the movie has reached
269 // the end, notify our handler
270 //
271 if (::IsMovieDone(m_parent->m_movie))
272 {
273 if ( m_parent->SendStopEvent() )
274 {
275 m_parent->Stop();
276 wxASSERT(::GetMoviesError() == noErr);
277
278 m_parent->QueueFinishEvent();
279 }
280 }
281 }
282
283protected:
284 wxQTMediaBackend* m_parent; // Backend pointer
285};
286
287
288//---------------------------------------------------------------------------
289// wxQTMediaBackend Constructor
290//
291// Sets m_timer to NULL signifying we havn't loaded anything yet
292//---------------------------------------------------------------------------
293wxQTMediaBackend::wxQTMediaBackend()
294 : m_movie(NULL), m_bPlaying(false), m_timer(NULL)
295 , m_mc(NULL), m_interfaceflags(wxMEDIACTRLPLAYERCONTROLS_NONE)
296 , m_preprerollupp(NULL), m_movieWorld(NULL)
297{
298}
299
300//---------------------------------------------------------------------------
301// wxQTMediaBackend Destructor
302//
303// 1) Cleans up the QuickTime movie instance
304// 2) Decrements the QuickTime reference counter - if this reaches
305// 0, QuickTime shuts down
306// 3) Decrements the QuickTime Windows Media Layer reference counter -
307// if this reaches 0, QuickTime shuts down the Windows Media Layer
308//---------------------------------------------------------------------------
309wxQTMediaBackend::~wxQTMediaBackend()
310{
311 if (m_movie)
312 Cleanup();
313
314 // Cleanup for moviecontroller
315 if (m_mc)
316 {
317 // destroy wxQTMediaEvtHandler we pushed on it
318 m_ctrl->PopEventHandler(true);
319 RemoveEventHandler(m_windowEventHandler);
320 DisposeEventHandlerUPP(m_windowUPP);
321
322 // Dispose of the movie controller
323 ::DisposeMovieController(m_mc);
324 m_mc = NULL;
325
326 // Dispose of offscreen GWorld
327 ::DisposeGWorld(m_movieWorld);
328 }
329
330 // Note that ExitMovies() is not necessary...
331 ExitMovies();
332}
333
334//---------------------------------------------------------------------------
335// wxQTMediaBackend::CreateControl
336//
337// 1) Intializes QuickTime
338// 2) Creates the control window
339//---------------------------------------------------------------------------
340bool wxQTMediaBackend::CreateControl(
341 wxControl* ctrl,
342 wxWindow* parent,
343 wxWindowID id,
344 const wxPoint& pos,
345 const wxSize& size,
346 long style,
347 const wxValidator& validator,
348 const wxString& name)
349{
350 if (!IsQuickTime4Installed())
351 return false;
352
353 EnterMovies();
354
355 wxMediaCtrl* mediactrl = (wxMediaCtrl*)ctrl;
356
357 //
358 // Create window
359 // By default wxWindow(s) is created with a border -
360 // so we need to get rid of those
361 //
362 // Since we don't have a child window like most other
363 // backends, we don't need wxCLIP_CHILDREN
364 //
365 if ( !mediactrl->wxControl::Create(
366 parent, id, pos, size,
367 wxWindow::MacRemoveBordersFromStyle(style),
368 validator, name))
369 {
370 return false;
371 }
372
373#if wxUSE_VALIDATORS
374 mediactrl->SetValidator(validator);
375#endif
376
377 m_ctrl = mediactrl;
378 return true;
379}
380
381//---------------------------------------------------------------------------
382// wxQTMediaBackend::IsQuickTime4Installed
383//
384// Determines whether version 4 of QT is installed
385// (Pretty much for Classic only)
386//---------------------------------------------------------------------------
387Boolean wxQTMediaBackend::IsQuickTime4Installed()
388{
389 OSErr error;
390 long result;
391
392 error = Gestalt(gestaltQuickTime, &result);
393 return (error == noErr) && (((result >> 16) & 0xffff) >= 0x0400);
394}
395
396//---------------------------------------------------------------------------
397// wxQTMediaBackend::Load (file version)
398//
399// 1) Get an FSSpec from the Windows path name
400// 2) Open the movie
401// 3) Obtain the movie instance from the movie resource
402// 4) Close the movie resource
403// 5) Finish loading
404//---------------------------------------------------------------------------
405bool wxQTMediaBackend::Load(const wxString& fileName)
406{
407 if (m_movie)
408 Cleanup();
409
410 ::ClearMoviesStickyError(); // clear previous errors so
411 // GetMoviesStickyError is useful
412
413 OSErr err = noErr;
414 short movieResFile;
415 FSSpec sfFile;
416
417 wxMacFilename2FSSpec( fileName, &sfFile );
418 if (OpenMovieFile( &sfFile, &movieResFile, fsRdPerm ) != noErr)
419 return false;
420
421 short movieResID = 0;
422 Str255 movieName;
423
424 err = NewMovieFromFile(
425 &m_movie,
426 movieResFile,
427 &movieResID,
428 movieName,
429 newMovieActive,
430 NULL); // wasChanged
431
432 // Do not use ::GetMoviesStickyError() here because it returns -2009
433 // a.k.a. invalid track on valid mpegs
434 if (err == noErr && ::GetMoviesError() == noErr)
435 {
436 ::CloseMovieFile(movieResFile);
437
438 // Create movie controller/control
439 DoNewMovieController();
440
441 FinishLoad();
442 return true;
443 }
444
445 return false;
446}
447
448//---------------------------------------------------------------------------
449// wxQTMediaBackend::Load (URL Version)
450//
451// 1) Build an escaped URI from location
452// 2) Create a handle to store the URI string
453// 3) Put the URI string inside the handle
454// 4) Make a QuickTime URL data ref from the handle with the URI in it
455// 5) Clean up the URI string handle
456// 6) Do some prerolling
457// 7) Finish Loading
458//---------------------------------------------------------------------------
459bool wxQTMediaBackend::Load(const wxURI& location)
460{
461 if (m_movie)
462 Cleanup();
463
464 ::ClearMoviesStickyError(); // clear previous errors so
465 // GetMoviesStickyError is useful
466
467 wxString theURI = location.BuildURI();
468 OSErr err;
469
470 size_t len;
471 const char* theURIString;
472
473#if wxUSE_UNICODE
474 wxCharBuffer buf = wxConvLocal.cWC2MB(theURI.wc_str(), theURI.length(), &len);
475 theURIString = buf;
476#else
477 theURIString = theURI;
478 len = theURI.length();
479#endif
480
481 Handle theHandle = ::NewHandleClear(len + 1);
482 wxASSERT(theHandle);
483
484 ::BlockMoveData(theURIString, *theHandle, len + 1);
485
486 // create the movie from the handle that refers to the URI
487 err = ::NewMovieFromDataRef(
488 &m_movie,
489 newMovieActive | newMovieAsyncOK /* | newMovieIdleImportOK*/,
490 NULL, theHandle,
491 URLDataHandlerSubType);
492
493 ::DisposeHandle(theHandle);
494
495 if (err == noErr && ::GetMoviesStickyError() == noErr)
496 {
497 // Movie controller resets prerolling, so we must create first
498 DoNewMovieController();
499
500 long timeNow;
501 Fixed playRate;
502
503 timeNow = ::GetMovieTime(m_movie, NULL);
504 wxASSERT(::GetMoviesError() == noErr);
505
506 playRate = ::GetMoviePreferredRate(m_movie);
507 wxASSERT(::GetMoviesError() == noErr);
508
509 //
510 // Note that the callback here is optional,
511 // but without it PrePrerollMovie can be buggy
512 // (see Apple ml). Also, some may wonder
513 // why we need this at all - this is because
514 // Apple docs say QuickTime streamed movies
515 // require it if you don't use a Movie Controller,
516 // which we don't by default.
517 //
518 m_preprerollupp = wxQTMediaBackend::PPRMProc;
519 ::PrePrerollMovie( m_movie, timeNow, playRate,
520 m_preprerollupp, (void*)this);
521
522 return true;
523 }
524
525 return false;
526}
527
528//---------------------------------------------------------------------------
529// wxQTMediaBackend::DoNewMovieController
530//
531// Attaches movie to moviecontroller or creates moviecontroller
532// if not created yet
533//---------------------------------------------------------------------------
534void wxQTMediaBackend::DoNewMovieController()
535{
536 if (!m_mc)
537 {
538 // Get top level window ref for some mac functions
539 WindowRef wrTLW = (WindowRef) m_ctrl->MacGetTopLevelWindowRef();
540
541 // MovieController not set up yet, so we need to create a new one.
542 // You have to pass a valid movie to NewMovieController, evidently
543 ::SetMovieGWorld(m_movie,
544 (CGrafPtr) GetWindowPort(wrTLW),
545 NULL);
546 wxASSERT(::GetMoviesError() == noErr);
547
548 Rect bounds = wxMacGetBoundsForControl(
549 m_ctrl,
550 m_ctrl->GetPosition(),
551 m_ctrl->GetSize());
552
553 m_mc = ::NewMovieController(
554 m_movie, &bounds,
555 mcTopLeftMovie | mcNotVisible /* | mcWithFrame */ );
556 wxASSERT(::GetMoviesError() == noErr);
557
558 ::MCDoAction(m_mc, 32, (void*)true); // mcActionSetKeysEnabled
559 wxASSERT(::GetMoviesError() == noErr);
560
561 // Setup a callback so we can tell when the user presses
562 // play on the player controls
563 m_mcactionupp = wxQTMediaBackend::MCFilterProc;
564 ::MCSetActionFilterWithRefCon( m_mc, m_mcactionupp, (long)this );
565 wxASSERT(::GetMoviesError() == noErr);
566
567 // Part of a suggestion from Greg Hazel to repaint movie when idle
568 m_ctrl->PushEventHandler(new wxQTMediaEvtHandler(this));
569
570 // Create offscreen GWorld for where to "show" when window is hidden
571 Rect worldRect;
572 worldRect.left = worldRect.top = 0;
573 worldRect.right = worldRect.bottom = 1;
574 ::NewGWorld(&m_movieWorld, 0, &worldRect, NULL, NULL, 0);
575
576 // Catch window messages:
577 // if we do not do this and if the user clicks the play
578 // button on the controller, for instance, nothing will happen...
579 EventTypeSpec theWindowEventTypes[] =
580 {
581 { kEventClassMouse, kEventMouseDown },
582 { kEventClassMouse, kEventMouseUp },
583 { kEventClassMouse, kEventMouseDragged },
584 { kEventClassKeyboard, kEventRawKeyDown },
585 { kEventClassKeyboard, kEventRawKeyRepeat },
586 { kEventClassKeyboard, kEventRawKeyUp },
587 { kEventClassWindow, kEventWindowUpdate },
588 { kEventClassWindow, kEventWindowActivated },
589 { kEventClassWindow, kEventWindowDeactivated }
590 };
591 m_windowUPP =
592 NewEventHandlerUPP( wxQTMediaBackend::WindowEventHandler );
593 InstallWindowEventHandler(
594 wrTLW,
595 m_windowUPP,
596 GetEventTypeCount( theWindowEventTypes ), theWindowEventTypes,
597 this,
598 &m_windowEventHandler );
599 }
600 else
601 {
602 // MovieController already created:
603 // Just change the movie in it and we're good to go
604 Point thePoint;
605 thePoint.h = thePoint.v = 0;
606 ::MCSetMovie(m_mc, m_movie,
607 (WindowRef)m_ctrl->MacGetTopLevelWindowRef(),
608 thePoint);
609 wxASSERT(::GetMoviesError() == noErr);
610 }
611}
612
613//---------------------------------------------------------------------------
614// wxQTMediaBackend::FinishLoad
615//
616// Performs operations after a movie ready to play/loaded.
617//---------------------------------------------------------------------------
618void wxQTMediaBackend::FinishLoad()
619{
620 // get the real size of the movie
621 DoLoadBestSize();
622
623 // show the player controls if the user wants to
624 if (m_interfaceflags)
625 DoSetControllerVisible(m_interfaceflags);
626
627 // we want millisecond precision
628 ::SetMovieTimeScale(m_movie, 1000);
629 wxASSERT(::GetMoviesError() == noErr);
630
631 // start movie progress timer
632 m_timer = new wxQTMediaPlayTimer(this);
633 wxASSERT(m_timer);
634 m_timer->Start(MOVIE_DELAY, wxTIMER_CONTINUOUS);
635
636 // send loaded event and refresh size
637 NotifyMovieLoaded();
638}
639
640//---------------------------------------------------------------------------
641// wxQTMediaBackend::DoLoadBestSize
642//
643// Sets the best size of the control from the real size of the movie
644//---------------------------------------------------------------------------
645void wxQTMediaBackend::DoLoadBestSize()
646{
647 // get the real size of the movie
648 Rect outRect;
649 ::GetMovieNaturalBoundsRect(m_movie, &outRect);
650 wxASSERT(::GetMoviesError() == noErr);
651
652 // determine best size
653 m_bestSize.x = outRect.right - outRect.left;
654 m_bestSize.y = outRect.bottom - outRect.top;
655}
656
657//---------------------------------------------------------------------------
658// wxQTMediaBackend::Play
659//
660// Start the QT movie
661// (Apple recommends mcActionPrerollAndPlay but that's QT 4.1+)
662//---------------------------------------------------------------------------
663bool wxQTMediaBackend::Play()
664{
665 Fixed fixRate = (Fixed) (wxQTMediaBackend::GetPlaybackRate() * 0x10000);
666 if (!fixRate)
667 fixRate = ::GetMoviePreferredRate(m_movie);
668
669 wxASSERT(fixRate != 0);
670
671 if (!m_bPlaying)
672 ::MCDoAction( m_mc, 8 /* mcActionPlay */, (void*) fixRate);
673
674 bool result = (::GetMoviesError() == noErr);
675 if (result)
676 {
677 m_bPlaying = true;
678 QueuePlayEvent();
679 }
680
681 return result;
682}
683
684//---------------------------------------------------------------------------
685// wxQTMediaBackend::Pause
686//
687// Stop the movie
688//---------------------------------------------------------------------------
689bool wxQTMediaBackend::DoPause()
690{
691 // Stop the movie A.K.A. ::StopMovie(m_movie);
692 if (m_bPlaying)
693 {
694 ::MCDoAction( m_mc, 8 /*mcActionPlay*/, (void *) 0);
695 m_bPlaying = false;
696 return ::GetMoviesError() == noErr;
697 }
698
699 // already paused
700 return true;
701}
702
703bool wxQTMediaBackend::Pause()
704{
705 bool bSuccess = DoPause();
706 if (bSuccess)
707 this->QueuePauseEvent();
708
709 return bSuccess;
710}
711
712//---------------------------------------------------------------------------
713// wxQTMediaBackend::Stop
714//
715// 1) Stop the movie
716// 2) Seek to the beginning of the movie
717//---------------------------------------------------------------------------
718bool wxQTMediaBackend::DoStop()
719{
720 if (!wxQTMediaBackend::DoPause())
721 return false;
722
723 ::GoToBeginningOfMovie(m_movie);
724 return ::GetMoviesError() == noErr;
725}
726
727bool wxQTMediaBackend::Stop()
728{
729 bool bSuccess = DoStop();
730 if (bSuccess)
731 QueueStopEvent();
732
733 return bSuccess;
734}
735
736//---------------------------------------------------------------------------
737// wxQTMediaBackend::GetPlaybackRate
738//
739// 1) Get the movie playback rate from ::GetMovieRate
740//---------------------------------------------------------------------------
741double wxQTMediaBackend::GetPlaybackRate()
742{
743 return ( ((double)::GetMovieRate(m_movie)) / 0x10000);
744}
745
746//---------------------------------------------------------------------------
747// wxQTMediaBackend::SetPlaybackRate
748//
749// 1) Convert dRate to Fixed and Set the movie rate through SetMovieRate
750//---------------------------------------------------------------------------
751bool wxQTMediaBackend::SetPlaybackRate(double dRate)
752{
753 ::SetMovieRate(m_movie, (Fixed) (dRate * 0x10000));
754 return ::GetMoviesError() == noErr;
755}
756
757//---------------------------------------------------------------------------
758// wxQTMediaBackend::SetPosition
759//
760// 1) Create a time record struct (TimeRecord) with appropriate values
761// 2) Pass struct to SetMovieTime
762//---------------------------------------------------------------------------
763bool wxQTMediaBackend::SetPosition(wxLongLong where)
764{
765 TimeRecord theTimeRecord;
766 memset(&theTimeRecord, 0, sizeof(TimeRecord));
1f450872
SC
767 theTimeRecord.value.lo = where.GetLo();
768 theTimeRecord.value.hi = where.GetHi();
489468fe
SC
769 theTimeRecord.scale = ::GetMovieTimeScale(m_movie);
770 theTimeRecord.base = ::GetMovieTimeBase(m_movie);
771 ::SetMovieTime(m_movie, &theTimeRecord);
772
773 if (::GetMoviesError() != noErr)
774 return false;
775
776 return true;
777}
778
779//---------------------------------------------------------------------------
780// wxQTMediaBackend::GetPosition
781//
782// Calls GetMovieTime
783//---------------------------------------------------------------------------
784wxLongLong wxQTMediaBackend::GetPosition()
785{
786 return ::GetMovieTime(m_movie, NULL);
787}
788
789//---------------------------------------------------------------------------
790// wxQTMediaBackend::GetVolume
791//
792// Gets the volume through GetMovieVolume - which returns a 16 bit short -
793//
794// +--------+--------+
795// + (1) + (2) +
796// +--------+--------+
797//
798// (1) first 8 bits are value before decimal
799// (2) second 8 bits are value after decimal
800//
801// Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
802// 1 (full gain and sound)
803//---------------------------------------------------------------------------
804double wxQTMediaBackend::GetVolume()
805{
806 short sVolume = ::GetMovieVolume(m_movie);
807
808 if (sVolume & (128 << 8)) //negative - no sound
809 return 0.0;
810
811 return sVolume / 256.0;
812}
813
814//---------------------------------------------------------------------------
815// wxQTMediaBackend::SetVolume
816//
817// Sets the volume through SetMovieVolume - which takes a 16 bit short -
818//
819// +--------+--------+
820// + (1) + (2) +
821// +--------+--------+
822//
823// (1) first 8 bits are value before decimal
824// (2) second 8 bits are value after decimal
825//
826// Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
827// 1 (full gain and sound)
828//---------------------------------------------------------------------------
829bool wxQTMediaBackend::SetVolume(double dVolume)
830{
831 ::SetMovieVolume(m_movie, (short) (dVolume * 256));
832 return true;
833}
834
835//---------------------------------------------------------------------------
836// wxQTMediaBackend::GetDuration
837//
838// Calls GetMovieDuration
839//---------------------------------------------------------------------------
840wxLongLong wxQTMediaBackend::GetDuration()
841{
842 return ::GetMovieDuration(m_movie);
843}
844
845//---------------------------------------------------------------------------
846// wxQTMediaBackend::GetState
847//
848// Determines the current state - the timer keeps track of whether or not
849// we are paused or stopped (if the timer is running we are playing)
850//---------------------------------------------------------------------------
851wxMediaState wxQTMediaBackend::GetState()
852{
853 // Could use
854 // GetMovieActive/IsMovieDone/SetMovieActive
855 // combo if implemented that way
856 if (m_bPlaying)
857 return wxMEDIASTATE_PLAYING;
858 else if (!m_movie || wxQTMediaBackend::GetPosition() == 0)
859 return wxMEDIASTATE_STOPPED;
860 else
861 return wxMEDIASTATE_PAUSED;
862}
863
864//---------------------------------------------------------------------------
865// wxQTMediaBackend::Cleanup
866//
867// Diposes of the movie timer, Control if native, and stops and disposes
868// of the QT movie
869//---------------------------------------------------------------------------
870void wxQTMediaBackend::Cleanup()
871{
872 m_bPlaying = false;
873 if (m_timer)
874 {
875 delete m_timer;
876 m_timer = NULL;
877 }
878
879 // Stop the movie:
880 // Apple samples with CreateMovieControl typically
881 // install a event handler and do this on the dispose
882 // event, but we do it here for simplicity
883 // (It might keep playing for several seconds after
884 // control destruction if not)
885 wxQTMediaBackend::Pause();
886
887 // Dispose of control or remove movie from MovieController
888 Point thePoint;
889 thePoint.h = thePoint.v = 0;
890 ::MCSetVisible(m_mc, false);
891 ::MCSetMovie(m_mc, NULL, NULL, thePoint);
892
893 ::DisposeMovie(m_movie);
894 m_movie = NULL;
895}
896
897//---------------------------------------------------------------------------
898// wxQTMediaBackend::GetVideoSize
899//
900// Returns the actual size of the QT movie
901//---------------------------------------------------------------------------
902wxSize wxQTMediaBackend::GetVideoSize() const
903{
904 return m_bestSize;
905}
906
907//---------------------------------------------------------------------------
908// wxQTMediaBackend::Move
909//
910// Move the movie controller or movie control
911// (we need to actually move the movie control manually...)
912// Top 10 things to do with quicktime in March 93's issue
913// of DEVELOP - very useful
914// http:// www.mactech.com/articles/develop/issue_13/031-033_QuickTime_column.html
915// OLD NOTE: Calling MCSetControllerBoundsRect without detaching
916// supposively resulted in a crash back then. Current code even
917// with CFM classic runs fine. If there is ever a problem,
918// take out the if 0 lines below
919//---------------------------------------------------------------------------
920void wxQTMediaBackend::Move(int x, int y, int w, int h)
921{
922 if (m_timer)
923 {
924 m_ctrl->GetParent()->MacWindowToRootWindow(&x, &y);
925 Rect theRect = {y, x, y + h, x + w};
926
927#if 0 // see note above
928 ::MCSetControllerAttached(m_mc, false);
929 wxASSERT(::GetMoviesError() == noErr);
930#endif
931
932 ::MCSetControllerBoundsRect(m_mc, &theRect);
933 wxASSERT(::GetMoviesError() == noErr);
934
935#if 0 // see note above
936 if (m_interfaceflags)
937 {
938 ::MCSetVisible(m_mc, true);
939 wxASSERT(::GetMoviesError() == noErr);
940 }
941#endif
942 }
943}
944
945//---------------------------------------------------------------------------
946// wxQTMediaBackend::DoSetControllerVisible
947//
948// Utility function that takes care of showing the moviecontroller
949// and showing/hiding the particular controls on it
950//---------------------------------------------------------------------------
951void wxQTMediaBackend::DoSetControllerVisible(
952 wxMediaCtrlPlayerControls flags)
953{
954 ::MCSetVisible(m_mc, true);
955
956 // Take care of subcontrols
957 if (::GetMoviesError() == noErr)
958 {
959 long mcFlags = 0;
960 ::MCDoAction(m_mc, 39/*mcActionGetFlags*/, (void*)&mcFlags);
961
962 if (::GetMoviesError() == noErr)
963 {
964 mcFlags |= ( //(1<<0)/*mcFlagSuppressMovieFrame*/ |
965 (1 << 3)/*mcFlagsUseWindowPalette*/
966 | ((flags & wxMEDIACTRLPLAYERCONTROLS_STEP)
967 ? 0 : (1 << 1)/*mcFlagSuppressStepButtons*/)
968 | ((flags & wxMEDIACTRLPLAYERCONTROLS_VOLUME)
969 ? 0 : (1 << 2)/*mcFlagSuppressSpeakerButton*/)
970 //if we take care of repainting ourselves
971 // | (1 << 4) /*mcFlagDontInvalidate*/
972 );
973
974 ::MCDoAction(m_mc, 38/*mcActionSetFlags*/, (void*)mcFlags);
975 }
976 }
977
978 // Adjust height and width of best size for movie controller
979 // if the user wants it shown
980 m_bestSize.x = m_bestSize.x > wxMCWIDTH ? m_bestSize.x : wxMCWIDTH;
981 m_bestSize.y += wxMCHEIGHT;
982}
983
984//---------------------------------------------------------------------------
985// wxQTMediaBackend::ShowPlayerControls
986//
987// Shows/Hides subcontrols on the media control
988//---------------------------------------------------------------------------
989bool wxQTMediaBackend::ShowPlayerControls(wxMediaCtrlPlayerControls flags)
990{
991 if (!m_mc)
992 return false; // no movie controller...
993
994 bool bSizeChanged = false;
995
996 // if the controller is visible and we want to hide it do so
997 if (m_interfaceflags && !flags)
998 {
999 bSizeChanged = true;
1000 DoLoadBestSize();
1001 ::MCSetVisible(m_mc, false);
1002 }
1003 else if (!m_interfaceflags && flags) // show controller if hidden
1004 {
1005 bSizeChanged = true;
1006 DoSetControllerVisible(flags);
1007 }
1008
1009 // readjust parent sizers
1010 if (bSizeChanged)
1011 {
1012 NotifyMovieSizeChanged();
1013
1014 // remember state in case of loading new media
1015 m_interfaceflags = flags;
1016 }
1017
1018 return ::GetMoviesError() == noErr;
1019}
1020
1021//---------------------------------------------------------------------------
1022// wxQTMediaBackend::GetDataSizeFromStart
1023//
1024// Calls either GetMovieDataSize or GetMovieDataSize64 with a value
1025// of 0 for the starting value
1026//---------------------------------------------------------------------------
1027wxLongLong wxQTMediaBackend::GetDataSizeFromStart(TimeValue end)
1028{
1029#if 0 // old pre-qt4 way
1030 return ::GetMovieDataSize(m_movie, 0, end)
1031#else // qt4 way
1032 wide llDataSize;
1033 ::GetMovieDataSize64(m_movie, 0, end, &llDataSize);
1034 return wxLongLong(llDataSize.hi, llDataSize.lo);
1035#endif
1036}
1037
1038//---------------------------------------------------------------------------
1039// wxQTMediaBackend::GetDownloadProgress
1040//---------------------------------------------------------------------------
1041wxLongLong wxQTMediaBackend::GetDownloadProgress()
1042{
1043#if 0 // hackish and slow
1044 Handle hMovie = NewHandle(0);
1045 PutMovieIntoHandle(m_movie, hMovie);
1046 long lSize = GetHandleSize(hMovie);
1047 DisposeHandle(hMovie);
1048
1049 return lSize;
1050#else
1051 TimeValue tv;
1052 if (::GetMaxLoadedTimeInMovie(m_movie, &tv) != noErr)
1053 {
1054 wxLogDebug(wxT("GetMaxLoadedTimeInMovie failed"));
1055 return 0;
1056 }
1057
1058 return wxQTMediaBackend::GetDataSizeFromStart(tv);
1059#endif
1060}
1061
1062//---------------------------------------------------------------------------
1063// wxQTMediaBackend::GetDownloadTotal
1064//---------------------------------------------------------------------------
1065wxLongLong wxQTMediaBackend::GetDownloadTotal()
1066{
1067 return wxQTMediaBackend::GetDataSizeFromStart(
1068 ::GetMovieDuration(m_movie)
1069 );
1070}
1071
1072//---------------------------------------------------------------------------
1073// wxQTMediaBackend::MacVisibilityChanged
1074//
1075// The main problem here is that Windows quicktime, for example,
1076// renders more directly to a HWND. Mac quicktime does not do this
1077// and instead renders to the port of the WindowRef/WindowPtr on top
1078// of everything else/all other windows.
1079//
1080// So, for example, if you were to have a CreateTabsControl/wxNotebook
1081// and change pages, even if you called HIViewSetVisible/SetControlVisibility
1082// directly the movie will still continue playing on top of everything else
1083// if you went to a different tab.
1084//
1085// Note that another issue, and why we call MCSetControllerPort instead
1086// of SetMovieGWorld directly, is that in addition to rendering on
1087// top of everything else the last created controller steals mouse and
1088// other input from everything else in the window, including other
1089// controllers. Setting the port of it releases this behaviour.
1090//---------------------------------------------------------------------------
1091void wxQTMediaBackend::MacVisibilityChanged()
1092{
1093 if(!m_mc || !m_ctrl->m_bLoaded)
1094 return; //not initialized yet
1095
1096 if(m_ctrl->IsShownOnScreen())
1097 {
1098 //The window is being shown again, so set the GWorld of the
1099 //controller back to the port of the parent WindowRef
1100 WindowRef wrTLW =
1101 (WindowRef) m_ctrl->MacGetTopLevelWindowRef();
1102
1103 ::MCSetControllerPort(m_mc, (CGrafPtr) GetWindowPort(wrTLW));
1104 wxASSERT(::GetMoviesError() == noErr);
1105 }
1106 else
1107 {
1108 //We are being hidden - set the GWorld of the controller
1109 //to the offscreen GWorld
1110 ::MCSetControllerPort(m_mc, m_movieWorld);
1111 wxASSERT(::GetMoviesError() == noErr);
1112 }
1113}
1114
1115//---------------------------------------------------------------------------
1116// wxQTMediaBackend::OnEraseBackground
1117//
1118// Suggestion from Greg Hazel to repaint the movie when idle
1119// (on pause also)
1120//---------------------------------------------------------------------------
1121void wxQTMediaEvtHandler::OnEraseBackground(wxEraseEvent& WXUNUSED(evt))
1122{
1123 // Work around Nasty OSX drawing bug:
1124 // http://lists.apple.com/archives/QuickTime-API/2002/Feb/msg00311.html
1125 WindowRef wrTLW = (WindowRef) m_qtb->m_ctrl->MacGetTopLevelWindowRef();
1126
1127 RgnHandle region = ::MCGetControllerBoundsRgn(m_qtb->m_mc);
1128 ::MCInvalidate(m_qtb->m_mc, wrTLW, region);
1129 ::MCIdle(m_qtb->m_mc);
1130}
1131
1132//---------------------------------------------------------------------------
1133// wxQTMediaBackend::PPRMProc (static)
1134//
1135// Called when done PrePrerolling the movie.
1136// Note that in 99% of the cases this does nothing...
1137// Anyway we set up the loading timer here to tell us when the movie is done
1138//---------------------------------------------------------------------------
1139pascal void wxQTMediaBackend::PPRMProc(
1140 Movie theMovie,
1141 OSErr WXUNUSED_UNLESS_DEBUG(theErr),
1142 void* theRefCon)
1143{
1144 wxASSERT( theMovie );
1145 wxASSERT( theRefCon );
1146 wxASSERT( theErr == noErr );
1147
1148 wxQTMediaBackend* pBE = (wxQTMediaBackend*) theRefCon;
1149
1150 long lTime = ::GetMovieTime(theMovie,NULL);
1151 Fixed rate = ::GetMoviePreferredRate(theMovie);
1152 ::PrerollMovie(theMovie,lTime,rate);
1153 pBE->m_timer = new wxQTMediaLoadTimer(pBE);
1154 pBE->m_timer->Start(MOVIE_DELAY);
1155}
1156
1157//---------------------------------------------------------------------------
1158// wxQTMediaBackend::MCFilterProc (static)
1159//
1160// Callback for when the movie controller recieves a message
1161//---------------------------------------------------------------------------
1162pascal Boolean wxQTMediaBackend::MCFilterProc(
1163 MovieController WXUNUSED(theController),
1164 short action,
1165 void * WXUNUSED(params),
1166 long refCon)
1167{
1168 wxQTMediaBackend* pThis = (wxQTMediaBackend*)refCon;
1169
1170 switch (action)
1171 {
1172 case 1:
1173 // don't process idle events
1174 break;
1175
1176 case 8:
1177 // play button triggered - MC will set movie to opposite state
1178 // of current - playing ? paused : playing
1179 pThis->m_bPlaying = !(pThis->m_bPlaying);
1180 break;
1181
1182 default:
1183 break;
1184 }
1185
1186 return 0;
1187}
1188
1189//---------------------------------------------------------------------------
1190// wxQTMediaBackend::WindowEventHandler [static]
1191//
1192// Event callback for the top level window of our control that passes
1193// messages to our moviecontroller so it can receive mouse clicks etc.
1194//---------------------------------------------------------------------------
1195pascal OSStatus wxQTMediaBackend::WindowEventHandler(
1196 EventHandlerCallRef WXUNUSED(inHandlerCallRef),
1197 EventRef inEvent,
1198 void *inUserData)
1199{
1200 wxQTMediaBackend* be = (wxQTMediaBackend*) inUserData;
1201
1202 // Only process keyboard messages on this window if it actually
1203 // has focus, otherwise it will steal keystrokes from other windows!
1204 // As well as when it is not loaded properly as it
1205 // will crash in MCIsPlayerEvent
1206 if((GetEventClass(inEvent) == kEventClassKeyboard &&
1207 wxWindow::FindFocus() != be->m_ctrl)
1208 || !be->m_ctrl->m_bLoaded)
1209 return eventNotHandledErr;
1210
1211 // Pass the event onto the movie controller
1212 EventRecord theEvent;
1213 ConvertEventRefToEventRecord( inEvent, &theEvent );
1214 OSStatus err;
1215
1216 // TODO: Apple says MCIsPlayerEvent is depreciated and
1217 // MCClick, MCKey, MCIdle etc. should be used
1218 // (RN: Of course that's what they say about
1219 // CreateMovieControl and HIMovieView as well, LOL!)
1220 err = ::MCIsPlayerEvent( be->m_mc, &theEvent );
1221
1222 // Pass on to other event handlers if not handled- i.e. wx
1223 if (err != noErr)
1224 return noErr;
1225 else
1226 return eventNotHandledErr;
1227}
1228
1229#endif
1230
1231// in source file that contains stuff you don't directly use
1232#include "wx/html/forcelnk.h"
1233FORCE_LINK_ME(basewxmediabackends)
1234
1235#endif // wxUSE_MEDIACTRL