#pragma once #include #include #include #include "rpcs3/Ini.h" #include "Emu/GameInfo.h" #include "Utilities/Log.h" struct Column { u32 pos; u32 width; bool shown; std::vector data; const std::string name; const u32 def_pos; const u32 def_width; Column(const u32 _def_pos, const u32 _def_width, const std::string& _name) : def_pos(_def_pos) , def_width(_def_width) , pos(_def_pos) , width(_def_width) , shown(true) , name(_name) { data.clear(); } }; struct ColumnsArr { std::vector m_columns; ColumnsArr() { Init(); } std::vector GetSortedColumnsByPos() { std::vector arr; for(u32 pos=0; pos columns = GetSortedColumnsByPos(); for(u32 c=0; cshown) { pos++; continue; } if(columns[c]->pos != pos) continue; return columns[c]; } return NULL; } public: Column* m_col_icon; Column* m_col_name; Column* m_col_serial; Column* m_col_fw; Column* m_col_app_ver; Column* m_col_category; Column* m_col_path; wxImageList* m_img_list; std::vector m_icon_indexes; void Init() { m_img_list = new wxImageList(80, 44); m_columns.clear(); m_columns.emplace_back(m_columns.size(), 90, "Icon"); m_columns.emplace_back(m_columns.size(), 160, "Name"); m_columns.emplace_back(m_columns.size(), 85, "Serial"); m_columns.emplace_back(m_columns.size(), 55, "FW"); m_columns.emplace_back(m_columns.size(), 55, "App version"); m_columns.emplace_back(m_columns.size(), 75, "Category"); m_columns.emplace_back(m_columns.size(), 160, "Path"); m_col_icon = &m_columns[0]; m_col_name = &m_columns[1]; m_col_serial = &m_columns[2]; m_col_fw = &m_columns[3]; m_col_app_ver = &m_columns[4]; m_col_category = &m_columns[5]; m_col_path = &m_columns[6]; } void Update(const std::vector& game_data) { m_col_icon->data.clear(); m_col_name->data.clear(); m_col_serial->data.clear(); m_col_fw->data.clear(); m_col_app_ver->data.clear(); m_col_category->data.clear(); m_col_path->data.clear(); m_icon_indexes.clear(); if(m_columns.size() == 0) return; for(const auto& game : game_data) { m_col_icon->data.push_back(game.icon_path); m_col_name->data.push_back(game.name); m_col_serial->data.push_back(game.serial); m_col_fw->data.push_back(game.fw); m_col_app_ver->data.push_back(game.app_ver); m_col_category->data.push_back(game.category); m_col_path->data.push_back(game.root); } // load icons for (const auto& path : m_col_icon->data) { wxImage game_icon(80, 44); { wxLogNull logNo; // temporary disable wx warnings ("iCCP: known incorrect sRGB profile" spamming) if (game_icon.LoadFile(fmt::FromUTF8(path), wxBITMAP_TYPE_PNG)) game_icon.Rescale(80, 44, wxIMAGE_QUALITY_HIGH); } m_icon_indexes.push_back(m_img_list->Add(game_icon)); } } void Show(wxListView* list) { list->DeleteAllColumns(); list->SetImageList(m_img_list, wxIMAGE_LIST_SMALL); std::vector c_col = GetSortedColumnsByPos(); for(u32 i=0, c=0; ishown) continue; list->InsertColumn(c++, fmt::FromUTF8(c_col[i]->name), 0, c_col[i]->width); } } void ShowData(wxListView* list) { list->DeleteAllItems(); list->SetImageList(m_img_list, wxIMAGE_LIST_SMALL); for(int c=1; cGetColumnCount(); ++c) { Column* col = GetColumnByPos(c); if(!col) { LOG_ERROR(HLE, "Columns loaded with error!"); return; } for(u32 i=0; idata.size(); ++i) { if (list->GetItemCount() <= (int)i) { list->InsertItem(i, wxEmptyString); list->SetItemData(i, i); } list->SetItem(i, c, fmt::FromUTF8(col->data[i])); list->SetItemColumnImage(i, 0, m_icon_indexes[i]); } } } void LoadSave(bool isLoad, const std::string& path, wxListView* list = NULL) { if (isLoad) Init(); else if (list) { for (int c = 0; c < list->GetColumnCount(); ++c) { Column* col = GetColumnByPos(c); if (col) col->width = list->GetColumnWidth(c); } } #define ADD_COLUMN(v, dv, t, n, isshown) \ { \ IniEntry ini; \ ini.Init(m_columns[i].name + "_" + n, path); \ if(isLoad) m_columns[i].v = ini.LoadValue(dv); \ else if(isshown ? m_columns[i].shown : 1) \ { \ ini.SetValue(m_columns[i].v); \ ini.Save(); \ } \ } for (u32 i = 0; i < m_columns.size(); ++i) { ADD_COLUMN(pos, m_columns[i].def_pos, int, "position", 1); ADD_COLUMN(width, m_columns[i].def_width, int, "width", 1); ADD_COLUMN(shown, true, bool, "shown", 0); } if (isLoad) { //check for errors for (u32 c1 = 0; c1 < m_columns.size(); ++c1) { for (u32 c2 = c1 + 1; c2 < m_columns.size(); ++c2) { if (m_columns[c1].pos == m_columns[c2].pos) { LOG_ERROR(HLE, "Columns loaded with error!"); Init(); return; } } } for (u32 p = 0; p < m_columns.size(); ++p) { bool ishas = false; for (u32 c = 0; c < m_columns.size(); ++c) { if (m_columns[c].pos != p) continue; ishas = true; break; } if (!ishas) { LOG_ERROR(HLE, "Columns loaded with error!"); Init(); return; } } } #undef ADD_COLUMN } }; class GameViewer : public wxListView { int m_sortColumn; bool m_sortAscending; std::string m_path; std::vector m_games; std::vector m_game_data; ColumnsArr m_columns; wxMenu* m_popup; public: GameViewer(wxWindow* parent); ~GameViewer(); void DoResize(wxSize size); void LoadGames(); void LoadPSF(); void ShowData(); void SaveSettings(); void LoadSettings(); void Refresh(); void RemoveGame(wxCommandEvent& event); bool RemoveFolder(std::string localPath); private: virtual void DClick(wxListEvent& event); virtual void OnColClick(wxListEvent& event); virtual void RightClick(wxListEvent& event); };