Skip to content

Commit f512460

Browse files
committed
March-03-2022
1 parent e42f77d commit f512460

File tree

557 files changed

+202003
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

557 files changed

+202003
-0
lines changed

.qmake.stash

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
QMAKE_CXX.QT_COMPILER_STDCXX = 199711L
2+
QMAKE_CXX.QMAKE_MSC_VER = 1928
3+
QMAKE_CXX.QMAKE_MSC_FULL_VER = 192829334
4+
QMAKE_CXX.COMPILER_MACROS = \
5+
QT_COMPILER_STDCXX \
6+
QMAKE_MSC_VER \
7+
QMAKE_MSC_FULL_VER
8+
QMAKE_CXX.INCDIRS = \
9+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.28.29333\\ATLMFC\\include" \
10+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.28.29333\\include" \
11+
"C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\ucrt" \
12+
"C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\shared" \
13+
"C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\um" \
14+
"C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\winrt" \
15+
"C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\cppwinrt"
16+
QMAKE_CXX.LIBDIRS = \
17+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.28.29333\\ATLMFC\\lib\\x64" \
18+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.28.29333\\lib\\x64" \
19+
"C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.18362.0\\ucrt\\x64" \
20+
"C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.18362.0\\um\\x64"

GLKLib/GLKCameraTool.h

+236
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,236 @@
1+
#include "GLKLib.h"
2+
#include <QEvent>
3+
#include <QMouseEvent>
4+
#include <QPoint>
5+
#include <math.h>
6+
#ifndef _GLKCAMERATOOL
7+
#define _GLKCAMERATOOL
8+
9+
typedef enum camera_type {ORBIT,PAN,ZOOM,ORBITPAN,ZOOMWINDOW};
10+
11+
class GLKCameraTool : public GLKMouseTool
12+
{
13+
public:
14+
GLKCameraTool(GLKLib *cView, camera_type ct)
15+
{
16+
pView=cView;
17+
m_ct=ct;
18+
tool_type = 0;
19+
}
20+
21+
virtual ~GLKCameraTool() {};
22+
void setCameraType(camera_type ct) {m_ct = ct;};
23+
camera_type getCameraType() {return m_ct;}
24+
25+
private:
26+
GLKLib *pView;
27+
camera_type m_ct;
28+
QPoint lastPos;
29+
QPoint pt;
30+
public:
31+
// Implement the virtual method which processes the button events
32+
// The default implementation maps the pick_event into a position
33+
// and then calls the process_position_event method
34+
virtual int process_event(QEvent *event, mouse_event_type event_type) {
35+
switch(m_ct) {
36+
case ORBITPAN :{
37+
if (event_type == MOUSE_WHEELE_MOVE) {
38+
m_ct = ZOOM; break;}
39+
40+
QMouseEvent *e = (QMouseEvent*)event;
41+
42+
if (event_type == MOUSE_PRESS)
43+
lastPos = e->pos();
44+
if (event_type == MOUSE_MOVE && (e->buttons() & Qt::LeftButton))
45+
{
46+
float xR,yR;
47+
48+
pView->GetRotation(xR,yR);
49+
50+
double sx,sy;
51+
double cx,cy;
52+
pView->wcl_to_screen(0.0,0.0,0.0,sx,sy);
53+
pView->wcl_to_screen(0.0,1.0,0.0,cx,cy);
54+
if (cy>=sy)
55+
yR += (float)(lastPos.x() - e->pos().x())/2;
56+
else
57+
yR -= (float)(lastPos.x() - e->pos().x())/2;
58+
59+
xR -= (float)(lastPos.y() - e->pos().y())/2;
60+
61+
// printf("xR: %f yR: %f", xR, yR);
62+
63+
pView->SetRotation(xR,yR);
64+
lastPos = e->pos();
65+
pView->refresh();
66+
}
67+
if (event_type == MOUSE_MOVE && (e->buttons() & Qt::RightButton))
68+
{
69+
float xR,yR,zR;
70+
float mappingScale=pView->m_MappingScale;
71+
72+
pView->GetTranslation(xR,yR,zR);
73+
xR -= (float)(lastPos.x() - e->pos().x())/mappingScale;
74+
yR += (float)(lastPos.y() - e->pos().y())/mappingScale;
75+
pView->SetTranslation(xR,yR,zR);
76+
lastPos = e->pos();
77+
78+
pView->refresh();
79+
}
80+
QKeyEvent *keyEvent = (QKeyEvent*)event;
81+
if (event_type == KEY_PRESS){
82+
float xR, yR;
83+
if (keyEvent->key() == Qt::Key_Left){
84+
pView->GetRotation(xR, yR);
85+
pView->SetRotation(xR, yR-5);
86+
}
87+
if (keyEvent->key() == Qt::Key_Right){
88+
pView->GetRotation(xR, yR);
89+
pView->SetRotation(xR, yR+5);
90+
}
91+
if (keyEvent->key() == Qt::Key_Up){
92+
pView->GetRotation(xR, yR);
93+
pView->SetRotation(xR-5, yR);
94+
}
95+
if (keyEvent->key() == Qt::Key_Down){
96+
pView->GetRotation(xR, yR);
97+
pView->SetRotation(xR+5, yR);
98+
}
99+
pView->refresh();
100+
}
101+
102+
}break;
103+
case ORBIT :{
104+
QMouseEvent *e = (QMouseEvent*)event;
105+
if (event_type == MOUSE_PRESS)
106+
lastPos = e->pos();
107+
if (event_type == MOUSE_MOVE && (e->buttons() & Qt::LeftButton))
108+
{
109+
float xR,yR;
110+
111+
pView->GetRotation(xR,yR);
112+
113+
double sx,sy;
114+
double cx,cy;
115+
pView->wcl_to_screen(0.0,0.0,0.0,sx,sy);
116+
pView->wcl_to_screen(0.0,1.0,0.0,cx,cy);
117+
if (cy>=sy)
118+
yR += (float)(lastPos.x() - e->pos().x())/2;
119+
else
120+
yR -= (float)(lastPos.x() - e->pos().x())/2;
121+
122+
xR -= (float)(lastPos.y() - e->pos().y())/2;
123+
124+
pView->SetRotation(xR,yR);
125+
lastPos = e->pos();
126+
pView->refresh();
127+
}
128+
}break;
129+
case PAN :{
130+
QMouseEvent *e = (QMouseEvent*)event;
131+
if (event_type == MOUSE_PRESS)
132+
lastPos = e->pos();
133+
if (event_type == MOUSE_MOVE && (e->buttons() & Qt::RightButton))
134+
{
135+
float xR,yR,zR;
136+
float mappingScale=pView->m_MappingScale;
137+
138+
pView->GetTranslation(xR,yR,zR);
139+
xR -= (float)(lastPos.x() - e->pos().x())/mappingScale;
140+
yR += (float)(lastPos.y() - e->pos().y())/mappingScale;
141+
pView->SetTranslation(xR,yR,zR);
142+
lastPos = e->pos();
143+
144+
pView->refresh();
145+
}
146+
}break;
147+
case ZOOM :{ if (event_type != MOUSE_WHEELE_MOVE) { m_ct = ORBITPAN; lastPos = ((QMouseEvent*)event)->pos(); break;}
148+
QWheelEvent *e = (QWheelEvent*)event;
149+
if (e->delta() >= 0.0)
150+
pView->Zoom(1.15);
151+
else
152+
pView->Zoom(0.85);
153+
pView->refresh();
154+
}break;
155+
case ZOOMWINDOW :{
156+
QMouseEvent *e = (QMouseEvent*)event;
157+
158+
if (event_type == MOUSE_PRESS)
159+
{ lastPos = e->pos(); pt = e->pos(); }
160+
if (event_type == MOUSE_MOVE && (e->buttons() & Qt::LeftButton))
161+
{
162+
float pnts[10];
163+
pnts[0]=(float)lastPos.x(); pnts[1]=(float)lastPos.y();;
164+
pnts[2]=(float)pt.x(); pnts[3]=(float)lastPos.y();
165+
pnts[4]=(float)pt.x(); pnts[5]=(float)pt.y();
166+
pnts[6]=(float)lastPos.x(); pnts[7]=(float)pt.y();
167+
pnts[8]=(float)lastPos.x(); pnts[9]=(float)lastPos.y();
168+
169+
// pView->draw_polyline_2d(5,pnts,false);
170+
// double xx, yy, zz;
171+
// glBegin(GL_LINE_STRIP);
172+
// glColor3f(0.75,0.75,0.75);
173+
// glLineWidth(10.0);
174+
// for(int i=0;i<10;i++) {
175+
// pView->screen_to_wcl(pnts[i*2],pnts[i*2+1],xx,yy,zz);
176+
// glVertex3d(xx,yy,zz);
177+
// }
178+
// glEnd();
179+
180+
// pView->m_drawPolylinePointNum = 5;
181+
// pView->m_drawPolylinePoints = new float[pView->m_drawPolylinePointNum*2];
182+
// for (int i=0; i<pView->m_drawPolylinePointNum*2; i++)
183+
// pView->m_drawPolylinePoints[i] = pnts[i];
184+
185+
for (int i=0; i<5; i++)
186+
pView->m_drawPolylinePoints << QPoint(pnts[2*i], pnts[2*i+1]);
187+
188+
pt = e->pos();
189+
pView->update();
190+
}
191+
if (event_type == MOUSE_RELEASE)
192+
{
193+
double cx,cy,xx,yy; int sx,sy;
194+
QPoint newpt;
195+
196+
float xR,yR,zR; float scale,sc;
197+
newpt = e->pos();
198+
cx = fabs(double(lastPos.x() - newpt.x())); cy = fabs(double(lastPos.y() - newpt.y()));
199+
if ((cx>0) && (cy>0))
200+
{
201+
pView->GetSize(sx,sy);
202+
scale=(float)(sx/cx); sc=(float)(sy/cy);
203+
if (sc<scale) scale=sc;
204+
pView->GetScale(sc); sc=sc*scale;
205+
if (sc<0.00001) sc=0.00001f;
206+
//if (sc > 500000.0) sc=500000.0;
207+
pView->SetScale(sc);
208+
//qDebug("scale %d %d %f %f %f",sx,sy,cx,cy,sc);
209+
float mappingScale=pView->m_MappingScale;
210+
211+
cx = (lastPos.x() + newpt.x())/2.0; cy = (lastPos.y() + newpt.y())/2.0;
212+
pView->GetTranslation(xR,yR,zR);
213+
pView->wcl_to_screen(0.0,0.0,0.0,xx,yy);
214+
xR -= (float)((cx-xx)*scale+xx-sx/2.0f)/mappingScale;
215+
yR += (float)((cy-yy)*scale+yy-sy/2.0f)/mappingScale;
216+
pView->SetTranslation(xR,yR,zR);
217+
218+
pView->ReShape(sx,sy);
219+
pView->refresh();
220+
m_ct=ORBITPAN;
221+
222+
// pView->m_drawPolylinePointNum = 0;
223+
// delete []pView->m_drawPolylinePoints;
224+
pView->m_drawPolylinePoints.clear();
225+
226+
}
227+
}
228+
}break;
229+
}
230+
return 0;
231+
}
232+
};
233+
234+
235+
#endif
236+

GLKLib/GLKGLList.h

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// GLKGLList.h: interface for the GLKGLList class.
2+
//
3+
//////////////////////////////////////////////////////////////////////
4+
5+
#ifndef _GLKGLLIST
6+
#define _GLKGLLIST
7+
8+
#include "GLKLib.h"
9+
#include "GLKObList.h"
10+
11+
class GLKGLList : public GLKObject
12+
{
13+
public:
14+
GLKGLList() {};
15+
virtual ~GLKGLList() {};
16+
virtual void draw(GLKLib *view) {};
17+
};
18+
19+
#endif

0 commit comments

Comments
 (0)