Fork me on GitHub

source: svn/trunk/Utilities/FROG/main.h@ 99

Last change on this file since 99 was 95, checked in by severine ovyn, 16 years ago

first commit frog

File size: 3.4 KB
Line 
1
2// main.h
3//
4//////////////////////////////////////////////////////////////////////
5
6#ifndef _MAIN_H__
7#define _MAIN_H__
8
9#define FROG_VERSION 1.105
10#define FROG_AUTHORLIST "Loic.Quertenmont@cern.ch\nVincent.Roberfroid@cern.ch"
11
12#include "Includes/GL/glew.h"
13#ifdef linux
14 #include "Includes/GL/glxew.h"
15 #include <GL/gl.h>
16 #include <GL/glu.h>
17 #include "Includes/GLUT/glut.h"
18#elif macos
19 #include "Includes/GL/glxew.h"
20 #include <OpenGL/gl.h>
21 #include <OpenGL/glu.h>
22 #include <GLUT/glut.h>
23#else
24 #include <windows.h>
25 #include <atlconv.h>
26 #include "Includes/GL/wglew.h"
27 #include <gl/gl.h>
28 #include <gl/glu.h>
29 #include <gl/glut.h>
30 #pragma comment (lib,"glaux.lib")
31 #pragma comment (lib,"glu32.lib")
32 #pragma comment (lib,"opengl32.lib")
33 #pragma comment (lib,"glut.lib")
34 #pragma comment (lib,"glut32.lib")
35 #pragma comment (lib,"Includes/CURL/Lib/libcurl.lib")
36 #pragma comment (lib,"Includes/ZLIB/Lib/zdll.lib")
37
38#endif
39
40 bool SCREENSAVER = false;
41 bool SHOOTER = false;
42
43#include <time.h>
44time_t start;
45time_t end;
46
47#include <stdio.h>
48#include <math.h>
49
50#include "Includes/FROG/FROG_Objects.h"
51#include "Includes/FROG/FROG_Events.h"
52#include "Includes/FROG/FROG_Geometry.h"
53
54#include "Includes/FROG/FROG_Fonts.h"
55#include "Includes/FROG/FROG_Element_Tools.h"
56
57#include "Includes/FROG/FROG_Texture.h"
58#include "Includes/FROG/FROG_ReadCards.h"
59#include "Includes/FROG/FROG_Net_Tools.h"
60#include "Includes/FROG/FROG_View_Tools.h"
61
62FROG_Fonts* Fonts;
63FROG_ReadCards* Card;
64FROG_Objects_Extended* frogObjects_;
65
66std::vector<FROG_View*> ActiveViews;
67FROG_View_Screen* ViewScreen;
68FROG_View* ViewMain;
69FROG_View_Menu* ViewMenu;
70
71int SAVE_WINDOW_W = 800;
72int SAVE_WINDOW_H = 600;
73int SAVE_WINDOW_X = 10;
74int SAVE_WINDOW_Y = 10;
75
76
77bool FULLSCREEN = false;
78int WINDOW_WIDTH = 800;
79int WINDOW_HEIGHT = 600;
80int SCREENSHOT = 0;
81char SCREENSHOT_FORMAT[255] = {"png"};
82
83
84
85int TEMP_I = 0;
86bool MouseStates[3];
87
88GLuint LogoTexture;
89GLuint LogoTxtTexture;
90
91std::string inputVisFile;
92std::string inputVisFileFromCard;
93std::vector<std::string> inputGeom;
94
95// MultiThreading Variables
96#ifdef linux
97 pthread_t Thread_H;
98#elif macos
99 pthread_t Thread_H;
100#else
101 HANDLE Thread_H = NULL;
102 DWORD Thread_Id = 0;
103#endif
104bool Thread_Run = false;
105
106float SelectedObject_color[4] = {1,1,1,1};
107int SelectedObject_Counter = 0;
108//bool SelectedObject_DrawFlag = true;
109
110bool Geometry_WireFrame = false;
111
112int updateVisFileTime = -1;
113
114FROG_Events* events;
115FROG_Element_Event* event;
116
117FROG_Geometry* geom;
118
119char gSim = 0;
120char gReco = 15;
121
122//unsigned int mCLicked_DetId = (unsigned int) -1;
123bool mDisplayMother = false;
124bool mLoading = true;
125int mLoading_I = 0;
126bool mEventChanging = true;
127
128unsigned int mAutomaticShooter_LastEvent = 0;
129bool mAutomaticShooter = false;
130
131
132int eventNumber = 0;
133int eventTime = 5;
134
135bool mHelpScreen= false;
136
137bool stateChanged = false;
138
139bool print_FrameWork = false;
140
141float BackGround_Color[4] = {0.0 , 0.0 , 0.0 , 1.0};
142float Txt_Color[4] = {0.0 , 1.0 , 1.0 , 1.0};
143float Framework_Color[4] = {1.0 , 0.5 , 1.0 , 0.3};
144float Framework_Thickness = 1.0;
145float ZAxis_Color[4] = {1.0 , 0.5 , 1.0 , 0.3};
146float ZAxis_Thickness = 3;
147
148void reshape (int w, int h);
149void display();
150void display2();
151void displayForScreenShot();
152void displaytext();
153
154void LoadCard(const char* inputCard );
155void gl_select(int x, int y);
156void list_hits(GLint hits, GLuint *names);
157
158void AutomaticEventChanging (int Extra);
159
160
161void updateEventsFile();
162
163
164#endif
165
Note: See TracBrowser for help on using the repository browser.