aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/rei/recipes/SBRecipe.kt
blob: 7872d8354d81f490f59af306d93572ac9af3225f (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
package moe.nea.firmament.rei.recipes

import io.github.moulberry.repo.data.NEUIngredient
import io.github.moulberry.repo.data.NEURecipe
import me.shedaniel.rei.api.common.display.Display
import me.shedaniel.rei.api.common.entry.EntryIngredient
import moe.nea.firmament.rei.SBItemEntryDefinition
import moe.nea.firmament.util.SkyblockId

abstract class SBRecipe : Display {
    abstract val neuRecipe: NEURecipe
    override fun getInputEntries(): List<EntryIngredient> {
        return neuRecipe.allInputs
            .filter { it.itemId != NEUIngredient.NEU_SENTINEL_EMPTY }
            .map {
                val entryStack = SBItemEntryDefinition.getEntry(SkyblockId(it.itemId))
                EntryIngredient.of(entryStack)
            }
    }

    override fun getOutputEntries(): List<EntryIngredient> {
        return neuRecipe.allOutputs
            .filter { it.itemId != NEUIngredient.NEU_SENTINEL_EMPTY }
            .map {
                val entryStack = SBItemEntryDefinition.getEntry(SkyblockId(it.itemId))
                EntryIngredient.of(entryStack)
            }
    }
}