mmb.content.drugs.AlcoholInfoView 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.drugs;
import net.miginfocom.swing.MigLayout;
import static mmb.engine.settings.GlobalSettings.$res;
import javax.swing.JLabel;
import javax.swing.JList;
import mmb.content.drugs.AlcoholInfoGroup.AlcoholInfo;
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;
/**
* Displays information about a single alcoholic beverage
* @author oskar
*/
public class AlcoholInfoView extends RecipeView {
private static final long serialVersionUID = -2864705123116802475L;
private JLabel lblIncoming;
private JLabel lblOutgoing;
private JLabel lblIn;
private JList outList;
private JLabel lblMachine;
private JLabel lblIntoxication;
public static final String DOSE = " "+$res("alcodose")+" ";
/** Creates recipe view for alcoholic beverages */
public AlcoholInfoView() {
setLayout(new MigLayout("", "[grow][grow]", "[][][]"));
lblMachine = new JLabel(CRConstants.MACHINE);
add(lblMachine, "cell 0 0,growx");
lblIntoxication = new JLabel("New label");
add(lblIntoxication, "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(AlcoholInfo recipe) {
lblMachine.setText(CRConstants.MACHINE+recipe.group().title());
ItemEntry item = recipe.input;
lblIntoxication.setText(DOSE+recipe.dose);
lblIn.setIcon(item.icon());
lblIn.setText(item.title());
outList.setListData(VectorUtils.list2arr(recipe.output));
}
static final ItemStackCellRenderer renderer = new ItemStackCellRenderer();
}