aboutsummaryrefslogtreecommitdiff
path: root/ifeel.c
blob: e6a6aa94ffea0c68d616429a256271e32cc195d2 (plain)
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/* 
 * ifeel mouse object for Miller Puckette's Pure Data
 * copyright 2003 Hans-Christoph Steiner <hans@eds.org>

 * 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. 
 *
 *
 * based on ifeel_send.c from the linux iFeel driver:
 * http://sourceforge.net/projects/tactile
 *
 */

#include "m_pd.h"

#include <unistd.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>

#include "ifeel.h"


#define IFEEL_DEVICE    "/dev/input/ifeel0"

static t_class *ifeel_class;

typedef struct _ifeel {
	t_object x_obj;
	int x_fd;
	struct ifeel_command x_ifeel_command;
} t_ifeel;



/******************************************************************************
general ff methods
******************************************************************************/

void ifeel_start(t_ifeel *x)
{
  post("ifeel_start");
  
  if (ioctl(x->x_fd, USB_IFEEL_BUZZ_IOCTL, &x->x_ifeel_command) < 0) {
    printf("ERROR %s\n", strerror(errno));
  }  
}

void ifeel_stop(t_ifeel *x)
{
  post("ifeel_stop");
  
  x->x_ifeel_command.strength = 0;
  x->x_ifeel_command.delay = 0;
  x->x_ifeel_command.count = 0;
  if (ioctl(x->x_fd, USB_IFEEL_BUZZ_IOCTL, &x->x_ifeel_command) < 0) {
    printf("ERROR %s\n", strerror(errno));
  }  
}

void ifeel_level(t_ifeel *x, t_floatarg level)
{
  post("ifeel_level");
  
  /* make sure its in the proper range */
  level = level * 255;
  level = (level > 255 ? 255 : level);
  level = (level < 0 ? 0 : level);

  x->x_ifeel_command.strength  = (unsigned int)level;

  if (ioctl(x->x_fd, USB_IFEEL_BUZZ_IOCTL, &x->x_ifeel_command) < 0) {
    printf("ERROR %s\n", strerror(errno));
  }  
  
}

void ifeel_interval(t_ifeel *x, t_floatarg interval)
{
  post("ifeel_interval");
  
  interval = (interval < 0 ? 0 : interval);

  x->x_ifeel_command.delay  = (unsigned int)interval;

  if (ioctl(x->x_fd, USB_IFEEL_BUZZ_IOCTL, &x->x_ifeel_command) < 0) {
    printf("ERROR %s\n", strerror(errno));
  }  
}

void ifeel_count(t_ifeel *x, t_floatarg count )
{
  post("ifeel_count");
  
  count = (count < 0 ? 0 : count);

  x->x_ifeel_command.count  = (unsigned int)count;

  if (ioctl(x->x_fd, USB_IFEEL_BUZZ_IOCTL, &x->x_ifeel_command) < 0) {
    printf("ERROR %s\n", strerror(errno));
  }  
}

void ifeel_free(t_ifeel *x)
{
  post("ifeel_free");
  
  /* stop effect */
  ifeel_stop(x);
  
  /* close device */
  close(x->x_fd);
}

void *ifeel_new(t_symbol *device, t_floatarg level, t_floatarg interval, t_floatarg count)
{
  post("ifeel_new");
  
  t_ifeel *x = (t_ifeel *)pd_new(ifeel_class);
  
  /* 
   * init to zero so I can use the ifeel_* methods to set the 
   * struct with the argument values
   */
  x->x_ifeel_command.strength = 0;
  x->x_ifeel_command.delay = 0;
  x->x_ifeel_command.count = 0;
  
  inlet_new(&x->x_obj,
	    &x->x_obj.ob_pd,
	    gensym("float"),
	    gensym("direction"));
  inlet_new(&x->x_obj,
	    &x->x_obj.ob_pd,
	    gensym("float"),
	    gensym("count"));
  inlet_new(&x->x_obj,
	    &x->x_obj.ob_pd,
	    gensym("float"),
	    gensym("level"));
  
  if (device != &s_) {
    post("Using %s",device->s_name);
    
    /* x->x_fd = open(IFEEL_DEVICE, O_RDWR); */
    /*   x->x_fd = open((char *) device->s_name, O_RDWR); */
    if ((x->x_fd = open((char *) device->s_name, O_RDWR | O_NONBLOCK, 0)) <= 0) {
      printf("ERROR %s\n", strerror(errno)); 
    }
    
    ifeel_level(x,level);
    ifeel_interval(x,interval);
    ifeel_count(x,count);
  }
  else {
    post("ifeel: You need to set an ifeel device (i.e /dev/input/ifeel0)");
  }
  
  return (void*)x;
}

/******************************************************************************
   initialisation functions
******************************************************************************/

void ifeel_setup(void)
{
  post("ifeel_setup");
  
  ifeel_class = class_new(gensym("ifeel"),
			  (t_newmethod)ifeel_new,
			  (t_method)ifeel_free,
			  sizeof(t_ifeel),
			  CLASS_DEFAULT,
			  A_DEFSYMBOL,
			  A_DEFFLOAT,
			  A_DEFFLOAT,
			  A_DEFFLOAT,
			  0);
  
  class_addbang(ifeel_class,ifeel_start);

  class_addmethod(ifeel_class, (t_method)ifeel_stop,gensym("start"),0);
  class_addmethod(ifeel_class, (t_method)ifeel_stop,gensym("stop"),0);
  
  class_addmethod(ifeel_class, (t_method)ifeel_level,  gensym("level"), A_DEFFLOAT,0);  
  class_addmethod(ifeel_class, (t_method)ifeel_interval,gensym("interval"),A_DEFFLOAT,0);
  class_addmethod(ifeel_class, (t_method)ifeel_count,gensym("count"),A_DEFFLOAT,0);

 }