aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/rei/recipes/SBRecipe.kt
blob: 50dd72265ab86b7f92ff2e419fc7089ebf70b850 (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
/*
 * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

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)
            }
    }
}