Examples of adtChecker


Examples of starlight.taliis.helpers.adtChecker

    if(e.getSource()==miCheck) {
      openedFile os = fm.getActiveFile();
      if(os.obj instanceof adt) {
        adt f = (adt)os.obj;
       
        adtChecker check = new adtChecker(f);
        check.check();
      }
    }
  }
View Full Code Here

Examples of starlight.taliis.helpers.adtChecker

   */
  main() {
    obj = new adt();
   
    // setup some helpers
    check = new adtChecker(obj);
    adtCoordHelper cordh = new adtCoordHelper(obj);
    adtObjHelper objh = new adtObjHelper(obj);
   
    // Add some Textures
    int texID = obj.mtex.addString("Tileset\\SilverPine\\SilverPineDirt.blp");
View Full Code Here

Examples of starlight.taliis.helpers.adtChecker

      tmp.put(bb);
      tmp.position(0);
     
    // init adt file
      obj = new adt(tmp);
      check = new adtChecker(obj);
     
    // clean up
      fc.close();
      fis.close();
     
View Full Code Here

Examples of starlight.taliis.helpers.adtChecker

      objh.generateAppeareances();
     
      o.render();
     
      // check
      adtChecker check = new adtChecker((adt)o);
    /*  if(*/check.check();/*==0) {*/
        fileLoader.saveBuffer(o.buff , f.f.getAbsolutePath());
        return 1;
    //  } else return -2;
    }
    return -1;
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.