Beispiel #1
0
 public void save(PacketOutputStream ps)
 {
     ps.saveInt(tableid);
     ps.saveByte(seat);
     ps.saveUnsignedByte((byte)status);
     ps.saveInt(code);
 }
Beispiel #2
0
 public void save(PacketOutputStream ps)
 {
     ps.saveInt(tableid);
     ps.saveInt(pid);
     ps.saveString(nick);
     ps.saveByte(seat);
 }
Beispiel #3
0
 public void save(PacketOutputStream ps)
 {
     ps.saveInt(tableid);
     ps.saveByte(seat);
     ps.saveInt(mttid);
     snapshot.save(ps);
 }
 public void save(PacketOutputStream ps)
 {
     ps.saveInt(inviter);
     ps.saveString(screenname);
     ps.saveInt(tableid);
     ps.saveByte(seat);
 }
Beispiel #5
0
 public void save(PacketOutputStream ps)
 {
     ps.saveString(key);
     ps.saveByte(type);
     ps.saveInt(value.Length);
     ps.saveArray(value);
 }
 public void save(PacketOutputStream ps)
 {
     ps.saveInt(pid);
     ps.saveInt(seq);
     ps.saveString(service);
     ps.saveByte(idtype);
     ps.saveInt(servicedata.Length);
     //ps.saveString(servicedata);
     ps.saveArray(servicedata);
     ps.saveInt(fixed_miss);
 }
Beispiel #7
0
 public void save(PacketOutputStream ps)
 {
     ps.saveInt(tableid);
     ps.saveByte(seat);
     if (parameters == null)
     {
         ps.saveInt(0);
     }
     else
     {
         Param[] paramArray = parameters.ToArray();
         ps.saveInt(paramArray.Length);
         foreach (Param paramObject in paramArray)
         {
             paramObject.save(ps);
         }
     }
 }
Beispiel #8
0
 public void save(PacketOutputStream ps)
 {
     ps.saveByte(func);
     ps.saveInt(payload.Length);
     ps.saveArray(payload);
 }
Beispiel #9
0
 public void save(PacketOutputStream ps)
 {
     param.save(ps);
     ps.saveByte(op);
 }
Beispiel #10
0
 public void save(PacketOutputStream ps)
 {
     ps.saveInt(seq);
     ps.saveInt(tableid);
     ps.saveByte(seat);
 }
Beispiel #11
0
 public void save(PacketOutputStream ps)
 {
     ps.saveByte(cmd);
     ps.saveByte(error);
 }
Beispiel #12
0
 public void save(PacketOutputStream ps)
 {
     ps.saveByte(cmd);
     ps.saveInt(extra);
 }