This repository has been archived on 2025-03-13. You can view files and clone it, but cannot push or open issues or pull requests.

84 lines
3.3 KiB
Java
Raw Normal View History

2024-09-18 18:15:12 +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 09:11:14 +02:00
import com.pixelgamelibrary.backend.libgdx.files.FileSystemFactory;
2024-09-18 18:15:12 +02:00
import com.pixelgamelibrary.api.interfaces.Files;
2024-10-12 09:11:14 +02:00
import com.pixelgamelibrary.backend.libgdx.files.AssetsLibGDXFileSystem;
import com.pixelgamelibrary.api.files.FileSystem;
2024-09-18 18:15:12 +02:00
/**
*
* @author robertvokac
*/
public class FilesLibGDXImpl implements Files {
2024-10-12 09:11:14 +02:00
FileSystem assetsFileSystem = null;
2024-09-18 18:15:12 +02:00
@Override
2024-10-12 09:11:14 +02:00
public FileSystem localFileSystem() {
return FileSystemFactory.getFileSystem();
2024-09-18 18:15:12 +02:00
}
@Override
2024-10-12 09:11:14 +02:00
public FileSystem assetsFileSystem() {
if(assetsFileSystem == null) {
assetsFileSystem = new AssetsLibGDXFileSystem();
2024-09-18 18:15:12 +02:00
}
2024-10-12 09:11:14 +02:00
return assetsFileSystem; }
2024-09-18 18:15:12 +02:00
@Override
2024-10-12 09:11:14 +02:00
public FileSystem externalFileSystem() {
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-12 09:11:14 +02:00
public FileSystem relativeFileSystem() {
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-12 09:11:14 +02:00
public FileSystem absoluteFileSystem() {
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-12 09:11:14 +02:00
public FileSystem tmpFileSystem() {
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
}
}