Examples of writeWord()


Examples of net.bnubot.util.BNetOutputStream.writeWord()

      ByteArrayOutputStream baos = new ByteArrayOutputStream();
      BNetOutputStream headerStream = new BNetOutputStream(baos);
    ) {
      Out.debug(IconsDotBniReader.class, "Writing " + f.getName());

      headerStream.writeWord(1); // BNI version
      headerStream.writeWord(0); // Alignment Padding (unused)
      headerStream.writeDWord(icons.length); // numIcons
      headerStream.writeDWord(-1); // dataOffset

      for(BNetIcon icon : icons) {
View Full Code Here

Examples of net.bnubot.util.BNetOutputStream.writeWord()

      BNetOutputStream headerStream = new BNetOutputStream(baos);
    ) {
      Out.debug(IconsDotBniReader.class, "Writing " + f.getName());

      headerStream.writeWord(1); // BNI version
      headerStream.writeWord(0); // Alignment Padding (unused)
      headerStream.writeDWord(icons.length); // numIcons
      headerStream.writeDWord(-1); // dataOffset

      for(BNetIcon icon : icons) {
        headerStream.writeDWord(icon.flags);
View Full Code Here

Examples of net.bnubot.util.BNetOutputStream.writeWord()

  public void sendPacket(OutputStream out) {
    byte data[] = ((ByteArrayOutputStream)this.out).toByteArray();
    ByteArrayOutputStream baos = new ByteArrayOutputStream();

    try (BNetOutputStream sckout = new BNetOutputStream(baos)) {
      sckout.writeWord(data.length + 3);
      sckout.writeByte(packetId.ordinal());
      sckout.write(data);
    } catch(IOException e) {
      Out.fatalException(e);
    }
View Full Code Here

Examples of net.bnubot.util.BNetOutputStream.writeWord()

    if(GlobalSettings.packetLog) {
      String msg = "RECV " + packetId.name();
      if(Out.isDebug()) {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        try (BNetOutputStream os = new BNetOutputStream(baos)) {
          os.writeWord(packetLength);
          os.writeByte(packetId.ordinal());
          os.write(data);
        }
        msg += "\n" + HexDump.hexDump(baos.toByteArray());
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.