refactor: Disable pip mode in shorts player (Experimental Flags) setting

This commit is contained in:
inotia00 2023-02-09 10:19:14 +09:00
parent c3118199a9
commit d1f43b6a57
5 changed files with 18 additions and 84 deletions

View File

@ -5,13 +5,12 @@ import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import org.jf.dexlib2.AccessFlags import org.jf.dexlib2.AccessFlags
import org.jf.dexlib2.Opcode import org.jf.dexlib2.Opcode
object PiPParentFingerprint : MethodFingerprint( object DisableShortsPiPFingerprint : MethodFingerprint(
returnType = "V", returnType = "L",
access = AccessFlags.PUBLIC or AccessFlags.FINAL, access = AccessFlags.PUBLIC or AccessFlags.FINAL,
parameters = listOf("L"), parameters = listOf("L"),
opcodes = listOf( opcodes = listOf(
Opcode.SGET_OBJECT, Opcode.IGET_BOOLEAN
Opcode.NEW_INSTANCE
), ),
customFingerprint = { it.definingClass == "Lcom/google/android/apps/youtube/app/common/ui/pip/DefaultPipController;" } customFingerprint = { it.definingClass == "Lcom/google/android/apps/youtube/app/common/ui/pip/DefaultPipController;" }
) )

View File

@ -1,16 +0,0 @@
package app.revanced.patches.youtube.extended.shortspip.bytecode.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import org.jf.dexlib2.AccessFlags
import org.jf.dexlib2.Opcode
object PiPFingerprint : MethodFingerprint(
returnType = "V",
access = AccessFlags.PUBLIC or AccessFlags.FINAL,
parameters = listOf("L"),
opcodes = listOf(
Opcode.IF_NE,
Opcode.CONST_4
)
)

View File

@ -1,15 +0,0 @@
package app.revanced.patches.youtube.extended.shortspip.bytecode.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patches.youtube.misc.resourceid.patch.SharedResourcdIdPatch
import org.jf.dexlib2.iface.instruction.WideLiteralInstruction
import org.jf.dexlib2.Opcode
object ShortsPlayerConstructorFingerprint : MethodFingerprint(
customFingerprint = { methodDef ->
methodDef.implementation?.instructions?.any {
it.opcode.ordinal == Opcode.CONST.ordinal &&
(it as? WideLiteralInstruction)?.wideLiteral == SharedResourcdIdPatch.reelPlayerBadgeId
} == true
}
)

View File

@ -3,78 +3,46 @@ package app.revanced.patches.youtube.extended.shortspip.bytecode.patch
import app.revanced.patcher.annotation.Name import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.BytecodeContext import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.addInstruction
import app.revanced.patcher.extensions.addInstructions import app.revanced.patcher.extensions.addInstructions
import app.revanced.patcher.extensions.instruction
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patches.youtube.extended.shortspip.bytecode.fingerprints.* import app.revanced.patches.youtube.extended.shortspip.bytecode.fingerprints.DisableShortsPiPFingerprint
import app.revanced.patches.youtube.misc.resourceid.patch.SharedResourcdIdPatch import app.revanced.patches.youtube.misc.playertype.patch.PlayerTypeHookPatch
import app.revanced.shared.annotation.YouTubeCompatibility import app.revanced.shared.annotation.YouTubeCompatibility
import app.revanced.shared.extensions.toErrorResult import app.revanced.shared.extensions.toErrorResult
import app.revanced.shared.fingerprints.StartVideoInformerFingerprint
import app.revanced.shared.util.integrations.Constants.EXTENDED_PATH import app.revanced.shared.util.integrations.Constants.EXTENDED_PATH
import org.jf.dexlib2.builder.instruction.BuilderInstruction21c import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
@Name("disable-shorts-pip-bytecode-patch") @Name("disable-shorts-pip-bytecode-patch")
@DependsOn( @DependsOn(
[ [
SharedResourcdIdPatch::class PlayerTypeHookPatch::class
] ]
) )
@YouTubeCompatibility @YouTubeCompatibility
@Version("0.0.1") @Version("0.0.1")
class DisableShortsPiPBytecodePatch : BytecodePatch( class DisableShortsPiPBytecodePatch : BytecodePatch(
listOf( listOf(
PiPParentFingerprint, DisableShortsPiPFingerprint
StartVideoInformerFingerprint,
ShortsPlayerConstructorFingerprint
) )
) { ) {
override fun execute(context: BytecodeContext): PatchResult { override fun execute(context: BytecodeContext): PatchResult {
PiPParentFingerprint.result?.let { result -> DisableShortsPiPFingerprint.result?.let {
val targetIndex = result.scanResult.patternScanResult!!.endIndex with (it.mutableMethod) {
val targetTnstuction = result.mutableMethod.instruction(targetIndex) val endIndex = it.scanResult.patternScanResult!!.endIndex
val imageButtonClass = val register = (implementation!!.instructions[endIndex] as TwoRegisterInstruction).registerA
context.findClass((targetTnstuction as BuilderInstruction21c) this.addInstructions(
.reference.toString())!! endIndex + 1, """
.mutableClass invoke-static {v$register}, $EXTENDED_PATH/DisableShortsPiPPatch;->disableShortsPlayerPiP(Z)Z
move-result v$register
PiPFingerprint.also { it.resolve(context, imageButtonClass) }.result?.let { newResult -> """
with (newResult.mutableMethod) {
val endIndex = newResult.scanResult.patternScanResult!!.endIndex
val register = (implementation!!.instructions[endIndex] as OneRegisterInstruction).registerA
this.addInstructions(
endIndex + 1, """
invoke-static {v$register}, $INTEGRATIONS_CLASS_DESCRIPTOR->disableShortsPlayerPiP(Z)Z
move-result v$register
"""
)
}
} ?: return PiPFingerprint.toErrorResult()
} ?: return PiPParentFingerprint.toErrorResult()
arrayOf(
StartVideoInformerFingerprint to "generalPlayer",
ShortsPlayerConstructorFingerprint to "shortsPlayer"
).map { (fingerprint, descriptor) ->
with(fingerprint.result ?: return fingerprint.toErrorResult()) {
mutableMethod.addInstruction(
0,
"invoke-static {}, $INTEGRATIONS_CLASS_DESCRIPTOR->$descriptor()V"
) )
} }
} } ?: return DisableShortsPiPFingerprint.toErrorResult()
return PatchResultSuccess() return PatchResultSuccess()
} }
private companion object {
const val INTEGRATIONS_CLASS_DESCRIPTOR =
"$EXTENDED_PATH/DisableShortsPiPPatch;"
}
} }

View File

@ -33,7 +33,6 @@ class SharedResourcdIdPatch : ResourcePatch {
var layoutIcon: Long = -1 var layoutIcon: Long = -1
var layoutVideo: Long = -1 var layoutVideo: Long = -1
var liveChatButtonId: Long = -1 var liveChatButtonId: Long = -1
var reelPlayerBadgeId: Long = -1
var scrubbingLabelId: Long = -1 var scrubbingLabelId: Long = -1
var timebarColorLabelId: Long = -1 var timebarColorLabelId: Long = -1
var tooltipLabelId: Long = -1 var tooltipLabelId: Long = -1
@ -63,7 +62,6 @@ class SharedResourcdIdPatch : ResourcePatch {
layoutIcon = findSharedResourceId("layout", "endscreen_element_layout_icon") layoutIcon = findSharedResourceId("layout", "endscreen_element_layout_icon")
layoutVideo = findSharedResourceId("layout", "endscreen_element_layout_video") layoutVideo = findSharedResourceId("layout", "endscreen_element_layout_video")
liveChatButtonId = findSharedResourceId("id", "live_chat_overlay_button") liveChatButtonId = findSharedResourceId("id", "live_chat_overlay_button")
reelPlayerBadgeId = findSharedResourceId("id", "reel_player_badge2")
scrubbingLabelId = findSharedResourceId("dimen", "vertical_touch_offset_to_enter_fine_scrubbing") scrubbingLabelId = findSharedResourceId("dimen", "vertical_touch_offset_to_enter_fine_scrubbing")
timebarColorLabelId = findSharedResourceId("color", "inline_time_bar_progress_color") timebarColorLabelId = findSharedResourceId("color", "inline_time_bar_progress_color")
tooltipLabelId = findSharedResourceId("layout", "tooltip_content_view") tooltipLabelId = findSharedResourceId("layout", "tooltip_content_view")