1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* 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, either version 3 of the License, or
* (at your option) any later version.
*
* 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// FilePageAddDlg.cpp : implementation file
//
#include "stdafx.h"
#include "editor.h"
#include "FilePageAddDlg.h"
#include "ddio.h"
#include "mem.h"
#include <direct.h>
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFilePageAddDlg dialog
CFilePageAddDlg::CFilePageAddDlg(CWnd *pParent /*=NULL*/) : CDialog(CFilePageAddDlg::IDD, pParent) {
//{{AFX_DATA_INIT(CFilePageAddDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
m_NumberOfSelectedFiles = 0;
m_SelectedFiles = NULL;
m_SelectedDestDir = NULL;
initial_path = "";
}
CFilePageAddDlg::~CFilePageAddDlg(void) {
if (m_SelectedFiles) {
for (int i = 0; i < m_NumberOfSelectedFiles; i++) {
if (m_SelectedFiles[i])
mem_free(m_SelectedFiles[i]);
}
mem_free(m_SelectedFiles);
}
if (m_SelectedDestDir) {
mem_free(m_SelectedDestDir);
}
}
void CFilePageAddDlg::SetInitialPath(char *path) {
char olddir[_MAX_PATH];
ddio_GetWorkingDir(olddir, _MAX_PATH);
if (ddio_SetWorkingDir(path)) {
if (path[1] == ':')
initial_path = path;
}
ddio_SetWorkingDir(olddir);
}
void CFilePageAddDlg::DoDataExchange(CDataExchange *pDX) {
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFilePageAddDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFilePageAddDlg, CDialog)
//{{AFX_MSG_MAP(CFilePageAddDlg)
ON_CBN_SELCHANGE(IDC_LIST_DRIVES, OnSelchangeListDrives)
ON_LBN_SELCHANGE(IDC_LIST_FOLDERS, OnSelchangeListFolders)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFilePageAddDlg message handlers
// CFileList
CFileList::CFileList() {}
CFileList::~CFileList() {}
BEGIN_MESSAGE_MAP(CFileList, CListBox)
//{{AFX_MSG_MAP(CFileList)
ON_CONTROL_REFLECT(LBN_DBLCLK, OnDblclk)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFileList message handlers
// fills the list-box with the appropriate information
// either files, directories or drives
// in this case system and/or hidden files are not shown
BOOL CFileList::FillBox() {
WIN32_FIND_DATA FileData;
HANDLE hSearch;
CString csString;
BOOL check_dir;
SetRedraw(FALSE);
if (m_nFlag == DRIVES) {
Dir(0x4000, m_csPath);
} else {
// resets the list-box; parent-function
ResetContent();
// construct the path and mask for displaying
csString = m_csPath;
csString += m_csFileMask;
hSearch = FindFirstFile(csString, &FileData);
if (hSearch == INVALID_HANDLE_VALUE)
return FALSE;
check_dir = (m_nFlag == DIRECTORIES ? TRUE : FALSE);
CheckEntry(FileData.cFileName, FileData.dwFileAttributes, check_dir);
while (1) {
if (!FindNextFile(hSearch, &FileData)) {
SetRedraw();
InvalidateRect(NULL);
// Close the search handle.
if (!FindClose(hSearch))
return FALSE;
return TRUE;
} else
CheckEntry(FileData.cFileName, FileData.dwFileAttributes, check_dir);
}
}
SetRedraw();
InvalidateRect(NULL);
return TRUE;
}
BOOL CFileList::InitBox(UINT res, CWnd *parent, LPSTR lpszPath, LPSTR lpszFileMask, UINT flags, UINT msg,
void (*cb)(char *)) {
m_nFlag = flags;
m_csPath = lpszPath;
m_csFileMask = lpszFileMask;
m_nMsg = msg;
m_cwndParent = parent;
callback = cb;
// let's check if a \ is the last letter in the path
if (m_nFlag == DRIVES || m_nFlag == DIRECTORIES) {
if (m_csPath.Right(1) != "\\")
m_csPath += "\\";
}
// subclassing the dialog-template listbox
if (SubclassDlgItem(res, parent) == FALSE)
return FALSE;
return FillBox();
}
// by double-clicking .. in a drive-box the
// path will get longer and longer such as
// c:\inn\pics\..\html\..\..\windows\system\..\..\det.log
// the proper path in this example should be
// c:\det.log
void CFileList::OnDblclk() {
// TODO: Add your control notification handler code here
CString temp_string, temp_string2;
GetText(GetCurSel(), temp_string);
switch (m_nFlag) {
case DRIVES:
// is the drive available
// temp_string2=temp_string;
temp_string.MakeUpper();
if (!_chdrive(temp_string[2] - 'A' + 1)) {
m_csPath.Format("%c:\\", temp_string[2]);
m_cwndParent->PostMessage(m_nMsg, DRIVES, 0);
} else {
SetCurSel(-1);
temp_string2.Empty();
temp_string2.Format("Drive %c is not available", temp_string[2]);
MessageBox(temp_string2);
}
break;
case DIRECTORIES:
// if we dblclk a .. then we move up one level
if (temp_string == "..") {
m_csPath = m_csPath.Left(m_csPath.ReverseFind('\\'));
m_csPath = m_csPath.Left(m_csPath.ReverseFind('\\'));
m_csPath += '\\';
} else
// otherwise we just add another sub-dir to the path
m_csPath = m_csPath + temp_string + '\\';
FillBox();
// notify mama about an update
m_cwndParent->PostMessage(m_nMsg, DIRECTORIES, 0);
break;
case FILES:
m_cwndParent->PostMessage(m_nMsg, FILES, 0);
break;
}
}
// get and set functions
inline CString CFileList::getPath() { return m_csPath; }
inline CString CFileList::getFileMask() { return m_csFileMask; }
inline void CFileList::setFileMask(CString mask) { m_csFileMask = (LPCTSTR)mask; }
inline BOOL CFileList::RefreshMask(CString mask) {
m_csFileMask = mask;
return FillBox();
}
// let's check if we display the right entries
// we don't want any hidden, system, temporary and/or directories (for a file-box)
inline void CFileList::CheckEntry(LPSTR name, DWORD flag, BOOL dir) {
// we don't want to display a .; that is the current directory, or
// a ..(previous directory) in a filebox
if (name[0] == '.')
if (!dir)
return;
if (name[1] == '\0')
return;
// we don't want to show any system and/or hidden files/directories
if (flag & FILE_ATTRIBUTE_HIDDEN)
return;
if (flag & FILE_ATTRIBUTE_SYSTEM)
return;
// we don't want any directories in a file-box
if (dir) {
if (!(flag & FILE_ATTRIBUTE_DIRECTORY))
return;
}
//... or files in a dir-box
else {
if (flag & FILE_ATTRIBUTE_DIRECTORY)
return;
}
AddString(name);
}
inline BOOL CFileList::RefreshBox(CString path, CString mask) {
setPath(path);
setFileMask(mask);
return FillBox();
}
inline BOOL CFileList::RefreshBox(CString path) {
setPath(path);
return FillBox();
}
inline void CFileList::setPath(CString path) {
CString temp = path;
char *buffer;
// check for valid entry
if (temp.Right(1) != "\\")
temp += "\\";
buffer = (char *)mem_malloc(temp.GetLength() + 1);
if (!buffer)
return;
// ddio_CleanPath(buffer,temp.GetBuffer(0));
strcpy(buffer, temp.GetBuffer(0));
m_csPath = buffer;
if (callback)
(*callback)(buffer);
mem_free(buffer);
}
BOOL CFilePageAddDlg::OnInitDialog() {
CDialog::OnInitDialog();
// TODO: Add extra initialization here
// register a personal, user-defined msg so that our boxes can post msg's for
// interaction
m_nBoxMsg = RegisterWindowMessage("FilePageDlgAdd");
// init the boxes
// the definition of:
// BOOL InitBox(UINT res_from_template,
// CWnd *parent,
// LPSTR lpszPath,
// LPSTR lpszFileMask,
// UINT flags,
// UINT msg);
if (initial_path.IsEmpty())
initial_path = "c:\\";
m_cflDrive.InitBox(IDC_LIST_DRIVES, this, initial_path.GetBuffer(0), "*.*", DRIVES, m_nBoxMsg);
m_cflDir.InitBox(IDC_LIST_FOLDERS, this, initial_path.GetBuffer(0), "*.*", DIRECTORIES, m_nBoxMsg);
m_cflFile.InitBox(IDC_LIST_FILES, this, initial_path.GetBuffer(0), "*.*", FILES, m_nBoxMsg);
// Add the drives to the drive list
CComboBox *combo = (CComboBox *)GetDlgItem(IDC_LIST_DRIVES);
char *root_drives[256];
int root_count = ddio_GetFileSysRoots(root_drives, 256);
int i, c_drive = 0;
char initial_d[3];
strncpy(initial_d, initial_path.GetBuffer(0), 2);
initial_d[2] = '\0';
for (i = 0; i < root_count; i++) {
if (!strnicmp(root_drives[i], initial_d, 2))
c_drive = i;
combo->AddString(root_drives[i]);
mem_free(root_drives[i]);
}
combo->SetCurSel(c_drive);
combo = (CComboBox *)GetDlgItem(IDC_DIRS);
for (i = 0; i < NumDirectoryNames; i++) {
combo->AddString(DirectoryNames[i]);
}
combo->SetCurSel(0);
return TRUE;
}
LRESULT CFilePageAddDlg::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) {
// TODO: Add your specialized code here and/or call the base class ...
// process the user-defined msg
if (message == m_nBoxMsg) {
// update the dir-box and file-box if we change drive
if (wParam == DRIVES) {
m_cflDir.RefreshBox(m_cflDrive.getPath());
m_cflFile.RefreshBox(m_cflDrive.getPath());
}
// update the file-box if we change directory
else if (wParam == DIRECTORIES) {
m_cflFile.RefreshBox(m_cflDir.getPath());
}
}
return CDialog::WindowProc(message, wParam, lParam);
}
void CFilePageAddDlg::OnSelchangeListDrives() {
CComboBox *combo = (CComboBox *)GetDlgItem(IDC_LIST_DRIVES);
int sel = combo->GetCurSel();
CString drive;
combo->GetLBText(sel, drive);
m_cflDrive.setPath(drive);
m_cflDir.RefreshBox(m_cflDrive.getPath());
m_cflFile.RefreshBox(m_cflDrive.getPath());
}
void CFilePageAddDlg::OnSelchangeListFolders() {}
bool CFilePageAddDlg::Quit(void) {
char buffer[_MAX_PATH];
int cur_sel;
CComboBox *combo = (CComboBox *)GetDlgItem(IDC_DIRS);
cur_sel = combo->GetCurSel();
combo->GetLBText(cur_sel, buffer);
char temp[1024];
sprintf(temp, "Are you sure you want to add these files to the data\\%s directory?", buffer);
if (MessageBox(temp, NULL, MB_YESNO) != IDYES) {
return false;
}
m_SelectedDestDir = mem_strdup(buffer);
CListBox *list = (CListBox *)GetDlgItem(IDC_LIST_FILES);
m_NumberOfSelectedFiles = list->GetSelCount();
if (m_NumberOfSelectedFiles == 0) {
m_SelectedFiles = NULL;
} else {
m_SelectedFiles = (char **)mem_malloc(m_NumberOfSelectedFiles * sizeof(char *));
if (!m_SelectedFiles) {
m_SelectedFiles = NULL;
m_NumberOfSelectedFiles = 0;
return true;
}
int *sel_items = (int *)mem_malloc(sizeof(int) * m_NumberOfSelectedFiles);
if (!sel_items) {
mem_free(m_SelectedFiles);
m_SelectedFiles = NULL;
m_NumberOfSelectedFiles = 0;
return true;
}
list->GetSelItems(m_NumberOfSelectedFiles, sel_items);
char temp[_MAX_PATH];
char drive[_MAX_PATH];
strcpy(drive, m_cflFile.getPath());
for (int i = 0; i < m_NumberOfSelectedFiles; i++) {
cur_sel = sel_items[i];
list->GetText(cur_sel, temp);
// ummm, figure out real path here
ddio_MakePath(buffer, drive, temp, NULL);
m_SelectedFiles[i] = mem_strdup(buffer);
}
}
return true;
}
void CFilePageAddDlg::OnOK() {
if (!Quit())
return;
CDialog::OnOK();
}
|