1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

move config structs to own files and clean up some headers

This commit is contained in:
Megamouse 2020-02-15 23:36:20 +01:00 committed by Ivan
parent 5e6b1003ec
commit fe75311be2
213 changed files with 919 additions and 997 deletions

View File

@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "Config.h"
#include "yaml-cpp/yaml.h"

View File

@ -1,7 +1,4 @@
#include "stdafx.h"
#include "Emu/Memory/vm.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/SPUThread.h"
#include "Emu/Cell/PPUThread.h"
#include "Emu/Cell/RawSPUThread.h"

View File

@ -1,7 +1,7 @@
#include "sysinfo.h"
#include "StrFmt.h"
#include "File.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#ifdef _WIN32
#include "windows.h"

View File

@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "aes.h"
#include "sha1.h"
#include "utils.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "OpenALBackend.h"

View File

@ -3,7 +3,7 @@
#endif
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "ALSABackend.h"

View File

@ -0,0 +1,68 @@
#include "stdafx.h"
#include "AudioBackend.h"
#include "Emu/system_config.h"
/*
* Helper methods
*/
u32 AudioBackend::get_sampling_rate()
{
const u32 sampling_period_multiplier_u32 = g_cfg.audio.sampling_period_multiplier;
if (sampling_period_multiplier_u32 == 100)
return DEFAULT_AUDIO_SAMPLING_RATE;
const f32 sampling_period_multiplier = sampling_period_multiplier_u32 / 100.0f;
const f32 sampling_rate_multiplier = 1.0f / sampling_period_multiplier;
return static_cast<u32>(DEFAULT_AUDIO_SAMPLING_RATE * sampling_rate_multiplier);
}
u32 AudioBackend::get_sample_size()
{
return g_cfg.audio.convert_to_u16 ? sizeof(u16) : sizeof(float);
}
u32 AudioBackend::get_channels()
{
return g_cfg.audio.downmix_to_2ch ? 2 : 8;
}
bool AudioBackend::has_capability(u32 cap) const
{
return (cap & GetCapabilities()) == cap;
}
void AudioBackend::dump_capabilities(std::string& out) const
{
u32 count = 0;
u32 capabilities = GetCapabilities();
if (capabilities & PLAY_PAUSE_FLUSH)
{
fmt::append(out, "PLAY_PAUSE_FLUSH");
count++;
}
if (capabilities & IS_PLAYING)
{
fmt::append(out, "%sIS_PLAYING", count > 0 ? " | " : "");
count++;
}
if (capabilities & GET_NUM_ENQUEUED_SAMPLES)
{
fmt::append(out, "%sGET_NUM_ENQUEUED_SAMPLES", count > 0 ? " | " : "");
count++;
}
if (capabilities & SET_FREQUENCY_RATIO)
{
fmt::append(out, "%sSET_FREQUENCY_RATIO", count > 0 ? " | " : "");
count++;
}
if (count == 0)
{
fmt::append(out, "NONE");
}
}

View File

@ -1,7 +1,6 @@
#pragma once
#include "Utilities/types.h"
#include "Emu/System.h"
enum : u32
{
@ -89,65 +88,13 @@ public:
/*
* Helper methods
*/
static u32 get_sampling_rate()
{
const u32 sampling_period_multiplier_u32 = g_cfg.audio.sampling_period_multiplier;
static u32 get_sampling_rate();
if (sampling_period_multiplier_u32 == 100)
return DEFAULT_AUDIO_SAMPLING_RATE;
static u32 get_sample_size();
const f32 sampling_period_multiplier = sampling_period_multiplier_u32 / 100.0f;
const f32 sampling_rate_multiplier = 1.0f / sampling_period_multiplier;
return static_cast<u32>(DEFAULT_AUDIO_SAMPLING_RATE * sampling_rate_multiplier);
}
static u32 get_channels();
static u32 get_sample_size()
{
return g_cfg.audio.convert_to_u16 ? sizeof(u16) : sizeof(float);
}
bool has_capability(u32 cap) const;
static u32 get_channels()
{
return g_cfg.audio.downmix_to_2ch ? 2 : 8;
}
bool has_capability(u32 cap) const
{
return (cap & GetCapabilities()) == cap;
}
void dump_capabilities(std::string& out) const
{
u32 count = 0;
u32 capabilities = GetCapabilities();
if (capabilities & PLAY_PAUSE_FLUSH)
{
fmt::append(out, "PLAY_PAUSE_FLUSH");
count++;
}
if (capabilities & IS_PLAYING)
{
fmt::append(out, "%sIS_PLAYING", count > 0 ? " | " : "");
count++;
}
if (capabilities & GET_NUM_ENQUEUED_SAMPLES)
{
fmt::append(out, "%sGET_NUM_ENQUEUED_SAMPLES", count > 0 ? " | " : "");
count++;
}
if (capabilities & SET_FREQUENCY_RATIO)
{
fmt::append(out, "%sSET_FREQUENCY_RATIO", count > 0 ? " | " : "");
count++;
}
if (count == 0)
{
fmt::append(out, "NONE");
}
}
void dump_capabilities(std::string& out) const;
};

View File

@ -3,6 +3,8 @@
#endif
#include "FAudioBackend.h"
#include "Emu/system_config.h"
#include "Emu/System.h"
LOG_CHANNEL(FAudio_, "FAudio");

View File

@ -5,6 +5,7 @@
#include "Utilities/Log.h"
#include "Utilities/StrFmt.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "XAudio2Backend.h"
#include "3rdparty/XAudio2_7/XAudio2.h"

View File

@ -5,6 +5,7 @@
#include "Utilities/Log.h"
#include "Utilities/StrFmt.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "XAudio2Backend.h"
#include "3rdparty/minidx12/Include/xaudio2.h"

View File

@ -1,6 +1,7 @@
add_library(rpcs3_emu
IdManager.cpp
System.cpp
system_config.cpp
VFS.cpp
GDB.cpp
title.cpp
@ -90,6 +91,7 @@ target_sources(rpcs3_emu PRIVATE
# Audio
target_sources(rpcs3_emu PRIVATE
Audio/AudioDumper.cpp
Audio/AudioBackend.cpp
Audio/AL/OpenALBackend.cpp
)
@ -338,6 +340,7 @@ target_link_libraries(rpcs3_emu
# Io
target_sources(rpcs3_emu PRIVATE
Io/pad_config.cpp
Io/KeyboardHandler.cpp
Io/PadHandler.cpp
Io/usb_device.cpp

View File

@ -2,6 +2,7 @@
#include "CPUThread.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/Memory/vm_locking.h"
#include "Emu/IdManager.h"
#include "Emu/GDB.h"

View File

@ -1,12 +1,6 @@
#include "stdafx.h"
#include "stdafx.h"
#include "MFC.h"
#include "Utilities/sysinfo.h"
#include "Emu/Memory/vm.h"
#include "Emu/Cell/SPUThread.h"
#include "Emu/Cell/lv2/sys_sync.h"
#include "Emu/System.h"
template <>
void fmt_class_string<MFC>::format(std::string& out, u64 arg)
{

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_sync.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "cellAtrac.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "cellAtracMulti.h"

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_process.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/IdManager.h"
#include "Emu/RSX/rsx_utils.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "cellBgdl.h"

View File

@ -1,11 +1,9 @@
#include "stdafx.h"
#include "stdafx.h"
#include "cellCamera.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_event.h"
#include "Emu/IdManager.h"
#include "Emu/Io/PadHandler.h"
#include "Emu/System.h"
LOG_CHANNEL(cellCamera);

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "cellSysutil.h"
#include "cellCrossController.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_sync.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "cellFiber.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/Cell/PPUModule.h"
#include <stb_truetype.h>

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,6 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,11 +1,8 @@
#include "stdafx.h"
#include "cellGem.h"
#include "cellCamera.h"
#include "Emu/IdManager.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "Input/pad_thread.h"
#include "Emu/Io/MouseHandler.h"
#include "Emu/RSX/GSRender.h"
#include "Utilities/Timer.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,6 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/Cell/PPUModule.h"
#include "Utilities/StrUtil.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/PPUThread.h"
#include "Emu/Cell/lv2/sys_sync.h"

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_lwmutex.h"
#include "Emu/Cell/lv2/sys_lwcond.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/IdManager.h"

View File

@ -1,6 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/RSX/Overlays/overlays.h"
#include "Input/pad_thread.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_process.h"

View File

@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "cellSysutil.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/VFS.h"
#include "Emu/Cell/PPUModule.h"
#include "cellSail.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/Cell/lv2/sys_sync.h"
#include "Emu/Cell/lv2/sys_process.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -5,8 +5,6 @@
#include "cellScreenshot.h"
LOG_CHANNEL(cellScreenshot);
template<>
@ -27,6 +25,36 @@ void fmt_class_string<CellScreenShotError>::format(std::string& out, u64 arg)
});
}
std::string screenshot_manager::get_overlay_path() const
{
return vfs::get(overlay_dir_name + overlay_file_name);
}
std::string screenshot_manager::get_photo_title() const
{
std::string photo = photo_title;
if (photo.empty())
photo = Emu.GetTitle();
return photo;
}
std::string screenshot_manager::get_game_title() const
{
std::string game = game_title;
if (game.empty())
game = Emu.GetTitle();
return game;
}
std::string screenshot_manager::get_screenshot_path() const
{
// TODO: make sure the file can be saved, add suffix and increase counter if file exists
// TODO: maybe find a proper home for these
return fs::get_config_dir() + "/screenshots/cell/" + get_photo_title() + ".png";
}
error_code cellScreenShotSetParameter(vm::cptr<CellScreenShotSetParam> param)
{
cellScreenshot.warning("cellScreenShotSetParameter(param=*0x%x)", param);

View File

@ -1,6 +1,6 @@
#pragma once
#include "Emu/Memory/vm_ptr.h"
#include "Emu/VFS.h"
// Return Codes
enum CellScreenShotError : u32
@ -40,31 +40,8 @@ struct screenshot_manager
std::string overlay_dir_name;
std::string overlay_file_name;
std::string get_overlay_path() const
{
return vfs::get(overlay_dir_name + overlay_file_name);
}
std::string get_photo_title() const
{
std::string photo = photo_title;
if (photo.empty())
photo = Emu.GetTitle();
return photo;
}
std::string get_game_title() const
{
std::string game = game_title;
if (game.empty())
game = Emu.GetTitle();
return game;
}
std::string get_screenshot_path() const
{
// TODO: make sure the file can be saved, add suffix and increase counter if file exists
// TODO: maybe find a proper home for these
return fs::get_config_dir() + "/screenshots/cell/" + get_photo_title() + ".png";
}
std::string get_overlay_path() const;
std::string get_photo_title() const;
std::string get_game_title() const;
std::string get_screenshot_path() const;
};

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "cellMusic.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Utilities/asm.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_lwmutex.h"

View File

@ -1,6 +1,5 @@
#include "stdafx.h"
#include "stdafx.h"
#include "Loader/ELF.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/SPUThread.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Utilities/asm.h"
#include "Emu/Cell/lv2/sys_event.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "cellSync2.h"

View File

@ -1,5 +1,6 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(cellSysmodule);

View File

@ -1,6 +1,8 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/IdManager.h"
#include "Emu/VFS.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_process.h"
@ -221,7 +223,7 @@ error_code cellSysutilGetSystemParamInt(CellSysutilParamId id, vm::ptr<s32> valu
break;
case CELL_SYSUTIL_SYSTEMPARAM_ID_ENTER_BUTTON_ASSIGN:
*value = g_cfg.sys.enter_button_assignment;
*value = static_cast<s32>(g_cfg.sys.enter_button_assignment.get());
break;
case CELL_SYSUTIL_SYSTEMPARAM_ID_DATE_FORMAT:

View File

@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,6 @@
#include "stdafx.h"
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/Cell/PPUModule.h"
#include "cellUserInfo.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_sync.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/system_config_types.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/IdManager.h"
#include "Emu/RSX/rsx_utils.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(cellVideoPlayerUtility);

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_event.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(libmedi);

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_sync.h"

View File

@ -1,5 +1,6 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/Cell/PPUModule.h"
#include "sysPrxForUser.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/IdManager.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/VFS.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_mutex.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_mutex.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(sys_libc);

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "sys_lv2dbg.h"

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/IdManager.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_lwmutex.h"

View File

@ -1,7 +1,4 @@
#include "stdafx.h"
#include "Emu/Memory/vm.h"
#include "Emu/IdManager.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_lwmutex.h"

View File

@ -2,8 +2,6 @@
#include "Utilities/StrUtil.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_mutex.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/IdManager.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/lv2/sys_lwmutex.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "sysPrxForUser.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "sysPrxForUser.h"

View File

@ -1,5 +1,5 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/VFS.h"
#include "Emu/Cell/PPUModule.h"
#include "Emu/Cell/RawSPUThread.h"

View File

@ -2,7 +2,7 @@
#include "PPUInterpreter.h"
#include "Emu/Memory/vm_reservation.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "PPUThread.h"
#include "Utilities/asm.h"
#include "Emu/Cell/Common.h"

View File

@ -6,8 +6,7 @@
#include "Crypto/sha1.h"
#include "Crypto/unself.h"
#include "Loader/ELF.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/VFS.h"
#include "Emu/Cell/PPUOpcodes.h"
#include "Emu/Cell/PPUAnalyser.h"

View File

@ -4,8 +4,7 @@
#include "Utilities/JIT.h"
#include "Crypto/sha1.h"
#include "Emu/Memory/vm_reservation.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/VFS.h"
#include "PPUThread.h"
#include "PPUInterpreter.h"
#include "PPUAnalyser.h"

View File

@ -1,6 +1,4 @@
#include "stdafx.h"
#include "Emu/Memory/vm.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Loader/ELF.h"

View File

@ -1,7 +1,7 @@
#include "stdafx.h"
#include "SPUASMJITRecompiler.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/IdManager.h"
#include "SPUDisAsm.h"

View File

@ -1,7 +1,6 @@
#include "stdafx.h"
#include "SPUInterpreter.h"
#include "Emu/System.h"
#include "Utilities/JIT.h"
#include "Utilities/sysinfo.h"
#include "Utilities/asm.h"

View File

@ -2,6 +2,7 @@
#include "SPURecompiler.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/IdManager.h"
#include "Crypto/sha1.h"
#include "Utilities/StrUtil.h"

View File

@ -3,7 +3,6 @@
#include "Utilities/sysinfo.h"
#include "Emu/Memory/vm_ptr.h"
#include "Emu/Memory/vm_reservation.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/Cell/PPUThread.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Memory/vm_ptr.h"
#include "Emu/Cell/PPUFunction.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Memory/vm.h"
#include "Emu/Cell/ErrorCodes.h"

View File

@ -1,7 +1,6 @@
#include "stdafx.h"
#include "sys_cond.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/IPC.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/Memory/vm.h"
#include "Emu/IdManager.h"

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Cell/ErrorCodes.h"
#include "sys_console.h"

View File

@ -1,7 +1,6 @@
#include "stdafx.h"
#include "sys_event.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/IPC.h"

View File

@ -1,7 +1,6 @@
#include "stdafx.h"
#include "sys_event_flag.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
#include "Emu/IPC.h"

View File

@ -1,10 +1,6 @@
#include "stdafx.h"
#include "stdafx.h"
#include "sys_gamepad.h"
#include "Emu/System.h"
#include "Emu/IdManager.h"
LOG_CHANNEL(sys_gamepad);
u32 sys_gamepad_ycon_initalize(vm::ptr<uint8_t> in, vm::ptr<uint8_t> out)

View File

@ -1,7 +1,6 @@
#include "stdafx.h"
#include "sys_gpio.h"
#include "Emu/System.h"
#include "Emu/Cell/ErrorCodes.h"
LOG_CHANNEL(sys_gpio);

View File

@ -1,5 +1,4 @@
#include "stdafx.h"
#include "Emu/System.h"
#include "stdafx.h"
#include "Emu/Memory/vm.h"
#include "Emu/Cell/ErrorCodes.h"

Some files were not shown because too many files have changed in this diff Show More