opt: live room

Closes #427

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-11 21:10:32 +08:00
parent 3da64d2641
commit 714f288170
2 changed files with 326 additions and 294 deletions

View File

@@ -57,15 +57,16 @@ class LiveRoomController extends GetxController {
// 硬解 // 硬解
enableHA: true, enableHA: true,
autoplay: true, autoplay: true,
direction: isPortrait.value ? 'vertical' : 'horizontal',
); );
} }
bool? isPortrait; final RxBool isPortrait = false.obs;
Future queryLiveInfo() async { Future queryLiveInfo() async {
var res = await LiveHttp.liveRoomInfo(roomId: roomId, qn: currentQn); var res = await LiveHttp.liveRoomInfo(roomId: roomId, qn: currentQn);
if (res['status']) { if (res['status']) {
isPortrait = res['data'].isPortrait; isPortrait.value = res['data'].isPortrait ?? false;
List<CodecItem> codec = List<CodecItem> codec =
res['data'].playurlInfo.playurl.stream.first.format.first.codec; res['data'].playurlInfo.playurl.stream.first.format.first.codec;
CodecItem item = codec.first; CodecItem item = codec.first;

View File

@@ -4,7 +4,9 @@ import 'dart:math';
import 'package:PiliPlus/http/live.dart'; import 'package:PiliPlus/http/live.dart';
import 'package:PiliPlus/pages/live_room/widgets/chat.dart'; import 'package:PiliPlus/pages/live_room/widgets/chat.dart';
import 'package:PiliPlus/utils/extension.dart';
import 'package:PiliPlus/utils/utils.dart'; import 'package:PiliPlus/utils/utils.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:canvas_danmaku/canvas_danmaku.dart'; import 'package:canvas_danmaku/canvas_danmaku.dart';
import 'package:floating/floating.dart'; import 'package:floating/floating.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@@ -33,6 +35,7 @@ class _LiveRoomPageState extends State<LiveRoomPage>
late final PlPlayerController plPlayerController; late final PlPlayerController plPlayerController;
late Future? _futureBuilder; late Future? _futureBuilder;
late Future? _futureBuilderFuture; late Future? _futureBuilderFuture;
bool get isFullScreen => plPlayerController.isFullScreen.value;
bool isShowCover = true; bool isShowCover = true;
bool isPlay = true; bool isPlay = true;
@@ -74,11 +77,6 @@ class _LiveRoomPageState extends State<LiveRoomPage>
_updateFontSize(); _updateFontSize();
} }
}); });
// WidgetsBinding.instance.addPostFrameCallback((_) {
// if (context.orientation == Orientation.landscape) {
// plPlayerController.triggerFullScreen(status: true);
// }
// });
} }
void _updateFontSize() async { void _updateFontSize() async {
@@ -89,7 +87,7 @@ class _LiveRoomPageState extends State<LiveRoomPage>
if (_liveRoomController.controller != null) { if (_liveRoomController.controller != null) {
_liveRoomController.controller!.updateOption( _liveRoomController.controller!.updateOption(
_liveRoomController.controller!.option.copyWith( _liveRoomController.controller!.option.copyWith(
fontSize: _getFontSize(plPlayerController.isFullScreen.value), fontSize: _getFontSize(isFullScreen),
), ),
); );
} }
@@ -101,7 +99,7 @@ class _LiveRoomPageState extends State<LiveRoomPage>
: 15 * plPlayerController.fontSizeFSVal; : 15 * plPlayerController.fontSizeFSVal;
} }
Future<void> videoSourceInit() async { void videoSourceInit() {
_futureBuilder = _liveRoomController.queryLiveInfoH5(); _futureBuilder = _liveRoomController.queryLiveInfoH5();
plPlayerController = _liveRoomController.plPlayerController; plPlayerController = _liveRoomController.plPlayerController;
} }
@@ -117,7 +115,6 @@ class _LiveRoomPageState extends State<LiveRoomPage>
_node.dispose(); _node.dispose();
plPlayerController.dispose(); plPlayerController.dispose();
_ctr.dispose(); _ctr.dispose();
_liveRoomController.scrollController.removeListener(() {});
super.dispose(); super.dispose();
} }
@@ -133,9 +130,21 @@ class _LiveRoomPageState extends State<LiveRoomPage>
final GlobalKey videoPlayerKey = GlobalKey(); final GlobalKey videoPlayerKey = GlobalKey();
final GlobalKey playerKey = GlobalKey(); final GlobalKey playerKey = GlobalKey();
double? padding;
Widget videoPlayerPanel([Color? fill]) { Widget videoPlayerPanel([Color? fill]) {
return FutureBuilder( return PopScope(
canPop: !isFullScreen,
onPopInvokedWithResult: (bool didPop, Object? result) {
if (isFullScreen) {
plPlayerController.triggerFullScreen(status: false);
}
},
child: Listener(
onPointerDown: (_) {
_node.unfocus();
},
child: FutureBuilder(
key: videoPlayerKey, key: videoPlayerKey,
future: _futureBuilderFuture, future: _futureBuilderFuture,
builder: (BuildContext context, AsyncSnapshot snapshot) { builder: (BuildContext context, AsyncSnapshot snapshot) {
@@ -162,8 +171,7 @@ class _LiveRoomPageState extends State<LiveRoomPage>
_liveRoomController.controller = e; _liveRoomController.controller = e;
}, },
option: DanmakuOption( option: DanmakuOption(
fontSize: fontSize: _getFontSize(isFullScreen),
_getFontSize(plPlayerController.isFullScreen.value),
fontWeight: plPlayerController.fontWeight, fontWeight: plPlayerController.fontWeight,
area: plPlayerController.showArea, area: plPlayerController.showArea,
opacity: plPlayerController.opacityVal, opacity: plPlayerController.opacityVal,
@@ -183,6 +191,8 @@ class _LiveRoomPageState extends State<LiveRoomPage>
return const SizedBox(); return const SizedBox();
} }
}, },
),
),
); );
} }
@@ -191,42 +201,41 @@ class _LiveRoomPageState extends State<LiveRoomPage>
color: Colors.black, color: Colors.black,
child: Stack( child: Stack(
children: [ children: [
Positioned.fill( Obx(
() => isFullScreen
? const SizedBox.shrink()
: Positioned.fill(
child: Opacity( child: Opacity(
opacity: 0.6, opacity: 0.6,
child: Image.asset( child: _liveRoomController.roomInfoH5.value.roomInfo
?.appBackground?.isNotEmpty ==
true
? CachedNetworkImage(
fit: BoxFit.cover,
width: Get.width,
height: Get.height,
imageUrl: _liveRoomController.roomInfoH5.value
.roomInfo!.appBackground!.http2https,
)
: Image.asset(
'assets/images/live/default_bg.webp', 'assets/images/live/default_bg.webp',
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
), ),
), ),
Obx(
() => _liveRoomController
.roomInfoH5.value.roomInfo?.appBackground?.isNotEmpty ==
true
? Positioned.fill(
child: Opacity(
opacity: 0.6,
child: NetworkImgLayer(
width: Get.width,
height: Get.height,
type: 'bg',
src: _liveRoomController
.roomInfoH5.value.roomInfo!.appBackground,
),
),
)
: const SizedBox(),
), ),
isPortrait isPortrait
? Scaffold( ? Obx(
backgroundColor: Colors.transparent, () {
body: Column( if (_liveRoomController.isPortrait.value) {
children: [ if (padding == null) {
_buildAppBar, final padding = MediaQuery.paddingOf(context);
..._buildBodyP, this.padding = padding.bottom + padding.top;
], }
), return _buildPP;
}
return _buildPH;
},
) )
: Column( : Column(
children: [ children: [
@@ -239,6 +248,66 @@ class _LiveRoomPageState extends State<LiveRoomPage>
); );
} }
Widget get _buildPH => Scaffold(
appBar: _buildAppBar,
backgroundColor: Colors.transparent,
body: Column(
children: _buildBodyP,
),
);
Widget get _buildPP => Scaffold(
appBar: _buildAppBar,
backgroundColor: Colors.transparent,
body: Stack(
children: [
Column(
children: [
Obx(
() => Container(
color: Colors.black,
width: Get.width,
height: isFullScreen
? Get.height -
(context.orientation == Orientation.landscape
? 0
: MediaQuery.paddingOf(context).top)
: Get.height - 56 - 85 - padding!,
child: videoPlayerPanel(),
),
),
],
),
Obx(
() => isFullScreen
? const SizedBox.shrink()
: Positioned(
left: 0,
right: 0,
bottom: 125 + MediaQuery.paddingOf(context).bottom,
child: SizedBox(
height: 125,
child: _buildChatWidget,
),
),
),
Obx(
() => isFullScreen
? const SizedBox.shrink()
: Positioned(
left: 0,
right: 0,
bottom: 0,
child: Padding(
padding: EdgeInsets.only(bottom: 0),
child: _buildInputWidget,
),
),
),
],
),
);
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
WidgetsBinding.instance.addPostFrameCallback((_) { WidgetsBinding.instance.addPostFrameCallback((_) {
@@ -262,12 +331,11 @@ class _LiveRoomPageState extends State<LiveRoomPage>
Color get _color => Color(0xFFEEEEEE); Color get _color => Color(0xFFEEEEEE);
Widget get _buildAppBar => Obx( PreferredSizeWidget get _buildAppBar => AppBar(
() => AppBar(
backgroundColor: Colors.transparent, backgroundColor: Colors.transparent,
foregroundColor: Colors.white, foregroundColor: Colors.white,
toolbarHeight: isFullScreen ? 0 : null,
titleTextStyle: TextStyle(color: Colors.white), titleTextStyle: TextStyle(color: Colors.white),
toolbarHeight: plPlayerController.isFullScreen.value ? 0 : null,
title: FutureBuilder( title: FutureBuilder(
future: _futureBuilder, future: _futureBuilder,
builder: (context, snapshot) { builder: (context, snapshot) {
@@ -282,8 +350,8 @@ class _LiveRoomPageState extends State<LiveRoomPage>
GestureDetector( GestureDetector(
onTap: () { onTap: () {
_node.unfocus(); _node.unfocus();
dynamic uid = _liveRoomController dynamic uid =
.roomInfoH5.value.roomInfo?.uid; _liveRoomController.roomInfoH5.value.roomInfo?.uid;
Get.toNamed( Get.toNamed(
'/member?mid=$uid', '/member?mid=$uid',
arguments: { arguments: {
@@ -309,8 +377,7 @@ class _LiveRoomPageState extends State<LiveRoomPage>
style: const TextStyle(fontSize: 14), style: const TextStyle(fontSize: 14),
), ),
const SizedBox(height: 1), const SizedBox(height: 1),
if (_liveRoomController if (_liveRoomController.roomInfoH5.value.watchedShow !=
.roomInfoH5.value.watchedShow !=
null) null)
Text( Text(
_liveRoomController.roomInfoH5.value _liveRoomController.roomInfoH5.value
@@ -349,7 +416,6 @@ class _LiveRoomPageState extends State<LiveRoomPage>
} }
}, },
), ),
),
); );
Widget get _buildBodyH { Widget get _buildBodyH {
@@ -359,27 +425,10 @@ class _LiveRoomPageState extends State<LiveRoomPage>
child: Row( child: Row(
children: [ children: [
Obx( Obx(
() => PopScope( () => Container(
canPop: plPlayerController.isFullScreen.value != true, color: Colors.black,
onPopInvokedWithResult: (bool didPop, Object? result) { width: isFullScreen ? Get.size.width : videoWidth,
if (plPlayerController.isFullScreen.value == true) { height: isFullScreen ? Get.size.height : Get.size.width * 9 / 16,
plPlayerController.triggerFullScreen(status: false);
}
},
child: Listener(
onPointerDown: (_) {
_node.unfocus();
},
child: Container(
color: plPlayerController.isFullScreen.value
? Colors.black
: null,
width: plPlayerController.isFullScreen.value
? Get.size.width
: videoWidth,
height: plPlayerController.isFullScreen.value
? Get.size.height
: Get.size.width * 9 / 16,
child: MediaQuery.removePadding( child: MediaQuery.removePadding(
removeRight: true, removeRight: true,
context: context, context: context,
@@ -387,8 +436,6 @@ class _LiveRoomPageState extends State<LiveRoomPage>
), ),
), ),
), ),
),
),
Expanded( Expanded(
child: Scaffold( child: Scaffold(
backgroundColor: Colors.transparent, backgroundColor: Colors.transparent,
@@ -409,36 +456,24 @@ class _LiveRoomPageState extends State<LiveRoomPage>
List<Widget> get _buildBodyP => [ List<Widget> get _buildBodyP => [
Obx( Obx(
() => PopScope( () => Container(
canPop: plPlayerController.isFullScreen.value != true,
onPopInvokedWithResult: (bool didPop, Object? result) {
if (plPlayerController.isFullScreen.value == true) {
plPlayerController.triggerFullScreen(status: false);
}
},
child: Listener(
onPointerDown: (_) {
_node.unfocus();
},
child: Container(
color: Colors.black, color: Colors.black,
width: Get.size.width, width: Get.size.width,
height: plPlayerController.isFullScreen.value height: isFullScreen ? Get.size.height : Get.size.width * 9 / 16,
? Get.size.height
: Get.size.width * 9 / 16,
child: videoPlayerPanel(), child: videoPlayerPanel(),
), ),
), ),
),
),
..._buildBottomWidget, ..._buildBottomWidget,
]; ];
final GlobalKey chatKey = GlobalKey(); final GlobalKey chatKey = GlobalKey();
List<Widget> get _buildBottomWidget => [ List<Widget> get _buildBottomWidget => [
Expanded( Expanded(child: _buildChatWidget),
child: Listener( _buildInputWidget,
];
Widget get _buildChatWidget => Listener(
onPointerDown: (_) { onPointerDown: (_) {
_node.unfocus(); _node.unfocus();
}, },
@@ -450,9 +485,9 @@ class _LiveRoomPageState extends State<LiveRoomPage>
liveRoomController: _liveRoomController, liveRoomController: _liveRoomController,
), ),
), ),
), );
),
Container( Widget get _buildInputWidget => Container(
padding: EdgeInsets.only( padding: EdgeInsets.only(
left: 10, left: 10,
top: 10, top: 10,
@@ -514,15 +549,11 @@ class _LiveRoomPageState extends State<LiveRoomPage>
_onSendMsg(_ctr.text); _onSendMsg(_ctr.text);
} }
}, },
icon: Icon( icon: Icon(Icons.send, color: _color),
Icons.send,
color: _color,
),
), ),
], ],
), ),
) );
];
void _onSendMsg(msg) async { void _onSendMsg(msg) async {
if (!_isLogin) { if (!_isLogin) {