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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/*
* Tests the force feedback driver
* Opens a window. When the user clicks in the window, a force effect
* is generated according to the position of the mouse.
* This program needs the SDL library (http://www.libsdl.org)
* Copyright 2001 Johann Deneux <deneux@ifrance.com>
*/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* You can contact the author by email at this address:
* Johann Deneux <deneux@ifrance.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <unistd.h>
#include <math.h>
#include <linux/input.h>
#include <SDL.h>
#define BIT(x) (1<<(x))
#define STR_LEN 64
#define WIN_W 400
#define WIN_H 400
#define max(a,b) ((a)>(b)?(a):(b))
/* File descriptor of the force feedback /dev entry */
static int ff_fd;
static struct ff_effect effect;
static void welcome()
{
const char* txt[] = {
"ffmvforce: test orientation of forces",
"Click in the window to generate a force whose direction will be the position",
"of your mouse relatively to the center of the window",
"USE WITH CARE !!! HOLD STRONGLY YOUR WHEEL OR JOYSTICK TO PREVENT DAMAGES",
"To run this program, run it with at least one argument.",
"",
NULL };
const char** p = txt;
while (*p) {
printf("%s\n", *p);
p++;
}
}
static void generate_force(int x, int y)
{
static int first = 1;
double nx, ny;
double angle;
nx = 2*(x-WIN_W/2.0)/WIN_W;
ny = 2*(y-WIN_H/2.0)/WIN_H;
angle = atan2(nx, -ny);
printf("mouse: %d %d n: %4.2f %4.2f angle: %4.2f\n", x, y, nx, ny, angle);
effect.type = FF_CONSTANT;
effect.u.constant.level = 0x7fff * max(fabs(nx), fabs(ny));
effect.direction = 0x8000 * (angle + M_PI)/M_PI;
printf("level: %04x direction: %04x\n", (unsigned int)effect.u.constant.level, (unsigned int)effect.direction);
effect.u.constant.envelope.attack_length = 0;
effect.u.constant.envelope.attack_level = 0;
effect.u.constant.envelope.fade_length = 0;
effect.u.constant.envelope.fade_level = 0;
effect.trigger.button = 0;
effect.trigger.interval = 0;
effect.replay.length = 0xffff;
effect.replay.delay = 0;
if (first) {
effect.id = -1;
}
if (ioctl(ff_fd, EVIOCSFF, &effect) < 0) {
/* If updates are sent to frequently, they can be refused */
}
/* If first time, start to play the effect */
if (first) {
struct input_event play;
play.type = EV_FF;
play.code = effect.id;
play.value = 1;
if (write(ff_fd, (const void*) &play, sizeof(play)) == -1) {
perror("Play effect");
exit(1);
}
}
first = 0;
}
int main(int argc, char** argv)
{
SDL_Surface* screen;
char dev_name[STR_LEN];
int i;
Uint32 ticks, period = 200;
welcome();
if (argc <= 1) return 0;
/* Parse parameters */
strcpy(dev_name, "/dev/input/event0");
for (i=1; i<argc; ++i) {
if (strcmp(argv[i], "--help") == 0) {
printf("Usage: %s /dev/input/eventXX [-u update frequency in HZ]\n", argv[0]);
printf("Generates constant force effects depending on the position of the mouse\n");
exit(1);
}
else if (strcmp(argv[i], "-u") == 0) {
if (++i >= argc) {
fprintf(stderr, "Missing update frequency\n");
exit(1);
}
period = 1000.0/atof(argv[i]);
}
else {
strncpy(dev_name, argv[i], STR_LEN);
}
}
/* Initialize SDL */
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
fprintf(stderr, "Could not initialize SDL: %s\n", SDL_GetError());
exit(1);
}
atexit(SDL_Quit);
screen = SDL_SetVideoMode(WIN_W, WIN_H, 0, SDL_SWSURFACE);
if (screen == NULL) {
fprintf(stderr, "Could not set video mode: %s\n", SDL_GetError());
exit(1);
}
/* Open force feedback device */
ff_fd = open(dev_name, O_RDWR);
if (ff_fd == -1) {
perror("Open device file");
exit(1);
}
ticks = SDL_GetTicks();
/* Main loop */
for (;;) {
SDL_Event event;
SDL_WaitEvent(&event);
switch (event.type) {
case SDL_QUIT:
exit(0);
break;
case SDL_MOUSEMOTION:
if (event.motion.state && SDL_GetTicks()-ticks > period) {
ticks = SDL_GetTicks();
generate_force(event.motion.x, event.motion.y);
}
break;
}
}
return 0;
}
|