Had a hard time trying to figure out a title for this....
I currently finishing up on building my cab...
I was showing my wife the current setup...and she is a big Burgertime fan...
I have a X-arcade tankstick ( dual Joysticks) and when I brought up BT...I went through the usual setup... I hit 2 credits and also hit 2 players.... Only problem though is that the 2nd player doesnt work...I went to the options and made sure that the joystick controls were correct and they were......I can play fighter games perfect...but as for Donkey Kong...Burgetime, pacman and etc....the 2nd player doesnt work....My wife was asking me what was the problem...
My thinking is that the orginal arcades ( such as those games listed above) only had one joystick....players just switched...
Am I right?
Kinda sucks...is there a way where I can fix this ?
Yeah I am pretty creative and think I have a fix for you.
______________________________________________________
First of all that stick should be programable, if you can do so just map P2 controlls to the exact same buttons as P1 controlls and your done, if you can not do that read my fix below.
______________________________________________________
I plan to make a thread on this program at some point with all my neat tricks I have learned how to do.
Try this:
Go download glovepie -
http://carl.kenner.googlepages.com/glovepie_download try to find version .30 if you can (just google for it)
This is a scripting program that can tell your computer make any input into a different output, I use it to use my Nintendo Wiimote on my PC but I just for the heck of it tried something like this last week and it works, changing keys or swaping keys on the keyboard temporarly.
First of all Mame does not work with glovepie lafter .117 (found this out the hard way) so use Mame .117 or older
Open up glovepie and write a script like this.
(Just example keys, what you need to do is find out what key is used on the P2 tankstick buttons and assign them to the same function as the P1 buttons, so what your going to do is "clone" your P1 controls over to P2)
glovepie .29 script (no swallow command in .29 so that why I say find .30)
key.a = key.x
key.b = key.y
key.c = key.comma
After you have the script the way it needs to be save it and hit RUN!
When you pres key b on the keyboard, you will see key b & key y be typed, if you hit key a, you will see a & x.
Assuming key x was your P1 Button 1 in the tankstick and key a was the P2 button 1, you would now have the controlls mirrored.
The only thing do not like while it should not effect the game at all is that both keys are registered.
in glovepie .30 they added a new feature called swallow, it hides the key press from the computer so that only 1 key registers.
Glovepie .30 Script
key.a = swallow(key.x)
So with this script you press key x and key a is the only key that the computer would see. So write the whole script to have P2 controls swallowed and equal to P1 controls and your all set.
It is possible other programs can do this same thing, one that comes to mind is AutoHotKey, and many game button mapping programs like Pinnical Game Profiler may also work but I have not tried them and do not know the script language for AutoHotKey.