-
Notifications
You must be signed in to change notification settings - Fork 499
/
ViewController.swift
119 lines (99 loc) · 4.01 KB
/
ViewController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
//
// Copyright 2018-2023 Picovoice Inc.
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
// an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
//
import UIKit
import ios_voice_processor
import Porcupine
import SwiftySound
class ViewController: UIViewController, UITextViewDelegate {
@IBOutlet weak var startButton: UIButton!
@IBOutlet weak var textView: UITextView!
@IBOutlet weak var errorPanel: UITextView!
let accessKey = "${YOUR_ACCESS_KEY_HERE}" // Obtained from Picovoice Console (https://console.picovoice.ai)
var wakeWord = Porcupine.BuiltInKeyword.porcupine
var porcupineManager: PorcupineManager!
var isListening = false
override func viewDidLoad() {
super.viewDidLoad()
startButton.layer.cornerRadius = 0.5 * startButton.bounds.size.width
startButton.clipsToBounds = true
textView.text = "Press the Start button and say the wake word \"Porcupine\". " +
"Try pressing the home button and saying it again."
errorPanel.layer.cornerRadius = 10
errorPanel.isHidden = true
}
@IBAction func toggleStartButton(_ sender: UIButton) {
if !isListening {
startListening()
} else {
stopListening()
}
}
func startListening() {
guard VoiceProcessor.hasRecordAudioPermission else {
VoiceProcessor.requestRecordAudioPermission { isGranted in
guard isGranted else {
DispatchQueue.main.async {
self.showErrorAlert(message: "Demo requires microphone permission")
}
return
}
DispatchQueue.main.async {
self.startListening()
}
}
return
}
NotificationManager.shared.requestNotificationAuthorization()
let errorCallback: ((Error) -> Void) = {error in
self.showErrorAlert(message: "\(error)")
}
do {
Sound.category = .playAndRecord
let keywordCallback: ((Int32) -> Void) = { _ in
NotificationManager.shared.sendNotification()
Sound.play(file: "beep.wav")
}
self.porcupineManager = try PorcupineManager(
accessKey: accessKey,
keyword: wakeWord,
onDetection: keywordCallback,
errorCallback: errorCallback)
try porcupineManager.start()
isListening = true
startButton.setTitle("STOP", for: UIControl.State.normal)
} catch let error as PorcupineInvalidArgumentError {
showErrorAlert(message: "\(error.localizedDescription)")
} catch is PorcupineActivationError {
showErrorAlert(message: "AccessKey activation error")
} catch is PorcupineActivationRefusedError {
showErrorAlert(message: "AccessKey activation refused")
} catch is PorcupineActivationLimitError {
showErrorAlert(message: "AccessKey reached its limit")
} catch is PorcupineActivationThrottledError {
showErrorAlert(message: "AccessKey is throttled")
} catch let error {
showErrorAlert(message: "\(error)")
}
}
func stopListening() {
do {
try porcupineManager.stop()
} catch {
showErrorAlert(message: "\(error)")
return
}
isListening = false
startButton.setTitle("START", for: UIControl.State.normal)
}
func showErrorAlert(message: String) {
errorPanel.text = message
errorPanel.isHidden = false
startButton.isEnabled = false
}
}