d77e970a225b6f591c638d4d1ee8db2a64fdb87e
[freeglut] / src / x11 / fg_input_devices_x11.c
1 /*
2  * freeglut_input_devices_x11.c
3  *
4  * Handles miscellaneous input devices via direct serial-port access.
5  * Proper X11 XInput device support is not yet supported.
6  * Also lacks Mac support.
7  *
8  * Written by Joe Krahn <krahn@niehs.nih.gov> 2005
9  *
10  * Copyright (c) 2005 Stephen J. Baker. All Rights Reserved.
11  * Copied for Platform code by Evan Felix <karcaw at gmail.com>
12  * Creation date: Thur Feb 2 2012
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the "Software"),
16  * to deal in the Software without restriction, including without limitation
17  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
18  * and/or sell copies of the Software, and to permit persons to whom the
19  * Software is furnished to do so, subject to the following conditions:
20  *
21  * The above copyright notice and this permission notice shall be included
22  * in all copies or substantial portions of the Software.
23  *
24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
27  * PAWEL W. OLSZTA OR STEPHEN J. BAKER BE LIABLE FOR ANY CLAIM, DAMAGES OR
28  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
29  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30  * DEALINGS IN THE SOFTWARE.
31  */
32
33 #include <GL/freeglut.h>
34 #include "../fg_internal.h"
35
36 #ifdef HAVE_ERRNO_H
37 #include <errno.h>
38 #endif
39 #include <sys/ioctl.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <termios.h>
44 #include <fcntl.h>
45
46 struct _serialport {
47    int fd;
48    struct termios termio, termio_save;
49 };
50
51 typedef struct _serialport SERIALPORT;
52
53 void serial_flush ( SERIALPORT *port );
54
55 /*****************************************************************/
56
57 /*
58  * Try initializing the input device(s)
59  */
60 void fgPlatformRegisterDialDevice ( const char *dial_device )
61 {
62 }
63
64 SERIALPORT *serial_open ( const char *device )
65 {
66     int fd;
67     struct termios termio;
68     SERIALPORT *port;
69
70     fd = open(device, O_RDWR | O_NONBLOCK );
71     if (fd <0) {
72         perror(device);
73         return NULL;
74     }
75
76     port = malloc(sizeof(SERIALPORT));
77     memset(port, 0, sizeof(SERIALPORT));
78     port->fd = fd;
79
80     /* save current port settings */
81     tcgetattr(fd,&port->termio_save);
82
83     memset(&termio, 0, sizeof(termio));
84     termio.c_cflag = CS8 | CREAD | HUPCL ;
85     termio.c_iflag = IGNPAR | IGNBRK ;
86     termio.c_cc[VTIME]    = 0;   /* inter-character timer */
87     termio.c_cc[VMIN]     = 1;   /* block read until 1 chars received, when blocking I/O */
88
89     cfsetispeed(&termio, B9600);
90     cfsetospeed(&termio, B9600);
91     tcsetattr(fd,TCSANOW,&termio);
92
93     serial_flush(port);
94     return port;
95 }
96
97 void serial_close(SERIALPORT *port)
98 {
99     if (port)
100     {
101         /* restore old port settings */
102         tcsetattr(port->fd,TCSANOW,&port->termio_save);
103         close(port->fd);
104         free(port);
105     }
106 }
107
108 int serial_getchar(SERIALPORT *port)
109 {
110     unsigned char ch;
111     if (!port) return EOF;
112     if (read(port->fd,&ch,1)) return ch;
113     return EOF;
114 }
115
116 int serial_putchar(SERIALPORT *port, unsigned char ch)
117 {
118     if (!port) return 0;
119     return write(port->fd,&ch,1);
120 }
121
122 void serial_flush ( SERIALPORT *port )
123 {
124     tcflush ( port->fd, TCIOFLUSH );
125 }