2023-01-05 17:43:20 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
template<class T, class... Args>
|
|
|
|
std::unique_ptr<T> make_unique_nothrow(Args &&...args) noexcept(noexcept(T(std::forward<Args>(args)...))) {
|
|
|
|
return std::unique_ptr<T>(new (std::nothrow) T(std::forward<Args>(args)...));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
inline typename std::unique_ptr<T> make_unique_nothrow(size_t num) noexcept {
|
|
|
|
return std::unique_ptr<T>(new (std::nothrow) std::remove_extent_t<T>[num]());
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T, class... Args>
|
|
|
|
std::shared_ptr<T> make_shared_nothrow(Args &&...args) noexcept(noexcept(T(std::forward<Args>(args)...))) {
|
|
|
|
return std::shared_ptr<T>(new (std::nothrow) T(std::forward<Args>(args)...));
|
|
|
|
}
|
2023-04-02 11:59:16 +02:00
|
|
|
|
2023-06-06 10:29:53 +02:00
|
|
|
template<typename... Args>
|
|
|
|
std::string string_format(const std::string &format, Args... args) {
|
|
|
|
int size_s = std::snprintf(nullptr, 0, format.c_str(), args...) + 1; // Extra space for '\0'
|
|
|
|
auto size = static_cast<size_t>(size_s);
|
|
|
|
auto buf = std::make_unique<char[]>(size);
|
|
|
|
std::snprintf(buf.get(), size, format.c_str(), args...);
|
|
|
|
return std::string(buf.get(), buf.get() + size - 1); // We don't want the '\0' inside
|
|
|
|
}
|
|
|
|
|
2023-04-02 11:59:16 +02:00
|
|
|
bool GetTitleIdOfDisc(uint64_t *titleId, bool *discPresent);
|