Make pickaxe ability display use AbilityUtils

[no changelog]
This commit is contained in:
Linnea Gräf
2024-10-13 17:32:10 +02:00
parent daa63bd914
commit e6142bb936
24 changed files with 1433 additions and 681 deletions

29
src/test/kotlin/root.kt Normal file
View File

@@ -0,0 +1,29 @@
package moe.nea.firmament.test
import net.minecraft.Bootstrap
import net.minecraft.SharedConstants
import moe.nea.firmament.util.TimeMark
object FirmTestBootstrap {
val loadStart = TimeMark.now()
init {
println("Bootstrap started at $loadStart")
}
init {
SharedConstants.createGameVersion()
Bootstrap.initialize()
}
val loadEnd = TimeMark.now()
val loadDuration = loadStart.passedAt(loadEnd)
init {
println("Bootstrap completed at $loadEnd after $loadDuration")
}
fun bootstrapMinecraft() {
}
}

View File

@@ -0,0 +1,30 @@
package moe.nea.firmament.test.testutil
import net.minecraft.item.ItemStack
import net.minecraft.nbt.NbtCompound
import net.minecraft.nbt.NbtOps
import net.minecraft.nbt.StringNbtReader
import moe.nea.firmament.test.FirmTestBootstrap
object ItemResources {
init {
FirmTestBootstrap.bootstrapMinecraft()
}
fun loadString(path: String): String {
require(!path.startsWith("/"))
return ItemResources::class.java.classLoader
.getResourceAsStream(path)!!
.readAllBytes().decodeToString()
}
fun loadSNbt(path: String): NbtCompound {
return StringNbtReader.parse(loadString(path))
}
fun loadItem(name: String): ItemStack {
// TODO: make the load work with enchantments
return ItemStack.CODEC.parse(NbtOps.INSTANCE, loadSNbt("testdata/items/$name.snbt"))
.getOrThrow { IllegalStateException("Could not load test item '$name': $it") }
}
}

View File

@@ -1,12 +1,13 @@
package moe.nea.firmament.test
package moe.nea.firmament.test.util
import org.junit.jupiter.api.Assertions
import org.junit.jupiter.api.Test
import net.minecraft.Bootstrap
import net.minecraft.SharedConstants
import moe.nea.firmament.util.removeColorCodes
class ColorCode {
class ColorCodeTest {
@Test
fun testWhatever() {
Assertions.assertEquals("", "".removeColorCodes().toString())

View File

@@ -0,0 +1,79 @@
package moe.nea.firmament.test.util.skyblock
import org.junit.jupiter.api.Assertions
import org.junit.jupiter.api.Test
import kotlin.time.Duration.Companion.minutes
import kotlin.time.Duration.Companion.seconds
import net.minecraft.text.Text
import moe.nea.firmament.test.testutil.ItemResources
import moe.nea.firmament.util.skyblock.AbilityUtils
import moe.nea.firmament.util.unformattedString
class AbilityUtilsTest {
fun List<AbilityUtils.ItemAbility>.stripDescriptions() = map {
it.copy(descriptionLines = it.descriptionLines.map { Text.literal(it.unformattedString) })
}
@Test
fun testUnpoweredDrill() {
Assertions.assertEquals(
listOf(
AbilityUtils.ItemAbility(
"Pickobulus",
false,
AbilityUtils.AbilityActivation.RIGHT_CLICK,
null,
listOf("Throw your pickaxe to create an",
"explosion mining all ores in a 3 block",
"radius.").map(Text::literal),
48.seconds
)
),
AbilityUtils.getAbilities(ItemResources.loadItem("titanium-drill")).stripDescriptions()
)
}
@Test
fun testPoweredPickaxe() {
Assertions.assertEquals(
listOf(
AbilityUtils.ItemAbility(
"Mining Speed Boost",
true,
AbilityUtils.AbilityActivation.RIGHT_CLICK,
null,
listOf("Grants +200% ⸕ Mining Speed for",
"10s.").map(Text::literal),
2.minutes
)
),
AbilityUtils.getAbilities(ItemResources.loadItem("diamond-pickaxe")).stripDescriptions()
)
}
@Test
fun testAOTV() {
Assertions.assertEquals(
listOf(
AbilityUtils.ItemAbility(
"Instant Transmission", true, AbilityUtils.AbilityActivation.RIGHT_CLICK, 23,
listOf("Teleport 12 blocks ahead of you and",
"gain +50 ✦ Speed for 3 seconds.").map(Text::literal),
null
),
AbilityUtils.ItemAbility(
"Ether Transmission",
false,
AbilityUtils.AbilityActivation.SNEAK_RIGHT_CLICK,
90,
listOf("Teleport to your targeted block up",
"to 61 blocks away.",
"Soulflow Cost: 1").map(Text::literal),
null
)
),
AbilityUtils.getAbilities(ItemResources.loadItem("aspect-of-the-void")).stripDescriptions()
)
}
}