Arcturus-Community/src/main/java/com/eu/habbo/messages/outgoing/catalog/CatalogPagesListComposer.java

84 lines
2.5 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.messages.outgoing.catalog;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.catalog.CatalogPage;
import com.eu.habbo.habbohotel.users.Habbo;
import com.eu.habbo.messages.ServerMessage;
import com.eu.habbo.messages.outgoing.MessageComposer;
import com.eu.habbo.messages.outgoing.Outgoing;
import java.util.List;
public class CatalogPagesListComposer extends MessageComposer
{
private final Habbo habbo;
private final String mode;
private final boolean hasPermission;
public CatalogPagesListComposer(Habbo habbo, String mode)
{
this.habbo = habbo;
this.mode = mode;
this.hasPermission = this.habbo.hasPermission("acc_catalog_ids");
}
@Override
public ServerMessage compose()
{
try
{
List<CatalogPage> pages = Emulator.getGameEnvironment().getCatalogManager().getCatalogPages(-1, this.habbo);
this.response.init(Outgoing.CatalogPagesListComposer);
this.response.appendBoolean(true);
this.response.appendInt(0);
this.response.appendInt(-1);
this.response.appendString("root");
this.response.appendString("");
this.response.appendInt(0);
this.response.appendInt(pages.size());
for (CatalogPage category : pages)
{
append(category);
}
this.response.appendBoolean(false);
this.response.appendString(this.mode);
return this.response;
}
catch(Exception e)
{
e.printStackTrace();
}
return null;
}
private void append(CatalogPage category)
{
List<CatalogPage> pagesList = Emulator.getGameEnvironment().getCatalogManager().getCatalogPages(category.getId(), this.habbo);
this.response.appendBoolean(category.isVisible());
this.response.appendInt(category.getIconImage());
this.response.appendInt(category.isEnabled() ? category.getId() : -1);
this.response.appendString(category.getPageName());
this.response.appendString(category.getCaption() + (hasPermission ? " (" + category.getId() + ")" : ""));
this.response.appendInt(category.getOfferIds().size());
for(int i : category.getOfferIds().toArray())
{
this.response.appendInt(i);
}
this.response.appendInt(pagesList.size());
for (CatalogPage page : pagesList)
{
append(page);
}
}
}