mmb.engine.craft.ProcessIngredients Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world.
THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<
/**
*
*/
package mmb.engine.craft;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ArrayNode;
import mmb.NN;
import mmb.Nil;
import mmb.engine.json.JsonTool;
/**
* Combination of inputs and outputs
* @author oskar
*/
public class ProcessIngredients{
/** An empty list of processing ingredients*/
@NN public static final ProcessIngredients EMPTY = new ProcessIngredients(RecipeOutput.NONE, RecipeOutput.NONE);
/** Input items */
@NN public final RecipeOutput input;
/** Output items */
@NN public final RecipeOutput output;
/**
* Creates a list of processing ingredients
* @param input
* @param output
*/
public ProcessIngredients(RecipeOutput input, RecipeOutput output) {
this.input = input;
this.output = output;
}
/**
* Saves this list of processing ingredients
* @return a JSON array with representation of this list of processing ingredients
*/
@NN public ArrayNode save() {
ArrayNode node = JsonTool.newArrayNode();
node.add(ItemLists.save(input));
node.add(ItemLists.save(output));
return node;
}
/**
* Loads a list of processing ingredients from JSON
* @param data a JSON array with representation of a list of processing ingredients
* @return a list of processing ingredients
*/
@Nil public static ProcessIngredients read(@Nil JsonNode data) {
if(data == null) return null;
RecipeOutput a = ItemLists.read(data.get(0));
if(a == null) return null;
RecipeOutput b = ItemLists.read(data.get(1));
if(b == null) return null;
return new ProcessIngredients(a, b);
}
/**
* Saves a list of processing ingredients
* @param x a list of processing ingredients
* @return a JSON array with representation of this list of processing ingredients
*/
@Nil public static ArrayNode save(@Nil ProcessIngredients x) {
if(x == null) return null;
return x.save();
}
}