mac/remote: use AppHub directly instead of the singleton

This commit is contained in:
der richter 2024-03-24 01:48:22 +01:00
parent 6846338cf2
commit 37b2e59787
1 changed files with 3 additions and 2 deletions

View File

@ -42,6 +42,7 @@ extension RemoteCommandCenter {
class RemoteCommandCenter: EventSubscriber {
unowned let appHub: AppHub
var event: EventHelper? { get { return appHub.event } }
var input: InputHelper { get { return appHub.input } }
var configs: [MPRemoteCommand:Config] = [:]
var disabledCommands: [MPRemoteCommand] = []
var isPaused: Bool = false { didSet { updateInfoCenter() } }
@ -168,7 +169,7 @@ class RemoteCommandCenter: EventSubscriber {
self.configs[event.command]?.state = state
}
AppHub.shared.input.put(key: config.key | Int32(state))
self.input.put(key: config.key | Int32(state))
return .success
}
@ -179,7 +180,7 @@ class RemoteCommandCenter: EventSubscriber {
}
let cmd = String(format: "seek %.02f absolute", posEvent.positionTime)
return AppHub.shared.input.command(cmd) ? .success : .commandFailed
return self.input.command(cmd) ? .success : .commandFailed
}
func handle(event: EventHelper.Event) {