mmb.content.agro.AgroRecipeView 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<
The newest version!
/**
*
*/
package mmb.content.agro;
import net.miginfocom.swing.MigLayout;
import static mmb.engine.settings.GlobalSettings.$res;
import javax.swing.JLabel;
import javax.swing.JList;
import mmb.NN;
import mmb.content.agro.AgroRecipeGroup.AgroProcessingRecipe;
import mmb.engine.item.ItemEntry;
import mmb.engine.recipe.CRConstants;
import mmb.engine.recipe.ItemStack;
import mmb.engine.recipe.RecipeView;
import mmb.engine.recipe.VectorUtils;
import mmb.menu.world.ItemStackCellRenderer;
/**
* Represent a recipe view for crop outputs
* @author oskar
*/
public class AgroRecipeView extends RecipeView<@NN AgroProcessingRecipe>{
private static final long serialVersionUID = -2864705123116802475L;
private JLabel lblIncoming;
private JLabel lblOutgoing;
private JLabel lblIn;
private JList outList;
private JLabel lblMachine;
private JLabel lblEvery;
public static final String EVERYTIME = $res("everytime")+" ";
public static final String SECONDS = " "+$res("seconds");
/** Creates a recipe view for crop outputs */
public AgroRecipeView() {
setLayout(new MigLayout("", "[grow][grow]", "[][][]"));
lblMachine = new JLabel(CRConstants.MACHINE);
add(lblMachine, "cell 0 0,growx");
lblEvery = new JLabel("New label");
add(lblEvery, "cell 1 0,alignx left");
lblIncoming = new JLabel(CRConstants.IN);
add(lblIncoming, "cell 0 1,growx");
lblOutgoing = new JLabel(CRConstants.OUT);
add(lblOutgoing, "cell 1 1,growx");
lblIn = new JLabel();
add(lblIn, "cell 0 2,grow");
outList = new JList<>();
outList.setCellRenderer(ItemStackCellRenderer.instance);
add(outList, "cell 1 2,growx,aligny center");
}
@Override public void set(AgroProcessingRecipe recipe) {
lblMachine.setText(CRConstants.MACHINE+recipe.group().title());
lblEvery.setText(EVERYTIME+(recipe.duration/50.0)+SECONDS);
ItemEntry item = recipe.input;
lblIn.setIcon(item.icon());
lblIn.setText(item.title());
outList.setListData(VectorUtils.list2arr(recipe.output));
}
}