mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 06:40:03 +00:00
remove dead code from MusicMod
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3182 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
1d593069b5
commit
36f5f6e3e7
@ -57,9 +57,6 @@
|
|||||||
// Build with playback rerecording options
|
// Build with playback rerecording options
|
||||||
//#define RERECORDING
|
//#define RERECORDING
|
||||||
|
|
||||||
// Build with music modification
|
|
||||||
//#define MUSICMOD
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
#endif // _SETUP_H_
|
#endif // _SETUP_H_
|
||||||
|
@ -29,13 +29,6 @@
|
|||||||
#include "Filesystem.h"
|
#include "Filesystem.h"
|
||||||
|
|
||||||
|
|
||||||
// Music mod
|
|
||||||
#include "Setup.h" // Define MUSICMOD here
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
#include "../../../../Externals/MusicMod/Main/Src/Main.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
CWII_IPC_HLE_Device_di::CWII_IPC_HLE_Device_di(u32 _DeviceID, const std::string& _rDeviceName )
|
CWII_IPC_HLE_Device_di::CWII_IPC_HLE_Device_di(u32 _DeviceID, const std::string& _rDeviceName )
|
||||||
: IWII_IPC_HLE_Device(_DeviceID, _rDeviceName)
|
: IWII_IPC_HLE_Device(_DeviceID, _rDeviceName)
|
||||||
, m_pVolume(NULL)
|
, m_pVolume(NULL)
|
||||||
@ -245,11 +238,6 @@ u32 CWII_IPC_HLE_Device_di::ExecuteCommand(u32 _BufferIn, u32 _BufferInSize, u32
|
|||||||
PanicAlert("Cant read from DVD_Plugin - DVD-Interface: Fatal Error");
|
PanicAlert("Cant read from DVD_Plugin - DVD-Interface: Fatal Error");
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
std::string Tmp = pFilename;
|
|
||||||
MusicMod::CheckFile(Tmp);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -57,10 +57,7 @@
|
|||||||
#include "ConfigMain.h"
|
#include "ConfigMain.h"
|
||||||
#include "Frame.h"
|
#include "Frame.h"
|
||||||
#include "CodeWindow.h"
|
#include "CodeWindow.h"
|
||||||
#include "Setup.h"
|
#include "Setup.h"
|
||||||
#ifdef MUSICMOD
|
|
||||||
#include "../../../Externals/MusicMod/Main/Src/Main.h" // MusicMod
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@ -200,17 +197,7 @@ bool BootCore(const std::string& _rFilename)
|
|||||||
#else
|
#else
|
||||||
Core::SetState(Core::CORE_RUN);
|
Core::SetState(Core::CORE_RUN);
|
||||||
#endif
|
#endif
|
||||||
// =====================
|
// =====================
|
||||||
|
|
||||||
|
|
||||||
// =================================================================
|
|
||||||
// Music mod
|
|
||||||
// ¯¯¯¯¯¯¯¯¯¯
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
MusicMod::Main(StartUp.m_strFilename);
|
|
||||||
#endif
|
|
||||||
// ===================
|
|
||||||
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -256,13 +256,6 @@ EVT_MENU(IDM_CONFIG_DSP_PLUGIN, CFrame::OnPluginDSP)
|
|||||||
EVT_MENU(IDM_CONFIG_PAD_PLUGIN, CFrame::OnPluginPAD)
|
EVT_MENU(IDM_CONFIG_PAD_PLUGIN, CFrame::OnPluginPAD)
|
||||||
EVT_MENU(IDM_CONFIG_WIIMOTE_PLUGIN, CFrame::OnPluginWiimote)
|
EVT_MENU(IDM_CONFIG_WIIMOTE_PLUGIN, CFrame::OnPluginWiimote)
|
||||||
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
EVT_MENU(IDM_MUTE, CFrame::MM_OnMute)
|
|
||||||
EVT_MENU(IDM_MUSIC_PLAY, CFrame::MM_OnPause)
|
|
||||||
EVT_COMMAND_SCROLL(IDS_VOLUME, CFrame::MM_OnVolume)
|
|
||||||
EVT_MENU(IDT_LOG, CFrame::MM_OnLog)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
EVT_MENU(IDM_BROWSE, CFrame::OnBrowse)
|
EVT_MENU(IDM_BROWSE, CFrame::OnBrowse)
|
||||||
EVT_MENU(IDM_MEMCARD, CFrame::OnMemcard)
|
EVT_MENU(IDM_MEMCARD, CFrame::OnMemcard)
|
||||||
EVT_MENU(IDM_CHEATS, CFrame::OnShow_CheatsWindow)
|
EVT_MENU(IDM_CHEATS, CFrame::OnShow_CheatsWindow)
|
||||||
|
@ -108,23 +108,6 @@ class CFrame : public wxFrame
|
|||||||
|
|
||||||
char **drives;
|
char **drives;
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Music mod
|
|
||||||
// ¯¯¯¯¯¯¯¯¯¯
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
wxToolBarToolBase* mm_ToolMute, * mm_ToolPlay, * mm_ToolLog;
|
|
||||||
wxSlider * mm_Slider;
|
|
||||||
|
|
||||||
void MM_UpdateGUI(); void MM_PopulateGUI(); void MM_InitBitmaps(int Theme);
|
|
||||||
void MM_OnPlay(); void MM_OnStop();
|
|
||||||
void MM_OnMute(wxCommandEvent& event);
|
|
||||||
void MM_OnPause(wxCommandEvent& event);
|
|
||||||
void MM_OnVolume(wxScrollEvent& event);
|
|
||||||
void MM_OnLog(wxCommandEvent& event);
|
|
||||||
#endif
|
|
||||||
///////////////////////////////////
|
|
||||||
|
|
||||||
|
|
||||||
enum EToolbar
|
enum EToolbar
|
||||||
{
|
{
|
||||||
Toolbar_FileOpen,
|
Toolbar_FileOpen,
|
||||||
@ -142,10 +125,6 @@ class CFrame : public wxFrame
|
|||||||
Toolbar_Wiimote,
|
Toolbar_Wiimote,
|
||||||
Toolbar_Help,
|
Toolbar_Help,
|
||||||
|
|
||||||
#ifdef MUSICMOD // Music modification
|
|
||||||
Toolbar_Log, Toolbar_PluginDSP_Dis, Toolbar_Log_Dis,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
EToolbar_Max
|
EToolbar_Max
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -238,16 +238,6 @@ void CFrame::PopulateToolbar(wxToolBar* toolBar)
|
|||||||
toolBar->AddSeparator();
|
toolBar->AddSeparator();
|
||||||
toolBar->AddTool(IDM_HELPABOUT, _T("About"), m_Bitmaps[Toolbar_Help], _T("About Dolphin"));
|
toolBar->AddTool(IDM_HELPABOUT, _T("About"), m_Bitmaps[Toolbar_Help], _T("About Dolphin"));
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////
|
|
||||||
// Music mod
|
|
||||||
// ¯¯¯¯¯¯¯¯¯¯
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
MM_PopulateGUI();
|
|
||||||
#endif
|
|
||||||
///////////////////////
|
|
||||||
|
|
||||||
|
|
||||||
// after adding the buttons to the toolbar, must call Realize() to reflect
|
// after adding the buttons to the toolbar, must call Realize() to reflect
|
||||||
// the changes
|
// the changes
|
||||||
toolBar->Realize();
|
toolBar->Realize();
|
||||||
@ -367,14 +357,6 @@ void CFrame::InitBitmaps()
|
|||||||
default: PanicAlert("Theme selection went wrong");
|
default: PanicAlert("Theme selection went wrong");
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////
|
|
||||||
// Music modification
|
|
||||||
// -------------
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
MM_InitBitmaps(Theme);
|
|
||||||
#endif
|
|
||||||
//////////////////////////
|
|
||||||
|
|
||||||
// Update in case the bitmap has been updated
|
// Update in case the bitmap has been updated
|
||||||
if (GetToolBar() != NULL)
|
if (GetToolBar() != NULL)
|
||||||
RecreateToolbar();
|
RecreateToolbar();
|
||||||
@ -386,11 +368,6 @@ void CFrame::InitBitmaps()
|
|||||||
// -------------
|
// -------------
|
||||||
void CFrame::BootGame()
|
void CFrame::BootGame()
|
||||||
{
|
{
|
||||||
// Music modification
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
MM_OnPlay();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Rerecording
|
// Rerecording
|
||||||
#ifdef RERECORDING
|
#ifdef RERECORDING
|
||||||
Core::RerecordingStart();
|
Core::RerecordingStart();
|
||||||
@ -567,11 +544,6 @@ void CFrame::OnScreenshot(wxCommandEvent& WXUNUSED (event))
|
|||||||
// Stop the emulation
|
// Stop the emulation
|
||||||
void CFrame::DoStop()
|
void CFrame::DoStop()
|
||||||
{
|
{
|
||||||
// Music modification
|
|
||||||
#ifdef MUSICMOD
|
|
||||||
MM_OnStop();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Rerecording
|
// Rerecording
|
||||||
#ifdef RERECORDING
|
#ifdef RERECORDING
|
||||||
Core::RerecordingStop();
|
Core::RerecordingStop();
|
||||||
@ -808,10 +780,6 @@ void CFrame::ToggleConsole(bool check)
|
|||||||
// Update the enabled/disabled status
|
// Update the enabled/disabled status
|
||||||
void CFrame::UpdateGUI()
|
void CFrame::UpdateGUI()
|
||||||
{
|
{
|
||||||
#ifdef MUSICMOD
|
|
||||||
MM_UpdateGUI();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Save status
|
// Save status
|
||||||
bool initialized = Core::GetState() != Core::CORE_UNINITIALIZED;
|
bool initialized = Core::GetState() != Core::CORE_UNINITIALIZED;
|
||||||
bool running = Core::GetState() == Core::CORE_RUN;
|
bool running = Core::GetState() == Core::CORE_RUN;
|
||||||
|
@ -76,13 +76,6 @@ enum
|
|||||||
IDM_HELPWEBSITE,
|
IDM_HELPWEBSITE,
|
||||||
IDM_HELPGOOGLECODE,
|
IDM_HELPGOOGLECODE,
|
||||||
|
|
||||||
#ifdef MUSICMOD // Music modification
|
|
||||||
IDM_MUTE,
|
|
||||||
IDM_MUSIC_PLAY,
|
|
||||||
IDS_VOLUME, IDS_VOLUME_LABEL, IDS_VOLUME_PANEL,
|
|
||||||
IDT_LOG,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
IDM_CONFIG_MAIN,
|
IDM_CONFIG_MAIN,
|
||||||
IDM_CONFIG_GFX_PLUGIN,
|
IDM_CONFIG_GFX_PLUGIN,
|
||||||
IDM_CONFIG_DSP_PLUGIN,
|
IDM_CONFIG_DSP_PLUGIN,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user