mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-16 15:43:14 +00:00
* savedata: rewrite save memory functions to handle slot id & better backup management * savedata: auto-restore backup if needed * safe save backup shutdown replaced exit by quick_exit
121 lines
3.4 KiB
C++
121 lines
3.4 KiB
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
#include "assert.h"
|
|
#include "bit_field.h"
|
|
#include "singleton.h"
|
|
#include "types.h"
|
|
|
|
namespace Core {
|
|
class Emulator;
|
|
}
|
|
|
|
namespace Common {
|
|
|
|
union PSFAttributes {
|
|
/// Supports initial user's logout
|
|
BitField<0, 1, u32> support_initial_user_logout;
|
|
/// Enter button for the common dialog is cross.
|
|
BitField<1, 1, u32> enter_button_cross;
|
|
/// Warning dialog for PS Move is displayed in the options menu.
|
|
BitField<2, 1, u32> ps_move_warning;
|
|
/// Supports stereoscopic 3D.
|
|
BitField<3, 1, u32> support_stereoscopic_3d;
|
|
/// Suspends when PS button is pressed.
|
|
BitField<4, 1, u32> ps_button_suspend;
|
|
/// Enter button for the common dialog is assigned by the system software.
|
|
BitField<5, 1, u32> enter_button_system;
|
|
/// Overrides share menu behavior.
|
|
BitField<6, 1, u32> override_share_menu;
|
|
/// Suspends when PS button is pressed and special output resolution is set.
|
|
BitField<8, 1, u32> special_res_ps_button_suspend;
|
|
/// Enable HDCP.
|
|
BitField<9, 1, u32> enable_hdcp;
|
|
/// Disable HDCP for non-game.
|
|
BitField<10, 1, u32> disable_hdcp_non_game;
|
|
/// Supports PS VR.
|
|
BitField<14, 1, u32> support_ps_vr;
|
|
/// CPU mode (6 CPU)
|
|
BitField<15, 1, u32> six_cpu_mode;
|
|
/// CPU mode (7 CPU)
|
|
BitField<16, 1, u32> seven_cpu_mode;
|
|
/// Supports PS4 Pro (Neo) mode.
|
|
BitField<23, 1, u32> support_neo_mode;
|
|
/// Requires PS VR.
|
|
BitField<26, 1, u32> require_ps_vr;
|
|
/// Supports HDR.
|
|
BitField<29, 1, u32> support_hdr;
|
|
/// Display location.
|
|
BitField<31, 1, u32> display_location;
|
|
|
|
u32 raw{};
|
|
};
|
|
static_assert(sizeof(PSFAttributes) == 4);
|
|
|
|
class ElfInfo {
|
|
friend class Core::Emulator;
|
|
|
|
bool initialized = false;
|
|
|
|
std::string game_serial{};
|
|
std::string title{};
|
|
std::string app_ver{};
|
|
u32 firmware_ver = 0;
|
|
u32 raw_firmware_ver = 0;
|
|
PSFAttributes psf_attributes{};
|
|
|
|
public:
|
|
static constexpr u32 FW_15 = 0x1500000;
|
|
static constexpr u32 FW_16 = 0x1600000;
|
|
static constexpr u32 FW_17 = 0x1700000;
|
|
static constexpr u32 FW_20 = 0x2000000;
|
|
static constexpr u32 FW_25 = 0x2500000;
|
|
static constexpr u32 FW_30 = 0x3000000;
|
|
static constexpr u32 FW_35 = 0x3500000;
|
|
static constexpr u32 FW_40 = 0x4000000;
|
|
static constexpr u32 FW_45 = 0x4500000;
|
|
static constexpr u32 FW_50 = 0x5000000;
|
|
static constexpr u32 FW_55 = 0x5500000;
|
|
static constexpr u32 FW_80 = 0x8000000;
|
|
|
|
static ElfInfo& Instance() {
|
|
return *Singleton<ElfInfo>::Instance();
|
|
}
|
|
|
|
[[nodiscard]] std::string_view GameSerial() const {
|
|
ASSERT(initialized);
|
|
return Instance().game_serial;
|
|
}
|
|
|
|
[[nodiscard]] std::string_view Title() const {
|
|
ASSERT(initialized);
|
|
return title;
|
|
}
|
|
|
|
[[nodiscard]] std::string_view AppVer() const {
|
|
ASSERT(initialized);
|
|
return app_ver;
|
|
}
|
|
|
|
[[nodiscard]] u32 FirmwareVer() const {
|
|
ASSERT(initialized);
|
|
return firmware_ver;
|
|
}
|
|
|
|
[[nodiscard]] u32 RawFirmwareVer() const {
|
|
ASSERT(initialized);
|
|
return raw_firmware_ver;
|
|
}
|
|
|
|
[[nodiscard]] const PSFAttributes& GetPSFAttributes() const {
|
|
ASSERT(initialized);
|
|
return psf_attributes;
|
|
}
|
|
};
|
|
|
|
} // namespace Common
|