492 lines
11 KiB
C++
492 lines
11 KiB
C++
#include "stdafx.h"
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
File: RageUtil
|
|
|
|
Desc: See header.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "RageUtil.h"
|
|
|
|
|
|
|
|
bool IsAnInt( LPCTSTR s )
|
|
{
|
|
if( strlen(s) == 0 )
|
|
return false;
|
|
|
|
for( UINT i=0; i<strlen(s); i++ )
|
|
{
|
|
if( s[i] < '0' || s[i] > '9' )
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
float TimeToSeconds( CString sHMS )
|
|
{
|
|
CStringArray arrayBits;
|
|
split( sHMS, ":", arrayBits, false );
|
|
|
|
while( arrayBits.GetSize() < 3 )
|
|
arrayBits.InsertAt( 0, "0" ); // pad missing bits
|
|
|
|
float fSeconds = 0;
|
|
fSeconds += atoi( arrayBits[0] ) * 60 * 60;
|
|
fSeconds += atoi( arrayBits[1] ) * 60;
|
|
fSeconds += (float)atof( arrayBits[2] );
|
|
|
|
return fSeconds;
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Name: ssprintf()
|
|
// Desc:
|
|
//-----------------------------------------------------------------------------
|
|
CString ssprintf( LPCTSTR fmt, ...)
|
|
{
|
|
va_list va;
|
|
va_start(va, fmt);
|
|
return vssprintf(fmt, va);
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Name: vssprintf()
|
|
// Desc:
|
|
//-----------------------------------------------------------------------------
|
|
CString vssprintf( LPCTSTR fmt, va_list argList)
|
|
{
|
|
CString str;
|
|
str.FormatV(fmt, argList);
|
|
return str;
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Name: join()
|
|
// Desc:
|
|
//-----------------------------------------------------------------------------
|
|
CString join( const CString &Deliminator, const CStringArray& Source)
|
|
{
|
|
if( Source.GetSize() == 0 )
|
|
return "";
|
|
|
|
CString csReturn;
|
|
CString csTmp;
|
|
|
|
// Loop through the Array and Append the Deliminator
|
|
for( int iNum = 0; iNum < Source.GetSize()-1; iNum++ ) {
|
|
csTmp += Source.GetAt(iNum);
|
|
csTmp += Deliminator;
|
|
}
|
|
csTmp += Source.GetAt( Source.GetSize()-1 );
|
|
return csTmp;
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Name: split()
|
|
// Desc:
|
|
//-----------------------------------------------------------------------------
|
|
void split( const CString &Source, const CString &Deliminator, CStringArray& AddIt, const bool bIgnoreEmpty )
|
|
{
|
|
CString newCString;
|
|
CString tmpCString;
|
|
CString AddCString;
|
|
|
|
int pos1 = 0;
|
|
int pos = 0;
|
|
|
|
newCString = Source;
|
|
do {
|
|
pos1 = 0;
|
|
pos = newCString.Find(Deliminator, pos1);
|
|
if ( pos != -1 ) {
|
|
CString AddCString = newCString.Left(pos);
|
|
if( newCString.IsEmpty() && bIgnoreEmpty )
|
|
; // do nothing
|
|
else
|
|
AddIt.Add(AddCString);
|
|
|
|
tmpCString = newCString.Mid(pos + Deliminator.GetLength());
|
|
newCString = tmpCString;
|
|
}
|
|
} while ( pos != -1 );
|
|
|
|
if( newCString.IsEmpty() && bIgnoreEmpty )
|
|
; // do nothing
|
|
else
|
|
AddIt.Add(newCString);
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Name: splitpath()
|
|
// Desc:
|
|
//-----------------------------------------------------------------------------
|
|
void splitpath( const bool UsingDirsOnly, const CString &Path, CString& Drive, CString& Dir, CString& FName, CString& Ext )
|
|
{
|
|
|
|
int nSecond;
|
|
|
|
// Look for a UNC Name!
|
|
if (Path.Left(2) == "\\\\")
|
|
{
|
|
int nFirst = Path.Find("\\",3);
|
|
nSecond = Path.Find("\\",nFirst + 1);
|
|
if (nSecond == -1) {
|
|
Drive = Path;
|
|
Dir = "";
|
|
FName = "";
|
|
Ext = "";
|
|
}
|
|
else if (nSecond > nFirst)
|
|
Drive = Path.Left(nSecond);
|
|
}
|
|
else if (Path.Mid(1,1) == ":" ) // normal Drive Structure
|
|
{
|
|
nSecond = 2;
|
|
Drive = Path.Left(2);
|
|
}
|
|
else // no UNC or drive letter
|
|
{
|
|
nSecond = -1;
|
|
}
|
|
|
|
|
|
if (UsingDirsOnly) {
|
|
Dir = Path.Right((Path.GetLength() - nSecond) - 1);
|
|
FName = "";
|
|
Ext = "";
|
|
}
|
|
else {
|
|
int nDirEnd = Path.ReverseFind('\\');
|
|
if (nDirEnd == Path.GetLength()) {
|
|
Dir = "";
|
|
FName = "";
|
|
Ext = "";
|
|
}
|
|
else {
|
|
|
|
Dir = Path.Mid(nSecond + 1, (nDirEnd - nSecond) - 1);
|
|
|
|
int nFileEnd = Path.ReverseFind('.');
|
|
if (nFileEnd != -1) {
|
|
|
|
if (nDirEnd > nFileEnd) {
|
|
FName = Path.Right(Path.GetLength() - nDirEnd);
|
|
Ext = "";
|
|
}
|
|
else {
|
|
FName = Path.Mid(nDirEnd + 1, (nFileEnd - nDirEnd) - 1);
|
|
Ext = Path.Right((Path.GetLength() - nFileEnd) - 1);
|
|
}
|
|
}
|
|
else {
|
|
FName = Path.Right((Path.GetLength() - nDirEnd) - 1);
|
|
Ext = "";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Name: splitpath()
|
|
// Desc:
|
|
//-----------------------------------------------------------------------------
|
|
void splitrelpath( const CString &Path, CString& Dir, CString& FName, CString& Ext )
|
|
{
|
|
// need to split on both forward slashes and back slashes
|
|
CStringArray sPathBits;
|
|
|
|
CStringArray sBackShashPathBits;
|
|
split( Path, "\\", sBackShashPathBits, true );
|
|
|
|
for( int i=0; i<sBackShashPathBits.GetSize(); i++ ) // foreach backslash bit
|
|
{
|
|
CStringArray sForwardShashPathBits;
|
|
split( sBackShashPathBits[i], "/", sForwardShashPathBits, true );
|
|
|
|
sPathBits.Append( sForwardShashPathBits );
|
|
}
|
|
|
|
|
|
if( sPathBits.GetSize() == 0 )
|
|
{
|
|
Dir = FName = Ext = "";
|
|
return;
|
|
}
|
|
|
|
CString sFNameAndExt = sPathBits[ sPathBits.GetSize()-1 ];
|
|
|
|
// subtract the FNameAndExt from Path
|
|
Dir = Path.Left( Path.GetLength()-sFNameAndExt.GetLength() ); // don't subtract out the trailing slash
|
|
|
|
|
|
CStringArray sFNameAndExtBits;
|
|
split( sFNameAndExt, ".", sFNameAndExtBits, false );
|
|
|
|
if( sFNameAndExtBits.GetSize() == 0 ) // no file at the end of this path
|
|
{
|
|
FName = "";
|
|
Ext = "";
|
|
}
|
|
else if( sFNameAndExtBits.GetSize() == 1 ) // file doesn't have extension
|
|
{
|
|
FName = sFNameAndExtBits[0];
|
|
Ext = "";
|
|
}
|
|
else if( sFNameAndExtBits.GetSize() > 1 ) // file has extension and possibly multiple periods
|
|
{
|
|
Ext = sFNameAndExtBits[ sFNameAndExtBits.GetSize()-1 ];
|
|
|
|
// subtract the Ext and last period from FNameAndExt
|
|
FName = sFNameAndExt.Left( sFNameAndExt.GetLength()-Ext.GetLength()-1 );
|
|
}
|
|
}
|
|
|
|
|
|
void GetDirListing( CString sPath, CStringArray &AddTo, bool bOnlyDirs, bool bReturnPathToo )
|
|
{
|
|
CString sDir, sThrowAway;
|
|
splitrelpath( sPath, sDir, sThrowAway, sThrowAway );
|
|
|
|
WIN32_FIND_DATA fd;
|
|
HANDLE hFind = ::FindFirstFile( sPath, &fd );
|
|
|
|
if( INVALID_HANDLE_VALUE == hFind ) // no files found
|
|
return;
|
|
|
|
do
|
|
{
|
|
if( bOnlyDirs && !(fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) )
|
|
continue; // skip
|
|
|
|
CString sDirName( fd.cFileName );
|
|
|
|
if( sDirName == "." || sDirName == ".." )
|
|
continue;
|
|
|
|
if( bReturnPathToo )
|
|
AddTo.Add( sDir + sDirName );
|
|
else
|
|
AddTo.Add( sDirName );
|
|
|
|
|
|
} while( ::FindNextFile( hFind, &fd ) );
|
|
::FindClose( hFind );
|
|
}
|
|
|
|
int GetHashForString( CString s )
|
|
{
|
|
int hash = 0;
|
|
for( int i=0; i<s.GetLength(); i++ )
|
|
{
|
|
hash *= 10;
|
|
hash += (DWORD)s[i];
|
|
}
|
|
return abs(hash);
|
|
}
|
|
|
|
int GetHashForFile( CString sPath )
|
|
{
|
|
int hash = 0;
|
|
|
|
hash += GetHashForString( sPath );
|
|
|
|
hash += GetFileSizeInBytes( sPath );
|
|
|
|
CFileStatus status;
|
|
if( CFile::GetStatus(sPath, status) )
|
|
hash += status.m_mtime.GetHour() * 3600 + status.m_mtime.GetMinute() * 60 + status.m_mtime.GetSecond();
|
|
|
|
return abs(hash);
|
|
}
|
|
|
|
int GetHashForDirectory( CString sDir )
|
|
{
|
|
int hash = 0;
|
|
|
|
hash += GetHashForFile( sDir );
|
|
|
|
CStringArray arrayFiles;
|
|
GetDirListing( sDir+"\\*.*", arrayFiles, false );
|
|
for( int i=0; i<arrayFiles.GetSize(); i++ )
|
|
{
|
|
const CString sFilePath = sDir + arrayFiles[i];
|
|
hash += GetHashForFile( sFilePath );
|
|
}
|
|
|
|
return abs(hash);
|
|
}
|
|
|
|
DWORD GetFileSizeInBytes( const CString &sFilePath )
|
|
{
|
|
HANDLE hFile = CreateFile(
|
|
sFilePath, // pointer to name of the file
|
|
GENERIC_READ, // access (read-write) mode
|
|
FILE_SHARE_READ|FILE_SHARE_WRITE, // share mode
|
|
NULL, // pointer to security attributes
|
|
OPEN_EXISTING, // how to create
|
|
FILE_ATTRIBUTE_NORMAL, // file attributes
|
|
NULL // handle to file with attributes to
|
|
);
|
|
|
|
DWORD dwSize = GetFileSize( hFile, NULL );
|
|
CloseHandle( hFile );
|
|
return dwSize;
|
|
}
|
|
|
|
bool DoesFileExist( const CString &sPath )
|
|
{
|
|
DWORD dwAttr = GetFileAttributes( sPath );
|
|
return bool(dwAttr != (DWORD)-1);
|
|
}
|
|
|
|
bool IsAFile( const CString &sPath )
|
|
{
|
|
return DoesFileExist(sPath) && ! IsADirectory(sPath);
|
|
}
|
|
|
|
bool IsADirectory( const CString &sPath )
|
|
{
|
|
DWORD dwAttr = GetFileAttributes( sPath );
|
|
return (dwAttr & FILE_ATTRIBUTE_DIRECTORY) != 0;
|
|
}
|
|
|
|
|
|
|
|
int CompareCStringsAsc(const void *arg1, const void *arg2)
|
|
{
|
|
CString str1 = *(CString *)arg1;
|
|
CString str2 = *(CString *)arg2;
|
|
return str1.CompareNoCase( str2 );
|
|
}
|
|
|
|
int CompareCStringsDesc(const void *arg1, const void *arg2)
|
|
{
|
|
CString str1 = *(CString *)arg1;
|
|
CString str2 = *(CString *)arg2;
|
|
return str2.CompareNoCase( str1 );
|
|
}
|
|
|
|
void SortCStringArray( CStringArray &arrayCStrings, const bool bSortAcsending )
|
|
{
|
|
qsort( arrayCStrings.GetData(), arrayCStrings.GetSize(), sizeof(CString), bSortAcsending ? CompareCStringsAsc : CompareCStringsDesc );
|
|
}
|
|
|
|
|
|
|
|
LONG GetRegKey(HKEY key, LPCTSTR subkey, LPTSTR retdata)
|
|
{
|
|
HKEY hkey;
|
|
LONG retval = RegOpenKeyEx(key, subkey, 0, KEY_QUERY_VALUE, &hkey);
|
|
|
|
if (retval == ERROR_SUCCESS) {
|
|
long datasize = MAX_PATH;
|
|
TCHAR data[MAX_PATH];
|
|
RegQueryValue(hkey, NULL, data, &datasize);
|
|
lstrcpy(retdata,data);
|
|
RegCloseKey(hkey);
|
|
}
|
|
|
|
return retval;
|
|
}
|
|
|
|
HINSTANCE GotoURL(LPCTSTR url)
|
|
{
|
|
TCHAR key[MAX_PATH + MAX_PATH];
|
|
|
|
// First try ShellExecute()
|
|
HINSTANCE result = ShellExecute(NULL, _T("open"), url, NULL,NULL, SW_SHOWDEFAULT);
|
|
|
|
// If it failed, get the .htm regkey and lookup the program
|
|
if ((UINT)result <= HINSTANCE_ERROR) {
|
|
|
|
if (GetRegKey(HKEY_CLASSES_ROOT, _T(".htm"), key) == ERROR_SUCCESS) {
|
|
lstrcat(key, _T("\\shell\\open\\command"));
|
|
|
|
if (GetRegKey(HKEY_CLASSES_ROOT,key,key) == ERROR_SUCCESS) {
|
|
TCHAR *pos;
|
|
pos = _tcsstr(key, _T("\"%1\""));
|
|
if (pos == NULL) { // No quotes found
|
|
pos = strstr(key, _T("%1")); // Check for %1, without quotes
|
|
if (pos == NULL) // No parameter at all...
|
|
pos = key+lstrlen(key)-1;
|
|
else
|
|
*pos = '\0'; // Remove the parameter
|
|
}
|
|
else
|
|
*pos = '\0'; // Remove the parameter
|
|
|
|
lstrcat(pos, _T(" "));
|
|
lstrcat(pos, url);
|
|
result = (HINSTANCE) WinExec(key,SW_SHOWDEFAULT);
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void WriteStringToFile( FILE* file, CString s )
|
|
{
|
|
if( s == "" )
|
|
s = "_";
|
|
fprintf( file, "%s\n", s );
|
|
}
|
|
|
|
void ReadStringFromFile( FILE* file, CString& s )
|
|
{
|
|
char szTemp[MAX_PATH];
|
|
fscanf( file, "%[^\n]\n", szTemp );
|
|
s = szTemp;
|
|
if( s == "_" )
|
|
s = "";
|
|
}
|
|
|
|
|
|
void WriteIntToFile( FILE* file, int i )
|
|
{
|
|
fprintf( file, "%d\n", i );
|
|
}
|
|
|
|
void ReadIntFromFile( FILE* file, int& i )
|
|
{
|
|
fscanf( file, "%d\n", &i );
|
|
}
|
|
|
|
|
|
void WriteFloatToFile( FILE* file, float f )
|
|
{
|
|
fprintf( file, "%f\n", f );
|
|
}
|
|
|
|
void ReadFloatFromFile( FILE* file, float& f )
|
|
{
|
|
fscanf( file, "%f\n", &f );
|
|
}
|
|
|
|
|
|
|
|
void WriteUlongToFile( FILE* file, ULONG u )
|
|
{
|
|
fprintf( file, "%u\n", u );
|
|
}
|
|
|
|
void ReadUlongFromFile( FILE* file, ULONG& u )
|
|
{
|
|
fscanf( file, "%u\n", &u );
|
|
}
|
|
|
|
|
|
|