mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 10:39:45 -06:00
Hg:
enable newline normalization get revision number via `hg svn info` for svnrev.h ignore incremental/generated binary files (windows/VS at least) leave a comment if some files need native eol set in svnprops git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5637 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
1038
Externals/MemcardManager/src/MCMdebug.cpp
vendored
1038
Externals/MemcardManager/src/MCMdebug.cpp
vendored
File diff suppressed because it is too large
Load Diff
222
Externals/MemcardManager/src/MCMdebug.h
vendored
222
Externals/MemcardManager/src/MCMdebug.h
vendored
@ -1,111 +1,111 @@
|
||||
// Copyright (C) 2003 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/
|
||||
|
||||
#ifndef __MCM_H__
|
||||
#define __MCM_H__
|
||||
|
||||
#include "MemcardManager.h"
|
||||
#include <wx/gbsizer.h>
|
||||
#include <wx/notebook.h>
|
||||
|
||||
|
||||
class CMemcardManagerDebug : public wxFrame
|
||||
{
|
||||
public:
|
||||
|
||||
CMemcardManagerDebug(wxFrame* parent, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
|
||||
virtual ~CMemcardManagerDebug(){};
|
||||
void updatePanels(GCMemcard ** memCard,int card);
|
||||
|
||||
private:
|
||||
enum
|
||||
{
|
||||
ID_NOTEBOOK_MAIN,
|
||||
ID_TAB_HDR,
|
||||
ID_TAB_DIR,
|
||||
ID_TAB_DIR_B,
|
||||
ID_TAB_BAT,
|
||||
ID_TAB_BAT_B,
|
||||
};
|
||||
|
||||
|
||||
|
||||
GCMemcard **memoryCard;
|
||||
|
||||
wxNotebook *m_Notebook_MCMD;
|
||||
|
||||
wxPanel *m_Tab_HDR,
|
||||
*m_Tab_DIR,
|
||||
*m_Tab_DIR_b,
|
||||
*m_Tab_BAT,
|
||||
*m_Tab_BAT_b;
|
||||
|
||||
wxBoxSizer *sMain,
|
||||
*sDebug,
|
||||
*sDebug2;
|
||||
|
||||
wxStaticText *t_HDR_ser[2],
|
||||
*t_HDR_fmtTime[2],
|
||||
*t_HDR_SRAMBIAS[2],
|
||||
*t_HDR_SRAMLANG[2],
|
||||
*t_HDR_Unk2[2],
|
||||
*t_HDR_devID[2],
|
||||
*t_HDR_Size[2],
|
||||
*t_HDR_Encoding[2],
|
||||
*t_HDR_UpdateCounter[2],
|
||||
*t_HDR_CheckSum1[2],
|
||||
*t_HDR_CheckSum2[2],
|
||||
|
||||
*t_DIR_UpdateCounter[2],
|
||||
*t_DIR_CheckSum1[2],
|
||||
*t_DIR_CheckSum2[2],
|
||||
|
||||
*t_DIR_b_UpdateCounter[2],
|
||||
*t_DIR_b_CheckSum1[2],
|
||||
*t_DIR_b_CheckSum2[2],
|
||||
|
||||
*t_BAT_CheckSum1[2],
|
||||
*t_BAT_CheckSum2[2],
|
||||
*t_BAT_UpdateCounter[2],
|
||||
*t_BAT_FreeBlocks[2],
|
||||
*t_BAT_LastAllocated[2],
|
||||
*t_BAT_map[256][2],
|
||||
|
||||
*t_BAT_b_CheckSum1[2],
|
||||
*t_BAT_b_CheckSum2[2],
|
||||
*t_BAT_b_UpdateCounter[2],
|
||||
*t_BAT_b_FreeBlocks[2],
|
||||
*t_BAT_b_LastAllocated[2];
|
||||
|
||||
DECLARE_EVENT_TABLE();
|
||||
void Init_ChildControls();
|
||||
void OnClose(wxCloseEvent& event);
|
||||
|
||||
void Init_HDR();
|
||||
void Init_DIR();
|
||||
void Init_DIR_b();
|
||||
void Init_BAT();
|
||||
void Init_BAT_b();
|
||||
void updateHDRtab(int card);
|
||||
void updateDIRtab(int card);
|
||||
void updateDIRBtab(int card);
|
||||
void updateBATtab(int card);
|
||||
void updateBATBtab(int card);
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
// Copyright (C) 2003 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/
|
||||
|
||||
#ifndef __MCM_H__
|
||||
#define __MCM_H__
|
||||
|
||||
#include "MemcardManager.h"
|
||||
#include <wx/gbsizer.h>
|
||||
#include <wx/notebook.h>
|
||||
|
||||
|
||||
class CMemcardManagerDebug : public wxFrame
|
||||
{
|
||||
public:
|
||||
|
||||
CMemcardManagerDebug(wxFrame* parent, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
|
||||
virtual ~CMemcardManagerDebug(){};
|
||||
void updatePanels(GCMemcard ** memCard,int card);
|
||||
|
||||
private:
|
||||
enum
|
||||
{
|
||||
ID_NOTEBOOK_MAIN,
|
||||
ID_TAB_HDR,
|
||||
ID_TAB_DIR,
|
||||
ID_TAB_DIR_B,
|
||||
ID_TAB_BAT,
|
||||
ID_TAB_BAT_B,
|
||||
};
|
||||
|
||||
|
||||
|
||||
GCMemcard **memoryCard;
|
||||
|
||||
wxNotebook *m_Notebook_MCMD;
|
||||
|
||||
wxPanel *m_Tab_HDR,
|
||||
*m_Tab_DIR,
|
||||
*m_Tab_DIR_b,
|
||||
*m_Tab_BAT,
|
||||
*m_Tab_BAT_b;
|
||||
|
||||
wxBoxSizer *sMain,
|
||||
*sDebug,
|
||||
*sDebug2;
|
||||
|
||||
wxStaticText *t_HDR_ser[2],
|
||||
*t_HDR_fmtTime[2],
|
||||
*t_HDR_SRAMBIAS[2],
|
||||
*t_HDR_SRAMLANG[2],
|
||||
*t_HDR_Unk2[2],
|
||||
*t_HDR_devID[2],
|
||||
*t_HDR_Size[2],
|
||||
*t_HDR_Encoding[2],
|
||||
*t_HDR_UpdateCounter[2],
|
||||
*t_HDR_CheckSum1[2],
|
||||
*t_HDR_CheckSum2[2],
|
||||
|
||||
*t_DIR_UpdateCounter[2],
|
||||
*t_DIR_CheckSum1[2],
|
||||
*t_DIR_CheckSum2[2],
|
||||
|
||||
*t_DIR_b_UpdateCounter[2],
|
||||
*t_DIR_b_CheckSum1[2],
|
||||
*t_DIR_b_CheckSum2[2],
|
||||
|
||||
*t_BAT_CheckSum1[2],
|
||||
*t_BAT_CheckSum2[2],
|
||||
*t_BAT_UpdateCounter[2],
|
||||
*t_BAT_FreeBlocks[2],
|
||||
*t_BAT_LastAllocated[2],
|
||||
*t_BAT_map[256][2],
|
||||
|
||||
*t_BAT_b_CheckSum1[2],
|
||||
*t_BAT_b_CheckSum2[2],
|
||||
*t_BAT_b_UpdateCounter[2],
|
||||
*t_BAT_b_FreeBlocks[2],
|
||||
*t_BAT_b_LastAllocated[2];
|
||||
|
||||
DECLARE_EVENT_TABLE();
|
||||
void Init_ChildControls();
|
||||
void OnClose(wxCloseEvent& event);
|
||||
|
||||
void Init_HDR();
|
||||
void Init_DIR();
|
||||
void Init_DIR_b();
|
||||
void Init_BAT();
|
||||
void Init_BAT_b();
|
||||
void updateHDRtab(int card);
|
||||
void updateDIRtab(int card);
|
||||
void updateDIRBtab(int card);
|
||||
void updateBATtab(int card);
|
||||
void updateBATBtab(int card);
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
34
Externals/MemcardManager/src/MCMmain.h
vendored
34
Externals/MemcardManager/src/MCMmain.h
vendored
@ -1,17 +1,17 @@
|
||||
#ifndef _MCM__
|
||||
#define _MCM__
|
||||
|
||||
void __Log(int logNumber, const char* text, ...){logNumber; text;}
|
||||
void __Logv(int log, int v, const char *format, ...){log; v; format;}
|
||||
|
||||
#include "MemcardManager.h"
|
||||
#include "Timer.h"
|
||||
|
||||
class MCMApp
|
||||
: public wxApp
|
||||
{
|
||||
public:
|
||||
bool OnInit();
|
||||
|
||||
};
|
||||
#endif
|
||||
#ifndef _MCM__
|
||||
#define _MCM__
|
||||
|
||||
void __Log(int logNumber, const char* text, ...){logNumber; text;}
|
||||
void __Logv(int log, int v, const char *format, ...){log; v; format;}
|
||||
|
||||
#include "MemcardManager.h"
|
||||
#include "Timer.h"
|
||||
|
||||
class MCMApp
|
||||
: public wxApp
|
||||
{
|
||||
public:
|
||||
bool OnInit();
|
||||
|
||||
};
|
||||
#endif
|
||||
|
102
Externals/MemcardManager/src/mcmMain.cpp
vendored
102
Externals/MemcardManager/src/mcmMain.cpp
vendored
@ -1,51 +1,51 @@
|
||||
// Copyright (C) 2003 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 "MCMmain.h"
|
||||
|
||||
IMPLEMENT_APP(MCMApp)
|
||||
|
||||
CMemcardManager *main_frame;
|
||||
|
||||
#if defined HAVE_WX && HAVE_WX
|
||||
bool wxMsgAlert(const char* caption, const char* text, bool yes_no, int Style)
|
||||
{
|
||||
return wxYES == wxMessageBox(wxString::FromAscii(text),
|
||||
wxString::FromAscii(caption),
|
||||
(yes_no)?wxYES_NO:wxOK);
|
||||
}
|
||||
#endif
|
||||
|
||||
bool MCMApp::OnInit()
|
||||
{
|
||||
// Register message box handler
|
||||
#if defined(HAVE_WX) && HAVE_WX
|
||||
RegisterMsgAlertHandler(&wxMsgAlert);
|
||||
#endif
|
||||
|
||||
main_frame = new CMemcardManager((wxFrame*) NULL, wxID_ANY, wxString::FromAscii("Memcard Manager"),
|
||||
wxPoint(100, 100), wxSize(800, 600));
|
||||
main_frame->Show();
|
||||
SetTopWindow(main_frame);
|
||||
return true;
|
||||
}
|
||||
|
||||
u32 CEXIIPL::GetGCTime()
|
||||
{
|
||||
const u32 cJanuary2000 = 0x386D42C0; // Seconds between 1.1.1970 and 1.1.2000
|
||||
u64 ltime = Common::Timer::GetLocalTimeSinceJan1970();
|
||||
return ((u32)ltime - cJanuary2000);
|
||||
}
|
||||
// Copyright (C) 2003 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 "MCMmain.h"
|
||||
|
||||
IMPLEMENT_APP(MCMApp)
|
||||
|
||||
CMemcardManager *main_frame;
|
||||
|
||||
#if defined HAVE_WX && HAVE_WX
|
||||
bool wxMsgAlert(const char* caption, const char* text, bool yes_no, int Style)
|
||||
{
|
||||
return wxYES == wxMessageBox(wxString::FromAscii(text),
|
||||
wxString::FromAscii(caption),
|
||||
(yes_no)?wxYES_NO:wxOK);
|
||||
}
|
||||
#endif
|
||||
|
||||
bool MCMApp::OnInit()
|
||||
{
|
||||
// Register message box handler
|
||||
#if defined(HAVE_WX) && HAVE_WX
|
||||
RegisterMsgAlertHandler(&wxMsgAlert);
|
||||
#endif
|
||||
|
||||
main_frame = new CMemcardManager((wxFrame*) NULL, wxID_ANY, wxString::FromAscii("Memcard Manager"),
|
||||
wxPoint(100, 100), wxSize(800, 600));
|
||||
main_frame->Show();
|
||||
SetTopWindow(main_frame);
|
||||
return true;
|
||||
}
|
||||
|
||||
u32 CEXIIPL::GetGCTime()
|
||||
{
|
||||
const u32 cJanuary2000 = 0x386D42C0; // Seconds between 1.1.1970 and 1.1.2000
|
||||
u64 ltime = Common::Timer::GetLocalTimeSinceJan1970();
|
||||
return ((u32)ltime - cJanuary2000);
|
||||
}
|
||||
|
Reference in New Issue
Block a user