Descent3/editor/CustDefaultScriptSelect.cpp

87 lines
2.3 KiB
C++
Raw Normal View History

/*
2024-06-15 18:12:48 +00:00
* 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/>.
*/
// CustDefaultScriptSelect.cpp : implementation file
//
#include "stdafx.h"
#include "editor.h"
#include "CustDefaultScriptSelect.h"
#include "manage.h"
#include "ddio.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCustDefaultScriptSelect dialog
2024-06-15 18:12:48 +00:00
CCustDefaultScriptSelect::CCustDefaultScriptSelect(CWnd *pParent /*=NULL*/)
: CDialog(CCustDefaultScriptSelect::IDD, pParent) {
//{{AFX_DATA_INIT(CCustDefaultScriptSelect)
m_Name = _T("");
m_Module = _T("");
//}}AFX_DATA_INIT
}
2024-06-15 18:12:48 +00:00
void CCustDefaultScriptSelect::DoDataExchange(CDataExchange *pDX) {
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCustDefaultScriptSelect)
DDX_Text(pDX, IDC_NAME, m_Name);
DDX_Text(pDX, IDC_MODULE, m_Module);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CCustDefaultScriptSelect, CDialog)
2024-06-15 18:12:48 +00:00
//{{AFX_MSG_MAP(CCustDefaultScriptSelect)
ON_BN_CLICKED(IDC_BROWSE, OnBrowse)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCustDefaultScriptSelect message handlers
2024-06-15 18:12:48 +00:00
void CCustDefaultScriptSelect::OnOK() {
// TODO: Add extra validation here
CDialog::OnOK();
}
2024-06-15 18:12:48 +00:00
void CCustDefaultScriptSelect::OnBrowse() {
UpdateData(true);
CString filter = "D3 Compiled Scripts (*.dll)|*.dll||";
2024-06-15 18:12:48 +00:00
char filename[_MAX_PATH];
char pathname[_MAX_PATH], name[_MAX_PATH];
strcpy(pathname, LocalScriptDir);
2024-06-15 18:12:48 +00:00
if (!OpenFileDialog(this, (LPCTSTR)filter, filename, pathname, sizeof(pathname)))
return;
2024-06-15 18:12:48 +00:00
ddio_SplitPath(filename, NULL, name, NULL);
2024-06-15 18:12:48 +00:00
m_Module = name;
2024-06-15 18:12:48 +00:00
UpdateData(false);
}