aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/features/fixes/CompatibliltyFeatures.kt
blob: 0b64b80f25540ee3e75017b92b1620e6b5089cf2 (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
44
45
46
47
48
49
50
package moe.nea.firmament.features.fixes

import net.fabricmc.loader.api.FabricLoader
import net.superkat.explosiveenhancement.api.ExplosiveApi
import net.minecraft.particle.ParticleTypes
import net.minecraft.util.math.Vec3d
import moe.nea.firmament.annotations.Subscribe
import moe.nea.firmament.events.ParticleSpawnEvent
import moe.nea.firmament.features.FirmamentFeature
import moe.nea.firmament.gui.config.ManagedConfig
import moe.nea.firmament.util.MC

object CompatibliltyFeatures : FirmamentFeature {
	override val identifier: String
		get() = "compatibility"

	object TConfig : ManagedConfig(identifier) {
		val enhancedExplosions by toggle("explosion-enabled") { false }
		val explosionSize by integer("explosion-power", 10, 50) { 1 }
		val tapCube by toggle("tapcube") { true }
	}

	override val config: ManagedConfig?
		get() = TConfig

	interface ExplosiveApiWrapper {
		fun spawnParticle(vec3d: Vec3d, power: Float)
	}

	class ExplosiveApiWrapperImpl : ExplosiveApiWrapper {
		override fun spawnParticle(vec3d: Vec3d, power: Float) {
			ExplosiveApi.spawnParticles(MC.world, vec3d.x, vec3d.y, vec3d.z, TConfig.explosionSize / 10F)
		}
	}

	val explosiveApiWrapper = if (FabricLoader.getInstance().isModLoaded("explosiveenhancement")) {
		ExplosiveApiWrapperImpl()
	} else null

	@Subscribe
	fun onExplosion(it: ParticleSpawnEvent) {
		if (TConfig.enhancedExplosions &&
			it.particleEffect.type == ParticleTypes.EXPLOSION_EMITTER &&
			explosiveApiWrapper != null
		) {
			it.cancel()
			explosiveApiWrapper.spawnParticle(it.position, 2F)
		}
	}
}