File: sdljoystick.ml

package info (click to toggle)
ocamlsdl 0.9.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,608 kB
  • sloc: ansic: 3,311; sh: 3,103; ml: 2,111; makefile: 180; awk: 13
file content (66 lines) | stat: -rw-r--r-- 2,341 bytes parent folder | download | duplicates (8)
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
(*
 * OCamlSDL - An ML interface to the SDL library
 * Copyright (C) 1999  Frederic Brunel
 *
 * 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 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
 *)

(* $Id: sdljoystick.ml,v 1.2 2002/08/24 22:40:08 oliv__a Exp $ *)

(** Joystick handling *)

exception SDLjoystick_exception of string
let _ = Callback.register_exception 
    "SDLjoystick_exception" (SDLjoystick_exception "")

type t

external num_joysticks : unit -> int = "ml_SDL_NumJoysticks"
external name : int -> string = "ml_SDL_JoystickName"

external open_joystick : int -> t = "ml_SDL_JoystickOpen"
external opened : int -> bool = "ml_SDL_JoystickOpened"
external index : t -> int = "ml_SDL_JoystickIndex"
external num_axes : t -> int = "ml_SDL_JoystickNumAxes"
external num_balls : t -> int = "ml_SDL_JoystickNumBalls"
external num_hats : t -> int = "ml_SDL_JoystickNumHats"
external num_buttons : t -> int = "ml_SDL_JoystickNumButtons"

external update : t -> unit = "ml_SDL_JoystickUpdate"
external set_event_state : bool -> unit = "ml_SDL_JoystickSetEventState"
external get_event_state : unit -> bool = "ml_SDL_JoystickGetEventState"

type hat_value = int
let hat_centered = 0x00
let hat_up = 0x01
let hat_right = 0x02
let hat_down = 0x04
let hat_left = 0x08

let hat_rightup = 0x03
let hat_rightdown = 0x06
let hat_leftup = 0x09
let hat_leftdown = 0x0C

external get_axis : t -> int -> int
    = "ml_SDL_JoystickGetAxis"
external get_hat  : t -> int -> hat_value
    = "ml_SDL_JoystickGetHat"
external get_ball : t -> int -> int * int
    = "ml_SDL_JoystickGetBall"
external get_button : t -> int -> bool
    = "ml_SDL_JoystickGetButton"

external close : t -> unit = "ml_SDL_JoystickClose"