mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
87 lines
2.2 KiB
C++
87 lines
2.2 KiB
C++
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
// CreateNewScriptDlg.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "editor.h"
|
|
#include "CreateNewScriptDlg.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CCreateNewScriptDlg dialog
|
|
|
|
CCreateNewScriptDlg::CCreateNewScriptDlg(CWnd *pParent /*=NULL*/) : CDialog(CCreateNewScriptDlg::IDD, pParent) {
|
|
//{{AFX_DATA_INIT(CCreateNewScriptDlg)
|
|
m_Filename = _T("");
|
|
m_ScriptType = -1;
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
void CCreateNewScriptDlg::DoDataExchange(CDataExchange *pDX) {
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CCreateNewScriptDlg)
|
|
DDX_Text(pDX, IDC_FILENAME, m_Filename);
|
|
DDX_Radio(pDX, IDC_LEVEL, m_ScriptType);
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
BEGIN_MESSAGE_MAP(CCreateNewScriptDlg, CDialog)
|
|
//{{AFX_MSG_MAP(CCreateNewScriptDlg)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CCreateNewScriptDlg message handlers
|
|
|
|
void CCreateNewScriptDlg::OnOK() {
|
|
UpdateData(true);
|
|
|
|
int length = m_Filename.GetLength();
|
|
char *str = m_Filename.GetBuffer(0);
|
|
if (length <= 0) {
|
|
MessageBox("You must specify a filename", "Error");
|
|
return;
|
|
}
|
|
|
|
if ((length <= 4) || stricmp(&str[length - 4], ".cpp")) {
|
|
// we need to add a .cpp to the end of the name
|
|
m_Filename += ".cpp";
|
|
}
|
|
|
|
UpdateData(false);
|
|
|
|
CDialog::OnOK();
|
|
}
|
|
|
|
BOOL CCreateNewScriptDlg::OnInitDialog() {
|
|
CDialog::OnInitDialog();
|
|
|
|
m_ScriptType = 0;
|
|
|
|
UpdateData(false);
|
|
|
|
return TRUE;
|
|
}
|