-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
161 lines (127 loc) · 4.63 KB
/
main.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
/*************************************************************************************************\
* *
* "main.cpp" - Main file of the 'Racing Line Finder' program. *
* Contains the main() function plus initialisation and event handling functions. *
* *
* Author - Tom McDonnell 2004 *
* *
\*************************************************************************************************/
// INCLUDES ///////////////////////////////////////////////////////////////////////////////////////
#include "racingline.h"
#include "gui.h"
#include <TomsLibrary/vector.h>
#include <TomsLibrary/geometry.h>
#include <GL/glut.h>
#include <assert.h>
#include <iostream.h>
// GLOBAL VARIABLE DEFINITIONS ////////////////////////////////////////////////////////////////////
rect worldRect = {-1.0, 1.0, 1.0, -1.0}; // definition of max & min world coordinates
// also used in "gui.cpp"
// STATIC GLOBAL VARIABLE DECLARATIONS ////////////////////////////////////////////////////////////
static int mainWindowID;
static rec2vector mainWinDim(600, 600);
// STATIC FUNCTION DECLARATIONS ///////////////////////////////////////////////////////////////////
static void initLightSources(void);
static void display(void);
static void reshape(int w, int h);
static void mouse(int button, int state, int x, int y);
static void mousePassiveMove(int x, int y);
static void setupBirdsEyeView(void);
static void scaleWindowToWorld(rec2vector &);
// FUNCTION DEFINITIONS ///////////////////////////////////////////////////////////////////////////
/*
*
*/
void main(int argc, char *argv[])
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);
// create main window
glutInitWindowSize(mainWinDim.x, mainWinDim.y);
glutInitWindowPosition(0, 0);
mainWindowID = glutCreateWindow("Racing Line Finder");
// register functions for main window
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutMouseFunc(mouse);
glutPassiveMotionFunc(mousePassiveMove);
// settings for main window
//glEnable(GL_DEPTH_TEST);
initGUI();
glutMainLoop();
}
// STATIC FUNCTION DEFINITIONS ////////////////////////////////////////////////////////////////////
/*
*
*/
static void display(void)
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
drawWindow();
setupBirdsEyeView();
glutSwapBuffers();
}
/*
* PROBLEM: Unfinished function.
*/
static void reshape(int w, int h)
{
mainWinDim.x = w;
mainWinDim.y = h;
glutPostRedisplay();
}
/*
*
*/
static void mouse(int button, int state, int x, int y)
{
rec2vector mousePos(x, y);
scaleWindowToWorld(mousePos);
switch (button)
{
case GLUT_LEFT_BUTTON:
if (state == GLUT_DOWN)
{
processLeftClick(mousePos);
}
break;
}
}
/*
*
*/
static void mousePassiveMove(int x, int y)
{
rec2vector mousePos(x, y);
scaleWindowToWorld(mousePos);
processMouseMove(mousePos);
}
/*
* Set up modelview matrix for viewing from birds eye perspective (from overhead).
*/
static void setupBirdsEyeView(void)
{
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
double halfW = (worldRect.r - worldRect.l) / 2.0,
halfH = (worldRect.t - worldRect.b) / 2.0;
glOrtho( -halfW, halfW, // left, right
-halfH, halfH, // top, bottom
0.0, 2.0 ); // near, far
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
gluLookAt(halfW + worldRect.l, halfH + worldRect.b, 1.0, // look from
halfW + worldRect.l, halfH + worldRect.b, 0.0, // look at
0.0, 1.0, 0.0 ); // up vector
}
/*
* Scale point p from window coordinates to world coordinates.
*/
static void scaleWindowToWorld(rec2vector &p)
{
assert(0 <= p.x && p.x <= mainWinDim.x);
assert(0 <= p.y && p.y <= mainWinDim.y);
p.x = ((worldRect.r - worldRect.l) * p.x) / mainWinDim.x + worldRect.l;
p.y = ((worldRect.t - worldRect.b) * (mainWinDim.y - p.y)) / mainWinDim.y + worldRect.b;
}
/*******************************************END*OF*FILE*******************************************/