123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- //
- // ZFPortraitControlView.m
- // ZFPlayer
- //
- // Copyright (c) 2016年 任子丰 ( http://github.com/renzifeng )
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #import "ZFPortraitControlView.h"
- #import "UIView+ZFFrame.h"
- #import "ZFUtilities.h"
- #if __has_include(<ZFPlayer/ZFPlayer.h>)
- #import <ZFPlayer/ZFPlayer.h>
- #else
- #import "ZFPlayer.h"
- #endif
- @interface ZFPortraitControlView () <ZFSliderViewDelegate>
- /// 底部工具栏
- @property (nonatomic, strong) UIView *bottomToolView;
- /// 顶部工具栏
- @property (nonatomic, strong) UIView *topToolView;
- /// 标题
- @property (nonatomic, strong) UILabel *titleLabel;
- /// 播放或暂停按钮
- @property (nonatomic, strong) UIButton *playOrPauseBtn;
- /// 播放的当前时间
- @property (nonatomic, strong) UILabel *currentTimeLabel;
- /// 滑杆
- @property (nonatomic, strong) ZFSliderView *slider;
- /// 视频总时间
- @property (nonatomic, strong) UILabel *totalTimeLabel;
- /// 全屏按钮
- @property (nonatomic, strong) UIButton *fullScreenBtn;
- @property (nonatomic, assign) BOOL isShow;
- @end
- @implementation ZFPortraitControlView
- - (instancetype)initWithFrame:(CGRect)frame {
- if (self = [super initWithFrame:frame]) {
- // 添加子控件
- [self addSubview:self.topToolView];
- [self addSubview:self.bottomToolView];
- [self addSubview:self.playOrPauseBtn];
- [self.topToolView addSubview:self.titleLabel];
- [self.bottomToolView addSubview:self.currentTimeLabel];
- [self.bottomToolView addSubview:self.slider];
- [self.bottomToolView addSubview:self.totalTimeLabel];
- [self.bottomToolView addSubview:self.fullScreenBtn];
-
- // 设置子控件的响应事件
- [self makeSubViewsAction];
-
- [self resetControlView];
- self.clipsToBounds = YES;
- }
- return self;
- }
- - (void)layoutSubviews {
- [super layoutSubviews];
-
- CGFloat min_x = 0;
- CGFloat min_y = 0;
- CGFloat min_w = 0;
- CGFloat min_h = 0;
- CGFloat min_view_w = self.bounds.size.width;
- CGFloat min_view_h = self.bounds.size.height;
- CGFloat min_margin = 9;
-
- min_x = 0;
- min_y = 0;
- min_w = min_view_w;
- min_h = 40;
- self.topToolView.frame = CGRectMake(min_x, min_y, min_w, min_h);
-
- min_x = 15;
- min_y = 5;
- min_w = min_view_w - min_x - 15;
- min_h = 30;
- self.titleLabel.frame = CGRectMake(min_x, min_y, min_w, min_h);
-
- min_h = 40;
- min_x = 0;
- min_y = min_view_h - min_h;
- min_w = min_view_w;
- self.bottomToolView.frame = CGRectMake(min_x, min_y, min_w, min_h);
-
- min_x = 0;
- min_y = 0;
- min_w = 44;
- min_h = min_w;
- self.playOrPauseBtn.frame = CGRectMake(min_x, min_y, min_w, min_h);
- self.playOrPauseBtn.center = self.center;
-
- min_x = min_margin;
- min_w = 62;
- min_h = 28;
- min_y = (self.bottomToolView.zf_height - min_h)/2;
- self.currentTimeLabel.frame = CGRectMake(min_x, min_y, min_w, min_h);
-
- min_w = 28;
- min_h = min_w;
- min_x = self.bottomToolView.zf_width - min_w - min_margin;
- min_y = 0;
- self.fullScreenBtn.frame = CGRectMake(min_x, min_y, min_w, min_h);
- self.fullScreenBtn.zf_centerY = self.currentTimeLabel.zf_centerY;
-
- min_w = 62;
- min_h = 28;
- min_x = self.fullScreenBtn.zf_left - min_w - 4;
- min_y = 0;
- self.totalTimeLabel.frame = CGRectMake(min_x, min_y, min_w, min_h);
- self.totalTimeLabel.zf_centerY = self.currentTimeLabel.zf_centerY;
-
- min_x = self.currentTimeLabel.zf_right + 4;
- min_y = 0;
- min_w = self.totalTimeLabel.zf_left - min_x - 4;
- min_h = 30;
- self.slider.frame = CGRectMake(min_x, min_y, min_w, min_h);
- self.slider.zf_centerY = self.currentTimeLabel.zf_centerY;
-
- if (!self.isShow) {
- self.topToolView.zf_y = -self.topToolView.zf_height;
- self.bottomToolView.zf_y = self.zf_height;
- self.playOrPauseBtn.alpha = 0;
- } else {
- self.topToolView.zf_y = 0;
- self.bottomToolView.zf_y = self.zf_height - self.bottomToolView.zf_height;
- self.playOrPauseBtn.alpha = 1;
- }
- }
- - (void)makeSubViewsAction {
- [self.playOrPauseBtn addTarget:self action:@selector(playPauseButtonClickAction:) forControlEvents:UIControlEventTouchUpInside];
- [self.fullScreenBtn addTarget:self action:@selector(fullScreenButtonClickAction:) forControlEvents:UIControlEventTouchUpInside];
- }
- #pragma mark - action
- - (void)playPauseButtonClickAction:(UIButton *)sender {
- [self playOrPause];
- }
- - (void)fullScreenButtonClickAction:(UIButton *)sender {
- [self.player enterFullScreen:YES animated:YES];
- }
- /// 根据当前播放状态取反
- - (void)playOrPause {
- self.playOrPauseBtn.selected = !self.playOrPauseBtn.isSelected;
- self.playOrPauseBtn.isSelected? [self.player.currentPlayerManager play]: [self.player.currentPlayerManager pause];
- }
- - (void)playBtnSelectedState:(BOOL)selected {
- self.playOrPauseBtn.selected = selected;
- }
- #pragma mark - ZFSliderViewDelegate
- - (void)sliderTouchBegan:(float)value {
- self.slider.isdragging = YES;
- }
- - (void)sliderTouchEnded:(float)value {
- if (self.player.totalTime > 0) {
- self.slider.isdragging = YES;
- if (self.sliderValueChanging) self.sliderValueChanging(value, self.slider.isForward);
- @weakify(self)
- [self.player seekToTime:self.player.totalTime*value completionHandler:^(BOOL finished) {
- @strongify(self)
- if (finished) {
- self.slider.isdragging = NO;
- if (self.sliderValueChanged) self.sliderValueChanged(value);
- }
- }];
- if (self.seekToPlay) {
- [self.player.currentPlayerManager play];
- }
- } else {
- self.slider.isdragging = NO;
- self.slider.value = 0;
- }
- }
- - (void)sliderValueChanged:(float)value {
- if (self.player.totalTime == 0) {
- self.slider.value = 0;
- return;
- }
- self.slider.isdragging = YES;
- NSString *currentTimeString = [ZFUtilities convertTimeSecond:self.player.totalTime*value];
- self.currentTimeLabel.text = currentTimeString;
- if (self.sliderValueChanging) self.sliderValueChanging(value,self.slider.isForward);
- }
- - (void)sliderTapped:(float)value {
- [self sliderTouchEnded:value];
- NSString *currentTimeString = [ZFUtilities convertTimeSecond:self.player.totalTime*value];
- self.currentTimeLabel.text = currentTimeString;
- }
- #pragma mark - public method
- /** 重置ControlView */
- - (void)resetControlView {
- self.bottomToolView.alpha = 1;
- self.slider.value = 0;
- self.slider.bufferValue = 0;
- self.currentTimeLabel.text = @"00:00";
- self.totalTimeLabel.text = @"00:00";
- self.backgroundColor = [UIColor clearColor];
- self.playOrPauseBtn.selected = YES;
- self.titleLabel.text = @"";
- }
- - (void)showControlView {
- self.topToolView.alpha = 1;
- self.bottomToolView.alpha = 1;
- self.isShow = YES;
- self.topToolView.zf_y = 0;
- self.bottomToolView.zf_y = self.zf_height - self.bottomToolView.zf_height;
- self.playOrPauseBtn.alpha = 1;
- self.player.statusBarHidden = NO;
- }
- - (void)hideControlView {
- self.isShow = NO;
- self.topToolView.zf_y = -self.topToolView.zf_height;
- self.bottomToolView.zf_y = self.zf_height;
- self.player.statusBarHidden = NO;
- self.playOrPauseBtn.alpha = 0;
- self.topToolView.alpha = 0;
- self.bottomToolView.alpha = 0;
- }
- - (BOOL)shouldResponseGestureWithPoint:(CGPoint)point withGestureType:(ZFPlayerGestureType)type touch:(nonnull UITouch *)touch {
- CGRect sliderRect = [self.bottomToolView convertRect:self.slider.frame toView:self];
- if (CGRectContainsPoint(sliderRect, point)) {
- return NO;
- }
- return YES;
- }
- - (void)videoPlayer:(ZFPlayerController *)videoPlayer currentTime:(NSTimeInterval)currentTime totalTime:(NSTimeInterval)totalTime {
- if (!self.slider.isdragging) {
- NSString *currentTimeString = [ZFUtilities convertTimeSecond:currentTime];
- self.currentTimeLabel.text = currentTimeString;
- NSString *totalTimeString = [ZFUtilities convertTimeSecond:totalTime];
- self.totalTimeLabel.text = totalTimeString;
- self.slider.value = videoPlayer.progress;
- }
- }
- - (void)videoPlayer:(ZFPlayerController *)videoPlayer bufferTime:(NSTimeInterval)bufferTime {
- self.slider.bufferValue = videoPlayer.bufferProgress;
- }
- - (void)showTitle:(NSString *)title fullScreenMode:(ZFFullScreenMode)fullScreenMode {
- self.titleLabel.text = title;
- self.player.orientationObserver.fullScreenMode = fullScreenMode;
- }
- /// 调节播放进度slider和当前时间更新
- - (void)sliderValueChanged:(CGFloat)value currentTimeString:(NSString *)timeString {
- self.slider.value = value;
- self.currentTimeLabel.text = timeString;
- self.slider.isdragging = YES;
- [UIView animateWithDuration:0.3 animations:^{
- self.slider.sliderBtn.transform = CGAffineTransformMakeScale(1.2, 1.2);
- }];
- }
- /// 滑杆结束滑动
- - (void)sliderChangeEnded {
- self.slider.isdragging = NO;
- [UIView animateWithDuration:0.3 animations:^{
- self.slider.sliderBtn.transform = CGAffineTransformIdentity;
- }];
- }
- #pragma mark - getter
- - (UIView *)topToolView {
- if (!_topToolView) {
- _topToolView = [[UIView alloc] init];
- UIImage *image = ZFPlayer_Image(@"ZFPlayer_top_shadow");
- _topToolView.layer.contents = (id)image.CGImage;
- }
- return _topToolView;
- }
- - (UILabel *)titleLabel {
- if (!_titleLabel) {
- _titleLabel = [[UILabel alloc] init];
- _titleLabel.textColor = [UIColor whiteColor];
- _titleLabel.font = [UIFont systemFontOfSize:15.0];
- }
- return _titleLabel;
- }
- - (UIView *)bottomToolView {
- if (!_bottomToolView) {
- _bottomToolView = [[UIView alloc] init];
- UIImage *image = ZFPlayer_Image(@"ZFPlayer_bottom_shadow");
- _bottomToolView.layer.contents = (id)image.CGImage;
- }
- return _bottomToolView;
- }
- - (UIButton *)playOrPauseBtn {
- if (!_playOrPauseBtn) {
- _playOrPauseBtn = [UIButton buttonWithType:UIButtonTypeCustom];
- [_playOrPauseBtn setImage:ZFPlayer_Image(@"new_allPlay_44x44_") forState:UIControlStateNormal];
- [_playOrPauseBtn setImage:ZFPlayer_Image(@"new_allPause_44x44_") forState:UIControlStateSelected];
- }
- return _playOrPauseBtn;
- }
- - (UILabel *)currentTimeLabel {
- if (!_currentTimeLabel) {
- _currentTimeLabel = [[UILabel alloc] init];
- _currentTimeLabel.textColor = [UIColor whiteColor];
- _currentTimeLabel.font = [UIFont systemFontOfSize:14.0f];
- _currentTimeLabel.textAlignment = NSTextAlignmentCenter;
- }
- return _currentTimeLabel;
- }
- - (ZFSliderView *)slider {
- if (!_slider) {
- _slider = [[ZFSliderView alloc] init];
- _slider.delegate = self;
- _slider.maximumTrackTintColor = [UIColor colorWithRed:0.5 green:0.5 blue:0.5 alpha:0.8];
- _slider.bufferTrackTintColor = [UIColor colorWithRed:1 green:1 blue:1 alpha:0.5];
- _slider.minimumTrackTintColor = [UIColor whiteColor];
- [_slider setThumbImage:ZFPlayer_Image(@"ZFPlayer_slider") forState:UIControlStateNormal];
- _slider.sliderHeight = 2;
- }
- return _slider;
- }
- - (UILabel *)totalTimeLabel {
- if (!_totalTimeLabel) {
- _totalTimeLabel = [[UILabel alloc] init];
- _totalTimeLabel.textColor = [UIColor whiteColor];
- _totalTimeLabel.font = [UIFont systemFontOfSize:14.0f];
- _totalTimeLabel.textAlignment = NSTextAlignmentCenter;
- }
- return _totalTimeLabel;
- }
- - (UIButton *)fullScreenBtn {
- if (!_fullScreenBtn) {
- _fullScreenBtn = [UIButton buttonWithType:UIButtonTypeCustom];
- [_fullScreenBtn setImage:ZFPlayer_Image(@"ZFPlayer_fullscreen") forState:UIControlStateNormal];
- }
- return _fullScreenBtn;
- }
- @end
|