-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
SimpleOpenGLImmediateQtViewer.cpp
348 lines (278 loc) · 9.46 KB
/
SimpleOpenGLImmediateQtViewer.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
// File modified by Deepak Samuel on 25 Sep 2019
//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
//
// Class SimpleOpenGLImmediateQtViewer : a class derived from G4OpenGLQtViewer and
// G4OpenGLImmediateViewer.
#include "SimpleOpenGLImmediateQtViewer.h"
#include "G4OpenGLImmediateSceneHandler.hh"
#include "G4ios.hh"
#ifdef G4MULTITHREADED
#include "G4Threading.hh"
#endif
#include <qapplication.h>
#include <qtabwidget.h>
#ifdef G4OPENGL_VERSION_2
#include <qglshaderprogram.h>
#endif
SimpleOpenGLImmediateQtViewer::SimpleOpenGLImmediateQtViewer
(G4OpenGLImmediateSceneHandler& sceneHandler,
const G4String& name):
G4VViewer (sceneHandler, sceneHandler.IncrementViewCount (), name),
G4OpenGLViewer (sceneHandler),
SimpleOpenGLQtViewer (sceneHandler),
G4OpenGLImmediateViewer (sceneHandler)
{
fQGLWidgetInitialiseCompleted = false;
setFocusPolicy(Qt::StrongFocus); // enable keybord events
fHasToRepaint = false;
fPaintEventLock = false;
// Create a new drawer
// register the QtDrawer to the OpenGLViewer
#ifdef G4OPENGL_VERSION_2
setVboDrawer(new G4OpenGLVboDrawer(this,"OGL-VBO"));
#endif
fUpdateGLLock = false;
if (fViewId < 0) return; // In case error in base class instantiation.
}
SimpleOpenGLImmediateQtViewer::~SimpleOpenGLImmediateQtViewer() {
makeCurrent();
}
void SimpleOpenGLImmediateQtViewer::Initialise() {
makeCurrent();
fQGLWidgetInitialiseCompleted = false;
CreateMainWindow (this,QString(GetName()));
glDrawBuffer (GL_BACK);
// set the good tab active
if (QGLWidget::parentWidget()) {
QTabWidget *parentTab = dynamic_cast<QTabWidget*> (QGLWidget::parentWidget()->parent()) ;
if (parentTab) {
parentTab->setCurrentIndex(parentTab->count()-1);
}
}
fQGLWidgetInitialiseCompleted = true;
}
void SimpleOpenGLImmediateQtViewer::initializeGL () {
#ifndef G4OPENGL_VERSION_2
InitializeGLView ();
#else
QGLShaderProgram *aQGLShaderProgram = new QGLShaderProgram (context());
fShaderProgram = aQGLShaderProgram->programId ();
aQGLShaderProgram->addShaderFromSourceCode(QGLShader::Vertex,
fVboDrawer->getVertexShaderSrc());
aQGLShaderProgram->addShaderFromSourceCode(QGLShader::Fragment,
fVboDrawer->getFragmentShaderSrc());
aQGLShaderProgram->link();
aQGLShaderProgram->bind();
fVertexPositionAttribute = glGetAttribLocation(fShaderProgram, "aVertexPosition");
fcMatrixUniform = glGetUniformLocation(fShaderProgram, "uCMatrix");
fpMatrixUniform = glGetUniformLocation(fShaderProgram, "uPMatrix");
ftMatrixUniform = glGetUniformLocation(fShaderProgram, "uTMatrix");
fmvMatrixUniform = glGetUniformLocation(fShaderProgram, "uMVMatrix");
// Load identity at beginning
float identity[16] = {
1.0f, 0, 0, 0,
0, 1.0f, 0, 0,
0, 0, 1.0f, 0,
0, 0, 0, 1.0f
};
glUniformMatrix4fv (fcMatrixUniform, 1, 0, identity);
glUniformMatrix4fv (fpMatrixUniform, 1, 0, identity);
glUniformMatrix4fv (ftMatrixUniform, 1, 0, identity);
glUniformMatrix4fv(fmvMatrixUniform, 1, 0, identity);
glUseProgram(fShaderProgram);
setInitialized(); // Should be removed when fuse Wt and Qt
#endif
// If a double buffer context has been forced upon us, ignore the
// back buffer for this OpenGLImmediate view.
// glDrawBuffer (GL_FRONT); // FIXME : Ne marche pas avec cette ligne, mais affiche le run correctement...
if (fSceneHandler.GetScene() == 0) {
fHasToRepaint =false;
} else {
fHasToRepaint =true;
}
// Set the component visible
// and update it immediatly before wait for SessionStart() (batch mode)
// QCoreApplication::sendPostedEvents () ;
}
void SimpleOpenGLImmediateQtViewer::DrawView() {
#ifdef G4MULTITHREADED
if (G4Threading::G4GetThreadId() == G4Threading::MASTER_ID) {
updateQWidget();
}
#else
updateQWidget();
#endif
}
void SimpleOpenGLImmediateQtViewer::ComputeView () {
makeCurrent();
// If a double buffer context has been forced upon us, ignore the
// back buffer for this OpenGLImmediate view.
// glDrawBuffer (GL_FRONT);
G4ViewParameters::DrawingStyle dstyle = GetViewParameters().GetDrawingStyle();
if(dstyle!=G4ViewParameters::hlr &&
haloing_enabled) {
HaloingFirstPass ();
NeedKernelVisit ();
ProcessView ();
FinishView();
HaloingSecondPass ();
}
NeedKernelVisit (); // Always need to visit G4 kernel.
ProcessView ();
if (isRecording()) {
savePPMToTemp();
}
fHasToRepaint = true;
}
/**
- Lors du resize de la fenetre, on doit non pas redessiner le detecteur, mais aussi les evenements
*/
void SimpleOpenGLImmediateQtViewer::resizeGL(
int aWidth
,int aHeight)
{
if ((aWidth > 0) && (aHeight > 0)) {
ResizeWindow(aWidth,aHeight);
fHasToRepaint = sizeHasChanged();
}
}
void SimpleOpenGLImmediateQtViewer::paintGL()
{
updateToolbarAndMouseContextMenu();
if (fPaintEventLock) {
// return ;
}
if (!fQGLWidgetInitialiseCompleted) {
fPaintEventLock = false;
return;
}
if ((getWinWidth() == 0) && (getWinHeight() == 0)) {
return;
}
// DO NOT RESIZE IF SIZE HAS NOT CHANGE
if ( !fHasToRepaint) {
// L. Garnier : Trap to get the size with mac OSX 10.6 and Qt 4.6(devel)
// Tested on Qt4.5 on mac, 4.4 on windows, 4.5 on unbuntu
int sw = 0;
int sh = 0;
if (!isMaximized() && !isFullScreen()) {
sw = normalGeometry().width();
sh = normalGeometry().height();
} else {
sw = frameGeometry().width();
sh = frameGeometry().height();
}
if ((getWinWidth() == (unsigned int)sw) &&(getWinHeight() == (unsigned int)sh)) {
return;
} else if ((sw == 0) && (sh == 0)) { // NOT A TOP LEVEL WIDGET
if (((getWinWidth() == (unsigned int)width())) &&(getWinHeight() == (unsigned int) height())) {
return;
}
}
}
SetView();
ClearView (); //ok, put the background correct
ComputeView();
fHasToRepaint = false; // could be set to false by ComputeView
fPaintEventLock = false;
}
void SimpleOpenGLImmediateQtViewer::mousePressEvent(QMouseEvent *event)
{
G4MousePressEvent(event);
}
void SimpleOpenGLImmediateQtViewer::keyPressEvent (QKeyEvent * event)
{
G4keyPressEvent(event);
}
void SimpleOpenGLImmediateQtViewer::keyReleaseEvent (QKeyEvent * event)
{
G4keyReleaseEvent(event);
}
void SimpleOpenGLImmediateQtViewer::wheelEvent (QWheelEvent * event)
{
G4wheelEvent(event);
}
void SimpleOpenGLImmediateQtViewer::showEvent (QShowEvent *)
{
if (fQGLWidgetInitialiseCompleted) {
fHasToRepaint = true;
}
}
/**
* This function was build in order to make a zoom on double clic event.
* It was think to build a rubberband on the zoom area, but never work fine
*/
void SimpleOpenGLImmediateQtViewer::mouseDoubleClickEvent(QMouseEvent *)
{
G4MouseDoubleClickEvent();
}
void SimpleOpenGLImmediateQtViewer::mouseReleaseEvent(QMouseEvent *event)
{
G4MouseReleaseEvent(event);
}
void SimpleOpenGLImmediateQtViewer::mouseMoveEvent(QMouseEvent *event)
{
G4MouseMoveEvent(event);
}
void SimpleOpenGLImmediateQtViewer::contextMenuEvent(QContextMenuEvent *e)
{
G4manageContextMenuEvent(e);
}
void SimpleOpenGLImmediateQtViewer::paintEvent(QPaintEvent *) {
if (! fQGLWidgetInitialiseCompleted) {
return;
}
// Force a repaint next time if the FRAMEBUFFER is not READY
fHasToRepaint = isFramebufferReady();
if ( fHasToRepaint) {
updateGL();
}
}
void SimpleOpenGLImmediateQtViewer::updateQWidget() {
if (fUpdateGLLock) {
return;
}
if (! isCurrentWidget()){
return;
}
fUpdateGLLock = true;
fHasToRepaint= true;
repaint();
updateViewerPropertiesTableWidget();
updateSceneTreeWidget();
fUpdateGLLock= false;
}
void SimpleOpenGLImmediateQtViewer::ShowView (
)
//////////////////////////////////////////////////////////////////////////////
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!//
{
fHasToRepaint = true;
activateWindow();
}