84 lines
3.2 KiB
Java
84 lines
3.2 KiB
Java
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
// Pixel: Game library.
|
||
|
// 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
|
||
|
// <https://www.gnu.org/licenses/> 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.storage.StorageFactory;
|
||
|
import com.pixelgamelibrary.api.storage.Storage;
|
||
|
import com.pixelgamelibrary.api.interfaces.Files;
|
||
|
import com.pixelgamelibrary.backend.libgdx.assets.AssetsLibGDXStorage;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author robertvokac
|
||
|
*/
|
||
|
public class FilesLibGDXImpl implements Files {
|
||
|
Storage assetsStorage = null;
|
||
|
|
||
|
@Override
|
||
|
public Storage local() {
|
||
|
return StorageFactory.getStorage();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Storage assets() {
|
||
|
if(assetsStorage == null) {
|
||
|
assetsStorage = new AssetsLibGDXStorage();
|
||
|
}
|
||
|
return assetsStorage; }
|
||
|
|
||
|
@Override
|
||
|
public Storage external() {
|
||
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Storage relative(String absolutePath) {
|
||
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Storage absolute() {
|
||
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Storage tmp() {
|
||
|
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
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|