Package org.terasology.persistence.internal

Source Code of org.terasology.persistence.internal.StoragePathProvider

/*
* Copyright 2014 MovingBlocks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.terasology.persistence.internal;

import org.terasology.engine.TerasologyConstants;
import org.terasology.game.GameManifest;
import org.terasology.math.Vector3i;

import java.nio.file.Path;

/**
* @author Florian <florian@fkoeberle.de>
*/
public class StoragePathProvider {
    private static final String PLAYERS_PATH = "players";
    private static final String WORLDS_PATH = "worlds";
    private static final String PLAYER_STORE_EXTENSION = ".player";
    private static final String GLOBAL_ENTITY_STORE = "global.dat";
    private static final String UNFINISHED_SAVE_TRANSACTION = "unfinished-save-transaction";
    private static final String UNMERGED_CHANGED = "unmerged-changes";
    private static final int CHUNK_ZIP_DIM = 32;

    private final Path storagePathDirectory;
    private final Path playersPath;
    private final Path worldsPath;
    private Path worldPath;
    private Path globalEntityStorePath;
    private Path unfinishedSaveTransactionPath;
    private Path unmergedChangesPath;


    public StoragePathProvider(Path storagePathDirectory) {
        this.storagePathDirectory = storagePathDirectory;
        this.playersPath = storagePathDirectory.resolve(PLAYERS_PATH);
        this.worldsPath = storagePathDirectory.resolve(WORLDS_PATH);
        this.worldPath = worldsPath.resolve(TerasologyConstants.MAIN_WORLD);
        this.globalEntityStorePath = storagePathDirectory.resolve(GLOBAL_ENTITY_STORE);
        this.unfinishedSaveTransactionPath = storagePathDirectory.resolve(UNFINISHED_SAVE_TRANSACTION);
        this.unmergedChangesPath = storagePathDirectory.resolve(UNMERGED_CHANGED);
    }


    public Path getPlayersPath() {
        return playersPath;
    }


    public Path getPlayersTempPath() {
        return unfinishedSaveTransactionPath.resolve(PLAYERS_PATH);
    }

    public Path getWorldsPath() {
        return worldsPath;
    }

    public Path getPlayerFilePath(String playerId) {
        return playersPath.resolve(playerId + PLAYER_STORE_EXTENSION);
    }

    public Path getPlayerFileTempPath(String playerId) {
        return getPlayersTempPath().resolve(playerId + PLAYER_STORE_EXTENSION);
    }

    public Path getWorldPath() {
        return worldPath;
    }

    public Path getWorldTempPath() {
        return unfinishedSaveTransactionPath.resolve(WORLDS_PATH).resolve(TerasologyConstants.MAIN_WORLD);
    }

    public Path getChunkZipPath(Vector3i chunkZipPos) {
        return worldPath.resolve(getChunkZipFilename(chunkZipPos));
    }


    public Path getChunkZipTempPath(Vector3i chunkZipPos) {
        return getWorldTempPath().resolve(getChunkZipFilename(chunkZipPos));
    }

    public Path getGlobalEntityStorePath() {
        return globalEntityStorePath;
    }

    public Path getGlobalEntityStoreTempPath() {
        return unfinishedSaveTransactionPath.resolve(GLOBAL_ENTITY_STORE);
    }

    public String getChunkFilename(Vector3i pos) {
        return String.format("%d.%d.%d.chunk", pos.x, pos.y, pos.z);
    }


    private String getChunkZipFilename(Vector3i pos) {
        return String.format("%d.%d.%d.chunks.zip", pos.x, pos.y, pos.z);
    }

    public Vector3i getChunkZipPosition(Vector3i chunkPos) {
        Vector3i result = new Vector3i(chunkPos);
        result.divide(CHUNK_ZIP_DIM);
        if (chunkPos.x < 0) {
            result.x -= 1;
        }
        if (chunkPos.y < 0) {
            result.y -= 1;
        }
        if (chunkPos.z < 0) {
            result.z -= 1;
        }
        return result;
    }

    public Path getChunkPath(Vector3i chunkPos) {
        return worldsPath.resolve(getChunkFilename(chunkPos));
    }

    public Path getChunkTempPath(Vector3i chunkPos) {
        return getWorldTempPath().resolve(getChunkFilename(chunkPos));
    }


    public Path getGameManifestTempPath() {
        return unfinishedSaveTransactionPath.resolve(GameManifest.DEFAULT_FILE_NAME);
    }

    public Path getUnfinishedSaveTransactionPath() {
        return unfinishedSaveTransactionPath;
    }

    public Path getUnmergedChangesPath() {
        return unmergedChangesPath;
    }

    public Path getStoragePathDirectory() {
        return storagePathDirectory;
    }
}
TOP

Related Classes of org.terasology.persistence.internal.StoragePathProvider

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.