ARB
RNA3D_OpenGLEngine.cxx
Go to the documentation of this file.
1 #include "RNA3D_GlobalHeader.hxx"
2 #include "RNA3D_Global.hxx"
3 #include "RNA3D_OpenGLEngine.hxx"
6 #include "RNA3D_Textures.hxx"
7 #include "RNA3D_Renderer.hxx"
8 #include "RNA3D_Graphics.hxx"
9 #include "RNA3D_Interface.hxx"
10 
11 #include <iostream>
12 
13 #include <aw_root.hxx>
14 #include <aw_awars.hxx>
15 #include <BI_basepos.hxx>
16 
17 #include <GL/aw_window_ogl.hxx>
18 
19 // --------------------------------------------------------------------------------
20 // global data
21 
23 
25  if (!RNA3D) {
26  RNA3D = new RNA3D_Global(host);
27  }
28 }
29 
31  OpenGLEngineState = -1;
32  iRotateMolecule = 0;
33  bPointSpritesSupported = false;
34  bEColiRefInitialized = false;
35  bMapSaiDispListCreated = false;
36  bAutoRotate = false;
37  bRotateMolecule = false;
38  bDisplayMask = false;
39  bDisplayComments = false;
41 
42  ROTATION_SPEED = 0.5;
43  scale = 0.01;
44 
45  cGraphics = new OpenGLGraphics;
46  cStructure = new Structure3D(host);
47  cTexture = new Texture2D;
48  cRenderer = new GLRenderer;
49 
50  Viewer = Vector3(0.0, 0.0, -2);
51  Center = Vector3(0.0, 0.0, 0.0);
52  Up = Vector3(0.0, 1.0, 0.0);
53 }
54 
56  delete cGraphics;
57  delete cStructure;
58  delete cTexture;
59  delete cRenderer;
60 }
61 
62 // end of global data section
63 // --------------------------------------------------------------------------------
64 
65 static float fAspectRatio;
66 const float fViewAngle = 40.0;
67 const float fClipNear = 0.5f;
68 const float fClipFar = 100;
69 
70 static Display *dpy;
71 static GLXContext glx_context;
72 
73 static int DoubleBufferWithAlpha[] = { GLX_RGBA,
74  GLX_DEPTH_SIZE, 12,
75  GLX_RED_SIZE, 4,
76  GLX_GREEN_SIZE, 4,
77  GLX_BLUE_SIZE, 4,
78  GLX_ALPHA_SIZE, 4,
79  GLX_DOUBLEBUFFER,
80  None };
81 
82 static int DoubleBuffer[] = { GLX_RGBA,
83  GLX_DEPTH_SIZE, 12,
84  GLX_RED_SIZE, 4,
85  GLX_GREEN_SIZE, 4,
86  GLX_BLUE_SIZE, 4,
87  GLX_DOUBLEBUFFER,
88  None };
89 
90 static int SingleBuffer[] = { GLX_RGBA,
91  GLX_DEPTH_SIZE, 12,
92  GLX_RED_SIZE, 4,
93  GLX_GREEN_SIZE, 4,
94  GLX_BLUE_SIZE, 4,
95  None };
96 
97 static GLfloat rotation_matrix[16];
98 static GLfloat rot_x = 0.0, rot_y = 0.0;
99 
101 
102 static bool bMapSpDispListCreated = false;
103 static bool bCursorPosDispListCreated = false;
104 static bool bHelixNrDispListCreated = false;
105 
106 using namespace std;
107 
108 static void ShowVendorInformation() {
109  const GLubyte *vendor = NULp;
110  vendor = glGetString(GL_VENDOR); cout<<"Vendor : "<<vendor<<endl;
111  vendor = glGetString(GL_RENDERER); cout<<"Renderer: "<<vendor<<endl;
112  vendor = glGetString(GL_VERSION); cout<<"Version : "<<vendor<<endl;
113 }
114 
115 static void initExtensions() {
116  // check mandatory for extensions
117  char missingExtensions[500]="";
118  if (!GLEW_VERSION_1_2) {
119  strcat(missingExtensions, "\nOpenGL Version 1.2");
120  }
121  if (strlen(missingExtensions) > 0) {
122  GBK_terminatef("ERROR: Some needed extensions are not present:%s\n", missingExtensions);
123  }
124 
125 #ifdef DEBUG
126  printf("DEBUG: All mandatory extensions seem to be ok.\n");
127 #endif // DEBUG
128 
129  // the following code checks if point sprites could be used and activates them if possible
130  missingExtensions[0] = 0;
131  if (!GLEW_EXT_point_parameters) strcat(missingExtensions, "\nGL_EXT_point_parameters");
132  if (!GLEW_ARB_point_sprite) strcat(missingExtensions, "\nGL_ARB_point_sprite");
133  if (strlen(missingExtensions) > 0) {
134  printf("Some extra extensions are not present:%s\n", missingExtensions);
135  printf("Molecule Display: Quality of Rendering is LOW!!\n");
136  RNA3D->bPointSpritesSupported = false;
137  }
138  else {
139 #ifdef DEBUG
140  printf("DEBUG: All extra extensions seem to be ok as well.\n");
141 #endif // DEBUG
142  RNA3D->bPointSpritesSupported = true;
143  }
144 }
145 
146 void ReshapeOpenGLWindow(GLint width, GLint height) {
147  iScreenWidth = width;
148  iScreenHeight = height;
149 
150  fAspectRatio = (float) width / (float) height;
151 
152  glViewport(0, 0, width, height);
153  glMatrixMode(GL_PROJECTION);
154  glLoadIdentity();
155  gluPerspective(fViewAngle, fAspectRatio, fClipNear, fClipFar);
156  glMatrixMode(GL_MODELVIEW);
157  glLoadIdentity();
158 }
159 
160 static void CalculateRotationMatrix() {
161  static int initialized = 0;
162  GLfloat new_rotation_matrix[16];
163 
164  // calculate new rotation matrix
165  glPushMatrix();
166  glLoadIdentity();
167  glRotatef(-rot_x, 1.0, 0.0, 0.0);
168  glRotatef(rot_y, 0.0, 1.0, 0.0);
169  glGetFloatv(GL_MODELVIEW_MATRIX, new_rotation_matrix);
170  glPopMatrix();
171 
172  // calculate total rotation
173  glPushMatrix();
174  glLoadIdentity();
175  glMultMatrixf(new_rotation_matrix);
176  if (initialized) {
177  glMultMatrixf(rotation_matrix);
178  }
179 
180  glGetFloatv(GL_MODELVIEW_MATRIX, rotation_matrix);
181  initialized = 1;
182  glPopMatrix();
183 }
184 
185 void InitializeOpenGLEngine(GLint width, GLint height) {
186  cout<<"RNA3D: Initializing OpenGLEngine : "<<width<<" x "<<height<<endl;
187 
188  RNA3D->saved_x = RNA3D->saved_y = 2.0f;
189  ComputeRotationXY(1, 1);
190 
191  // Get Information about Vendor & Version
193 
194  GLenum err = glewInit();
195  if (GLEW_OK != err) {
196  // problem: glewInit failed, something is seriously wrong
197  fprintf(stderr, "Error: %s\n", glewGetErrorString(err));
198  }
199  fprintf(stdout, "Status: Using GLEW %s\n", glewGetString(GLEW_VERSION));
200 
201  initExtensions();
202 
203  // Prepare the structure Data and Generate Display Lists
204 
205  RNA3D->cStructure->ReadCoOrdinateFile(); // Reading Structure information
206  RNA3D->cStructure->GetSecondaryStructureInfo(); // Getting Secondary Structure Information
207  RNA3D->cStructure->Combine2Dand3DstructureInfo(); // Combining Secondary Structure data with 3D Coordinates
208 
209  RNA3D->cStructure->GenerateDisplayLists(); // Generating Display Lists for Rendering
210 
211  // Generate Textures
212  RNA3D->cTexture->LoadGLTextures(); // Load The Texture(s)
213 
214  glShadeModel(GL_SMOOTH);
215  glClearColor(0, 0, 0, 1);
216  glClearDepth(1.0f);
217 
218  glEnable(GL_DEPTH_TEST); // Enables Depth Testing
219  glDepthFunc(GL_LEQUAL); // The Type Of Depth Test To Do
220 
221  glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
222  glEnable(GL_TEXTURE_2D); // Enable Texture Mapping
223 
224  ReshapeOpenGLWindow(width, height);
225 
227 }
228 
229 void ComputeRotationXY(int x, int y) {
230  rot_y = (GLfloat)(x - RNA3D->saved_x) * RNA3D->ROTATION_SPEED;
231  rot_x = (GLfloat)(y - RNA3D->saved_y) * RNA3D->ROTATION_SPEED;
232  RNA3D->saved_x = x;
233  RNA3D->saved_y = y;
234 }
235 
236 static void update_HelixNrDispList() {
237  // update of DisplayLists for displaying Helix Numbers
238  GLRenderer *cRenderer = RNA3D->cRenderer;
239  Structure3D *cStructure = RNA3D->cStructure;
240 
241  if (!bHelixNrDispListCreated && (cRenderer->iHelixNrs || cRenderer->iHelixMidPoint)) {
242  cStructure->GenerateHelixNrDispList(cRenderer->iStartHelix, cRenderer->iEndHelix);
244  }
245 }
246 
248  GLRenderer *cRenderer = RNA3D->cRenderer;
249  Structure3D *cStructure = RNA3D->cStructure;
250 
251  // General Molecule Display Section
252  cRenderer->iBackBone = root->awar(AWAR_3D_MOL_BACKBONE)->read_int();
253  cRenderer->iColorise = root->awar(AWAR_3D_MOL_COLORIZE)->read_int();
254  cRenderer->fSkeletonSize = root->awar(AWAR_3D_MOL_SIZE)->read_float();
255  cRenderer->iDispPos = root->awar(AWAR_3D_MOL_DISP_POS)->read_int();
256  cStructure->iInterval = root->awar(AWAR_3D_MOL_POS_INTERVAL)->read_int();
257  cRenderer->iDispCursorPos = root->awar(AWAR_3D_CURSOR_POSITION)->read_int();
258  RNA3D->iRotateMolecule = root->awar(AWAR_3D_MOL_ROTATE)->read_int();
259 
260  // Display Bases Section
261  cRenderer->iDisplayBases = root->awar(AWAR_3D_DISPLAY_BASES)->read_int();
262  cRenderer->ObjectSize = root->awar(AWAR_3D_DISPLAY_SIZE)->read_float();
263  cRenderer->iBaseMode = root->awar(AWAR_3D_BASES_MODE)->read_int();
264  cRenderer->iBaseHelix = root->awar(AWAR_3D_BASES_HELIX)->read_int();
265  cRenderer->iBaseUnpairHelix = root->awar(AWAR_3D_BASES_UNPAIRED_HELIX)->read_int();
266  cRenderer->iBaseNonHelix = root->awar(AWAR_3D_BASES_NON_HELIX)->read_int();
267  cRenderer->iShapeHelix = root->awar(AWAR_3D_SHAPES_HELIX)->read_int();
268  cRenderer->iShapeUnpairHelix = root->awar(AWAR_3D_SHAPES_UNPAIRED_HELIX)->read_int();
269  cRenderer->iShapeNonHelix = root->awar(AWAR_3D_SHAPES_NON_HELIX)->read_int();
270 
271  // Display Helices Section
272  cRenderer->iDisplayHelix = root->awar(AWAR_3D_DISPLAY_HELIX)->read_int();
273  cRenderer->iHelixMidPoint = root->awar(AWAR_3D_HELIX_MIDPOINT)->read_int();
274  cRenderer->iHelixNrs = root->awar(AWAR_3D_HELIX_NUMBER)->read_int();
275  cRenderer->fHelixSize = root->awar(AWAR_3D_HELIX_SIZE)->read_float();
276  cRenderer->iHelixBackBone = root->awar(AWAR_3D_HELIX_BACKBONE)->read_int();
277  cRenderer->iStartHelix = root->awar(AWAR_3D_HELIX_FROM)->read_int();
278  cRenderer->iEndHelix = root->awar(AWAR_3D_HELIX_TO)->read_int();
279  cRenderer->iDispTerInt = root->awar(AWAR_3D_DISPLAY_TERTIARY_INTRACTIONS)->read_int();
280 
281  // Mapping Sequence Data Section
282  cStructure->iMapSAI = root->awar(AWAR_3D_MAP_SAI)->read_int();
283  cStructure->iMapSearch = root->awar(AWAR_3D_MAP_SEARCH_STRINGS)->read_int();
284  cStructure->iMapEnable = root->awar(AWAR_3D_MAP_ENABLE)->read_int();
285  cRenderer->iMapSpecies = root->awar(AWAR_3D_MAP_SPECIES)->read_int();
286  cRenderer->iMapSpeciesBase = root->awar(AWAR_3D_MAP_SPECIES_DISP_BASE)->read_int();
287  cRenderer->iMapSpeciesPos = root->awar(AWAR_3D_MAP_SPECIES_DISP_POS)->read_int();
288  cRenderer->iMapSpeciesDels = root->awar(AWAR_3D_MAP_SPECIES_DISP_DELETIONS)->read_int();
289  cRenderer->iMapSpeciesMiss = root->awar(AWAR_3D_MAP_SPECIES_DISP_MISSING)->read_int();
290  cRenderer->iMapSpeciesIns = root->awar(AWAR_3D_MAP_SPECIES_DISP_INSERTIONS)->read_int();
291  cRenderer->iMapSpeciesInsInfo = root->awar(AWAR_3D_MAP_SPECIES_DISP_INSERTIONS_INFO)->read_int();
292 
293  // force valid helix range (in case something is wrong with AWAR values)
294  cRenderer->fixInvalidHelixPositions(cStructure->calc_helix_count());
296 
297  // Validation of Base Position display
298  if (cStructure->iInterval < 1) {
299  cout<<"WARNING: Invalid POSITION Interval!! Setting it to Default Value (25)."<<endl;
301  }
302 
303  if (cStructure->iMapEnable) {
304  if (cStructure->iMapSearch) {
305  if (!RNA3D->bMapSearchStringsDispListCreated) {
306  cStructure->MapSearchStringsToEcoliTemplate(root);
307  }
308  }
309  if (cStructure->iMapSAI) {
310  if (!RNA3D->bMapSaiDispListCreated) {
311  cStructure->MapSaiToEcoliTemplate();
312  }
313  }
314  if (!bMapSpDispListCreated) {
315  cStructure->MapCurrentSpeciesToEcoliTemplate(root);
316  bMapSpDispListCreated = true;
317  }
318  }
319 }
320 
321 
324  glDeleteLists(STRUCTURE_POS, 2);
327 }
328 
330 
331  // If Selected Species (in Primary Editor) changed and
332  // the MapSpecies display lists created then,
333  // 1. Delete the display lists;
334  // 2. Recalculate the Display lists for current species;
335  // 3. Map it to EColi Template;
336 
337  if (RNA3D->cStructure->iMapEnable &&
338  RNA3D->cRenderer->iMapSpecies &&
340  {
341  glDeleteLists(MAP_SPECIES_BASE_DIFFERENCE, 9);
343  }
344 
345  // If selected species changed then regenerate the SearchStrings DisplayList
347 
349 }
350 
352  // if SAI changed in EDIT4 then display lists should be recalculated
353 
354  if (RNA3D->cStructure->iMapEnable &&
355  RNA3D->cStructure->iMapSAI &&
356  RNA3D->bMapSaiDispListCreated)
357  {
358  RNA3D->bMapSaiDispListCreated = false;
359  glDeleteLists(MAP_SAI_TO_STRUCTURE, 1);
361  }
362 
364 }
365 
367 
368  // If selected species changed then regenerate the
369  // SearchStrings DisplayList
370 
371  if (RNA3D->cStructure->iMapEnable &&
372  RNA3D->cStructure->iMapSearch &&
374  {
375  RNA3D->bMapSearchStringsDispListCreated = false;
376  glDeleteLists(MAP_SEARCH_STRINGS_TO_STRUCTURE, 2);
378  }
379 }
380 
382 
383  if (RNA3D->bEColiRefInitialized) {
384  long iCursorPos = awr->awar(AWAR_CURSOR_POSITION)->read_int();
385  long EColiPos = RNA3D->cStructure->EColiRef->abs_2_rel(iCursorPos); // @@@ calls abs_2_rel with biopos (1..N)! this is wrong
386 
388  RNA3D->cStructure->GenerateCursorPositionDispList(EColiPos);
389  bMapSpDispListCreated = true;
390  }
391  else {
392  glDeleteLists(ECOLI_CURSOR_POSITION, 1);
393  RNA3D->cStructure->GenerateCursorPositionDispList(EColiPos);
394  }
396  }
397 }
398 
399 void DisplayHelixNrsChanged_CB(AW_root *awr, bool upper_limit_changed) {
400  AW_awar *awar_lower = awr->awar(AWAR_3D_HELIX_FROM);
401  AW_awar *awar_upper = awr->awar(AWAR_3D_HELIX_TO);
402  long NoOfHelices = RNA3D->cStructure->calc_helix_count();
403 
404  if (upper_limit_changed) {
405  awar_upper->write_int(force_in_range(1L, awar_upper->read_int(), NoOfHelices));
406  awar_lower->write_int(force_in_range(1L, awar_lower->read_int(), awar_upper->read_int()));
407  }
408  else {
409  awar_lower->write_int(force_in_range(1L, awar_lower->read_int(), NoOfHelices));
410  awar_upper->write_int(force_in_range(awar_lower->read_int(), awar_upper->read_int(), NoOfHelices));
411  }
412 
413  if (bHelixNrDispListCreated) { // force update (done by MapDisplayParameters below)
414  glDeleteLists(HELIX_NUMBERS, 2);
415  bHelixNrDispListCreated = false;
416  }
418 
420 }
421 
422 static void DrawStructure() {
423  GLRenderer *cRenderer = RNA3D->cRenderer;
424 
425  // Drawing Molecule Skeleton
426  cRenderer->DisplayMolecule(RNA3D->cStructure);
427 
428  // Mapping Helices to The molecule
429  cRenderer->DoHelixMapping();
430 
431  // Texture Mapping
432  cRenderer->BeginTexturizer();
433  cRenderer->TexturizeStructure(RNA3D->cTexture, RNA3D->cStructure);
434  cRenderer->EndTexturizer();
435 }
436 
438  glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
439 
440  // setting the BackGround Color of the OpenGL Scene
441  RNA3D->cGraphics->SetOpenGLBackGroundColor();
442 
443  glLoadIdentity();
444 
445  gluLookAt(RNA3D->Viewer.x, RNA3D->Viewer.y, RNA3D->Viewer.z,
446  RNA3D->Center.x, RNA3D->Center.y, RNA3D->Center.z,
447  RNA3D->Up.x, RNA3D->Up.y, RNA3D->Up.z);
448 
449  { // Displaying Molecule Name
450  RNA3D->cRenderer->DisplayMoleculeName(iScreenWidth, iScreenHeight, RNA3D->cStructure);
451  }
452 
453  glScalef(RNA3D->scale, RNA3D->scale, RNA3D->scale);
454 
455  RNA3D->cRenderer->DisplayMoleculeMask(iScreenWidth, iScreenHeight);
456 
457  if (RNA3D->bRotateMolecule || RNA3D->bAutoRotate) {
459  }
460 
461  glMultMatrixf(rotation_matrix);
462 
463  Vector3& strCen = *RNA3D->cStructure->strCen;
464  glTranslatef(-strCen.x, -strCen.y, -strCen.z);
465 
466  DrawStructure();
467 
468  glFlush();
469  glXWaitX();
470  glXSwapBuffers (XtDisplay(w), XtWindow(w));
471 }
472 
474 
475  if (RNA3D->OpenGLEngineState == CREATED) return;
476 
477  Arg args[1];
478  XVisualInfo *vi;
479 
480  XtSetArg(args[0], (char *) GLwNvisualInfo, &vi);
481  XtGetValues(w, args, 1);
482 
483  dpy = XtDisplay(w);
484  if (!dpy) {
485  fprintf(stderr, "could not open display\n");
486  }
487  else {
489  vi = glXChooseVisual(dpy, DefaultScreen(dpy), DoubleBufferWithAlpha);
490  printf("RNA3D: Double Buffered Visual With Alpha Size Supported !\n");
491  }
492  else {
493  vi = glXChooseVisual(dpy, DefaultScreen(dpy), DoubleBuffer);
494  printf("RNA3D: Double Buffered Visual Supported !\n");
495  }
496 
497  if (!vi) {
498  fprintf(stderr, "try to get a single buffered visual\n");
499  vi = glXChooseVisual(dpy, DefaultScreen(dpy), SingleBuffer);
500  if (!vi)
501  fprintf(stderr, "could not get visual\n");
502  }
503  else {
504  glx_context = glXCreateContext(dpy, vi, NULp, GL_TRUE);
505  if (!glXIsDirect(dpy, glx_context))
506  fprintf(stderr, "direct rendering not supported\n");
507  else
508  printf("RNA3D: Direct rendering supported\n");
509 
511 
512  RNA3D->glw = w;
513 
514  RNA3D->OpenGLEngineState = CREATED;
515 
516  // Initializing fonts
517  char fontName[] = "fixed";
518  RNA3D->cGraphics->InitMainFont(fontName);
519  }
520  }
521 }
#define AWAR_3D_MAP_SEARCH_STRINGS
void CursorPositionChanged_CB(AW_root *awr)
static void update_HelixNrDispList()
Texture2D * cTexture
static bool bHelixNrDispListCreated
#define AWAR_3D_SHAPES_UNPAIRED_HELIX
static char * y[maxsp+1]
#define AWAR_3D_MOL_BACKBONE
Structure3D * cStructure
static bool bMapSpDispListCreated
#define AWAR_3D_MAP_SPECIES_DISP_BASE
void MapSearchStringsToEcoliTemplate(AW_root *awr)
static GLfloat rot_x
#define AWAR_CURSOR_POSITION
static int SingleBuffer[]
#define AWAR_3D_MOL_ROTATE
void GLwDrawingAreaMakeCurrent(Widget w, GLXContext ctx)
Definition: GLwDrawA.c:607
bool AW_alpha_Size_Supported
#define AWAR_3D_MOL_SIZE
void RefreshOpenGLDisplay()
long read_int() const
Definition: AW_awar.cxx:184
void ReshapeOpenGLWindow(GLint width, GLint height)
#define AWAR_3D_MAP_SPECIES
static GLXContext glx_context
#define AWAR_3D_HELIX_TO
void DisplayPostionsIntervalChanged_CB(AW_root *awr)
void GBK_terminatef(const char *templat,...)
Definition: arb_msg.cxx:523
STL namespace.
#define AWAR_3D_MOL_COLORIZE
#define AWAR_3D_HELIX_FROM
#define AWAR_3D_MAP_SPECIES_DISP_POS
void GenerateHelixNrDispList(int startHx, int endHx)
static GLfloat rot_y
#define AWAR_3D_CURSOR_POSITION
float ROTATION_SPEED
void MapCurrentSpeciesToEcoliTemplate(AW_root *awr)
static void initExtensions()
#define AWAR_3D_SHAPES_HELIX
bool bEColiRefInitialized
#define AWAR_3D_MAP_SPECIES_DISP_MISSING
static bool initialized
Definition: AW_advice.cxx:36
#define AWAR_3D_DISPLAY_TERTIARY_INTRACTIONS
#define AWAR_3D_MAP_ENABLE
int abs_2_rel(int abs) const
Definition: BI_basepos.hxx:76
static int DoubleBufferWithAlpha[]
#define GLwNvisualInfo
Definition: GLwDrawA.h:85
#define AWAR_3D_MAP_SPECIES_DISP_INSERTIONS
#define AWAR_3D_BASES_HELIX
static int iScreenHeight
#define AWAR_3D_DISPLAY_HELIX
CONSTEXPR_INLINE const T & force_in_range(const T &lower_bound, const T &value, const T &upper_bound)
Definition: arb_algo.h:20
static void CalculateRotationMatrix()
void MapSelectedSpeciesChanged_CB(AW_root *awr)
#define AWAR_3D_BASES_NON_HELIX
const float fClipFar
#define AWAR_3D_DISPLAY_BASES
#define AWAR_3D_MOL_POS_INTERVAL
bool bMapSearchStringsDispListCreated
void InitializeOpenGLWindow(Widget w)
#define AWAR_3D_MAP_SPECIES_DISP_INSERTIONS_INFO
static GLfloat rotation_matrix[16]
#define AWAR_3D_MAP_SPECIES_DISP_DELETIONS
bool bMapSaiDispListCreated
void GenerateCursorPositionDispList(long pos)
static Display * dpy
AW_awar * awar(const char *awar)
Definition: AW_root.cxx:554
#define AWAR_3D_HELIX_NUMBER
#define AWAR_3D_HELIX_MIDPOINT
void ComputeRotationXY(int x, int y)
#define AWAR_3D_MOL_DISP_POS
static void DrawStructure()
void RNA3D_init_global_data(ED4_plugin_host &host)
float read_float() const
Definition: AW_awar.cxx:177
const float fViewAngle
void DisplayHelixNrsChanged_CB(AW_root *awr, bool upper_limit_changed)
GLRenderer * cRenderer
#define AWAR_3D_DISPLAY_SIZE
void MapSaiToEcoliTemplateChanged_CB(AW_root *)
void InitializeOpenGLEngine(GLint width, GLint height)
#define AWAR_3D_SHAPES_NON_HELIX
const float fClipNear
void MapSearchStringsToEcoliTemplateChanged_CB(AW_root *awr)
#define AWAR_3D_HELIX_SIZE
void RenderOpenGLScene(Widget w)
static int DoubleBuffer[]
#define AWAR_3D_BASES_UNPAIRED_HELIX
RNA3D_Global(ED4_plugin_host &host)
void MapDisplayParameters(AW_root *root)
static void ShowVendorInformation()
bool bPointSpritesSupported
#define NULp
Definition: cxxforward.h:116
#define CREATED
static int iScreenWidth
void GetSecondaryStructureInfo()
BI_ecoli_ref * EColiRef
#define AWAR_3D_HELIX_BACKBONE
#define AWAR_3D_MAP_SAI
OpenGLGraphics * cGraphics
void Combine2Dand3DstructureInfo()
static bool bCursorPosDispListCreated
GB_ERROR write_int(long aw_int)
struct _WidgetRec * Widget
Definition: aw_base.hxx:48
RNA3D_Global * RNA3D
static float fAspectRatio
#define AWAR_3D_BASES_MODE