forked from tcobbs/ldview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BoundingBoxDialog.cpp
161 lines (144 loc) · 3.24 KB
/
BoundingBoxDialog.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
#include "BoundingBoxDialog.h"
#include "ModelWindow.h"
#include "Resource.h"
#include <TCFoundation/TCAlertManager.h>
#include <LDLoader/LDLMainModel.h>
#include <CUI/CUIWindowResizer.h>
#if defined(_MSC_VER) && _MSC_VER >= 1400 && defined(_DEBUG)
#define new DEBUG_CLIENTBLOCK
#endif // _DEBUG
BoundingBoxDialog::BoundingBoxDialog(HINSTANCE hInstance):
CUIDialog(hInstance, NULL),
m_modelWindow(NULL),
m_model(NULL)
{
TCAlertManager::registerHandler(ModelWindow::alertClass(), this,
(TCAlertCallback)&BoundingBoxDialog::modelAlertCallback);
}
BoundingBoxDialog::~BoundingBoxDialog(void)
{
}
void BoundingBoxDialog::dealloc(void)
{
TCAlertManager::unregisterHandler(this);
TCObject::release(m_modelWindow);
TCObject::release(m_model);
if (hWindow)
{
DestroyWindow(hWindow);
}
CUIDialog::dealloc();
}
void BoundingBoxDialog::setModel(LDLMainModel *model)
{
if (model != m_model)
{
TCObject::release(m_model);
m_model = model;
TCObject::retain(m_model);
}
}
void BoundingBoxDialog::modelAlertCallback(TCAlert *alert)
{
if (alert->getSender() == m_modelWindow)
{
if (ucstrcmp(alert->getMessageUC(), _UC("ModelLoaded")) == 0)
{
setModel(getModelViewer()->getMainModel());
updateData();
}
else if (ucstrcmp(alert->getMessageUC(), _UC("ModelLoadCanceled")) == 0)
{
setModel(NULL);
updateData();
}
}
}
void BoundingBoxDialog::setModelWindow(ModelWindow *modelWindow)
{
if (modelWindow != m_modelWindow)
{
if (m_modelWindow)
{
m_modelWindow->release();
}
m_modelWindow = modelWindow;
TCObject::retain(m_modelWindow);
}
setModel(getModelViewer()->getMainModel());
}
void BoundingBoxDialog::showBoundingBox(bool value)
{
LDrawModelViewer *modelViewer = getModelViewer();
if (modelViewer)
{
modelViewer->setShowBoundingBox(value);
}
m_modelWindow->boundingBoxToggled();
}
bool BoundingBoxDialog::isVisible(void)
{
return IsWindowVisible(hWindow) ? true : false;
}
void BoundingBoxDialog::toggle(ModelWindow *modelWindow)
{
setModelWindow(modelWindow);
if (hWindow == NULL)
{
HWND hParentWnd = GetParent(modelWindow->getHWindow());
createDialog(IDD_BOUNDING_BOX, hParentWnd);
}
else if (IsWindowVisible(hWindow))
{
ShowWindow(hWindow, SW_HIDE);
showBoundingBox(false);
}
else
{
ShowWindow(hWindow, SW_SHOW);
showBoundingBox(true);
}
}
LDrawModelViewer *BoundingBoxDialog::getModelViewer(void)
{
if (m_modelWindow)
{
return m_modelWindow->getModelViewer();
}
else
{
return NULL;
}
}
void BoundingBoxDialog::updateData(void)
{
LDrawModelViewer *modelViewer = getModelViewer();
if (m_model != NULL && modelViewer != NULL)
{
UCCHAR buf1[1024];
UCCHAR buf2[1024];
modelViewer->getBoundingMin().print(buf1, COUNT_OF(buf1));
sucprintf(buf2, COUNT_OF(buf2), _UC("<%s>"), buf1);
windowSetText(IDC_MIN_POINT, buf2);
modelViewer->getBoundingMax().print(buf1, COUNT_OF(buf1));
sucprintf(buf2, COUNT_OF(buf2), _UC("<%s>"), buf1);
windowSetText(IDC_MAX_POINT, buf2);
}
else
{
windowSetText(IDC_MIN_POINT, _UC(""));
windowSetText(IDC_MAX_POINT, _UC(""));
}
}
BOOL BoundingBoxDialog::doInitDialog(HWND /*hKbControl*/)
{
updateData();
setAutosaveName("BoundingBoxDialog");
return TRUE;
}
LRESULT BoundingBoxDialog::doClose(void)
{
showWindow(SW_HIDE);
showBoundingBox(false);
return 0;
}