2024-12-23 04:18:04 +01:00
|
|
|
import 'dart:async';
|
2024-12-23 03:18:39 +01:00
|
|
|
import 'dart:io';
|
|
|
|
|
2024-12-22 17:41:14 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2024-12-23 03:18:39 +01:00
|
|
|
import 'package:audioplayers/audioplayers.dart';
|
|
|
|
|
|
|
|
class Level extends StatefulWidget {
|
|
|
|
const Level({super.key, required this.stepmaniaFolderPath});
|
|
|
|
final String stepmaniaFolderPath;
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<Level> createState() => _LevelState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _LevelState extends State<Level> {
|
2024-12-23 04:18:04 +01:00
|
|
|
final player = AudioPlayer();
|
2024-12-23 03:18:39 +01:00
|
|
|
bool _isPlaying = true;
|
2024-12-23 04:18:04 +01:00
|
|
|
Duration? _duration;
|
|
|
|
Duration? _position;
|
|
|
|
|
|
|
|
StreamSubscription? _durationSubscription;
|
|
|
|
StreamSubscription? _positionSubscription;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void setState(VoidCallback fn) {
|
|
|
|
// Subscriptions only can be closed asynchronously,
|
|
|
|
// therefore events can occur after widget has been disposed.
|
|
|
|
if (mounted) {
|
|
|
|
super.setState(fn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
// Use initial values from player
|
|
|
|
player.getDuration().then(
|
|
|
|
(value) => setState(() {
|
|
|
|
_duration = value;
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
player.getCurrentPosition().then(
|
|
|
|
(value) => setState(() {
|
|
|
|
_position = value;
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
_durationSubscription = player.onDurationChanged.listen((duration) {
|
|
|
|
setState(() => _duration = duration);
|
|
|
|
});
|
|
|
|
|
|
|
|
_positionSubscription = player.onPositionChanged.listen(
|
|
|
|
(p) => setState(() => _position = p),
|
|
|
|
);
|
|
|
|
}
|
2024-12-22 17:41:14 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-12-23 04:18:04 +01:00
|
|
|
player.onDurationChanged.listen((Duration d) {
|
|
|
|
// print('Max duration: $d');
|
|
|
|
setState(() => _duration = d);
|
|
|
|
});
|
|
|
|
|
|
|
|
player.onPositionChanged.listen((Duration p) {
|
|
|
|
// print('Current position: $p');
|
|
|
|
setState(() => _position = p);
|
|
|
|
});
|
|
|
|
|
2024-12-23 03:18:39 +01:00
|
|
|
String audioPath = Directory(widget.stepmaniaFolderPath)
|
|
|
|
.listSync()
|
|
|
|
.firstWhere((entity) => entity.path.endsWith('.ogg'),
|
|
|
|
orElse: () => File(''))
|
|
|
|
.path;
|
2024-12-23 04:18:04 +01:00
|
|
|
player.play(DeviceFileSource(audioPath));
|
2024-12-22 17:41:14 +01:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2024-12-23 03:18:39 +01:00
|
|
|
leading: IconButton(
|
|
|
|
icon: Icon(_isPlaying ? Icons.pause : Icons.play_arrow),
|
2024-12-23 04:18:04 +01:00
|
|
|
onPressed: () {
|
|
|
|
if (_isPlaying) {
|
|
|
|
player.pause();
|
|
|
|
setState(() {
|
|
|
|
_isPlaying = false;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
player.resume();
|
|
|
|
setState(() {
|
|
|
|
_isPlaying = true;
|
|
|
|
});
|
|
|
|
}
|
2024-12-23 03:18:39 +01:00
|
|
|
},
|
|
|
|
),
|
2024-12-23 04:18:04 +01:00
|
|
|
title: Text(widget.stepmaniaFolderPath.split('/').last),
|
2024-12-22 17:41:14 +01:00
|
|
|
actions: [
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.close),
|
|
|
|
onPressed: () => Navigator.pop(context))
|
|
|
|
],
|
2024-12-23 04:18:04 +01:00
|
|
|
bottom: PreferredSize(
|
|
|
|
preferredSize: Size(double.infinity, 1.0),
|
|
|
|
child: LinearProgressIndicator(
|
|
|
|
value: (_duration != null &&
|
|
|
|
_position != null &&
|
|
|
|
_position!.inMilliseconds > 0 &&
|
|
|
|
_position!.inMilliseconds < _duration!.inMilliseconds)
|
|
|
|
? _position!.inMilliseconds / _duration!.inMilliseconds
|
|
|
|
: 0.0,
|
|
|
|
)),
|
2024-12-22 17:41:14 +01:00
|
|
|
),
|
|
|
|
body: Stack(children: [
|
2024-12-23 03:18:39 +01:00
|
|
|
Arrow(
|
|
|
|
position: -100.0,
|
|
|
|
),
|
|
|
|
Arrow(
|
|
|
|
position: 00.0,
|
|
|
|
),
|
|
|
|
Arrow(
|
|
|
|
position: 100.0,
|
|
|
|
),
|
|
|
|
Arrow(
|
|
|
|
position: 200.0,
|
|
|
|
),
|
2024-12-22 17:41:14 +01:00
|
|
|
Positioned(
|
|
|
|
top: 50,
|
|
|
|
width: MediaQuery.of(context).size.width,
|
|
|
|
left: 0,
|
|
|
|
child: Text(
|
|
|
|
"Great!",
|
|
|
|
textScaler: TextScaler.linear(4),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Positioned(
|
|
|
|
left: MediaQuery.of(context).size.width / 2 - 50,
|
|
|
|
bottom: 50,
|
|
|
|
child: Container(
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
// color: Colors.blue,
|
|
|
|
border: Border.all(color: Colors.black, width: 10)),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]));
|
|
|
|
}
|
2024-12-23 03:18:39 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
2024-12-23 04:18:04 +01:00
|
|
|
_durationSubscription?.cancel();
|
|
|
|
_positionSubscription?.cancel();
|
|
|
|
player.dispose();
|
2024-12-23 03:18:39 +01:00
|
|
|
super.dispose();
|
|
|
|
}
|
2024-12-22 17:41:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class Arrow extends StatelessWidget {
|
|
|
|
final double position;
|
|
|
|
|
|
|
|
const Arrow({super.key, required this.position});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Positioned(
|
|
|
|
left: MediaQuery.of(context).size.width / 2 - 25, // Center the arrow
|
|
|
|
top: position,
|
|
|
|
child: Icon(size: 100, Icons.arrow_forward),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|