This commit is contained in:
parent
8804162061
commit
1bf8e68d21
2 changed files with 146 additions and 0 deletions
85
Utils/MapEdit/GUILayerHazard.cpp
Normal file
85
Utils/MapEdit/GUILayerHazard.cpp
Normal file
|
@ -0,0 +1,85 @@
|
|||
// GUILayerActor.cpp : implementation file
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "mapedit.h"
|
||||
#include "GUILayerActor.h"
|
||||
|
||||
#include "MapEditDoc.h"
|
||||
#include "MainFrm.h"
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define new DEBUG_NEW
|
||||
#undef THIS_FILE
|
||||
static char THIS_FILE[] = __FILE__;
|
||||
#endif
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CGUILayerActor dialog
|
||||
|
||||
|
||||
CGUILayerActor::CGUILayerActor(CWnd* pParent /*=NULL*/)
|
||||
: CDialog(CGUILayerActor::IDD, pParent)
|
||||
{
|
||||
DisableCallback(true);
|
||||
//{{AFX_DATA_INIT(CGUILayerActor)
|
||||
//}}AFX_DATA_INIT
|
||||
DisableCallback(false);
|
||||
}
|
||||
|
||||
|
||||
void CGUILayerActor::DoDataExchange(CDataExchange* pDX)
|
||||
{
|
||||
CDialog::DoDataExchange(pDX);
|
||||
//{{AFX_DATA_MAP(CGUILayerActor)
|
||||
DDX_Control(pDX, IDC_ACTOR_TURNRATE_SPIN, m_TurnRateSpin);
|
||||
DDX_Control(pDX, IDC_ACTOR_SPEED_SPIN, m_SpeedSpin);
|
||||
DDX_Control(pDX, IDC_ACTOR_HEALTH_SPIN, m_HealthSpin);
|
||||
DDX_Control(pDX, IDC_ACTOR_ATTACK_SPIN, m_AttackSpin);
|
||||
DDX_Control(pDX, IDC_ACTOR_COLLISION, m_Collision);
|
||||
DDX_Control(pDX, IDC_ACTOR_PLAYER, m_Player);
|
||||
DDX_Control(pDX, IDC_ACTOR_TURNRATE, m_TurnRate);
|
||||
DDX_Control(pDX, IDC_ACTOR_SPEED, m_Speed);
|
||||
DDX_Control(pDX, IDC_ACTOR_ATTACK, m_Attack);
|
||||
DDX_Control(pDX, IDC_ACTOR_HEALTH, m_Health);
|
||||
//}}AFX_DATA_MAP
|
||||
}
|
||||
|
||||
|
||||
BEGIN_MESSAGE_MAP(CGUILayerActor, CDialog)
|
||||
//{{AFX_MSG_MAP(CGUILayerActor)
|
||||
ON_EN_CHANGE(IDC_ACTOR_HEALTH, OnChangeParam)
|
||||
ON_EN_CHANGE(IDC_ACTOR_ATTACK, OnChangeParam)
|
||||
ON_BN_CLICKED(IDC_ACTOR_COLLISION, OnChangeParam)
|
||||
ON_EN_CHANGE(IDC_ACTOR_SPEED, OnChangeParam)
|
||||
ON_EN_CHANGE(IDC_ACTOR_TURNRATE, OnChangeParam)
|
||||
//}}AFX_MSG_MAP
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
void CGUILayerActor::SetVal(CEdit &Dlg,int Val)
|
||||
{
|
||||
CString Str;
|
||||
if (!Dlg) return;
|
||||
DisableCallback(true);
|
||||
Str.Format("%i",Val);
|
||||
Dlg.SetWindowText(Str);
|
||||
DisableCallback(false);
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
int CGUILayerActor::GetVal(CEdit &Dlg)
|
||||
{
|
||||
CString Str;
|
||||
int Val=0;
|
||||
if (!Dlg) return(0);
|
||||
Dlg.GetWindowText(Str);
|
||||
if (Str.GetLength())
|
||||
Val=atoi(Str);
|
||||
return(Val);
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CGUILayerActor message handlers
|
||||
|
||||
void CGUILayerActor::OnChangeParam() {if (!CallbackFlag) theApp.GetCurrent()->GUIChanged();}
|
Loading…
Add table
Add a link
Reference in a new issue