/////////////////////////////////////////////////////////////////////////////////////////////// // Pixel: LibGdx Backend. // Copyright (C) 2024 the original author or authors. // // 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 // or write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. /////////////////////////////////////////////////////////////////////////////////////////////// package com.pixelgamelibrary.backend.libgdx; import com.pixelgamelibrary.backend.libgdx.files.FileSystemFactory; import com.pixelgamelibrary.api.interfaces.Files; import com.pixelgamelibrary.backend.libgdx.files.AssetsLibGDXFileSystem; import com.pixelgamelibrary.api.files.FileSystem; /** * * @author robertvokac */ public class FilesLibGDXImpl implements Files { FileSystem assetsFileSystem = null; @Override public FileSystem localFileSystem() { return FileSystemFactory.getFileSystem(); } @Override public FileSystem assetsFileSystem() { if(assetsFileSystem == null) { assetsFileSystem = new AssetsLibGDXFileSystem(); } return assetsFileSystem; } @Override public FileSystem externalFileSystem() { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } @Override public FileSystem relativeFileSystem() { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } @Override public FileSystem absoluteFileSystem() { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } @Override public FileSystem tmpFileSystem() { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } @Override public boolean isExternalStorageAvailable() { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } @Override public String getLocalStoragePath() { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } @Override public String getExternalStoragePath() { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } }