Search in sources :

Example 1 with Marker

use of com.voxelgameslib.voxelgameslib.map.Marker in project VoxelGamesLibv2 by VoxelGamesLib.

the class WorldHandler method loadWorld.

/**
 * Loads a world. Needs to copy the file from the repo, unzip it and let the implementation load it <br><b>Always
 * needs to call super! Super needs to be called first (because it copies the world)</b>
 *
 * @param map    the map that should be loaded
 * @param gameid the id of the game this map belongs to
 * @return the loaded world
 * @throws WorldException something goes wrong
 */
@Nonnull
public World loadWorld(@Nonnull Map map, @Nonnull UUID gameid, boolean replaceMarkers) {
    map.load(gameid, "TEMP_" + map.getWorldName() + "_" + gameid.toString().split("-")[0]);
    log.finer("Loading map " + map.getInfo().getName() + " as " + map.getLoadedName(gameid));
    File file = new File(worldContainer, map.getLoadedName(gameid));
    try {
        ZipFile zip = new ZipFile(new File(worldsFolder, map.getWorldName() + ".zip"));
        zip.extractAll(file.getAbsolutePath());
        FileUtils.delete(new File(file, "uid.dat"));
    } catch (ZipException e) {
        throw new WorldException("Could not unzip world " + map.getInfo().getName() + ".", e);
    }
    World world = loadLocalWorld(map.getLoadedName(gameid));
    if (replaceMarkers) {
        replaceMarkers(world, map);
    }
    // load chunks based on markers
    int i = 0;
    int a = 0;
    for (Marker m : map.getMarkers()) {
        Location l = m.getLoc().toLocation(world.getName());
        if (!l.getChunk().isLoaded() || !l.getWorld().isChunkLoaded(l.getChunk())) {
            l.getChunk().load();
            l.getWorld().loadChunk(l.getChunk());
            i++;
        } else {
            a++;
        }
    }
    log.finer("Loaded " + i + " chunks and ignored " + a + " already loaded");
    return world;
}
Also used : ZipFile(net.lingala.zip4j.core.ZipFile) WorldException(com.voxelgameslib.voxelgameslib.exception.WorldException) ZipException(net.lingala.zip4j.exception.ZipException) Marker(com.voxelgameslib.voxelgameslib.map.Marker) World(org.bukkit.World) ZipFile(net.lingala.zip4j.core.ZipFile) File(java.io.File) Location(org.bukkit.Location) Nonnull(javax.annotation.Nonnull)

Aggregations

WorldException (com.voxelgameslib.voxelgameslib.exception.WorldException)1 Marker (com.voxelgameslib.voxelgameslib.map.Marker)1 File (java.io.File)1 Nonnull (javax.annotation.Nonnull)1 ZipFile (net.lingala.zip4j.core.ZipFile)1 ZipException (net.lingala.zip4j.exception.ZipException)1 Location (org.bukkit.Location)1 World (org.bukkit.World)1