var backendOutput: OutputFormatSetting? { get }
var keepLocalFiles: Bool? { get }
var autoStart: Bool? { get }
+ var skipBackend: Bool { get }
+ var maxLength: Int? { get }
}
// The concrete implementations
var backendOutput: OutputFormatSetting?
var keepLocalFiles: Bool?
var autoStart: Bool?
+ var skipBackend: Bool
+ var maxLength: Int?
}
enum CapturaAction {
let keepLocalFiles = Bool(paramsDict["keep_local_files"] as? String ?? "")
let outputs = OutputFormatSetting(paramsDict["outputs"] as? String ?? "")
var backendOutput = OutputFormatSetting(paramsDict["backend_output"] as? String ?? "")
+ let autoStart = Bool(paramsDict["auto_start"] as? String ?? "")
+ var maxLength = Int(paramsDict["max_length"] as? String ?? "")
if fps != nil {
fps = min(10, max(4, fps!))
}
+ if maxLength != nil {
+ maxLength = min(300, max(1, fps!))
+ }
+
if backendOutput == .all {
backendOutput = .gifOnly
}
+ var skipBackend = false
+ if let backendString = paramsDict["backend"] as? String {
+ if backendString == "" {
+ skipBackend = true
+ }
+ }
+
return .record(RecordAction(
action: action,
x: x,
outputs: outputs,
backend: backend,
backendOutput: backendOutput,
- keepLocalFiles: keepLocalFiles
+ keepLocalFiles: keepLocalFiles,
+ autoStart: autoStart,
+ skipBackend: skipBackend,
+ maxLength: maxLength
))
default: