XInput Wrapper for DS3 and Play.com USB Dual DS2 Controller
(06-17-2014, 09:45 PM)Nado Wrote: I don't mean to nag.... but will the DS4 touch-pad input be supported at some point? Laugh
FYI
http://forums.pcsx2.net/Thread-DS4Window...k-4-driver

Sponsored links

(06-17-2014, 11:06 PM)hellbringer616 Wrote: With those 3 controllers hooked up what game were you playing?

Hammerwatch. I have never noticed any lag, but this is a PC game, it sounds like you are using a couple different emulators. I wonder if your lag could be related to that?

I use a piece of software called PGP to save and launch multiple controller configurations, I have experienced lag using this extra layer with emulators.... are you using anything similar?
Smile 
(06-18-2014, 10:53 AM)Anatasia Wrote: FYI
http://forums.pcsx2.net/Thread-DS4Window...k-4-driver

Thanks, I'll have to try this over the weekend after I dig into the project thread. I like to get up-to speed before I attempt major changes, this being the 3rd (4th??) branch of Scarlet's wrapper:

Quote: This is an offshoot of the project found here, derived from the 1.3 RC3 version:
http://forums.pcsx2.net/Thread-DS4-To-XInput-Wrapper

Quote: ...I was inspired by the tool made by Scarlet.Crush for DS3.

The reason I have stuck with Scarlet DS3 is because the server supports both DS3 and DS4 at the same time....Excl
(06-17-2014, 09:39 PM)Nado Wrote: I use a BT400 and am real satisfied with it. However I have only tested it on 3 simultaneous controllers, and that was just once or twice.

The only issue I have had is; the dongle seems to want to have a clear path to the controller, if anything gets between the controller and the dongle, communication is lost (using a rear USB port wasn't an option). This may be unique to my setup though...

Any bluetooth V2+EDR usb dongle is rated for up to 3 Mbit/s, a V3 bluetooth dongle like this one here : SMK LINK NANO promises transfer speeds of 24 Mbit/s, but uses different technology and may not work with this wrapper (a question for someone else).

My advice would be to go with a reputable brand, and buy it from a vendor that has a good return policy! Tongue

Good luck!

So i just got my BT400 in the mail however i cannot get this thing to install with the driver. I plugged it in, installed the actual drivers. than ran the DS3 driver installer. and it overwrote my other Bluetooth (for my mouse) but not the new Asus one :/ any ideas?
Intel Core i7-8700k @5ghz
G.Skill 16GB DDR4 @3600mhz
GeForce GTX 1080 8GB
Windows 10 x64
Hey guys, I'm using a DS4 and everything is working great!

But is there a way to change the colour of the light bar?

Could someone tell me say where the line of code that controls the colour number the DS4 uses?

Cheers
works with DS4tool.

As with DS3tool, I don't seem to be able to pair any of my DS3 or DS4.
When I start SCP Server, the 4 LEDs on my DS3 keep blinking and it won't pair.

is there a way to bring the DS3 into pair mode like the DS4?

also, after installing the SCP driver, the BT icon in my task bar is no longer showing up, also in PC-Settings, bluetooth disappeared.


But it seems the driver has been successfully installed:

Code:
SCP Driver Installer 1.2.2.175 [21.06.2014 18:16:50]

Detected - Microsoft Windows 81 (6.2.9200.0 AMD64)
Selected WIN81 configuration.

INFO    - ENTER:  DriverPackageInstallW
INFO    - Looking for Model Section [SCProductions.NTamd64]...
INFO    - RETURN: DriverPackageInstallW  (0x103)
INFO    - ENTER:  DriverPackageInstallW
INFO    - Looking for Model Section [SCProductions.NTamd64]...
INFO    - Installing INF file 'C:\controller\ScpServer\bin\System\BthWinUsb.inf' (Plug and Play).
INFO    - Looking for Model Section [SCProductions.NTamd64]...
INFO    - Installing devices with Id "USB\VID_0A12&PID_0001&REV_1958" using INF "C:\WINDOWS\System32\DriverStore\FileRepository\bthwinusb.inf_amd64_bb65126544cdaf87\BthWinUsb.inf".
INFO    - ENTER UpdateDriverForPlugAndPlayDevices...
SUCCESS - RETURN UpdateDriverForPlugAndPlayDevices.
INFO    - Installation was successful.
SUCCESS - Install completed
INFO    - RETURN: DriverPackageInstallW  (0x0)
INFO    - ENTER:  DriverPackageInstallW
INFO    - Looking for Model Section [SCProductions.NTamd64]...
INFO    - Installing INF file 'C:\controller\ScpServer\bin\System\Ds3WinUsb.inf' (Plug and Play).
INFO    - Looking for Model Section [SCProductions.NTamd64]...
INFO    - Installing devices with Id "USB\VID_054C&PID_0268&REV_0100" using INF "C:\WINDOWS\System32\DriverStore\FileRepository\ds3winusb.inf_amd64_15691982ca5c21ae\Ds3WinUsb.inf".
INFO    - ENTER UpdateDriverForPlugAndPlayDevices...
SUCCESS - RETURN UpdateDriverForPlugAndPlayDevices.
INFO    - Installation was successful.
SUCCESS - Install completed
INFO    - RETURN: DriverPackageInstallW  (0x0)

Install Succeeded.

-- Install Summary --
DS3 USB Driver
Bluetooth Driver
[/quote]

Main Rig: i7-3770k @4.5ghz | 16GB DDR3 | Nvidia GTX 980 TI | Win 10 X64
Laptop: MSI GT62VR | i7-6700HQ | 16GB DDR4 | Nvidia GTX 1060 | Win 10 X64

(12-28-2013, 05:05 PM)edo386 Wrote: Here you go, I've compiled the SCPcontrol in order to use tilt instead of the right joystick, all you need to do is to replace the SCPcontrol.dll with the attached one, make sure to stop the service before that and re-start replacing it.

For those interested on the code, I've installed MS Visual Studio Express 2012, edited the file BusDevices.cs within the SCPcontrol project, by trial and error I've found that Input[50] and Input[52] were the tilt inputs. You need to add 0x80 before sending the data to the scale(); function.

// 22 and 23 are pressure for Up and Right
// 24 and 25 are pressure for Down and Left
// 26 and 26 are L2 and R2
// 28 and 29 are L1 and R1 pressure
// 30 and 31 are Pressure for Triangle and Circle
// 32 and 33 are Pressure for X and square

Line 190
Code:
Int32 ThumbRX = Scale((Byte)(Input[50]+0x80), Global.FlipRX);
Int32 ThumbRY = -Scale((Byte)(Input[52]+0x80), Global.FlipRY);

Does not work. SCPServer does not even start with the replaced DLL.

Main Rig: i7-3770k @4.5ghz | 16GB DDR3 | Nvidia GTX 980 TI | Win 10 X64
Laptop: MSI GT62VR | i7-6700HQ | 16GB DDR4 | Nvidia GTX 1060 | Win 10 X64

(06-19-2014, 04:30 PM)Nado Wrote: Hammerwatch. I have never noticed any lag, but this is a PC game, it sounds like you are using a couple different emulators. I wonder if your lag could be related to that?

I use a piece of software called PGP to save and launch multiple controller configurations, I have experienced lag using this extra layer with emulators.... are you using anything similar?

I am not, just the driver, than the emu. thats it. Now i am using Pokopom as the pad plugin, Which one are you using? not that this issue will solve Mario party..

Also another strange quirk i get is that if i tilt the controller so it faces up, i lose connection from a mere 12 feet away (if that) do i just need a more powerful BT dongle? Also still can't get my ASUS dongle to be recognized
Intel Core i7-8700k @5ghz
G.Skill 16GB DDR4 @3600mhz
GeForce GTX 1080 8GB
Windows 10 x64
Hi,
I have a question. How to change number of the controller, you know player 1, 2, 3, 4? I use DS3 via usb cable (SCP-DS3-Driver) and a Microsoft X360 controller via wireless receiver.
Now is set to be always PS3 controller number 1 and X360 controller no. 2. Is any way to change that?
(04-03-2014, 09:46 PM)Scarlet.Crush Wrote: 1.2.2.175 Update Notes

ScpPad2Key.exe
1. Renamed to GtaMapper.exe, please delete old ScpPad2Key.exe.
2. Renamed GtaPadState to GamePadState and use ScpPadState as base class.
2. Modified to use utility classes within ScpControl.dll.
3. Modified keyboard focus cues and tab order.
4. Added saving/loading of options to/from the Registry.
Cheat.

DskMapper Key Binding
1. Right Stick -> Mouse Movement
2. DPAD -> Cursor Keys [w/ auto-repeat]
3. R1 -> Left Mouse Button
4. L1 -> Right Mouse Button
5. Cross -> Enter
6. Circle -> Escape
7. Square -> Tab
8. Triangle -> Spacebar
9. R2 -> PageUp
10. L2 -> PageDown

To Toggle between the above being Enabled/Disabled
DS3 : PS + Start
DS4 : TouchPad

I love you so much ....
I didn't know i could use it as a mouse too!
I have been struggling with third party programs like XboxMouse and Xpadder to emulate mouse input withouth knowing you already did it!

Is there a way to map scrolling wheel and Mouse 3 Button?
also, how can i give use to the select and start button?
I would like to add a keybind to run/close a program I use often.

Thank you again!




Users browsing this thread: 7 Guest(s)