NCPlayerToolBar.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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. fullscreenButton.setImage(NCUtility.shared.loadImage(named: "arrow.up.left.and.arrow.down.right", color: .white), for: .normal)
  62. subtitleButton.setImage(NCUtility.shared.loadImage(named: "captions.bubble", color: .white), for: .normal)
  63. subtitleButton.isEnabled = false
  64. audioButton.setImage(NCUtility.shared.loadImage(named: "speaker.zzz", color: .white), for: .normal)
  65. audioButton.isEnabled = false
  66. if UIDevice.current.userInterfaceIdiom == .pad {
  67. pointSize = 60
  68. } else {
  69. pointSize = 50
  70. }
  71. playerButtonView.spacing = pointSize
  72. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.10", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  73. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  74. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.10", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  75. playbackSlider.setThumbImage(UIImage(systemName: "circle.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 15)), for: .normal)
  76. playbackSlider.value = 0
  77. playbackSlider.tintColor = .white
  78. playbackSlider.addTarget(self, action: #selector(playbackValChanged(slider:event:)), for: .valueChanged)
  79. utilityView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tap(gestureRecognizer:))))
  80. playbackSliderView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tap(gestureRecognizer:))))
  81. playerButtonView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tap(gestureRecognizer:))))
  82. labelCurrentTime.textColor = .white
  83. labelLeftTime.textColor = .white
  84. // Normally hide
  85. self.alpha = 0
  86. self.isHidden = true
  87. }
  88. required init?(coder aDecoder: NSCoder) {
  89. super.init(coder: aDecoder)
  90. }
  91. deinit {
  92. print("deinit NCPlayerToolBar")
  93. }
  94. // MARK: -
  95. func setBarPlayer(position: Float, ncplayer: NCPlayer? = nil, metadata: tableMetadata? = nil, viewerMediaPage: NCViewerMediaPage? = nil) {
  96. if let ncplayer = ncplayer {
  97. self.ncplayer = ncplayer
  98. }
  99. if let metadata = metadata {
  100. self.metadata = metadata
  101. }
  102. if let viewerMediaPage = viewerMediaPage {
  103. self.viewerMediaPage = viewerMediaPage
  104. }
  105. playerView(hidden: true)
  106. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  107. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 0
  108. playbackSlider.value = position
  109. labelCurrentTime.text = "--:--"
  110. labelLeftTime.text = "--:--"
  111. if viewerMediaScreenMode == .normal {
  112. show()
  113. } else {
  114. hide()
  115. }
  116. }
  117. public func update() {
  118. guard let ncplayer = self.ncplayer,
  119. let length = ncplayer.player.media?.length.intValue
  120. else { return }
  121. let position = ncplayer.player.position
  122. let positionInSecond = position * Float(length / 1000)
  123. // SLIDER & TIME
  124. if playbackSliderEvent == .ended {
  125. playbackSlider.value = position
  126. }
  127. labelCurrentTime.text = ncplayer.player.time.stringValue
  128. labelLeftTime.text = ncplayer.player.remainingTime?.stringValue
  129. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPMediaItemPropertyPlaybackDuration] = length / 1000
  130. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyElapsedPlaybackTime] = positionInSecond
  131. }
  132. public func updateTopToolBar(videoSubTitlesIndexes: [Any], audioTrackIndexes: [Any]) {
  133. self.subtitleButton.isEnabled = !videoSubTitlesIndexes.isEmpty
  134. self.audioButton.isEnabled = !audioTrackIndexes.isEmpty
  135. }
  136. public func playerView(hidden: Bool) {
  137. playerButtonView.isHidden = hidden
  138. }
  139. // MARK: -
  140. public func show() {
  141. UIView.animate(withDuration: 0.3, animations: {
  142. self.alpha = 1
  143. }, completion: { (_: Bool) in
  144. self.isHidden = false
  145. })
  146. }
  147. func hide() {
  148. UIView.animate(withDuration: 0.3, animations: {
  149. self.alpha = 0
  150. }, completion: { (_: Bool) in
  151. self.isHidden = true
  152. })
  153. }
  154. func playButtonPause() {
  155. playButton.setImage(NCUtility.shared.loadImage(named: "pause.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  156. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 1
  157. }
  158. func playButtonPlay() {
  159. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: pointSize)), for: .normal)
  160. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 0
  161. }
  162. // MARK: - Event / Gesture
  163. @objc func playbackValChanged(slider: UISlider, event: UIEvent) {
  164. guard let touchEvent = event.allTouches?.first,
  165. let ncplayer = ncplayer
  166. else { return }
  167. let newPosition = playbackSlider.value
  168. switch touchEvent.phase {
  169. case .began:
  170. viewerMediaPage?.timerAutoHide?.invalidate()
  171. playbackSliderEvent = .began
  172. case .moved:
  173. ncplayer.playerPosition(newPosition)
  174. playbackSliderEvent = .moved
  175. case .ended:
  176. ncplayer.playerPosition(newPosition)
  177. DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
  178. self.playbackSliderEvent = .ended
  179. self.viewerMediaPage?.startTimerAutoHide()
  180. }
  181. default:
  182. break
  183. }
  184. }
  185. // MARK: - Action
  186. @objc func tap(gestureRecognizer: UITapGestureRecognizer) { }
  187. @IBAction func tapFullscreen(_ sender: Any) {
  188. isFullscreen = !isFullscreen
  189. if isFullscreen {
  190. fullscreenButton.setImage(NCUtility.shared.loadImage(named: "arrow.down.right.and.arrow.up.left", color: .white), for: .normal)
  191. } else {
  192. fullscreenButton.setImage(NCUtility.shared.loadImage(named: "arrow.up.left.and.arrow.down.right", color: .white), for: .normal)
  193. }
  194. viewerMediaPage?.changeScreenMode(mode: viewerMediaScreenMode)
  195. }
  196. @IBAction func tapSubTitle(_ sender: Any) {
  197. guard let player = ncplayer?.player else { return }
  198. let spuTracks = player.videoSubTitlesNames
  199. let spuTrackIndexes = player.videoSubTitlesIndexes
  200. let count = spuTracks.count
  201. if count > 1 {
  202. toggleMenuSubTitle(spuTracks: spuTracks, spuTrackIndexes: spuTrackIndexes)
  203. }
  204. }
  205. @IBAction func tapAudio(_ sender: Any) {
  206. guard let player = ncplayer?.player else { return }
  207. let audioTracks = player.audioTrackNames
  208. let audioTrackIndexes = player.audioTrackIndexes
  209. let count = audioTracks.count
  210. if count > 1 {
  211. toggleMenuAudio(audioTracks: audioTracks, audioTrackIndexes: audioTrackIndexes)
  212. }
  213. }
  214. @IBAction func tapPlayerPause(_ sender: Any) {
  215. guard let ncplayer = ncplayer else { return }
  216. if ncplayer.isPlay() {
  217. ncplayer.playerPause()
  218. } else {
  219. ncplayer.playerPlay()
  220. }
  221. self.viewerMediaPage?.startTimerAutoHide()
  222. }
  223. @IBAction func tapForward(_ sender: Any) {
  224. guard let ncplayer = ncplayer else { return }
  225. ncplayer.jumpForward(10)
  226. self.viewerMediaPage?.startTimerAutoHide()
  227. }
  228. @IBAction func tapBack(_ sender: Any) {
  229. guard let ncplayer = ncplayer else { return }
  230. ncplayer.jumpBackward(10)
  231. self.viewerMediaPage?.startTimerAutoHide()
  232. }
  233. }
  234. extension NCPlayerToolBar {
  235. func toggleMenuSubTitle(spuTracks: [Any], spuTrackIndexes: [Any]) {
  236. var actions = [NCMenuAction]()
  237. if self.subTitleIndex == nil, let idx = ncplayer?.player.currentVideoSubTitleIndex {
  238. self.subTitleIndex = idx
  239. }
  240. for index in 0...spuTracks.count - 1 {
  241. guard let title = spuTracks[index] as? String, let idx = spuTrackIndexes[index] as? Int32 else { return }
  242. actions.append(
  243. NCMenuAction(
  244. title: title,
  245. icon: UIImage(),
  246. onTitle: title,
  247. onIcon: UIImage(),
  248. selected: (self.subTitleIndex ?? -9999) == idx,
  249. on: (self.subTitleIndex ?? -9999) == idx,
  250. action: { _ in
  251. self.ncplayer?.player.currentVideoSubTitleIndex = idx
  252. self.subTitleIndex = idx
  253. }
  254. )
  255. )
  256. }
  257. viewerMediaPage?.presentMenu(with: actions, menuColor: UIColor(hexString: "#1C1C1EFF"), textColor: .white)
  258. }
  259. func toggleMenuAudio(audioTracks: [Any], audioTrackIndexes: [Any]) {
  260. var actions = [NCMenuAction]()
  261. if self.audioIndex == nil, let idx = ncplayer?.player.currentAudioTrackIndex {
  262. self.audioIndex = idx
  263. }
  264. for index in 0...audioTracks.count - 1 {
  265. guard let title = audioTracks[index] as? String, let idx = audioTrackIndexes[index] as? Int32 else { return }
  266. actions.append(
  267. NCMenuAction(
  268. title: title,
  269. icon: UIImage(),
  270. onTitle: title,
  271. onIcon: UIImage(),
  272. selected: (self.audioIndex ?? -9999) == idx,
  273. on: (self.audioIndex ?? -9999) == idx,
  274. action: { _ in
  275. self.ncplayer?.player.currentAudioTrackIndex = idx
  276. self.audioIndex = idx
  277. }
  278. )
  279. )
  280. }
  281. viewerMediaPage?.presentMenu(with: actions, menuColor: UIColor(hexString: "#1C1C1EFF"), textColor: .white)
  282. }
  283. }