[3PP] Uplifted FMT version and adjusted messages
This commit is contained in:
parent
41771055f8
commit
3318ab5d4c
|
@ -323,7 +323,7 @@ void XmaContextNew::Decode(XMA_CONTEXT_DATA* data) {
|
|||
"Processing context {} (offset {}, buffer {}, ptr {:p}, output buffer "
|
||||
"{:08X}, output buffer count {})",
|
||||
id(), data->input_buffer_read_offset, data->current_buffer,
|
||||
current_input_buffer, data->output_buffer_ptr,
|
||||
static_cast<void*>(current_input_buffer), data->output_buffer_ptr,
|
||||
data->output_buffer_block_count);
|
||||
|
||||
const uint32_t current_input_size = GetCurrentInputBufferSize(data);
|
||||
|
|
|
@ -357,7 +357,7 @@ void XmaContextOld::Decode(XMA_CONTEXT_DATA* data) {
|
|||
"Processing context {} (offset {}, buffer {}, ptr {:p}, output buffer "
|
||||
"{:08X}, output buffer count {})",
|
||||
id(), data->input_buffer_read_offset, data->current_buffer,
|
||||
current_input_buffer, data->output_buffer_ptr,
|
||||
static_cast<void*>(current_input_buffer), data->output_buffer_ptr,
|
||||
data->output_buffer_block_count);
|
||||
|
||||
if (is_stream_done_) {
|
||||
|
|
|
@ -465,7 +465,8 @@ bool MMIOHandler::ExceptionCallback(Exception* ex) {
|
|||
auto p = reinterpret_cast<const uint8_t*>(rip);
|
||||
DecodedLoadStore decoded_load_store;
|
||||
if (!TryDecodeLoadStore(p, decoded_load_store)) {
|
||||
XELOGE("Unable to decode MMIO load or store instruction at {}", p);
|
||||
XELOGE("Unable to decode MMIO load or store instruction at {}",
|
||||
static_cast<const void*>(p));
|
||||
assert_always("Unknown MMIO instruction type");
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include <utility>
|
||||
|
||||
#include "third_party/dxbc/DXBCChecksum.h"
|
||||
#include "third_party/fmt/include/fmt/xchar.h"
|
||||
|
||||
#include "xenia/base/assert.h"
|
||||
#include "xenia/base/cvar.h"
|
||||
|
|
|
@ -43,6 +43,8 @@
|
|||
#include "xenia/gpu/xenos.h"
|
||||
#include "xenia/ui/d3d12/d3d12_util.h"
|
||||
|
||||
#include "third_party/fmt/include/fmt/xchar.h"
|
||||
|
||||
DEFINE_bool(d3d12_dxbc_disasm, false,
|
||||
"Disassemble DXBC shaders after generation.", "D3D12");
|
||||
DEFINE_bool(
|
||||
|
|
|
@ -1072,8 +1072,9 @@ bool GetResolveInfo(const RegisterFile& regs, const Memory& memory,
|
|||
"Incorrect resolve sample selected for {}-sample {}: {}, treating like "
|
||||
"{}",
|
||||
1 << uint32_t(rb_surface_info.msaa_samples),
|
||||
is_depth ? "depth" : "color", rb_copy_control.copy_sample_select,
|
||||
sample_select);
|
||||
is_depth ? "depth" : "color",
|
||||
static_cast<uint32_t>(rb_copy_control.copy_sample_select),
|
||||
static_cast<uint32_t>(sample_select));
|
||||
}
|
||||
info_out.copy_dest_coordinate_info.copy_sample_select = sample_select;
|
||||
// Get the format to pass to the shader in a unified way - for depth (for
|
||||
|
|
|
@ -90,9 +90,9 @@ void COMMAND_PROCESSOR::DisassembleCurrentPacket() XE_RESTRICT {
|
|||
packet_info.count, packet_info.predicated);
|
||||
|
||||
#define LOG_ACTION_FIELD(__type, name) \
|
||||
logger("\t" #name " = {:08X}\n", action.__type.name)
|
||||
logger("\t" #name " = {:08X}\n", static_cast<uint32_t>(action.__type.name))
|
||||
#define LOG_ACTION_FIELD_DEC(__type, name) \
|
||||
logger("\t" #name " = {}\n", action.__type.name)
|
||||
logger("\t" #name " = {}\n", static_cast<size_t>(action.__type.name))
|
||||
|
||||
#define LOG_ENDIANNESS(__type, name) \
|
||||
logger("\t" #name " = {}\n", \
|
||||
|
|
|
@ -485,9 +485,10 @@ void SDLInputDriver::OnControllerDeviceAdded(const SDL_Event& event) {
|
|||
"ProductID(0x{:04X}), "
|
||||
"GUID({})",
|
||||
SDL_GameControllerName(controller),
|
||||
SDL_JoystickGetType(SDL_GameControllerGetJoystick(controller)),
|
||||
static_cast<uint32_t>(
|
||||
SDL_JoystickGetType(SDL_GameControllerGetJoystick(controller))),
|
||||
#if SDL_VERSION_ATLEAST(2, 0, 12)
|
||||
SDL_GameControllerGetType(controller),
|
||||
static_cast<uint32_t>(SDL_GameControllerGetType(controller)),
|
||||
#else
|
||||
"?",
|
||||
#endif
|
||||
|
|
|
@ -79,7 +79,8 @@ void WinKeyInputDriver::ParseKeyBinding(ui::VirtualKey output_key,
|
|||
|
||||
key_bindings_.push_back(key_binding);
|
||||
XELOGI("winkey: \"{}\" binds key 0x{:X} to controller input {}.",
|
||||
source_token, key_binding.input_key, description);
|
||||
source_token, static_cast<uint16_t>(key_binding.input_key),
|
||||
description);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1069,7 +1069,8 @@ bool KernelState::Save(ByteStream* stream) {
|
|||
|
||||
stream->Write<uint32_t>(static_cast<uint32_t>(object->type()));
|
||||
if (!object->Save(stream)) {
|
||||
XELOGD("Did not save object of type {}", object->type());
|
||||
XELOGD("Did not save object of type {}",
|
||||
static_cast<uint32_t>(object->type()));
|
||||
assert_always();
|
||||
|
||||
// Revert backwards and overwrite if a save failed.
|
||||
|
|
|
@ -135,7 +135,7 @@ X_STATUS UserModule::LoadFromMemory(const void* addr, const size_t length) {
|
|||
XELOGE("XNA executables are not yet implemented");
|
||||
return X_STATUS_NOT_IMPLEMENTED;
|
||||
} else {
|
||||
XELOGE("Unknown module magic: {:08X}", magic);
|
||||
XELOGE("Unknown module magic: {:08X}", magic.get());
|
||||
return X_STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
}
|
||||
|
@ -661,8 +661,8 @@ void UserModule::Dump() {
|
|||
|
||||
for (uint32_t i = 0; i < opt_alternate_title_id->count(); i++) {
|
||||
if (opt_alternate_title_id->values[i] != 0) {
|
||||
title_ids.append(
|
||||
fmt::format(" {:08X},", opt_alternate_title_id->values[i]));
|
||||
title_ids.append(fmt::format(
|
||||
" {:08X},", opt_alternate_title_id->values[i].get()));
|
||||
}
|
||||
}
|
||||
// Remove last character as it is not necessary
|
||||
|
|
|
@ -221,7 +221,7 @@ bool AchievementManager::DoesAchievementExist(
|
|||
void AchievementManager::ShowAchievementEarnedNotification(
|
||||
const AchievementGpdStructure* achievement) const {
|
||||
const std::string description =
|
||||
fmt::format("{}G - {}", achievement->gamerscore,
|
||||
fmt::format("{}G - {}", achievement->gamerscore.get(),
|
||||
xe::to_utf8(xe::load_and_swap<std::u16string>(
|
||||
achievement->achievement_name.c_str())));
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ X_HRESULT XamApp::DispatchMessageSync(uint32_t message, uint32_t buffer_ptr,
|
|||
memory_->TranslateVirtual<uint32_t*>(data->deployment_type_ptr);
|
||||
*deployment_type = static_cast<uint32_t>(kernel_state_->deployment_type_);
|
||||
XELOGD("XTitleGetDeploymentType({:08X}, {:08X}",
|
||||
data->deployment_type_ptr, data->overlapped_ptr);
|
||||
data->deployment_type_ptr.get(), data->overlapped_ptr.get());
|
||||
return X_E_SUCCESS;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -250,7 +250,8 @@ X_HRESULT XmpApp::DispatchMessageSync(uint32_t message, uint32_t buffer_ptr,
|
|||
static_assert_size(decltype(*args), 8);
|
||||
|
||||
assert_true(args->xmp_client == 0x00000002);
|
||||
XELOGD("XMPSetVolume({:d}, {:g})", args->xmp_client, float(args->value));
|
||||
XELOGD("XMPSetVolume({:d}, {:g})", args->xmp_client.get(),
|
||||
float(args->value));
|
||||
kernel_state_->emulator()->audio_media_player()->SetVolume(
|
||||
float(args->value));
|
||||
return X_E_SUCCESS;
|
||||
|
@ -476,8 +477,8 @@ X_HRESULT XmpApp::DispatchMessageSync(uint32_t message, uint32_t buffer_ptr,
|
|||
static_assert_size(decltype(*args), 16);
|
||||
|
||||
XELOGD("XMPCaptureOutput({:08X}, {:08X}, {:08X}, {:08X})",
|
||||
args->xmp_client, args->callback, args->context,
|
||||
args->title_render);
|
||||
args->xmp_client.get(), args->callback.get(), args->context.get(),
|
||||
args->title_render.get());
|
||||
kernel_state_->emulator()->audio_media_player()->SetCaptureCallback(
|
||||
args->callback, args->context, static_cast<bool>(args->title_render));
|
||||
return X_E_SUCCESS;
|
||||
|
|
|
@ -175,7 +175,7 @@ std::unordered_set<uint32_t> ContentManager::FindPublisherTitleIds(
|
|||
for (const auto& entry : publisher_entries) {
|
||||
std::filesystem::path path_to_publisher_dir =
|
||||
entry.path / entry.name /
|
||||
fmt::format("{:08X}", XContentType::kPublisher);
|
||||
fmt::format("{:08X}", static_cast<uint32_t>(XContentType::kPublisher));
|
||||
|
||||
if (!std::filesystem::exists(path_to_publisher_dir)) {
|
||||
continue;
|
||||
|
|
|
@ -364,7 +364,9 @@ std::vector<uint64_t> ProfileManager::FindProfiles() const {
|
|||
|
||||
if (!std::filesystem::exists(
|
||||
profile.path / profile.name / kDashboardStringID /
|
||||
fmt::format("{:08X}", XContentType::kProfile) / profile.name)) {
|
||||
fmt::format("{:08X}",
|
||||
static_cast<uint32_t>(XContentType::kProfile)) /
|
||||
profile.name)) {
|
||||
XELOGE("Profile {} doesn't have profile package!", profile_xuid);
|
||||
continue;
|
||||
}
|
||||
|
@ -444,7 +446,8 @@ std::filesystem::path ProfileManager::GetProfilePath(
|
|||
std::filesystem::path ProfileManager::GetProfilePath(
|
||||
const std::string xuid) const {
|
||||
return kernel_state_->emulator()->content_root() / xuid / kDashboardStringID /
|
||||
fmt::format("{:08X}", XContentType::kProfile) / xuid;
|
||||
fmt::format("{:08X}", static_cast<uint32_t>(XContentType::kProfile)) /
|
||||
xuid;
|
||||
}
|
||||
|
||||
bool ProfileManager::CreateProfile(const std::string gamertag, bool autologin,
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#endif
|
||||
|
||||
#include "third_party/fmt/include/fmt/format.h"
|
||||
#include "third_party/fmt/include/fmt/xchar.h"
|
||||
|
||||
DEFINE_int32(avpack, 8,
|
||||
"Video modes\n"
|
||||
|
|
|
@ -25,7 +25,8 @@ dword_result_t XMsgInProcessCall_entry(dword_t app, dword_t message,
|
|||
auto result = kernel_state()->app_manager()->DispatchMessageSync(app, message,
|
||||
arg1, arg2);
|
||||
if (result == X_ERROR_NOT_FOUND) {
|
||||
XELOGE("XMsgInProcessCall: app {:08X} undefined", app);
|
||||
XELOGE("XMsgInProcessCall: app {:08X} undefined",
|
||||
static_cast<uint32_t>(app));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -37,7 +38,8 @@ dword_result_t XMsgSystemProcessCall_entry(dword_t app, dword_t message,
|
|||
auto result = kernel_state()->app_manager()->DispatchMessageAsync(
|
||||
app, message, buffer, buffer_length);
|
||||
if (result == X_ERROR_NOT_FOUND) {
|
||||
XELOGE("XMsgSystemProcessCall: app {:08X} undefined", app);
|
||||
XELOGE("XMsgSystemProcessCall: app {:08X} undefined",
|
||||
static_cast<uint32_t>(app));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
|
@ -227,7 +227,8 @@ dword_result_t NetDll_XNetGetOpt_entry(dword_t one, dword_t option_id,
|
|||
std::memcpy(buffer_ptr, &xnet_startup_params, sizeof(XNetStartupParams));
|
||||
return 0;
|
||||
default:
|
||||
XELOGE("NetDll_XNetGetOpt: option {} unimplemented", option_id);
|
||||
XELOGE("NetDll_XNetGetOpt: option {} unimplemented",
|
||||
static_cast<uint32_t>(option_id));
|
||||
return uint32_t(X_WSAError::X_WSAEINVAL);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ dword_result_t XamTaskSchedule_entry(lpvoid_t callback,
|
|||
auto v1 = option->value1;
|
||||
auto v2 = option->value2; // typically 0?
|
||||
|
||||
XELOGI("Got xam task args: v1 = {:08X}, v2 = {:08X}", v1, v2);
|
||||
XELOGI("Got xam task args: v1 = {:08X}, v2 = {:08X}", v1.get(), v2.get());
|
||||
}
|
||||
|
||||
uint32_t stack_size = kernel_state()->GetExecutableModule()->stack_size();
|
||||
|
|
|
@ -781,10 +781,11 @@ dword_result_t XamShowMarketplaceUI_entry(dword_t user_index, dword_t ui_type,
|
|||
case 1:
|
||||
desc = fmt::format(
|
||||
"Game requested to open marketplace page for offer ID 0x{:016X}.",
|
||||
offer_id);
|
||||
static_cast<uint32_t>(offer_id));
|
||||
break;
|
||||
default:
|
||||
desc = fmt::format("Unknown marketplace op {:d}", ui_type);
|
||||
desc = fmt::format("Unknown marketplace op {:d}",
|
||||
static_cast<uint32_t>(ui_type));
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -871,7 +872,7 @@ dword_result_t XamShowMarketplaceDownloadItemsUI_entry(
|
|||
}
|
||||
|
||||
for (uint32_t i = 0; i < num_offers; i++) {
|
||||
desc += fmt::format("\n0x{:16X}", offers[i]);
|
||||
desc += fmt::format("\n0x{:16X}", offers[i].get());
|
||||
}
|
||||
|
||||
desc +=
|
||||
|
|
|
@ -412,7 +412,7 @@ dword_result_t XamUserWriteProfileSettings_entry(
|
|||
"XamUserWriteProfileSettings: setting index [{}]:"
|
||||
" from={} setting_id={:08X} data.type={}",
|
||||
n, (uint32_t)setting.from, (uint32_t)setting.setting_id,
|
||||
setting.data.type);
|
||||
static_cast<uint32_t>(setting.data.type));
|
||||
|
||||
switch (setting_type) {
|
||||
case X_USER_DATA_TYPE::CONTENT:
|
||||
|
@ -445,7 +445,7 @@ dword_result_t XamUserWriteProfileSettings_entry(
|
|||
case X_USER_DATA_TYPE::DATETIME:
|
||||
default: {
|
||||
XELOGE("XamUserWriteProfileSettings: Unimplemented data type {}",
|
||||
setting_type);
|
||||
static_cast<uint32_t>(setting_type));
|
||||
} break;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -148,8 +148,10 @@ DECLARE_XBOXKRNL_EXPORT2(RtlRaiseException, kDebug, kStub, kImportant);
|
|||
|
||||
void KeBugCheckEx_entry(dword_t code, dword_t param1, dword_t param2,
|
||||
dword_t param3, dword_t param4) {
|
||||
XELOGD("*** STOP: 0x{:08X} (0x{:08X}, 0x{:08X}, 0x{:08X}, 0x{:08X})", code,
|
||||
param1, param2, param3, param4);
|
||||
XELOGD("*** STOP: 0x{:08X} (0x{:08X}, 0x{:08X}, 0x{:08X}, 0x{:08X})",
|
||||
static_cast<uint32_t>(code), static_cast<uint32_t>(param1),
|
||||
static_cast<uint32_t>(param2), static_cast<uint32_t>(param3),
|
||||
static_cast<uint32_t>(param4));
|
||||
fflush(stdout);
|
||||
xe::debugging::Break();
|
||||
assert_always();
|
||||
|
|
|
@ -229,7 +229,8 @@ dword_result_t XexGetProcedureAddress_entry(lpvoid_t hmodule, dword_t ordinal,
|
|||
XELOGW(
|
||||
"ERROR: XexGetProcedureAddress ordinal {} (0x{:X}) in '{}' not "
|
||||
"found!",
|
||||
ordinal, ordinal, module->name());
|
||||
static_cast<uint32_t>(ordinal), static_cast<uint32_t>(ordinal),
|
||||
module->name());
|
||||
}
|
||||
*out_function_ptr = 0;
|
||||
result = X_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND;
|
||||
|
|
|
@ -647,8 +647,10 @@ void Memory::DumpMap() {
|
|||
XELOGE(" System Page Size: {0} ({0:08X})", system_page_size_);
|
||||
XELOGE(" System Allocation Granularity: {0} ({0:08X})",
|
||||
system_allocation_granularity_);
|
||||
XELOGE(" Virtual Membase: {}", virtual_membase_);
|
||||
XELOGE(" Physical Membase: {}", physical_membase_);
|
||||
XELOGE(" Virtual Membase: {}",
|
||||
static_cast<void*>(virtual_membase_));
|
||||
XELOGE(" Physical Membase: {}",
|
||||
static_cast<void*>(physical_membase_));
|
||||
XELOGE("");
|
||||
XELOGE("------------------------------------------------------------------");
|
||||
XELOGE("Virtual Heaps");
|
||||
|
|
|
@ -41,13 +41,14 @@ bool DiscImageDevice::Initialize() {
|
|||
state.size = mmap_->size();
|
||||
auto result = Verify(&state);
|
||||
if (result != Error::kSuccess) {
|
||||
XELOGE("Failed to verify disc image header: {}", result);
|
||||
XELOGE("Failed to verify disc image header: {}",
|
||||
static_cast<int32_t>(result));
|
||||
return false;
|
||||
}
|
||||
|
||||
result = ReadAllEntries(&state, state.ptr + state.root_offset);
|
||||
if (result != Error::kSuccess) {
|
||||
XELOGE("Failed to read all GDFX entries: {}", result);
|
||||
XELOGE("Failed to read all GDFX entries: {}", static_cast<int32_t>(result));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -93,7 +93,8 @@ bool XContentContainerDevice::Initialize() {
|
|||
|
||||
auto header_loading_result = ReadHeaderAndVerify(header_file);
|
||||
if (header_loading_result != Result::kSuccess) {
|
||||
XELOGE("Error reading XContent header: {}", header_loading_result);
|
||||
XELOGE("Error reading XContent header: {}",
|
||||
static_cast<int32_t>(header_loading_result));
|
||||
fclose(header_file);
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -158,8 +158,8 @@ std::unique_ptr<XContentContainerEntry> StfsContainerDevice::ReadEntry(
|
|||
XELOGW(
|
||||
"STFS file {} only found {} bytes for file, expected {} ({} "
|
||||
"bytes missing)",
|
||||
name, dir_entry->length - remaining_size, dir_entry->length,
|
||||
remaining_size);
|
||||
name, dir_entry->length.get() - remaining_size,
|
||||
dir_entry->length.get(), remaining_size);
|
||||
assert_always();
|
||||
}
|
||||
|
||||
|
|
|
@ -47,7 +47,8 @@ SvodContainerDevice::Result SvodContainerDevice::LoadHostFiles(
|
|||
|
||||
if (fragment_files.size() != header_->content_metadata.data_file_count) {
|
||||
XELOGE("SVOD expecting {} data fragments, but {} are present.",
|
||||
header_->content_metadata.data_file_count, fragment_files.size());
|
||||
header_->content_metadata.data_file_count.get(),
|
||||
fragment_files.size());
|
||||
return Result::kFileMismatch;
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 7bdf0628b1276379886c7f6dda2cef2b3b374f0b
|
||||
Subproject commit 0c9fce2ffefecfdce794e1859584e25877b7b592
|
Loading…
Reference in New Issue