Skip to content

Commit

Permalink
feat: HideTroopSquare on 9.0.80+
Browse files Browse the repository at this point in the history
  • Loading branch information
HdShare committed Nov 12, 2024
1 parent 202c771 commit f390a78
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions app/src/main/java/me/hd/hook/HideTroopSquare.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
* QAuxiliary - An Xposed module for QQ/TIM
* Copyright (C) 2019-2024 QAuxiliary developers
* https://github.com/cinit/QAuxiliary
*
* This software is an opensource software: you can redistribute it
* and/or modify it under the terms of the General Public License
* as published by the Free Software Foundation; either
* version 3 of the License, or any later version 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 General Public License for more details.
*
* You should have received a copy of the General Public License
* along with this software.
* If not, see
* <https://github.com/cinit/QAuxiliary/blob/master/LICENSE.md>.
*/

package me.hd.hook

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.Initiator
import io.github.qauxv.util.QQVersion
import io.github.qauxv.util.requireMinQQVersion

@FunctionHookEntry
@UiItemAgentEntry
object HideTroopSquare : CommonSwitchFunctionHook() {

override val name = "隐藏群广场"
override val description = "隐藏群聊聊天页右上角展示的群广场"
override val uiItemLocation = FunctionEntryRouter.Locations.Simplify.CHAT_GROUP_TITLE
override val isAvailable = requireMinQQVersion(QQVersion.QQ_9_0_80)

override fun initOnce(): Boolean {
val titleVBClass = Initiator.loadClass("com.tencent.mobileqq.aio.title.AIOTitleVB")
val titleTabVBMethod = titleVBClass.declaredMethods.single { method ->
method.returnType == Void.TYPE && method.parameterTypes.size == 1 && method.parameterTypes[0] == String::class.java
}
hookBeforeIfEnabled(titleTabVBMethod) { param ->
val keyword = param.args[0] as String
if (keyword == "troop_square_vb") {
param.result = null
}
}
return true
}
}

0 comments on commit f390a78

Please sign in to comment.