Examples of MAOF


Examples of starlight.taliis.core.chunks.wdl.MAOF

  public wdl(ByteBuffer databuffer) throws InvalidClassException, ChunkNotFoundException {
    super(databuffer);
   
    try {
      mver = new MVER(buff);
      maof = new MAOF(buff);
    } catch(ChunkNotFoundException e) {
      throw new InvalidClassException(e.getMessage());
    }
   
    mare = new MARE[4096];
View Full Code Here

Examples of starlight.taliis.core.chunks.wdl.MAOF

   * hightmaps for every tile
   * @throws ChunkNotFoundException
   */
  public wdl() throws ChunkNotFoundException {
    mver = new MVER();
    maof = new MAOF();
    mare = new MARE[4096];
    maho = new MAHO[4096];
    /*for(int x=0;x<64;x++){
      for(int y=0;y<64;y++){
        maof.setOffset(x, y, (4096*4+x*y*545*2+x*y*0x20));
 
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.