]> icculus.org git repositories - btb/d2x.git/blob - unused/bios/testj.c
This commit was generated by cvs2svn to compensate for changes in r2,
[btb/d2x.git] / unused / bios / testj.c
1 /*
2 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
3 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
4 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
5 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
6 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
7 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
8 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
9 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
10 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.  
11 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
12 */
13
14 #include <stdio.h>
15 #include <conio.h>
16
17 #include "joy.h"
18 #include "key.h"
19 #include "timer.h"
20
21 void wait()
22 {   short i=0,j=0;
23
24         while( !i && !key_inkey() )
25                 joy_get_btn_up_cnt(&i, &j);
26
27 }
28
29 void main (void)
30 {
31         unsigned int t1, t2;
32         int i, start, stop, frames;
33         short bd1, bd2, bu1, bu2, b, x, y, bt1, bt2;
34
35         key_init();
36
37         if (!joy_init())   {
38                 printf( "No joystick detected.\n" );
39                 key_close();
40                 exit(1);
41         }
42
43         timer_init( 0, NULL );
44
45         printf( "Displaying joystick button transitions and time...any key leaves.\n" );
46
47         i = 0;
48         while( !key_inkey() )
49         {
50                 i++;
51                 if (i>500000)    {
52                         i = 0;
53                         joy_get_btn_down_cnt( &bd1, &bd2 );
54                         joy_get_btn_up_cnt( &bu1, &bu2 );
55                         joy_get_btn_time( &bt1, &bt2 );
56                         printf( "%d  %d   %d   %d      T1:%d   T2:%d\n",bd1, bu1, bd2, bu2, bt1, bt2 );
57                 }
58         }
59
60         printf( "\nPress c to do a deluxe-full-fledged calibration.\n" );
61         printf( "or any other key to just use the cheap method.\n" );
62
63         if (key_getch() == 'c')    {
64                 printf( "Move stick to center and press any key.\n" );
65                 wait();
66                 joy_set_cen();
67
68                 printf( "Move stick to Upper Left corner and press any key.\n" );
69                 wait();
70                 joy_set_ul();
71
72                 printf( "Move stick to Lower Right corner and press any key.\n" );
73                 wait();
74                 joy_set_lr();
75         }
76
77
78         while( !keyd_pressed[KEY_ESC])
79         {
80                 frames++;
81
82                 joy_get_pos( &x, &y );
83                 b = joy_get_btns();
84
85                 printf( "%d, %d   (%d %d)\n", x, y, b & 1, b & 2);
86
87         }
88
89
90         printf( "Testing joystick reading speed...\n" );
91         t1 = timer_get_microseconds();
92         joy_get_pos( &x, &y );
93         t2 = timer_get_microseconds();
94
95         printf( "~ %u æsec per reading using Timer Timing\n", t2 - t1 );
96
97         joy_close();
98         key_close();
99         timer_close();
100
101         frames = 1000;
102         start = TICKER;
103         for (i=0; i<frames; i++ )
104                 joy_get_pos( &x, &y );
105
106         stop = TICKER;
107
108         printf( "~ %d æsec per reading using BIOS ticker as a stopwatch.\n", USECS_PER_READING( start, stop, frames ) );
109
110
111 }