/* * This file is part of aion-emu <aion-emu.com>. * * aion-emu 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. * * aion-emu 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 aion-emu. If not, see <http://www.gnu.org/licenses/>. */ package com.aionemu.commons.network.packet; import java.nio.ByteBuffer; /** * Base class for every Server Packet * * @author -Nemesiss- */ public abstract class BaseServerPacket extends BasePacket { /** * Constructs a new server packet with specified id. * * @param opcode * packet opcode. */ protected BaseServerPacket(int opcode) { super(PacketType.SERVER, opcode); } /** * Constructs a new server packet.<br> * If this constructor was used, then {@link #setOpcode(int)} must be called */ protected BaseServerPacket() { super(PacketType.SERVER); } /** * Write int to buffer. * * @param buf * @param value */ protected final void writeD(ByteBuffer buf, int value) { buf.putInt(value); } /** * Write short to buffer. * * @param buf * @param value */ protected final void writeH(ByteBuffer buf, int value) { buf.putShort((short) value); } /** * Write byte to buffer. * * @param buf * @param value */ protected final void writeC(ByteBuffer buf, int value) { buf.put((byte) value); } /** * Write double to buffer. * * @param buf * @param value */ protected final void writeDF(ByteBuffer buf, double value) { buf.putDouble(value); } /** * Write float to buffer. * * @param buf * @param value */ protected final void writeF(ByteBuffer buf, float value) { buf.putFloat(value); } /** * Write long to buffer. * * @param buf * @param value */ protected final void writeQ(ByteBuffer buf, long value) { buf.putLong(value); } /** * Write String to buffer * * @param buf * @param text */ protected final void writeS(ByteBuffer buf, String text) { if(text == null) { buf.putChar('\000'); } else { final int len = text.length(); for(int i = 0; i < len; i++) buf.putChar(text.charAt(i)); buf.putChar('\000'); } } /** * Write byte array to buffer. * * @param buf * @param data */ protected final void writeB(ByteBuffer buf, byte[] data) { buf.put(data); } }