use of me.desht.pneumaticcraft.common.network.PacketAmadronInvSync in project pnc-repressurized by TeamPneumatic.
the class GuiAmadron method updateVisibleOffers.
public void updateVisibleOffers() {
needsRefreshing = false;
final ContainerAmadron container = (ContainerAmadron) inventorySlots;
int invSize = ContainerAmadron.ROWS * 2;
container.clearStacks();
List<AmadronOffer> offers = container.offers;
List<AmadronOffer> visibleOffers = new ArrayList<AmadronOffer>();
int skippedOffers = 0;
int applicableOffers = 0;
for (AmadronOffer offer : offers) {
if (offer.passesQuery(searchBar.getText())) {
applicableOffers++;
if (skippedOffers < page * invSize) {
skippedOffers++;
} else if (visibleOffers.size() < invSize) {
visibleOffers.add(offer);
}
}
}
scrollbar.setStates(Math.max(1, (applicableOffers + invSize - 1) / invSize - 1));
widgets.removeAll(widgetOffers);
for (int i = 0; i < visibleOffers.size(); i++) {
AmadronOffer offer = visibleOffers.get(i);
if (offer.getInput() instanceof ItemStack) {
container.inventorySlots.get(i * 2).putStack((ItemStack) offer.getInput());
}
if (offer.getOutput() instanceof ItemStack) {
container.inventorySlots.get(i * 2 + 1).putStack((ItemStack) offer.getOutput());
}
WidgetAmadronOffer widget = new WidgetAmadronOffer(i, guiLeft + 6 + 73 * (i % 2), guiTop + 55 + 35 * (i / 2), offer) {
@Override
public void onMouseClicked(int mouseX, int mouseY, int button) {
NetworkHandler.sendToServer(new PacketAmadronOrderUpdate(container.offers.indexOf(getOffer()), button, PneumaticCraftRepressurized.proxy.isSneakingInGui()));
}
};
addWidget(widget);
widgetOffers.add(widget);
}
// the server also needs to know what's in the tablet, or the next
// "window items" packet will empty all the client-side slots
NetworkHandler.sendToServer(new PacketAmadronInvSync(container.getInventory()));
}
Aggregations