mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-24 23:34:37 +01:00
* Put all of TitleSequenceManager into the same namespace * Move RideConstructionState into the OpenRCT2 namespace * Adopt existing namespaces into OpenRCT2 namespace This adds `using namespace OpenRCT2` to compilation units where appropriate, as a means to get the codebase to compile until these units have been placed in a namespace of their own.
139 lines
3.6 KiB
C++
139 lines
3.6 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2024 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#include "Path.hpp"
|
|
|
|
#include "../localisation/Language.h"
|
|
#include "../platform/Platform.h"
|
|
#include "../util/Util.h"
|
|
#include "File.h"
|
|
#include "FileSystem.hpp"
|
|
#include "Memory.hpp"
|
|
#include "String.hpp"
|
|
|
|
#include <iterator>
|
|
|
|
namespace OpenRCT2::Path
|
|
{
|
|
u8string Combine(u8string_view a, u8string_view b)
|
|
{
|
|
if (a.empty())
|
|
return u8string(b);
|
|
if (b.empty())
|
|
return u8string(a);
|
|
auto aEnd = a.back();
|
|
auto bBegin = b.front();
|
|
if (Platform::IsPathSeparator(aEnd))
|
|
{
|
|
if (Platform::IsPathSeparator(bBegin))
|
|
{
|
|
return u8string(a) + u8string(b.substr(1));
|
|
}
|
|
|
|
return u8string(a) + u8string(b);
|
|
}
|
|
|
|
if (Platform::IsPathSeparator(bBegin))
|
|
{
|
|
return u8string(a) + u8string(b);
|
|
}
|
|
|
|
return u8string(a) + PATH_SEPARATOR + u8string(b);
|
|
}
|
|
|
|
u8string GetDirectory(u8string_view path)
|
|
{
|
|
return fs::u8path(path).parent_path().u8string();
|
|
}
|
|
|
|
bool CreateDirectory(u8string_view path)
|
|
{
|
|
std::error_code ec;
|
|
fs::create_directories(fs::u8path(path), ec);
|
|
// create_directories returns false if the directory already exists, but the error code is zero.
|
|
return ec.value() == 0;
|
|
}
|
|
|
|
bool DirectoryExists(u8string_view path)
|
|
{
|
|
std::error_code ec;
|
|
const auto result = fs::is_directory(fs::u8path(path), ec);
|
|
return result && ec.value() == 0;
|
|
}
|
|
|
|
u8string GetFileName(u8string_view path)
|
|
{
|
|
return fs::u8path(path).filename().u8string();
|
|
}
|
|
|
|
u8string GetFileNameWithoutExtension(u8string_view path)
|
|
{
|
|
return fs::u8path(path).stem().u8string();
|
|
}
|
|
|
|
u8string GetExtension(u8string_view path)
|
|
{
|
|
return fs::u8path(path).extension().u8string();
|
|
}
|
|
|
|
u8string WithExtension(u8string_view path, u8string_view newExtension)
|
|
{
|
|
auto p = fs::u8path(path);
|
|
|
|
fs::path extensionWithDot;
|
|
if (!newExtension.empty() && newExtension.front() != '.')
|
|
{
|
|
extensionWithDot += ".";
|
|
}
|
|
extensionWithDot += fs::u8path(newExtension);
|
|
|
|
if (p.extension() != extensionWithDot)
|
|
{
|
|
p += extensionWithDot;
|
|
}
|
|
|
|
return p.u8string();
|
|
}
|
|
|
|
bool IsAbsolute(u8string_view path)
|
|
{
|
|
auto p = fs::u8path(path);
|
|
return p.is_absolute();
|
|
}
|
|
|
|
u8string GetAbsolute(u8string_view relative)
|
|
{
|
|
std::error_code ec;
|
|
return fs::absolute(fs::u8path(relative), ec).u8string();
|
|
}
|
|
|
|
u8string GetRelative(u8string_view path, u8string_view base)
|
|
{
|
|
std::error_code ec;
|
|
return fs::relative(fs::u8path(path), fs::u8path(base), ec).u8string();
|
|
}
|
|
|
|
bool Equals(u8string_view a, u8string_view b)
|
|
{
|
|
return Platform::ShouldIgnoreCase() ? String::IEquals(a, b) : String::Equals(a, b);
|
|
}
|
|
|
|
u8string ResolveCasing(u8string_view path)
|
|
{
|
|
return Platform::ResolveCasing(path, File::Exists(path));
|
|
}
|
|
|
|
bool DeleteDirectory(u8string_view path)
|
|
{
|
|
std::error_code ec;
|
|
const auto result = fs::remove_all(fs::u8path(path), ec);
|
|
return (result > 0) && ec.value() == 0;
|
|
}
|
|
} // namespace OpenRCT2::Path
|