/******************************************************************************* * Copyright (C) 2013 JMaNGOS <http://jmangos.org/> * * This program 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 2 of the License, or (at your * option) any later version. * * This program 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 org.jmangos.tools.adt.chunks.root; import java.nio.ByteBuffer; import java.nio.charset.CharacterCodingException; import java.nio.charset.Charset; import java.nio.charset.CharsetDecoder; import java.util.ArrayList; import org.jmangos.tools.adt.chunks.ADTChunk; public class MTEXChunk extends ADTChunk { final static int localOffset = new MTEXChunk().size(); Object[] filename; @Override public ADTChunk reads(final ByteBuffer bb, final int offset, final long size) { final byte[] tsring = new byte[2024]; final ArrayList<String> tstr = new ArrayList<String>(); final CharsetDecoder decoder = Charset.forName("UTF-8").newDecoder(); setGlobalOffcet(offset + size + HEADERSIZE); setByteBuffer(bb, offset); int reading = 0; int si = 0; while ((size - reading) > 0) { int i = 0; for (; (tsring[i] = getByteBuffer().get(offset + HEADERSIZE + i + si)) != 0; i++) { reading++; } try { tstr.add(decoder.decode(ByteBuffer.wrap(tsring, 0, i)).toString()); } catch (final CharacterCodingException e) { e.printStackTrace(); } si = ++reading; } this.filename = tstr.toArray(); return this; } private String getAllName() { String tmp = ""; for (final Object element : this.filename) { tmp += "\n" + element; } return tmp; } @Override public String toString() { return "[MTEXChunk] filename: " + getAllName(); } }