[34] | 1 | //
|
---|
| 2 | // PSMovieAlertController.m
|
---|
| 3 | // Pester
|
---|
| 4 | //
|
---|
| 5 | // Created by Nicholas Riley on Sat Oct 26 2002.
|
---|
| 6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
| 7 | //
|
---|
| 8 |
|
---|
| 9 | #import "PSAlarmAlertController.h"
|
---|
| 10 | #import "PSMovieAlertController.h"
|
---|
| 11 | #import "PSMovieAlert.h"
|
---|
[41] | 12 | #import "NSMovie-NJRExtensions.h"
|
---|
[34] | 13 | #import <QuickTime/Movies.h>
|
---|
| 14 |
|
---|
| 15 | @implementation PSMovieAlertController
|
---|
| 16 |
|
---|
[53] | 17 | + (PSMovieAlertController *)controllerWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert;
|
---|
[34] | 18 | {
|
---|
[53] | 19 | return [[self alloc] initWithAlarm: anAlarm movieAlert: anAlert];
|
---|
[34] | 20 | }
|
---|
| 21 |
|
---|
| 22 | - (void)play;
|
---|
| 23 | {
|
---|
| 24 | NSTimeInterval delay;
|
---|
| 25 | if (repetitions == 0) return;
|
---|
| 26 | if (IsMovieDone((Movie)theMovie) || repetitionsRemaining == repetitions) {
|
---|
| 27 | if (repetitionsRemaining == 0) {
|
---|
| 28 | [self close];
|
---|
| 29 | return;
|
---|
| 30 | }
|
---|
| 31 | repetitionsRemaining--;
|
---|
| 32 | [movieView gotoBeginning: self];
|
---|
| 33 | [movieView start: self];
|
---|
| 34 | }
|
---|
| 35 | delay = (GetMovieDuration((Movie)theMovie) - GetMovieTime((Movie)theMovie, NULL)) / (double)GetMovieTimeScale((Movie)theMovie);
|
---|
[60] | 36 | // XXX should use a timebase callback for this instead (see NJRQTMediaPopUpButton); also, use QuickTimeÕs built-in loop functionality instead of rolling our own?
|
---|
[34] | 37 | [self performSelector: @selector(play) withObject: nil afterDelay: delay inModes: [NSArray arrayWithObject: NSDefaultRunLoopMode]];
|
---|
| 38 | }
|
---|
| 39 |
|
---|
[53] | 40 | - (id)initWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert;
|
---|
[34] | 41 | {
|
---|
| 42 | if ([self initWithWindowNibName: @"Movie alert"]) {
|
---|
[53] | 43 | NSMovie *movie = [anAlert movie];
|
---|
[34] | 44 | NSWindow *window = [self window]; // connect outlets
|
---|
[53] | 45 | alarm = anAlarm;
|
---|
| 46 | alert = anAlert;
|
---|
[34] | 47 | [movieView setMovie: movie];
|
---|
| 48 | theMovie = [movie QTMovie];
|
---|
| 49 | if ([alert hasVideo]) {
|
---|
| 50 | NSRect screenRect = [[window screen] visibleFrame];
|
---|
| 51 | float magnification = 1.0;
|
---|
| 52 | NSSize movieSize;
|
---|
[60] | 53 | NSSize minSize = [window minSize];
|
---|
| 54 | float windowFrameHeight = [window frame].size.height - [[window contentView] frame].size.height;
|
---|
[34] | 55 | NSRect frame;
|
---|
[60] | 56 | screenRect.size.height -= windowFrameHeight;
|
---|
| 57 | minSize.height -= windowFrameHeight;
|
---|
[34] | 58 | while (1) {
|
---|
| 59 | movieSize = [movieView sizeForMagnification: magnification];
|
---|
[40] | 60 | movieSize.height -= 16; // controller is hidden, but its size is included (documented, ergh)
|
---|
[34] | 61 | if (movieSize.width > screenRect.size.width || movieSize.height > screenRect.size.height)
|
---|
| 62 | magnification /= 2;
|
---|
| 63 | else
|
---|
| 64 | break;
|
---|
| 65 | }
|
---|
[60] | 66 | if (movieSize.width < minSize.width) movieSize.width = minSize.width;
|
---|
| 67 | if (movieSize.height < minSize.height) movieSize.width = minSize.height;
|
---|
[34] | 68 | [window setContentSize: movieSize];
|
---|
| 69 | [window center];
|
---|
| 70 | frame = [window frame];
|
---|
[45] | 71 | frame.origin.y -= 400; // appear below notifier window - XXX this is very inaccurate, fix
|
---|
[34] | 72 | if (frame.origin.y < screenRect.origin.y) frame.origin.y = screenRect.origin.y;
|
---|
| 73 | [window setFrame: frame display: NO];
|
---|
| 74 | [window setTitle: [alarm message]];
|
---|
[53] | 75 | { // XXX workaround for (IMO) ugly appearance of Cocoa utility windows
|
---|
| 76 | NSView *miniButton = [window standardWindowButton: NSWindowMiniaturizeButton],
|
---|
| 77 | *zoomButton = [window standardWindowButton: NSWindowZoomButton];
|
---|
| 78 | // NOTE: this will not work if the window is resizable: when the frame is reset, the standard buttons reappear
|
---|
| 79 | [miniButton setFrameOrigin: NSMakePoint(-100, -100)];
|
---|
| 80 | [zoomButton setFrameOrigin: NSMakePoint(-100, -100)];
|
---|
| 81 | [[miniButton superview] setNeedsDisplay: YES];
|
---|
| 82 | [[zoomButton superview] setNeedsDisplay: YES];
|
---|
| 83 | }
|
---|
[34] | 84 | [[self window] orderFrontRegardless];
|
---|
| 85 | }
|
---|
| 86 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(close) name: PSAlarmAlertStopNotification object: nil];
|
---|
| 87 | repetitions = [alert repetitions];
|
---|
| 88 | repetitionsRemaining = repetitions;
|
---|
[41] | 89 | if (![movie isStatic]) [self play]; // if it's an image, don't close the window automatically
|
---|
[34] | 90 | }
|
---|
| 91 | return self;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | - (void)dealloc;
|
---|
| 95 | {
|
---|
| 96 | [[NSNotificationCenter defaultCenter] removeObserver: self];
|
---|
| 97 | [super dealloc];
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | @end
|
---|
| 101 |
|
---|
| 102 | @implementation PSMovieAlertController (NSWindowNotifications)
|
---|
| 103 |
|
---|
| 104 | - (void)windowWillClose:(NSNotification *)notification;
|
---|
| 105 | {
|
---|
| 106 | repetitions = 0;
|
---|
| 107 | [movieView stop: self];
|
---|
[53] | 108 | [alert completedForAlarm: alarm];
|
---|
| 109 | [self autorelease];
|
---|
[34] | 110 | // note: there may still be a retained copy of this object until the runloop timer has let go of us at the end of the current movie playback cycle; donÕt worry about it.
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | @end |
---|