aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gg/skytils/skytilsmod/mixins/hooks/renderer/ItemRendererHook.kt
blob: 4bf4d7aa4c1a9906bd8adb658f8c65cbd815a451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Skytils - Hypixel Skyblock Quality of Life Mod
 * Copyright (C) 2022 Skytils
 *
 * This program is free 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
 * (at your option) any later version.
 *
 * This program 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
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package gg.skytils.skytilsmod.mixins.hooks.renderer

import gg.essential.universal.UMatrixStack
import gg.skytils.skytilsmod.Skytils
import gg.skytils.skytilsmod.utils.SuperSecretSettings
import gg.skytils.skytilsmod.utils.Utils
import net.minecraft.client.entity.AbstractClientPlayer
import net.minecraft.item.ItemStack
import net.minecraft.item.ItemSword

fun getItemInUseCountForFirstPerson(player: AbstractClientPlayer, item: ItemStack): Int {
    if (Skytils.config.disableBlockAnimation && Utils.inSkyblock && item.item is ItemSword && player.itemInUseDuration <= 7) return 0
    return player.itemInUseCount
}

fun modifySize() {
    val scale = Skytils.config.itemScale * if (SuperSecretSettings.twilightGiant) 5f else 1f
    val matrixStack = UMatrixStack()
    matrixStack.scale(scale, scale, scale)
    if (scale < 1) {
        val offset = 1 - scale
        matrixStack.translate(-offset, offset, 0f)
    }
    matrixStack.applyToGlobalState()
}