mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
1980 lines
85 KiB
Dart
1980 lines
85 KiB
Dart
import 'dart:async';
|
||
import 'dart:io';
|
||
import 'dart:math';
|
||
|
||
import 'package:PiliPalaX/pages/setting/widgets/switch_item.dart';
|
||
import 'package:PiliPalaX/utils/extension.dart';
|
||
import 'package:PiliPalaX/utils/id_utils.dart';
|
||
import 'package:canvas_danmaku/canvas_danmaku.dart';
|
||
import 'package:floating/floating.dart';
|
||
import 'package:flutter/material.dart';
|
||
import 'package:flutter/services.dart';
|
||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||
import 'package:get/get.dart';
|
||
import 'package:hive/hive.dart';
|
||
import 'package:material_design_icons_flutter/material_design_icons_flutter.dart';
|
||
import 'package:media_kit/media_kit.dart';
|
||
import 'package:PiliPalaX/http/user.dart';
|
||
import 'package:PiliPalaX/models/video/play/quality.dart';
|
||
import 'package:PiliPalaX/models/video/play/url.dart';
|
||
import 'package:PiliPalaX/pages/video/detail/index.dart';
|
||
import 'package:PiliPalaX/pages/video/detail/introduction/widgets/menu_row.dart';
|
||
import 'package:PiliPalaX/plugin/pl_player/index.dart';
|
||
import 'package:PiliPalaX/plugin/pl_player/models/play_repeat.dart';
|
||
import 'package:PiliPalaX/utils/storage.dart';
|
||
import 'package:PiliPalaX/services/shutdown_timer_service.dart';
|
||
import '../../../../models/video/play/CDN.dart';
|
||
import '../../../../models/video_detail_res.dart';
|
||
import '../../../setting/widgets/select_dialog.dart';
|
||
import '../introduction/index.dart';
|
||
import 'package:marquee/marquee.dart';
|
||
|
||
class HeaderControl extends StatefulWidget implements PreferredSizeWidget {
|
||
const HeaderControl({
|
||
this.controller,
|
||
this.videoDetailCtr,
|
||
this.floating,
|
||
required this.heroTag,
|
||
super.key,
|
||
});
|
||
final PlPlayerController? controller;
|
||
final VideoDetailController? videoDetailCtr;
|
||
final Floating? floating;
|
||
final String heroTag;
|
||
|
||
@override
|
||
State<HeaderControl> createState() => _HeaderControlState();
|
||
|
||
@override
|
||
Size get preferredSize => throw UnimplementedError();
|
||
}
|
||
|
||
class _HeaderControlState extends State<HeaderControl> {
|
||
late PlayUrlModel videoInfo;
|
||
static const TextStyle subTitleStyle = TextStyle(fontSize: 12);
|
||
static const TextStyle titleStyle = TextStyle(fontSize: 14);
|
||
Size get preferredSize => const Size(double.infinity, kToolbarHeight);
|
||
final Box<dynamic> localCache = GStorage.localCache;
|
||
final Box<dynamic> videoStorage = GStorage.video;
|
||
double buttonSpace = 8;
|
||
// bool isFullScreen = false;
|
||
late String heroTag;
|
||
late VideoIntroController videoIntroController;
|
||
late VideoDetailData videoDetail;
|
||
// late StreamSubscription<bool> fullScreenStatusListener;
|
||
late bool horizontalScreen;
|
||
RxString now = ''.obs;
|
||
Timer? clock;
|
||
late String defaultCDNService;
|
||
bool get isFullScreen => widget.controller!.isFullScreen.value;
|
||
|
||
@override
|
||
void initState() {
|
||
super.initState();
|
||
videoInfo = widget.videoDetailCtr!.data;
|
||
// listenFullScreenStatus();
|
||
heroTag = widget.heroTag;
|
||
// if (Get.arguments != null && Get.arguments['heroTag'] != null) {
|
||
// heroTag = Get.arguments['heroTag'];
|
||
// }
|
||
videoIntroController = Get.put(VideoIntroController(), tag: heroTag);
|
||
horizontalScreen =
|
||
setting.get(SettingBoxKey.horizontalScreen, defaultValue: false);
|
||
defaultCDNService = setting.get(SettingBoxKey.CDNService,
|
||
defaultValue: CDNService.backupUrl.code);
|
||
}
|
||
|
||
// void listenFullScreenStatus() {
|
||
// fullScreenStatusListener = widget
|
||
// .videoDetailCtr!.plPlayerController.isFullScreen
|
||
// .listen((bool status) {
|
||
// isFullScreen = status;
|
||
|
||
// /// TODO setState() called after dispose()
|
||
// if (mounted) {
|
||
// setState(() {});
|
||
// }
|
||
// });
|
||
// }
|
||
|
||
@override
|
||
void dispose() {
|
||
widget.floating?.dispose();
|
||
// fullScreenStatusListener.cancel();
|
||
clock?.cancel();
|
||
super.dispose();
|
||
}
|
||
|
||
@override
|
||
void didChangeDependencies() {
|
||
super.didChangeDependencies();
|
||
if (MediaQuery.of(context).orientation == Orientation.landscape &&
|
||
(isFullScreen || !horizontalScreen)) {
|
||
startClock();
|
||
} else {
|
||
clock?.cancel();
|
||
clock = null;
|
||
}
|
||
}
|
||
|
||
/// 设置面板
|
||
void showSettingSheet() {
|
||
showModalBottomSheet(
|
||
elevation: 0,
|
||
context: context,
|
||
backgroundColor: Colors.transparent,
|
||
builder: (context) {
|
||
return Container(
|
||
width: double.infinity,
|
||
height: 500,
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: EdgeInsets.only(
|
||
left: 12,
|
||
top: 12,
|
||
right: 12,
|
||
bottom: 12 + MediaQuery.paddingOf(context).bottom,
|
||
),
|
||
child: Column(
|
||
children: [
|
||
SizedBox(
|
||
height: 35,
|
||
child: Center(
|
||
child: Container(
|
||
width: 32,
|
||
height: 3,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context)
|
||
.colorScheme
|
||
.onSecondaryContainer
|
||
.withOpacity(0.5),
|
||
borderRadius:
|
||
const BorderRadius.all(Radius.circular(3))),
|
||
),
|
||
),
|
||
),
|
||
Expanded(
|
||
child: Material(
|
||
child: MediaQuery.removePadding(
|
||
context: context,
|
||
removeBottom: true,
|
||
child: ListView(
|
||
children: [
|
||
// ListTile(
|
||
// onTap: () {},
|
||
// dense: true,
|
||
// enabled: false,
|
||
// leading:
|
||
// const Icon(Icons.network_cell_outlined, size: 20),
|
||
// title: Text('省流模式', style: titleStyle),
|
||
// subtitle: Text('低画质 | 减少视频缓存', style: subTitleStyle),
|
||
// trailing: Transform.scale(
|
||
// scale: 0.75,
|
||
// child: Switch(
|
||
// thumbIcon: WidgetStateProperty.resolveWith<Icon?>(
|
||
// (Set<WidgetState> states) {
|
||
// if (states.isNotEmpty &&
|
||
// states.first == WidgetState.selected) {
|
||
// return const Icon(Icons.done);
|
||
// }
|
||
// return null; // All other states will use the default thumbIcon.
|
||
// }),
|
||
// value: false,
|
||
// onChanged: (value) => {},
|
||
// ),
|
||
// ),
|
||
// ),
|
||
// if (widget.videoDetailCtr?.userInfo != null)
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () async {
|
||
Get.back();
|
||
final res = await UserHttp.toViewLater(
|
||
bvid: widget.videoDetailCtr!.bvid);
|
||
SmartDialog.showToast(res['msg']);
|
||
},
|
||
leading:
|
||
const Icon(Icons.watch_later_outlined, size: 20),
|
||
title: const Text('添加至「稍后再看」', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), scheduleExit()},
|
||
leading: const Icon(Icons.hourglass_top_outlined,
|
||
size: 20),
|
||
title: const Text('定时关闭', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {
|
||
Get.back(),
|
||
widget.videoDetailCtr!.queryVideoUrl()
|
||
},
|
||
leading: const Icon(Icons.refresh_outlined, size: 20),
|
||
title: const Text('重载视频', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text('CDN 设置', style: titleStyle),
|
||
leading: Icon(MdiIcons.cloudPlusOutline, size: 20),
|
||
subtitle: Text(
|
||
'当前:${CDNServiceCode.fromCode(defaultCDNService)!.description},无法播放请切换',
|
||
style: subTitleStyle,
|
||
),
|
||
onTap: () async {
|
||
Get.back();
|
||
String? result = await showDialog(
|
||
context: context,
|
||
builder: (context) {
|
||
return SelectDialog<String>(
|
||
title: 'CDN 设置',
|
||
value: defaultCDNService,
|
||
values: CDNService.values.map((e) {
|
||
return {
|
||
'title': e.description,
|
||
'value': e.code
|
||
};
|
||
}).toList());
|
||
},
|
||
);
|
||
if (result != null) {
|
||
defaultCDNService = result;
|
||
setting.put(SettingBoxKey.CDNService, result);
|
||
SmartDialog.showToast(
|
||
'已设置为 ${CDNServiceCode.fromCode(result)!.description},正在重载视频');
|
||
setState(() {});
|
||
widget.videoDetailCtr!.queryVideoUrl();
|
||
}
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
Get.back();
|
||
Player? player =
|
||
widget.controller?.videoPlayerController;
|
||
if (player == null) {
|
||
SmartDialog.showToast('播放器未初始化');
|
||
return;
|
||
}
|
||
var pp = player.platform as NativePlayer;
|
||
pp.setProperty("video", "no");
|
||
},
|
||
leading:
|
||
const Icon(Icons.headphones_outlined, size: 20),
|
||
title: const Text('听视频(需返回首页才能终止该状态)',
|
||
style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), showSetVideoQa()},
|
||
leading:
|
||
const Icon(Icons.play_circle_outline, size: 20),
|
||
title: const Text('选择画质', style: titleStyle),
|
||
subtitle: Text(
|
||
'当前画质 ${widget.videoDetailCtr!.currentVideoQa.description}',
|
||
style: subTitleStyle),
|
||
),
|
||
if (widget.videoDetailCtr!.currentAudioQa != null)
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), showSetAudioQa()},
|
||
leading: const Icon(Icons.album_outlined, size: 20),
|
||
title: const Text('选择音质', style: titleStyle),
|
||
subtitle: Text(
|
||
'当前音质 ${widget.videoDetailCtr!.currentAudioQa!.description}',
|
||
style: subTitleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), showSetDecodeFormats()},
|
||
leading:
|
||
const Icon(Icons.av_timer_outlined, size: 20),
|
||
title: const Text('解码格式', style: titleStyle),
|
||
subtitle: Text(
|
||
'当前解码格式 ${widget.videoDetailCtr!.currentDecodeFormats.description}',
|
||
style: subTitleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), showSetRepeat()},
|
||
leading: const Icon(Icons.repeat, size: 20),
|
||
title: const Text('播放顺序', style: titleStyle),
|
||
subtitle: Text(
|
||
widget.controller!.playRepeat.description,
|
||
style: subTitleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), showSetDanmaku()},
|
||
leading:
|
||
const Icon(Icons.subtitles_outlined, size: 20),
|
||
title: const Text('弹幕设置', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text('播放信息', style: titleStyle),
|
||
leading: const Icon(Icons.info_outline, size: 20),
|
||
onTap: () {
|
||
Player? player =
|
||
widget.controller?.videoPlayerController;
|
||
if (player == null) {
|
||
SmartDialog.showToast('播放器未初始化');
|
||
return;
|
||
}
|
||
showDialog(
|
||
context: context,
|
||
builder: (context) {
|
||
return AlertDialog(
|
||
title: const Text('播放信息'),
|
||
content: SizedBox(
|
||
width: double.maxFinite,
|
||
child: ListView(
|
||
children: [
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("Resolution"),
|
||
subtitle: Text(
|
||
'${player.state.width}x${player.state.height}'),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"Resolution\n${player.state.width}x${player.state.height}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("VideoParams"),
|
||
subtitle: Text(player
|
||
.state.videoParams
|
||
.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"VideoParams\n${player.state.videoParams}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("AudioParams"),
|
||
subtitle: Text(player
|
||
.state.audioParams
|
||
.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"AudioParams\n${player.state.audioParams}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("Media"),
|
||
subtitle: Text(
|
||
player.state.playlist.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"Media\n${player.state.playlist}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("AudioTrack"),
|
||
subtitle: Text(player
|
||
.state.track.audio
|
||
.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"AudioTrack\n${player.state.track.audio}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("VideoTrack"),
|
||
subtitle: Text(player
|
||
.state.track.video
|
||
.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"VideoTrack\n${player.state.track.audio}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("pitch"),
|
||
subtitle: Text(
|
||
player.state.pitch.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"pitch\n${player.state.pitch}",
|
||
),
|
||
);
|
||
}),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("rate"),
|
||
subtitle: Text(
|
||
player.state.rate.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"rate\n${player.state.rate}",
|
||
),
|
||
);
|
||
}),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("AudioBitrate"),
|
||
subtitle: Text(player
|
||
.state.audioBitrate
|
||
.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"AudioBitrate\n${player.state.audioBitrate}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("Volume"),
|
||
subtitle: Text(
|
||
player.state.volume.toString()),
|
||
onTap: () {
|
||
Clipboard.setData(
|
||
ClipboardData(
|
||
text:
|
||
"Volume\n${player.state.volume}",
|
||
),
|
||
);
|
||
},
|
||
),
|
||
],
|
||
),
|
||
),
|
||
actions: [
|
||
TextButton(
|
||
onPressed: () => Get.back(),
|
||
child: Text(
|
||
'确定',
|
||
style: TextStyle(
|
||
color: Theme.of(context)
|
||
.colorScheme
|
||
.outline),
|
||
),
|
||
),
|
||
],
|
||
);
|
||
},
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
if (widget.videoDetailCtr?.userInfo == null) {
|
||
SmartDialog.showToast('账号未登录');
|
||
return;
|
||
}
|
||
Get.back();
|
||
Get.toNamed('/webviewnew', parameters: {
|
||
'url':
|
||
'https://www.bilibili.com/appeal/?avid=${IdUtils.bv2av(widget.videoDetailCtr!.bvid)}&bvid=${widget.videoDetailCtr!.bvid}'
|
||
});
|
||
},
|
||
leading: const Icon(Icons.error_outline, size: 20),
|
||
title: const Text('举报', style: titleStyle),
|
||
),
|
||
const SizedBox(height: 14),
|
||
],
|
||
),
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
);
|
||
},
|
||
clipBehavior: Clip.hardEdge,
|
||
isScrollControlled: true,
|
||
);
|
||
}
|
||
|
||
/// 定时关闭
|
||
void scheduleExit() async {
|
||
const List<int> scheduleTimeChoices = [0, 15, 30, 45, 60];
|
||
showModalBottomSheet(
|
||
context: context,
|
||
elevation: 0,
|
||
backgroundColor: Colors.transparent,
|
||
builder: (context) {
|
||
return StatefulBuilder(
|
||
builder: (context, setState) {
|
||
return Container(
|
||
width: double.infinity,
|
||
height: 500,
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: EdgeInsets.only(
|
||
left: 12,
|
||
top: 12,
|
||
right: 12,
|
||
bottom: 12 + MediaQuery.paddingOf(context).bottom,
|
||
),
|
||
padding: const EdgeInsets.only(left: 14, right: 14),
|
||
child: SingleChildScrollView(
|
||
child: Padding(
|
||
padding:
|
||
const EdgeInsets.symmetric(vertical: 0, horizontal: 20),
|
||
child: Column(
|
||
crossAxisAlignment: CrossAxisAlignment.start,
|
||
children: [
|
||
const SizedBox(height: 30),
|
||
const Center(child: Text('定时关闭', style: titleStyle)),
|
||
const SizedBox(height: 10),
|
||
...[
|
||
...[
|
||
...scheduleTimeChoices,
|
||
if (scheduleTimeChoices
|
||
.contains(
|
||
shutdownTimerService.scheduledExitInMinutes)
|
||
.not)
|
||
shutdownTimerService.scheduledExitInMinutes,
|
||
]..sort(),
|
||
-1,
|
||
].map(
|
||
(choice) => ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
if (choice == -1) {
|
||
showDialog(
|
||
context: context,
|
||
builder: (context) {
|
||
String duration = '';
|
||
return AlertDialog(
|
||
title: Text(
|
||
'自定义时长',
|
||
style: TextStyle(fontSize: 18),
|
||
),
|
||
content: TextField(
|
||
autofocus: true,
|
||
onChanged: (value) => duration = value,
|
||
keyboardType: TextInputType.number,
|
||
inputFormatters: [
|
||
FilteringTextInputFormatter.allow(
|
||
RegExp(r'\d+')),
|
||
],
|
||
decoration: const InputDecoration(
|
||
suffixText: 'min'),
|
||
),
|
||
actions: [
|
||
TextButton(
|
||
onPressed: Get.back,
|
||
child: Text(
|
||
'取消',
|
||
style: TextStyle(
|
||
color: Theme.of(context)
|
||
.colorScheme
|
||
.outline),
|
||
),
|
||
),
|
||
TextButton(
|
||
onPressed: () {
|
||
Get.back();
|
||
int choice =
|
||
int.tryParse(duration) ?? 0;
|
||
shutdownTimerService
|
||
.scheduledExitInMinutes = choice;
|
||
shutdownTimerService
|
||
.startShutdownTimer();
|
||
setState(() {});
|
||
},
|
||
child: Text('确定'),
|
||
),
|
||
],
|
||
);
|
||
},
|
||
);
|
||
} else {
|
||
Get.back();
|
||
shutdownTimerService.scheduledExitInMinutes =
|
||
choice;
|
||
shutdownTimerService.startShutdownTimer();
|
||
}
|
||
},
|
||
contentPadding: const EdgeInsets.only(),
|
||
title: Text(choice == -1
|
||
? '自定义'
|
||
: choice == 0
|
||
? "禁用"
|
||
: "$choice分钟后"),
|
||
trailing: shutdownTimerService
|
||
.scheduledExitInMinutes ==
|
||
choice
|
||
? Icon(
|
||
Icons.done,
|
||
color: Theme.of(context).colorScheme.primary,
|
||
)
|
||
: null,
|
||
),
|
||
),
|
||
const SizedBox(height: 6),
|
||
const Center(
|
||
child: SizedBox(
|
||
width: 125,
|
||
child: Divider(height: 1),
|
||
),
|
||
),
|
||
const SizedBox(height: 10),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
shutdownTimerService.waitForPlayingCompleted =
|
||
!shutdownTimerService.waitForPlayingCompleted;
|
||
setState(() {});
|
||
},
|
||
contentPadding: const EdgeInsets.only(),
|
||
title: const Text("额外等待视频播放完毕", style: titleStyle),
|
||
trailing: Transform.scale(
|
||
alignment: Alignment
|
||
.centerRight, // 缩放Switch的大小后保持右侧对齐, 避免右侧空隙过大
|
||
scale: 0.8,
|
||
child: Switch(
|
||
thumbIcon: WidgetStateProperty.resolveWith<Icon?>(
|
||
(Set<WidgetState> states) {
|
||
if (states.isNotEmpty &&
|
||
states.first == WidgetState.selected) {
|
||
return const Icon(Icons.done);
|
||
}
|
||
return null;
|
||
}),
|
||
value: shutdownTimerService.waitForPlayingCompleted,
|
||
onChanged: (value) => setState(() =>
|
||
shutdownTimerService.waitForPlayingCompleted =
|
||
value),
|
||
),
|
||
),
|
||
),
|
||
const SizedBox(height: 10),
|
||
Row(
|
||
children: [
|
||
const Text('倒计时结束:', style: titleStyle),
|
||
const Spacer(),
|
||
ActionRowLineItem(
|
||
onTap: () {
|
||
shutdownTimerService.exitApp = false;
|
||
setState(() {});
|
||
// Get.back();
|
||
},
|
||
text: " 暂停视频 ",
|
||
selectStatus: !shutdownTimerService.exitApp,
|
||
),
|
||
const Spacer(),
|
||
// const SizedBox(width: 10),
|
||
ActionRowLineItem(
|
||
onTap: () {
|
||
shutdownTimerService.exitApp = true;
|
||
setState(() {});
|
||
// Get.back();
|
||
},
|
||
text: " 退出APP ",
|
||
selectStatus: shutdownTimerService.exitApp,
|
||
)
|
||
],
|
||
),
|
||
const SizedBox(height: 10),
|
||
],
|
||
),
|
||
),
|
||
),
|
||
);
|
||
},
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
/// 选择画质
|
||
void showSetVideoQa() {
|
||
if (videoInfo.dash == null) {
|
||
SmartDialog.showToast('当前视频不支持选择画质');
|
||
return;
|
||
}
|
||
final List<FormatItem> videoFormat = videoInfo.supportFormats!;
|
||
final VideoQuality currentVideoQa = widget.videoDetailCtr!.currentVideoQa;
|
||
|
||
/// 总质量分类
|
||
final int totalQaSam = videoFormat.length;
|
||
|
||
/// 可用的质量分类
|
||
int userfulQaSam = 0;
|
||
final List<VideoItem> video = videoInfo.dash!.video!;
|
||
final Set<int> idSet = {};
|
||
for (final VideoItem item in video) {
|
||
final int id = item.id!;
|
||
if (!idSet.contains(id)) {
|
||
idSet.add(id);
|
||
userfulQaSam++;
|
||
}
|
||
}
|
||
|
||
showModalBottomSheet(
|
||
context: context,
|
||
elevation: 0,
|
||
backgroundColor: Colors.transparent,
|
||
builder: (BuildContext context) {
|
||
return Container(
|
||
width: double.infinity,
|
||
height: 310,
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: EdgeInsets.only(
|
||
left: 12,
|
||
top: 12,
|
||
right: 12,
|
||
bottom: 12 + MediaQuery.paddingOf(context).bottom,
|
||
),
|
||
child: Column(
|
||
children: [
|
||
SizedBox(
|
||
height: 45,
|
||
child: GestureDetector(
|
||
onTap: () {
|
||
SmartDialog.showToast(
|
||
'标灰画质需要bilibili会员(已是会员?请关闭无痕模式);4k和杜比视界播放效果可能不佳');
|
||
},
|
||
child: Row(
|
||
mainAxisAlignment: MainAxisAlignment.center,
|
||
children: [
|
||
const Text('选择画质', style: titleStyle),
|
||
SizedBox(width: buttonSpace),
|
||
Icon(
|
||
Icons.info_outline,
|
||
size: 16,
|
||
color: Theme.of(context).colorScheme.outline,
|
||
)
|
||
],
|
||
),
|
||
),
|
||
),
|
||
Expanded(
|
||
child: Material(
|
||
child: Scrollbar(
|
||
child: MediaQuery.removePadding(
|
||
context: context,
|
||
removeBottom: true,
|
||
child: ListView(
|
||
children: [
|
||
for (int i = 0; i < totalQaSam; i++) ...[
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
if (currentVideoQa.code ==
|
||
videoFormat[i].quality) {
|
||
return;
|
||
}
|
||
final int quality = videoFormat[i].quality!;
|
||
widget.videoDetailCtr!.currentVideoQa =
|
||
VideoQualityCode.fromCode(quality)!;
|
||
String oldQualityDesc =
|
||
VideoQualityCode.fromCode(setting.get(
|
||
SettingBoxKey.defaultVideoQa,
|
||
defaultValue:
|
||
VideoQuality.values.last.code))!
|
||
.description;
|
||
setting.put(
|
||
SettingBoxKey.defaultVideoQa, quality);
|
||
SmartDialog.showToast(
|
||
"默认画质由:$oldQualityDesc 变为:${VideoQualityCode.fromCode(quality)!.description}");
|
||
widget.videoDetailCtr!.updatePlayer();
|
||
Get.back();
|
||
},
|
||
// 可能包含会员解锁画质
|
||
enabled: i >= totalQaSam - userfulQaSam,
|
||
contentPadding:
|
||
const EdgeInsets.only(left: 20, right: 20),
|
||
title: Text(videoFormat[i].newDesc!),
|
||
trailing: currentVideoQa.code ==
|
||
videoFormat[i].quality
|
||
? Icon(
|
||
Icons.done,
|
||
color:
|
||
Theme.of(context).colorScheme.primary,
|
||
)
|
||
: Text(
|
||
videoFormat[i].format!,
|
||
style: subTitleStyle,
|
||
),
|
||
),
|
||
]
|
||
],
|
||
),
|
||
),
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
/// 选择音质
|
||
void showSetAudioQa() {
|
||
final AudioQuality currentAudioQa = widget.videoDetailCtr!.currentAudioQa!;
|
||
final List<AudioItem> audio = videoInfo.dash!.audio!;
|
||
showModalBottomSheet(
|
||
context: context,
|
||
elevation: 0,
|
||
backgroundColor: Colors.transparent,
|
||
builder: (BuildContext context) {
|
||
return Container(
|
||
width: double.infinity,
|
||
height: 250,
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: EdgeInsets.only(
|
||
left: 12,
|
||
top: 12,
|
||
right: 12,
|
||
bottom: 12 + MediaQuery.paddingOf(context).bottom,
|
||
),
|
||
child: Column(
|
||
children: [
|
||
const SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('选择音质', style: titleStyle))),
|
||
Expanded(
|
||
child: Material(
|
||
child: MediaQuery.removePadding(
|
||
context: context,
|
||
removeBottom: true,
|
||
child: ListView(
|
||
children: [
|
||
for (final AudioItem i in audio) ...[
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
if (currentAudioQa.code == i.id) {
|
||
return;
|
||
}
|
||
final int quality = i.id!;
|
||
widget.videoDetailCtr!.currentAudioQa =
|
||
AudioQualityCode.fromCode(quality)!;
|
||
String oldQualityDesc = AudioQualityCode.fromCode(
|
||
setting.get(SettingBoxKey.defaultAudioQa,
|
||
defaultValue:
|
||
AudioQuality.values.last.code))!
|
||
.description;
|
||
setting.put(
|
||
SettingBoxKey.defaultAudioQa, quality);
|
||
SmartDialog.showToast(
|
||
"默认音质由:$oldQualityDesc 变为:${AudioQualityCode.fromCode(quality)!.description}");
|
||
widget.videoDetailCtr!.updatePlayer();
|
||
Get.back();
|
||
},
|
||
contentPadding:
|
||
const EdgeInsets.only(left: 20, right: 20),
|
||
title: Text(i.quality!),
|
||
subtitle: Text(
|
||
i.codecs!,
|
||
style: subTitleStyle,
|
||
),
|
||
trailing: currentAudioQa.code == i.id
|
||
? Icon(
|
||
Icons.done,
|
||
color:
|
||
Theme.of(context).colorScheme.primary,
|
||
)
|
||
: const SizedBox(),
|
||
),
|
||
]
|
||
],
|
||
),
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
// 选择解码格式
|
||
void showSetDecodeFormats() {
|
||
// 当前选中的解码格式
|
||
final VideoDecodeFormats currentDecodeFormats =
|
||
widget.videoDetailCtr!.currentDecodeFormats;
|
||
final VideoItem firstVideo = widget.videoDetailCtr!.firstVideo;
|
||
// 当前视频可用的解码格式
|
||
final List<FormatItem> videoFormat = videoInfo.supportFormats!;
|
||
final List? list = videoFormat
|
||
.firstWhere((FormatItem e) => e.quality == firstVideo.quality!.code)
|
||
.codecs;
|
||
if (list == null) {
|
||
SmartDialog.showToast('当前视频不支持选择解码格式');
|
||
return;
|
||
}
|
||
|
||
showModalBottomSheet(
|
||
context: context,
|
||
elevation: 0,
|
||
backgroundColor: Colors.transparent,
|
||
builder: (BuildContext context) {
|
||
return Container(
|
||
width: double.infinity,
|
||
height: 250,
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: EdgeInsets.only(
|
||
left: 12,
|
||
top: 12,
|
||
right: 12,
|
||
bottom: 12 + MediaQuery.paddingOf(context).bottom,
|
||
),
|
||
child: Column(
|
||
children: [
|
||
const SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('选择解码格式', style: titleStyle))),
|
||
Expanded(
|
||
child: Material(
|
||
child: MediaQuery.removePadding(
|
||
context: context,
|
||
removeBottom: true,
|
||
child: ListView(
|
||
children: [
|
||
for (var i in list) ...[
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
if (i.startsWith(currentDecodeFormats.code)) {
|
||
return;
|
||
}
|
||
widget.videoDetailCtr!.currentDecodeFormats =
|
||
VideoDecodeFormatsCode.fromString(i)!;
|
||
widget.videoDetailCtr!.updatePlayer();
|
||
Get.back();
|
||
},
|
||
contentPadding:
|
||
const EdgeInsets.only(left: 20, right: 20),
|
||
title: Text(VideoDecodeFormatsCode.fromString(i)!
|
||
.description!),
|
||
subtitle: Text(
|
||
i!,
|
||
style: subTitleStyle,
|
||
),
|
||
trailing: i.startsWith(currentDecodeFormats.code)
|
||
? Icon(
|
||
Icons.done,
|
||
color:
|
||
Theme.of(context).colorScheme.primary,
|
||
)
|
||
: const SizedBox(),
|
||
),
|
||
]
|
||
],
|
||
),
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
/// 弹幕功能
|
||
void showSetDanmaku() async {
|
||
// 屏蔽类型
|
||
final List<Map<String, dynamic>> blockTypesList = [
|
||
{'value': 5, 'label': '顶部'},
|
||
{'value': 2, 'label': '滚动'},
|
||
{'value': 4, 'label': '底部'},
|
||
{'value': 6, 'label': '彩色'},
|
||
];
|
||
final List blockTypes = widget.controller!.blockTypes;
|
||
// 显示区域
|
||
final List<Map<String, dynamic>> showAreas = [
|
||
{'value': 0.25, 'label': '1/4屏'},
|
||
{'value': 0.5, 'label': '半屏'},
|
||
{'value': 0.75, 'label': '3/4屏'},
|
||
{'value': 1.0, 'label': '满屏'},
|
||
];
|
||
// 智能云屏蔽
|
||
int danmakuWeight = widget.controller!.danmakuWeight.value;
|
||
// 显示区域
|
||
double showArea = widget.controller!.showArea;
|
||
// 不透明度
|
||
double opacityVal = widget.controller!.opacityVal;
|
||
// 字体大小
|
||
double fontSizeVal = widget.controller!.fontSizeVal;
|
||
// 全屏字体大小
|
||
double fontSizeFSVal = widget.controller!.fontSizeFSVal;
|
||
double subtitleFontScale = widget.controller!.subtitleFontScale.value;
|
||
double subtitleFontScaleFS = widget.controller!.subtitleFontScaleFS.value;
|
||
// 弹幕速度
|
||
double danmakuDurationVal = widget.controller!.danmakuDurationVal;
|
||
// 弹幕描边
|
||
double strokeWidth = widget.controller!.strokeWidth;
|
||
// 字体粗细
|
||
int fontWeight = widget.controller!.fontWeight;
|
||
bool massiveMode = widget.controller!.massiveMode;
|
||
|
||
final DanmakuController danmakuController =
|
||
widget.controller!.danmakuController!;
|
||
await showModalBottomSheet(
|
||
context: context,
|
||
elevation: 0,
|
||
backgroundColor: Colors.transparent,
|
||
builder: (BuildContext context) {
|
||
return StatefulBuilder(
|
||
builder: (BuildContext context, StateSetter setState) {
|
||
return Container(
|
||
width: double.infinity,
|
||
height: 600,
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: EdgeInsets.only(
|
||
left: 12,
|
||
top: 12,
|
||
right: 12,
|
||
bottom:
|
||
(widget.controller?.isFullScreen.value == true ? 70 : 12) +
|
||
MediaQuery.paddingOf(context).bottom,
|
||
),
|
||
padding: const EdgeInsets.only(left: 14, right: 14),
|
||
child: SingleChildScrollView(
|
||
child: Column(
|
||
crossAxisAlignment: CrossAxisAlignment.start,
|
||
children: [
|
||
const SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('弹幕设置', style: titleStyle)),
|
||
),
|
||
const SizedBox(height: 10),
|
||
Row(
|
||
children: [
|
||
Text('智能云屏蔽 $danmakuWeight 级'),
|
||
const Spacer(),
|
||
TextButton(
|
||
style: TextButton.styleFrom(
|
||
padding: EdgeInsets.zero,
|
||
minimumSize: Size.zero,
|
||
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
||
),
|
||
onPressed: () => {
|
||
Get.back(),
|
||
Get.toNamed('/danmakuBlock',
|
||
arguments: widget.controller)
|
||
},
|
||
child: Text(
|
||
"屏蔽管理(${widget.controller!.danmakuFilterRule.value.length})")),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0,
|
||
max: 10,
|
||
value: danmakuWeight.toDouble(),
|
||
divisions: 10,
|
||
label: '$danmakuWeight',
|
||
onChanged: (double val) {
|
||
danmakuWeight = val.toInt();
|
||
widget.controller!.danmakuWeight.value =
|
||
danmakuWeight;
|
||
widget.controller!.putDanmakuSettings();
|
||
setState(() {});
|
||
},
|
||
),
|
||
),
|
||
),
|
||
const Text('按类型屏蔽'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(top: 12, bottom: 18),
|
||
child: Row(
|
||
children: [
|
||
for (final Map<String, dynamic> i
|
||
in blockTypesList) ...[
|
||
ActionRowLineItem(
|
||
onTap: () async {
|
||
final bool isChoose =
|
||
blockTypes.contains(i['value']);
|
||
if (isChoose) {
|
||
blockTypes.remove(i['value']);
|
||
} else {
|
||
blockTypes.add(i['value']);
|
||
}
|
||
widget.controller!.blockTypes = blockTypes;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option.copyWith(
|
||
hideTop: blockTypes.contains(5),
|
||
hideBottom: blockTypes.contains(4),
|
||
hideScroll: blockTypes.contains(2),
|
||
// 添加或修改其他需要修改的选项属性
|
||
),
|
||
);
|
||
} catch (_) {}
|
||
},
|
||
text: i['label'],
|
||
selectStatus: blockTypes.contains(i['value']),
|
||
),
|
||
const SizedBox(width: 10),
|
||
]
|
||
],
|
||
),
|
||
),
|
||
const Text('显示区域'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(top: 12),
|
||
child: Row(
|
||
children: [
|
||
for (final Map<String, dynamic> i in showAreas) ...[
|
||
ActionRowLineItem(
|
||
onTap: () {
|
||
showArea = i['value'];
|
||
widget.controller!.showArea = showArea;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option
|
||
.copyWith(area: i['value']),
|
||
);
|
||
} catch (_) {}
|
||
},
|
||
text: i['label'],
|
||
selectStatus: showArea == i['value'],
|
||
),
|
||
const SizedBox(width: 10),
|
||
]
|
||
],
|
||
),
|
||
),
|
||
SetSwitchItem(
|
||
title: '海量弹幕',
|
||
contentPadding: EdgeInsets.all(0),
|
||
titleStyle: TextStyle(fontSize: 14),
|
||
defaultVal: massiveMode,
|
||
setKey: SettingBoxKey.danmakuMassiveMode,
|
||
onChanged: (value) {
|
||
massiveMode = value;
|
||
widget.controller!.massiveMode = value;
|
||
setState(() {});
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option.copyWith(massiveMode: value),
|
||
);
|
||
} catch (_) {}
|
||
},
|
||
),
|
||
Text('不透明度 ${opacityVal * 100}%'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0,
|
||
max: 1,
|
||
value: opacityVal,
|
||
divisions: 10,
|
||
label: '${opacityVal * 100}%',
|
||
onChanged: (double val) {
|
||
opacityVal = val;
|
||
widget.controller!.opacityVal = opacityVal;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option.copyWith(opacity: val),
|
||
);
|
||
} catch (_) {}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Text('字体粗细 ${fontWeight + 1}(可能无法精确调节)'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0,
|
||
max: 8,
|
||
value: fontWeight.toDouble(),
|
||
divisions: 8,
|
||
label: '${fontWeight + 1}',
|
||
onChanged: (double val) {
|
||
fontWeight = val.toInt();
|
||
widget.controller!.fontWeight = fontWeight;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option
|
||
.copyWith(fontWeight: fontWeight),
|
||
);
|
||
} catch (_) {}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Text('描边粗细 $strokeWidth'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0,
|
||
max: 3,
|
||
value: strokeWidth,
|
||
divisions: 6,
|
||
label: '$strokeWidth',
|
||
onChanged: (double val) {
|
||
strokeWidth = val;
|
||
widget.controller!.strokeWidth = val;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option
|
||
.copyWith(strokeWidth: val),
|
||
);
|
||
} catch (_) {}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Text('字体大小 ${(fontSizeVal * 100).toStringAsFixed(1)}%'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: fontSizeVal,
|
||
divisions: 20,
|
||
label: '${(fontSizeVal * 100).toStringAsFixed(1)}%',
|
||
onChanged: (double val) {
|
||
fontSizeVal = val;
|
||
widget.controller!.fontSizeVal = fontSizeVal;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
if (widget.controller?.isFullScreen.value == false) {
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option.copyWith(
|
||
fontSize: (15 * fontSizeVal).toDouble(),
|
||
),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Text('全屏字体大小 ${(fontSizeFSVal * 100).toStringAsFixed(1)}%'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: fontSizeFSVal,
|
||
divisions: 20,
|
||
label: '${(fontSizeFSVal * 100).toStringAsFixed(1)}%',
|
||
onChanged: (double val) {
|
||
fontSizeFSVal = val;
|
||
widget.controller!.fontSizeFSVal = fontSizeFSVal;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
if (widget.controller?.isFullScreen.value == true) {
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option.copyWith(
|
||
fontSize: (15 * fontSizeFSVal).toDouble(),
|
||
),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Text('弹幕时长 $danmakuDurationVal 秒'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 1,
|
||
max: 4,
|
||
value: pow(danmakuDurationVal, 1 / 4) as double,
|
||
divisions: 60,
|
||
label: danmakuDurationVal.toString(),
|
||
onChanged: (double val) {
|
||
danmakuDurationVal =
|
||
(pow(val, 4) as double).toPrecision(2);
|
||
widget.controller!.danmakuDurationVal =
|
||
danmakuDurationVal;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController.updateOption(
|
||
danmakuController.option.copyWith(
|
||
duration: danmakuDurationVal ~/
|
||
widget.controller!.playbackSpeed),
|
||
);
|
||
} catch (_) {}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Text(
|
||
'字幕字体大小 ${(subtitleFontScale * 100).toStringAsFixed(1)}%'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: subtitleFontScale,
|
||
divisions: 20,
|
||
label:
|
||
'${(subtitleFontScale * 100).toStringAsFixed(1)}%',
|
||
onChanged: (double val) {
|
||
subtitleFontScale = val;
|
||
widget.controller!.subtitleFontScale.value =
|
||
subtitleFontScale;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Text(
|
||
'全屏字幕字体大小 ${(subtitleFontScaleFS * 100).toStringAsFixed(1)}%'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(
|
||
enabledThumbRadius: 6.0),
|
||
),
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: subtitleFontScaleFS,
|
||
divisions: 20,
|
||
label:
|
||
'${(subtitleFontScaleFS * 100).toStringAsFixed(1)}%',
|
||
onChanged: (double val) {
|
||
subtitleFontScaleFS = val;
|
||
widget.controller!.subtitleFontScaleFS.value =
|
||
subtitleFontScaleFS;
|
||
widget.controller?.putDanmakuSettings();
|
||
setState(() {});
|
||
},
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
),
|
||
);
|
||
});
|
||
},
|
||
);
|
||
}
|
||
|
||
/// 播放顺序
|
||
void showSetRepeat() async {
|
||
showModalBottomSheet(
|
||
context: context,
|
||
elevation: 0,
|
||
backgroundColor: Colors.transparent,
|
||
builder: (BuildContext context) {
|
||
return Container(
|
||
width: double.infinity,
|
||
height: 300,
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: EdgeInsets.only(
|
||
left: 12,
|
||
top: 12,
|
||
right: 12,
|
||
bottom: 12 + MediaQuery.paddingOf(context).bottom,
|
||
),
|
||
child: Column(
|
||
children: [
|
||
const SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('选择播放顺序', style: titleStyle))),
|
||
Expanded(
|
||
child: Material(
|
||
child: MediaQuery.removePadding(
|
||
context: context,
|
||
removeBottom: true,
|
||
child: ListView(
|
||
children: [
|
||
for (final PlayRepeat i in PlayRepeat.values) ...[
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
widget.controller!.setPlayRepeat(i);
|
||
Get.back();
|
||
},
|
||
contentPadding:
|
||
const EdgeInsets.only(left: 20, right: 20),
|
||
title: Text(i.description),
|
||
trailing: widget.controller!.playRepeat == i
|
||
? Icon(
|
||
Icons.done,
|
||
color:
|
||
Theme.of(context).colorScheme.primary,
|
||
)
|
||
: const SizedBox(),
|
||
)
|
||
],
|
||
],
|
||
),
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
startClock() {
|
||
clock ??= Timer.periodic(const Duration(seconds: 1), (Timer t) {
|
||
if (!mounted) {
|
||
return;
|
||
}
|
||
now.value = DateTime.now().toString().split(' ')[1].substring(0, 5);
|
||
});
|
||
}
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
final plPlayerController = widget.controller!;
|
||
// final bool isLandscape =
|
||
// MediaQuery.of(context).orientation == Orientation.landscape;
|
||
|
||
bool equivalentFullScreen = !isFullScreen &&
|
||
!horizontalScreen &&
|
||
MediaQuery.of(context).orientation == Orientation.landscape;
|
||
return LayoutBuilder(builder: (context, boxConstraints) {
|
||
return AppBar(
|
||
backgroundColor: Colors.transparent,
|
||
foregroundColor: Colors.white,
|
||
primary: false,
|
||
automaticallyImplyLeading: false,
|
||
title: Row(
|
||
children: [
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '返回',
|
||
icon: const Icon(
|
||
FontAwesomeIcons.arrowLeft,
|
||
size: 15,
|
||
color: Colors.white,
|
||
),
|
||
onPressed: () {
|
||
if (widget.videoDetailCtr?.bsController != null) {
|
||
widget.videoDetailCtr?.bsController!.close();
|
||
widget.videoDetailCtr?.bsController = null;
|
||
} else if (isFullScreen) {
|
||
widget.controller!.triggerFullScreen(status: false);
|
||
} else if (MediaQuery.of(context).orientation ==
|
||
Orientation.landscape &&
|
||
!horizontalScreen) {
|
||
verticalScreenForTwoSeconds();
|
||
} else {
|
||
Get.back();
|
||
}
|
||
},
|
||
),
|
||
),
|
||
if (!isFullScreen ||
|
||
MediaQuery.of(context).orientation != Orientation.portrait)
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '返回主页',
|
||
icon: const Icon(
|
||
FontAwesomeIcons.house,
|
||
size: 15,
|
||
color: Colors.white,
|
||
),
|
||
onPressed: () {
|
||
Get.until((route) => route.isFirst);
|
||
},
|
||
),
|
||
),
|
||
if ((videoIntroController.videoDetail.value.title != null) &&
|
||
(isFullScreen || equivalentFullScreen))
|
||
Column(
|
||
crossAxisAlignment: CrossAxisAlignment.start,
|
||
children: [
|
||
ConstrainedBox(
|
||
constraints: BoxConstraints(
|
||
maxWidth: boxConstraints.maxWidth / 2 - 60,
|
||
maxHeight: 25),
|
||
child: Obx(
|
||
() => Marquee(
|
||
text: videoIntroController.videoDetail.value.title!,
|
||
style: const TextStyle(
|
||
color: Colors.white,
|
||
fontSize: 16,
|
||
),
|
||
scrollAxis: Axis.horizontal,
|
||
crossAxisAlignment: CrossAxisAlignment.start,
|
||
blankSpace: 200,
|
||
velocity: 40,
|
||
startAfter: const Duration(seconds: 1),
|
||
showFadingOnlyWhenScrolling: true,
|
||
fadingEdgeStartFraction: 0,
|
||
fadingEdgeEndFraction: 0.1,
|
||
numberOfRounds: 1,
|
||
startPadding: 0,
|
||
accelerationDuration: const Duration(seconds: 1),
|
||
accelerationCurve: Curves.linear,
|
||
decelerationDuration: const Duration(milliseconds: 500),
|
||
decelerationCurve: Curves.easeOut,
|
||
),
|
||
),
|
||
),
|
||
if (videoIntroController.isShowOnlineTotal)
|
||
Obx(
|
||
() => Text(
|
||
'${videoIntroController.total.value}人正在看',
|
||
style: const TextStyle(
|
||
color: Colors.white,
|
||
fontSize: 11,
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
const Spacer(),
|
||
if (MediaQuery.of(context).orientation == Orientation.landscape &&
|
||
(isFullScreen || !horizontalScreen)) ...[
|
||
// const Spacer(),
|
||
// show current datetime
|
||
Obx(
|
||
() => Text(
|
||
now.value,
|
||
style: const TextStyle(
|
||
color: Colors.white,
|
||
fontSize: 13,
|
||
),
|
||
),
|
||
),
|
||
const SizedBox(width: 15),
|
||
],
|
||
// ComBtn(
|
||
// icon: const Icon(
|
||
// FontAwesomeIcons.cropSimple,
|
||
// size: 15,
|
||
// color: Colors.white,
|
||
// ),
|
||
// fuc: () => _.screenshot(),
|
||
// ),
|
||
if (widget.videoDetailCtr?.enableSponsorBlock == true)
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '提交片段',
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: () => widget.videoDetailCtr?.onBlock(context),
|
||
icon: Stack(
|
||
alignment: Alignment.center,
|
||
children: [
|
||
Icon(Icons.shield, size: 18),
|
||
Icon(
|
||
Icons.play_arrow_rounded,
|
||
size: 17,
|
||
color: Colors.black87,
|
||
),
|
||
],
|
||
),
|
||
),
|
||
),
|
||
Obx(
|
||
() => widget.videoDetailCtr?.segmentList.isNotEmpty == true
|
||
? SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '片段信息',
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: () =>
|
||
widget.videoDetailCtr?.showSBDetail(context),
|
||
icon: Icon(
|
||
MdiIcons.advertisements,
|
||
size: 19,
|
||
color: Colors.white,
|
||
),
|
||
),
|
||
)
|
||
: const SizedBox.shrink(),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '发弹幕',
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: widget.videoDetailCtr?.showShootDanmakuSheet,
|
||
icon: const Icon(
|
||
Icons.comment_outlined,
|
||
size: 19,
|
||
color: Colors.white,
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => IconButton(
|
||
tooltip:
|
||
"${plPlayerController.isOpenDanmu.value ? '关闭' : '开启'}弹幕",
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: () {
|
||
plPlayerController.isOpenDanmu.value =
|
||
!plPlayerController.isOpenDanmu.value;
|
||
setting.put(SettingBoxKey.enableShowDanmaku,
|
||
plPlayerController.isOpenDanmu.value);
|
||
// SmartDialog.showToast(
|
||
// "已${plPlayerController.isOpenDanmu.value ? '开启' : '关闭'}弹幕",
|
||
// displayTime: const Duration(seconds: 1));
|
||
},
|
||
icon: Icon(
|
||
plPlayerController.isOpenDanmu.value
|
||
? Icons.subtitles_outlined
|
||
: Icons.subtitles_off_outlined,
|
||
size: 19,
|
||
color: Colors.white,
|
||
),
|
||
),
|
||
),
|
||
),
|
||
if (Platform.isAndroid)
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '画中画',
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: () async {
|
||
bool canUsePiP = widget.floating != null &&
|
||
await widget.floating!.isPipAvailable;
|
||
widget.controller!.hiddenControls(false);
|
||
if (canUsePiP) {
|
||
bool enableBackgroundPlay = setting.get(
|
||
SettingBoxKey.enableBackgroundPlay,
|
||
defaultValue: true);
|
||
if (!enableBackgroundPlay && context.mounted) {
|
||
// SmartDialog.showToast('建议开启【后台播放】功能\n避免画中画没有暂停按钮');
|
||
// await Future.delayed(const Duration(seconds: 2), () {
|
||
// });
|
||
ScaffoldMessenger.of(context).showSnackBar(
|
||
SnackBar(
|
||
content: Column(children: [
|
||
const Row(
|
||
children: [
|
||
Icon(
|
||
Icons.check,
|
||
color: Colors.green,
|
||
),
|
||
SizedBox(width: 10),
|
||
Text('画中画',
|
||
style:
|
||
TextStyle(fontSize: 15, height: 1.5))
|
||
],
|
||
),
|
||
const SizedBox(height: 10),
|
||
const Text(
|
||
'建议开启【后台音频服务】\n'
|
||
'避免画中画没有暂停按钮',
|
||
style:
|
||
TextStyle(fontSize: 12.5, height: 1.5)),
|
||
Row(children: [
|
||
TextButton(
|
||
style: ButtonStyle(
|
||
foregroundColor:
|
||
WidgetStateProperty.resolveWith(
|
||
(states) {
|
||
return Theme.of(context)
|
||
.snackBarTheme
|
||
.actionTextColor;
|
||
}),
|
||
),
|
||
onPressed: () async {
|
||
plPlayerController
|
||
.setBackgroundPlay(true);
|
||
SmartDialog.showToast("请重新载入本页面刷新");
|
||
// Get.back();
|
||
},
|
||
child: const Text('启用后台音频服务')),
|
||
const SizedBox(width: 10),
|
||
TextButton(
|
||
style: ButtonStyle(
|
||
foregroundColor:
|
||
WidgetStateProperty.resolveWith(
|
||
(states) {
|
||
return Theme.of(context)
|
||
.snackBarTheme
|
||
.actionTextColor;
|
||
}),
|
||
),
|
||
onPressed: () {},
|
||
child: const Text('不启用'))
|
||
])
|
||
]),
|
||
duration: const Duration(seconds: 2),
|
||
showCloseIcon: true,
|
||
),
|
||
);
|
||
await Future.delayed(const Duration(seconds: 3), () {});
|
||
}
|
||
final Rational aspectRatio = Rational(
|
||
widget.videoDetailCtr!.data.dash!.video!.first.width!,
|
||
widget.videoDetailCtr!.data.dash!.video!.first.height!,
|
||
);
|
||
if (!context.mounted) return;
|
||
await widget.floating!.enable(EnableManual(
|
||
aspectRatio: aspectRatio,
|
||
));
|
||
} else {}
|
||
},
|
||
icon: const Icon(
|
||
Icons.picture_in_picture_outlined,
|
||
size: 19,
|
||
color: Colors.white,
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: "更多设置",
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: showSettingSheet,
|
||
icon: const Icon(
|
||
Icons.more_vert_outlined,
|
||
size: 19,
|
||
color: Colors.white,
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
);
|
||
});
|
||
}
|
||
}
|
||
|
||
class MSliderTrackShape extends RoundedRectSliderTrackShape {
|
||
@override
|
||
Rect getPreferredRect({
|
||
required RenderBox parentBox,
|
||
Offset offset = Offset.zero,
|
||
SliderThemeData? sliderTheme,
|
||
bool isEnabled = false,
|
||
bool isDiscrete = false,
|
||
}) {
|
||
const double trackHeight = 3;
|
||
final double trackLeft = offset.dx;
|
||
final double trackTop =
|
||
offset.dy + (parentBox.size.height - trackHeight) / 2 + 4;
|
||
final double trackWidth = parentBox.size.width;
|
||
return Rect.fromLTWH(trackLeft, trackTop, trackWidth, trackHeight);
|
||
}
|
||
}
|