Core: Generate screenshot name with timestamps instead of only increasing numbers
This commit is contained in:
parent
71ff97cf1c
commit
ff8f978eaf
|
@ -13,6 +13,7 @@
|
||||||
#include <variant>
|
#include <variant>
|
||||||
|
|
||||||
#include <fmt/format.h>
|
#include <fmt/format.h>
|
||||||
|
#include <fmt/time.h>
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
@ -677,15 +678,20 @@ static std::string GenerateScreenshotFolderPath()
|
||||||
|
|
||||||
static std::string GenerateScreenshotName()
|
static std::string GenerateScreenshotName()
|
||||||
{
|
{
|
||||||
std::string path = GenerateScreenshotFolderPath();
|
|
||||||
|
|
||||||
// append gameId, path only contains the folder here.
|
// append gameId, path only contains the folder here.
|
||||||
path += SConfig::GetInstance().GetGameID();
|
const std::string path_prefix =
|
||||||
|
GenerateScreenshotFolderPath() + SConfig::GetInstance().GetGameID();
|
||||||
|
|
||||||
std::string name;
|
const std::time_t cur_time = std::time(nullptr);
|
||||||
for (int i = 1; File::Exists(name = fmt::format("{}-{}.png", path, i)); ++i)
|
const std::string base_name =
|
||||||
|
fmt::format("{}_{:%Y-%m-%d_%H-%M-%S}", path_prefix, *std::localtime(&cur_time));
|
||||||
|
|
||||||
|
// First try a filename without any suffixes, if already exists then append increasing numbers
|
||||||
|
std::string name = fmt::format("{}.png", base_name);
|
||||||
|
if (File::Exists(name))
|
||||||
{
|
{
|
||||||
// TODO?
|
for (u32 i = 1; File::Exists(name = fmt::format("{}_{}.png", base_name, i)); ++i)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
return name;
|
return name;
|
||||||
|
@ -709,8 +715,8 @@ void SaveScreenShot(std::string_view name, bool wait_for_completion)
|
||||||
|
|
||||||
SetState(State::Paused);
|
SetState(State::Paused);
|
||||||
|
|
||||||
const std::string path = fmt::format("{}{}.png", GenerateScreenshotFolderPath(), name);
|
g_renderer->SaveScreenshot(fmt::format("{}{}.png", GenerateScreenshotFolderPath(), name),
|
||||||
g_renderer->SaveScreenshot(path, wait_for_completion);
|
wait_for_completion);
|
||||||
|
|
||||||
if (!bPaused)
|
if (!bPaused)
|
||||||
SetState(State::Running);
|
SetState(State::Running);
|
||||||
|
|
Loading…
Reference in New Issue