All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sk89q.worldedit.world.storage.ZippedMcRegionChunkStore Maven / Gradle / Ivy

Go to download

Blazingly fast Minecraft world manipulation for artists, builders and everyone else.

There is a newer version: 2.9.2
Show newest version
/*
 * WorldEdit, a Minecraft world manipulation toolkit
 * Copyright (C) sk89q 
 * Copyright (C) WorldEdit team and contributors
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */

// $Id$

package com.sk89q.worldedit.world.storage;

import com.sk89q.worldedit.world.DataException;

import javax.annotation.Nullable;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.regex.Pattern;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;

/**
 * Represents the chunk store used by Minecraft alpha but zipped.
 */
public class ZippedMcRegionChunkStore extends McRegionChunkStore {

    protected File zipFile;
    protected ZipFile zip;
    protected String folder;

    /**
     * Create an instance. The folder argument lets you choose a folder or
     * path to look into in the ZIP for the files. Use a blank string for
     * the folder to not look into a subdirectory.
     *
     * @param zipFile the ZIP file
     * @param folder  the folder
     * @throws IOException  if there is an error opening the zip
     * @throws ZipException if there is an error opening the zip
     */
    public ZippedMcRegionChunkStore(File zipFile, String folder) throws IOException, ZipException {
        this.zipFile = zipFile;
        this.folder = folder;

        zip = new ZipFile(zipFile);
    }

    /**
     * Create an instance. The sub-folder containing the chunk data will
     * be detected.
     *
     * @param zipFile the ZIP file
     * @throws IOException  if there is an error opening the zip
     * @throws ZipException if there is an error opening the zip
     */
    public ZippedMcRegionChunkStore(File zipFile) throws IOException, ZipException {
        this.zipFile = zipFile;

        zip = new ZipFile(zipFile);
    }

    @Override
    //FAWE start - biome and entity restore
    protected InputStream getInputStream(String name, String worldName, @Nullable String folderOverride) throws IOException,
            DataException {
        // Detect subfolder for the world's files
        if (folder != null) {
            if (!folder.isEmpty()) {
                //FAWE end
                name = folder + "/" + name;
                if (folderOverride != null) {
                    name = name.replace("region", folderOverride);
                }
            }
        } else {
            Pattern pattern = Pattern.compile(".*\\.mc[ra]$");
            Pattern worldPattern = Pattern.compile(worldName + "[\\\\/].*");
            for (Enumeration e = zip.entries(); e.hasMoreElements(); ) {
                ZipEntry testEntry = e.nextElement();
                // Check for world
                String entryName = testEntry.getName();
                if (worldPattern.matcher(entryName).matches()) {
                    if (pattern.matcher(entryName).matches()) { // does entry end in .mca
                        int endIndex = entryName.lastIndexOf('/');
                        if (endIndex < 0) {
                            endIndex = entryName.lastIndexOf('\\');
                        }
                        folder = entryName.substring(0, endIndex);
                        //FAWE start - biome and entity restore
                        if (folderOverride != null && folder.endsWith(folderOverride)) {
                            name = folder + "/" + name;
                            break;
                        }
                        //FAWE end
                        if (folder.endsWith("poi") || folder.endsWith("entities")) {
                            continue;
                        }
                        name = folder + "/" + name;
                        break;
                    }

                }
            }

            // Check if world is found
            if (folder == null) {
                throw new MissingWorldException("Target world is not present in ZIP.", worldName);
            }
        }

        ZipEntry entry = getEntry(name);
        if (entry == null) {
            if (name.endsWith(".mca")) { // try old mcr format
                entry = getEntry(name.replace(".mca", ".mcr"));
                if (entry == null) {
                    throw new MissingChunkException();
                }
            } else {
                throw new MissingChunkException();
            }
        }
        try {
            return zip.getInputStream(entry);
        } catch (ZipException e) {
            throw new IOException("Failed to read " + name + " in ZIP");
        }
    }

    /**
     * Get an entry from the ZIP, trying both types of slashes.
     *
     * @param file the file
     * @return a ZIP entry
     */
    private ZipEntry getEntry(String file) {
        ZipEntry entry = zip.getEntry(file);
        if (entry != null) {
            return entry;
        }
        return zip.getEntry(file.replace("/", "\\"));
    }

    @Override
    public void close() throws IOException {
        zip.close();
    }

    @Override
    public boolean isValid() {
        for (Enumeration e = zip.entries(); e.hasMoreElements(); ) {

            ZipEntry testEntry = e.nextElement();

            if (testEntry.getName().matches(".*\\.mcr$") || testEntry.getName().matches(".*\\.mca$")) {
                return true;
            }
        }

        return false;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy