2002-01-28 21:24:17 +00:00
|
|
|
// SMPackageInstallDlg.cpp : implementation file
|
|
|
|
|
//
|
|
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
#define CO_EXIST_WITH_MFC
|
|
|
|
|
#include "global.h"
|
2002-01-28 21:24:17 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "smpackage.h"
|
|
|
|
|
#include "SMPackageInstallDlg.h"
|
2002-11-08 07:47:34 +00:00
|
|
|
#include "RageUtil.h"
|
2003-02-11 09:20:58 +00:00
|
|
|
#include "smpackageUtil.h"
|
|
|
|
|
#include "EditInsallations.h"
|
2003-06-21 19:31:02 +00:00
|
|
|
#include "ShowComment.h"
|
2003-07-24 01:33:59 +00:00
|
|
|
#include "IniFile.h"
|
|
|
|
|
#include "UninstallOld.h"
|
2005-10-23 18:02:32 +00:00
|
|
|
#include <algorithm>
|
2005-12-10 08:23:10 +00:00
|
|
|
#include "RageFileManager.h"
|
|
|
|
|
#include "RageFileDriverZip.h"
|
2002-01-28 21:24:17 +00:00
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
#define new DEBUG_NEW
|
|
|
|
|
#undef THIS_FILE
|
|
|
|
|
static char THIS_FILE[] = __FILE__;
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
static const RString TEMP_MOUNT_POINT = "/@package/";
|
|
|
|
|
|
2002-01-28 21:24:17 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// CSMPackageInstallDlg dialog
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CSMPackageInstallDlg::CSMPackageInstallDlg(CString sPackagePath, CWnd* pParent /*=NULL*/)
|
|
|
|
|
: CDialog(CSMPackageInstallDlg::IDD, pParent)
|
|
|
|
|
{
|
|
|
|
|
//{{AFX_DATA_INIT(CSMPackageInstallDlg)
|
|
|
|
|
// NOTE: the ClassWizard will add member initialization here
|
|
|
|
|
//}}AFX_DATA_INIT
|
|
|
|
|
|
|
|
|
|
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
|
|
|
|
|
|
|
|
|
|
m_sPackagePath = sPackagePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void CSMPackageInstallDlg::DoDataExchange(CDataExchange* pDX)
|
|
|
|
|
{
|
|
|
|
|
CDialog::DoDataExchange(pDX);
|
|
|
|
|
//{{AFX_DATA_MAP(CSMPackageInstallDlg)
|
2003-02-11 09:20:58 +00:00
|
|
|
DDX_Control(pDX, IDC_BUTTON_EDIT, m_buttonEdit);
|
|
|
|
|
DDX_Control(pDX, IDC_COMBO_DIR, m_comboDir);
|
2002-01-28 21:24:17 +00:00
|
|
|
//}}AFX_DATA_MAP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CSMPackageInstallDlg, CDialog)
|
|
|
|
|
//{{AFX_MSG_MAP(CSMPackageInstallDlg)
|
|
|
|
|
ON_WM_PAINT()
|
2003-02-11 09:20:58 +00:00
|
|
|
ON_BN_CLICKED(IDC_BUTTON_EDIT, OnButtonEdit)
|
2002-01-28 21:24:17 +00:00
|
|
|
//}}AFX_MSG_MAP
|
|
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
2003-02-11 09:20:58 +00:00
|
|
|
|
2002-01-28 21:24:17 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// CSMPackageInstallDlg message handlers
|
|
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
static bool CompareStringNoCase( const RString &s1, const RString &s2 )
|
2005-10-23 18:02:32 +00:00
|
|
|
{
|
|
|
|
|
return s1.CompareNoCase( s2 ) < 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-28 21:24:17 +00:00
|
|
|
BOOL CSMPackageInstallDlg::OnInitDialog()
|
|
|
|
|
{
|
|
|
|
|
CDialog::OnInitDialog();
|
|
|
|
|
|
|
|
|
|
// Set the icon for this dialog. The framework does this automatically
|
|
|
|
|
// when the application's main window is not a dialog
|
|
|
|
|
SetIcon(m_hIcon, TRUE); // Set big icon
|
|
|
|
|
SetIcon(m_hIcon, FALSE); // Set small icon
|
|
|
|
|
|
|
|
|
|
// TODO: Add extra initialization here
|
|
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
// mount the zip
|
|
|
|
|
if( !FILEMAN->Mount( "zip", m_sPackagePath, TEMP_MOUNT_POINT ) )
|
|
|
|
|
{
|
|
|
|
|
AfxMessageBox( ssprintf("'%s' is not a valid zip archive.", m_sPackagePath), MB_ICONSTOP );
|
|
|
|
|
exit( 1 );
|
|
|
|
|
}
|
2002-02-24 10:31:20 +00:00
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Set the text of the first Edit box
|
|
|
|
|
//
|
2005-12-10 08:23:10 +00:00
|
|
|
RString sMessage1 = ssprintf(
|
2002-01-28 21:24:17 +00:00
|
|
|
"You have chosen to install the Stepmania package:\r\n"
|
2002-02-24 10:31:20 +00:00
|
|
|
"\r\n"
|
2002-01-28 21:24:17 +00:00
|
|
|
"\t%s\r\n"
|
|
|
|
|
"\r\n"
|
|
|
|
|
"This package contains the following files:\r\n",
|
|
|
|
|
m_sPackagePath
|
|
|
|
|
);
|
2002-02-24 10:31:20 +00:00
|
|
|
CEdit* pEdit1 = (CEdit*)GetDlgItem(IDC_EDIT_MESSAGE1);
|
|
|
|
|
pEdit1->SetWindowText( sMessage1 );
|
2002-01-28 21:24:17 +00:00
|
|
|
|
2002-02-24 10:31:20 +00:00
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Set the text of the second Edit box
|
|
|
|
|
//
|
2002-01-28 21:24:17 +00:00
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
vector<RString> vs;
|
|
|
|
|
GetDirListingRecursive( TEMP_MOUNT_POINT, "*.*", vs );
|
2005-10-23 18:02:32 +00:00
|
|
|
CEdit* pEdit2 = (CEdit*)GetDlgItem(IDC_EDIT_MESSAGE2);
|
2005-12-10 08:23:10 +00:00
|
|
|
RString sText = "\t" + join( "\r\n\t", vs );
|
2005-10-23 18:02:32 +00:00
|
|
|
pEdit2->SetWindowText( sText );
|
2002-02-24 10:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Set the text of the third Edit box
|
|
|
|
|
//
|
2005-12-10 08:23:10 +00:00
|
|
|
RString sMessage3 = "The package will be installed in the following Stepmania program folder:\r\n";
|
2002-01-28 21:24:17 +00:00
|
|
|
|
|
|
|
|
// Set the message
|
2002-02-24 10:31:20 +00:00
|
|
|
CEdit* pEdit3 = (CEdit*)GetDlgItem(IDC_EDIT_MESSAGE3);
|
|
|
|
|
pEdit3->SetWindowText( sMessage3 );
|
2002-01-28 21:24:17 +00:00
|
|
|
|
|
|
|
|
|
2003-02-11 09:20:58 +00:00
|
|
|
RefreshInstallationList();
|
|
|
|
|
|
2002-01-28 21:24:17 +00:00
|
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
|
|
|
|
// EXCEPTION: OCX Property Pages should return FALSE
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void CSMPackageInstallDlg::OnPaint()
|
|
|
|
|
{
|
|
|
|
|
CPaintDC dc(this); // device context for painting
|
|
|
|
|
|
|
|
|
|
// TODO: Add your message handler code here
|
|
|
|
|
|
|
|
|
|
if (IsIconic())
|
|
|
|
|
{
|
|
|
|
|
CPaintDC dc(this); // device context for painting
|
|
|
|
|
|
|
|
|
|
SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
|
|
|
|
|
|
|
|
|
|
// Center icon in client rectangle
|
|
|
|
|
int cxIcon = GetSystemMetrics(SM_CXICON);
|
|
|
|
|
int cyIcon = GetSystemMetrics(SM_CYICON);
|
|
|
|
|
CRect rect;
|
|
|
|
|
GetClientRect(&rect);
|
|
|
|
|
int x = (rect.Width() - cxIcon + 1) / 2;
|
|
|
|
|
int y = (rect.Height() - cyIcon + 1) / 2;
|
|
|
|
|
|
|
|
|
|
// Draw the icon
|
|
|
|
|
dc.DrawIcon(x, y, m_hIcon);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
CDialog::OnPaint();
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-07-24 01:33:59 +00:00
|
|
|
#include <direct.h>
|
2002-01-28 21:24:17 +00:00
|
|
|
|
2003-07-24 01:33:59 +00:00
|
|
|
bool CSMPackageInstallDlg::CheckPackages()
|
|
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
IniFile ini;
|
|
|
|
|
if( !ini.ReadFile(TEMP_MOUNT_POINT + "smzip.ctl") )
|
2003-07-24 01:33:59 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
int version = 0;
|
2005-12-10 08:23:10 +00:00
|
|
|
ini.GetValue( "SMZIP", "Version", version );
|
2003-07-24 01:33:59 +00:00
|
|
|
if( version != 1 )
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
int cnt = 0;
|
2005-12-10 08:23:10 +00:00
|
|
|
ini.GetValue( "Packages", "NumPackages", cnt );
|
2003-07-24 01:33:59 +00:00
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
vector<RString> Directories;
|
|
|
|
|
for( int i = 0; i < cnt; ++i )
|
2003-07-24 01:33:59 +00:00
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
RString path;
|
2003-07-24 01:33:59 +00:00
|
|
|
if( !ini.GetValue( "Packages", ssprintf("%i", i), path) )
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Does this directory exist? */
|
2005-12-10 08:23:10 +00:00
|
|
|
if( !FILEMAN->IsADirectory(path) )
|
2003-07-24 01:33:59 +00:00
|
|
|
continue;
|
|
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
if( !SMPackageUtil::IsValidPackageDirectory(path) )
|
2003-07-24 01:33:59 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
Directories.push_back(path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( Directories.empty() )
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
UninstallOld UninstallOldDlg;
|
2005-10-23 17:06:54 +00:00
|
|
|
UninstallOldDlg.m_sPackages = join("\r\n", Directories);
|
2003-07-24 01:33:59 +00:00
|
|
|
int nResponse = UninstallOldDlg.DoModal();
|
|
|
|
|
if( nResponse == IDCANCEL )
|
|
|
|
|
return false; // cancelled
|
|
|
|
|
if( nResponse == IDIGNORE )
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char cwd_[MAX_PATH];
|
|
|
|
|
_getcwd(cwd_, MAX_PATH);
|
2005-12-10 08:23:10 +00:00
|
|
|
RString cwd(cwd_);
|
2003-07-24 01:33:59 +00:00
|
|
|
if( cwd[cwd.GetLength()-1] != '\\' )
|
|
|
|
|
cwd += "\\";
|
|
|
|
|
|
|
|
|
|
for( i = 0; i < (int) Directories.size(); ++i )
|
|
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
RString path = cwd+Directories[i];
|
2003-07-24 01:33:59 +00:00
|
|
|
char buf[1024];
|
|
|
|
|
memcpy(buf, path, path.GetLength()+1);
|
|
|
|
|
buf[path.GetLength()+1] = 0;
|
|
|
|
|
|
|
|
|
|
SHFILEOPSTRUCT op;
|
|
|
|
|
memset(&op, 0, sizeof(op));
|
|
|
|
|
|
|
|
|
|
op.wFunc = FO_DELETE;
|
|
|
|
|
op.pFrom = buf;
|
|
|
|
|
op.pTo = NULL;
|
|
|
|
|
op.fFlags = FOF_NOCONFIRMATION;
|
|
|
|
|
if( !SHFileOperation(&op) )
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Something failed. SHFileOperation displayed the error dialog, so just cancel. */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2002-01-28 21:24:17 +00:00
|
|
|
|
|
|
|
|
void CSMPackageInstallDlg::OnOK()
|
|
|
|
|
{
|
|
|
|
|
// TODO: Add extra validation here
|
|
|
|
|
|
2003-09-20 15:02:18 +00:00
|
|
|
int ProgressInit = 0;
|
|
|
|
|
|
2003-02-11 09:20:58 +00:00
|
|
|
m_comboDir.EnableWindow( FALSE );
|
|
|
|
|
m_buttonEdit.EnableWindow( FALSE );
|
2002-01-28 21:24:17 +00:00
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
RString sInstallDir;
|
|
|
|
|
{
|
|
|
|
|
CString s;
|
|
|
|
|
m_comboDir.GetWindowText( s );
|
|
|
|
|
sInstallDir = s;
|
|
|
|
|
}
|
2003-02-11 09:20:58 +00:00
|
|
|
|
2005-10-17 08:15:52 +00:00
|
|
|
int iSelectedInstallDirIndex = m_comboDir.GetCurSel();
|
|
|
|
|
if( iSelectedInstallDirIndex == -1 )
|
|
|
|
|
{
|
|
|
|
|
MessageBox( "No Installations", "Error", MB_OK|MB_ICONEXCLAMATION );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
SMPackageUtil::SetDefaultInstallDir( iSelectedInstallDirIndex );
|
2003-06-21 19:31:02 +00:00
|
|
|
|
|
|
|
|
// Show comment (if any)
|
|
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
RageFileDriverZip zip;
|
|
|
|
|
zip.Load( m_sPackagePath );
|
|
|
|
|
RString sComment = zip.GetGlobalComment();
|
|
|
|
|
bool DontShowComment;
|
|
|
|
|
if( sComment != "" && (!SMPackageUtil::GetPref("DontShowComment", DontShowComment) || !DontShowComment) )
|
|
|
|
|
{
|
|
|
|
|
ShowComment commentDlg;
|
|
|
|
|
commentDlg.m_sComment = sComment;
|
|
|
|
|
int nResponse = commentDlg.DoModal();
|
|
|
|
|
if( nResponse != IDOK )
|
|
|
|
|
return; // cancelled
|
|
|
|
|
if( commentDlg.m_bDontShow )
|
|
|
|
|
SMPackageUtil::SetPref( "DontShowComment", true );
|
|
|
|
|
}
|
2003-06-21 19:31:02 +00:00
|
|
|
}
|
|
|
|
|
|
2003-07-24 01:33:59 +00:00
|
|
|
/* Check for installed packages that should be deleted before installing. */
|
|
|
|
|
if( !CheckPackages() )
|
|
|
|
|
return; // cancelled
|
|
|
|
|
|
2003-06-21 19:31:02 +00:00
|
|
|
|
2002-01-28 21:24:17 +00:00
|
|
|
// Unzip the SMzip package into the Stepmania installation folder
|
2005-12-10 08:23:10 +00:00
|
|
|
vector<RString> vs;
|
|
|
|
|
GetDirListingRecursive( TEMP_MOUNT_POINT, "*.*", vs );
|
|
|
|
|
for( unsigned i=0; i<vs.size(); i++ )
|
2002-01-28 21:24:17 +00:00
|
|
|
{
|
2002-02-25 03:38:35 +00:00
|
|
|
// Throw some text up so the user has something to look at during the long pause.
|
|
|
|
|
CEdit* pEdit1 = (CEdit*)GetDlgItem(IDC_EDIT_MESSAGE1);
|
|
|
|
|
pEdit1->SetWindowText( ssprintf("Installing '%s'. Please wait...", m_sPackagePath) );
|
|
|
|
|
CEdit* pEdit2 = (CEdit*)GetDlgItem(IDC_EDIT_MESSAGE2);
|
|
|
|
|
pEdit2->SetWindowText( "" );
|
|
|
|
|
CEdit* pEdit3 = (CEdit*)GetDlgItem(IDC_EDIT_MESSAGE3);
|
|
|
|
|
pEdit3->SetWindowText( "" );
|
2003-09-20 15:02:18 +00:00
|
|
|
CProgressCtrl* pProgress1 = (CProgressCtrl*)GetDlgItem(IDC_PROGRESS1);
|
|
|
|
|
//Show the hided progress bar
|
|
|
|
|
if(!pProgress1->IsWindowVisible())
|
|
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
pProgress1->ShowWindow(SW_SHOWNORMAL);
|
2003-09-20 15:02:18 +00:00
|
|
|
}
|
|
|
|
|
//Initialize the progress bar and update the window 1 time (it's enough)
|
|
|
|
|
if(!ProgressInit)
|
|
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
pProgress1->SetRange( 0, vs.size() );
|
2003-09-20 15:02:18 +00:00
|
|
|
pProgress1->SetStep(1);
|
|
|
|
|
pProgress1->SetPos(0);
|
|
|
|
|
SendMessage( WM_PAINT );
|
|
|
|
|
UpdateWindow(); // Force the silly thing to hadle WM_PAINT now!
|
|
|
|
|
ProgressInit = 1;
|
|
|
|
|
}
|
2002-01-28 21:24:17 +00:00
|
|
|
|
2003-02-26 01:35:45 +00:00
|
|
|
retry_unzip:
|
2002-02-25 03:38:35 +00:00
|
|
|
|
|
|
|
|
// Extract the files
|
2005-12-10 08:23:10 +00:00
|
|
|
const RString sFile = vs[i];
|
|
|
|
|
// skip extracting "thumbs.db" files
|
|
|
|
|
if( Basename(sFile).CompareNoCase("thumbs.db") == 0 )
|
|
|
|
|
continue;
|
2003-02-26 01:35:45 +00:00
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
RString sBareFile = sFile;
|
|
|
|
|
sBareFile.erase( sBareFile.begin(), sBareFile.begin()+TEMP_MOUNT_POINT.length() );
|
|
|
|
|
RString sTo = sInstallDir + sTo;
|
|
|
|
|
if( !FileCopy( sFile, sTo ) )
|
2002-01-28 21:24:17 +00:00
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
RString sError = ssprintf( "Error copying file '%s'", sBareFile.c_str() );
|
|
|
|
|
switch( MessageBox( sError, "Error Extracting File", MB_ABORTRETRYIGNORE|MB_ICONEXCLAMATION ) )
|
2003-02-26 01:35:45 +00:00
|
|
|
{
|
|
|
|
|
case IDABORT:
|
|
|
|
|
exit(1);
|
|
|
|
|
break;
|
|
|
|
|
case IDRETRY:
|
|
|
|
|
goto retry_unzip;
|
|
|
|
|
break;
|
|
|
|
|
case IDIGNORE:
|
|
|
|
|
// do nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-01-28 21:24:17 +00:00
|
|
|
}
|
2005-12-10 08:23:10 +00:00
|
|
|
|
|
|
|
|
pProgress1->StepIt(); //increase the progress bar of 1 step
|
2002-01-28 21:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AfxMessageBox( "Package installed successfully!" );
|
|
|
|
|
|
|
|
|
|
// close the dialog
|
|
|
|
|
CDialog::OnOK();
|
|
|
|
|
}
|
2003-02-11 09:20:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
void CSMPackageInstallDlg::OnButtonEdit()
|
|
|
|
|
{
|
|
|
|
|
// TODO: Add your control notification handler code here
|
|
|
|
|
EditInsallations dlg;
|
|
|
|
|
int nResponse = dlg.DoModal();
|
|
|
|
|
if( nResponse == IDOK )
|
|
|
|
|
{
|
2005-12-10 08:23:10 +00:00
|
|
|
SMPackageUtil::WriteStepManiaInstallDirs( dlg.m_vsReturnedInstallDirs );
|
2003-02-11 09:20:58 +00:00
|
|
|
RefreshInstallationList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void CSMPackageInstallDlg::RefreshInstallationList()
|
|
|
|
|
{
|
|
|
|
|
m_comboDir.ResetContent();
|
|
|
|
|
|
2005-12-10 08:23:10 +00:00
|
|
|
vector<RString> asInstallDirs;
|
|
|
|
|
SMPackageUtil::GetStepManiaInstallDirs( asInstallDirs );
|
2003-07-23 00:47:23 +00:00
|
|
|
for( unsigned i=0; i<asInstallDirs.size(); i++ )
|
2003-02-11 09:20:58 +00:00
|
|
|
m_comboDir.AddString( asInstallDirs[i] );
|
|
|
|
|
m_comboDir.SetCurSel( 0 ); // guaranteed to be at least one item
|
|
|
|
|
}
|
|
|
|
|
|