mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-02 14:00:04 -04:00
Move internal level editor into main tree
This commit is contained in:
93
editor/CustDefaultScriptSelect.cpp
Normal file
93
editor/CustDefaultScriptSelect.cpp
Normal file
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
* 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
|
||||
|
||||
|
||||
CCustDefaultScriptSelect::CCustDefaultScriptSelect(CWnd* pParent /*=NULL*/)
|
||||
: CDialog(CCustDefaultScriptSelect::IDD, pParent)
|
||||
{
|
||||
//{{AFX_DATA_INIT(CCustDefaultScriptSelect)
|
||||
m_Name = _T("");
|
||||
m_Module = _T("");
|
||||
//}}AFX_DATA_INIT
|
||||
}
|
||||
|
||||
|
||||
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)
|
||||
//{{AFX_MSG_MAP(CCustDefaultScriptSelect)
|
||||
ON_BN_CLICKED(IDC_BROWSE, OnBrowse)
|
||||
//}}AFX_MSG_MAP
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CCustDefaultScriptSelect message handlers
|
||||
|
||||
void CCustDefaultScriptSelect::OnOK()
|
||||
{
|
||||
// TODO: Add extra validation here
|
||||
|
||||
CDialog::OnOK();
|
||||
}
|
||||
|
||||
void CCustDefaultScriptSelect::OnBrowse()
|
||||
{
|
||||
|
||||
UpdateData(true);
|
||||
|
||||
CString filter = "D3 Compiled Scripts (*.dll)|*.dll||";
|
||||
|
||||
char filename[_MAX_PATH];
|
||||
char pathname[_MAX_PATH],name[_MAX_PATH];
|
||||
strcpy(pathname,LocalScriptDir);
|
||||
|
||||
if (!OpenFileDialog(this, (LPCTSTR)filter, filename, pathname, sizeof(pathname)))
|
||||
return;
|
||||
|
||||
ddio_SplitPath (filename,NULL,name,NULL);
|
||||
|
||||
m_Module = name;
|
||||
|
||||
UpdateData(false);
|
||||
}
|
||||
Reference in New Issue
Block a user