mirror of
https://github.com/revanced/revanced-patches
synced 2024-12-02 19:53:00 +01:00
feat(youtube): disable-zoom-haptics
patch (#1079)
This commit is contained in:
parent
ee461a544a
commit
a7cfba54fb
@ -0,0 +1,9 @@
|
|||||||
|
package app.revanced.patches.youtube.misc.zoomhaptics.annotations
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Compatibility
|
||||||
|
import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
|
@Compatibility([Package("com.google.android.youtube")])
|
||||||
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
@Retention(AnnotationRetention.RUNTIME)
|
||||||
|
internal annotation class ZoomHapticsCompatibility
|
@ -0,0 +1,9 @@
|
|||||||
|
package app.revanced.patches.youtube.misc.zoomhaptics.fingerprints
|
||||||
|
|
||||||
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
||||||
|
|
||||||
|
object ZoomHapticsFingerprint : MethodFingerprint(
|
||||||
|
strings = listOf(
|
||||||
|
"Failed to haptics vibrate for video zoom"
|
||||||
|
)
|
||||||
|
)
|
@ -0,0 +1,54 @@
|
|||||||
|
package app.revanced.patches.youtube.misc.zoomhaptics.patch
|
||||||
|
|
||||||
|
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.extensions.instruction
|
||||||
|
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.patcher.util.smali.ExternalLabel
|
||||||
|
import app.revanced.patches.youtube.misc.settings.bytecode.patch.SettingsPatch
|
||||||
|
import app.revanced.patches.youtube.misc.settings.framework.components.impl.StringResource
|
||||||
|
import app.revanced.patches.youtube.misc.settings.framework.components.impl.SwitchPreference
|
||||||
|
import app.revanced.patches.youtube.misc.zoomhaptics.annotations.ZoomHapticsCompatibility
|
||||||
|
import app.revanced.patches.youtube.misc.zoomhaptics.fingerprints.ZoomHapticsFingerprint
|
||||||
|
|
||||||
|
@Patch
|
||||||
|
@Name("disable-zoom-haptics")
|
||||||
|
@Description("Disables haptics when zooming.")
|
||||||
|
@DependsOn([SettingsPatch::class])
|
||||||
|
@ZoomHapticsCompatibility
|
||||||
|
@Version("0.0.1")
|
||||||
|
class ZoomHapticsPatch : BytecodePatch(
|
||||||
|
listOf(ZoomHapticsFingerprint)
|
||||||
|
) {
|
||||||
|
override fun execute(context: BytecodeContext): PatchResult {
|
||||||
|
SettingsPatch.PreferenceScreen.MISC.addPreferences(
|
||||||
|
SwitchPreference(
|
||||||
|
"revanced_disable_zoom_haptics",
|
||||||
|
StringResource("revanced_disable_zoom_haptics_title", "Disable zoom haptics"),
|
||||||
|
true,
|
||||||
|
StringResource("revanced_disable_zoom_haptics_summary_on", "Haptics are disabled"),
|
||||||
|
StringResource("revanced_disable_zoom_haptics_summary_off", "Haptics are enabled")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
val zoomHapticsFingerprintMethod = ZoomHapticsFingerprint.result!!.mutableMethod
|
||||||
|
|
||||||
|
zoomHapticsFingerprintMethod.addInstructions(
|
||||||
|
0, """
|
||||||
|
invoke-static { }, Lapp/revanced/integrations/patches/ZoomHapticsPatch;->shouldVibrate()Z
|
||||||
|
move-result v0
|
||||||
|
if-nez v0, :vibrate
|
||||||
|
return-void
|
||||||
|
""", listOf(ExternalLabel("vibrate", zoomHapticsFingerprintMethod.instruction(0)))
|
||||||
|
)
|
||||||
|
|
||||||
|
return PatchResultSuccess()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user