// Copyright (C) 2003-2008 Dolphin Project. // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, version 2.0. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License 2.0 for more details. // A copy of the GPL 2.0 should have been included with the program. // If not, see http://www.gnu.org/licenses/ // Official SVN repository and contact information can be found at // http://code.google.com/p/dolphin-emu/ #include "Globals.h" #include "Frame.h" #include "FileUtil.h" #include "GameListCtrl.h" #include "BootManager.h" #include "Common.h" #include "Config.h" #include "Core.h" #include "State.h" #include "ConfigMain.h" #include "PluginManager.h" #include "MemcardManager.h" #include // ---------------------------------------------------------------------------- // resources // ---------------------------------------------------------------------------- extern "C" { #include "../resources/Dolphin.c" #include "../resources/toolbar_browse.c" #include "../resources/toolbar_file_open.c" #include "../resources/toolbar_fullscreen.c" #include "../resources/toolbar_help.c" #include "../resources/toolbar_pause.c" #include "../resources/toolbar_play.c" #include "../resources/toolbar_play_dis.c" #include "../resources/toolbar_plugin_dsp.c" #include "../resources/toolbar_plugin_gfx.c" #include "../resources/toolbar_plugin_options.c" #include "../resources/toolbar_plugin_options_dis.c" #include "../resources/toolbar_plugin_pad.c" #include "../resources/toolbar_refresh.c" #include "../resources/toolbar_stop.c" #include "../resources/toolbar_stop_dis.c" }; #define wxGetBitmapFromMemory(name) _wxGetBitmapFromMemory(name, sizeof(name)) inline wxBitmap _wxGetBitmapFromMemory(const unsigned char* data, int length) { wxMemoryInputStream is(data, length); return(wxBitmap(wxImage(is, wxBITMAP_TYPE_ANY, -1), -1)); } // ---------------------------------------------------------------------------- // constants // ---------------------------------------------------------------------------- static const long TOOLBAR_STYLE = wxTB_FLAT | wxTB_DOCKABLE | wxTB_TEXT; // ---------------------------------------------------------------------------- // event tables // ---------------------------------------------------------------------------- // Notice that wxID_HELP will be processed for the 'About' menu and the toolbar // help button. const wxEventType wxEVT_HOST_COMMAND = wxNewEventType(); BEGIN_EVENT_TABLE(CFrame, wxFrame) EVT_MENU(wxID_OPEN, CFrame::OnOpen) EVT_MENU(wxID_EXIT, CFrame::OnQuit) EVT_MENU(IDM_HELPWEBSITE, CFrame::OnHelp) EVT_MENU(IDM_HELPGOOGLECODE, CFrame::OnHelp) EVT_MENU(IDM_HELPABOUT, CFrame::OnHelp) EVT_MENU(wxID_REFRESH, CFrame::OnRefresh) EVT_MENU(IDM_PLAY, CFrame::OnPlay) EVT_MENU(IDM_STOP, CFrame::OnStop) EVT_MENU(IDM_CONFIG_MAIN, CFrame::OnConfigMain) EVT_MENU(IDM_CONFIG_GFX_PLUGIN, CFrame::OnPluginGFX) EVT_MENU(IDM_CONFIG_DSP_PLUGIN, CFrame::OnPluginDSP) EVT_MENU(IDM_CONFIG_PAD_PLUGIN, CFrame::OnPluginPAD) EVT_MENU(IDM_BROWSE, CFrame::OnBrowse) EVT_MENU(IDM_MEMCARD, CFrame::OnMemcard) EVT_MENU(IDM_TOGGLE_FULLSCREEN, CFrame::OnToggleFullscreen) EVT_MENU(IDM_TOGGLE_DUALCORE, CFrame::OnToggleDualCore) EVT_MENU(IDM_TOGGLE_SKIPIDLE, CFrame::OnToggleSkipIdle) EVT_MENU(IDM_TOGGLE_TOOLBAR, CFrame::OnToggleToolbar) EVT_MENU(IDM_TOGGLE_STATUSBAR, CFrame::OnToggleStatusbar) EVT_MENU(IDM_LOADSLOT1, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT2, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT3, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT4, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT5, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT6, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT7, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT8, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT9, CFrame::OnLoadState) EVT_MENU(IDM_LOADSLOT10, CFrame::OnLoadState) EVT_MENU(IDM_SAVESLOT1, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT2, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT3, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT4, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT5, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT6, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT7, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT8, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT9, CFrame::OnSaveState) EVT_MENU(IDM_SAVESLOT10, CFrame::OnSaveState) EVT_HOST_COMMAND(wxID_ANY, CFrame::OnHostMessage) END_EVENT_TABLE() // ---------------------------------------------------------------------------- // implementation // ---------------------------------------------------------------------------- CFrame::CFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style) : wxFrame(parent, id, title, pos, size, style) , m_Panel(NULL) , m_pStatusBar(NULL) , m_pMenuBar(NULL) , m_pBootProcessDialog(NULL) { InitBitmaps(); // Give it an icon wxIcon IconTemp; IconTemp.CopyFromBitmap(wxGetBitmapFromMemory(dolphin_png)); SetIcon(IconTemp); // Give it a status line m_pStatusBar = CreateStatusBar(); CreateMenu(); // this panel is the parent for rendering and it holds the gamelistctrl { m_Panel = new wxPanel(this); m_GameListCtrl = new CGameListCtrl(m_Panel, LIST_CTRL, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxSUNKEN_BORDER | wxLC_ALIGN_LEFT | wxLC_SINGLE_SEL); wxBoxSizer* sizerPanel = new wxBoxSizer(wxHORIZONTAL); sizerPanel->Add(m_GameListCtrl, 2, wxEXPAND | wxALL); m_Panel->SetSizer(sizerPanel); sizerPanel->SetSizeHints(m_Panel); sizerPanel->Fit(m_Panel); } // Create the toolbar RecreateToolbar(); Show(); CPluginManager::GetInstance().ScanForPlugins(this); m_GameListCtrl->Update(); wxTheApp->Connect(wxID_ANY, wxEVT_KEY_DOWN, wxKeyEventHandler(CFrame::OnKeyDown), (wxObject*)0, this); UpdateGUI(); } void CFrame::CreateMenu() { delete m_pMenuBar; m_pMenuBar = new wxMenuBar(wxMB_DOCKABLE); // file menu wxMenu* fileMenu = new wxMenu; fileMenu->Append(wxID_OPEN, _T("&Open...\tCtrl+O")); fileMenu->Append(wxID_REFRESH, _T("&Refresh")); fileMenu->Append(IDM_BROWSE, _T("&Browse for ISOs...")); fileMenu->AppendSeparator(); fileMenu->Append(wxID_EXIT, _T("E&xit"), _T("Alt+F4")); m_pMenuBar->Append(fileMenu, _T("&File")); // emulation menu wxMenu* emulationMenu = new wxMenu; m_pMenuItemPlay = emulationMenu->Append(IDM_PLAY, _T("&Play")); m_pMenuItemStop = emulationMenu->Append(IDM_STOP, _T("&Stop")); emulationMenu->AppendSeparator(); wxMenu *saveMenu = new wxMenu; wxMenu *loadMenu = new wxMenu; m_pMenuItemLoad = emulationMenu->AppendSubMenu(saveMenu, _T("&Load State")); m_pMenuItemSave = emulationMenu->AppendSubMenu(loadMenu, _T("Sa&ve State")); for (int i = 1; i < 10; i++) { saveMenu->Append(IDM_LOADSLOT1 + i - 1, wxString::Format(_T("Slot %i\tF%i"), i, i)); loadMenu->Append(IDM_SAVESLOT1 + i - 1, wxString::Format(_T("Slot %i\tShift+F%i"), i, i)); } m_pMenuBar->Append(emulationMenu, _T("&Emulation")); // options menu wxMenu* pOptionsMenu = new wxMenu; m_pPluginOptions = pOptionsMenu->Append(IDM_CONFIG_MAIN, _T("Co&nfigure...")); pOptionsMenu->AppendSeparator(); pOptionsMenu->Append(IDM_CONFIG_GFX_PLUGIN, _T("&GFX settings")); pOptionsMenu->Append(IDM_CONFIG_DSP_PLUGIN, _T("&DSP settings")); pOptionsMenu->Append(IDM_CONFIG_PAD_PLUGIN, _T("&PAD settings")); pOptionsMenu->AppendSeparator(); pOptionsMenu->Append(IDM_TOGGLE_FULLSCREEN, _T("&Fullscreen\tAlt+Enter")); m_pMenuBar->Append(pOptionsMenu, _T("&Options")); // misc menu wxMenu* miscMenu = new wxMenu; miscMenu->AppendCheckItem(IDM_TOGGLE_TOOLBAR, _T("View &toolbar")); miscMenu->Check(IDM_TOGGLE_TOOLBAR, true); miscMenu->AppendCheckItem(IDM_TOGGLE_STATUSBAR, _T("View &statusbar")); miscMenu->Check(IDM_TOGGLE_STATUSBAR, true); miscMenu->AppendSeparator(); miscMenu->Append(IDM_MEMCARD, _T("&Memcard manager")); m_pMenuBar->Append(miscMenu, _T("&Misc")); // help menu wxMenu* helpMenu = new wxMenu; /*helpMenu->Append(wxID_HELP, _T("&Help")); re-enable when there's something useful to display*/ helpMenu->Append(IDM_HELPWEBSITE, _T("Dolphin &web site")); helpMenu->Append(IDM_HELPGOOGLECODE, _T("Dolphin at &Google Code")); helpMenu->AppendSeparator(); helpMenu->Append(IDM_HELPABOUT, _T("&About...")); m_pMenuBar->Append(helpMenu, _T("&Help")); // Associate the menu bar with the frame SetMenuBar(m_pMenuBar); } void CFrame::PopulateToolbar(wxToolBar* toolBar) { int w = m_Bitmaps[Toolbar_FileOpen].GetWidth(), h = m_Bitmaps[Toolbar_FileOpen].GetHeight(); toolBar->SetToolBitmapSize(wxSize(w, h)); toolBar->AddTool(wxID_OPEN, _T("Open"), m_Bitmaps[Toolbar_FileOpen], _T("Open file...")); toolBar->AddTool(wxID_REFRESH, _T("Refresh"), m_Bitmaps[Toolbar_Refresh], _T("Refresh")); toolBar->AddTool(IDM_BROWSE, _T("Browse"), m_Bitmaps[Toolbar_Browse], _T("Browse for an ISO directory...")); toolBar->AddSeparator(); m_pToolPlay = toolBar->AddTool(IDM_PLAY, _T("Play"), m_Bitmaps[Toolbar_Play], _T("Play")); toolBar->SetToolDisabledBitmap(IDM_PLAY, m_Bitmaps[Toolbar_Play_Dis]); toolBar->AddTool(IDM_STOP, _T("Stop"), m_Bitmaps[Toolbar_Stop], _T("Stop")); toolBar->SetToolDisabledBitmap(IDM_STOP, m_Bitmaps[Toolbar_Stop_Dis]); toolBar->AddTool(IDM_TOGGLE_FULLSCREEN, _T("Fullscr."), m_Bitmaps[Toolbar_FullScreen], _T("Toggle Fullscreen")); toolBar->AddSeparator(); toolBar->AddTool(IDM_CONFIG_MAIN, _T("Config"), m_Bitmaps[Toolbar_PluginOptions], _T("Configure...")); toolBar->SetToolDisabledBitmap(IDM_CONFIG_MAIN, m_Bitmaps[Toolbar_PluginOptions_Dis]); toolBar->AddTool(IDM_CONFIG_GFX_PLUGIN, _T("GFX"), m_Bitmaps[Toolbar_PluginGFX], _T("GFX settings")); toolBar->AddTool(IDM_CONFIG_DSP_PLUGIN, _T("DSP"), m_Bitmaps[Toolbar_PluginDSP], _T("DSP settings")); toolBar->AddTool(IDM_CONFIG_PAD_PLUGIN, _T("PAD"), m_Bitmaps[Toolbar_PluginPAD], _T("PAD settings")); toolBar->AddSeparator(); toolBar->AddTool(IDM_HELPABOUT, _T("About"), m_Bitmaps[Toolbar_Help], _T("About Dolphin")); // after adding the buttons to the toolbar, must call Realize() to reflect // the changes toolBar->Realize(); } void CFrame::RecreateToolbar() { // delete and recreate the toolbar wxToolBarBase* toolBar = GetToolBar(); long style = toolBar ? toolBar->GetWindowStyle() : TOOLBAR_STYLE; delete toolBar; SetToolBar(NULL); style &= ~(wxTB_HORIZONTAL | wxTB_VERTICAL | wxTB_BOTTOM | wxTB_RIGHT | wxTB_HORZ_LAYOUT | wxTB_TOP); wxToolBar* theToolBar = CreateToolBar(style, ID_TOOLBAR); PopulateToolbar(theToolBar); SetToolBar(theToolBar); UpdateGUI(); } void CFrame::InitBitmaps() { // load orignal size 48x48 m_Bitmaps[Toolbar_FileOpen] = wxGetBitmapFromMemory(toolbar_file_open_png); m_Bitmaps[Toolbar_Refresh] = wxGetBitmapFromMemory(toolbar_refresh_png); m_Bitmaps[Toolbar_Browse] = wxGetBitmapFromMemory(toolbar_browse_png); m_Bitmaps[Toolbar_Play] = wxGetBitmapFromMemory(toolbar_play_png); m_Bitmaps[Toolbar_Play_Dis] = wxGetBitmapFromMemory(toolbar_play_dis_png); m_Bitmaps[Toolbar_Stop] = wxGetBitmapFromMemory(toolbar_stop_png); m_Bitmaps[Toolbar_Stop_Dis] = wxGetBitmapFromMemory(toolbar_stop_dis_png); m_Bitmaps[Toolbar_Pause] = wxGetBitmapFromMemory(toolbar_pause_png); m_Bitmaps[Toolbar_PluginOptions] = wxGetBitmapFromMemory(toolbar_plugin_options_png); m_Bitmaps[Toolbar_PluginOptions_Dis] = wxGetBitmapFromMemory(toolbar_plugin_options_dis_png); m_Bitmaps[Toolbar_PluginGFX] = wxGetBitmapFromMemory(toolbar_plugin_gfx_png); m_Bitmaps[Toolbar_PluginDSP] = wxGetBitmapFromMemory(toolbar_plugin_dsp_png); m_Bitmaps[Toolbar_PluginPAD] = wxGetBitmapFromMemory(toolbar_plugin_pad_png); m_Bitmaps[Toolbar_FullScreen] = wxGetBitmapFromMemory(toolbar_fullscreen_png); m_Bitmaps[Toolbar_Help] = wxGetBitmapFromMemory(toolbar_help_png); // scale to 24x24 for toolbar for (size_t n = Toolbar_FileOpen; n < WXSIZEOF(m_Bitmaps); n++) { m_Bitmaps[n] = wxBitmap(m_Bitmaps[n].ConvertToImage().Scale(24, 24)); } } void CFrame::OnOpen(wxCommandEvent& WXUNUSED (event)) { if (Core::GetState() != Core::CORE_UNINITIALIZED) return; wxString path = wxFileSelector( _T("Select the file to load"), wxEmptyString, wxEmptyString, wxEmptyString, wxString::Format ( _T("All GC/Wii files (elf, dol, gcm, iso)|*.elf;*.dol;*.gcm;*.iso|All files (%s)|%s"), wxFileSelectorDefaultWildcardStr, wxFileSelectorDefaultWildcardStr ), wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST, this); if (!path) { return; } BootManager::BootCore(std::string(path.ToAscii())); } void CFrame::OnQuit(wxCommandEvent& WXUNUSED (event)) { if (Core::GetState() != Core::CORE_UNINITIALIZED) { Core::Stop(); UpdateGUI(); } Close(true); } void CFrame::OnHelp(wxCommandEvent& event) { switch (event.GetId()) { case IDM_HELPABOUT: { wxAboutDialogInfo info; info.AddDeveloper(_T("ector")); info.AddDeveloper(_T("F|RES")); info.AddDeveloper(_T("yaz0r")); info.AddDeveloper(_T("zerofrog")); /* info.SetLicence(wxString::FromAscii( "Dolphin Licence 1.0" "#include GPL.TXT")); */ info.AddArtist(_T("miloszwl@miloszwl.com (miloszwl.deviantart.com)")); wxAboutBox(info); break; } case IDM_HELPWEBSITE: File::Launch("http://www.dolphin-emu.com/"); break; case IDM_HELPGOOGLECODE: File::Launch("http://code.google.com/p/dolphin-emu/"); break; } } void CFrame::OnPlay(wxCommandEvent& WXUNUSED (event)) { if (Core::GetState() != Core::CORE_UNINITIALIZED) { if (Core::GetState() == Core::CORE_RUN) { Core::SetState(Core::CORE_PAUSE); } else { Core::SetState(Core::CORE_RUN); } UpdateGUI(); } else if (!SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDefaultGCM.empty()) { if (wxFileExists(wxString(SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDefaultGCM.c_str(), wxConvUTF8))) { BootManager::BootCore(SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDefaultGCM); } else { wxMessageBox(_("The default ISO you have set is invalid.\n" "Please pick on new one by right clicking on a game\n" "and selecting \"Set as default ISO\"."), _("Invalid Default ISO"), wxOK, this); } } else { wxMessageBox(_("You can set an ISO to load by default.\n" "Choose one by right clicking on a game and selecting\n" "\"Set as default ISO\"."), _("Set Default ISO"), wxOK, this); } } void CFrame::OnStop(wxCommandEvent& WXUNUSED (event)) { if (Core::GetState() != Core::CORE_UNINITIALIZED) { Core::Stop(); UpdateGUI(); } } void CFrame::OnRefresh(wxCommandEvent& WXUNUSED (event)) { if (m_GameListCtrl) { m_GameListCtrl->Update(); } } void CFrame::OnConfigMain(wxCommandEvent& WXUNUSED (event)) { CConfigMain ConfigMain(this); ConfigMain.ShowModal(); } void CFrame::OnPluginGFX(wxCommandEvent& WXUNUSED (event)) { CPluginManager::GetInstance().OpenConfig( GetHandle(), SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoPlugin.c_str() ); } void CFrame::OnPluginDSP(wxCommandEvent& WXUNUSED (event)) { CPluginManager::GetInstance().OpenConfig( GetHandle(), SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDSPPlugin.c_str() ); } void CFrame::OnPluginPAD(wxCommandEvent& WXUNUSED (event)) { CPluginManager::GetInstance().OpenConfig( GetHandle(), SConfig::GetInstance().m_LocalCoreStartupParameter.m_strPadPlugin.c_str() ); } void CFrame::OnPluginWiiMote(wxCommandEvent& WXUNUSED (event)) { CPluginManager::GetInstance().OpenConfig( GetHandle(), SConfig::GetInstance().m_LocalCoreStartupParameter.m_strWiimotePlugin.c_str() ); } void CFrame::OnBrowse(wxCommandEvent& WXUNUSED (event)) { m_GameListCtrl->BrowseForDirectory(); } void CFrame::OnMemcard(wxCommandEvent& WXUNUSED (event)) { CMemcardManager MemcardManager(this); MemcardManager.ShowModal(); } void CFrame::OnHostMessage(wxCommandEvent& event) { switch (event.GetId()) { case IDM_UPDATEGUI: UpdateGUI(); break; case IDM_BOOTING_STARTED: if (m_pBootProcessDialog == NULL) { /* m_pBootProcessDialog = new wxProgressDialog (_T("Booting the core"), _T("Booting..."), 1, // range this, wxPD_APP_MODAL | // wxPD_AUTO_HIDE | -- try this as well wxPD_ELAPSED_TIME | wxPD_SMOOTH // - makes indeterminate mode bar on WinXP very small );*/ m_pBootProcessDialog = new wxBusyInfo(wxString::FromAscii("Booting..."), this); } break; case IDM_BOOTING_ENDED: if (m_pBootProcessDialog != NULL) { // m_pBootProcessDialog->Destroy(); delete m_pBootProcessDialog; m_pBootProcessDialog = NULL; } break; case IDM_UPDATESTATUSBAR: if (m_pStatusBar != NULL) { m_pStatusBar->SetStatusText(event.GetString()); } break; } } void CFrame::OnToggleFullscreen(wxCommandEvent& WXUNUSED (event)) { ShowFullScreen(true); UpdateGUI(); } void CFrame::OnToggleDualCore(wxCommandEvent& WXUNUSED (event)) { SConfig::GetInstance().m_LocalCoreStartupParameter.bUseDualCore = !SConfig::GetInstance().m_LocalCoreStartupParameter.bUseDualCore; SConfig::GetInstance().SaveSettings(); } void CFrame::OnToggleSkipIdle(wxCommandEvent& WXUNUSED (event)) { SConfig::GetInstance().m_LocalCoreStartupParameter.bSkipIdle = !SConfig::GetInstance().m_LocalCoreStartupParameter.bSkipIdle; SConfig::GetInstance().SaveSettings(); } void CFrame::OnLoadState(wxCommandEvent& event) { int id = event.GetId(); int slot = id - IDM_LOADSLOT1 + 1; State_Load(slot); } void CFrame::OnSaveState(wxCommandEvent& event) { int id = event.GetId(); int slot = id - IDM_SAVESLOT1 + 1; State_Save(slot); } void CFrame::OnToggleToolbar(wxCommandEvent& event) { wxToolBarBase* toolBar = GetToolBar(); if (event.IsChecked()) { CFrame::RecreateToolbar(); } else { delete toolBar; SetToolBar(NULL); } } void CFrame::OnToggleStatusbar(wxCommandEvent& event) { if (event.IsChecked()) { m_pStatusBar = CreateStatusBar(); } else { delete m_pStatusBar; m_pStatusBar = NULL; } } void CFrame::OnKeyDown(wxKeyEvent& event) { if (((event.GetKeyCode() == WXK_RETURN) && (event.GetModifiers() == wxMOD_ALT)) || (event.GetKeyCode() == WXK_ESCAPE)) { ShowFullScreen(!IsFullScreen()); UpdateGUI(); } else { event.Skip(); } } void CFrame::UpdateGUI() { // buttons { if (Core::GetState() == Core::CORE_UNINITIALIZED) { GetToolBar()->EnableTool(IDM_CONFIG_MAIN, true); m_pPluginOptions->Enable(true); GetToolBar()->EnableTool(IDM_STOP, false); m_pToolPlay->SetNormalBitmap(m_Bitmaps[Toolbar_Play]); m_pToolPlay->SetShortHelp(_T("Play")); m_pToolPlay->SetLabel(_T("Play")); m_pMenuItemPlay->SetText(_T("&Play")); m_pMenuItemStop->Enable(false); m_pMenuItemLoad->Enable(false); m_pMenuItemSave->Enable(false); } else { GetToolBar()->EnableTool(IDM_CONFIG_MAIN, false); m_pPluginOptions->Enable(false); GetToolBar()->EnableTool(IDM_STOP, true); m_pMenuItemStop->Enable(true); m_pMenuItemLoad->Enable(true); m_pMenuItemSave->Enable(true); if (Core::GetState() == Core::CORE_RUN) { m_pToolPlay->SetNormalBitmap(m_Bitmaps[Toolbar_Pause]); m_pToolPlay->SetShortHelp(_T("Pause")); m_pToolPlay->SetLabel(_T("Pause")); m_pMenuItemPlay->SetText(_T("&Pause")); } else { m_pToolPlay->SetNormalBitmap(m_Bitmaps[Toolbar_Play]); m_pToolPlay->SetShortHelp(_T("Play")); m_pToolPlay->SetLabel(_T("Play")); m_pMenuItemPlay->SetText(_T("&Play")); } } GetToolBar()->Realize(); } // gamelistctrl { if (Core::GetState() == Core::CORE_UNINITIALIZED) { if (m_GameListCtrl && !m_GameListCtrl->IsShown()) { m_GameListCtrl->Enable(); m_GameListCtrl->Show(); } } else { if (m_GameListCtrl && m_GameListCtrl->IsShown()) { m_GameListCtrl->Disable(); m_GameListCtrl->Hide(); } } } }