-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.dart
207 lines (185 loc) · 5.18 KB
/
main.dart
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:permission_handler/permission_handler.dart';
import 'package:tf_speech/tf_speech.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Home(),
),
),
);
}
}
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
static const moveDelayMs = 10;
static const moveDelta = 0.005;
static const thresholds = {
"up": 0.5,
"down": 0.2,
"left": 0.3,
"right": 0.3,
"stop": 0.5,
};
@override
Widget build(BuildContext context) {
return Stack(
children: <Widget>[
if (result.isNotEmpty)
Positioned.fill(
child: PredictionBar(
thresholds: thresholds,
values: result,
),
),
Positioned.fill(
child: Center(
child: Transform.translate(
offset: offset,
child: Image.asset(
'assets/rocket.png',
width: 50,
),
),
),
),
],
);
}
var speech = TfSpeech();
var offset = Offset.zero;
var result = <String, double>{};
@override
void initState() {
super.initState();
startRecognizer();
}
@override
void dispose() {
super.dispose();
speech.close();
}
Future<void> startRecognizer() async {
if (!await Permission.speech.request().isGranted) return;
Timer timer;
await for (result in speech.stream) {
if (!mounted) return;
setState(() {});
// select keywords that pass the threshold, and move accordingly
for (var entry in thresholds.entries) {
if (result[entry.key] < entry.value) continue;
switch (entry.key) {
case "up":
timer?.cancel();
timer = createTimer(deltaY: -moveDelta);
break;
case "down":
timer?.cancel();
timer = createTimer(deltaY: moveDelta);
break;
case "right":
timer?.cancel();
timer = createTimer(deltaX: moveDelta);
break;
case "left":
timer?.cancel();
timer = createTimer(deltaX: -moveDelta);
break;
case "stop":
timer?.cancel();
break;
default:
break;
}
break;
}
}
}
Timer createTimer({double deltaX: 0, double deltaY: 0}) {
return Timer.periodic(Duration(milliseconds: moveDelayMs), (_) {
var size = MediaQuery.of(context).size;
var dx = wrapValue(offset.dx + size.width * deltaX, size.width / 2);
var dy = wrapValue(offset.dy + size.height * deltaY, size.height / 2);
setState(() {
offset = Offset(dx, dy);
});
});
}
}
double wrapValue(double dx, double max) {
if (dx < -max) {
dx = max;
} else if (dx > max) {
dx = -max;
}
return dx;
}
class PredictionBar extends StatelessWidget {
final Map<String, double> values;
final double height, width;
final Map<String, double> thresholds;
const PredictionBar({
Key key,
@required this.values,
@required this.thresholds,
this.height = 80,
this.width = 10,
}) : super(key: key);
@override
Widget build(BuildContext context) {
var theme = Theme.of(context);
return Center(
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
for (var entry in values.entries)
if (thresholds.containsKey(entry.key))
Padding(
padding: EdgeInsets.all(5),
child: Column(
children: <Widget>[
Container(
height: height,
width: width,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
border: Border.all(color: theme.dividerColor),
),
alignment: Alignment.bottomLeft,
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
color: entry.value < thresholds[entry.key]
? theme.disabledColor
: theme.primaryColor,
),
height: entry.value * height,
),
),
SizedBox(height: 10),
RotatedBox(
quarterTurns: 3,
child: Text(
entry.key,
style: TextStyle(fontSize: 18),
),
),
],
),
)
],
),
),
);
}
}