diff --git a/Utilities/AutoPause.cpp b/Utilities/AutoPause.cpp index 5fc5125975..f18665e2eb 100644 --- a/Utilities/AutoPause.cpp +++ b/Utilities/AutoPause.cpp @@ -3,8 +3,8 @@ #include "Emu/System.h" #include "AutoPause.h" -cfg::bool_entry g_cfg_debug_autopause_syscall(cfg::root.misc, "Auto Pause at System Call"); -cfg::bool_entry g_cfg_debug_autopause_func_call(cfg::root.misc, "Auto Pause at Function Call"); +cfg::bool_entry g_cfg_debug_autopause_syscall(cfg::root.misc, "Automatically pause at system call"); +cfg::bool_entry g_cfg_debug_autopause_func_call(cfg::root.misc, "Automatically pause at function call"); debug::autopause& debug::autopause::get_instance() { diff --git a/rpcs3/Emu/Cell/Modules/cellAudio.cpp b/rpcs3/Emu/Cell/Modules/cellAudio.cpp index 193d9c003d..ebe41993c7 100644 --- a/rpcs3/Emu/Cell/Modules/cellAudio.cpp +++ b/rpcs3/Emu/Cell/Modules/cellAudio.cpp @@ -14,7 +14,7 @@ logs::channel cellAudio("cellAudio", logs::level::notice); cfg::bool_entry g_cfg_audio_dump_to_file(cfg::root.audio, "Dump to file"); -cfg::bool_entry g_cfg_audio_convert_to_u16(cfg::root.audio, "Convert to 16 bit"); +cfg::bool_entry g_cfg_audio_convert_to_u16(cfg::root.audio, "Convert to 16-bit"); void audio_config::on_task() { diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 27f889480f..2cae4fdab9 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -49,7 +49,7 @@ enum class ppu_decoder_type llvm, }; -cfg::map_entry g_cfg_ppu_decoder(cfg::root.core, "PPU Decoder", 1, +cfg::map_entry g_cfg_ppu_decoder(cfg::root.core, "PPU decoder", 1, { { "Interpreter (precise)", ppu_decoder_type::precise }, { "Interpreter (fast)", ppu_decoder_type::fast }, diff --git a/rpcs3/Emu/Cell/SPUThread.cpp b/rpcs3/Emu/Cell/SPUThread.cpp index d2e7661434..e9d139bd8d 100644 --- a/rpcs3/Emu/Cell/SPUThread.cpp +++ b/rpcs3/Emu/Cell/SPUThread.cpp @@ -32,7 +32,7 @@ enum class spu_decoder_type llvm, }; -cfg::map_entry g_cfg_spu_decoder(cfg::root.core, "SPU Decoder", 2, +cfg::map_entry g_cfg_spu_decoder(cfg::root.core, "SPU decoder", 2, { { "Interpreter (precise)", spu_decoder_type::precise }, { "Interpreter (fast)", spu_decoder_type::fast }, diff --git a/rpcs3/Emu/RSX/RSXThread.cpp b/rpcs3/Emu/RSX/RSXThread.cpp index f8411ca108..6d3934d572 100644 --- a/rpcs3/Emu/RSX/RSXThread.cpp +++ b/rpcs3/Emu/RSX/RSXThread.cpp @@ -19,15 +19,15 @@ class GSRender; #define CMD_DEBUG 0 -cfg::bool_entry g_cfg_rsx_write_color_buffers(cfg::root.video, "Write Color Buffers"); -cfg::bool_entry g_cfg_rsx_write_depth_buffer(cfg::root.video, "Write Depth Buffer"); -cfg::bool_entry g_cfg_rsx_read_color_buffers(cfg::root.video, "Read Color Buffers"); -cfg::bool_entry g_cfg_rsx_read_depth_buffer(cfg::root.video, "Read Depth Buffer"); +cfg::bool_entry g_cfg_rsx_write_color_buffers(cfg::root.video, "Write color buffers"); +cfg::bool_entry g_cfg_rsx_write_depth_buffer(cfg::root.video, "Write depth buffer"); +cfg::bool_entry g_cfg_rsx_read_color_buffers(cfg::root.video, "Read color buffers"); +cfg::bool_entry g_cfg_rsx_read_depth_buffer(cfg::root.video, "Read depth buffer"); cfg::bool_entry g_cfg_rsx_log_programs(cfg::root.video, "Log shader programs"); cfg::bool_entry g_cfg_rsx_vsync(cfg::root.video, "VSync"); cfg::bool_entry g_cfg_rsx_debug_output(cfg::root.video, "Debug output"); cfg::bool_entry g_cfg_rsx_overlay(cfg::root.video, "Debug overlay"); -cfg::bool_entry g_cfg_rsx_gl_legacy_buffers(cfg::root.video, "Use Legacy OpenGL Buffers (Debug)"); +cfg::bool_entry g_cfg_rsx_gl_legacy_buffers(cfg::root.video, "Use legacy OpenGL buffers (Debug)"); bool user_asked_for_frame_capture = false; rsx::frame_capture_data frame_debug; diff --git a/rpcs3/Emu/RSX/rsx_methods.cpp b/rpcs3/Emu/RSX/rsx_methods.cpp index e0313b51eb..2f6d7fd609 100644 --- a/rpcs3/Emu/RSX/rsx_methods.cpp +++ b/rpcs3/Emu/RSX/rsx_methods.cpp @@ -16,10 +16,10 @@ cfg::map_entry g_cfg_rsx_frame_limit(cfg::root.video, "Frame limit", { { "Off", 0. }, - { "59.94", 59.94 }, - { "50", 50. }, - { "60", 60. }, { "30", 30. }, + { "50", 50. }, + { "59.94", 59.94 }, + { "60", 60. }, { "Auto", -1. }, }); diff --git a/rpcs3/Gui/AboutDialog.h b/rpcs3/Gui/AboutDialog.h index e2d678960e..d7ea82a193 100644 --- a/rpcs3/Gui/AboutDialog.h +++ b/rpcs3/Gui/AboutDialog.h @@ -26,7 +26,7 @@ public: t_name->SetForegroundColour(wxColor(255, 255, 255)); t_name->SetPosition(wxPoint(10, 6)); - wxStaticText* t_descr = new wxStaticText(this, wxID_ANY, "PS3 emulator and debugger."); + wxStaticText* t_descr = new wxStaticText(this, wxID_ANY, "A Playstation 3 emulator and debugger."); t_descr->SetBackgroundColour(wxColor(100, 100, 100)); t_descr->SetForegroundColour(wxColor(255, 255, 255)); t_descr->SetPosition(wxPoint(12, 50)); @@ -63,7 +63,7 @@ public: s_panel_buttons->AddStretchSpacer(); s_panel_buttons->Add(b_forum, 16, 0, 5); s_panel_buttons->AddStretchSpacer(20); - s_panel_buttons->Add(new wxButton(this, wxID_OK), 16, 0, 5); + s_panel_buttons->Add(new wxButton(this, wxID_OK, "Close") , 16, 0, 5); s_panel_buttons->AddSpacer(12); //Panels diff --git a/rpcs3/Gui/AutoPauseManager.cpp b/rpcs3/Gui/AutoPauseManager.cpp index 55389a5655..bbfa03fc42 100644 --- a/rpcs3/Gui/AutoPauseManager.cpp +++ b/rpcs3/Gui/AutoPauseManager.cpp @@ -5,13 +5,13 @@ //TODO::Get the enable configuration from ini. AutoPauseManagerDialog::AutoPauseManagerDialog(wxWindow* parent) - : wxDialog(parent, wxID_ANY, "Auto Pause Manager") + : wxDialog(parent, wxID_ANY, "Automatic pause settings") { SetMinSize(wxSize(400, 360)); wxBoxSizer* s_main = new wxBoxSizer(wxVERTICAL); - wxStaticText* s_description = new wxStaticText(this, wxID_ANY, "To use auto pause: enter the ID(s) of a function or a system call. Restart of the game is required to apply. You can enable/disable this in the settings.", wxDefaultPosition, wxDefaultSize, 0); + wxStaticText* s_description = new wxStaticText(this, wxID_ANY, "To use auto pause: enter the ID(s) of a function or a system call. You must restart your emulated game or application for changed settings to take effect. You can enable/disable this in the settings.", wxDefaultPosition, wxDefaultSize, 0); s_description->Wrap(400); s_main->Add(s_description, 0, wxALL, 5); @@ -114,11 +114,11 @@ void AutoPauseManagerDialog::UpdateList(void) if (m_entries[i] < 1024) { - m_list->SetItem(i, 1, "System Call"); + m_list->SetItem(i, 1, "System call"); } else { - m_list->SetItem(i, 1, "Function Call"); + m_list->SetItem(i, 1, "Function call"); } } m_list->SetColumnWidth(0, wxLIST_AUTOSIZE_USEHEADER); @@ -176,7 +176,7 @@ void AutoPauseManagerDialog::OnRemove(wxCommandEvent& event) void AutoPauseManagerDialog::OnSave(wxCommandEvent& event) { SaveEntries(); - LOG_SUCCESS(HLE,"Auto Pause: File pause.bin was updated."); + LOG_SUCCESS(HLE,"Automatic pause: file pause.bin was updated."); //event.Skip(); } @@ -193,7 +193,7 @@ void AutoPauseManagerDialog::OnReload(wxCommandEvent& event) } AutoPauseSettingsDialog::AutoPauseSettingsDialog(wxWindow* parent, u32 *entry) - : wxDialog(parent, wxID_ANY, "Auto Pause Setting") + : wxDialog(parent, wxID_ANY, "Automatic pause Setting") , m_presult(entry) { m_entry = *m_presult; @@ -202,7 +202,7 @@ AutoPauseSettingsDialog::AutoPauseSettingsDialog(wxWindow* parent, u32 *entry) wxBoxSizer* s_main = new wxBoxSizer(wxVERTICAL); - wxStaticText* s_description = new wxStaticText(this, wxID_ANY, "Specify ID of System Call or Function Call below. You need to use a Hexadecimal ID.", wxDefaultPosition, wxDefaultSize, 0); + wxStaticText* s_description = new wxStaticText(this, wxID_ANY, "Specify ID of system call or function call below. You need to use a hexadecimal ID.", wxDefaultPosition, wxDefaultSize, 0); s_description->Wrap(400); s_main->Add(s_description, 0, wxALL, 5); @@ -220,7 +220,7 @@ AutoPauseSettingsDialog::AutoPauseSettingsDialog(wxWindow* parent, u32 *entry) m_id->SetValue(fmt::format("%08x", m_entry)); - SetTitle("Auto Pause Setting: " + m_id->GetValue()); + SetTitle("Automatic pause setting: " + m_id->GetValue()); Bind(wxEVT_BUTTON, &AutoPauseSettingsDialog::OnOk, this, wxID_OK); Bind(wxEVT_TEXT, &AutoPauseSettingsDialog::OnUpdateValue, this, wxID_STATIC); diff --git a/rpcs3/Gui/CgDisasm.cpp b/rpcs3/Gui/CgDisasm.cpp index 2e5ab32ac4..4a5169b7ba 100644 --- a/rpcs3/Gui/CgDisasm.cpp +++ b/rpcs3/Gui/CgDisasm.cpp @@ -10,13 +10,13 @@ BEGIN_EVENT_TABLE(CgDisasm, wxFrame) END_EVENT_TABLE() CgDisasm::CgDisasm(wxWindow* parent) - : wxFrame(parent, wxID_ANY, "Cg Disasm", wxDefaultPosition, wxSize(640, 480)) + : wxFrame(parent, wxID_ANY, "Cg disassembler", wxDefaultPosition, wxSize(640, 480)) { wxMenuBar* menubar = new wxMenuBar(); wxMenu* menu_general = new wxMenu(); - menubar->Append(menu_general, "&Open"); - menu_general->Append(id_open_file, "Open &Cg binary program"); + menubar->Append(menu_general, "&File"); + menu_general->Append(id_open_file, "Open &Cg binary"); wxNotebook* nb_cg = new wxNotebook(this, wxID_ANY); wxPanel* p_cg_disasm = new wxPanel(nb_cg, wxID_ANY); diff --git a/rpcs3/Gui/FrameBase.h b/rpcs3/Gui/FrameBase.h index c84393702e..351376005b 100644 --- a/rpcs3/Gui/FrameBase.h +++ b/rpcs3/Gui/FrameBase.h @@ -8,7 +8,7 @@ protected: FrameBase( wxWindow* parent, wxWindowID id = wxID_ANY, - const wxString& frame_name = "UnknownFrame", + const wxString& frame_name = "Unknown frame", const std::string& ini_name = {}, wxSize defsize = wxDefaultSize, wxPoint defposition = wxDefaultPosition, diff --git a/rpcs3/Gui/GameViewer.cpp b/rpcs3/Gui/GameViewer.cpp index bcf9e41dd7..d88568716d 100644 --- a/rpcs3/Gui/GameViewer.cpp +++ b/rpcs3/Gui/GameViewer.cpp @@ -8,7 +8,7 @@ #include -static const std::string m_class_name = "GameViewer"; +static const std::string m_class_name = "Game viewer"; // Auxiliary classes class sortGameData @@ -210,7 +210,7 @@ void GameViewer::RightClick(wxListEvent& event) #endif m_popup->Append(boot_item); m_popup->Append(1, _T("Configure")); - m_popup->Append(2, _T("Remove Game")); + m_popup->Append(2, _T("Remove game")); Bind(wxEVT_MENU, &GameViewer::BootGame, this, 0); Bind(wxEVT_MENU, &GameViewer::ConfigureGame, this, 1); @@ -288,12 +288,12 @@ void ColumnsArr::Init() m_img_list = new wxImageList(80, 44); m_columns.clear(); - m_columns.emplace_back(0, 90, "Icon"); + m_columns.emplace_back(0, 90, ""); m_columns.emplace_back(1, 160, "Name"); m_columns.emplace_back(2, 85, "Serial"); - m_columns.emplace_back(3, 55, "FW"); - m_columns.emplace_back(4, 55, "App version"); - m_columns.emplace_back(5, 75, "Category"); + m_columns.emplace_back(3, 60, "Min. FW"); + m_columns.emplace_back(4, 80, "Soft. version"); + m_columns.emplace_back(5, 75, "Soft. type"); m_columns.emplace_back(6, 160, "Path"); m_col_icon = &m_columns[0]; m_col_name = &m_columns[1]; diff --git a/rpcs3/Gui/InterpreterDisAsm.cpp b/rpcs3/Gui/InterpreterDisAsm.cpp index 0bdd406c3e..37ea2eecbb 100644 --- a/rpcs3/Gui/InterpreterDisAsm.cpp +++ b/rpcs3/Gui/InterpreterDisAsm.cpp @@ -49,8 +49,8 @@ InterpreterDisAsmFrame::InterpreterDisAsmFrame(wxWindow* parent) m_list = new wxListView(this); m_choice_units = new wxChoice(this, wxID_ANY); - wxButton* b_go_to_addr = new wxButton(this, wxID_ANY, "Go To Address"); - wxButton* b_go_to_pc = new wxButton(this, wxID_ANY, "Go To PC"); + wxButton* b_go_to_addr = new wxButton(this, wxID_ANY, "Go to address"); + wxButton* b_go_to_pc = new wxButton(this, wxID_ANY, "Go to PC"); m_btn_step = new wxButton(this, wxID_ANY, "Step"); m_btn_run = new wxButton(this, wxID_ANY, "Run"); diff --git a/rpcs3/Gui/KernelExplorer.cpp b/rpcs3/Gui/KernelExplorer.cpp index 634546b9d8..8be5c6ef0f 100644 --- a/rpcs3/Gui/KernelExplorer.cpp +++ b/rpcs3/Gui/KernelExplorer.cpp @@ -23,7 +23,7 @@ #include "KernelExplorer.h" KernelExplorer::KernelExplorer(wxWindow* parent) - : wxDialog(parent, wxID_ANY, "Kernel Explorer", wxDefaultPosition, wxSize(700, 450)) + : wxDialog(parent, wxID_ANY, "Kernel explorer", wxDefaultPosition, wxSize(700, 450)) { this->SetBackgroundColour(wxColour(240,240,240)); //This fix the ugly background color under Windows wxBoxSizer* s_panel = new wxBoxSizer(wxVERTICAL); @@ -59,7 +59,7 @@ void KernelExplorer::Update() m_tree->DeleteAllItems(); const u32 total_memory_usage = vm::get(vm::user_space)->used(); - const auto& root = m_tree->AddRoot(fmt::format("Process, ID = 0x00000001, Total Memory Usage = 0x%x (%0.2f MB)", total_memory_usage, (float)total_memory_usage / (1024 * 1024))); + const auto& root = m_tree->AddRoot(fmt::format("Process, ID = 0x00000001, Total memory usage = 0x%x (%0.2f MB)", total_memory_usage, (float)total_memory_usage / (1024 * 1024))); union name64 { @@ -86,7 +86,7 @@ void KernelExplorer::Update() idm::select([&](u32 id, lv2_sema_t& sema) { - m_tree->AppendItem(node, fmt::format("Semaphore: ID = 0x%08x '%s', Count = %d, Max Count = %d, Waiters = %#zu", id, + m_tree->AppendItem(node, fmt::format("Semaphore: ID = 0x%08x '%s', Count = %d, Max count = %d, Waiters = %#zu", id, &name64(sema.name), sema.value.load(), sema.max, sema.sq.size())); }); } @@ -106,7 +106,7 @@ void KernelExplorer::Update() // Lightweight Mutexes if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Lightweight Mutexes (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Lightweight mutexes (%zu)", count)); idm::select([&](u32 id, lv2_lwmutex_t& lwm) { @@ -118,7 +118,7 @@ void KernelExplorer::Update() // Condition Variables if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Condition Variables (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Condition variables (%zu)", count)); idm::select([&](u32 id, lv2_cond_t& cond) { @@ -130,7 +130,7 @@ void KernelExplorer::Update() // Lightweight Condition Variables if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Lightweight Condition Variables (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Lightweight condition variables (%zu)", count)); idm::select([&](u32 id, lv2_lwcond_t& lwc) { @@ -146,7 +146,7 @@ void KernelExplorer::Update() idm::select([&](u32 id, lv2_event_queue_t& eq) { - m_tree->AppendItem(node, fmt::format("Event Queue: ID = 0x%08x '%s', %s, Key = %#llx, Events = %zu/%d, Waiters = %zu", id, + m_tree->AppendItem(node, fmt::format("Event queue: ID = 0x%08x '%s', %s, Key = %#llx, Events = %zu/%d, Waiters = %zu", id, &name64(eq.name), eq.type == SYS_SPU_QUEUE ? "SPU" : "PPU", eq.ipc_key, eq.events(), eq.size, eq.waiters())); }); } @@ -154,7 +154,7 @@ void KernelExplorer::Update() // Event Ports if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Event Ports (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Event ports (%zu)", count)); idm::select([&](u32 id, lv2_event_port_t& ep) { @@ -166,11 +166,11 @@ void KernelExplorer::Update() // Event Flags if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Event Flags (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Event flags (%zu)", count)); idm::select([&](u32 id, lv2_event_flag_t& ef) { - m_tree->AppendItem(node, fmt::format("Event Flag: ID = 0x%08x '%s', Type = 0x%x, Pattern = 0x%llx", id, + m_tree->AppendItem(node, fmt::format("Event flag: ID = 0x%08x '%s', Type = 0x%x, Pattern = 0x%llx", id, &name64(ef.name), ef.type, ef.pattern.load())); }); } @@ -178,7 +178,7 @@ void KernelExplorer::Update() // Reader/writer Locks if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Reader/writer Locks (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Reader/writer locks (%zu)", count)); idm::select([&](u32 id, lv2_rwlock_t&) { @@ -189,7 +189,7 @@ void KernelExplorer::Update() // PRX Libraries if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("PRX Libraries (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("PRX libraries (%zu)", count)); idm::select([&](u32 id, lv2_prx_t&) { @@ -200,22 +200,22 @@ void KernelExplorer::Update() // Memory Containers if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Memory Containers (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Memory containers (%zu)", count)); idm::select([&](u32 id, lv2_memory_container&) { - m_tree->AppendItem(node, fmt::format("Memory Container: ID = 0x%08x", id)); + m_tree->AppendItem(node, fmt::format("Memory container: ID = 0x%08x", id)); }); } // Memory Objects if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("Memory Objects (%zu)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("Memory objects (%zu)", count)); idm::select([&](u32 id, lv2_memory&) { - m_tree->AppendItem(node, fmt::format("Memory Object: ID = 0x%08x", id)); + m_tree->AppendItem(node, fmt::format("Memory object: ID = 0x%08x", id)); }); } @@ -233,11 +233,11 @@ void KernelExplorer::Update() // SPU Thread Groups if (const u32 count = idm::get_count()) { - const auto& node = m_tree->AppendItem(root, fmt::format("SPU Thread Groups (%d)", count)); + const auto& node = m_tree->AppendItem(root, fmt::format("SPU Thread groups (%d)", count)); idm::select([&](u32 id, lv2_spu_group_t& tg) { - m_tree->AppendItem(node, fmt::format("SPU Thread Group: ID = 0x%08x '%s'", id, + m_tree->AppendItem(node, fmt::format("SPU Thread group: ID = 0x%08x '%s'", id, tg.name.c_str())); }); } diff --git a/rpcs3/Gui/MainFrame.cpp b/rpcs3/Gui/MainFrame.cpp index f039bed464..d71dc734cb 100644 --- a/rpcs3/Gui/MainFrame.cpp +++ b/rpcs3/Gui/MainFrame.cpp @@ -67,7 +67,7 @@ wxString GetPaneName() } MainFrame::MainFrame() - : FrameBase(nullptr, wxID_ANY, "", "MainFrame", wxSize(900, 600)) + : FrameBase(nullptr, wxID_ANY, "", "Main frame", wxSize(900, 600)) , m_aui_mgr(this) , m_sys_menu_opened(false) { @@ -77,7 +77,7 @@ MainFrame::MainFrame() wxMenuBar* menubar = new wxMenuBar(); wxMenu* menu_boot = new wxMenu(); - menubar->Append(menu_boot, "&Boot"); + menubar->Append(menu_boot, "&File"); menu_boot->Append(id_boot_elf, "Boot &ELF / SELF file"); menu_boot->Append(id_boot_game, "Boot &game"); menu_boot->AppendSeparator(); @@ -90,28 +90,28 @@ MainFrame::MainFrame() menu_sys->Append(id_sys_pause, "&Pause")->Enable(false); menu_sys->Append(id_sys_stop, "&Stop\tCtrl + S")->Enable(false); menu_sys->AppendSeparator(); - menu_sys->Append(id_sys_send_open_menu, "Send &open system menu cmd")->Enable(false); + menu_sys->Append(id_sys_send_open_menu, "Press &PS button")->Enable(false); menu_sys->Append(id_sys_send_exit, "Send &exit cmd")->Enable(false); wxMenu* menu_conf = new wxMenu(); menubar->Append(menu_conf, "&Config"); menu_conf->Append(id_config_emu, "&Settings"); - menu_conf->Append(id_config_pad, "&PAD Settings"); + menu_conf->Append(id_config_pad, "&Controller settings"); menu_conf->AppendSeparator(); - menu_conf->Append(id_config_autopause_manager, "&Auto Pause Settings"); + menu_conf->Append(id_config_autopause_manager, "&Auto pause settings"); //menu_conf->AppendSeparator(); - //menu_conf->Append(id_config_vfs_manager, "Virtual &File System Manager"); - //menu_conf->Append(id_config_vhdd_manager, "Virtual &HDD Manager"); - //menu_conf->Append(id_config_savedata_manager, "Save &Data Utility"); + //menu_conf->Append(id_config_vfs_manager, "Virtual &File system manager"); + //menu_conf->Append(id_config_vhdd_manager, "Virtual &hard drive manager"); + //menu_conf->Append(id_config_savedata_manager, "Save &data utility"); wxMenu* menu_tools = new wxMenu(); menubar->Append(menu_tools, "&Tools"); - //menu_tools->Append(id_tools_compiler, "&ELF Compiler"); - menu_tools->Append(id_tools_cg_disasm, "&Cg Disasm")->Enable(); - menu_tools->Append(id_tools_kernel_explorer, "&Kernel Explorer")->Enable(false); - menu_tools->Append(id_tools_memory_viewer, "&Memory Viewer")->Enable(false); - menu_tools->Append(id_tools_rsx_debugger, "&RSX Debugger")->Enable(false); - menu_tools->Append(id_tools_string_search, "&String Search")->Enable(false); + //menu_tools->Append(id_tools_compiler, "&ELF compiler"); + menu_tools->Append(id_tools_cg_disasm, "&Cg disasm")->Enable(); + menu_tools->Append(id_tools_kernel_explorer, "&Kernel explorer")->Enable(false); + menu_tools->Append(id_tools_memory_viewer, "&Memory viewer")->Enable(false); + menu_tools->Append(id_tools_rsx_debugger, "&RSX debugger")->Enable(false); + menu_tools->Append(id_tools_string_search, "&String search")->Enable(false); menu_tools->AppendSeparator(); menu_tools->Append(id_tools_decrypt_sprx_libraries, "&Decrypt SPRX libraries"); @@ -127,7 +127,7 @@ MainFrame::MainFrame() m_game_viewer = new GameViewer(this); m_debugger_frame = new DebuggerPanel(this); - AddPane(m_game_viewer, "Game List", wxAUI_DOCK_CENTRE); + AddPane(m_game_viewer, "PS3 software", wxAUI_DOCK_CENTRE); AddPane(m_log_frame, "Log", wxAUI_DOCK_BOTTOM); AddPane(m_debugger_frame, "Debugger", wxAUI_DOCK_RIGHT); @@ -562,7 +562,7 @@ void MainFrame::UpdateUI(wxCommandEvent& event) // Emulation wxMenuItem& pause = *menubar.FindItem(id_sys_pause); wxMenuItem& stop = *menubar.FindItem(id_sys_stop); - pause.SetItemLabel(is_running ? "&Pause\tCtrl + P" : is_ready ? "&Start\tCtrl + E" : "&Resume\tCtrl + E"); + pause.SetItemLabel(is_running ? "&Pause\tCtrl + P" : is_ready ? "&Start\tCtrl + F" : "&Resume\tCtrl + F"); pause.Enable(!is_stopped); stop.Enable(!is_stopped); @@ -570,7 +570,7 @@ void MainFrame::UpdateUI(wxCommandEvent& event) wxMenuItem& send_exit = *menubar.FindItem(id_sys_send_exit); wxMenuItem& send_open_menu = *menubar.FindItem(id_sys_send_open_menu); bool enable_commands = !is_stopped; - send_open_menu.SetItemLabel(wxString::Format("Send &%s system menu cmd", (m_sys_menu_opened ? "close" : "open"))); + send_open_menu.SetItemLabel(wxString::Format("Press &PS buton %s", (m_sys_menu_opened ? "close" : "open"))); send_open_menu.Enable(enable_commands); send_exit.Enable(enable_commands); @@ -597,7 +597,7 @@ void MainFrame::OnKeyDown(wxKeyEvent& event) { switch(event.GetKeyCode()) { - case 'E': case 'e': if(Emu.IsPaused()) Emu.Resume(); else if(Emu.IsReady()) Emu.Run(); return; + case 'F': case 'f': if(Emu.IsPaused()) Emu.Resume(); else if(Emu.IsReady()) Emu.Run(); return; case 'P': case 'p': if(Emu.IsRunning()) Emu.Pause(); return; case 'S': case 's': if(!Emu.IsStopped()) Emu.Stop(); return; case 'R': case 'r': if(!Emu.GetPath().empty()) {Emu.Stop(); Emu.Run();} return; diff --git a/rpcs3/Gui/MemoryStringSearcher.cpp b/rpcs3/Gui/MemoryStringSearcher.cpp index 32ab97412a..600c789f1e 100644 --- a/rpcs3/Gui/MemoryStringSearcher.cpp +++ b/rpcs3/Gui/MemoryStringSearcher.cpp @@ -6,7 +6,7 @@ #include "MemoryStringSearcher.h" MemoryStringSearcher::MemoryStringSearcher(wxWindow* parent) - : wxDialog(parent, wxID_ANY, "String Searcher", wxDefaultPosition, wxSize(545, 64)) + : wxDialog(parent, wxID_ANY, "String searcher", wxDefaultPosition, wxSize(545, 64)) , exit(false) { this->SetBackgroundColour(wxColour(240,240,240)); diff --git a/rpcs3/Gui/MemoryViewer.cpp b/rpcs3/Gui/MemoryViewer.cpp index f62e57ec8c..33a1be7a66 100644 --- a/rpcs3/Gui/MemoryViewer.cpp +++ b/rpcs3/Gui/MemoryViewer.cpp @@ -5,7 +5,7 @@ #include "MemoryViewer.h" MemoryViewerPanel::MemoryViewerPanel(wxWindow* parent) - : wxDialog(parent, wxID_ANY, "Memory Viewer", wxDefaultPosition, wxSize(700, 450)) + : wxDialog(parent, wxID_ANY, "Memory viewer", wxDefaultPosition, wxSize(700, 450)) { exit = false; m_addr = 0; @@ -19,7 +19,7 @@ MemoryViewerPanel::MemoryViewerPanel(wxWindow* parent) wxBoxSizer* s_tools = new wxBoxSizer(wxHORIZONTAL); //Tools: Memory Viewer Options - wxStaticBoxSizer* s_tools_mem = new wxStaticBoxSizer(wxHORIZONTAL, this, "Memory Viewer Options"); + wxStaticBoxSizer* s_tools_mem = new wxStaticBoxSizer(wxHORIZONTAL, this, "Memory viewer options"); wxStaticBoxSizer* s_tools_mem_addr = new wxStaticBoxSizer(wxHORIZONTAL, this, "Address"); t_addr = new wxTextCtrl(this, wxID_ANY, "00000000", wxDefaultPosition, wxSize(60, -1), wxTE_PROCESS_ENTER); @@ -46,7 +46,7 @@ MemoryViewerPanel::MemoryViewerPanel(wxWindow* parent) s_tools_mem->Add(s_tools_mem_buttons); //Tools: Raw Image Preview Options - wxStaticBoxSizer* s_tools_img = new wxStaticBoxSizer(wxHORIZONTAL, this, "Raw Image Preview"); + wxStaticBoxSizer* s_tools_img = new wxStaticBoxSizer(wxHORIZONTAL, this, "Raw image preview"); wxStaticBoxSizer* s_tools_img_size = new wxStaticBoxSizer(wxHORIZONTAL, this, "Size"); sc_img_size_x = new wxSpinCtrl(this, wxID_ANY, "256", wxDefaultPosition, wxSize(60, -1)); @@ -223,7 +223,7 @@ void MemoryViewerPanel::ShowMemory() void MemoryViewerPanel::ShowImage(wxWindow* parent, u32 addr, int mode, u32 width, u32 height, bool flipv) { - wxString title = wxString::Format("Raw Image @ 0x%x", addr); + wxString title = wxString::Format("Raw image @ 0x%x", addr); wxDialog* f_image_viewer = new wxDialog(parent, wxID_ANY, title, wxDefaultPosition, wxDefaultSize, wxMINIMIZE_BOX | wxCLOSE_BOX | wxCAPTION | wxCLIP_CHILDREN); f_image_viewer->SetBackgroundColour(wxColour(240,240,240)); //This fix the ugly background color under Windows diff --git a/rpcs3/Gui/PADManager.cpp b/rpcs3/Gui/PADManager.cpp index 4ad984487f..a78c2c3c22 100644 --- a/rpcs3/Gui/PADManager.cpp +++ b/rpcs3/Gui/PADManager.cpp @@ -8,7 +8,7 @@ extern KeyboardPadConfig g_kbpad_config; PADManager::PADManager(wxWindow* parent) - : wxDialog(parent, wxID_ANY, "PAD Settings") + : wxDialog(parent, wxID_ANY, "Controller settings") , m_button_id(0) , m_key_pressed(false) { @@ -18,20 +18,20 @@ PADManager::PADManager(wxWindow* parent) wxBoxSizer* s_subpanel = new wxBoxSizer(wxVERTICAL); wxBoxSizer* s_subpanel2 = new wxBoxSizer(wxVERTICAL); - // Left Analog Stick - wxStaticBoxSizer* s_round_stick_l = new wxStaticBoxSizer(wxVERTICAL, this, "Left Analog Stick"); + // Left analog Stick + wxStaticBoxSizer* s_round_stick_l = new wxStaticBoxSizer(wxVERTICAL, this, "Left analog stick"); wxBoxSizer* s_subpanel_lstick_1 = new wxBoxSizer(wxVERTICAL); wxBoxSizer* s_subpanel_lstick_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* s_subpanel_lstick_3 = new wxBoxSizer(wxVERTICAL); - // D-Pad - wxStaticBoxSizer* s_round_pad_controls = new wxStaticBoxSizer(wxVERTICAL, this, "D-Pad"); + // Directional pad + wxStaticBoxSizer* s_round_pad_controls = new wxStaticBoxSizer(wxVERTICAL, this, "Directional pad"); wxBoxSizer* s_subpanel_pad_1 = new wxBoxSizer(wxVERTICAL); wxBoxSizer* s_subpanel_pad_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* s_subpanel_pad_3 = new wxBoxSizer(wxVERTICAL); - // Left shifts - wxStaticBoxSizer* s_round_pad_shifts_l = new wxStaticBoxSizer(wxVERTICAL, this, "Left Shifts"); + // L buttons + wxStaticBoxSizer* s_round_pad_shifts_l = new wxStaticBoxSizer(wxVERTICAL, this, "L buttons"); wxStaticBoxSizer* s_round_pad_l1 = new wxStaticBoxSizer(wxVERTICAL, this, "L1"); wxStaticBoxSizer* s_round_pad_l2 = new wxStaticBoxSizer(wxVERTICAL, this, "L2"); wxStaticBoxSizer* s_round_pad_l3 = new wxStaticBoxSizer(wxVERTICAL, this, "L3"); @@ -41,8 +41,8 @@ PADManager::PADManager(wxWindow* parent) wxStaticBoxSizer* s_round_pad_select = new wxStaticBoxSizer(wxVERTICAL, this, "Select"); wxStaticBoxSizer* s_round_pad_start = new wxStaticBoxSizer(wxVERTICAL, this, "Start"); - // Right shifts - wxStaticBoxSizer* s_round_pad_shifts_r = new wxStaticBoxSizer(wxVERTICAL, this, "Right Shifts"); + // R buttons + wxStaticBoxSizer* s_round_pad_shifts_r = new wxStaticBoxSizer(wxVERTICAL, this, "R buttons"); wxStaticBoxSizer* s_round_pad_r1 = new wxStaticBoxSizer(wxVERTICAL, this, "R1"); wxStaticBoxSizer* s_round_pad_r2 = new wxStaticBoxSizer(wxVERTICAL, this, "R2"); wxStaticBoxSizer* s_round_pad_r3 = new wxStaticBoxSizer(wxVERTICAL, this, "R3"); @@ -57,8 +57,8 @@ PADManager::PADManager(wxWindow* parent) wxBoxSizer* s_subpanel_buttons_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* s_subpanel_buttons_3 = new wxBoxSizer(wxVERTICAL); - // Right Analog Stick - wxStaticBoxSizer* s_round_stick_r = new wxStaticBoxSizer(wxVERTICAL, this, "Right Analog Stick"); + // Right analog stick + wxStaticBoxSizer* s_round_stick_r = new wxStaticBoxSizer(wxVERTICAL, this, "Right analog stick"); wxBoxSizer* s_subpanel_rstick_1 = new wxBoxSizer(wxVERTICAL); wxBoxSizer* s_subpanel_rstick_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* s_subpanel_rstick_3 = new wxBoxSizer(wxVERTICAL); @@ -119,13 +119,13 @@ PADManager::PADManager(wxWindow* parent) s_subpanel_lstick_2->Add(b_right_lstick); s_subpanel_lstick_3->Add(b_down_lstick); - // D-Pad + // Directional pad s_subpanel_pad_1->Add(b_up); s_subpanel_pad_2->Add(b_left); s_subpanel_pad_2->Add(b_right); s_subpanel_pad_3->Add(b_down); - // Left shifts + // L button s_round_pad_l1->Add(b_shift_l1); s_round_pad_l2->Add(b_shift_l2); s_round_pad_l3->Add(b_shift_l3); @@ -134,7 +134,7 @@ PADManager::PADManager(wxWindow* parent) s_round_pad_select->Add(b_select); s_round_pad_start->Add(b_start); - // Right shifts + // R button s_round_pad_r1->Add(b_shift_r1); s_round_pad_r2->Add(b_shift_r2); s_round_pad_r3->Add(b_shift_r3); diff --git a/rpcs3/Gui/RSXDebugger.cpp b/rpcs3/Gui/RSXDebugger.cpp index 7d0e213b3a..e7bfb58d15 100644 --- a/rpcs3/Gui/RSXDebugger.cpp +++ b/rpcs3/Gui/RSXDebugger.cpp @@ -20,7 +20,7 @@ enum GCMEnumTypes }; RSXDebugger::RSXDebugger(wxWindow* parent) - : wxDialog(parent, wxID_ANY, "RSX Debugger", wxDefaultPosition, wxSize(700, 450)) + : wxDialog(parent, wxID_ANY, "RSX debugger", wxDefaultPosition, wxSize(700, 450)) , m_item_count(37) , m_addr(0x0) , m_cur_texture(0) @@ -33,7 +33,7 @@ RSXDebugger::RSXDebugger(wxWindow* parent) wxBoxSizer* s_tools = new wxBoxSizer(wxVERTICAL); // Controls - wxStaticBoxSizer* s_controls = new wxStaticBoxSizer(wxHORIZONTAL, this, "RSX Debugger Controls"); + wxStaticBoxSizer* s_controls = new wxStaticBoxSizer(wxHORIZONTAL, this, "RSX debugger controls"); // Controls: Address wxStaticBoxSizer* s_controls_addr = new wxStaticBoxSizer(wxHORIZONTAL, this, "Address:"); @@ -84,9 +84,9 @@ RSXDebugger::RSXDebugger(wxWindow* parent) wxPanel* p_texture = new wxPanel(nb_rsx, wxID_ANY); wxPanel* p_settings = new wxPanel(nb_rsx, wxID_ANY); - nb_rsx->AddPage(p_commands, "RSX Commands"); - nb_rsx->AddPage(p_captured_frame, "Captured Frame"); - nb_rsx->AddPage(p_captured_draw_calls, "Captured Draw Calls"); + nb_rsx->AddPage(p_commands, "RSX commands"); + nb_rsx->AddPage(p_captured_frame, "Captured frame"); + nb_rsx->AddPage(p_captured_draw_calls, "Capturded draw calls"); nb_rsx->AddPage(p_flags, "Flags"); nb_rsx->AddPage(p_lightning, "Lightning"); @@ -177,12 +177,12 @@ RSXDebugger::RSXDebugger(wxWindow* parent) //Buffers wxBoxSizer* s_buffers1 = new wxBoxSizer(wxVERTICAL); wxBoxSizer* s_buffers2 = new wxBoxSizer(wxVERTICAL); - wxStaticBoxSizer* s_buffers_colorA = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color Buffer A"); - wxStaticBoxSizer* s_buffers_colorB = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color Buffer B"); - wxStaticBoxSizer* s_buffers_colorC = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color Buffer C"); - wxStaticBoxSizer* s_buffers_colorD = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color Buffer D"); - wxStaticBoxSizer* s_buffers_depth = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Depth Buffer"); - wxStaticBoxSizer* s_buffers_stencil = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Stencil Buffer"); + wxStaticBoxSizer* s_buffers_colorA = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color buffer A"); + wxStaticBoxSizer* s_buffers_colorB = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color buffer B"); + wxStaticBoxSizer* s_buffers_colorC = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color buffer C"); + wxStaticBoxSizer* s_buffers_colorD = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Color buffer D"); + wxStaticBoxSizer* s_buffers_depth = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Depth buffer"); + wxStaticBoxSizer* s_buffers_stencil = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Stencil buffer"); wxStaticBoxSizer* s_buffers_text = new wxStaticBoxSizer(wxHORIZONTAL, p_buffers, "Texture"); //Buffers and textures @@ -790,7 +790,7 @@ void RSXDebugger::GetFlags() LIST_FLAGS_ADD("Stencil test", render->m_set_stencil_test); LIST_FLAGS_ADD("Primitive restart", render->m_set_restart_index); LIST_FLAGS_ADD("Two sided lighting", render->m_set_two_side_light_enable); - LIST_FLAGS_ADD("Point Sprite", render->m_set_point_sprite_control); + LIST_FLAGS_ADD("Point sprite", render->m_set_point_sprite_control); LIST_FLAGS_ADD("Lighting ", render->m_set_specular); */ @@ -885,11 +885,11 @@ void RSXDebugger::GetSettings() render->m_color_mask_g, render->m_color_mask_b, render->m_color_mask_a)); - LIST_SETTINGS_ADD("Context DMA Color A", wxString::Format("0x%x", render->m_context_dma_color_a)); - LIST_SETTINGS_ADD("Context DMA Color B", wxString::Format("0x%x", render->m_context_dma_color_b)); - LIST_SETTINGS_ADD("Context DMA Color C", wxString::Format("0x%x", render->m_context_dma_color_c)); - LIST_SETTINGS_ADD("Context DMA Color D", wxString::Format("0x%x", render->m_context_dma_color_d)); - LIST_SETTINGS_ADD("Context DMA Zeta", wxString::Format("0x%x", render->m_context_dma_z)); + LIST_SETTINGS_ADD("Context DMA color A", wxString::Format("0x%x", render->m_context_dma_color_a)); + LIST_SETTINGS_ADD("Context DMA color B", wxString::Format("0x%x", render->m_context_dma_color_b)); + LIST_SETTINGS_ADD("Context DMA color C", wxString::Format("0x%x", render->m_context_dma_color_c)); + LIST_SETTINGS_ADD("Context DMA color D", wxString::Format("0x%x", render->m_context_dma_color_d)); + LIST_SETTINGS_ADD("Context DMA zeta", wxString::Format("0x%x", render->m_context_dma_z)); LIST_SETTINGS_ADD("Depth bounds", wxString::Format("Min:%f, Max:%f", render->m_depth_bounds_min, render->m_depth_bounds_max)); LIST_SETTINGS_ADD("Depth func", !(render->m_set_depth_func) ? "(none)" : wxString::Format("0x%x (%s)", render->m_depth_func, @@ -905,16 +905,16 @@ void RSXDebugger::GetSettings() LIST_SETTINGS_ADD("Stencil func", !(render->m_set_stencil_func) ? "(none)" : wxString::Format("0x%x (%s)", render->m_stencil_func, ParseGCMEnum(render->m_stencil_func, CELL_GCM_ENUM))); - LIST_SETTINGS_ADD("Surface Pitch A", wxString::Format("0x%x", render->m_surface_pitch_a)); - LIST_SETTINGS_ADD("Surface Pitch B", wxString::Format("0x%x", render->m_surface_pitch_b)); - LIST_SETTINGS_ADD("Surface Pitch C", wxString::Format("0x%x", render->m_surface_pitch_c)); - LIST_SETTINGS_ADD("Surface Pitch D", wxString::Format("0x%x", render->m_surface_pitch_d)); - LIST_SETTINGS_ADD("Surface Pitch Z", wxString::Format("0x%x", render->m_surface_pitch_z)); - LIST_SETTINGS_ADD("Surface Offset A", wxString::Format("0x%x", render->m_surface_offset_a)); - LIST_SETTINGS_ADD("Surface Offset B", wxString::Format("0x%x", render->m_surface_offset_b)); - LIST_SETTINGS_ADD("Surface Offset C", wxString::Format("0x%x", render->m_surface_offset_c)); - LIST_SETTINGS_ADD("Surface Offset D", wxString::Format("0x%x", render->m_surface_offset_d)); - LIST_SETTINGS_ADD("Surface Offset Z", wxString::Format("0x%x", render->m_surface_offset_z)); + LIST_SETTINGS_ADD("Surface pitch A", wxString::Format("0x%x", render->m_surface_pitch_a)); + LIST_SETTINGS_ADD("Surface pitch B", wxString::Format("0x%x", render->m_surface_pitch_b)); + LIST_SETTINGS_ADD("Surface pitch C", wxString::Format("0x%x", render->m_surface_pitch_c)); + LIST_SETTINGS_ADD("Surface pitch D", wxString::Format("0x%x", render->m_surface_pitch_d)); + LIST_SETTINGS_ADD("Surface pitch Z", wxString::Format("0x%x", render->m_surface_pitch_z)); + LIST_SETTINGS_ADD("Surface offset A", wxString::Format("0x%x", render->m_surface_offset_a)); + LIST_SETTINGS_ADD("Surface offset B", wxString::Format("0x%x", render->m_surface_offset_b)); + LIST_SETTINGS_ADD("Surface offset C", wxString::Format("0x%x", render->m_surface_offset_c)); + LIST_SETTINGS_ADD("Surface offset D", wxString::Format("0x%x", render->m_surface_offset_d)); + LIST_SETTINGS_ADD("Surface offset Z", wxString::Format("0x%x", render->m_surface_offset_z)); LIST_SETTINGS_ADD("Viewport", wxString::Format("X:%d, Y:%d, W:%d, H:%d", render->m_viewport_x, render->m_viewport_y, @@ -972,8 +972,8 @@ void RSXDebugger::SetPrograms(wxListEvent& event) // wxDEFAULT_DIALOG_STYLE | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER); //wxBoxSizer& s_panel = *new wxBoxSizer(wxHORIZONTAL); - //wxStaticBoxSizer& s_vp_box = *new wxStaticBoxSizer(wxHORIZONTAL, &d_editor, "Vertex Program"); - //wxStaticBoxSizer& s_fp_box = *new wxStaticBoxSizer(wxHORIZONTAL, &d_editor, "Fragment Program"); + //wxStaticBoxSizer& s_vp_box = *new wxStaticBoxSizer(wxHORIZONTAL, &d_editor, "Vertex program"); + //wxStaticBoxSizer& s_fp_box = *new wxStaticBoxSizer(wxHORIZONTAL, &d_editor, "Fragment program"); //wxTextCtrl* t_vp_edit = new wxTextCtrl(&d_editor, wxID_ANY, program.vp_shader, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE); //wxTextCtrl* t_fp_edit = new wxTextCtrl(&d_editor, wxID_ANY, program.fp_shader, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE); //t_vp_edit->SetFont(wxFont(8, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)); @@ -1017,10 +1017,10 @@ const char* RSXDebugger::ParseGCMEnum(u32 value, u32 type) case 0x0200: return "Never"; case 0x0201: return "Less"; case 0x0202: return "Equal"; - case 0x0203: return "Less or Equal"; + case 0x0203: return "Less or equal"; case 0x0204: return "Greater"; - case 0x0205: return "Not Equal"; - case 0x0206: return "Greater or Equal"; + case 0x0205: return "Not equal"; + case 0x0206: return "Greater or equal"; case 0x0207: return "Always"; case 0x0: return "Zero"; @@ -1043,12 +1043,12 @@ const char* RSXDebugger::ParseGCMEnum(u32 value, u32 type) case 0x8007: return "Min"; case 0x8008: return "Max"; case 0x800A: return "Substract"; - case 0x800B: return "Reverse Substract"; - case 0xF005: return "Reverse Substract Signed"; - case 0xF006: return "Add Signed"; - case 0xF007: return "Reverse Add Signed"; + case 0x800B: return "Reverse substract"; + case 0xF005: return "Reverse substract signed"; + case 0xF006: return "Add signed"; + case 0xF007: return "Reverse add signed"; - default: return "Wrong Value!"; + default: return "Wrong value!"; } } case CELL_GCM_PRIMITIVE_ENUM: @@ -1066,7 +1066,7 @@ const char* RSXDebugger::ParseGCMEnum(u32 value, u32 type) case 9: return "QUAD_STRIP"; case 10: return "POLYGON"; - default: return "Wrong Value!"; + default: return "Wrong value!"; } } default: return "Unknown!"; @@ -1136,7 +1136,7 @@ wxString RSXDebugger::DisAsmCommand(u32 cmd, u32 count, u32 currentAddr, u32 ioA break; case_16(NV4097_SET_TEXTURE_OFFSET, 0x20): - DISASM("Texture Offset[%d]: %08x", index, (u32)args[0]); + DISASM("Texture offset[%d]: %08x", index, (u32)args[0]); switch ((args[1] & 0x3) - 1) { case CELL_GCM_LOCATION_LOCAL: DISASM("(Local memory);"); break; @@ -1162,7 +1162,7 @@ wxString RSXDebugger::DisAsmCommand(u32 cmd, u32 count, u32 currentAddr, u32 ioA if((cmd & RSX_METHOD_NON_INCREMENT_CMD_MASK) == RSX_METHOD_NON_INCREMENT_CMD) { - DISASM("Non Increment cmd"); + DISASM("Non increment cmd"); } DISASM("[0x%08x(", cmd); diff --git a/rpcs3/Gui/SettingsDialog.cpp b/rpcs3/Gui/SettingsDialog.cpp index aa882ddf27..afadec308f 100644 --- a/rpcs3/Gui/SettingsDialog.cpp +++ b/rpcs3/Gui/SettingsDialog.cpp @@ -257,21 +257,21 @@ SettingsDialog::SettingsDialog(wxWindow* parent) s_module_search_box->Bind(wxEVT_TEXT, &SettingsDialog::OnSearchBoxTextChanged, this); // Graphics - wxStaticBoxSizer* s_round_gs_render = new wxStaticBoxSizer(wxVERTICAL, p_graphics, "Render"); + wxStaticBoxSizer* s_round_gs_render = new wxStaticBoxSizer(wxVERTICAL, p_graphics, "Rendering API"); wxStaticBoxSizer* s_round_gs_d3d_adapter = new wxStaticBoxSizer(wxVERTICAL, p_graphics, "D3D Adapter"); wxStaticBoxSizer* s_round_gs_res = new wxStaticBoxSizer(wxVERTICAL, p_graphics, "Resolution"); wxStaticBoxSizer* s_round_gs_aspect = new wxStaticBoxSizer(wxVERTICAL, p_graphics, "Aspect ratio"); wxStaticBoxSizer* s_round_gs_frame_limit = new wxStaticBoxSizer(wxVERTICAL, p_graphics, "Frame limit"); // Input / Output - wxStaticBoxSizer* s_round_io_pad_handler = new wxStaticBoxSizer(wxVERTICAL, p_io, "Pad Handler"); - wxStaticBoxSizer* s_round_io_keyboard_handler = new wxStaticBoxSizer(wxVERTICAL, p_io, "Keyboard Handler"); - wxStaticBoxSizer* s_round_io_mouse_handler = new wxStaticBoxSizer(wxVERTICAL, p_io, "Mouse Handler"); + wxStaticBoxSizer* s_round_io_pad_handler = new wxStaticBoxSizer(wxVERTICAL, p_io, "Controller handler"); + wxStaticBoxSizer* s_round_io_keyboard_handler = new wxStaticBoxSizer(wxVERTICAL, p_io, "Keyboard handler"); + wxStaticBoxSizer* s_round_io_mouse_handler = new wxStaticBoxSizer(wxVERTICAL, p_io, "Mouse handler"); wxStaticBoxSizer* s_round_io_camera = new wxStaticBoxSizer(wxVERTICAL, p_io, "Camera"); wxStaticBoxSizer* s_round_io_camera_type = new wxStaticBoxSizer(wxVERTICAL, p_io, "Camera type"); // Audio - wxStaticBoxSizer* s_round_audio_out = new wxStaticBoxSizer(wxVERTICAL, p_audio, "Audio Out"); + wxStaticBoxSizer* s_round_audio_out = new wxStaticBoxSizer(wxVERTICAL, p_audio, "Audio out"); // Networking wxStaticBoxSizer* s_round_net_status = new wxStaticBoxSizer(wxVERTICAL, p_networking, "Connection status"); @@ -297,23 +297,23 @@ SettingsDialog::SettingsDialog(wxWindow* parent) wxComboBox* cbox_sys_lang = new wxComboBox(p_system, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, NULL, wxCB_READONLY); wxCheckBox* chbox_core_hook_stfunc = new wxCheckBox(p_core, wxID_ANY, "Hook static functions"); - wxCheckBox* chbox_core_load_liblv2 = new wxCheckBox(p_core, wxID_ANY, "Load liblv2.sprx only"); + wxCheckBox* chbox_core_load_liblv2 = new wxCheckBox(p_core, wxID_ANY, "Load liblv2.sprx"); wxCheckBox* chbox_vfs_enable_host_root = new wxCheckBox(p_system, wxID_ANY, "Enable /host_root/"); wxCheckBox* chbox_gs_log_prog = new wxCheckBox(p_graphics, wxID_ANY, "Log shader programs"); - wxCheckBox* chbox_gs_dump_depth = new wxCheckBox(p_graphics, wxID_ANY, "Write Depth Buffer"); - wxCheckBox* chbox_gs_dump_color = new wxCheckBox(p_graphics, wxID_ANY, "Write Color Buffers"); - wxCheckBox* chbox_gs_read_color = new wxCheckBox(p_graphics, wxID_ANY, "Read Color Buffers"); - wxCheckBox* chbox_gs_read_depth = new wxCheckBox(p_graphics, wxID_ANY, "Read Depth Buffer"); + wxCheckBox* chbox_gs_dump_depth = new wxCheckBox(p_graphics, wxID_ANY, "Write depth buffer"); + wxCheckBox* chbox_gs_dump_color = new wxCheckBox(p_graphics, wxID_ANY, "Write color buffers"); + wxCheckBox* chbox_gs_read_color = new wxCheckBox(p_graphics, wxID_ANY, "Read color buffers"); + wxCheckBox* chbox_gs_read_depth = new wxCheckBox(p_graphics, wxID_ANY, "Read depth buffer"); wxCheckBox* chbox_gs_vsync = new wxCheckBox(p_graphics, wxID_ANY, "VSync"); - wxCheckBox* chbox_gs_debug_output = new wxCheckBox(p_graphics, wxID_ANY, "Debug Output"); + wxCheckBox* chbox_gs_debug_output = new wxCheckBox(p_graphics, wxID_ANY, "Debug output"); wxCheckBox* chbox_gs_overlay = new wxCheckBox(p_graphics, wxID_ANY, "Debug overlay"); - wxCheckBox* chbox_gs_gl_legacy_buffers = new wxCheckBox(p_graphics, wxID_ANY, "Use Legacy OpenGL Buffers"); + wxCheckBox* chbox_gs_gl_legacy_buffers = new wxCheckBox(p_graphics, wxID_ANY, "Use legacy OpenGL buffers"); wxCheckBox* chbox_audio_dump = new wxCheckBox(p_audio, wxID_ANY, "Dump to file"); - wxCheckBox* chbox_audio_conv = new wxCheckBox(p_audio, wxID_ANY, "Convert to 16 bit"); + wxCheckBox* chbox_audio_conv = new wxCheckBox(p_audio, wxID_ANY, "Convert to 16-bit"); wxCheckBox* chbox_hle_exitonstop = new wxCheckBox(p_misc, wxID_ANY, "Exit RPCS3 when process finishes"); wxCheckBox* chbox_hle_always_start = new wxCheckBox(p_misc, wxID_ANY, "Always start after boot"); - wxCheckBox* chbox_dbg_ap_systemcall = new wxCheckBox(p_misc, wxID_ANY, "Auto Pause at System Call"); - wxCheckBox* chbox_dbg_ap_functioncall = new wxCheckBox(p_misc, wxID_ANY, "Auto Pause at Function Call"); + wxCheckBox* chbox_dbg_ap_systemcall = new wxCheckBox(p_misc, wxID_ANY, "Automatically pause at system call"); + wxCheckBox* chbox_dbg_ap_functioncall = new wxCheckBox(p_misc, wxID_ANY, "Automatically pause at function call"); { // Sort string vector alphabetically @@ -357,12 +357,12 @@ SettingsDialog::SettingsDialog(wxWindow* parent) lle_module_list_unselected.clear(); } - radiobox_pad_helper ppu_decoder_modes({ "Core", "PPU Decoder" }); - rbox_ppu_decoder = new wxRadioBox(p_core, wxID_ANY, "PPU Decoder", wxDefaultPosition, wxSize(-1, -1), ppu_decoder_modes, 1); + radiobox_pad_helper ppu_decoder_modes({ "Core", "PPU decoder" }); + rbox_ppu_decoder = new wxRadioBox(p_core, wxID_ANY, "PPU decoder", wxDefaultPosition, wxSize(-1, -1), ppu_decoder_modes, 1); pads.emplace_back(std::make_unique(std::move(ppu_decoder_modes), rbox_ppu_decoder)); - radiobox_pad_helper spu_decoder_modes({ "Core", "SPU Decoder" }); - rbox_spu_decoder = new wxRadioBox(p_core, wxID_ANY, "SPU Decoder", wxDefaultPosition, wxSize(-1, -1), spu_decoder_modes, 1); + radiobox_pad_helper spu_decoder_modes({ "Core", "SPU decoder" }); + rbox_spu_decoder = new wxRadioBox(p_core, wxID_ANY, "SPU decoder", wxDefaultPosition, wxSize(-1, -1), spu_decoder_modes, 1); pads.emplace_back(std::make_unique(std::move(spu_decoder_modes), rbox_spu_decoder)); rbox_spu_decoder->Enable(3, false); // TODO @@ -371,25 +371,25 @@ SettingsDialog::SettingsDialog(wxWindow* parent) pads.emplace_back(std::make_unique(cfg_location{ "VFS", "Enable /host_root/" }, chbox_vfs_enable_host_root)); - pads.emplace_back(std::make_unique(cfg_location{ "Video", "Renderer" }, cbox_gs_render)); + pads.emplace_back(std::make_unique(cfg_location{ "Video", "Rendering API" }, cbox_gs_render)); pads.emplace_back(std::make_unique(cfg_location{ "Video", "Resolution" }, cbox_gs_resolution)); pads.emplace_back(std::make_unique(cfg_location{ "Video", "Aspect ratio" }, cbox_gs_aspect)); pads.emplace_back(std::make_unique(cfg_location{ "Video", "Frame limit" }, cbox_gs_frame_limit)); pads.emplace_back(std::make_unique(cfg_location{ "Video", "Log shader programs" }, chbox_gs_log_prog)); - pads.emplace_back(std::make_unique(cfg_location{ "Video", "Write Depth Buffer" }, chbox_gs_dump_depth)); - pads.emplace_back(std::make_unique(cfg_location{ "Video", "Write Color Buffers" }, chbox_gs_dump_color)); - pads.emplace_back(std::make_unique(cfg_location{ "Video", "Read Color Buffers" }, chbox_gs_read_color)); - pads.emplace_back(std::make_unique(cfg_location{ "Video", "Read Depth Buffer" }, chbox_gs_read_depth)); + pads.emplace_back(std::make_unique(cfg_location{ "Video", "Write depth buffer" }, chbox_gs_dump_depth)); + pads.emplace_back(std::make_unique(cfg_location{ "Video", "Write color buffers" }, chbox_gs_dump_color)); + pads.emplace_back(std::make_unique(cfg_location{ "Video", "Read color buffers" }, chbox_gs_read_color)); + pads.emplace_back(std::make_unique(cfg_location{ "Video", "Read depth buffer" }, chbox_gs_read_depth)); pads.emplace_back(std::make_unique(cfg_location{ "Video", "VSync" }, chbox_gs_vsync)); pads.emplace_back(std::make_unique(cfg_location{ "Video", "Debug output" }, chbox_gs_debug_output)); pads.emplace_back(std::make_unique(cfg_location{ "Video", "Debug overlay" }, chbox_gs_overlay)); - pads.emplace_back(std::make_unique(cfg_location{ "Video", "Use Legacy OpenGL Buffers (Debug)" }, chbox_gs_gl_legacy_buffers)); + pads.emplace_back(std::make_unique(cfg_location{ "Video", "Use legacy OpenGL buffers (Debug)" }, chbox_gs_gl_legacy_buffers)); pads.emplace_back(std::make_unique(cfg_location{ "Audio", "Renderer" }, cbox_audio_out)); pads.emplace_back(std::make_unique(cfg_location{ "Audio", "Dump to file" }, chbox_audio_dump)); - pads.emplace_back(std::make_unique(cfg_location{ "Audio", "Convert to 16 bit" }, chbox_audio_conv)); + pads.emplace_back(std::make_unique(cfg_location{ "Audio", "Convert to 16-bit" }, chbox_audio_conv)); - pads.emplace_back(std::make_unique(cfg_location{ "Input/Output", "Pad" }, cbox_pad_handler)); + pads.emplace_back(std::make_unique(cfg_location{ "Input/Output", "Controller" }, cbox_pad_handler)); pads.emplace_back(std::make_unique(cfg_location{ "Input/Output", "Keyboard" }, cbox_keyboard_handler)); pads.emplace_back(std::make_unique(cfg_location{ "Input/Output", "Mouse" }, cbox_mouse_handler)); pads.emplace_back(std::make_unique(cfg_location{ "Input/Output", "Camera" }, cbox_camera)); @@ -401,8 +401,8 @@ SettingsDialog::SettingsDialog(wxWindow* parent) pads.emplace_back(std::make_unique(cfg_location{ "Miscellaneous", "Exit RPCS3 when process finishes" }, chbox_hle_exitonstop)); pads.emplace_back(std::make_unique(cfg_location{ "Miscellaneous", "Always start after boot" }, chbox_hle_always_start)); - pads.emplace_back(std::make_unique(cfg_location{ "Miscellaneous", "Auto Pause at System Call" }, chbox_dbg_ap_systemcall)); - pads.emplace_back(std::make_unique(cfg_location{ "Miscellaneous", "Auto Pause at Function Call" }, chbox_dbg_ap_functioncall)); + pads.emplace_back(std::make_unique(cfg_location{ "Miscellaneous", "Automatically pause at system call" }, chbox_dbg_ap_systemcall)); + pads.emplace_back(std::make_unique(cfg_location{ "Miscellaneous", "Automatically pause at function call" }, chbox_dbg_ap_functioncall)); #ifdef _MSC_VER Microsoft::WRL::ComPtr dxgi_factory; diff --git a/rpcs3/rpcs3.cpp b/rpcs3/rpcs3.cpp index 594f465a71..47020d34a2 100644 --- a/rpcs3/rpcs3.cpp +++ b/rpcs3/rpcs3.cpp @@ -81,7 +81,7 @@ cfg::map_entry()>> g_cfg_mouse_h { "Basic", &std::make_shared }, }); -cfg::map_entry()>> g_cfg_pad_handler(cfg::root.io, "Pad", "Keyboard", +cfg::map_entry()>> g_cfg_pad_handler(cfg::root.io, "Controller", "Keyboard", { { "Null", &std::make_shared }, { "Keyboard", &std::make_shared }, @@ -90,12 +90,12 @@ cfg::map_entry()>> g_cfg_pad_handl #endif }); -cfg::map_entry()>> g_cfg_gs_render(cfg::root.video, "Renderer", "OpenGL", +cfg::map_entry()>> g_cfg_gs_render(cfg::root.video, "Rendering API", "OpenGL", { { "Null", &std::make_shared }, { "OpenGL", &std::make_shared }, #ifdef _MSC_VER - { "D3D12", &std::make_shared }, + { "DirectX 12", &std::make_shared }, #endif #ifdef _WIN32 { "Vulkan", &std::make_shared },