mmb.content.electric.recipes.ComplexCatRecipeView 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.electric.recipes;
import net.miginfocom.swing.MigLayout;
import javax.swing.JLabel;
import javax.swing.JList;
import org.ainslec.picocog.PicoWriter;
import io.github.parubok.text.multiline.MultilineLabel;
import mmb.content.electric.recipes.ComplexCatRecipeGroup.ComplexCatalyzedRecipe;
import mmb.engine.UnitFormatter;
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;
/**
* @author oskar
*/
public class ComplexCatRecipeView extends RecipeView {
private static final long serialVersionUID = -2864705123116802475L;
private JLabel lblVolt;
private JLabel lblEnergy;
private JLabel lblIncoming;
private JLabel lblOutgoing;
private JList inList;
private JList outList;
private JLabel lblMachine;
private JLabel lblCatalyst;
private JLabel catalyst;
private MultilineLabel lblMaybe;
/** Creates recipe view for multi-item recipes with catalyst*/
public ComplexCatRecipeView() {
setLayout(new MigLayout("", "[grow][grow][grow]", "[][][][fill]"));
lblMachine = new JLabel(CRConstants.MACHINE);
add(lblMachine, "cell 0 0,growx");
lblMaybe = new MultilineLabel(CRConstants.CHANCE);
lblMaybe.setPreferredViewportLineCount(9999);
add(lblMaybe, "cell 1 0");
lblVolt = new JLabel(CRConstants.VOLT);
add(lblVolt, "cell 0 1");
lblEnergy = new JLabel(CRConstants.ENERGY);
add(lblEnergy, "cell 1 1,growx");
lblIncoming = new JLabel(CRConstants.IN);
add(lblIncoming, "cell 0 2,growx");
lblCatalyst = new JLabel(CRConstants.CAT);
add(lblCatalyst, "cell 1 2,growx");
lblOutgoing = new JLabel(CRConstants.OUT);
add(lblOutgoing, "cell 2 2,growx");
catalyst = new JLabel();
add(catalyst, "cell 1 3, grow");
outList = new JList<>();
outList.setCellRenderer(ItemStackCellRenderer.instance);
add(outList, "cell 2 3,grow");
inList = new JList<>();
inList.setCellRenderer(ItemStackCellRenderer.instance);
add(inList, "cell 0 3,grow");
inList.setMaximumSize(null);
}
@Override public void set(ComplexCatalyzedRecipe recipe) {
lblVolt.setText(CRConstants.VOLT+recipe.voltage.name);
lblEnergy.setText(CRConstants.ENERGY+UnitFormatter.formatEnergy(recipe.energy));
lblMachine.setText(CRConstants.MACHINE+recipe.group().title());
inList.setListData(VectorUtils.list2arr(recipe.input));
outList.setListData(VectorUtils.list2arr(recipe.output));
ItemEntry catalyst0 = recipe.catalyst;
if(catalyst0 == null) {
catalyst.setText("none");
catalyst.setIcon(null);
}else {
catalyst.setText(catalyst0.title());
catalyst.setIcon(catalyst0.icon());
}
PicoWriter writer = new PicoWriter();
writer.writeln(CRConstants.CHANCE);
recipe.luck().represent(writer);
lblMaybe.setText(writer.toString());
}
}