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
|
/*
* XEvil(TM) Copyright (C) 1994,2000 Steve Hardt and Michael Judge
* http://www.xevil.com
* satan@xevil.com
*
* 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 2 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, the file "gpl.txt"; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA, or visit http://www.gnu.org.
*/
// Difficulty.cpp : implementation file
//
#include "stdafx.h"
#include "xevil.h"
#include "Difficulty.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDifficulty dialog
CDifficulty::CDifficulty(CWnd* pParent /*=NULL*/)
: CDialog(CDifficulty::IDD, pParent)
{
//{{AFX_DATA_INIT(CDifficulty)
m_difficulty = -1;
//}}AFX_DATA_INIT
m_Ddifficulty=DIFF_NORMAL;
}
void CDifficulty::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDifficulty)
DDX_Radio(pDX, IDC_DIFFICULTY1, m_difficulty);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDifficulty, CDialog)
//{{AFX_MSG_MAP(CDifficulty)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDifficulty message handlers
void CDifficulty::OnOK()
{
UpdateData(TRUE);
switch (m_difficulty)
{
case 0:m_Ddifficulty=DIFF_TRIVIAL; break;
case 1:m_Ddifficulty=DIFF_NORMAL; break;
case 2:m_Ddifficulty=DIFF_HARD; break;
case 3:m_Ddifficulty=DIFF_BEND_OVER; break;
default: m_Ddifficulty=DIFF_NORMAL;assert(0);break;
}
#ifdef MODELESS_DIALOGS
PostMessage(WM_COMMAND,IDOK,0);
#else
CDialog::OnOK();
#endif
}
void CDifficulty::OnCancel()
{
#ifdef MODELESS_DIALOGS
PostMessage(WM_COMMAND,IDCANCEL,0);
#else
CDialog::OnCancel();
#endif
}
BOOL CDifficulty::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
switch (m_Ddifficulty)
{
case DIFF_TRIVIAL: m_difficulty=0; break;
case DIFF_NORMAL: m_difficulty=1; break;
case DIFF_HARD: m_difficulty=2; break;
case DIFF_BEND_OVER: m_difficulty=3; break;
default: m_difficulty=0;assert(0);break;
}
UpdateData(FALSE);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
|