refactor(hide-previous-next-button): rewrite the code

This commit is contained in:
inotia00
2023-04-08 05:16:48 +09:00
parent 0079846a12
commit 37e64b6a1f
5 changed files with 74 additions and 54 deletions

View File

@ -1,45 +0,0 @@
package app.revanced.patches.youtube.layout.player.nextprevbutton.patch
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.ResourceContext
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.annotation.YouTubeCompatibility
import app.revanced.patches.youtube.misc.playerbutton.patch.PlayerButtonPatch
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsPatch
@Patch
@Name("hide-next-prev-button")
@Description("Hides the next prev button in the player controller.")
@DependsOn(
[
PlayerButtonPatch::class,
SettingsPatch::class
]
)
@YouTubeCompatibility
@Version("0.0.1")
class HideNextPrevButtonPatch : ResourcePatch {
override fun execute(context: ResourceContext): PatchResult {
/*
* Add settings
*/
SettingsPatch.addPreference(
arrayOf(
"PREFERENCE: PLAYER_SETTINGS",
"SETTINGS: HIDE_NEXT_BUTTON",
"SETTINGS: HIDE_PREV_BUTTON"
)
)
SettingsPatch.updatePatchStatus("hide-next-prev-button")
return PatchResultSuccess()
}
}

View File

@ -0,0 +1,59 @@
package app.revanced.patches.youtube.layout.player.previousnextbutton.patch
import app.revanced.extensions.toErrorResult
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.extensions.addInstructions
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint.Companion.resolve
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.shared.annotation.YouTubeCompatibility
import app.revanced.patches.shared.fingerprints.ControlsOverlayStyleFingerprint
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsPatch
import app.revanced.util.integrations.Constants.PLAYER
@Patch
@Name("hide-previous-next-button")
@Description("Hides the previous and next button in the player controller.")
@DependsOn([SettingsPatch::class])
@YouTubeCompatibility
@Version("0.0.1")
class HidePreviousNextButtonPatch : BytecodePatch(
listOf(ControlsOverlayStyleFingerprint)
) {
override fun execute(context: BytecodeContext): PatchResult {
val controlsOverlayStyleClassDef = ControlsOverlayStyleFingerprint.result?.classDef?: return ControlsOverlayStyleFingerprint.toErrorResult()
val previousNextButtonVisibleFingerprint =
object : MethodFingerprint(returnType = "V", parameters = listOf("Z"), customFingerprint = { it.name == "j" }) {}
previousNextButtonVisibleFingerprint.resolve(context, controlsOverlayStyleClassDef)
previousNextButtonVisibleFingerprint.result?.mutableMethod?.addInstructions(
0, """
invoke-static {p1}, $PLAYER->hidePreviousNextButton(Z)Z
move-result p1
"""
)?: return previousNextButtonVisibleFingerprint.toErrorResult()
/*
* Add settings
*/
SettingsPatch.addPreference(
arrayOf(
"PREFERENCE: PLAYER_SETTINGS",
"SETTINGS: HIDE_PREVIOUS_NEXT_BUTTON"
)
)
SettingsPatch.updatePatchStatus("hide-previous-next-button")
return PatchResultSuccess()
}
}