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

87 lines
3.7 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;
2019-05-26 20:14:53 +02:00
public class MassGiftCommand extends Command {
public MassGiftCommand() {
2018-07-06 15:30:00 +02:00
super("cmd_massgift", Emulator.getTexts().getValue("commands.keys.cmd_massgift").split(";"));
}
@Override
2019-05-26 20:14:53 +02:00
public boolean handle(final GameClient gameClient, String[] params) throws Exception {
if (params.length >= 2) {
2019-03-18 02:22:00 +01:00
int itemId;
2019-05-26 20:14:53 +02:00
try {
2019-03-18 02:22:00 +01:00
itemId = Integer.valueOf(params[1]);
2019-05-26 20:14:53 +02:00
} catch (Exception e) {
2019-03-18 02:22:00 +01:00
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-05-26 20:14:53 +02:00
if (itemId <= 0) {
2019-03-18 02:22:00 +01:00
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-05-26 20:14:53 +02:00
if (baseItem == null) {
2019-03-18 02:22:00 +01:00
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-05-26 20:14:53 +02:00
if (params.length > 2) {
for (int i = 2; i < params.length; i++) {
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
2020-04-23 19:08:37 +02:00
Emulator.getThreading().run(() -> {
for (Map.Entry<Integer, Habbo> set : Emulator.getGameEnvironment().getHabboManager().getOnlineHabbos().entrySet()) {
Habbo habbo = set.getValue();
2018-07-06 15:30:00 +02:00
2020-04-23 19:08:37 +02:00
HabboItem item = Emulator.getGameEnvironment().getItemManager().createItem(0, baseItem, 0, 0, "");
2018-07-06 15:30:00 +02:00
2020-04-23 19:08:37 +02: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
2020-04-23 19:08:37 +02:00
String extraData = "1\t" + item.getId();
extraData += "\t0\t0\t0\t" + finalMessage + "\t0\t0";
2018-07-06 15:30:00 +02:00
2020-04-23 19:08:37 +02:00
Emulator.getGameEnvironment().getItemManager().createGift(habbo.getHabboInfo().getUsername(), giftItem, extraData, 0, 0);
2018-07-06 15:30:00 +02:00
2020-04-23 19:08:37 +02:00
habbo.getClient().sendResponse(new InventoryRefreshComposer());
habbo.getClient().sendResponse(giftNotificiationMessage);
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;
}
}