123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * L2J Server is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.network.serverpackets;
- import java.util.ArrayList;
- import java.util.List;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.NpcStringId;
- import com.l2jserver.gameserver.network.SystemMessageId;
- public final class CreatureSay extends L2GameServerPacket
- {
- private final int _objectId;
- private final int _textType;
- private String _charName = null;
- private int _charId = 0;
- private String _text = null;
- private int _npcString = -1;
- private List<String> _parameters;
-
- /**
- * @param objectId
- * @param messageType
- * @param charName
- * @param text
- */
- public CreatureSay(int objectId, int messageType, String charName, String text)
- {
- _objectId = objectId;
- _textType = messageType;
- _charName = charName;
- _text = text;
- }
-
- public CreatureSay(int objectId, int messageType, int charId, NpcStringId npcString)
- {
- _objectId = objectId;
- _textType = messageType;
- _charId = charId;
- _npcString = npcString.getId();
- }
-
- public CreatureSay(int objectId, int messageType, String charName, NpcStringId npcString)
- {
- _objectId = objectId;
- _textType = messageType;
- _charName = charName;
- _npcString = npcString.getId();
- }
-
- public CreatureSay(int objectId, int messageType, int charId, SystemMessageId sysString)
- {
- _objectId = objectId;
- _textType = messageType;
- _charId = charId;
- _npcString = sysString.getId();
- }
-
- /**
- * String parameter for argument S1,S2,.. in npcstring-e.dat
- * @param text
- */
- public void addStringParameter(String text)
- {
- if (_parameters == null)
- {
- _parameters = new ArrayList<>();
- }
- _parameters.add(text);
- }
-
- @Override
- protected final void writeImpl()
- {
- writeC(0x4a);
- writeD(_objectId);
- writeD(_textType);
- if (_charName != null)
- {
- writeS(_charName);
- }
- else
- {
- writeD(_charId);
- }
- writeD(_npcString); // High Five NPCString ID
- if (_text != null)
- {
- writeS(_text);
- }
- else if (_parameters != null)
- {
- for (String s : _parameters)
- {
- writeS(s);
- }
- }
- }
-
- @Override
- public final void runImpl()
- {
- L2PcInstance _pci = getClient().getActiveChar();
- if (_pci != null)
- {
- _pci.broadcastSnoop(_textType, _charName, _text);
- }
- }
- }
|