Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
//
//  ViewController.m
//  AudioStory
//
//  Created by Fabrizio on 08/10/12.
//  Copyright (c) 2012 Odyssey. All rights reserved.
//

#import "ViewController.h"
#import "AboutVC.h"
#import <AVFoundation/AVFoundation.h>

@interface ViewController ()

@end

@implementation ViewController

@synthesize indexView;
@synthesize indexTableView;
@synthesize rootView;
@synthesize chapterNumber;
@synthesize chapterDuration;
@synthesize contentWebView;
@synthesize progressView;
@synthesize mp;
@synthesize goBackButton;
@synthesize goOnButton;
@synthesize fadeView;
@synthesize urlToPlay;
@synthesize playPauseButton;
@synthesize indexBkgView;

@synthesize slider;

#define PROGRESS_UPDATE_SECONDS      1.0

#pragma mark -
#pragma mark Initialization / Memory Management

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationFade];
    
    [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
    
    AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    [audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];
    [audioSession setActive:YES error:nil];
    
    screen = [UIScreen mainScreen];
    fullScreenRect = screen.bounds;
    
    indexNumber = 0;
    [self chapterToShow:indexNumber];
    [self updateButtonsState];
    
    durationInSeconds = 0;
    playerState = 0;
    
    self.mp = [[MPMoviePlayerController alloc]init];
    [self.mp prepareToPlay];
}

- (void) viewDidAppear:(BOOL)animated {
    [super viewDidAppear:NO];
    
    CGPoint origin = CGPointMake(0.0, self.rootView.frame.size.height - CGSizeFromGADAdSize(kGADAdSizeBanner).height);
    
    bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner origin:origin];
    
    bannerView_.adUnitID = BANNER_ID;
    bannerView_.rootViewController = self;
    [self.rootView addSubview:bannerView_];
    
    [bannerView_ loadRequest:[GADRequest request]];
}

- (void)viewDidUnload {
    [super viewDidUnload];
    
    [self setIndexView:nil];
    [self setIndexTableView:nil];
    [self setRootView:nil];
    [self setChapterNumber:nil];
    [self setChapterDuration:nil];
    [self setContentWebView:nil];
    [self setProgressView:nil];
    [self setMp:nil];
    [self setGoOnButton:nil];
    [self setGoBackButton:nil];
    [self setFadeView:nil];
    [self setUrlToPlay:nil];
    [self setPlayPauseButton:nil];
    [self setIndexBkgView:nil];
    [self setSlider:nil];
}

#pragma mark -
#pragma mark View Transitions

- (void) doInitFade {
    
	[UIView beginAnimations:nil context:nil];
	[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
	[UIView setAnimationDuration:0.5];
}

- (void) letIndexViewVisible {
	[self doInitFade];

    if(fullScreenRect.size.height == 1136) {
        indexBkgView.image = [UIImage imageNamed:@"indexBackground.png"];
    }
    else {
        indexBkgView.image = [UIImage imageNamed:@"indexBackground1136h.png"];
    }
    
    indexView.alpha = 1.0;
    
    [UIView commitAnimations];
}

- (void) letRootViewVisible {
	[self doInitFade];
	   
    indexView.alpha = 0.0;
    
    [UIView commitAnimations];
}

- (void) changeChapter {
    [self doInitFade];
    fadeView.alpha = 1.0;
    contentWebView.alpha = 0.0;
    [UIView commitAnimations];

    [self doInitFade];
    contentWebView.alpha = 1.0;
    fadeView.alpha = 0.0;
    [UIView commitAnimations];
}

#pragma mark -
#pragma mark Chapter to Show

- (void) updateChapterLabel:(int)index {
    self.chapterNumber.text = [NSString stringWithFormat:@"%d", index + 1];
    
    if (index == 0) {
        self.chapterDuration.text = C1_DURATION_TEXT;
        [slider setMaximumValue:C1_DURATION_FLOAT];
        durationInSeconds = C1_DURATION_SECS;
    }
    else if(index == 1){
        self.chapterDuration.text = C2_DURATION_TEXT;
        [slider setMaximumValue:C2_DURATION_FLOAT];
        durationInSeconds = C2_DURATION_SECS;
    }
    else if(index == 2) {
        self.chapterDuration.text = C3_DURATION_TEXT;
        [slider setMaximumValue:C3_DURATION_FLOAT];
        durationInSeconds = C3_DURATION_SECS;
    }
    else {
        self.chapterDuration.text = @"0:00";
        [slider setMaximumValue:0.0f];
        durationInSeconds = 0;
    }
}

- (void) chapterToShow:(int)index {
    
    [self updateChapterLabel:index];
    
    [self changeChapter];
    
    switch (index) {
        case 0:
            [contentWebView loadRequest:[NSURLRequest requestWithURL:Chapter1URL]];
            break;
        case 1:
            [contentWebView loadRequest:[NSURLRequest requestWithURL:Chapter2URL]];
            break;
        case 2:
            [contentWebView loadRequest:[NSURLRequest requestWithURL:Chapter3URL]];
            break;
            
        default:
            break;
    }
}
    
#pragma mark -
#pragma mark Timer

- (void) startTimer {
    timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(count:) userInfo:nil repeats:YES];
}

- (void) count:(NSTimer*)theTimer {
    if(isPlaying)
        [slider setValue:slider.value+1];
    
    if(slider.value == slider.maximumValue) {
        [timer invalidate];
    }
}

#pragma mark -
#pragma mark Buttons State

- (void) updateButtonsState {
    
    if(indexNumber  == 0){
        goBackButton.enabled = NO;
        goOnButton.enabled = YES;
    }
    else if(indexNumber == 2) {
        goBackButton.enabled = YES;
        goOnButton.enabled = NO;
    }
    else {
        goBackButton.enabled = YES;
        goOnButton.enabled = YES;
    }
}

#pragma mark -
#pragma mark IBActions

- (IBAction)openAbout {
    AboutVC *aboutVC = [[AboutVC alloc] initWithNibName:nil bundle:nil];
    aboutVC.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
	[self presentModalViewController:aboutVC animated:YES];
}

- (IBAction)doOpenCloseIndexView:(id)sender {
    
    UIButton *button = sender;
    
    if(button.tag == 1){
        
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePreloadDidFinish:) name:MPMoviePlayerLoadStateDidChangeNotification  object:nil];
        
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playbackStateChanged) name:MPMoviePlayerPlaybackStateDidChangeNotification object:nil];
        
        [slider setValue:0.0f animated:YES];
        
        [self.mp stop];
        
        [self letIndexViewVisible];
    }
    else {
        [self letRootViewVisible];
    }
}

- (IBAction)doGoOnGoBack:(id)sender {
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePreloadDidFinish:)
                                                 name:MPMoviePlayerLoadStateDidChangeNotification  object:nil];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(playbackStateChanged)
                                                 name:MPMoviePlayerPlaybackStateDidChangeNotification object:nil];
    
    [slider setValue:0.0f animated:YES];

    [self.mp stop];
    
    UIButton *button = sender;
    
    if(button.tag == 1){
        indexNumber --;
    }
    else {
        indexNumber ++;
    }
    
    [self chapterToShow:indexNumber];
    [self updateButtonsState];
}

- (IBAction)doPlayPause {
        
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePreloadDidFinish:)
                                                 name:MPMoviePlayerLoadStateDidChangeNotification  object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(playbackStateChanged)
                                                 name:MPMoviePlayerPlaybackStateDidChangeNotification object:nil];
    
    if(isPlaying) {
        [self.mp pause];        
    }
    else {
        
        if(playerState == 2) {
            [self.mp play];
        }
        else {
            switch (indexNumber) {
                case 0:
                    urlToPlay = Audio1URL;
                    break;
                case 1:
                    urlToPlay = Audio2URL;
                    break;
                case 2:
                    urlToPlay = Audio3URL;
                    break;
                    
                default:
                    break;
            }
            
            [self.mp setContentURL:urlToPlay];
            self.mp.useApplicationAudioSession = true;
            [self.mp play];
        }
    }
}

#pragma mark -
#pragma mark MoviePlayer Events Notification

- (void) moviePreloadDidFinish:(NSNotification*)notification {    
    [[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerLoadStateDidChangeNotification object:nil];
}

- (void) playbackStateChanged {
    /*
     enum {
     MPMoviePlaybackStateStopped,
     MPMoviePlaybackStatePlaying,
     MPMoviePlaybackStatePaused,
     MPMoviePlaybackStateInterrupted,
     MPMoviePlaybackStateSeekingForward,
     MPMoviePlaybackStateSeekingBackward
     };
     typedef NSInteger MPMoviePlaybackState;
     */
    
    [[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerPlaybackStateDidChangeNotification object:nil];

    playerState = mp.playbackState;
    
    switch (mp.playbackState) {
        case 1:
            isPlaying = YES;
            [self startTimer];
            [playPauseButton setBackgroundImage:[UIImage imageNamed:@"pause.png"] forState:UIControlStateNormal];
            break;

        default:
            isPlaying = NO;
            [timer invalidate];
            [playPauseButton setBackgroundImage:[UIImage imageNamed:@"PalyerBtn.png"] forState:UIControlStateNormal];
            break;
    }
}

#pragma mark -
#pragma mark Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 3;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
    }
    
    [cell setSelectionStyle:UITableViewCellSelectionStyleGray];
    cell.textLabel.font = [UIFont fontWithName:@"Arial-BoldMT" size:16];
    
    cell.textLabel.text = [NSString stringWithFormat:@"Capitolo %d", indexPath.row + 1];
    
    if (indexPath.row == 0) {
        cell.detailTextLabel.text = C1_DURATION_TEXT;
    }
    else if(indexPath.row == 1){
        cell.detailTextLabel.text = C2_DURATION_TEXT;
    }
    else if(indexPath.row == 2) {
        cell.detailTextLabel.text = C3_DURATION_TEXT;
    }
    
    [cell.detailTextLabel setTextColor:[UIColor blackColor]];
    
    return cell;
}

#pragma mark -
#pragma mark Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UIButton *button = [[UIButton alloc] init];
    button.tag = 2;
    
    [self chapterToShow:indexPath.row];
    indexNumber = indexPath.row;
    
    [self updateButtonsState];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePreloadDidFinish:)
                                                 name:MPMoviePlayerLoadStateDidChangeNotification  object:nil];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(playbackStateChanged)
                                                 name:MPMoviePlayerPlaybackStateDidChangeNotification object:nil];
    
    [slider setValue:0.0f animated:YES];
    
    if(isPlaying) {
        [self.mp stop];
    }
    
    [self doOpenCloseIndexView:button];
    
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

@end

Commits for Nextrek/iOS/AudioStory/AudioStory/ViewController.m

Diff revisions: vs.
Revision Author Commited Message
65 FAquili picture FAquili Thu 23 Jan, 2014 14:17:21 +0000

Audiostories:
- Candelora
- Giacomino
- Il treno ha fischiato
- Signore nave