include games

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@768 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2008-10-04 20:15:19 +00:00
parent 27d3191f4d
commit 4789072ad9
5 changed files with 9 additions and 23 deletions

View File

@ -23,7 +23,6 @@
#define __CDebugger_h__ #define __CDebugger_h__
// ---------------------------------------------------------------------------------------
// wx stuff, I'm not sure if we use all these // wx stuff, I'm not sure if we use all these
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include <wx/wx.h> #include <wx/wx.h>
@ -41,19 +40,16 @@
#include <wx/filepicker.h> #include <wx/filepicker.h>
#include <wx/listctrl.h> #include <wx/listctrl.h>
#include <wx/imaglist.h> #include <wx/imaglist.h>
// ------------
#include "../Globals.h" #include "../Globals.h"
class CPBView; class CPBView;
class IniFile; class IniFile;
// =======================================================================================
// Window settings - I'm not sure what these do. I just copied them gtom elsewhere basically. // Window settings - I'm not sure what these do. I just copied them gtom elsewhere basically.
#undef CDebugger_STYLE #undef CDebugger_STYLE
#define CDebugger_STYLE wxDEFAULT_FRAME_STYLE | wxCLIP_CHILDREN | wxNO_FULL_REPAINT_ON_RESIZE #define CDebugger_STYLE wxDEFAULT_FRAME_STYLE | wxCLIP_CHILDREN | wxNO_FULL_REPAINT_ON_RESIZE
// =======================================================================================
class CDebugger : public wxDialog class CDebugger : public wxDialog
{ {
@ -61,7 +57,7 @@ class CDebugger : public wxDialog
DECLARE_EVENT_TABLE(); DECLARE_EVENT_TABLE();
public: public:
CDebugger(wxWindow *parent, wxWindowID id = 1, const wxString &title = wxT("Sound Debugger"), CDebugger(wxWindow *parent, wxWindowID id = 1, const wxString &title = _("Sound Debugger"),
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
long style = CDebugger_STYLE); long style = CDebugger_STYLE);
@ -89,7 +85,6 @@ class CDebugger : public wxDialog
wxStaticBox *m_Label[1]; wxStaticBox *m_Label[1];
wxPanel *m_Controller; wxPanel *m_Controller;
// ---------------------------------------------------------------------------------------
// WARNING: Make sure these are not also elsewhere, for example in resource.h. // WARNING: Make sure these are not also elsewhere, for example in resource.h.
enum enum
{ {
@ -108,8 +103,6 @@ class CDebugger : public wxDialog
ID_DUMMY_VALUE_ //don't remove this value unless you have other enum values ID_DUMMY_VALUE_ //don't remove this value unless you have other enum values
}; };
// ---------------------------------------------------------------------------------------
void OnClose(wxCloseEvent& event); void OnClose(wxCloseEvent& event);
void CreateGUIControls(); void CreateGUIControls();

View File

@ -23,7 +23,7 @@
// Includes // Includes
#include "../Globals.h"
#include <iostream> #include <iostream>
#include <vector> #include <vector>
#include <string> // so that we can test std::string == abc #include <string> // so that we can test std::string == abc
@ -31,15 +31,15 @@
#include <windows.h> #include <windows.h>
#endif #endif
#include "../Debugger/Debugger.h"
#include "../Debugger/PBView.h"
#include "Console.h" // open and close console, clear console window
#include "../Globals.h"
#include "../UCodes/UCodes.h" #include "../UCodes/UCodes.h"
#include "../UCodes/UCode_AXStructs.h" #include "../UCodes/UCode_AXStructs.h"
#include "../UCodes/UCode_AX.h" #include "../UCodes/UCode_AX.h"
#include "../Debugger/PBView.h"
#include "../Debugger/Debugger.h"
#include "Console.h" // open and close console, clear console window
// Externals // Externals
float ratioFactor; // a global to get the ratio factor from MixAdd float ratioFactor; // a global to get the ratio factor from MixAdd

View File

@ -15,7 +15,7 @@
// Official SVN repository and contact information can be found at // Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/ // http://code.google.com/p/dolphin-emu/
#include "../Globals.h" #include "../Debugger/Debugger.h"
#ifdef _WIN32 #ifdef _WIN32
#include "../PCHW/DSoundStream.h" #include "../PCHW/DSoundStream.h"
@ -27,7 +27,6 @@
#include "UCode_AXStructs.h" #include "UCode_AXStructs.h"
#include "UCode_AX.h" #include "UCode_AX.h"
#include "../Debugger/Debugger.h"
// --------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------
// Externals // Externals
// ----------- // -----------

View File

@ -16,10 +16,7 @@
// http://code.google.com/p/dolphin-emu/ // http://code.google.com/p/dolphin-emu/
// ======================================================================================= #include "Debugger/Debugger.h" // for the CDebugger class
// Includes
// ------------------
#include "Globals.h"
#include "ChunkFile.h" #include "ChunkFile.h"
#include "resource.h" #include "resource.h"
@ -36,7 +33,6 @@
#include "DSPHandler.h" #include "DSPHandler.h"
#include "Config.h" #include "Config.h"
#include "Debugger/Debugger.h" // for the CDebugger class
#include "Logging/Console.h" // for startConsoleWin, wprintf, GetConsoleHwnd #include "Logging/Console.h" // for startConsoleWin, wprintf, GetConsoleHwnd
// =================== // ===================

View File

@ -8,13 +8,11 @@ import utils
files = [ files = [
'BPStructs.cpp', 'BPStructs.cpp',
'DataReader.cpp',
'Globals.cpp', 'Globals.cpp',
'GLInit.cpp', 'GLInit.cpp',
'main.cpp', 'main.cpp',
'memcpy_amd.cpp', 'memcpy_amd.cpp',
'OpcodeDecoding.cpp', 'OpcodeDecoding.cpp',
# 'OpcodeReaders.cpp', # outdated
'PixelShader.cpp', 'PixelShader.cpp',
'PixelShaderManager.cpp', 'PixelShaderManager.cpp',
'rasterfont.cpp', 'rasterfont.cpp',