]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTkey.c
Added GNU copyright headers.
[flightgear.git] / Main / GLUTkey.c
1 /**************************************************************************
2  * tkglkey.c -- handle tkgl keyboard events
3  *
4  * Written by Curtis Olson, started May 1997.
5  *
6  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #include <stdio.h>
28
29 #include <GL/glut.h>
30
31 #include "GLUTkey.h"
32 #include "../aircraft/aircraft.h"
33
34 extern double fogDensity;
35
36 /* Handle keyboard events */
37 void GLUTkey(unsigned char k, int x, int y) {
38     struct control_params *c;
39
40     c = &current_aircraft.controls;
41
42     printf("Key hit = %d\n", k);
43
44     switch (k) {
45     case GLUT_KEY_UP:
46         c->elev -= 0.1;
47         return;
48     case GLUT_KEY_DOWN:
49         c->elev += 0.1;
50         return;
51     case GLUT_KEY_LEFT:
52         c->aileron += 0.01;
53         return;
54     case GLUT_KEY_RIGHT:
55         c->aileron -= 0.01;
56         return;
57     case 1 /* TK_END */:
58         c->rudder -= 0.01;
59         return;
60     case 2 /* TK_PGDWN */:
61         c->rudder += 0.01;
62         return;
63     case 3:
64         c->throttle[0] -= 0.05;
65         return;
66     case 4:
67         c->throttle[0] += 0.05;
68         return;
69     case 122:
70         fogDensity *= 1.10;
71         glFogf(GL_FOG_DENSITY, fogDensity);
72         printf("Fog density = %.4f\n", fogDensity);
73         return;
74     case 90:
75         fogDensity /= 1.10;
76         glFogf(GL_FOG_DENSITY, fogDensity);
77         printf("Fog density = %.4f\n", fogDensity);
78         return;
79     case 27: /* ESC */
80         exit(0);
81     }
82
83 }
84
85
86 /* $Log$
87 /* Revision 1.3  1997/05/23 15:40:25  curt
88 /* Added GNU copyright headers.
89 /* Fog now works!
90 /*
91  * Revision 1.2  1997/05/23 00:35:12  curt
92  * Trying to get fog to work ...
93  *
94  * Revision 1.1  1997/05/21 15:57:50  curt
95  * Renamed due to added GLUT support.
96  *
97  * Revision 1.2  1997/05/19 18:22:41  curt
98  * Parameter tweaking ... starting to stub in fog support.
99  *
100  * Revision 1.1  1997/05/16 16:05:51  curt
101  * Initial revision.
102  *
103  */