-
Notifications
You must be signed in to change notification settings - Fork 0
/
CREATECONNECT.CPP
323 lines (282 loc) · 8 KB
/
CREATECONNECT.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#include "stdafx.h"
#include "math.h"
#include "VCad.h"
#include "VCadDoc.h"
#include "VCadView.h"
#include "MainFrm.h"
#include "Entity.h"
#include "Command.h"
#include "CreateCmd.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
BOOL IsImport(Position & pos)
{
POSITION POS = g_pDoc->m_EntityList.GetHeadPosition();
while(POS!=NULL)
{
MEntity* pEntity = (MEntity *) g_pDoc->m_EntityList.GetNext(POS);
pEntity = pEntity->GetShowEnt();
if(pEntity == NULL || pEntity->m_nOperationNum ==0)
continue;
if(pEntity->GetType() == etBlock) {
Position pt = ((MBlock*)pEntity)->GetImportPos();
if(pt.Distance(pos) < 5) {
pos = pt;
return TRUE;
}
}
}
return FALSE;
}
BOOL IsOutport(Position & pos)
{
POSITION POS = g_pDoc->m_EntityList.GetHeadPosition();
while(POS!=NULL)
{
MEntity* pEntity = (MEntity *) g_pDoc->m_EntityList.GetNext(POS);
pEntity = pEntity->GetShowEnt();
if(pEntity == NULL || pEntity->m_nOperationNum ==0)
continue;
if(pEntity->GetType() == etBlock) {
Position pt = ((MBlock*)pEntity)->GetOutportPos();
if(pt.Distance(pos) < 5) {
pos = pt;
return TRUE;
}
}
}
return FALSE;
}
CCreateConnect::CCreateConnect()
: m_begin(0,0), m_end(0,0)
{
m_nStep = 0; // 初始化操作步为 0
m_pPositions = NULL;
m_bImport = 0;
}
CCreateConnect::~CCreateConnect()
{
if(m_pPositions) {
delete [] m_pPositions;
m_pPositions = NULL;
}
}
int CCreateConnect::GetType()
{
return ctCreateConnect;
}
int CCreateConnect::OnLButtonDown(UINT nFlags, const Position& pos1)
{
Position pos = pos1;
m_nStep ++; // 每次单击鼠标左键时操作步加 1
int i;
//保存点集
if(m_nStep > 0) {
Position * pNew = new Position[m_nStep];
for( i=0; i<m_nStep-1; i++)
pNew[i] = m_pPositions[i];
pNew[i] = pos;
if(m_nStep > 1 && m_pPositions)
delete [] m_pPositions;
m_pPositions = pNew;
}
switch(m_nStep) // 根据操作步执行相应的操作
{
case 1:
{
//如果是块的输出点/输入点
if(IsImport(pos) || IsOutport(pos)) {
if(IsImport(pos))
m_bImport = 1;
else
m_bImport = -1;
m_begin = m_end = pos;
::Prompt("请输入连接线的下一点:");
}
else
m_nStep = 0;
break;
}
default:
{
CDC* pDC = g_pView->GetDC(); // 得到设备环境指针
// 擦除在拖动状态时显示的最后一条线
//MLines* pTempLine = new MLines(m_begin,m_end);
//pTempLine->Draw(pDC, dmDrag);
//delete pTempLine;
// 如果在按鼠标左键的过程中同时按下了Shift键,
// 那么根据鼠标单击位置绘制水平线或竖连接线
if( nFlags & MK_SHIFT ){
double dx = pos.x - m_begin.x;
double dy = pos.y - m_begin.y;
if(fabs(dx) <= fabs(dy)) // 如果鼠标单击位置在X方向靠近起点
m_end.Set(m_begin.x, pos.y); // 那么终点的x坐标与起点的相同
else
m_end.Set(pos.x,m_begin.y);
}
else
m_end = pos; // 如果未按下Shift键, 则终点为鼠标单击位置
if( (IsImport(pos) && m_bImport == -1) || (IsOutport(pos) && m_bImport == 1) ) {
MLines* pTempLine = new MLines(m_begin,m_end);
pTempLine->Draw(pDC, dmDrag);
delete pTempLine;
m_pPositions[m_nStep-1] = pos;
MConnect* pNewLine = new MConnect(m_nStep,m_pPositions);// 根据起点和终点创建连接线
pNewLine->Draw(pDC,dmNormal); // 绘制连接线
g_pDoc->m_EntityList.AddTail(pNewLine); // 将连接线指针添加到图元链表
g_pDoc->SetModifiedFlag(TRUE);// set modified flag ;
pNewLine->m_nOperationNum = g_pView->m_nCurrentOperation;
m_nStep = 0; // 将操作步重置为 0
::Prompt("请输入连接线的起点:");
}
m_begin = pos;
g_pView->ReleaseDC(pDC);
break;
}
}
//更新捕获点
if(m_nStep > 0)
m_pPositions[m_nStep-1] = pos;
return 0;
}
//鼠标左键双击创建多线
int CCreateConnect::OnLButtonDblClk(UINT nFlags, const Position& pos)
{
CDC* pDC = g_pView->GetDC(); // 得到设备环境指针
// 擦除在拖动状态时显示的最后一条线
if(m_nStep>=2) {
MLines* pTempLine = new MLines(m_begin,m_end);
pTempLine->Draw(pDC, dmDrag);
delete pTempLine;
}
// 如果在按鼠标左键的过程中同时按下了Shift键,
// 那么根据鼠标单击位置绘制水平线或竖连接线
if( nFlags & MK_SHIFT ){
double dx = pos.x - m_begin.x;
double dy = pos.y - m_begin.y;
if(fabs(dx) <= fabs(dy)) // 如果鼠标单击位置在X方向靠近起点
m_end.Set(m_begin.x, pos.y); // 那么终点的x坐标与起点的相同
else
m_end.Set(pos.x,m_begin.y);
}
else
m_end = pos; // 如果未按下Shift键, 则终点为鼠标单击位置
if(m_nStep >= 2) {
//弹出对话框选择
CString sMsg;
if(m_bImport == 1)
sMsg = _T("创建输出节点吗?");
else
sMsg = _T("创建输入节点吗?");
if(AfxMessageBox(sMsg, MB_OKCANCEL) == IDOK)
{
MConnect* pNewLine = new MConnect(m_nStep,m_pPositions);// 根据起点和终点创建连接线
pNewLine->Draw(pDC,dmNormal); // 绘制连接线
g_pDoc->m_EntityList.AddTail(pNewLine); // 将连接线指针添加到图元链表
double width = 30;
double height = 30;
Position p1, p2;
p1.x = pos.x;
p1.y = pos.y + height/2;
p2.x = pos.x + width;
p2.y = pos.y - height/2;
MBlock * pBlk = new MBlock(p1, p2, (CBitmap*)NULL);
pBlk->Draw(pDC,dmNormal); // 绘制块
g_pDoc->m_EntityList.AddTail(pBlk); // 将块指针添加到图元链表
g_pDoc->SetModifiedFlag(TRUE);// set modified flag ;
pNewLine->m_nOperationNum = g_pView->m_nCurrentOperation;
pBlk->m_nOperationNum = g_pView->m_nCurrentOperation;
}
}
m_nStep = 0; // 将操作步重置为 0
g_pView->ReleaseDC(pDC); // 释放设备环境指针
::Prompt("请输入连接线的起点:");
return 0;
}
int CCreateConnect::OnMouseMove(UINT nFlags, const Position& pos)
{
::SetCursor(AfxGetApp()->LoadCursor(IDC_DRAW_CONNECT));
// 用一静态变量nPreRefresh记录进入OnMouseMove状态时的刷新次数
static int nPreRefresh = g_nRefresh;
// 布尔变量bRefresh说明在OnMouseMove过程中视窗是否被刷新
BOOL bRefresh = FALSE;
// nCurRefresh用于记录当前的刷新次数
int nCurRefresh = g_nRefresh;
// 如果nCurRefresh和nPreRefresh不相等,说明视窗曾被刷新过
if(nCurRefresh != nPreRefresh){
bRefresh = TRUE;
nPreRefresh = nCurRefresh;
}
switch(m_nStep)
{
case 0:
::Prompt("请输入连接线的起点:");
break;
default:
{
Position prePos, curPos;
prePos = m_end; // 获得鼠标所在的前一个位置
// 如果在按鼠标左键的过程中同时按下了Shift键,
// 那么根据鼠标单击位置绘制水平线或竖连接线
if( nFlags & MK_SHIFT ){
double dx = pos.x - m_begin.x;
double dy = pos.y - m_begin.y;
if(fabs(dx)>=fabs(dy))
curPos.Set(pos.x,m_begin.y);
else
curPos.Set(m_begin.x, pos.y);
}
else
curPos = pos;
CDC* pDC = g_pView->GetDC(); // 得到设备环境指针
// 创建临时对象擦除上一条橡皮线
MLines* pTempLine1 = new MLines(m_begin, prePos);
if(!bRefresh) // 当视窗没有被刷新时,重画原来的橡皮线使其被擦除
pTempLine1->Draw(pDC, dmDrag);
delete pTempLine1;
// 创建临时对象,根据当前位置绘制一条橡皮线
MLines* pTempLine2 = new MLines(m_begin, curPos);
pTempLine2->Draw(pDC, dmDrag);
delete pTempLine2;
g_pView->ReleaseDC(pDC); // 释放设备环境指针
m_end = curPos; // 将当前位置设置为连接线终点,以备下一次鼠标移动时用
break;
}
}
return 0;
}
// 单击鼠标右键取消当前的操作
int CCreateConnect::OnRButtonDown(UINT nFlags, const Position& pos)
{
// 如果当前的操作步为 1 ,那么要在结束本次操作前擦除上次鼠标移动时绘制的橡皮线
if(m_nStep == 1){
CDC* pDC = g_pView->GetDC(); // 得到设备环境指针
Position prePos = m_end; // 获得鼠标所在的前一个位置
MLines* pTempLine = new MLines(m_begin, prePos);
pTempLine->Draw(pDC, dmDrag); // 擦除上一次绘制的橡皮线
delete pTempLine;
g_pView->ReleaseDC(pDC); // 释放设备环境指针
}
m_nStep = 0; // 将操作步重置为 0
::Prompt("请输入连接线的起点:");
return 0;
}
// 调用Cancel 函数取消本次操作
int CCreateConnect::Cancel()
{
// 如果当前的操作步为 1 ,那么要在结束本次操作前擦除上次鼠标移动时绘制的橡皮线
if(m_nStep == 1){
CDC* pDC = g_pView->GetDC(); // 得到设备环境指针
Position prePos = m_end; // 获得鼠标所在的前一个位置
MLines* pTempLine = new MLines(m_begin, prePos);
pTempLine->Draw(pDC, dmDrag); // 擦除上一次绘制的橡皮线
delete pTempLine;
g_pView->ReleaseDC(pDC); // 释放设备环境指针
}
m_nStep = 0; // 将操作步重置为 0
::Prompt("就绪"); // 等待提示新类型的命令操作
return 0 ;
}