..:: PCSX2 Forums ::..

Full Version: XInput Wrapper for DS3 and Play.com USB Dual DS2 Controller
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
Is there a way to 'unplug' the controller? Some games won't let you use keyboard if a controller is plugged in, and I can't figure out how to remove it from the windows controller list. The controller is unplugged/turned off and the scp monitor is off, I've tried disabling the service but the controller/s always remain in the windows controller list. Any help?
(08-30-2014, 03:57 PM)Vuth Wrote: [ -> ]Is there a way to 'unplug' the controller? Some games won't let you use keyboard if a controller is plugged in, and I can't figure out how to remove it from the windows controller list. The controller is unplugged/turned off and the scp monitor is off, I've tried disabling the service but the controller/s always remain in the windows controller list. Any help?

you gotta stop (or restart) the service

Quote:....
5. Stop the Service [net stop "SCP DS3 Service" - from an elevated command prompt, or use Service Control Manager]
.....
8. Start the Service [net Start "SCP DS3 Service" - from an elevated command prompt, or use Service Control Manager]

If you need a quick access use batch files (create a txt file and change the file type to bat) here is working code, just copy&paste

start

Code:
@echo off

:: BatchGotAdmin
:-------------------------------------
REM  --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config

\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
    echo Requesting administrative privileges...
    goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    set params = %*:"=""
    echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >>

"%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    del "%temp%\getadmin.vbs"
    exit /B

:gotAdmin
    pushd "%CD%"
    CD /D "%~dp0"
:--------------------------------------

net start "SCP DS3 Service"

stop

Code:
@echo off

:: BatchGotAdmin
:-------------------------------------
REM  --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config

\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
    echo Requesting administrative privileges...
    goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    set params = %*:"=""
    echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >>

"%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    del "%temp%\getadmin.vbs"
    exit /B

:gotAdmin
    pushd "%CD%"
    CD /D "%~dp0"
:--------------------------------------

net stop "SCP DS3 Service"

If you want a toggle switch (if its running it stops it, if its stopped it runs it)

Code:
@echo off

:: BatchGotAdmin
:-------------------------------------
REM  --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config

\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
    echo Requesting administrative privileges...
    goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    set params = %*:"=""
    echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >>

"%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    del "%temp%\getadmin.vbs"
    exit /B

:gotAdmin
    pushd "%CD%"
    CD /D "%~dp0"
:--------------------------------------

NET START "SCP DS3 Service" ||NET STOP "SCP DS3 Service"

Since you need administrator rights, it will open a UAC prompt
Thanks for the quick reply, worked (although not the .bats, but I don't mind).
However, having to stop the service to clear the controllers seems a bit redundant to me - the tool I used before this (DS4 Tool) removed the controller when it disconnected, why does this one keep it active, or 'reserved' as it says in the monitor?
For now I shall keep using that tool as I do not have to worry about it keeping a fake controller in the list.
(08-29-2014, 03:35 AM)wyfer Wrote: [ -> ]did you checked xinput in the controller settings? just tested with ridge racer 64 and it works. No need to select forcefeedback divice.

OMFG, lol I didn't check off xinput, so that's why. Thank you so very much! It work's now! Just tried with Smash Bro. hahaha
hey, can anyone help? i have installed the drivers and my computer detects the controller but if i try to use it in a game it doesnt work. here are my scpdriver and scpservice logs. thanks
I thought I'd ask this. Now this is a very old game to have to use this in, but I cannot get the bottom L and R buttons to work with this at all in FFXI. And I'd really like to give my brother's controller back..which is why I was looking into using a PS3 controller. (Was testing this with his Sixaxis since I got the cord today. I'll be getting the actual Dual Shock 2 in a day or so.)

Does anyone know a configuration that will LIKE ffxi all together or am I screwed until I retire from the game? (That will be soon, I'm waiting for the final update on the last expansion). I just don't want to have to use two controllers, one of which isn't mine!
I still cant get it to work ive been trying to.. and just noticed that if i open xinput controller tester it shows no value for the buttons.. how can i fix this?
(08-30-2014, 10:23 PM)maryadavies Wrote: [ -> ]I thought I'd ask this. Now this is a very old game to have to use this in, but I cannot get the bottom L and R buttons to work with this at all in FFXI. And I'd really like to give my brother's controller back..which is why I was looking into using a PS3 controller. (Was testing this with his Sixaxis since I got the cord today. I'll be getting the actual Dual Shock 2 in a day or so.)

Does anyone know a configuration that will LIKE ffxi all together or am I screwed until I retire from the game? (That will be soon, I'm waiting for the final update on the last expansion). I just don't want to have to use two controllers, one of which isn't mine!

This is an Xinput wrapper, it works as an Xinput controller, FFXI uses Directinput. On Xinput Left Trigger (L2) and Right Trigger (R2) work like axes, not like buttons, with scpmonitor you can remap L3 and R3 to L2/R2, or you can try using a software like joy2key, xpadder, pinnaclegameprofiler, antimicro, and emulate keyboard keys
Just started using the XInput wrapper and its been great!

I was wondering if it were at all possible to bring my computer out of sleep by turning on my DS3 that is paired with my PC. Is there any chance something like this could work?
I'll try Xpadder to fix it. (I have a official copy.)

Tried motioninjoy (which is hard to find but still works) but it does some..wierdstuff..with the emulator. Also bluescreened my PC, which is no-good.

If someone could add direct input to something like this sometime so I didn't have to do some wierdstuff to get XI to behave, I'd appreciate it!!! I am sure that FFXI is not the only game that doesn't like this and would rather not behave very well...

[Edit]Xpadder did the trick. I'll just have to figure out how to script load it when I load Playonline. At least this is only temporary. I estimate Seekers of Adoulin has only 2 more months, at most, that's when I'm thinking about retiring.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510