2024-09-18 18:15:12 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
2024-09-20 17:42:55 +02:00
|
|
|
// Pixel: LibGdx Backend.
|
2024-09-18 18:15:12 +02:00
|
|
|
// 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;
|
|
|
|
|
2024-10-12 08:00:53 +02:00
|
|
|
import com.pixelgamelibrary.backend.libgdx.files.StorageFactory;
|
|
|
|
import com.pixelgamelibrary.api.files.Storage;
|
2024-09-18 18:15:12 +02:00
|
|
|
import com.pixelgamelibrary.api.interfaces.Files;
|
2024-10-12 08:00:53 +02:00
|
|
|
import com.pixelgamelibrary.backend.libgdx.files.AssetsLibGDXStorage;
|
2024-09-18 18:15:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author robertvokac
|
|
|
|
*/
|
|
|
|
public class FilesLibGDXImpl implements Files {
|
|
|
|
Storage assetsStorage = null;
|
|
|
|
|
|
|
|
@Override
|
2024-10-07 17:36:17 +02:00
|
|
|
public Storage localStorage() {
|
2024-09-18 18:15:12 +02:00
|
|
|
return StorageFactory.getStorage();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2024-10-07 17:36:17 +02:00
|
|
|
public Storage assetsStorage() {
|
2024-09-18 18:15:12 +02:00
|
|
|
if(assetsStorage == null) {
|
|
|
|
assetsStorage = new AssetsLibGDXStorage();
|
|
|
|
}
|
|
|
|
return assetsStorage; }
|
|
|
|
|
|
|
|
@Override
|
2024-10-07 17:36:17 +02:00
|
|
|
public Storage externalStorage() {
|
2024-09-18 18:15:12 +02:00
|
|
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2024-10-07 17:36:17 +02:00
|
|
|
public Storage relativeStorage() {
|
2024-09-18 18:15:12 +02:00
|
|
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2024-10-07 17:36:17 +02:00
|
|
|
public Storage absoluteStorage() {
|
2024-09-18 18:15:12 +02:00
|
|
|
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2024-10-07 17:36:17 +02:00
|
|
|
public Storage tmpStorage() {
|
2024-09-18 18:15:12 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|