migrate from std::filesystem::path to io::path (WIP)

This commit is contained in:
MihailRis
2025-01-30 22:23:13 +03:00
parent 1e22882284
commit e0314803c0
72 changed files with 1189 additions and 791 deletions
+6 -8
View File
@@ -1,14 +1,12 @@
#pragma once
#include <filesystem>
#include <glm/glm.hpp>
#include <memory>
#include <vector>
#include "typedefs.hpp"
#include "settings.hpp"
namespace fs = std::filesystem;
#include "io/fwd.hpp"
namespace audio {
/// @brief playing speaker uid
@@ -365,7 +363,7 @@ namespace audio {
/// @param headerOnly read header only
/// @throws std::runtime_error if I/O error ocurred or format is unknown
/// @return PCM audio data
std::unique_ptr<PCM> load_PCM(const fs::path& file, bool headerOnly);
std::unique_ptr<PCM> load_PCM(const io::path& file, bool headerOnly);
/// @brief Load sound from file
/// @param file audio file path
@@ -373,7 +371,7 @@ namespace audio {
/// Sound::getPCM
/// @throws std::runtime_error if I/O error ocurred or format is unknown
/// @return new Sound instance
std::unique_ptr<Sound> load_sound(const fs::path& file, bool keepPCM);
std::unique_ptr<Sound> load_sound(const io::path& file, bool keepPCM);
/// @brief Create new sound from PCM data
/// @param pcm PCM data
@@ -386,14 +384,14 @@ namespace audio {
/// @param file audio file path
/// @throws std::runtime_error if I/O error ocurred or format is unknown
/// @return new PCMStream instance
std::unique_ptr<PCMStream> open_PCM_stream(const fs::path& file);
std::unique_ptr<PCMStream> open_PCM_stream(const io::path& file);
/// @brief Open new audio stream from file
/// @param file audio file path
/// @param keepSource store PCMStream in stream to make it accessible with
/// Stream::getSource
/// @return new Stream instance
std::unique_ptr<Stream> open_stream(const fs::path& file, bool keepSource);
std::unique_ptr<Stream> open_stream(const io::path& file, bool keepSource);
/// @brief Open new audio stream from source
/// @param stream PCM data source
@@ -464,7 +462,7 @@ namespace audio {
/// @param channel channel index
/// @return speaker id or 0
speakerid_t play_stream(
const fs::path& file,
const io::path& file,
glm::vec3 position,
bool relative,
float volume,