-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSrGmstView.cpp
180 lines (147 loc) · 5.4 KB
/
SrGmstView.cpp
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*===========================================================================
*
* File: SrGmstView.CPP
* Author: Dave Humphrey ([email protected])
* Created On: 27 November 2011
*
* Description
*
*=========================================================================*/
/* Include Files */
#include "stdafx.h"
#include "sredit.h"
#include "srgmstview.h"
#include "dialogs/sreditdlghandler.h"
/*===========================================================================
*
* Begin Local Definitions
*
*=========================================================================*/
//#ifdef _DEBUG
// #define new DEBUG_NEW
// #undef THIS_FILE
// static char THIS_FILE[] = __FILE__;
//#endif
IMPLEMENT_DYNCREATE(CSrGmstView, CSrRecordDialog);
/*===========================================================================
* End of Local Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin CSrGmstView Message Map
*
*=========================================================================*/
BEGIN_MESSAGE_MAP(CSrGmstView, CSrRecordDialog)
//{{AFX_MSG_MAP(CSrGmstView)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/*===========================================================================
* End of CSrGmstView Message Map
*=========================================================================*/
/*===========================================================================
*
* Begin UI Field Map
*
*=========================================================================*/
BEGIN_SRRECUIFIELDS(CSrGmstView)
ADD_SRRECUIFIELDS( SR_FIELD_EDITORID, IDC_EDITORID, 128, IDS_TT_EDITORID)
ADD_SRRECUIFIELDS( SR_FIELD_FORMID, IDC_FORMID, 128, IDS_TT_FORMID)
ADD_SRRECUIFIELDS( SR_FIELD_VALUE, IDC_VALUE, 256, IDS_TT_VALUE)
END_SRRECUIFIELDS()
/*===========================================================================
* End of UI Field Map
*=========================================================================*/
/*===========================================================================
*
* Class CSrGmstView Constructor
*
*=========================================================================*/
CSrGmstView::CSrGmstView() : CSrRecordDialog(CSrGmstView::IDD)
{
//{{AFX_DATA_INIT(CSrGmstView)
//}}AFX_DATA_INIT
m_InitialSetData = false;
}
/*===========================================================================
* End of Class CSrGmstView Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrGmstView Destructor
*
*=========================================================================*/
CSrGmstView::~CSrGmstView()
{
}
/*===========================================================================
* End of Class CSrGmstView Destructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrGmstView Method - void DoDataExchange (pDX);
*
*=========================================================================*/
void CSrGmstView::DoDataExchange (CDataExchange* pDX)
{
CSrRecordDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSrGmstView)
DDX_Control(pDX, IDC_VALUE, m_Value);
DDX_Control(pDX, IDC_EDITORID, m_EditorID);
DDX_Control(pDX, IDC_FORMID, m_FormID);
//}}AFX_DATA_MAP
}
/*===========================================================================
* End of Class Method CSrGmstView::DoDataExchange()
*=========================================================================*/
/*===========================================================================
*
* Begin CSrGmstView Diagnostics
*
*=========================================================================*/
#ifdef _DEBUG
void CSrGmstView::AssertValid() const {
CSrRecordDialog::AssertValid();
}
void CSrGmstView::Dump(CDumpContext& dc) const {
CSrRecordDialog::Dump(dc);
}
#endif
/*===========================================================================
* End of CSrGmstView Diagnostics
*=========================================================================*/
/*===========================================================================
*
* Class CSrGmstView Event - void OnInitialUpdate (void);
*
*=========================================================================*/
void CSrGmstView::OnInitialUpdate (void)
{
CSrRecordDialog::OnInitialUpdate();
SetControlData();
}
/*===========================================================================
* End of Class Event CSrGmstView::OnInitialUpdate()
*=========================================================================*/
int CSrGmstView::OnPreSaveRecord (void)
{
CString Buffer;
if (m_pRecordHandler == NULL) return SR_RESULT_ERROR;
m_EditorID.GetWindowText(Buffer);
Buffer.Trim();
if (!Buffer.IsEmpty())
{
char Type = tolower(Buffer[0]);
switch (Type)
{
case 's':
case 'i':
case 'f':
case 'b':
break;
default:
AddSrGeneralError("A Game Setting editor ID should start with one of i/f/s/b!");
return SR_RESULT_ERROR;
}
}
return CSrRecordDialog::OnPreSaveRecord();
}