jkenyon@css.itd.umich.edu (Jim Kenyon) (01/29/91)
David Simpson says..... > Okay folks. Who knows anything about programming the game port > for a joystick on the PC? I plugged a Mach I joystick into the > game port of my Zeos 386 and discovered that the BIOS "read > joystick" function (interrupt 15h, function 84h) correctly > reads the "fire" buttons but not the joystick position. > (The position is just randomly varying "trash" numbers.) > However, I discovered that my "Tetris" game can use the joystick > without trouble. What gives? > (I know. "Power users" don't use joysticks, but I'm curious.) > :-) Thanks for any help. > David Simpson Hey! This sounds *very* familiar! I have an ALR386/220 with exactly the same problem -- However, QAPlus does read the sticks correctly. I got some code from Borland to try the XT style (camp on the port until is goes low...) joystick interface and it failed in the same manner. Another netlander was kind enough to send me some C code to try as well. It works just fine on a Zenith with the same game board (I moved it from machine to machine) but not on the ALR. If anyone knows what gives, please let me know (BTW, I have Phoenix BIOS 1.10.13 -- what's in the Zeos?) -Jim Kenyon -- Jim Kenyon -- jkenyon@css.itd.umich.edu University of Michigan, 401 Washtenaw Ave Division of Kinsesiology, Motor Behavior Lab Ann Arbor, MI 48109 -- (313) 763-0498
mlord@bwdls58.bnr.ca (Mark Lord) (01/30/91)
In article <1991Jan28.175634.6899@terminator.cc.umich.edu> jkenyon@css.itd.umich.edu (Jim Kenyon) writes: <David Simpson says..... < <> Okay folks. Who knows anything about programming the game port <> for a joystick on the PC? I plugged a Mach I joystick into the <> game port of my Zeos 386 and discovered that the BIOS "read <> joystick" function (interrupt 15h, function 84h) correctly <> reads the "fire" buttons but not the joystick position. <> (The position is just randomly varying "trash" numbers.) <> However, I discovered that my "Tetris" game can use the joystick <> without trouble. What gives? <> (I know. "Power users" don't use joysticks, but I'm curious.) <> :-) Thanks for any help. <> David Simpson < <Hey! This sounds *very* familiar! I have an ALR386/220 with exactly <the same problem -- However, QAPlus does read the sticks correctly. The scoop is that the joystick interface consists of a 555 timer wired in an RC circuit. Reading the joystick consists of triggering the timer, and then looping until it resets. There is one such circuit for each joystick axis. Most early software simply counts the number of loop interations and bases its reading on the total. VERY CPU SPEED DEPENDANT. Some software is slightly brighter.. they ask for you to "calibrate" the joystick by moving it from top left to bottom right while they take measurements. An annoyance for sure, but at least it usually works afterwards. Other software will do the calibration invisibly, by assuming that the joystick is centered when the program starts up. This method works well for programs which merely use the joystick for direction, rather than absolute analog positioning. Another method is to perform the joystick readings based on elapsed time, by using one of the internal timers (on the motherboard) instead of a software loop when "reading" the joystick. This is not too common. You've heard of "high speed joystick adaptors?" They are identical to the "normal" joystick interfaces, except that they use jumpers/switches to permit different RC values for the 555 circuit, thus speeding up the timer to compensate for faster CPU timing loops. All of this variety leads to the conclusion that, in the pc world, mice are probably a lot better than joysticks, cuz they don't have these problems! -- ___Mark S. Lord__________________________________________ | ..uunet!bnrgate!mlord%bmerh724 | Climb Free Or Die (NH) | | MLORD@BNR.CA Ottawa, Ontario | Personal views only. | |________________________________|________________________|
rwyckoff@eagle.wesleyan.edu (02/03/91)
In article <5486@bwdls58.UUCP>, mlord@bwdls58.bnr.ca (Mark Lord) writes: (lots of stuff deleted which brings about the following statement) > All of this variety leads to the conclusion that, in the pc world, > mice are probably a lot better than joysticks, cuz they don't have these > problems! > -- Interesting conclusion. Kind of like saying apples are better than oranges, because you don't have to peel them. I'll believe it when I see the first self centering mouse! :-)