mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 06:10:00 +01:00
39 lines
927 B
C++
39 lines
927 B
C++
#include "save_data_dialog.h"
|
|
#include "save_data_list_dialog.h"
|
|
|
|
#include <Emu/IdManager.h>
|
|
#include <Emu/RSX/GSRender.h>
|
|
|
|
s32 save_data_dialog::ShowSaveDataList(std::vector<SaveDataEntry>& save_entries, s32 focused, u32 op, vm::ptr<CellSaveDataListSet> listSet)
|
|
{
|
|
//TODO: Install native shell as an Emu callback
|
|
if (auto rsxthr = fxm::get<GSRender>())
|
|
{
|
|
if (auto native_dlg = rsxthr->shell_open_save_dialog())
|
|
{
|
|
auto result = native_dlg->show(save_entries, op, listSet);
|
|
if (result != rsx::overlays::user_interface::selection_code::error)
|
|
return result;
|
|
}
|
|
}
|
|
|
|
//Fall back to front-end GUI
|
|
atomic_t<bool> dlg_result(false);
|
|
atomic_t<s32> selection;
|
|
|
|
Emu.CallAfter([&]()
|
|
{
|
|
save_data_list_dialog sdid(save_entries, focused, op, listSet);
|
|
sdid.exec();
|
|
selection = sdid.GetSelection();
|
|
dlg_result = true;
|
|
});
|
|
|
|
while (!dlg_result)
|
|
{
|
|
thread_ctrl::wait_for(1000);
|
|
}
|
|
|
|
return selection.load();
|
|
}
|