NCPlayerToolBar.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. //
  2. // NCPlayerToolBar.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/07/21.
  6. // Copyright © 2021 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. import NextcloudKit
  25. import CoreMedia
  26. import UIKit
  27. import AVKit
  28. import MediaPlayer
  29. import MobileVLCKit
  30. import FloatingPanel
  31. class NCPlayerToolBar: UIView {
  32. @IBOutlet weak var utilityView: UIStackView!
  33. @IBOutlet weak var fullscreenButton: UIButton!
  34. @IBOutlet weak var subtitleButton: UIButton!
  35. @IBOutlet weak var audioButton: UIButton!
  36. @IBOutlet weak var playerButtonView: UIStackView!
  37. @IBOutlet weak var backButton: UIButton!
  38. @IBOutlet weak var playButton: UIButton!
  39. @IBOutlet weak var forwardButton: UIButton!
  40. @IBOutlet weak var playbackSliderView: UIView!
  41. @IBOutlet weak var playbackSlider: UISlider!
  42. @IBOutlet weak var labelLeftTime: UILabel!
  43. @IBOutlet weak var labelCurrentTime: UILabel!
  44. enum sliderEventType {
  45. case began
  46. case ended
  47. case moved
  48. }
  49. var playbackSliderEvent: sliderEventType = .ended
  50. var isFullscreen: Bool = false
  51. private var ncplayer: NCPlayer?
  52. private var metadata: tableMetadata?
  53. private let audioSession = AVAudioSession.sharedInstance()
  54. private var subTitleIndex: Int32?
  55. private var audioIndex: Int32?
  56. private var pointSize: CGFloat = 0
  57. private weak var viewerMediaPage: NCViewerMediaPage?
  58. // MARK: - View Life Cycle
  59. override func awakeFromNib() {
  60. super.awakeFromNib()
  61. backgroundColor = UIColor.black.withAlphaComponent(0.1)
  62. fullscreenButton.setImage(NCUtility.shared.loadImage(named: "arrow.up.left.and.arrow.down.right", color: .white), for: .normal)
  63. subtitleButton.setImage(NCUtility.shared.loadImage(named: "captions.bubble", color: .white), for: .normal)
  64. subtitleButton.isEnabled = false
  65. audioButton.setImage(NCUtility.shared.loadImage(named: "speaker.zzz", color: .white), for: .normal)
  66. audioButton.isEnabled = false
  67. if UIDevice.current.userInterfaceIdiom == .pad {
  68. pointSize = 60
  69. } else {
  70. pointSize = 50
  71. }
  72. playerButtonView.spacing = pointSize
  73. playerButtonView.isHidden = true
  74. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.10", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  75. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  76. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.10", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  77. playbackSlider.setThumbImage(UIImage(systemName: "circle.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 15)), for: .normal)
  78. playbackSlider.value = 0
  79. playbackSlider.tintColor = .white
  80. playbackSlider.addTarget(self, action: #selector(playbackValChanged(slider:event:)), for: .valueChanged)
  81. utilityView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tap(gestureRecognizer:))))
  82. playbackSliderView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tap(gestureRecognizer:))))
  83. playerButtonView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tap(gestureRecognizer:))))
  84. labelCurrentTime.textColor = .white
  85. labelLeftTime.textColor = .white
  86. // Normally hide
  87. self.alpha = 0
  88. self.isHidden = true
  89. }
  90. required init?(coder aDecoder: NSCoder) {
  91. super.init(coder: aDecoder)
  92. }
  93. deinit {
  94. print("deinit NCPlayerToolBar")
  95. }
  96. // MARK: -
  97. func setBarPlayer(position: Float, ncplayer: NCPlayer? = nil, metadata: tableMetadata? = nil, viewerMediaPage: NCViewerMediaPage? = nil) {
  98. if let ncplayer = ncplayer {
  99. self.ncplayer = ncplayer
  100. }
  101. if let metadata = metadata {
  102. self.metadata = metadata
  103. }
  104. if let viewerMediaPage = viewerMediaPage {
  105. self.viewerMediaPage = viewerMediaPage
  106. }
  107. playerButtonView.isHidden = true
  108. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  109. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 0
  110. playbackSlider.value = position
  111. labelCurrentTime.text = "--:--"
  112. labelLeftTime.text = "--:--"
  113. if viewerMediaScreenMode == .normal {
  114. show()
  115. } else {
  116. hide()
  117. }
  118. }
  119. public func update() {
  120. guard let ncplayer = self.ncplayer,
  121. let length = ncplayer.player.media?.length.intValue
  122. else { return }
  123. let position = ncplayer.player.position
  124. let positionInSecond = position * Float(length / 1000)
  125. // SLIDER & TIME
  126. if playbackSliderEvent == .ended {
  127. playbackSlider.value = position
  128. }
  129. labelCurrentTime.text = ncplayer.player.time.stringValue
  130. labelLeftTime.text = ncplayer.player.remainingTime?.stringValue
  131. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPMediaItemPropertyPlaybackDuration] = length / 1000
  132. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyElapsedPlaybackTime] = positionInSecond
  133. }
  134. public func updateTopToolBar(videoSubTitlesIndexes: [Any], audioTrackIndexes: [Any]) {
  135. self.subtitleButton.isEnabled = !videoSubTitlesIndexes.isEmpty
  136. self.audioButton.isEnabled = !audioTrackIndexes.isEmpty
  137. }
  138. // MARK: -
  139. public func show() {
  140. UIView.animate(withDuration: 0.3, animations: {
  141. self.alpha = 1
  142. }, completion: { (_: Bool) in
  143. self.isHidden = false
  144. })
  145. }
  146. func hide() {
  147. UIView.animate(withDuration: 0.3, animations: {
  148. self.alpha = 0
  149. }, completion: { (_: Bool) in
  150. self.isHidden = true
  151. })
  152. }
  153. func playButtonPause() {
  154. playButton.setImage(NCUtility.shared.loadImage(named: "pause.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  155. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 1
  156. }
  157. func playButtonPlay() {
  158. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  159. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 0
  160. }
  161. // MARK: - Event / Gesture
  162. @objc func playbackValChanged(slider: UISlider, event: UIEvent) {
  163. guard let touchEvent = event.allTouches?.first,
  164. let ncplayer = ncplayer
  165. else { return }
  166. let newPosition = playbackSlider.value
  167. switch touchEvent.phase {
  168. case .began:
  169. viewerMediaPage?.timerAutoHide?.invalidate()
  170. playbackSliderEvent = .began
  171. case .moved:
  172. ncplayer.playerPosition(newPosition)
  173. playbackSliderEvent = .moved
  174. case .ended:
  175. ncplayer.playerPosition(newPosition)
  176. DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
  177. self.playbackSliderEvent = .ended
  178. self.viewerMediaPage?.startTimerAutoHide()
  179. }
  180. default:
  181. break
  182. }
  183. }
  184. // MARK: - Action
  185. @objc func tap(gestureRecognizer: UITapGestureRecognizer) { }
  186. @IBAction func tapFullscreen(_ sender: Any) {
  187. isFullscreen = !isFullscreen
  188. if isFullscreen {
  189. fullscreenButton.setImage(NCUtility.shared.loadImage(named: "arrow.down.right.and.arrow.up.left", color: .white), for: .normal)
  190. } else {
  191. fullscreenButton.setImage(NCUtility.shared.loadImage(named: "arrow.up.left.and.arrow.down.right", color: .white), for: .normal)
  192. }
  193. viewerMediaPage?.changeScreenMode(mode: viewerMediaScreenMode)
  194. }
  195. @IBAction func tapSubTitle(_ sender: Any) {
  196. guard let player = ncplayer?.player else { return }
  197. let spuTracks = player.videoSubTitlesNames
  198. let spuTrackIndexes = player.videoSubTitlesIndexes
  199. let count = spuTracks.count
  200. if count > 1 {
  201. toggleMenuSubTitle(spuTracks: spuTracks, spuTrackIndexes: spuTrackIndexes)
  202. }
  203. }
  204. @IBAction func tapAudio(_ sender: Any) {
  205. guard let player = ncplayer?.player else { return }
  206. let audioTracks = player.audioTrackNames
  207. let audioTrackIndexes = player.audioTrackIndexes
  208. let count = audioTracks.count
  209. if count > 1 {
  210. toggleMenuAudio(audioTracks: audioTracks, audioTrackIndexes: audioTrackIndexes)
  211. }
  212. }
  213. @IBAction func tapPlayerPause(_ sender: Any) {
  214. guard let ncplayer = ncplayer else { return }
  215. if ncplayer.isPlay() {
  216. ncplayer.playerPause()
  217. } else {
  218. ncplayer.playerPlay()
  219. }
  220. self.viewerMediaPage?.startTimerAutoHide()
  221. }
  222. @IBAction func tapForward(_ sender: Any) {
  223. guard let ncplayer = ncplayer else { return }
  224. ncplayer.jumpForward(10)
  225. self.viewerMediaPage?.startTimerAutoHide()
  226. }
  227. @IBAction func tapBack(_ sender: Any) {
  228. guard let ncplayer = ncplayer else { return }
  229. ncplayer.jumpBackward(10)
  230. self.viewerMediaPage?.startTimerAutoHide()
  231. }
  232. }
  233. extension NCPlayerToolBar {
  234. func toggleMenuSubTitle(spuTracks: [Any], spuTrackIndexes: [Any]) {
  235. var actions = [NCMenuAction]()
  236. if self.subTitleIndex == nil, let idx = ncplayer?.player.currentVideoSubTitleIndex {
  237. self.subTitleIndex = idx
  238. }
  239. for index in 0...spuTracks.count - 1 {
  240. guard let title = spuTracks[index] as? String, let idx = spuTrackIndexes[index] as? Int32 else { return }
  241. actions.append(
  242. NCMenuAction(
  243. title: title,
  244. icon: UIImage(),
  245. onTitle: title,
  246. onIcon: UIImage(),
  247. selected: (self.subTitleIndex ?? -9999) == idx,
  248. on: (self.subTitleIndex ?? -9999) == idx,
  249. action: { _ in
  250. self.ncplayer?.player.currentVideoSubTitleIndex = idx
  251. self.subTitleIndex = idx
  252. }
  253. )
  254. )
  255. }
  256. viewerMediaPage?.presentMenu(with: actions, menuColor: UIColor(hexString: "#1C1C1EFF"), textColor: .white)
  257. }
  258. func toggleMenuAudio(audioTracks: [Any], audioTrackIndexes: [Any]) {
  259. var actions = [NCMenuAction]()
  260. if self.audioIndex == nil, let idx = ncplayer?.player.currentAudioTrackIndex {
  261. self.audioIndex = idx
  262. }
  263. for index in 0...audioTracks.count - 1 {
  264. guard let title = audioTracks[index] as? String, let idx = audioTrackIndexes[index] as? Int32 else { return }
  265. actions.append(
  266. NCMenuAction(
  267. title: title,
  268. icon: UIImage(),
  269. onTitle: title,
  270. onIcon: UIImage(),
  271. selected: (self.audioIndex ?? -9999) == idx,
  272. on: (self.audioIndex ?? -9999) == idx,
  273. action: { _ in
  274. self.ncplayer?.player.currentAudioTrackIndex = idx
  275. self.audioIndex = idx
  276. }
  277. )
  278. )
  279. }
  280. viewerMediaPage?.presentMenu(with: actions, menuColor: UIColor(hexString: "#1C1C1EFF"), textColor: .white)
  281. }
  282. }