feat: add PokeNoCoolDown

Co-authored-by: dduu <1303384099@qq.com>
Signed-off-by: ACh Sulfate <xenonhydride@gmail.com>
This commit is contained in:
ACh Sulfate
2023-01-08 21:12:39 +08:00
parent f50e12d278
commit 6de1dd193d
2 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
/*
* QAuxiliary - An Xposed module for QQ/TIM
* Copyright (C) 2019-2023 QAuxiliary developers
* https://github.com/cinit/QAuxiliary
*
* This software is non-free but opensource software: you can redistribute it
* and/or modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either
* version 3 of the License, or any later version and our eula as published
* by QAuxiliary contributors.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* and eula along with this software. If not, see
* <https://www.gnu.org/licenses/>
* <https://github.com/cinit/QAuxiliary/blob/master/LICENSE.md>.
*/
package cc.ioctl.hook.entertainment
import cc.ioctl.util.hookBeforeIfEnabled
import io.github.qauxv.base.annotation.FunctionHookEntry
import io.github.qauxv.base.annotation.UiItemAgentEntry
import io.github.qauxv.dsl.FunctionEntryRouter
import io.github.qauxv.hook.CommonSwitchFunctionHook
import io.github.qauxv.util.QQVersion
import io.github.qauxv.util.dexkit.DexKit
import io.github.qauxv.util.dexkit.PaiYiPaiHandler_canSendReq
import io.github.qauxv.util.requireMinQQVersion
@FunctionHookEntry
@UiItemAgentEntry
object PokeNoCoolDown : CommonSwitchFunctionHook(arrayOf(PaiYiPaiHandler_canSendReq)) {
override val name = "去除戳一戳时间限制"
override val description = "去除戳一戳的冷却时间限制(本来为10秒)"
override val uiItemLocation: Array<String> = FunctionEntryRouter.Locations.Entertainment.ENTERTAIN_CATEGORY
override val isAvailable: Boolean get() = requireMinQQVersion(QQVersion.QQ_8_5_0)
override fun initOnce(): Boolean {
// Lcom/tencent/mobileqq/paiyipai/PaiYiPaiHandler;->canSendReq(Ljava/lang/String;)Z
val canSendReq = DexKit.requireMethodFromCache(PaiYiPaiHandler_canSendReq)
hookBeforeIfEnabled(canSendReq) {
it.result = true
}
return true
}
}

View File

@@ -621,3 +621,10 @@ object NAIOPictureView_onDownloadOriginalPictureClick : DexKitTarget.UsingDexkit
override val declaringClass = "com/tencent/mobileqq/activity/aio/photo/AIOPictureView"
override val filter = DexKitFilter.allowAll
}
object PaiYiPaiHandler_canSendReq : DexKitTarget.UsingStr() {
override val findMethod: Boolean = true
override val declaringClass = "com/tencent/mobileqq/paiyipai/PaiYiPaiHandler"
override val traitString = arrayOf("pai_yi_pai_user_double_tap_timestamp_")
override val filter = DexKitFilter.allowAll
}