This makes code more portable. Signed-off-by: Simon Rozman <simon@rozman.si>
229 lines
7.1 KiB
C++
229 lines
7.1 KiB
C++
/*
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
Copyright © 2015-2022 Amebis
|
|
*/
|
|
|
|
#include "pch.h"
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// wxZRColaCharacterCatalogPanel
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
BEGIN_EVENT_TABLE(wxZRColaCharacterCatalogPanel, wxZRColaCharacterCatalogPanelBase)
|
|
EVT_MENU(wxZRColaCharacterCatalogPanel::wxID_FOCUS_SOURCE, wxZRColaCharacterCatalogPanel::OnFocusSource)
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
wxZRColaCharacterCatalogPanel::wxZRColaCharacterCatalogPanel(wxWindow* parent) :
|
|
m_cg_id(0),
|
|
wxZRColaCharacterCatalogPanelBase(parent)
|
|
{
|
|
std::fstream dat((LPCTSTR)dynamic_cast<ZRColaApp*>(wxTheApp)->GetDatabaseFilePath(), std::ios_base::in | std::ios_base::binary);
|
|
if (dat.good()) {
|
|
if (stdex::idrec::find<ZRCola::recordid_t, ZRCola::recordsize_t, ZRCOLA_RECORD_ALIGN>(dat, ZRCOLA_DB_ID, sizeof(ZRCola::recordid_t))) {
|
|
ZRCola::recordsize_t size;
|
|
dat.read((char*)&size, sizeof(ZRCola::recordsize_t));
|
|
if (dat.good()) {
|
|
ZRCola::chrgrp_rec rec(m_cg_db);
|
|
if (rec.find(dat, size)) {
|
|
dat >> rec;
|
|
if (!dat.good()) {
|
|
wxFAIL_MSG(wxT("Error reading character group data from ZRCola.zrcdb."));
|
|
m_cg_db.idxRank.clear();
|
|
m_cg_db.data .clear();
|
|
}
|
|
} else
|
|
wxFAIL_MSG(wxT("ZRCola.zrcdb has no character group data."));
|
|
}
|
|
} else
|
|
wxFAIL_MSG(wxT("ZRCola.zrcdb is not a valid ZRCola database."));
|
|
} else
|
|
wxFAIL_MSG(wxT("ZRCola.zrcdb not found or cannot be opened."));
|
|
|
|
if (!m_cg_db.idxRank.empty()) {
|
|
// Populate character group list.
|
|
for (size_t i = 0, n = m_cg_db.idxRank.size(); i < n; i++) {
|
|
const ZRCola::chrgrp_db::chrgrp &cg = m_cg_db.idxRank[i];
|
|
wxString
|
|
label(cg.name(), cg.name_len()),
|
|
label_tran2(wxGetTranslation(label, wxT("ZRCola-zrcdb")));
|
|
m_choice->Insert(label_tran2, (unsigned int)i);
|
|
}
|
|
m_cg_id = m_cg_db.idxRank[0].grp;
|
|
m_choice->Select(0);
|
|
|
|
Update();
|
|
}
|
|
|
|
// Register frame specific hotkey(s).
|
|
{
|
|
wxAcceleratorEntry entries[1];
|
|
entries[0].Set(wxACCEL_NORMAL, WXK_ESCAPE, wxID_FOCUS_SOURCE);
|
|
SetAcceleratorTable(wxAcceleratorTable(_countof(entries), entries));
|
|
}
|
|
}
|
|
|
|
|
|
wxZRColaCharacterCatalogPanel::~wxZRColaCharacterCatalogPanel()
|
|
{
|
|
}
|
|
|
|
|
|
void wxZRColaCharacterCatalogPanel::OnChoice(wxCommandEvent& event)
|
|
{
|
|
const ZRCola::chrgrp_db::chrgrp &cg = m_cg_db.idxRank[event.GetSelection()];
|
|
|
|
if (m_cg_id != cg.grp) {
|
|
m_cg_id = cg.grp;
|
|
Update();
|
|
}
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
|
|
void wxZRColaCharacterCatalogPanel::OnGridClick(wxGridEvent& event)
|
|
{
|
|
auto app = dynamic_cast<ZRColaApp*>(wxTheApp);
|
|
if (app->m_mainWnd) {
|
|
app->m_mainWnd->m_panel->m_source->WriteText(m_grid->GetCellValue(event.GetRow(), event.GetCol()));
|
|
app->m_mainWnd->m_panel->m_source->SetFocus();
|
|
}
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
|
|
void wxZRColaCharacterCatalogPanel::OnGridKeyDown(wxKeyEvent& event)
|
|
{
|
|
switch (event.GetKeyCode()) {
|
|
case WXK_RETURN:
|
|
case WXK_NUMPAD_ENTER:
|
|
auto app = dynamic_cast<ZRColaApp*>(wxTheApp);
|
|
if (app->m_mainWnd) {
|
|
app->m_mainWnd->m_panel->m_source->WriteText(m_grid->GetCellValue(m_grid->GetGridCursorRow(), m_grid->GetGridCursorCol()));
|
|
app->m_mainWnd->m_panel->m_source->SetFocus();
|
|
|
|
event.StopPropagation();
|
|
return;
|
|
}
|
|
}
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
|
|
void wxZRColaCharacterCatalogPanel::OnShowAll(wxCommandEvent& event)
|
|
{
|
|
UNREFERENCED_PARAMETER(event);
|
|
|
|
Update();
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
|
|
void wxZRColaCharacterCatalogPanel::OnFocusSource(wxCommandEvent& event)
|
|
{
|
|
auto app = dynamic_cast<ZRColaApp*>(wxTheApp);
|
|
if (app->m_mainWnd) {
|
|
app->m_mainWnd->m_panel->m_source->SetFocus();
|
|
|
|
event.StopPropagation();
|
|
return;
|
|
}
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
|
|
void wxZRColaCharacterCatalogPanel::Update()
|
|
{
|
|
const ZRCola::chrgrp_db::chrgrp &cg = m_cg_db.idxRank[m_choice->GetSelection()];
|
|
|
|
if (m_show_all->GetValue()) {
|
|
m_grid->SetCharacters(
|
|
wxString(cg.chrlst(), cg.chrlst_end()),
|
|
wxArrayShort(reinterpret_cast<const short*>(cg.chrshow()), reinterpret_cast<const short*>(cg.chrshow_end())));
|
|
} else {
|
|
// Select frequently used characters only.
|
|
const wchar_t *src = cg.chrlst();
|
|
const uint16_t *shown = cg.chrshow();
|
|
wxArrayString chars;
|
|
for (size_t i = 0, i_end = cg.chrlst_len(), j = 0; i < i_end; j++) {
|
|
for (uint16_t k = 0, mask = shown[j]; k < 16 && i < i_end; k++, mask >>= 1) {
|
|
size_t len = wcsnlen(src + i, i_end - i);
|
|
if (mask & 1)
|
|
chars.Add(wxString(src + i, len));
|
|
i += len + 1;
|
|
}
|
|
}
|
|
m_grid->SetCharacters(chars);
|
|
}
|
|
|
|
// As size of the grid might have changed, relayout the panel.
|
|
Layout();
|
|
}
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// wxPersistentZRColaCharacterCatalogPanel
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
wxPersistentZRColaCharacterCatalogPanel::wxPersistentZRColaCharacterCatalogPanel(wxZRColaCharacterCatalogPanel *wnd) : wxPersistentWindow<wxZRColaCharacterCatalogPanel>(wnd)
|
|
{
|
|
}
|
|
|
|
|
|
wxString wxPersistentZRColaCharacterCatalogPanel::GetKind() const
|
|
{
|
|
return wxT(wxPERSIST_TLW_KIND);
|
|
}
|
|
|
|
|
|
void wxPersistentZRColaCharacterCatalogPanel::Save() const
|
|
{
|
|
auto wnd = static_cast<const wxZRColaCharacterCatalogPanel*>(GetWindow()); // dynamic_cast is not reliable as we are typically called late in the wxTopLevelWindowMSW destructor.
|
|
|
|
SaveValue(wxT("charGroup"), wnd->m_cg_id);
|
|
SaveValue(wxT("showAll" ), wnd->m_show_all->GetValue());
|
|
}
|
|
|
|
|
|
bool wxPersistentZRColaCharacterCatalogPanel::Restore()
|
|
{
|
|
auto wnd = dynamic_cast<wxZRColaCharacterCatalogPanel*>(GetWindow());
|
|
bool update = false;
|
|
|
|
// Restore selected character group.
|
|
int cg_id;
|
|
if (RestoreValue(wxT("charGroup"), &cg_id)) {
|
|
for (size_t i = 0, n = wnd->m_cg_db.idxRank.size(); i < n; i++) {
|
|
const ZRCola::chrgrp_db::chrgrp &cg = wnd->m_cg_db.idxRank[i];
|
|
if (cg.grp == cg_id) {
|
|
if (wnd->m_cg_id != cg.grp) {
|
|
wnd->m_cg_id = cg.grp;
|
|
wnd->m_choice->Select((int)i);
|
|
update = true;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool show_all;
|
|
if (RestoreValue(wxT("showAll"), &show_all)) {
|
|
if (wnd->m_show_all->GetValue() != show_all) {
|
|
wnd->m_show_all->SetValue(show_all);
|
|
update = true;
|
|
}
|
|
}
|
|
|
|
if (update)
|
|
wnd->Update();
|
|
|
|
return true;
|
|
}
|