mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
2538 lines
102 KiB
Dart
2538 lines
102 KiB
Dart
import 'dart:async';
|
||
import 'dart:io';
|
||
import 'dart:math';
|
||
|
||
import 'package:PiliPlus/common/widgets/icon_button.dart';
|
||
import 'package:PiliPlus/common/widgets/self_sized_horizontal_list.dart';
|
||
import 'package:PiliPlus/models/common/search_type.dart';
|
||
import 'package:PiliPlus/models/common/super_resolution_type.dart';
|
||
import 'package:PiliPlus/pages/bangumi/introduction/controller.dart';
|
||
import 'package:PiliPlus/pages/setting/widgets/switch_item.dart';
|
||
import 'package:PiliPlus/pages/video/detail/introduction/widgets/action_item.dart';
|
||
import 'package:PiliPlus/utils/download.dart';
|
||
import 'package:PiliPlus/utils/extension.dart';
|
||
import 'package:PiliPlus/utils/utils.dart';
|
||
import 'package:canvas_danmaku/canvas_danmaku.dart';
|
||
import 'package:connectivity_plus/connectivity_plus.dart';
|
||
import 'package:dio/dio.dart';
|
||
import 'package:document_file_save_plus/document_file_save_plus_platform_interface.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:PiliPlus/models/video/play/quality.dart';
|
||
import 'package:PiliPlus/models/video/play/url.dart';
|
||
import 'package:PiliPlus/pages/video/detail/index.dart';
|
||
import 'package:PiliPlus/pages/video/detail/introduction/widgets/menu_row.dart';
|
||
import 'package:PiliPlus/plugin/pl_player/index.dart';
|
||
import 'package:PiliPlus/plugin/pl_player/models/play_repeat.dart';
|
||
import 'package:PiliPlus/utils/storage.dart';
|
||
import 'package:share_plus/share_plus.dart';
|
||
import '../../../../models/video/play/CDN.dart';
|
||
import '../../../setting/widgets/select_dialog.dart';
|
||
import '../introduction/index.dart';
|
||
import 'package:marquee/marquee.dart';
|
||
|
||
class HeaderControl extends StatefulWidget implements PreferredSizeWidget {
|
||
const HeaderControl({
|
||
required this.controller,
|
||
required 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> {
|
||
PlayUrlModel get videoInfo => videoDetailCtr.data;
|
||
static const TextStyle subTitleStyle = TextStyle(fontSize: 12);
|
||
static const TextStyle titleStyle = TextStyle(fontSize: 14);
|
||
Size get preferredSize => const Size(double.infinity, kToolbarHeight);
|
||
double buttonSpace = 8;
|
||
String get heroTag => widget.heroTag;
|
||
late VideoIntroController videoIntroController;
|
||
late BangumiIntroController bangumiIntroController;
|
||
late bool horizontalScreen;
|
||
RxString now = ''.obs;
|
||
Timer? clock;
|
||
late String defaultCDNService;
|
||
bool get isFullScreen => widget.controller.isFullScreen.value;
|
||
Box get setting => GStorage.setting;
|
||
late final _coinKey = GlobalKey<ActionItemState>();
|
||
late final _favKey = GlobalKey<ActionItemState>();
|
||
|
||
PlPlayerController get plPlayerController => widget.controller;
|
||
VideoDetailController get videoDetailCtr => widget.videoDetailCtr;
|
||
|
||
@override
|
||
void initState() {
|
||
super.initState();
|
||
videoIntroController = Get.find<VideoIntroController>(tag: heroTag);
|
||
if (videoDetailCtr.videoType != SearchType.video) {
|
||
bangumiIntroController = Get.find<BangumiIntroController>(tag: heroTag);
|
||
}
|
||
horizontalScreen =
|
||
setting.get(SettingBoxKey.horizontalScreen, defaultValue: false);
|
||
defaultCDNService = setting.get(SettingBoxKey.CDNService,
|
||
defaultValue: CDNService.backupUrl.code);
|
||
}
|
||
|
||
@override
|
||
void dispose() {
|
||
clock?.cancel();
|
||
super.dispose();
|
||
}
|
||
|
||
void showBottomSheet(StatefulWidgetBuilder builder, {double? padding}) {
|
||
Utils.showFSSheet(
|
||
context,
|
||
isFullScreen: () => isFullScreen,
|
||
padding: padding,
|
||
child: StatefulBuilder(
|
||
builder: (context, setState) => plPlayerController.darkVideoPage
|
||
? Theme(
|
||
data: Theme.of(this.context),
|
||
child: builder(this.context, setState),
|
||
)
|
||
: builder(context, setState),
|
||
),
|
||
);
|
||
}
|
||
|
||
/// 设置面板
|
||
void showSettingSheet() {
|
||
showBottomSheet(
|
||
(context, setState) => Material(
|
||
color: Colors.transparent,
|
||
child: Container(
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: const EdgeInsets.all(12),
|
||
child: ListView(
|
||
padding: EdgeInsets.zero,
|
||
children: [
|
||
const SizedBox(height: 14),
|
||
// 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 (videoDetailCtr.userInfo != null)
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
Get.back();
|
||
videoIntroController.viewLater();
|
||
},
|
||
leading: const Icon(Icons.watch_later_outlined, size: 20),
|
||
title: const Text('添加至「稍后再看」', style: titleStyle),
|
||
),
|
||
if (videoDetailCtr.epId == null)
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
Get.back();
|
||
videoDetailCtr.showNoteList(context);
|
||
},
|
||
leading: const Icon(Icons.note_alt_outlined, size: 20),
|
||
title: const Text('查看笔记', style: titleStyle),
|
||
),
|
||
if (widget.videoDetailCtr.videoItem['pic'] != null)
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
Get.back();
|
||
DownloadUtils.downloadImg(
|
||
context,
|
||
[widget.videoDetailCtr.videoItem['pic']],
|
||
);
|
||
},
|
||
leading: const Icon(Icons.image_outlined, size: 20),
|
||
title: const Text('保存封面', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () =>
|
||
{Get.back(), Utils.scheduleExit(context, isFullScreen)},
|
||
leading: const Icon(Icons.hourglass_top_outlined, size: 20),
|
||
title: const Text('定时关闭', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {
|
||
Get.back(),
|
||
videoDetailCtr.queryVideoUrl(
|
||
videoDetailCtr.playedTime,
|
||
)
|
||
},
|
||
leading: const Icon(Icons.refresh_outlined, size: 20),
|
||
title: const Text('重载视频', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
leading:
|
||
const Icon(Icons.stay_current_landscape_outlined, size: 20),
|
||
title: Row(
|
||
children: [
|
||
const Text(
|
||
'超分辨率',
|
||
strutStyle: StrutStyle(leading: 0, height: 1),
|
||
style: TextStyle(
|
||
height: 1,
|
||
fontSize: 14,
|
||
),
|
||
),
|
||
const SizedBox(width: 10),
|
||
Builder(
|
||
builder: (context) => PopupMenuButton(
|
||
initialValue: SuperResolutionType
|
||
.values[widget.controller.superResolutionType],
|
||
child: Padding(
|
||
padding: const EdgeInsets.all(4),
|
||
child: Row(
|
||
mainAxisSize: MainAxisSize.min,
|
||
children: [
|
||
Text(
|
||
SuperResolutionType
|
||
.values[
|
||
widget.controller.superResolutionType]
|
||
.title,
|
||
strutStyle: StrutStyle(leading: 0, height: 1),
|
||
style: TextStyle(
|
||
height: 1,
|
||
fontSize: 14,
|
||
color:
|
||
Theme.of(context).colorScheme.secondary,
|
||
),
|
||
),
|
||
Icon(
|
||
MdiIcons.unfoldMoreHorizontal,
|
||
size:
|
||
MediaQuery.textScalerOf(context).scale(14),
|
||
color: Theme.of(context).colorScheme.secondary,
|
||
)
|
||
],
|
||
),
|
||
),
|
||
onSelected: (value) {
|
||
widget.controller.setShader(value.index);
|
||
if (context.mounted) {
|
||
(context as Element).markNeedsBuild();
|
||
}
|
||
},
|
||
itemBuilder: (context) => SuperResolutionType.values
|
||
.map((item) => PopupMenuItem(
|
||
value: item,
|
||
child: Text(item.title),
|
||
))
|
||
.toList(),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
),
|
||
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 CdnSelectDialog(
|
||
sample: videoInfo.dash?.video?.first);
|
||
},
|
||
);
|
||
if (result != null) {
|
||
defaultCDNService = result;
|
||
setting.put(SettingBoxKey.CDNService, result);
|
||
SmartDialog.showToast(
|
||
'已设置为 ${CDNServiceCode.fromCode(result)!.description},正在重载视频');
|
||
setState(() {});
|
||
videoDetailCtr.queryVideoUrl(
|
||
videoDetailCtr.playedTime,
|
||
);
|
||
}
|
||
},
|
||
),
|
||
SelfSizedHorizontalList(
|
||
itemCount: 4,
|
||
gapSize: 10,
|
||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||
childBuilder: (index) {
|
||
return switch (index) {
|
||
0 => Obx(
|
||
() => ActionRowLineItem(
|
||
iconData: Icons.flip,
|
||
onTap: () {
|
||
widget.controller.flipX.value =
|
||
!widget.controller.flipX.value;
|
||
},
|
||
text: " 左右翻转 ",
|
||
selectStatus: widget.controller.flipX.value,
|
||
),
|
||
),
|
||
1 => Obx(
|
||
() => ActionRowLineItem(
|
||
icon: Transform.rotate(
|
||
angle: pi / 2,
|
||
child: Icon(
|
||
Icons.flip,
|
||
size: 13,
|
||
color: widget.controller.flipY.value
|
||
? Theme.of(context)
|
||
.colorScheme
|
||
.onSecondaryContainer
|
||
: Theme.of(context).colorScheme.outline,
|
||
),
|
||
),
|
||
onTap: () {
|
||
widget.controller.flipY.value =
|
||
!widget.controller.flipY.value;
|
||
},
|
||
text: " 上下翻转 ",
|
||
selectStatus: widget.controller.flipY.value,
|
||
),
|
||
),
|
||
2 => Obx(
|
||
() => ActionRowLineItem(
|
||
iconData: Icons.headphones,
|
||
onTap: () {
|
||
widget.controller.onlyPlayAudio.value =
|
||
!widget.controller.onlyPlayAudio.value;
|
||
widget.videoDetailCtr.playerInit();
|
||
},
|
||
text: " 听视频 ",
|
||
selectStatus: widget.controller.onlyPlayAudio.value,
|
||
),
|
||
),
|
||
3 => Obx(
|
||
() => ActionRowLineItem(
|
||
iconData: Icons.play_circle_outline,
|
||
onTap: widget.controller.setContinuePlayInBackground,
|
||
text: " 后台播放 ",
|
||
selectStatus:
|
||
widget.controller.continuePlayInBackground.value,
|
||
),
|
||
),
|
||
int() => throw UnimplementedError(),
|
||
};
|
||
},
|
||
),
|
||
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), showSetVideoQa()},
|
||
leading: const Icon(Icons.play_circle_outline, size: 20),
|
||
title: const Text('选择画质', style: titleStyle),
|
||
subtitle: Text(
|
||
'当前画质 ${videoDetailCtr.currentVideoQa.description}',
|
||
style: subTitleStyle),
|
||
),
|
||
if (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(
|
||
'当前音质 ${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(
|
||
'当前解码格式 ${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: Transform.rotate(
|
||
angle: pi,
|
||
child: const Icon(Icons.subtitles_outlined, size: 20),
|
||
),
|
||
title: const Text('弹幕设置', style: titleStyle),
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), showSetSubtitle()},
|
||
leading: const Icon(Icons.subtitles_outlined, size: 20),
|
||
title: const Text('字幕设置', style: titleStyle),
|
||
),
|
||
if (videoDetailCtr.subtitles.isNotEmpty)
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () => {Get.back(), onExportSubtitle()},
|
||
leading: const Icon(Icons.download_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: () {
|
||
Utils.copyText(
|
||
'Resolution\n${player.state.width}x${player.state.height}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("VideoParams"),
|
||
subtitle:
|
||
Text(player.state.videoParams.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'VideoParams\n${player.state.videoParams}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("AudioParams"),
|
||
subtitle:
|
||
Text(player.state.audioParams.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'AudioParams\n${player.state.audioParams}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("Media"),
|
||
subtitle:
|
||
Text(player.state.playlist.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'Media\n${player.state.playlist}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("AudioTrack"),
|
||
subtitle:
|
||
Text(player.state.track.audio.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'AudioTrack\n${player.state.track.audio}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("VideoTrack"),
|
||
subtitle:
|
||
Text(player.state.track.video.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'VideoTrack\n${player.state.track.audio}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("pitch"),
|
||
subtitle: Text(player.state.pitch.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'pitch\n${player.state.pitch}',
|
||
needToast: false,
|
||
);
|
||
}),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("rate"),
|
||
subtitle: Text(player.state.rate.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'rate\n${player.state.rate}',
|
||
needToast: false,
|
||
);
|
||
}),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("AudioBitrate"),
|
||
subtitle:
|
||
Text(player.state.audioBitrate.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'AudioBitrate\n${player.state.audioBitrate}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
title: const Text("Volume"),
|
||
subtitle: Text(player.state.volume.toString()),
|
||
onTap: () {
|
||
Utils.copyText(
|
||
'Volume\n${player.state.volume}',
|
||
needToast: false,
|
||
);
|
||
},
|
||
),
|
||
],
|
||
),
|
||
),
|
||
actions: [
|
||
TextButton(
|
||
onPressed: () => Get.back(),
|
||
child: Text(
|
||
'确定',
|
||
style: TextStyle(
|
||
color: Theme.of(context).colorScheme.outline),
|
||
),
|
||
),
|
||
],
|
||
);
|
||
},
|
||
);
|
||
},
|
||
),
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
if (!Accounts.main.isLogin) {
|
||
SmartDialog.showToast('账号未登录');
|
||
return;
|
||
}
|
||
Get.back();
|
||
Utils.reportVideo(videoDetailCtr.oid.value);
|
||
},
|
||
leading: const Icon(Icons.error_outline, size: 20),
|
||
title: const Text('举报', style: titleStyle),
|
||
),
|
||
const SizedBox(height: 14),
|
||
],
|
||
),
|
||
),
|
||
),
|
||
);
|
||
}
|
||
|
||
/// 选择画质
|
||
void showSetVideoQa() {
|
||
if (videoInfo.dash == null) {
|
||
SmartDialog.showToast('当前视频不支持选择画质');
|
||
return;
|
||
}
|
||
final List<FormatItem> videoFormat = videoInfo.supportFormats!;
|
||
final VideoQuality currentVideoQa = 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++;
|
||
}
|
||
}
|
||
|
||
showBottomSheet(
|
||
(context, setState) => Material(
|
||
color: Colors.transparent,
|
||
child: Container(
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: const EdgeInsets.all(12),
|
||
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(
|
||
color: Colors.transparent,
|
||
child: Scrollbar(
|
||
child: ListView(
|
||
padding: EdgeInsets.zero,
|
||
children: [
|
||
for (int i = 0; i < totalQaSam; i++) ...[
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () async {
|
||
if (currentVideoQa.code ==
|
||
videoFormat[i].quality) {
|
||
return;
|
||
}
|
||
Get.back();
|
||
final int quality = videoFormat[i].quality!;
|
||
videoDetailCtr.currentVideoQa =
|
||
VideoQualityCode.fromCode(quality)!;
|
||
videoDetailCtr.updatePlayer();
|
||
|
||
// update
|
||
late String oldQualityDesc;
|
||
await Connectivity()
|
||
.checkConnectivity()
|
||
.then((res) {
|
||
if (res.contains(ConnectivityResult.wifi)) {
|
||
oldQualityDesc = VideoQualityCode.fromCode(
|
||
GStorage.defaultVideoQa)!
|
||
.description;
|
||
setting.put(
|
||
SettingBoxKey.defaultVideoQa,
|
||
quality,
|
||
);
|
||
} else {
|
||
oldQualityDesc = VideoQualityCode.fromCode(
|
||
GStorage.defaultVideoQaCellular)!
|
||
.description;
|
||
setting.put(
|
||
SettingBoxKey.defaultVideoQaCellular,
|
||
quality,
|
||
);
|
||
}
|
||
});
|
||
SmartDialog.showToast(
|
||
"默认画质由:$oldQualityDesc 变为:${VideoQualityCode.fromCode(quality)!.description}",
|
||
);
|
||
},
|
||
// 可能包含会员解锁画质
|
||
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 = videoDetailCtr.currentAudioQa!;
|
||
final List<AudioItem> audio = videoInfo.dash!.audio!;
|
||
showBottomSheet(
|
||
(context, setState) => Material(
|
||
color: Colors.transparent,
|
||
child: Container(
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: const EdgeInsets.all(12),
|
||
child: Column(
|
||
children: [
|
||
const SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('选择音质', style: titleStyle))),
|
||
Expanded(
|
||
child: Material(
|
||
color: Colors.transparent,
|
||
child: ListView(
|
||
padding: EdgeInsets.zero,
|
||
children: [
|
||
for (final AudioItem i in audio) ...[
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () async {
|
||
if (currentAudioQa.code == i.id) {
|
||
return;
|
||
}
|
||
Get.back();
|
||
final int quality = i.id!;
|
||
videoDetailCtr.currentAudioQa =
|
||
AudioQualityCode.fromCode(quality)!;
|
||
videoDetailCtr.updatePlayer();
|
||
|
||
// update
|
||
late String oldQualityDesc;
|
||
await Connectivity()
|
||
.checkConnectivity()
|
||
.then((res) {
|
||
if (res.contains(ConnectivityResult.wifi)) {
|
||
oldQualityDesc = AudioQualityCode.fromCode(
|
||
GStorage.defaultAudioQa)!
|
||
.description;
|
||
setting.put(
|
||
SettingBoxKey.defaultAudioQa,
|
||
quality,
|
||
);
|
||
} else {
|
||
oldQualityDesc = AudioQualityCode.fromCode(
|
||
GStorage.defaultAudioQaCellular)!
|
||
.description;
|
||
setting.put(
|
||
SettingBoxKey.defaultAudioQaCellular,
|
||
quality,
|
||
);
|
||
}
|
||
});
|
||
SmartDialog.showToast(
|
||
"默认音质由:$oldQualityDesc 变为:${AudioQualityCode.fromCode(quality)!.description}",
|
||
);
|
||
},
|
||
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 =
|
||
videoDetailCtr.currentDecodeFormats;
|
||
final VideoItem firstVideo = 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;
|
||
}
|
||
|
||
showBottomSheet(
|
||
(context, setState) => Material(
|
||
color: Colors.transparent,
|
||
child: Container(
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: const EdgeInsets.all(12),
|
||
child: Column(
|
||
children: [
|
||
const SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('选择解码格式', style: titleStyle))),
|
||
Expanded(
|
||
child: Material(
|
||
color: Colors.transparent,
|
||
child: ListView(
|
||
padding: EdgeInsets.zero,
|
||
children: [
|
||
for (var i in list) ...[
|
||
ListTile(
|
||
dense: true,
|
||
onTap: () {
|
||
if (i.startsWith(currentDecodeFormats.code)) {
|
||
return;
|
||
}
|
||
videoDetailCtr.currentDecodeFormats =
|
||
VideoDecodeFormatsCode.fromString(i)!;
|
||
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 onExportSubtitle() {
|
||
showDialog(
|
||
context: context,
|
||
builder: (context) {
|
||
return AlertDialog(
|
||
clipBehavior: Clip.hardEdge,
|
||
contentPadding: const EdgeInsets.fromLTRB(0, 12, 0, 12),
|
||
title: const Text('保存字幕'),
|
||
content: SingleChildScrollView(
|
||
child: Column(
|
||
children: videoDetailCtr.subtitles
|
||
.map(
|
||
(item) => ListTile(
|
||
dense: true,
|
||
onTap: () async {
|
||
Get.back();
|
||
try {
|
||
final res = await Dio().get(
|
||
(item['subtitle_url'] as String).http2https,
|
||
options: Options(
|
||
responseType: ResponseType.bytes,
|
||
),
|
||
);
|
||
if (res.statusCode == 200) {
|
||
final name =
|
||
'${videoIntroController.videoDetail.value.title}-${videoDetailCtr.bvid}-${videoDetailCtr.cid.value}-${item['lan_doc']}';
|
||
try {
|
||
DocumentFileSavePlusPlatform.instance
|
||
.saveMultipleFiles(
|
||
dataList: [res.data],
|
||
fileNameList: [name],
|
||
mimeTypeList: ['text/plain'],
|
||
);
|
||
if (Platform.isAndroid) {
|
||
SmartDialog.showToast('已保存');
|
||
}
|
||
} catch (e) {
|
||
Share.shareXFiles(
|
||
[
|
||
XFile.fromData(
|
||
res.data,
|
||
name: name,
|
||
mimeType: 'application/json',
|
||
),
|
||
],
|
||
sharePositionOrigin: await Utils.isIpad()
|
||
? Rect.fromLTWH(
|
||
0, 0, Get.width, Get.height / 2)
|
||
: null,
|
||
);
|
||
}
|
||
}
|
||
} catch (e) {
|
||
SmartDialog.showToast(e.toString());
|
||
}
|
||
},
|
||
title:
|
||
Text(item['lan_doc'], style: TextStyle(fontSize: 14)),
|
||
),
|
||
)
|
||
.toList(),
|
||
),
|
||
),
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
/// 字幕设置
|
||
void showSetSubtitle() {
|
||
double subtitleFontScale = widget.controller.subtitleFontScale;
|
||
double subtitleFontScaleFS = widget.controller.subtitleFontScaleFS;
|
||
int subtitlePaddingH = widget.controller.subtitlePaddingH;
|
||
int subtitlePaddingB = widget.controller.subtitlePaddingB;
|
||
double subtitleBgOpaticy = widget.controller.subtitleBgOpaticy;
|
||
double subtitleStrokeWidth = widget.controller.subtitleStrokeWidth;
|
||
int subtitleFontWeight = widget.controller.subtitleFontWeight;
|
||
|
||
showBottomSheet(
|
||
padding: isFullScreen ? 70 : null,
|
||
(context, setState) {
|
||
final sliderTheme = SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(enabledThumbRadius: 6.0),
|
||
);
|
||
|
||
void updateStrokeWidth(double val) {
|
||
subtitleStrokeWidth = val;
|
||
widget.controller
|
||
..subtitleStrokeWidth = subtitleStrokeWidth
|
||
..updateSubtitleStyle()
|
||
..putSubtitleSettings();
|
||
setState(() {});
|
||
}
|
||
|
||
void updateOpacity(double val) {
|
||
subtitleBgOpaticy = val;
|
||
widget.controller
|
||
..subtitleBgOpaticy = subtitleBgOpaticy
|
||
..updateSubtitleStyle()
|
||
..putSubtitleSettings();
|
||
setState(() {});
|
||
}
|
||
|
||
void updateBottomPadding(int val) {
|
||
subtitlePaddingB = val;
|
||
widget.controller
|
||
..subtitlePaddingB = subtitlePaddingB
|
||
..updateSubtitleStyle()
|
||
..putSubtitleSettings();
|
||
setState(() {});
|
||
}
|
||
|
||
void updateHorizontalPadding(int val) {
|
||
subtitlePaddingH = val;
|
||
widget.controller
|
||
..subtitlePaddingH = subtitlePaddingH
|
||
..updateSubtitleStyle()
|
||
..putSubtitleSettings();
|
||
setState(() {});
|
||
}
|
||
|
||
void updateFontScaleFS(double val) {
|
||
subtitleFontScaleFS = val;
|
||
widget.controller
|
||
..subtitleFontScaleFS = subtitleFontScaleFS
|
||
..updateSubtitleStyle()
|
||
..putSubtitleSettings();
|
||
setState(() {});
|
||
}
|
||
|
||
void updateFontScale(double val) {
|
||
subtitleFontScale = val;
|
||
widget.controller
|
||
..subtitleFontScale = subtitleFontScale
|
||
..updateSubtitleStyle()
|
||
..putSubtitleSettings();
|
||
setState(() {});
|
||
}
|
||
|
||
void updateFontWeight(int val) {
|
||
subtitleFontWeight = val;
|
||
widget.controller
|
||
..subtitleFontWeight = subtitleFontWeight
|
||
..updateSubtitleStyle()
|
||
..putSubtitleSettings();
|
||
setState(() {});
|
||
}
|
||
|
||
return Material(
|
||
color: Colors.transparent,
|
||
child: Container(
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: const EdgeInsets.all(12),
|
||
padding: const EdgeInsets.only(left: 14, right: 14),
|
||
child: ListView(
|
||
padding: EdgeInsets.zero,
|
||
children: [
|
||
SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('字幕设置', style: titleStyle)),
|
||
),
|
||
const SizedBox(height: 10),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text(
|
||
'字体大小 ${(subtitleFontScale * 100).toStringAsFixed(1)}%'),
|
||
resetBtn('100.0%', () => updateFontScale(1.0)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: subtitleFontScale,
|
||
divisions: 20,
|
||
label: '${(subtitleFontScale * 100).toStringAsFixed(1)}%',
|
||
onChanged: updateFontScale,
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text(
|
||
'全屏字体大小 ${(subtitleFontScaleFS * 100).toStringAsFixed(1)}%'),
|
||
resetBtn('150.0%', () => updateFontScaleFS(1.5)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: subtitleFontScaleFS,
|
||
divisions: 20,
|
||
label:
|
||
'${(subtitleFontScaleFS * 100).toStringAsFixed(1)}%',
|
||
onChanged: updateFontScaleFS,
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('字体粗细 ${subtitleFontWeight + 1}(可能无法精确调节)'),
|
||
resetBtn(6, () => updateFontWeight(5)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 8,
|
||
value: subtitleFontWeight.toDouble(),
|
||
divisions: 8,
|
||
label: '${subtitleFontWeight + 1}',
|
||
onChanged: (double val) {
|
||
updateFontWeight(val.toInt());
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('描边粗细 $subtitleStrokeWidth'),
|
||
resetBtn(2.0, () => updateStrokeWidth(2.0)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 5,
|
||
value: subtitleStrokeWidth,
|
||
divisions: 10,
|
||
label: '$subtitleStrokeWidth',
|
||
onChanged: updateStrokeWidth,
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('左右边距 $subtitlePaddingH'),
|
||
resetBtn(24, () => updateHorizontalPadding(24)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 100,
|
||
value: subtitlePaddingH.toDouble(),
|
||
divisions: 100,
|
||
label: '$subtitlePaddingH',
|
||
onChanged: (double val) {
|
||
updateHorizontalPadding(val.round());
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('底部边距 $subtitlePaddingB'),
|
||
resetBtn(24, () => updateBottomPadding(24)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 200,
|
||
value: subtitlePaddingB.toDouble(),
|
||
divisions: 200,
|
||
label: '$subtitlePaddingB',
|
||
onChanged: (double val) {
|
||
updateBottomPadding(val.round());
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('背景不透明度 ${(subtitleBgOpaticy * 100).toInt()}%'),
|
||
resetBtn('67%', () => updateOpacity(0.67)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 1,
|
||
value: subtitleBgOpaticy,
|
||
// label: '${(subtitleBgOpaticy * 100).toInt()}%',
|
||
onChanged: (double val) {
|
||
updateOpacity(val.toPrecision(2));
|
||
},
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
),
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
Widget resetBtn(def, VoidCallback onPressed) {
|
||
return iconButton(
|
||
context: context,
|
||
tooltip: '默认值: $def',
|
||
icon: Icons.refresh,
|
||
onPressed: onPressed,
|
||
bgColor: Colors.transparent,
|
||
iconColor: Theme.of(context).colorScheme.outline,
|
||
size: 24,
|
||
iconSize: 24,
|
||
);
|
||
}
|
||
|
||
/// 弹幕功能
|
||
void showSetDanmaku() {
|
||
// 屏蔽类型
|
||
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;
|
||
// 显示区域
|
||
double showArea = widget.controller.showArea;
|
||
// 不透明度
|
||
double opacity = widget.controller.opacity;
|
||
// 字体大小
|
||
double fontSize = widget.controller.fontSize;
|
||
// 全屏字体大小
|
||
double fontSizeFS = widget.controller.fontSizeFS;
|
||
double danmakuLineHeight = widget.controller.danmakuLineHeight;
|
||
// 弹幕速度
|
||
double danmakuDuration = widget.controller.danmakuDuration;
|
||
double danmakuStaticDuration = widget.controller.danmakuStaticDuration;
|
||
// 弹幕描边
|
||
double strokeWidth = widget.controller.strokeWidth;
|
||
// 字体粗细
|
||
int fontWeight = widget.controller.fontWeight;
|
||
bool massiveMode = widget.controller.massiveMode;
|
||
|
||
final DanmakuController? danmakuController =
|
||
widget.controller.danmakuController;
|
||
|
||
showBottomSheet(
|
||
(cpntext, setState) {
|
||
final sliderTheme = SliderThemeData(
|
||
trackShape: MSliderTrackShape(),
|
||
thumbColor: Theme.of(context).colorScheme.primary,
|
||
activeTrackColor: Theme.of(context).colorScheme.primary,
|
||
trackHeight: 10,
|
||
thumbShape: const RoundSliderThumbShape(enabledThumbRadius: 6.0),
|
||
);
|
||
|
||
void updateLineHeight(double val) {
|
||
danmakuLineHeight = val;
|
||
widget.controller
|
||
..danmakuLineHeight = danmakuLineHeight
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(
|
||
lineHeight: danmakuLineHeight,
|
||
),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
|
||
void updateDuration(double val) {
|
||
danmakuDuration = val;
|
||
widget.controller
|
||
..danmakuDuration = danmakuDuration
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(
|
||
duration: danmakuDuration / widget.controller.playbackSpeed),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
|
||
void updateStaticDuration(double val) {
|
||
danmakuStaticDuration = val;
|
||
widget.controller
|
||
..danmakuStaticDuration = danmakuStaticDuration
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(
|
||
staticDuration:
|
||
danmakuStaticDuration / widget.controller.playbackSpeed),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
|
||
void updateFontSizeFS(double val) {
|
||
fontSizeFS = val;
|
||
widget.controller
|
||
..fontSizeFS = fontSizeFS
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
if (widget.controller.isFullScreen.value == true) {
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(
|
||
fontSize: (15 * fontSizeFS).toDouble(),
|
||
),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
}
|
||
|
||
void updateFontSize(double val) {
|
||
fontSize = val;
|
||
widget.controller
|
||
..fontSize = fontSize
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
if (widget.controller.isFullScreen.value == false) {
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(
|
||
fontSize: (15 * fontSize).toDouble(),
|
||
),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
}
|
||
|
||
void updateStrokeWidth(double val) {
|
||
strokeWidth = val;
|
||
widget.controller
|
||
..strokeWidth = val
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(strokeWidth: val),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
|
||
void updateFontWeight(int val) {
|
||
fontWeight = val;
|
||
widget.controller
|
||
..fontWeight = fontWeight
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(fontWeight: fontWeight),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
|
||
void updateOpacity(double val) {
|
||
opacity = val;
|
||
widget.controller
|
||
..opacity = opacity
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(opacity: val),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
|
||
void updateShowArea(double val) {
|
||
showArea = val;
|
||
widget.controller
|
||
..showArea = showArea
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
try {
|
||
danmakuController?.updateOption(
|
||
danmakuController.option.copyWith(area: showArea),
|
||
);
|
||
} catch (_) {}
|
||
}
|
||
|
||
return Material(
|
||
color: Colors.transparent,
|
||
child: Container(
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: const EdgeInsets.all(12),
|
||
padding: const EdgeInsets.only(left: 14, right: 14),
|
||
child: ListView(
|
||
padding: EdgeInsets.zero,
|
||
children: [
|
||
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("屏蔽管理(${plPlayerController.filters.count})")),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 10,
|
||
value: danmakuWeight.toDouble(),
|
||
divisions: 10,
|
||
label: '$danmakuWeight',
|
||
onChanged: (double val) {
|
||
danmakuWeight = val.toInt();
|
||
widget.controller
|
||
..danmakuWeight = danmakuWeight
|
||
..putDanmakuSettings();
|
||
setState(() {});
|
||
},
|
||
),
|
||
),
|
||
),
|
||
const Text('按类型屏蔽'),
|
||
Padding(
|
||
padding: const EdgeInsets.only(top: 12),
|
||
child: Row(
|
||
children: [
|
||
for (final Map<String, dynamic> i in blockTypesList) ...[
|
||
ActionRowLineItem(
|
||
onTap: () {
|
||
final bool isChoose =
|
||
blockTypes.contains(i['value']);
|
||
if (isChoose) {
|
||
blockTypes.remove(i['value']);
|
||
} else {
|
||
blockTypes.add(i['value']);
|
||
}
|
||
widget.controller
|
||
..blockTypes = blockTypes
|
||
..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),
|
||
]
|
||
],
|
||
),
|
||
),
|
||
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 (_) {}
|
||
},
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('显示区域 ${showArea * 100}%'),
|
||
resetBtn('50.0%', () => updateShowArea(0.5)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0.1,
|
||
max: 1,
|
||
value: showArea,
|
||
divisions: 9,
|
||
label: '${showArea * 100}%',
|
||
onChanged: (val) => updateShowArea(
|
||
val.toPrecision(1),
|
||
),
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('不透明度 ${opacity * 100}%'),
|
||
resetBtn('100.0%', () => updateOpacity(1.0)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 1,
|
||
value: opacity,
|
||
divisions: 10,
|
||
label: '${opacity * 100}%',
|
||
onChanged: updateOpacity,
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('字体粗细 ${fontWeight + 1}(可能无法精确调节)'),
|
||
resetBtn(6, () => updateFontWeight(5)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 8,
|
||
value: fontWeight.toDouble(),
|
||
divisions: 8,
|
||
label: '${fontWeight + 1}',
|
||
onChanged: (double val) {
|
||
updateFontWeight(val.toInt());
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('描边粗细 $strokeWidth'),
|
||
resetBtn(1.5, () => updateStrokeWidth(1.5)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0,
|
||
max: 3,
|
||
value: strokeWidth,
|
||
divisions: 6,
|
||
label: '$strokeWidth',
|
||
onChanged: updateStrokeWidth,
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('字体大小 ${(fontSize * 100).toStringAsFixed(1)}%'),
|
||
resetBtn('100.0%', () => updateFontSize(1.0)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: fontSize,
|
||
divisions: 20,
|
||
label: '${(fontSize * 100).toStringAsFixed(1)}%',
|
||
onChanged: updateFontSize,
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('全屏字体大小 ${(fontSizeFS * 100).toStringAsFixed(1)}%'),
|
||
resetBtn('120.0%', () => updateFontSizeFS(1.2)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 0.5,
|
||
max: 2.5,
|
||
value: fontSizeFS,
|
||
divisions: 20,
|
||
label: '${(fontSizeFS * 100).toStringAsFixed(1)}%',
|
||
onChanged: updateFontSizeFS,
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('滚动弹幕时长 $danmakuDuration 秒'),
|
||
resetBtn(7.0, () => updateDuration(7.0)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 1,
|
||
max: 50,
|
||
value: danmakuDuration,
|
||
divisions: 49,
|
||
label: danmakuDuration.toString(),
|
||
onChanged: (double val) {
|
||
updateDuration(val.toPrecision(1));
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('静态弹幕时长 $danmakuStaticDuration 秒'),
|
||
resetBtn(4.0, () => updateStaticDuration(4.0)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 1,
|
||
max: 50,
|
||
value: danmakuStaticDuration,
|
||
divisions: 49,
|
||
label: danmakuStaticDuration.toString(),
|
||
onChanged: (double val) {
|
||
updateStaticDuration(val.toPrecision(1));
|
||
},
|
||
),
|
||
),
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
children: [
|
||
Text('弹幕行高 $danmakuLineHeight'),
|
||
resetBtn(1.6, () => updateLineHeight(1.6)),
|
||
],
|
||
),
|
||
Padding(
|
||
padding: const EdgeInsets.only(
|
||
top: 0,
|
||
bottom: 6,
|
||
left: 10,
|
||
right: 10,
|
||
),
|
||
child: SliderTheme(
|
||
data: sliderTheme,
|
||
child: Slider(
|
||
min: 1.0,
|
||
max: 3.0,
|
||
value: danmakuLineHeight,
|
||
// label: '$danmakuLineHeight',
|
||
onChanged: (double val) {
|
||
updateLineHeight(val.toPrecision(1));
|
||
},
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
),
|
||
);
|
||
},
|
||
);
|
||
}
|
||
|
||
/// 播放顺序
|
||
void showSetRepeat() {
|
||
showBottomSheet(
|
||
(context, setState) => Material(
|
||
color: Colors.transparent,
|
||
child: Container(
|
||
clipBehavior: Clip.hardEdge,
|
||
decoration: BoxDecoration(
|
||
color: Theme.of(context).colorScheme.surface,
|
||
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||
),
|
||
margin: const EdgeInsets.all(12),
|
||
child: Column(
|
||
children: [
|
||
const SizedBox(
|
||
height: 45,
|
||
child: Center(child: Text('选择播放顺序', style: titleStyle))),
|
||
Expanded(
|
||
child: Material(
|
||
color: Colors.transparent,
|
||
child: ListView(
|
||
padding: EdgeInsets.zero,
|
||
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);
|
||
});
|
||
}
|
||
|
||
Widget _buildHeader(bool showFSActionItem) => AppBar(
|
||
elevation: 0,
|
||
scrolledUnderElevation: 0,
|
||
backgroundColor: Colors.transparent,
|
||
foregroundColor: Colors.white,
|
||
primary: false,
|
||
automaticallyImplyLeading: false,
|
||
toolbarHeight: showFSActionItem && isFullScreen ? 112 : null,
|
||
flexibleSpace: Column(
|
||
mainAxisSize: MainAxisSize.min,
|
||
children: [
|
||
const SizedBox(height: 11),
|
||
Row(
|
||
children: [
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '返回',
|
||
icon: const Icon(
|
||
FontAwesomeIcons.arrowLeft,
|
||
size: 15,
|
||
color: Colors.white,
|
||
),
|
||
onPressed: () {
|
||
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: () {
|
||
videoDetailCtr.plPlayerController.backToHome = true;
|
||
Get.until((route) => route.isFirst);
|
||
},
|
||
),
|
||
),
|
||
if ((videoIntroController.videoDetail.value.title != null) &&
|
||
(isFullScreen ||
|
||
(!isFullScreen &&
|
||
!horizontalScreen &&
|
||
MediaQuery.of(context).orientation ==
|
||
Orientation.landscape)))
|
||
Expanded(
|
||
child: Column(
|
||
mainAxisSize: MainAxisSize.min,
|
||
crossAxisAlignment: CrossAxisAlignment.start,
|
||
children: [
|
||
LayoutBuilder(
|
||
builder: (context, constraints) {
|
||
return Obx(
|
||
() {
|
||
final textPainter = TextPainter(
|
||
text: TextSpan(
|
||
text: videoIntroController
|
||
.videoDetail.value.title!,
|
||
style: const TextStyle(
|
||
color: Colors.white,
|
||
fontSize: 16,
|
||
),
|
||
),
|
||
textDirection: TextDirection.ltr,
|
||
maxLines: 1,
|
||
)..layout(maxWidth: constraints.maxWidth);
|
||
if (textPainter.didExceedMaxLines) {
|
||
return ConstrainedBox(
|
||
constraints: BoxConstraints(maxHeight: 25),
|
||
child: 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,
|
||
),
|
||
);
|
||
} else {
|
||
return Text(
|
||
videoIntroController
|
||
.videoDetail.value.title!,
|
||
style: const TextStyle(
|
||
color: Colors.white,
|
||
fontSize: 16,
|
||
),
|
||
maxLines: 1,
|
||
textDirection: TextDirection.ltr,
|
||
);
|
||
}
|
||
},
|
||
);
|
||
},
|
||
),
|
||
if (videoIntroController.isShowOnlineTotal)
|
||
Obx(
|
||
() => Text(
|
||
'${videoIntroController.total.value}人正在看',
|
||
style: const TextStyle(
|
||
color: Colors.white,
|
||
fontSize: 11,
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
)
|
||
else
|
||
const Spacer(),
|
||
// show current datetime
|
||
Obx(
|
||
() {
|
||
if ((isFullScreen || !horizontalScreen) &&
|
||
MediaQuery.of(context).orientation ==
|
||
Orientation.landscape) {
|
||
startClock();
|
||
return Text(
|
||
now.value,
|
||
style: const TextStyle(
|
||
color: Colors.white,
|
||
fontSize: 13,
|
||
),
|
||
);
|
||
}
|
||
clock?.cancel();
|
||
clock = null;
|
||
return SizedBox.shrink();
|
||
},
|
||
),
|
||
// ComBtn(
|
||
// icon: const Icon(
|
||
// FontAwesomeIcons.cropSimple,
|
||
// size: 15,
|
||
// color: Colors.white,
|
||
// ),
|
||
// fuc: () => _.screenshot(),
|
||
// ),
|
||
if (videoDetailCtr.enableSponsorBlock == true)
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '提交片段',
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: () => videoDetailCtr.onBlock(context),
|
||
icon: Stack(
|
||
alignment: Alignment.center,
|
||
children: [
|
||
Icon(
|
||
Icons.shield_outlined,
|
||
size: 19,
|
||
color: Colors.white,
|
||
),
|
||
Icon(
|
||
Icons.play_arrow_rounded,
|
||
size: 13,
|
||
color: Colors.white,
|
||
),
|
||
],
|
||
),
|
||
),
|
||
),
|
||
Obx(
|
||
() => videoDetailCtr.segmentList.isNotEmpty == true
|
||
? SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: IconButton(
|
||
tooltip: '片段信息',
|
||
style: ButtonStyle(
|
||
padding: WidgetStateProperty.all(EdgeInsets.zero),
|
||
),
|
||
onPressed: () =>
|
||
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: 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 && 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: () {
|
||
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), () {});
|
||
}
|
||
if (!context.mounted) return;
|
||
Utils.enterPip(
|
||
widget.floating!,
|
||
widget
|
||
.videoDetailCtr.data.dash!.video!.first.width!,
|
||
widget
|
||
.videoDetailCtr.data.dash!.video!.first.height!,
|
||
);
|
||
}
|
||
},
|
||
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,
|
||
),
|
||
),
|
||
),
|
||
],
|
||
),
|
||
if (showFSActionItem)
|
||
isFullScreen
|
||
? Row(
|
||
mainAxisAlignment: MainAxisAlignment.end,
|
||
children: [
|
||
if (videoDetailCtr.videoType == SearchType.video) ...[
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => ActionItem(
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.thumbsUp,
|
||
color: Colors.white,
|
||
),
|
||
selectIcon:
|
||
const Icon(FontAwesomeIcons.solidThumbsUp),
|
||
onTap: videoIntroController.actionLikeVideo,
|
||
onLongPress: () {
|
||
videoIntroController.actionOneThree();
|
||
plPlayerController.isTriple = null;
|
||
plPlayerController.hideTaskControls();
|
||
},
|
||
selectStatus:
|
||
videoIntroController.hasLike.value,
|
||
semanticsLabel: '点赞',
|
||
needAnim: true,
|
||
hasTriple: videoIntroController.hasLike.value &&
|
||
videoIntroController.hasCoin.value &&
|
||
videoIntroController.hasFav.value,
|
||
callBack: (start) {
|
||
if (start) {
|
||
HapticFeedback.lightImpact();
|
||
plPlayerController.isTriple = true;
|
||
_coinKey.currentState?.controller
|
||
?.forward();
|
||
_favKey.currentState?.controller?.forward();
|
||
} else {
|
||
_coinKey.currentState?.controller
|
||
?.reverse();
|
||
_favKey.currentState?.controller?.reverse();
|
||
plPlayerController.isTriple = null;
|
||
plPlayerController.hideTaskControls();
|
||
}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => ActionItem(
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.thumbsDown,
|
||
color: Colors.white,
|
||
),
|
||
selectIcon: const Icon(
|
||
FontAwesomeIcons.solidThumbsDown),
|
||
onTap: videoIntroController.actionDislikeVideo,
|
||
selectStatus:
|
||
videoIntroController.hasDislike.value,
|
||
semanticsLabel: '点踩',
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => ActionItem(
|
||
key: _coinKey,
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.b,
|
||
color: Colors.white,
|
||
),
|
||
selectIcon: const Icon(FontAwesomeIcons.b),
|
||
onTap: videoIntroController.actionCoinVideo,
|
||
selectStatus:
|
||
videoIntroController.hasCoin.value,
|
||
semanticsLabel: '投币',
|
||
needAnim: true,
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => ActionItem(
|
||
key: _favKey,
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.star,
|
||
color: Colors.white,
|
||
),
|
||
selectIcon:
|
||
const Icon(FontAwesomeIcons.solidStar),
|
||
onTap: () => videoIntroController
|
||
.showFavBottomSheet(context),
|
||
onLongPress: () => videoIntroController
|
||
.showFavBottomSheet(context,
|
||
type: 'longPress'),
|
||
selectStatus: videoIntroController.hasFav.value,
|
||
semanticsLabel: '收藏',
|
||
needAnim: true,
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: ActionItem(
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.shareFromSquare,
|
||
color: Colors.white,
|
||
),
|
||
onTap: () => videoIntroController
|
||
.actionShareVideo(context),
|
||
semanticsLabel: '分享',
|
||
),
|
||
),
|
||
] else ...[
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => ActionItem(
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.thumbsUp,
|
||
color: Colors.white,
|
||
),
|
||
selectIcon:
|
||
const Icon(FontAwesomeIcons.solidThumbsUp),
|
||
onTap: bangumiIntroController.actionLikeVideo,
|
||
onLongPress: () {
|
||
bangumiIntroController.actionOneThree();
|
||
plPlayerController.isTriple = null;
|
||
plPlayerController.hideTaskControls();
|
||
},
|
||
selectStatus:
|
||
bangumiIntroController.hasLike.value,
|
||
semanticsLabel: '点赞',
|
||
needAnim: true,
|
||
hasTriple:
|
||
bangumiIntroController.hasLike.value &&
|
||
bangumiIntroController.hasCoin.value &&
|
||
bangumiIntroController.hasFav.value,
|
||
callBack: (start) {
|
||
if (start) {
|
||
HapticFeedback.lightImpact();
|
||
plPlayerController.isTriple = true;
|
||
_coinKey.currentState?.controller
|
||
?.forward();
|
||
_favKey.currentState?.controller?.forward();
|
||
} else {
|
||
_coinKey.currentState?.controller
|
||
?.reverse();
|
||
_favKey.currentState?.controller?.reverse();
|
||
plPlayerController.isTriple = null;
|
||
plPlayerController.hideTaskControls();
|
||
}
|
||
},
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => ActionItem(
|
||
expand: false,
|
||
key: _coinKey,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.b,
|
||
color: Colors.white,
|
||
),
|
||
selectIcon: const Icon(FontAwesomeIcons.b),
|
||
onTap: bangumiIntroController.actionCoinVideo,
|
||
selectStatus:
|
||
bangumiIntroController.hasCoin.value,
|
||
semanticsLabel: '投币',
|
||
needAnim: true,
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: Obx(
|
||
() => ActionItem(
|
||
key: _favKey,
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.star,
|
||
color: Colors.white,
|
||
),
|
||
selectIcon:
|
||
const Icon(FontAwesomeIcons.solidStar),
|
||
onTap: () => bangumiIntroController
|
||
.showFavBottomSheet(context),
|
||
onLongPress: () => bangumiIntroController
|
||
.showFavBottomSheet(context,
|
||
type: 'longPress'),
|
||
selectStatus:
|
||
bangumiIntroController.hasFav.value,
|
||
semanticsLabel: '收藏',
|
||
needAnim: true,
|
||
),
|
||
),
|
||
),
|
||
SizedBox(
|
||
width: 42,
|
||
height: 34,
|
||
child: ActionItem(
|
||
expand: false,
|
||
icon: const Icon(
|
||
FontAwesomeIcons.shareFromSquare,
|
||
color: Colors.white,
|
||
),
|
||
onTap: () => bangumiIntroController
|
||
.actionShareVideo(context),
|
||
semanticsLabel: '转发',
|
||
),
|
||
),
|
||
],
|
||
],
|
||
)
|
||
: const SizedBox.shrink(),
|
||
],
|
||
),
|
||
);
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
// final bool isLandscape =
|
||
// MediaQuery.of(context).orientation == Orientation.landscape;
|
||
|
||
return plPlayerController.showFSActionItem
|
||
? Obx(() => _buildHeader(true))
|
||
: _buildHeader(false);
|
||
}
|
||
}
|
||
|
||
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);
|
||
}
|
||
}
|