mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-08 03:54:49 +08:00
add pip backward/forward btns
Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
@@ -262,6 +262,8 @@ class PlPlayerController with BlockConfigMixin {
|
||||
PageUtils.enterPip(
|
||||
width: state.width == 0 ? width : state.width,
|
||||
height: state.height == 0 ? height : state.height,
|
||||
isLive: isLive,
|
||||
isPlaying: playerStatus.isPlaying,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -798,18 +800,10 @@ class PlPlayerController with BlockConfigMixin {
|
||||
);
|
||||
}),
|
||||
// 媒体通知监听
|
||||
if (videoPlayerServiceHandler != null) ...[
|
||||
playerStatus.listen((PlayerStatus event) {
|
||||
videoPlayerServiceHandler!.onStatusChange(
|
||||
event,
|
||||
isBuffering.value,
|
||||
isLive,
|
||||
);
|
||||
}),
|
||||
if (videoPlayerServiceHandler != null)
|
||||
positionSeconds.listen((int event) {
|
||||
videoPlayerServiceHandler!.onPositionChange(Duration(seconds: event));
|
||||
}),
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import 'dart:io' show File;
|
||||
import 'dart:io' show File, Platform;
|
||||
import 'dart:ui' show PlatformDispatcher;
|
||||
|
||||
import 'package:PiliPlus/common/constants.dart';
|
||||
import 'package:PiliPlus/grpc/bilibili/app/listener/v1.pb.dart' show DetailItem;
|
||||
@@ -9,6 +10,7 @@ import 'package:PiliPlus/models_new/video/video_detail/data.dart';
|
||||
import 'package:PiliPlus/models_new/video/video_detail/page.dart';
|
||||
import 'package:PiliPlus/plugin/pl_player/controller.dart';
|
||||
import 'package:PiliPlus/plugin/pl_player/models/play_status.dart';
|
||||
import 'package:PiliPlus/utils/android/bindings.g.dart';
|
||||
import 'package:PiliPlus/utils/image_utils.dart';
|
||||
import 'package:PiliPlus/utils/path_utils.dart';
|
||||
import 'package:audio_service/audio_service.dart';
|
||||
@@ -102,6 +104,13 @@ class VideoPlayerServiceHandler extends BaseAudioHandler with SeekHandler {
|
||||
},
|
||||
),
|
||||
);
|
||||
if (Platform.isAndroid && AndroidHelper.isPipMode) {
|
||||
AndroidHelper.updatePipActions(
|
||||
PlatformDispatcher.instance.engineId!,
|
||||
isLive,
|
||||
playing,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
void onStatusChange(PlayerStatus status, bool isBuffering, isLive) {
|
||||
|
||||
@@ -356,10 +356,65 @@ extension type AndroidHelper._(jni$_.JObject _$this) implements jni$_.JObject {
|
||||
|
||||
static final _id_enterPip = _class.staticMethodId(
|
||||
r'enterPip',
|
||||
r'(JII)V',
|
||||
r'(JIIZZ)V',
|
||||
);
|
||||
|
||||
static final _enterPip =
|
||||
jni$_.ProtectedJniExtensions.lookup<
|
||||
jni$_.NativeFunction<
|
||||
jni$_.JThrowablePtr Function(
|
||||
jni$_.Pointer<jni$_.Void>,
|
||||
jni$_.JMethodIDPtr,
|
||||
jni$_.VarArgs<
|
||||
(
|
||||
jni$_.Int64,
|
||||
jni$_.Int32,
|
||||
jni$_.Int32,
|
||||
jni$_.Int32,
|
||||
jni$_.Int32,
|
||||
)
|
||||
>,
|
||||
)
|
||||
>
|
||||
>('globalEnv_CallStaticVoidMethod')
|
||||
.asFunction<
|
||||
jni$_.JThrowablePtr Function(
|
||||
jni$_.Pointer<jni$_.Void>,
|
||||
jni$_.JMethodIDPtr,
|
||||
core$_.int,
|
||||
core$_.int,
|
||||
core$_.int,
|
||||
core$_.int,
|
||||
core$_.int,
|
||||
)
|
||||
>();
|
||||
|
||||
/// from: `static public void enterPip(long engineId, int width, int height, boolean isLive, boolean isPlaying)`
|
||||
static void enterPip(
|
||||
core$_.int engineId,
|
||||
core$_.int width,
|
||||
core$_.int height,
|
||||
core$_.bool isLive,
|
||||
core$_.bool isPlaying,
|
||||
) {
|
||||
final _$$classRef = _class.reference;
|
||||
_enterPip(
|
||||
_$$classRef.pointer,
|
||||
_id_enterPip.pointer,
|
||||
engineId,
|
||||
width,
|
||||
height,
|
||||
isLive ? 1 : 0,
|
||||
isPlaying ? 1 : 0,
|
||||
).check();
|
||||
}
|
||||
|
||||
static final _id_updatePipActions = _class.staticMethodId(
|
||||
r'updatePipActions',
|
||||
r'(JZZ)V',
|
||||
);
|
||||
|
||||
static final _updatePipActions =
|
||||
jni$_.ProtectedJniExtensions.lookup<
|
||||
jni$_.NativeFunction<
|
||||
jni$_.JThrowablePtr Function(
|
||||
@@ -379,19 +434,19 @@ extension type AndroidHelper._(jni$_.JObject _$this) implements jni$_.JObject {
|
||||
)
|
||||
>();
|
||||
|
||||
/// from: `static public void enterPip(long engineId, int width, int height)`
|
||||
static void enterPip(
|
||||
/// from: `static public void updatePipActions(long engineId, boolean isLive, boolean isPlaying)`
|
||||
static void updatePipActions(
|
||||
core$_.int engineId,
|
||||
core$_.int width,
|
||||
core$_.int height,
|
||||
core$_.bool isLive,
|
||||
core$_.bool isPlaying,
|
||||
) {
|
||||
final _$$classRef = _class.reference;
|
||||
_enterPip(
|
||||
_updatePipActions(
|
||||
_$$classRef.pointer,
|
||||
_id_enterPip.pointer,
|
||||
_id_updatePipActions.pointer,
|
||||
engineId,
|
||||
width,
|
||||
height,
|
||||
isLive ? 1 : 0,
|
||||
isPlaying ? 1 : 0,
|
||||
).check();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -189,7 +189,12 @@ abstract final class PageUtils {
|
||||
return (min <= aspectRatio) && (aspectRatio <= max);
|
||||
}
|
||||
|
||||
static void enterPip({int? width, int? height}) {
|
||||
static void enterPip({
|
||||
int? width,
|
||||
int? height,
|
||||
required bool isLive,
|
||||
required bool isPlaying,
|
||||
}) {
|
||||
if (width != null &&
|
||||
height != null &&
|
||||
!_fitsInAndroidRequirements(width, height)) {
|
||||
@@ -205,6 +210,8 @@ abstract final class PageUtils {
|
||||
PlatformDispatcher.instance.engineId!,
|
||||
width ?? 16,
|
||||
height ?? 9,
|
||||
isLive,
|
||||
isPlaying,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user