-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEsmCellDlg.cpp
228 lines (186 loc) · 7.24 KB
/
EsmCellDlg.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*===========================================================================
*
* File: Esmcelldlg.CPP
* Author: Dave Humphrey (uesp@m0use.net)
* Created On: February 21, 2003
*
* Description
*
*=========================================================================*/
/* Include Files */
#include "stdafx.h"
#include "MWEdit.h"
#include "EsmCellDlg.h"
/*===========================================================================
*
* Begin Local Definitions
*
*=========================================================================*/
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
DEFINE_FILE("EsmCellDlg.cpp");
IMPLEMENT_DYNCREATE(CEsmCellDlg, CEsmRecDialog);
/*===========================================================================
* End of Local Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin CEsmCellDlg Message Map
*
*=========================================================================*/
BEGIN_MESSAGE_MAP(CEsmCellDlg, CEsmRecDialog)
//{{AFX_MSG_MAP(CEsmCellDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/*===========================================================================
* End of CEsmCellDlg Message Map
*=========================================================================*/
/*===========================================================================
*
* Class CEsmCellDlg Constructor
*
*=========================================================================*/
CEsmCellDlg::CEsmCellDlg() : CEsmRecDialog(CEsmCellDlg::IDD) {
//{{AFX_DATA_INIT(CEsmCellDlg)
//}}AFX_DATA_INIT
m_pCell = NULL;
}
/*===========================================================================
* End of Class CEsmCellDlg Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CEsmCellDlg Method - void DoDataExchange (pDX);
*
*=========================================================================*/
void CEsmCellDlg::DoDataExchange(CDataExchange* pDX) {
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CEsmCellDlg)
DDX_Control(pDX, IDC_GRIDTEXT, m_GridText);
DDX_Control(pDX, IDC_TABCTRL, m_TabControl);
DDX_Control(pDX, IDC_IDTEXT, m_IDText);
//}}AFX_DATA_MAP
}
/*===========================================================================
* End of Class Method CEsmCellDlg::DoDataExchange()
*=========================================================================*/
/*===========================================================================
*
* Class CEsmCellDlg Method - void GetControlData (void);
*
*=========================================================================*/
void CEsmCellDlg::GetControlData (void) {
DEFINE_FUNCTION("CEsmCellDlg::GetControlData()");
CString Buffer;
/* Update the armor pointer and data */
m_pCell = (CEsmCell *) GetRecInfo()->pRecord;
ASSERT(m_pCell != NULL);
/* Item ID, if changed */
if (m_IDText.GetModify()) {
m_IDText.GetWindowText(Buffer);
m_pCell->SetID(TrimStringSpace(Buffer));
}
/* Get interior/exterior data */
if (m_pCell->IsInterior()) {
m_IntCellPage.GetControlData();
}
else {
m_ExtCellPage.GetControlData();
}
m_RefCellPage.GetControlData();
}
/*===========================================================================
* End of Class Method CEsmCellDlg::GetControlData()
*=========================================================================*/
/*===========================================================================
*
* Class CEsmCellDlg Method - bool IsModified (void);
*
*=========================================================================*/
bool CEsmCellDlg::IsModified (void) {
if (m_Modified) return (true);
/* Check edit controls for changes */
if (m_IDText.GetModify()) m_Modified = true;
return (m_Modified);
}
/*===========================================================================
* End of Class Method CEsmCellDlg::IsModified()
*=========================================================================*/
/*===========================================================================
*
* Class CEsmCellDlg Event - void OnInitialUpdate ();
*
*=========================================================================*/
void CEsmCellDlg::OnInitialUpdate() {
CEsmRecDialog::OnInitialUpdate();
UpdateTitle(NULL);
/* Initialize the cell record */
ASSERT(GetRecInfo() != NULL);
m_pCell = (CEsmCell *) GetRecInfo()->pRecord;
/* Create the tab control pages according to the cell type */
m_RefCellPage.Create(IDD_REFCELL_PAGE, &m_TabControl);
m_TabControl.AddTab("Objects", &m_RefCellPage);
m_RefCellPage.SetRecInfo(GetRecInfo());
m_RefCellPage.SetEsmRecParent(this);
if (m_pCell->IsInterior()) {
m_IntCellPage.Create(IDD_INTCELL_PAGE, &m_TabControl);
m_TabControl.AddTab("Interior", &m_IntCellPage);
m_IntCellPage.SetEsmRecParent(this);
m_IntCellPage.SetRecInfo(GetRecInfo());
}
else {
m_ExtCellPage.Create(IDD_EXTCELL_PAGE, &m_TabControl);
m_TabControl.AddTab("Exterior", &m_ExtCellPage);
m_ExtCellPage.SetEsmRecParent(this);
m_ExtCellPage.SetRecInfo(GetRecInfo());
}
m_TabControl.SetPage(0);
/* Initialize the text controls */
m_IDText.SetLimitText(MWESM_ID_MAXSIZE*2);
/* Update the UI data */
SetControlData();
}
/*===========================================================================
* End of Class Event CEsmCellDlg::OnInitialUpdate()
*=========================================================================*/
/*===========================================================================
*
* Class CEsmCellDlg Event - int OnUpdateItem (pRecInfo);
*
*=========================================================================*/
int CEsmCellDlg::OnUpdateItem (esmrecinfo_t* pRecInfo) {
/* Refill the script list if required */
if (pRecInfo->pRecord->IsType(MWESM_REC_REGN)) {
if (m_pCell->IsInterior()) m_IntCellPage.OnUpdateItem(pRecInfo);
}
return (0);
}
/*===========================================================================
* End of Class Event CEsmCellDlg::OnUpdateItem()
*=========================================================================*/
/*===========================================================================
*
* Class CEsmCellDlg Method - void SetControlData (void);
*
*=========================================================================*/
void CEsmCellDlg::SetControlData (void) {
/* Ignore if the current item is not valid */
if (m_pCell == NULL) return;
/* Item ID, update title as well */
m_IDText.SetWindowText(m_pCell->GetID());
UpdateTitle(m_pCell->GetName());
m_IDText.SetModify(FALSE);
/* Read only textbox for the grid coordinates */
m_GridText.SetWindowText(m_pCell->GetGrid());
m_RefCellPage.SetControlData();
if (m_pCell->IsInterior())
m_IntCellPage.SetControlData();
else
m_ExtCellPage.SetControlData();
}
/*===========================================================================
* End of Class Method CEsmCellDlg::SetControlData()
*=========================================================================*/