File: rubysdl_joystick.c

package info (click to toggle)
ruby-sdl 2.1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,180 kB
  • sloc: ansic: 4,582; ruby: 2,190; makefile: 28
file content (268 lines) | stat: -rw-r--r-- 7,244 bytes parent folder | download | duplicates (2)
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*
  Ruby/SDL   Ruby extension library for SDL

  Copyright (C) 2001-2007 Ohbayashi Ippei
  
  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library 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
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
#include "rubysdl.h"

/* basic */
typedef struct{
  SDL_Joystick* joystick;
} Joystick;

static VALUE cJoystick=Qnil;

static Joystick* GetJoystick(VALUE obj)
{
  Joystick* joy;
  
  if(!rb_obj_is_kind_of(obj, cJoystick)){
    rb_raise(rb_eTypeError, "wrong argument type %s (expected SDL::Joystick)",
             rb_obj_classname(obj));
  }
  
  Data_Get_Struct(obj, Joystick, joy);
  return joy;
}

static SDL_Joystick* Get_SDL_Joystick(VALUE obj)
{
  Joystick* joy = GetJoystick(obj);
  if(joy->joystick == NULL){
    rb_raise(rb_eRuntimeError, "joystick is closed");
  }

  return joy->joystick;
}

static void Joystick_free(Joystick* joy)
{
  if(rubysdl_is_quit() || joy->joystick == NULL){
    free(joy);
  }else{
    SDL_JoystickClose(joy->joystick);
    free(joy);
  }
}

/* initialize methods */
static VALUE Joystick_s_alloc(VALUE klass)
{
  Joystick* joy = ALLOC(Joystick);
  joy->joystick = NULL;
  return Data_Wrap_Struct(cJoystick, 0, Joystick_free, joy);
}

static VALUE Joystick_initialize(VALUE self, VALUE index)
{
  Joystick* joy = GetJoystick(self);
  rb_secure(4);
  
  joy->joystick = SDL_JoystickOpen(NUM2INT(index));
  if( joy->joystick == NULL ){
    rb_raise(eSDLError, "Couldn't open joystick No.%d :%s", NUM2INT(index),
	     SDL_GetError());
  }
  return Qnil;
}

/* class methods */
static VALUE Joystick_s_poll(VALUE klass)
{
  rb_secure(4);
  return INT2BOOL(SDL_JoystickEventState(SDL_QUERY) == SDL_ENABLE);
}

static VALUE Joystick_s_set_poll(VALUE klass, VALUE poll)
{
  rb_secure(4);
  
  if(RTEST(poll))
    SDL_JoystickEventState(SDL_ENABLE);
  else
    SDL_JoystickEventState(SDL_IGNORE);
  return poll;
}

static VALUE Joystick_s_num(VALUE klass)
{
  rb_secure(4);
  return INT2FIX(SDL_NumJoysticks());
}

static VALUE Joystick_s_indexName(VALUE klass, VALUE index)
{
  rb_secure(4);
  return rb_str_new2(SDL_JoystickName(NUM2INT(index)));
}

static VALUE Joystick_s_open_p(VALUE klass, VALUE index)
{
  rb_secure(4);
  return INT2BOOL(SDL_JoystickOpened(NUM2INT(index)));
}

static VALUE Joystick_s_open(VALUE klass, VALUE index)
{
  VALUE newobj;
  rb_secure(4);
  
  newobj = Joystick_s_alloc(klass);
  Joystick_initialize(newobj, index);
  return newobj;
}

static VALUE Joystick_s_update(VALUE klass)
{
  rb_secure(4);
  SDL_JoystickUpdate();
  return Qnil;
}

/* methods */
static VALUE Joystick_close(VALUE self)
{
  Joystick* joy;
  rb_secure(4);
  
  joy = GetJoystick(self);
  SDL_JoystickClose(joy->joystick);
  joy->joystick = NULL;
  return Qnil;
}
static VALUE Joystick_index(VALUE self)
{
  SDL_Joystick* joystick;
  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  return INT2FIX(SDL_JoystickIndex(joystick));
}

static VALUE Joystick_numAxes(VALUE self)
{
  SDL_Joystick* joystick;
  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  return INT2FIX(SDL_JoystickNumAxes(joystick));
}

static VALUE Joystick_numBalls(VALUE self)
{
  SDL_Joystick *joystick;
  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  return INT2FIX(SDL_JoystickNumBalls(joystick));
}

static VALUE Joystick_numHats(VALUE self)
{
  SDL_Joystick *joystick;
  rb_secure(4);
  joystick = Get_SDL_Joystick(self);
  return INT2FIX(SDL_JoystickNumHats(joystick));
}

static VALUE Joystick_numButtons(VALUE self)
{
  SDL_Joystick *joystick;
  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  return INT2FIX(SDL_JoystickNumButtons(joystick));
}

static VALUE Joystick_getAxis(VALUE self, VALUE axis)
{
  SDL_Joystick *joystick;
  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  return INT2NUM(SDL_JoystickGetAxis(joystick, NUM2INT(axis)));
}

static VALUE Joystick_getHat(VALUE self, VALUE hat)
{
  SDL_Joystick *joystick;
  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  return UINT2NUM(SDL_JoystickGetHat(joystick, NUM2INT(hat)));
}

static VALUE Joystick_getButton(VALUE self, VALUE button)
{
  SDL_Joystick *joystick;
  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  return INT2BOOL(SDL_JoystickGetButton(joystick, NUM2INT(button)));
}

static VALUE Joystick_getBall(VALUE self, VALUE ball)
{
  SDL_Joystick *joystick;
  int dx,dy;

  rb_secure(4);
  
  joystick = Get_SDL_Joystick(self);
  if( SDL_JoystickGetBall(joystick, NUM2INT(ball), &dx, &dy) == -1 )
    rb_raise(eSDLError,"SDL_JoystickGetBall failed :%s",SDL_GetError());
  return rb_ary_new3(2, INT2FIX(dx), INT2FIX(dy));
}

void rubysdl_init_Joystick(VALUE mSDL)
{
  cJoystick = rb_define_class_under(mSDL, "Joystick", rb_cObject);
  
  rb_define_singleton_method(cJoystick, "poll", Joystick_s_poll, 0);
  rb_define_singleton_method(cJoystick, "poll=", Joystick_s_set_poll, 1);
  rb_define_singleton_method(cJoystick, "num", Joystick_s_num, 0);
  rb_define_singleton_method(cJoystick, "indexName", Joystick_s_indexName, 1);
  rb_define_singleton_method(cJoystick, "open?", Joystick_s_open_p, 1);
  rb_define_singleton_method(cJoystick, "update", Joystick_s_update, 0);
  rb_define_singleton_method(cJoystick, "updateAll", Joystick_s_update, 0);
  rb_define_singleton_method(cJoystick, "open", Joystick_s_open, 1);

  rb_define_alloc_func(cJoystick, Joystick_s_alloc);
  rb_define_private_method(cJoystick, "initialize", Joystick_initialize, 1);

  rb_define_method(cJoystick, "close", Joystick_close, 0);
  rb_define_method(cJoystick, "index", Joystick_index, 0);
  rb_define_method(cJoystick, "numAxes", Joystick_numAxes, 0);
  rb_define_method(cJoystick, "numBalls", Joystick_numBalls, 0);
  rb_define_method(cJoystick, "numHats", Joystick_numHats, 0);
  rb_define_method(cJoystick, "numButtons", Joystick_numButtons, 0);  
  
  rb_define_method(cJoystick, "axis", Joystick_getAxis, 1);
  rb_define_method(cJoystick, "hat", Joystick_getHat, 1);
  rb_define_method(cJoystick, "button", Joystick_getButton, 1);
  rb_define_method(cJoystick, "ball", Joystick_getBall, 1);
  
  rb_define_const(cJoystick,"HAT_CENTERED",UINT2NUM(SDL_HAT_CENTERED));
  rb_define_const(cJoystick,"HAT_UP",UINT2NUM(SDL_HAT_UP));
  rb_define_const(cJoystick,"HAT_RIGHT",UINT2NUM(SDL_HAT_RIGHT));
  rb_define_const(cJoystick,"HAT_DOWN",UINT2NUM(SDL_HAT_DOWN));
  rb_define_const(cJoystick,"HAT_LEFT",UINT2NUM(SDL_HAT_LEFT));
  rb_define_const(cJoystick,"HAT_RIGHTUP",UINT2NUM(SDL_HAT_RIGHTUP));
  rb_define_const(cJoystick,"HAT_RIGHTDOWN",UINT2NUM(SDL_HAT_RIGHTDOWN));
  rb_define_const(cJoystick,"HAT_LEFTUP",UINT2NUM(SDL_HAT_LEFTUP));
  rb_define_const(cJoystick,"HAT_LEFTDOWN",UINT2NUM(SDL_HAT_LEFTDOWN));
}