aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/rei/recipes/SBCraftingRecipe.kt
blob: d6bbf0c2d6284916bcf330c8a349b2ff8f75adeb (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
51
52
53
54
55
package moe.nea.firmament.rei.recipes

import io.github.moulberry.repo.data.NEUCraftingRecipe
import io.github.moulberry.repo.data.NEUIngredient
import me.shedaniel.math.Point
import me.shedaniel.math.Rectangle
import me.shedaniel.rei.api.client.gui.Renderer
import me.shedaniel.rei.api.client.gui.widgets.Widget
import me.shedaniel.rei.api.client.gui.widgets.Widgets
import me.shedaniel.rei.api.client.registry.display.DisplayCategory
import me.shedaniel.rei.api.common.category.CategoryIdentifier
import me.shedaniel.rei.api.common.util.EntryStacks
import net.minecraft.block.Blocks
import net.minecraft.text.Text
import moe.nea.firmament.Firmament
import moe.nea.firmament.rei.SBItemEntryDefinition

class SBCraftingRecipe(override val neuRecipe: NEUCraftingRecipe) : SBRecipe() {
    override fun getCategoryIdentifier(): CategoryIdentifier<*> = Category.catIdentifier

    object Category : DisplayCategory<SBCraftingRecipe> {
        val catIdentifier = CategoryIdentifier.of<SBCraftingRecipe>(Firmament.MOD_ID, "crafing_recipe")
        override fun getCategoryIdentifier(): CategoryIdentifier<out SBCraftingRecipe> = catIdentifier

        override fun getTitle(): Text = Text.literal("SkyBlock Crafting")

        override fun getIcon(): Renderer = EntryStacks.of(Blocks.CRAFTING_TABLE)
        override fun setupDisplay(display: SBCraftingRecipe, bounds: Rectangle): List<Widget> {
            val point = Point(bounds.centerX - 58, bounds.centerY - 27)
            return buildList {
                add(Widgets.createRecipeBase(bounds))
                add(Widgets.createArrow(Point(point.x + 60, point.y + 18)))
                add(Widgets.createResultSlotBackground(Point(point.x + 95, point.y + 19)))
                for (i in 0 until 3) {
                    for (j in 0 until 3) {
                        val slot = Widgets.createSlot(Point(point.x + 1 + i * 18, point.y + 1 + j * 18)).markInput()
                        add(slot)
                        val item = display.neuRecipe.inputs[i + j * 3]
                        if (item == NEUIngredient.SENTINEL_EMPTY) continue
                        slot.entry(SBItemEntryDefinition.getEntry(item)) // TODO: make use of stackable item entries
                    }
                }
                add(
                    Widgets.createSlot(Point(point.x + 95, point.y + 19))
                        .entry(SBItemEntryDefinition.getEntry(display.neuRecipe.output))
                        .disableBackground().markOutput()
                )
            }
        }

    }

}