mirror of
https://github.com/visualboyadvance-m/visualboyadvance-m
synced 2025-10-05 23:52:49 +02:00
Remove the SFML external dependency, include the SFML 3.0.1 system and network libraries in third_party and adjust the build code, tools and documentation accordingly. Signed-off-by: Rafael Kitover <rkitover@gmail.com>
59 lines
2.1 KiB
C++
59 lines
2.1 KiB
C++
////////////////////////////////////////////////////////////
|
|
//
|
|
// SFML - Simple and Fast Multimedia Library
|
|
// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
|
|
//
|
|
// This software is provided 'as-is', without any express or implied warranty.
|
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
|
//
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
// including commercial applications, and to alter it and redistribute it freely,
|
|
// subject to the following restrictions:
|
|
//
|
|
// 1. The origin of this software must not be misrepresented;
|
|
// you must not claim that you wrote the original software.
|
|
// If you use this software in a product, an acknowledgment
|
|
// in the product documentation would be appreciated but is not required.
|
|
//
|
|
// 2. Altered source versions must be plainly marked as such,
|
|
// and must not be misrepresented as being the original software.
|
|
//
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
|
//
|
|
////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
////////////////////////////////////////////////////////////
|
|
// Headers
|
|
////////////////////////////////////////////////////////////
|
|
#include <SFML/System/Export.hpp>
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
#include <cstddef>
|
|
#include <cstdio>
|
|
|
|
|
|
namespace sf
|
|
{
|
|
[[nodiscard]] SFML_SYSTEM_API std::string toLower(std::string str);
|
|
[[nodiscard]] SFML_SYSTEM_API std::string formatDebugPathInfo(const std::filesystem::path& path);
|
|
|
|
// Convert byte sequence into integer
|
|
// toInteger<int>(0x12, 0x34, 0x56) == 0x563412
|
|
template <typename IntegerType, typename... Bytes>
|
|
[[nodiscard]] constexpr IntegerType toInteger(Bytes... byte)
|
|
{
|
|
static_assert(sizeof(IntegerType) >= sizeof...(Bytes), "IntegerType not large enough to contain bytes");
|
|
|
|
IntegerType integer = 0;
|
|
std::size_t index = 0;
|
|
return ((integer |= static_cast<IntegerType>(static_cast<IntegerType>(byte) << 8 * index++)), ...);
|
|
}
|
|
|
|
[[nodiscard]] SFML_SYSTEM_API std::FILE* openFile(const std::filesystem::path& filename, std::string_view mode);
|
|
} // namespace sf
|