Some warning and code cleanup.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1998 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
omegadox
2009-01-24 00:45:46 +00:00
parent 70bc8167f8
commit 8f98f0b778
35 changed files with 123 additions and 102 deletions

View File

@ -642,7 +642,7 @@ extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen,
const char *fmt, va_list ap); const char *fmt, va_list ap);
#endif #endif
#ifndef HAVE_M_PI #ifndef M_PI
#define M_PI 3.14159265358979323846264338327950288 /* pi */ #define M_PI 3.14159265358979323846264338327950288 /* pi */
#endif #endif

View File

@ -441,6 +441,7 @@
ProgramDataBaseFileName="$(IntDir)\vc80.pdb" ProgramDataBaseFileName="$(IntDir)\vc80.pdb"
WarningLevel="4" WarningLevel="4"
SuppressStartupBanner="true" SuppressStartupBanner="true"
DisableSpecificWarnings="4267"
/> />
<Tool <Tool
Name="VCManagedResourceCompilerTool" Name="VCManagedResourceCompilerTool"
@ -2124,6 +2125,10 @@
<Filter <Filter
Name="Setup Headers" Name="Setup Headers"
> >
<File
RelativePath="..\..\include\wx\univ\setup.h"
>
</File>
<File <File
RelativePath="..\..\include\wx\msw\setup.h" RelativePath="..\..\include\wx\msw\setup.h"
> >
@ -2188,10 +2193,6 @@
/> />
</FileConfiguration> </FileConfiguration>
</File> </File>
<File
RelativePath="..\..\include\wx\univ\setup.h"
>
</File>
</Filter> </Filter>
<Filter <Filter
Name="MSW Headers" Name="MSW Headers"

View File

@ -139,6 +139,7 @@
WarningLevel="3" WarningLevel="3"
WarnAsError="false" WarnAsError="false"
SuppressStartupBanner="true" SuppressStartupBanner="true"
DisableSpecificWarnings="4267;4535;"
/> />
<Tool <Tool
Name="VCManagedResourceCompilerTool" Name="VCManagedResourceCompilerTool"
@ -5731,10 +5732,6 @@
<Filter <Filter
Name="Setup Headers" Name="Setup Headers"
> >
<File
RelativePath="..\..\include\wx\univ\setup.h"
>
</File>
<File <File
RelativePath="..\..\include\wx\msw\setup.h" RelativePath="..\..\include\wx\msw\setup.h"
> >
@ -5799,6 +5796,10 @@
/> />
</FileConfiguration> </FileConfiguration>
</File> </File>
<File
RelativePath="..\..\include\wx\univ\setup.h"
>
</File>
</Filter> </Filter>
<Filter <Filter
Name="MSW Headers" Name="MSW Headers"

View File

@ -299,6 +299,7 @@
WarnAsError="false" WarnAsError="false"
SuppressStartupBanner="true" SuppressStartupBanner="true"
Detect64BitPortabilityProblems="false" Detect64BitPortabilityProblems="false"
DisableSpecificWarnings="4267;4310;"
/> />
<Tool <Tool
Name="VCManagedResourceCompilerTool" Name="VCManagedResourceCompilerTool"
@ -16955,10 +16956,6 @@
<Filter <Filter
Name="Setup Headers" Name="Setup Headers"
> >
<File
RelativePath="..\..\include\wx\univ\setup.h"
>
</File>
<File <File
RelativePath="..\..\include\wx\msw\setup.h" RelativePath="..\..\include\wx\msw\setup.h"
> >
@ -17023,6 +17020,10 @@
/> />
</FileConfiguration> </FileConfiguration>
</File> </File>
<File
RelativePath="..\..\include\wx\univ\setup.h"
>
</File>
</Filter> </Filter>
<Filter <Filter
Name="MSW Headers" Name="MSW Headers"

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="Windows-1252"?> <?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject <VisualStudioProject
ProjectType="Visual C++" ProjectType="Visual C++"
Version="9,00" Version="9.00"
Name="Common" Name="Common"
ProjectGUID="{C573CAF7-EE6A-458E-8049-16C0BF34C2E9}" ProjectGUID="{C573CAF7-EE6A-458E-8049-16C0BF34C2E9}"
RootNamespace="Common" RootNamespace="Common"
@ -293,7 +293,7 @@
/> />
<Tool <Tool
Name="VCLibrarianTool" Name="VCLibrarianTool"
AdditionalDependencies="wsock32.lib winmm.lib" AdditionalDependencies="winmm.lib"
OutputFile="$(OutDir)/Common.lib" OutputFile="$(OutDir)/Common.lib"
/> />
<Tool <Tool

View File

@ -172,7 +172,7 @@ public:
} }
// get size // get size
int sz = FileSize - sizeof(SChunkHeader); int sz = (int)(FileSize - sizeof(SChunkHeader));
if (Header.ExpectedSize != sz) if (Header.ExpectedSize != sz)
{ {
fclose(pFile); fclose(pFile);
@ -213,7 +213,7 @@ public:
SChunkHeader Header; SChunkHeader Header;
Header.Compress = 0; Header.Compress = 0;
Header.Revision = _Revision; Header.Revision = _Revision;
Header.ExpectedSize = sz; Header.ExpectedSize = (int)sz;
fwrite(&Header, sizeof(SChunkHeader), 1, pFile); fwrite(&Header, sizeof(SChunkHeader), 1, pFile);
fwrite(buffer, sz, 1, pFile); fwrite(buffer, sz, 1, pFile);

View File

@ -126,7 +126,7 @@ int Print(const char *fmt, ...)
// ---------------- // ----------------
if(__hStdOut) if(__hStdOut)
{ {
WriteConsole(__hStdOut, s, strlen(s), &cCharsWritten, NULL); WriteConsole(__hStdOut, s, (DWORD)strlen(s), &cCharsWritten, NULL);
} }
// ---------------------------------------- // ----------------------------------------

View File

@ -325,8 +325,8 @@ void StackTrace( HANDLE hThread, LPCTSTR lpszMessage, FILE *file )
etfprint(file, "Call stack info: \n"); etfprint(file, "Call stack info: \n");
etfprint(file, lpszMessage); etfprint(file, lpszMessage);
GetFunctionInfoFromAddresses( callStack.AddrPC.Offset, callStack.AddrFrame.Offset, symInfo ); GetFunctionInfoFromAddresses( (ULONG)callStack.AddrPC.Offset, (ULONG)callStack.AddrFrame.Offset, symInfo );
GetSourceInfoFromAddress( callStack.AddrPC.Offset, srcInfo ); GetSourceInfoFromAddress( (ULONG)callStack.AddrPC.Offset, srcInfo );
etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n")); etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n"));
for( ULONG index = 0; ; index++ ) for( ULONG index = 0; ; index++ )
@ -348,8 +348,8 @@ void StackTrace( HANDLE hThread, LPCTSTR lpszMessage, FILE *file )
if( !bResult || callStack.AddrFrame.Offset == 0 ) if( !bResult || callStack.AddrFrame.Offset == 0 )
break; break;
GetFunctionInfoFromAddresses( callStack.AddrPC.Offset, callStack.AddrFrame.Offset, symInfo ); GetFunctionInfoFromAddresses( (ULONG)callStack.AddrPC.Offset, (ULONG)callStack.AddrFrame.Offset, symInfo );
GetSourceInfoFromAddress( callStack.AddrPC.Offset, srcInfo ); GetSourceInfoFromAddress( (UINT)callStack.AddrPC.Offset, srcInfo );
etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n")); etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n"));
} }
@ -386,8 +386,8 @@ void StackTrace( HANDLE hThread, LPCTSTR lpszMessage, FILE *file, DWORD eip, DWO
etfprint(file, "Call stack info: \n"); etfprint(file, "Call stack info: \n");
etfprint(file, lpszMessage); etfprint(file, lpszMessage);
GetFunctionInfoFromAddresses( callStack.AddrPC.Offset, callStack.AddrFrame.Offset, symInfo ); GetFunctionInfoFromAddresses( (ULONG)callStack.AddrPC.Offset, (ULONG)callStack.AddrFrame.Offset, symInfo );
GetSourceInfoFromAddress( callStack.AddrPC.Offset, srcInfo ); GetSourceInfoFromAddress( (UINT)callStack.AddrPC.Offset, srcInfo );
etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n")); etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n"));
for( ULONG index = 0; ; index++ ) for( ULONG index = 0; ; index++ )
@ -409,8 +409,8 @@ void StackTrace( HANDLE hThread, LPCTSTR lpszMessage, FILE *file, DWORD eip, DWO
if( !bResult || callStack.AddrFrame.Offset == 0 ) if( !bResult || callStack.AddrFrame.Offset == 0 )
break; break;
GetFunctionInfoFromAddresses( callStack.AddrPC.Offset, callStack.AddrFrame.Offset, symInfo ); GetFunctionInfoFromAddresses( (ULONG)callStack.AddrPC.Offset, (ULONG)callStack.AddrFrame.Offset, symInfo );
GetSourceInfoFromAddress( callStack.AddrPC.Offset, srcInfo ); GetSourceInfoFromAddress( (UINT)callStack.AddrPC.Offset, srcInfo );
etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n")); etfprint(file, string(" ") + srcInfo + string(" : ") + symInfo + string("\n"));
} }

View File

@ -406,7 +406,7 @@ int GetVal(const char *flt, char chr)
{ {
int ret; int ret;
ret = (strchr(flt,chr) - flt); ret = (int)(strchr(flt,chr) - flt);
switch (ret) switch (ret)
{ {
case 32: // 'I' case 32: // 'I'

View File

@ -655,7 +655,7 @@
int s = inst.RS; int s = inst.RS;
if (gpr.R(s).IsImm() && !inst.Rc) if (gpr.R(s).IsImm() && !inst.Rc)
{ {
unsigned result = gpr.R(s).offset; unsigned result = (int)gpr.R(s).offset;
if (inst.SH != 0) if (inst.SH != 0)
result = _rotl(result, inst.SH); result = _rotl(result, inst.SH);
result &= Helper_Mask(inst.MB, inst.ME); result &= Helper_Mask(inst.MB, inst.ME);

View File

@ -265,7 +265,7 @@
/> />
<Tool <Tool
Name="VCLibrarianTool" Name="VCLibrarianTool"
AdditionalDependencies="comctl32.lib rpcrt4.lib" AdditionalDependencies="rpcrt4.lib"
/> />
<Tool <Tool
Name="VCALinkTool" Name="VCALinkTool"
@ -464,22 +464,62 @@
<File <File
RelativePath=".\resources\toolbar_add_breakpoint.c" RelativePath=".\resources\toolbar_add_breakpoint.c"
> >
<FileConfiguration
Name="Release|x64"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File> </File>
<File <File
RelativePath=".\resources\toolbar_add_memorycheck.c" RelativePath=".\resources\toolbar_add_memorycheck.c"
> >
<FileConfiguration
Name="Release|x64"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File> </File>
<File <File
RelativePath=".\resources\toolbar_delete.c" RelativePath=".\resources\toolbar_delete.c"
> >
<FileConfiguration
Name="Release|x64"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File> </File>
<File <File
RelativePath=".\resources\toolbar_pause.c" RelativePath=".\resources\toolbar_pause.c"
> >
<FileConfiguration
Name="Release|x64"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File> </File>
<File <File
RelativePath=".\resources\toolbar_play.c" RelativePath=".\resources\toolbar_play.c"
> >
<FileConfiguration
Name="Release|x64"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File> </File>
</Filter> </Filter>
<File <File
@ -550,10 +590,6 @@
RelativePath=".\Src\CodeWindowSJP.cpp" RelativePath=".\Src\CodeWindowSJP.cpp"
> >
</File> </File>
<File
RelativePath=".\src\Debugger.cpp"
>
</File>
<File <File
RelativePath=".\src\Debugger.h" RelativePath=".\src\Debugger.h"
> >

View File

@ -1,19 +0,0 @@
// 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 "Debugger.h"

View File

@ -212,7 +212,7 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
int src, dst, srcAddr; int src, dst, srcAddr;
}; };
branch branches[256]; // branch branches[256]; // TODO: This is not being used
int numBranches = 0; int numBranches = 0;
// TODO: Add any drawing code here... // TODO: Add any drawing code here...
int width = rc.width; int width = rc.width;

View File

@ -13,7 +13,6 @@ files = ["LogWindow.cpp",
"CodeWindow.cpp", "CodeWindow.cpp",
"CodeWindowSJP.cpp", "CodeWindowSJP.cpp",
"CodeView.cpp", "CodeView.cpp",
"Debugger.cpp",
"MemoryCheckDlg.cpp", "MemoryCheckDlg.cpp",
"MemoryView.cpp", "MemoryView.cpp",
"MemoryWindow.cpp", "MemoryWindow.cpp",

View File

@ -101,7 +101,7 @@ bool IBannerLoader::CopySJISToString( std::string& _rDestination, const char* _s
// HyperIris: because dolphin using "Use Multi-Byte Character Set", // HyperIris: because dolphin using "Use Multi-Byte Character Set",
// we must convert the SJIS chars to unicode then to our windows local by hand // we must convert the SJIS chars to unicode then to our windows local by hand
u32 unicodeNameSize = MultiByteToWideChar(932, MB_PRECOMPOSED, u32 unicodeNameSize = MultiByteToWideChar(932, MB_PRECOMPOSED,
_src, strlen(_src), NULL, NULL); _src, (int)strlen(_src), NULL, NULL);
if (unicodeNameSize > 0) if (unicodeNameSize > 0)
{ {
u16* pUnicodeStrBuffer = new u16[unicodeNameSize + 1]; u16* pUnicodeStrBuffer = new u16[unicodeNameSize + 1];
@ -109,7 +109,7 @@ bool IBannerLoader::CopySJISToString( std::string& _rDestination, const char* _s
{ {
memset(pUnicodeStrBuffer, 0, (unicodeNameSize + 1) * sizeof(u16)); memset(pUnicodeStrBuffer, 0, (unicodeNameSize + 1) * sizeof(u16));
if (MultiByteToWideChar(932, MB_PRECOMPOSED, if (MultiByteToWideChar(932, MB_PRECOMPOSED,
_src, strlen(_src), _src, (int)strlen(_src),
(LPWSTR)pUnicodeStrBuffer, unicodeNameSize)) (LPWSTR)pUnicodeStrBuffer, unicodeNameSize))
{ {
u32 ansiNameSize = WideCharToMultiByte(CP_ACP, 0, u32 ansiNameSize = WideCharToMultiByte(CP_ACP, 0,
@ -150,7 +150,7 @@ bool IBannerLoader::CopyUnicodeToString( std::string& _rDestination, const u16*
if (_src) if (_src)
{ {
u32 ansiNameSize = WideCharToMultiByte(CP_ACP, 0, u32 ansiNameSize = WideCharToMultiByte(CP_ACP, 0,
(LPCWSTR)_src, wcslen((const wchar_t*)_src), (LPCWSTR)_src, (int)wcslen((const wchar_t*)_src),
NULL, NULL, NULL, NULL); NULL, NULL, NULL, NULL);
if (ansiNameSize > 0) if (ansiNameSize > 0)
{ {
@ -159,7 +159,7 @@ bool IBannerLoader::CopyUnicodeToString( std::string& _rDestination, const u16*
{ {
memset(pAnsiStrBuffer, 0, (ansiNameSize + 1) * sizeof(char)); memset(pAnsiStrBuffer, 0, (ansiNameSize + 1) * sizeof(char));
if (WideCharToMultiByte(CP_ACP, 0, if (WideCharToMultiByte(CP_ACP, 0,
(LPCWSTR)_src, wcslen((const wchar_t*)_src), (LPCWSTR)_src, (int)wcslen((const wchar_t*)_src),
pAnsiStrBuffer, ansiNameSize, NULL, NULL)) pAnsiStrBuffer, ansiNameSize, NULL, NULL))
{ {
_rDestination = pAnsiStrBuffer; _rDestination = pAnsiStrBuffer;

View File

@ -145,7 +145,7 @@ void CVolumeDirectory::SetUniqueID(std::string _ID)
{ {
_dbg_assert_(DVDINTERFACE, m_diskHeader); _dbg_assert_(DVDINTERFACE, m_diskHeader);
u32 length = _ID.length(); u32 length = (u32)_ID.length();
if(length > 6) if(length > 6)
length = 6; length = 6;
@ -218,7 +218,7 @@ void CVolumeDirectory::SetName(std::string _Name)
{ {
_dbg_assert_(DVDINTERFACE, m_diskHeader); _dbg_assert_(DVDINTERFACE, m_diskHeader);
u32 length = _Name.length(); u32 length = (u32)_Name.length();
if(length > MAX_NAME_LENGTH) if(length > MAX_NAME_LENGTH)
length = MAX_NAME_LENGTH; length = MAX_NAME_LENGTH;
@ -410,7 +410,7 @@ void CVolumeDirectory::WriteEntryName(u32& nameOffset, const std::string& name)
{ {
strncpy((char*)(m_FSTData + nameOffset + m_fstNameOffset), name.c_str(), name.length() + 1); strncpy((char*)(m_FSTData + nameOffset + m_fstNameOffset), name.c_str(), name.length() + 1);
nameOffset += (name.length() + 1); nameOffset += (u32)(name.length() + 1);
} }
void CVolumeDirectory::WriteEntry(const File::FSTEntry& entry, u32& fstOffset, u32& nameOffset, u64& dataOffset, u32 parentEntryNum) void CVolumeDirectory::WriteEntry(const File::FSTEntry& entry, u32& fstOffset, u32& nameOffset, u64& dataOffset, u32 parentEntryNum)
@ -454,7 +454,7 @@ static u32 ComputeNameSize(const File::FSTEntry& parentEntry)
{ {
nameSize += ComputeNameSize(entry); nameSize += ComputeNameSize(entry);
} }
nameSize += entry.virtualName.length() + 1; nameSize += (u32)entry.virtualName.length() + 1;
} }
return nameSize; return nameSize;
} }

View File

@ -380,7 +380,7 @@ void CGameListCtrl::ScanForISOs(bool bUpdateCache)
{ {
wxProgressDialog dialog(_T("Scanning for ISOs"), wxProgressDialog dialog(_T("Scanning for ISOs"),
_T("Scanning..."), _T("Scanning..."),
rFilenames.size(), // range (int)rFilenames.size(), // range
this, // parent this, // parent
wxPD_APP_MODAL | wxPD_APP_MODAL |
// wxPD_AUTO_HIDE | -- try this as well // wxPD_AUTO_HIDE | -- try this as well

View File

@ -679,7 +679,7 @@ void CISOProperties::PatchButtonClicked(wxCommandEvent& event)
if (dlg.ShowModal() == wxID_OK) if (dlg.ShowModal() == wxID_OK)
{ {
Patches->Append(wxString::FromAscii(onFrame.back().name.c_str())); Patches->Append(wxString::FromAscii(onFrame.back().name.c_str()));
Patches->Check(onFrame.size() - 1, onFrame.back().active); Patches->Check((unsigned int)(onFrame.size() - 1), onFrame.back().active);
} }
} }
break; break;

View File

@ -312,7 +312,7 @@ void DolphinApp::OnEndSession()
/////////////////////////////////////// Main window created /////////////////////////////////////// Main window created
#if defined HAVE_WX && HAVE_WX #if defined HAVE_WX && HAVE_WX
bool wxMsgAlert(const char* caption, const char* text, bool yes_no, int Style) bool wxMsgAlert(const char* caption, const char* text, bool yes_no, int /*Style*/)
{ {
return wxYES == wxMessageBox(wxString::FromAscii(text), return wxYES == wxMessageBox(wxString::FromAscii(text),
wxString::FromAscii(caption), wxString::FromAscii(caption),

View File

@ -157,7 +157,7 @@ void Fifo_EnterLoop(const SVideoInitialize &video_initialize)
} }
Video_SendFifoData(uData, distToSend); Video_SendFifoData(uData, distToSend);
Common::SyncInterlockedExchange((LONG*)&_fifo.CPReadPointer, readPtr); Common::SyncInterlockedExchange((LONG*)&_fifo.CPReadPointer, readPtr);
Common::SyncInterlockedExchangeAdd((LONG*)&_fifo.CPReadWriteDistance, -distToSend); Common::SyncInterlockedExchangeAdd((LONG*)&_fifo.CPReadWriteDistance, -(__int64)distToSend);
} }
//video_initialize.pLog("..........................IDLE",FALSE); //video_initialize.pLog("..........................IDLE",FALSE);
Common::SyncInterlockedExchange((LONG*)&_fifo.CPReadIdle, 1); Common::SyncInterlockedExchange((LONG*)&_fifo.CPReadIdle, 1);

View File

@ -218,7 +218,7 @@ if(m_frame->ScanMails)
if(addnew == m_frame->sMail.size()) if(addnew == m_frame->sMail.size())
{ {
//Console::Print("%i | %i\n", addnew, m_frame->sMail.size()); //Console::Print("%i | %i\n", addnew, m_frame->sMail.size());
u32 resizeTo = m_frame->sMail.size() + 1; u32 resizeTo = (u32)(m_frame->sMail.size() + 1);
// ------------------------------------ // ------------------------------------
// get timestamp // get timestamp

View File

@ -520,7 +520,7 @@ bool gd_dis_file(gd_globals_t* gdg, char* name, FILE* output)
} }
fseek(in, 0, SEEK_END); fseek(in, 0, SEEK_END);
size = ftell(in); size = (int)ftell(in);
fseek(in, 0, SEEK_SET); fseek(in, 0, SEEK_SET);
gdg->binbuf = (uint16*)malloc(size); gdg->binbuf = (uint16*)malloc(size);
fread(gdg->binbuf, 1, size, in); fread(gdg->binbuf, 1, size, in);

View File

@ -199,7 +199,7 @@ void RasterFont::printMultilineText(const char *text, double start_x, double sta
//todo: add tabs every something like 4*char_width //todo: add tabs every something like 4*char_width
*t=0; *t=0;
int cpos = strlen(temp); int cpos = (int)strlen(temp);
int newpos = (cpos+4)&(~3); int newpos = (cpos+4)&(~3);

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="Windows-1252"?> <?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject <VisualStudioProject
ProjectType="Visual C++" ProjectType="Visual C++"
Version="9,00" Version="9.00"
Name="Plugin_Wiimote" Name="Plugin_Wiimote"
ProjectGUID="{8D612734-FAA5-4B8A-804F-4DEA2367D495}" ProjectGUID="{8D612734-FAA5-4B8A-804F-4DEA2367D495}"
RootNamespace="Plugin_Wiimote" RootNamespace="Plugin_Wiimote"
@ -296,13 +296,13 @@
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\PluginSpecs;..\..\..\Externals\SDL\include;..\..\Core\Common\Src;..\..\..\Externals\wxWidgets\Include;..\..\..\Externals\wxWidgets\Include\msvc;..\..\..\Externals\WiiUse\inc" AdditionalIncludeDirectories="..\..\PluginSpecs;..\..\..\Externals\SDL\include;..\..\Core\Common\Src;..\..\..\Externals\wxWidgets\Include;..\..\..\Externals\wxWidgets\Include\msvc;..\..\..\Externals\WiiUse\inc"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_WIIMOTE_TEST_EXPORTS;_SECURE_SCL=0" PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_WIIMOTE_TEST_EXPORTS;_SECURE_SCL=0;_CRT_SECURE_NO_WARNINGS"
RuntimeLibrary="0" RuntimeLibrary="0"
AssemblerListingLocation="$(IntDir)\" AssemblerListingLocation="$(IntDir)\"
ProgramDataBaseFileName="$(IntDir)\" ProgramDataBaseFileName="$(IntDir)\"
WarningLevel="3" WarningLevel="3"
WarnAsError="false" WarnAsError="false"
Detect64BitPortabilityProblems="true" Detect64BitPortabilityProblems="false"
DebugInformationFormat="3" DebugInformationFormat="3"
/> />
<Tool <Tool

View File

@ -164,7 +164,7 @@ void CreateAckDelay(u8 _ChannelID, u16 _ReportID)
wm_ackdelay Tmp; wm_ackdelay Tmp;
Tmp.Delay = GlobalDelay; Tmp.Delay = GlobalDelay;
Tmp.ChannelID = _ChannelID; Tmp.ChannelID = _ChannelID;
Tmp.ReportID = _ReportID; Tmp.ReportID = (u8)_ReportID;
AckDelay.push_back(Tmp); AckDelay.push_back(Tmp);
} }
@ -267,7 +267,7 @@ void InterruptChannel(u16 _channelID, const void* _pData, u32 _Size)
//if((data[1] == WM_WRITE_DATA || data[1] == WM_READ_DATA) //if((data[1] == WM_WRITE_DATA || data[1] == WM_READ_DATA)
// && data[3] == 0xa4) // && data[3] == 0xa4)
//{ //{
CreateAckDelay(_channelID, sr->channel); CreateAckDelay((u8)_channelID, (u16)sr->channel);
//} //}
//else //else
//{ //{

View File

@ -180,7 +180,7 @@ void FillReportAcc(wm_accel& _acc)
|| shake > 0 || shake > 0
); );
#endif #endif
if(yhistsize > yhist.size()) yhistsize = yhist.size(); if(yhistsize > yhist.size()) yhistsize = (int)yhist.size();
for (int i = 1; i < yhistsize; i++) for (int i = 1; i < yhistsize; i++)
{ {
yhist[i-1] = yhist[i]; yhist[i-1] = yhist[i];

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="Windows-1252"?> <?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject <VisualStudioProject
ProjectType="Visual C++" ProjectType="Visual C++"
Version="9,00" Version="9.00"
Name="Plugin_nJoy_SDL" Name="Plugin_nJoy_SDL"
ProjectGUID="{521498BE-6089-4780-8223-E67C22F4E068}" ProjectGUID="{521498BE-6089-4780-8223-E67C22F4E068}"
RootNamespace="Plugin_nJoy_SDL" RootNamespace="Plugin_nJoy_SDL"
@ -283,7 +283,7 @@
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\PluginSpecs;..\..\..\Externals\SDL\Include_1.2;..\..\Core\Common\Src;..\..\..\Externals\wxWidgets\Include;..\..\..\Externals\wxWidgets\Include\msvc" AdditionalIncludeDirectories="..\..\PluginSpecs;..\..\..\Externals\SDL\Include_1.2;..\..\Core\Common\Src;..\..\..\Externals\wxWidgets\Include;..\..\..\Externals\wxWidgets\Include\msvc"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_NJOY_SDL_EXPORTS;_SECURE_SCL=0" PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_NJOY_SDL_EXPORTS;_SECURE_SCL=0;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE"
RuntimeLibrary="0" RuntimeLibrary="0"
UsePrecompiledHeader="0" UsePrecompiledHeader="0"
WarningLevel="3" WarningLevel="3"

View File

@ -38,6 +38,7 @@
Config g_Config; Config g_Config;
extern ConfigBox* m_frame; extern ConfigBox* m_frame;
////////////////////////////////// //////////////////////////////////

View File

@ -33,7 +33,6 @@
#include "../nJoy.h" #include "../nJoy.h"
#include "Images/njoy.xpm" #include "Images/njoy.xpm"
BEGIN_EVENT_TABLE(AboutBox,wxDialog) BEGIN_EVENT_TABLE(AboutBox,wxDialog)
EVT_CLOSE(AboutBox::OnClose) EVT_CLOSE(AboutBox::OnClose)
EVT_BUTTON(ID_OK, AboutBox::OKClick) EVT_BUTTON(ID_OK, AboutBox::OKClick)

View File

@ -455,7 +455,7 @@ void ConfigBox::UpdateGUI(int _notebookpage)
LogMsg("Update: %i\n", g_Config.bSaveByID); LogMsg("Update: %i\n", g_Config.bSaveByID);
// Disabled pages // Disabled pages
bool Enabled = PadMapping[_notebookpage].enabled; bool Enabled = PadMapping[_notebookpage].enabled == 1 ? true : false;
// There is no FindItem in linux so this doesn't work // There is no FindItem in linux so this doesn't work
#ifdef _WIN32 #ifdef _WIN32
// Enable or disable all buttons // Enable or disable all buttons

View File

@ -56,7 +56,7 @@ void ConfigBox::UpdateGUIKeys(int controller)
m_Joyname[controller]->SetSelection(PadMapping[controller].ID); m_Joyname[controller]->SetSelection(PadMapping[controller].ID);
// Update the enabled checkbox // Update the enabled checkbox
m_Joyattach[controller]->SetValue(PadMapping[controller].enabled); m_Joyattach[controller]->SetValue(PadMapping[controller].enabled == 1 ? true : false);
tmp << PadMapping[controller].buttons[CTL_L_SHOULDER]; m_JoyShoulderL[controller]->SetValue(tmp); tmp.clear(); tmp << PadMapping[controller].buttons[CTL_L_SHOULDER]; m_JoyShoulderL[controller]->SetValue(tmp); tmp.clear();
tmp << PadMapping[controller].buttons[CTL_R_SHOULDER]; m_JoyShoulderR[controller]->SetValue(tmp); tmp.clear(); tmp << PadMapping[controller].buttons[CTL_R_SHOULDER]; m_JoyShoulderR[controller]->SetValue(tmp); tmp.clear();
@ -203,28 +203,32 @@ wxString ConfigBox::GetButtonText(int id)
switch(id) switch(id)
{ {
// D-Pad
case IDB_DPAD_RIGHT: return m_JoyDpadRight[controller]->GetValue(); case IDB_DPAD_RIGHT: return m_JoyDpadRight[controller]->GetValue();
case IDB_DPAD_UP: return m_JoyDpadUp[controller]->GetValue(); break; case IDB_DPAD_UP: return m_JoyDpadUp[controller]->GetValue();
case IDB_DPAD_DOWN: return m_JoyDpadDown[controller]->GetValue(); break; case IDB_DPAD_DOWN: return m_JoyDpadDown[controller]->GetValue();
case IDB_DPAD_LEFT: return m_JoyDpadLeft[controller]->GetValue(); break; case IDB_DPAD_LEFT: return m_JoyDpadLeft[controller]->GetValue();
case IDB_ANALOG_MAIN_X: return m_JoyAnalogMainX[controller]->GetValue(); break; // Analog Stick
case IDB_ANALOG_MAIN_Y: return m_JoyAnalogMainY[controller]->GetValue(); break; case IDB_ANALOG_MAIN_X: return m_JoyAnalogMainX[controller]->GetValue();
case IDB_ANALOG_SUB_X: return m_JoyAnalogSubX[controller]->GetValue(); break; case IDB_ANALOG_MAIN_Y: return m_JoyAnalogMainY[controller]->GetValue();
case IDB_ANALOG_SUB_Y: return m_JoyAnalogSubY[controller]->GetValue(); break; case IDB_ANALOG_SUB_X: return m_JoyAnalogSubX[controller]->GetValue();
case IDB_ANALOG_SUB_Y: return m_JoyAnalogSubY[controller]->GetValue();
case IDB_SHOULDER_L: return m_JoyShoulderL[controller]->GetValue(); break; // Shoulder Buttons
case IDB_SHOULDER_R: return m_JoyShoulderR[controller]->GetValue(); break; case IDB_SHOULDER_L: return m_JoyShoulderL[controller]->GetValue();
case IDB_SHOULDER_R: return m_JoyShoulderR[controller]->GetValue();
case IDB_BUTTON_A: return m_JoyButtonA[controller]->GetValue(); break; // Buttons
case IDB_BUTTON_B: return m_JoyButtonB[controller]->GetValue(); break; case IDB_BUTTON_A: return m_JoyButtonA[controller]->GetValue();
case IDB_BUTTON_X: return m_JoyButtonX[controller]->GetValue(); break; case IDB_BUTTON_B: return m_JoyButtonB[controller]->GetValue();
case IDB_BUTTON_Y: return m_JoyButtonY[controller]->GetValue(); break; case IDB_BUTTON_X: return m_JoyButtonX[controller]->GetValue();
case IDB_BUTTON_Z: return m_JoyButtonZ[controller]->GetValue(); break; case IDB_BUTTON_Y: return m_JoyButtonY[controller]->GetValue();
case IDB_BUTTONSTART: return m_JoyButtonStart[controller]->GetValue(); break; case IDB_BUTTON_Z: return m_JoyButtonZ[controller]->GetValue();
case IDB_BUTTONSTART: return m_JoyButtonStart[controller]->GetValue();
case IDB_BUTTONHALFPRESS: return m_JoyButtonHalfpress[controller]->GetValue(); break; case IDB_BUTTONHALFPRESS: return m_JoyButtonHalfpress[controller]->GetValue();
default: break; default: return wxString("");
} }
} }

View File

@ -666,7 +666,7 @@ std::vector<int> Pad_Square_to_Circle(int _x, int _y, int _pad)
float SquareDist = SquareDistance(deg); float SquareDist = SquareDistance(deg);
float adj_ratio1; // The original-to-square distance adjustment float adj_ratio1; // The original-to-square distance adjustment
float adj_ratio2 = SquareDist; // The circle-to-square distance adjustment float adj_ratio2 = SquareDist; // The circle-to-square distance adjustment
float final_ratio; // The final adjustment to the current distance // float final_ratio; // The final adjustment to the current distance //TODO: This is not used
float result_dist; // The resulting distance float result_dist; // The resulting distance
// Calculate the corner-to-square adjustment ratio // Calculate the corner-to-square adjustment ratio

View File

@ -64,7 +64,6 @@
#ifdef _WIN32 #ifdef _WIN32
#include <tchar.h> #include <tchar.h>
#define _CRT_SECURE_NO_WARNINGS
#define DIRECTINPUT_VERSION 0x0800 #define DIRECTINPUT_VERSION 0x0800
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="Windows-1252"?> <?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject <VisualStudioProject
ProjectType="Visual C++" ProjectType="Visual C++"
Version="9,00" Version="9.00"
Name="Plugin_nJoy_SDL_Test" Name="Plugin_nJoy_SDL_Test"
ProjectGUID="{ADF64291-57ED-4B7A-AB76-37B4A991504B}" ProjectGUID="{ADF64291-57ED-4B7A-AB76-37B4A991504B}"
RootNamespace="Plugin_nJoy_SDL" RootNamespace="Plugin_nJoy_SDL"
@ -286,7 +286,7 @@
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\PluginSpecs;..\..\..\Externals\SDL\include;..\..\Core\Common\Src;..\..\..\Externals\wxWidgets\Include;..\..\..\Externals\wxWidgets\Include\msvc" AdditionalIncludeDirectories="..\..\PluginSpecs;..\..\..\Externals\SDL\include;..\..\Core\Common\Src;..\..\..\Externals\wxWidgets\Include;..\..\..\Externals\wxWidgets\Include\msvc"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_NJOY_SDL_EXPORTS;_SECURE_SCL=0" PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PLUGIN_NJOY_SDL_EXPORTS;_SECURE_SCL=0;_CRT_SECURE_NO_WARNINGS"
RuntimeLibrary="0" RuntimeLibrary="0"
UsePrecompiledHeader="0" UsePrecompiledHeader="0"
WarningLevel="3" WarningLevel="3"

View File

@ -51,7 +51,6 @@
#pragma comment(lib, "comctl32.lib") #pragma comment(lib, "comctl32.lib")
#include <tchar.h> #include <tchar.h>
#include <math.h> #include <math.h>
#define _CRT_SECURE_NO_WARNINGS
#define DIRECTINPUT_VERSION 0x0800 #define DIRECTINPUT_VERSION 0x0800
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN