| 
									
										
										
										
											2008-12-17 19:10:01 -05:00
										 |  |  | USING: arrays accessors continuations kernel system | 
					
						
							| 
									
										
										
										
											2008-12-17 20:52:47 -05:00
										 |  |  | sequences namespaces init vocabs vocabs.loader combinators ;
 | 
					
						
							| 
									
										
										
										
											2008-07-19 14:04:07 -04:00
										 |  |  | IN: game-input | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-26 00:25:46 -04:00
										 |  |  | SYMBOLS: game-input-backend game-input-opened ;
 | 
					
						
							| 
									
										
										
										
											2008-07-19 14:04:07 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-26 00:25:46 -04:00
										 |  |  | HOOK: (open-game-input)  game-input-backend ( -- )
 | 
					
						
							|  |  |  | HOOK: (close-game-input) game-input-backend ( -- )
 | 
					
						
							| 
									
										
										
										
											2008-07-29 22:53:00 -04:00
										 |  |  | HOOK: (reset-game-input) game-input-backend ( -- )
 | 
					
						
							| 
									
										
										
										
											2008-07-26 00:25:46 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : game-input-opened? ( -- ? )
 | 
					
						
							|  |  |  |     game-input-opened get ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-29 01:42:28 -04:00
										 |  |  | <PRIVATE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-29 22:53:00 -04:00
										 |  |  | M: f (reset-game-input) ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-29 01:42:28 -04:00
										 |  |  | : reset-game-input ( -- )
 | 
					
						
							| 
									
										
										
										
											2008-07-29 22:53:00 -04:00
										 |  |  |     game-input-opened off
 | 
					
						
							|  |  |  |     (reset-game-input) ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-29 01:42:28 -04:00
										 |  |  | [ reset-game-input ] "game-input" add-init-hook | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PRIVATE>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-26 00:25:46 -04:00
										 |  |  | : open-game-input ( -- )
 | 
					
						
							|  |  |  |     game-input-opened? [ | 
					
						
							|  |  |  |         (open-game-input)  | 
					
						
							|  |  |  |         game-input-opened on
 | 
					
						
							|  |  |  |     ] unless ;
 | 
					
						
							|  |  |  | : close-game-input ( -- )
 | 
					
						
							|  |  |  |     game-input-opened? [ | 
					
						
							|  |  |  |         (close-game-input)  | 
					
						
							| 
									
										
										
										
											2008-07-29 01:42:28 -04:00
										 |  |  |         reset-game-input | 
					
						
							| 
									
										
										
										
											2008-07-26 00:25:46 -04:00
										 |  |  |     ] when ;
 | 
					
						
							| 
									
										
										
										
											2008-07-19 14:04:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : with-game-input ( quot -- )
 | 
					
						
							|  |  |  |     open-game-input [ close-game-input ] [ ] cleanup ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TUPLE: controller handle ;
 | 
					
						
							|  |  |  | TUPLE: controller-state x y z rx ry rz slider pov buttons ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: controller-state clone | 
					
						
							|  |  |  |     call-next-method dup buttons>> clone >>buttons ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SYMBOLS:
 | 
					
						
							|  |  |  |     pov-neutral | 
					
						
							| 
									
										
										
										
											2008-07-19 18:17:12 -04:00
										 |  |  |     pov-up pov-up-right pov-right pov-down-right | 
					
						
							|  |  |  |     pov-down pov-down-left pov-left pov-up-left ;
 | 
					
						
							| 
									
										
										
										
											2008-07-19 14:04:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | HOOK: get-controllers game-input-backend ( -- sequence )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-20 21:04:47 -04:00
										 |  |  | HOOK: product-string game-input-backend ( controller -- string )
 | 
					
						
							|  |  |  | HOOK: product-id game-input-backend ( controller -- id )
 | 
					
						
							|  |  |  | HOOK: instance-id game-input-backend ( controller -- id )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : find-controller-products ( product-id -- sequence )
 | 
					
						
							|  |  |  |     get-controllers [ product-id = ] with filter ;
 | 
					
						
							|  |  |  | : find-controller-instance ( product-id instance-id -- controller/f )
 | 
					
						
							|  |  |  |     get-controllers [ | 
					
						
							| 
									
										
										
										
											2008-12-17 20:52:47 -05:00
										 |  |  |         tuck | 
					
						
							| 
									
										
										
										
											2008-07-20 21:04:47 -04:00
										 |  |  |         [ product-id  = ] | 
					
						
							| 
									
										
										
										
											2008-12-17 20:52:47 -05:00
										 |  |  |         [ instance-id = ] 2bi* and
 | 
					
						
							|  |  |  |     ] with with find nip ;
 | 
					
						
							| 
									
										
										
										
											2008-07-19 14:04:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | HOOK: read-controller game-input-backend ( controller -- controller-state )
 | 
					
						
							|  |  |  | HOOK: calibrate-controller game-input-backend ( controller -- )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TUPLE: keyboard-state keys ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: keyboard-state clone | 
					
						
							|  |  |  |     call-next-method dup keys>> clone >>keys ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HOOK: read-keyboard game-input-backend ( -- keyboard-state )
 | 
					
						
							| 
									
										
										
										
											2008-08-31 14:00:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-16 02:33:51 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     { [ os windows? ] [ "game-input.dinput" require ] } | 
					
						
							|  |  |  |     { [ os macosx? ] [ "game-input.iokit" require ] } | 
					
						
							|  |  |  |     { [ t ] [ ] } | 
					
						
							|  |  |  | } cond
 |