Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/commands/MassGiftCommand.java

104 lines
3.9 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.commands;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.gameclients.GameClient;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.rooms.RoomChatMessageBubbles;
import com.eu.habbo.habbohotel.users.Habbo;
import com.eu.habbo.habbohotel.users.HabboItem;
import com.eu.habbo.messages.ServerMessage;
import com.eu.habbo.messages.outgoing.generic.alerts.BubbleAlertComposer;
import com.eu.habbo.messages.outgoing.generic.alerts.BubbleAlertKeys;
import com.eu.habbo.messages.outgoing.inventory.InventoryRefreshComposer;
import gnu.trove.map.hash.THashMap;
import java.util.Map;
public class MassGiftCommand extends Command
{
public MassGiftCommand()
{
super("cmd_massgift", Emulator.getTexts().getValue("commands.keys.cmd_massgift").split(";"));
}
@Override
public boolean handle(final GameClient gameClient, String[] params) throws Exception
{
if(params.length >= 2)
{
2019-03-18 02:22:00 +01:00
int itemId;
2018-07-06 15:30:00 +02:00
try
{
2019-03-18 02:22:00 +01:00
itemId = Integer.valueOf(params[1]);
}
catch (Exception e)
{
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_gift.not_a_number"), RoomChatMessageBubbles.ALERT);
return true;
}
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
if(itemId <= 0)
{
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_gift.not_a_number"), RoomChatMessageBubbles.ALERT);
return true;
}
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
final Item baseItem = Emulator.getGameEnvironment().getItemManager().getItem(itemId);
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
if(baseItem == null)
{
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_gift.not_found").replace("%itemid%", itemId + ""), RoomChatMessageBubbles.ALERT);
return true;
}
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
StringBuilder message = new StringBuilder();
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
if(params.length > 2)
{
for (int i = 2; i < params.length; i++)
2018-07-06 15:30:00 +02:00
{
2019-03-18 02:22:00 +01:00
message.append(params[i]).append(" ");
2018-07-06 15:30:00 +02:00
}
2019-03-18 02:22:00 +01:00
}
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
final String finalMessage = message.toString();
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
THashMap<String, String> keys = new THashMap<>();
keys.put("display", "BUBBLE");
keys.put("image", "${image.library.url}notifications/gift.gif");
keys.put("message", Emulator.getTexts().getValue("generic.gift.received.anonymous"));
ServerMessage giftNotificiationMessage = new BubbleAlertComposer(BubbleAlertKeys.RECEIVED_BADGE.key, keys).compose();
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
Emulator.getThreading().run(new Runnable()
{
@Override
public void run()
2018-07-06 15:30:00 +02:00
{
2019-03-18 02:22:00 +01:00
for(Map.Entry<Integer, Habbo> set : Emulator.getGameEnvironment().getHabboManager().getOnlineHabbos().entrySet())
2018-07-06 15:30:00 +02:00
{
2019-03-18 02:22:00 +01:00
Habbo habbo = set.getValue();
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
HabboItem item = Emulator.getGameEnvironment().getItemManager().createItem(0, baseItem, 0, 0, "");
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
Item giftItem = Emulator.getGameEnvironment().getItemManager().getItem((Integer) Emulator.getGameEnvironment().getCatalogManager().giftFurnis.values().toArray()[Emulator.getRandom().nextInt(Emulator.getGameEnvironment().getCatalogManager().giftFurnis.size())]);
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
String extraData = "1\t" + item.getId();
extraData += "\t0\t0\t0\t"+ finalMessage +"\t0\t0";
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
Emulator.getGameEnvironment().getItemManager().createGift(habbo.getHabboInfo().getUsername(), giftItem, extraData, 0, 0);
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
habbo.getClient().sendResponse(new InventoryRefreshComposer());
habbo.getClient().sendResponse(giftNotificiationMessage);
2018-07-06 15:30:00 +02:00
}
2019-03-18 02:22:00 +01:00
}
});
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
return true;
2018-07-06 15:30:00 +02:00
}
return false;
}
}