Examples of ChunkManager


Examples of m33.entities.ChunkManager

  private int anchor;

  public Level(EntityManager entities) {
    rand = new Random();
    cm = new ChunkManager();
    em = entities;

    // Level size is fixed for now, it may become dynamic
    level = new char[1000][2000];
    anchor = 990;
View Full Code Here

Examples of net.lightstone.model.ChunkManager

   * generator.
   * @param service The chunk I/O service.
   * @param generator The world generator.
   */
  public World(ChunkIoService service, WorldGenerator generator) {
    chunks = new ChunkManager(service, generator);
  }
View Full Code Here

Examples of rakama.worldtools.io.ChunkManager

    protected void setDirectory(File directory) throws IOException
    {
        rootDirectory = findRootDirectory(directory);
        regionDirectory = findRegionDirectory(directory);
        access = ChunkAccess.createInstance(directory);
        manager = new ChunkManager(access, readOnly);
        canvas = new WorldCanvas(manager);
    }
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.