50#include <X11/Xmu/StdCmap.h>
76#define NewString(str) \
77 ((str) != 0 ? (strncpy((char*)malloc((unsigned)strlen(str) + 1), str, (unsigned)strlen(str) + 1)) : (char*)0)
79#define USE_DEFAULT_COLORMAP 1
80#define USE_STANDARD_COLORMAP 0
86 static Bool G4OpenGLXViewerWaitForNotify (Display*, XEvent* e,
char* arg) {
87 return (e->type == MapNotify) && (e->xmap.window == (Window) arg);
108 if (
fVP.IsPicking()) {
110 "Window activated for picking (left-mouse), exit (middle-mouse)."
115 if (
event.type == ButtonPress &&
event.xbutton.button == 1) {
118 else if (
event.type == ButtonPress &&
event.xbutton.button == 2)
break;
120 std::this_thread::sleep_for(std::chrono::milliseconds(100));
127#ifdef G4MULTITHREADED
135#ifdef G4MULTITHREADED
144 dpy = XOpenDisplay (0);
147 G4cerr <<
"G4OpenGLXViewer::G4OpenGLXViewer couldn't open display." <<
G4endl;
154 G4cerr <<
"G4OpenGLXViewer::G4OpenGLXViewer X Server has no GLX extension."
165 if (!XGetWindowAttributes(
dpy, XRootWindow (
dpy,
vi -> screen), &
xwa)) {
167 G4cerr <<
"G4OpenGLXViewer::G4OpenGLXViewer couldn't return window attributes"
176 G4cerr <<
"G4OpenGLXViewer::G4OpenGLXViewer couldn't create context."
186 status = XmuLookupStandardColormap (
dpy,
196 XStandardColormap* standardCmaps = XAllocStandardColormap ();
197 status = XGetRGBColormaps (
dpy,
198 XRootWindow (
dpy,
vi -> screen),
203 for (i = 0; i < numCmaps; i++) {
204 if (standardCmaps[i].visualid ==
vi -> visualid) {
205 cmap = standardCmaps[i].colormap;
210 XFree (standardCmaps);
219 XRootWindow(
dpy,
vi -> screen),
230 XRootWindow(
dpy,
vi -> screen),
243 G4cout <<
"G4OpenGLXViewer::G4OpenGLXViewer failed to allocate a Colormap."
254 swa.border_pixel = 0;
255 swa.event_mask = ExposureMask | ButtonPressMask | StructureNotifyMask;
256 swa.backing_store = WhenMapped;
263 G4int x_origin =
fVP.GetWindowAbsoluteLocationHintX(DisplayWidth(
dpy,
vi -> screen));
267 G4int y_origin =
fVP.GetWindowAbsoluteLocationHintY(DisplayHeight(
dpy,
vi -> screen));
273 if (
fVP.IsWindowSizeHintX () &&
fVP.IsWindowLocationHintX () &&
fVP.IsWindowLocationHintY ()) {
275 }
else if (
fVP.IsWindowSizeHintX () && !(
fVP.IsWindowLocationHintX () ||
fVP.IsWindowLocationHintY ())) {
277 }
else if ((!
fVP.IsWindowSizeHintX ()) &&
fVP.IsWindowLocationHintX () &&
fVP.IsWindowLocationHintY ()) {
289 XStringListToTextProperty (&window_name, 1, &
windowName);
290 XStringListToTextProperty (&icon_name, 1, &
iconName);
292 wm_hints -> initial_state = NormalState;
295 wm_hints -> flags = StateHint | IconPixmapHint | InputHint;
300 win = XCreateWindow (
dpy, XRootWindow (
dpy,
vi -> screen), x_origin,
302 InputOutput,
vi -> visual,
303 CWBorderPixel | CWColormap |
304 CWEventMask | CWBackingStore,
314 XIfEvent (
dpy, &
event, G4OpenGLXViewerWaitForNotify, (
char*)
win);
320 G4cerr <<
"G4OpenGLXViewer::G4OpenGLXViewer failed to attach a GLX context."
322 GLint error = GL_NO_ERROR;
323 while ((error = glGetError()) != GL_NO_ERROR) {
325 case GL_INVALID_ENUM :
327 case GL_INVALID_VALUE :
329 case GL_INVALID_OPERATION :
330 G4cout <<
"GL Error: GL_INVALID_OPERATION" <<
G4endl;
break;
331 case GL_OUT_OF_MEMORY :
333 case GL_STACK_UNDERFLOW :
334 G4cout <<
"GL Error: GL_STACK_UNDERFLOW" <<
G4endl;
break;
335 case GL_STACK_OVERFLOW :
336 G4cout <<
"GL Error: GL_STACK_OVERFLOW" <<
G4endl;
break;
347 std::map<G4double,G4String> fonts;
348 fonts[10.] =
"-adobe-courier-bold-r-normal--10-100-75-75-m-60-iso8859-1";
349 fonts[11.] =
"-adobe-courier-bold-r-normal--11-80-100-100-m-60-iso8859-1";
350 fonts[12.] =
"-adobe-courier-bold-r-normal--12-120-75-75-m-70-iso8859-1";
351 fonts[13.] =
"fixed";
352 fonts[14.] =
"-adobe-courier-bold-r-normal--14-100-100-100-m-90-iso8859-1";
353 fonts[17.] =
"-adobe-courier-bold-r-normal--17-120-100-100-m-100-iso8859-1";
354 fonts[18.] =
"-adobe-courier-bold-r-normal--18-180-75-75-m-110-iso8859-1";
355 fonts[20.] =
"-adobe-courier-bold-r-normal--20-140-100-100-m-110-iso8859-1";
356 fonts[24.] =
"-adobe-courier-bold-r-normal--24-240-75-75-m-150-iso8859-1";
357 fonts[25.] =
"-adobe-courier-bold-r-normal--25-180-100-100-m-150-iso8859-1";
358 fonts[34.] =
"-adobe-courier-bold-r-normal--34-240-100-100-m-200-iso8859-1";
359 std::map<G4double,G4String>::const_iterator i;
360 for (i = fonts.begin(); i != fonts.end(); ++i) {
361 XFontStruct* font_info = XLoadQueryFont(
dpy, i->second);
364 "G4OpenGLXViewer::CreateFontLists XLoadQueryFont failed for font\n "
369 G4int font_base = glGenLists(256);
372 "G4OpenGLXViewer::CreateFontLists out of display lists for fonts."
376 G4int first = font_info->min_char_or_byte2;
377 G4int last = font_info->max_char_or_byte2;
378 glXUseXFont(font_info->fid, first, last-first+1, font_base + first);
379 G4int width = font_info->max_bounds.width;
381 (
this, font_base, i->first, i->second, width);
399 static G4int callCount = 0;
402 if (callCount <= 1) {
404 "G4OpenGLXViewer::DrawText: No fonts available for \""
419 const char* textCString = textString.c_str();
424 glPushAttrib(GL_LIST_BIT);
440 glBitmap(0,0,0,0,xmove,ymove,0);
444 glCallLists((
G4int)strlen(textCString),GL_UNSIGNED_BYTE,(GLubyte*)textCString);
483 "G4OpenGLXViewer::G4OpenGLXViewer: unable to get a double buffer visual."
484 "\n Working with a single buffer."
490 "G4OpenGLXViewer::G4OpenGLXViewer: unable to get a single buffer visual."
495 "G4OpenGLXViewer::G4OpenGLXViewer: unable to get a double buffer visual."
522 "G4OpenGLXViewer::G4OpenGLXViewer: unable to get required visuals."
534 glXMakeCurrent (
dpy, None, NULL);
HepGeom::Point3D< G4double > G4Point3D
G4GLOB_DLL std::ostream G4cerr
G4GLOB_DLL std::ostream G4cout
G4double GetAlpha() const
G4double GetGreen() const
static void AddFontBase(G4VViewer *, G4int fontBase, G4double size, const G4String &fontName, G4int width)
static const FontInfo & GetFontInfo(G4VViewer *, G4double size)
friend class G4OpenGLSceneHandler
unsigned int getWinHeight() const
void ResizeWindow(unsigned int, unsigned int)
unsigned int getWinWidth() const
G4OpenGLViewer(G4OpenGLSceneHandler &scene)
virtual void DrawText(const G4Text &)
virtual G4String Pick(GLdouble x, GLdouble y)
static int snglBuf_RGBA[12]
static int dblBuf_RGBA[13]
virtual ~G4OpenGLXViewer()
static XVisualInfo * vi_double_buffer
void CreateGLXContext(XVisualInfo *vi)
virtual void CreateFontLists()
void SwitchToMasterThread()
GLXContext cxVisSubThread
void DrawText(const G4Text &)
static XVisualInfo * vi_single_buffer
void SwitchToVisSubThread()
XVisualInfo * vi_immediate
G4OpenGLXViewer(G4OpenGLSceneHandler &scene)
virtual void CreateMainWindow()
G4double GetYOffset() const
G4double GetXOffset() const
G4Point3D GetPosition() const
G4VSceneHandler & fSceneHandler
G4VViewer(G4VSceneHandler &, G4int id, const G4String &name="")
static Verbosity GetVerbosity()