Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: Use RCPS3 Move Games with Lightgun using scripts  (Read 64365 times)

0 Members and 1 Guest are viewing this topic.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #40 on: August 31, 2020, 04:41:40 pm »
With ahk script, move mouse calibration is OK

But I can't quit calibration. Triangle button (mouse middle + mouse right same time or keyboard 'C' ) not work.

What should I do?

try to first press mouse right...hold it, and than mouse middle. this is working for me.
after you calibrate the "psmove", the calibration screen game not responds to your keyboard anymore, so this is the only option for now.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #41 on: August 31, 2020, 05:49:22 pm »
Smarter people than me figured out AHK scripts to let you be able to play RCPS3 games like Time Crisis Razing Storm with your Lightgun. Since we were derailing a little bit from Demulshooter and since this doesn't involve Demulshooter I decided to make a seperate thread. Here is where most of the discussion has been on this page http://forum.arcadecontrols.com/index.php/topic,149714.msg1722002.html#msg1722002

Here is my ahk script that I just made from others who are smarter than me and I included nomousy below it makes the mouse cursor invisible it is optional.

#SingleInstance Force
run rpcs3.exe <Your Path to>\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

Runwait nomousy.exe

ExitApp

Note: this is using a Lightgun as a mouse so I don't guarantee it will work with DolphinBar or others that don't use mouse.

I take no credit for this just passing the info along.

hi,
its only opening rpcs3 for me, but not the game.
i write i like this: run rpcs3.exe d:\emulators\ps3\Razing Storm\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
what i need to fix?
thanks.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #42 on: August 31, 2020, 05:56:18 pm »
Smarter people than me figured out AHK scripts to let you be able to play RCPS3 games like Time Crisis Razing Storm with your Lightgun. Since we were derailing a little bit from Demulshooter and since this doesn't involve Demulshooter I decided to make a seperate thread. Here is where most of the discussion has been on this page http://forum.arcadecontrols.com/index.php/topic,149714.msg1722002.html#msg1722002

Here is my ahk script that I just made from others who are smarter than me and I included nomousy below it makes the mouse cursor invisible it is optional.

#SingleInstance Force
run rpcs3.exe <Your Path to>\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

Runwait nomousy.exe

ExitApp

Note: this is using a Lightgun as a mouse so I don't guarantee it will work with DolphinBar or others that don't use mouse.

I take no credit for this just passing the info along.

hi,
I made it like this. so i wont need to make a shortcut to the script:
run, d:\emulators\rpcs3\rpcs3.exe "d:\emulators\ps3\Razing Storm\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN"

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #43 on: August 31, 2020, 06:04:58 pm »
Smarter people than me figured out AHK scripts to let you be able to play RCPS3 games like Time Crisis Razing Storm with your Lightgun. Since we were derailing a little bit from Demulshooter and since this doesn't involve Demulshooter I decided to make a seperate thread. Here is where most of the discussion has been on this page http://forum.arcadecontrols.com/index.php/topic,149714.msg1722002.html#msg1722002

Here is my ahk script that I just made from others who are smarter than me and I included nomousy below it makes the mouse cursor invisible it is optional.

#SingleInstance Force
run rpcs3.exe <Your Path to>\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

Runwait nomousy.exe

ExitApp

Note: this is using a Lightgun as a mouse so I don't guarantee it will work with DolphinBar or others that don't use mouse.

I take no credit for this just passing the info along.

hi,
its only opening rpcs3 for me, but not the game.
i write i like this: run rpcs3.exe d:\emulators\ps3\Razing Storm\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
what i need to fix?
thanks.

Go to BLUS30528 folder and in the address bar where it says BLUS30528 right click on it and copy address as text, then paste it in the script. You're probably not putting the exact correct location to the game. But I have no idea what your location of the game is. If it's right it should work, it does for me. This is my exact script I copy pasted here that works. I keep the game inside the RCPS3 folder which is not necessary but it's just what I do. Nomousy is also optional if you want no mouse cursor get it from the first post of this thread, if you don't want nomousy remove those lines that say nomousy from the script.

#SingleInstance Force
run rpcs3.exe D:\Jayinem\Downloads\rpcs3-v0.0.11-10807-9a51f222_win64\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

a::
send {RButton}
send {MButton}

Runwait nomousy.exe

ExitApp


You might also have to add the game in the RPCS3 GUI for it to load through the script, I'm not sure about that though.
« Last Edit: August 31, 2020, 06:17:32 pm by Jayinem »

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #44 on: August 31, 2020, 06:25:27 pm »
Smarter people than me figured out AHK scripts to let you be able to play RCPS3 games like Time Crisis Razing Storm with your Lightgun. Since we were derailing a little bit from Demulshooter and since this doesn't involve Demulshooter I decided to make a seperate thread. Here is where most of the discussion has been on this page http://forum.arcadecontrols.com/index.php/topic,149714.msg1722002.html#msg1722002

Here is my ahk script that I just made from others who are smarter than me and I included nomousy below it makes the mouse cursor invisible it is optional.

#SingleInstance Force
run rpcs3.exe <Your Path to>\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

Runwait nomousy.exe

ExitApp

Note: this is using a Lightgun as a mouse so I don't guarantee it will work with DolphinBar or others that don't use mouse.

I take no credit for this just passing the info along.

hi,
I made it like this. so i wont need to make a shortcut to the script:
run, d:\emulators\rpcs3\rpcs3.exe "d:\emulators\ps3\Razing Storm\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN"

That's fine too I don't use desktop shortcuts, I run everything in Launchbox.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #45 on: August 31, 2020, 06:33:32 pm »
do you know how to toggle on/off only the "q button script" and also how to make a button to kill the all script?
thanks.

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #46 on: August 31, 2020, 06:41:37 pm »
I do not know how to do either of those. Someone who's better than me at scripts would have to figure those out.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #47 on: August 31, 2020, 06:43:14 pm »
Esc::ExitApp

ok, so this is to kill the script...but it doesnt disable the q button script (windowd mode)

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #48 on: August 31, 2020, 06:57:50 pm »
Esc::ExitApp

ok, so this is to kill the script...but it doesnt disable the q button script (windowd mode)

Cool I modified the script in the first post to reflect this.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #49 on: August 31, 2020, 06:59:11 pm »
i dont know to toggle the q to make disable the "full screen windowed mode" so i just made this alt+f4 to close the game window.
i added this to my script, f1 to close the script. esc to alt+f4 the game screen, withouth closing rpcs3.

f1::ExitApp
esc::Send !{f4}

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #50 on: August 31, 2020, 07:16:26 pm »
I read if Esc:ExitApp isn't working you need to add Return to the end of the script before it. Seems to work good. So it would be like this

#SingleInstance Force
run rpcs3.exe D:\Pawn\Downloads\rpcs3-v0.0.11-10807-9a51f222_win64\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

a::
send {RButton}
send {MButton}

Runwait nomousy.exe
Return

Esc::ExitApp

« Last Edit: August 31, 2020, 07:18:22 pm by Jayinem »

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #51 on: August 31, 2020, 09:37:15 pm »
Esc:ExitApp just gives me problems, because I already have an exit script in the same script, so it conflicts and I can't even exit with escape. So then the ahk stays open and messes with my keyboard/mouse after the game is closed due to the script.  There's got to be a way to force AHK to exit and be able to escape the game.

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #52 on: August 31, 2020, 10:30:22 pm »
Ok after hours of testing and googling, this is a good script IMO. It closes the ahk when you exit rpcs3. It also gives your mouse cursor back if you use nomousy after you close, and you can exit. So it was everything I wanted at least. However, I'm having trouble with the keyboards c v and a so I still use mouse to get past calibration.

#SingleInstance Force
run rpcs3.exe Enter Your Path To BLUS30528 HERE\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

a::
send {RButton}
send {MButton}

ESC::
 Send !{f4}
Runwait nomousy.exe
ExitApp
« Last Edit: August 31, 2020, 10:40:43 pm by Jayinem »

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #53 on: August 31, 2020, 10:53:15 pm »
Ok this is my final script because I fixed the keyboard you can hit a and then c+v after you calibrate and it works. It does everything I can think of. I am putting it in the OP.

#SingleInstance Force
run rpcs3.exe Your Path to BLUS30528 Goes Here\BLUS30528\PS3_GAME\USRDIR\EBOOT.BIN
Run nomousy.bat

q::
    MouseGetPos, , , win
    maxWindow("ahk_id " win)
return

maxWindow(title) {
    WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
    WinActivate, % title
    WinSet, Style, -0xC00000, % title
    WinSet, Style, -0x40000, % title
    WinSet, AlwaysOnTop, Off, % title
}

c::
Send {RButton Down}
Send {LButton Down}
Sleep, 60
Send {LButton Up}
Send {RButton Up}

v::
Send {RButton Down}
Send {MButton Down}
Sleep, 60
Send {MButton Up}
Send {RButton Up}

a::
send {RButton Down}
send {MButton Down}

ESC::
 Send !{f4}
Runwait nomousy.exe
ExitApp
« Last Edit: September 01, 2020, 11:09:50 am by Jayinem »

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #54 on: September 01, 2020, 12:30:02 am »
I updated the first post to explain the whole process better if someone new to this comes along.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #55 on: September 01, 2020, 09:47:59 am »
Great work man, thank you:)

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #56 on: September 01, 2020, 10:03:02 am »
I have this script that i use to toggle mouse off (with f1 key) or on...i dontt use nomousy.
https://drive.google.com/file/d/1X_p0-OSSbs8UrTZZaIh27Le4xgta9HSw/view?usp=sharing

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #57 on: September 01, 2020, 11:33:05 am »
I have problem with the script...it just not closing.
after i press esc the autokey symbole is still in the tray and not closing.

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #58 on: September 01, 2020, 11:48:26 am »
I have problem with the script...it just not closing.
after i press esc the autokey symbole is still in the tray and not closing.

That's weird, I just tried it again and it closes the game and the AHK exits when I just tried it.

I changed the script in the OP several times are you using the one I have up there now?

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #59 on: September 01, 2020, 11:50:18 am »
yes, thanks...i will try to get help in the autokey forum:)

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #60 on: September 01, 2020, 11:51:38 am »
Copy paste the entire script in the OP (remove the nomousy lines since you dont use them) change the path to your game and retry it.

bryhud

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 113
  • Last login:July 16, 2023, 07:08:24 pm
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #61 on: September 03, 2020, 12:05:48 am »
Is this script supposed to make it full screen as well?


Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #62 on: September 03, 2020, 05:10:51 am »
Is this script supposed to make it full screen as well?

No, fullscreen is not working with Lightguns with these scripts. It would probably take something like Demulshooter for fullscreen to ever work.

bryhud

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 113
  • Last login:July 16, 2023, 07:08:24 pm
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #63 on: September 03, 2020, 09:25:53 am »
Is this script supposed to make it full screen as well?

No, fullscreen is not working with Lightguns with these scripts. It would probably take something like Demulshooter for fullscreen to ever work.

Thanks.. one more question. Should we have to calibrate every time we start the game? Is there a way to save the calibration so it isnt needed every time?

 

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #64 on: September 03, 2020, 09:37:23 am »
Huge Tip!

if you put "framelimiter" to 30fps in rpcs3 gpu settings, for light gun games , the gun input the will be much better, and also it fixes sound issues and stuttering for me.
you can also try to disable anti aliasing to see if you gain more performances.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #65 on: September 03, 2020, 09:41:52 am »
Is this script supposed to make it full screen as well?

No, fullscreen is not working with Lightguns with these scripts. It would probably take something like Demulshooter for fullscreen to ever work.

Thanks.. one more question. Should we have to calibrate every time we start the game? Is there a way to save the calibration so it isnt needed every time?

YES, we need to calibrate every time, i dont know about a way to skip it.

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #66 on: September 03, 2020, 10:29:00 am »
Huge Tip!

if you put "framelimiter" to 30fps in rpcs3 gpu settings, for light gun games , the gun input the will be much better, and also it fixes sound issues and stuttering for me.
you can also try to disable anti aliasing to see if you gain more performances.

This is probably dependant your computer, I have Nvidia GTE 1650 I don't have these problems.

bryhud

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 113
  • Last login:July 16, 2023, 07:08:24 pm
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #67 on: September 03, 2020, 11:25:59 am »
Ok thanks

I was able to get this running in full screen using windows borderless gaming. Seems to work great!

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #68 on: September 03, 2020, 11:50:02 am »
Ok thanks

I was able to get this running in full screen using windows borderless gaming. Seems to work great!

It's funny I tried that and it worked the first time, but then my calibration was all screwed after the first time.

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #69 on: September 03, 2020, 01:02:31 pm »
Ok thanks

I was able to get this running in full screen using windows borderless gaming. Seems to work great!

Yeah I had to redownload it because mine was not working right but I got it working good. This is the best way to play these games fullscreen.

Download http://westechsolutions.net/sites/WindowedBorderlessGaming/download

run the game, right click on the app choose Add window. Go to the game window and press F3. It's fullscreen and the calibration is not effected. Go to settings > Global settings and check "Automatically set resolution in the game's settings" and choose the resolution.

Added this to the OP.
« Last Edit: September 03, 2020, 01:10:40 pm by Jayinem »

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #70 on: September 03, 2020, 01:22:08 pm »
Nope had to remove it from the OP. I keep testing it and it will work good, then the next time I calibrate successfully but after the cursor goes the opposite direction and is not working correctly. Also every time I play i have to add Window and hit F3, so unless I can get it working good I consider it not worth the trouble.

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #71 on: September 03, 2020, 01:32:52 pm »
Huge Tip!

if you put "framelimiter" to 30fps in rpcs3 gpu settings, for light gun games , the gun input the will be much better, and also it fixes sound issues and stuttering for me.
you can also try to disable anti aliasing to see if you gain more performances.

This is probably dependant your computer, I have Nvidia GTE 1650 I don't have these problems.

i have i5 6600 16gb ram, gtx 1070. its a 4 core cpu so its weak for most rpcs3 games. cant wait to upgrade:)
what your's cpu?

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #72 on: September 03, 2020, 01:36:35 pm »
Huge Tip!

if you put "framelimiter" to 30fps in rpcs3 gpu settings, for light gun games , the gun input the will be much better, and also it fixes sound issues and stuttering for me.
you can also try to disable anti aliasing to see if you gain more performances.

This is probably dependant your computer, I have Nvidia GTE 1650 I don't have these problems.

i have i5 6600 16gb ram, gtx 1070. its a 4 core cpu so its weak for most rpcs3 games. cant wait to upgrade:)
what your's cpu?

Mine's 4 cores too but I don't have a problem. But I have an i5-9300H

Processor   Intel(R) Core(TM) i5-9300H CPU @ 4.1GHz, 4 Core(s), 8 Logical Processor(s)
Nvidia GTEForce GTX 1650 16 GB Ram


lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #73 on: September 03, 2020, 01:42:51 pm »
yep, you have a better cpu...mine run at 3.3hz.
cant wait for 2022 for zen 4:)

lllll44

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 169
  • Last login:March 25, 2024, 07:58:49 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #74 on: September 03, 2020, 01:45:19 pm »
Hi man, i saw in another forum you have a good scaling script, can you please give me it, it will be great for me also:)

 "I just solved this problem on another forum. The problem is scaling. Right click on desktop and choose Display settings and change to 100%. For me this was not ideal though because it made everything on my TV too small when I wasn't playing the game. So someone gave me a script to solve this. Let me know if you need the script but it's a little difficult you need settings in your registry."

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #75 on: September 03, 2020, 01:49:01 pm »


This is the best I can get it to work properly with good calibration. It's fullscreen except the label on top.

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #76 on: September 03, 2020, 01:50:15 pm »
Hi man, i saw in another forum you have a good scaling script, can you please give me it, it will be great for me also:)

 "I just solved this problem on another forum. The problem is scaling. Right click on desktop and choose Display settings and change to 100%. For me this was not ideal though because it made everything on my TV too small when I wasn't playing the game. So someone gave me a script to solve this. Let me know if you need the script but it's a little difficult you need settings in your registry."

I have a script for Time Crisis 5 not RPCS3 that changes scaling. Do you need it for Time Crisis 5?

bryhud

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 113
  • Last login:July 16, 2023, 07:08:24 pm
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #77 on: September 03, 2020, 01:52:09 pm »
Nope had to remove it from the OP. I keep testing it and it will work good, then the next time I calibrate successfully but after the cursor goes the opposite direction and is not working correctly. Also every time I play i have to add Window and hit F3, so unless I can get it working good I consider it not worth the trouble.

To make it so you dont have to add the window every time you need to change the rpcs3 window title

goto settings -> emulator -> game window title and change it to %T

save and retry, add in window borderless gaming one more time and then you should be set.

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #78 on: September 03, 2020, 01:57:16 pm »
Nope had to remove it from the OP. I keep testing it and it will work good, then the next time I calibrate successfully but after the cursor goes the opposite direction and is not working correctly. Also every time I play i have to add Window and hit F3, so unless I can get it working good I consider it not worth the trouble.

To make it so you dont have to add the window every time you need to change the rpcs3 window title

goto settings -> emulator -> game window title and change it to %T

save and retry, add in window borderless gaming one more time and then you should be set.

Ok are you saying delete everything except %T in that setting?

Maybe it's my setup I don't know but it's not working right for me in fullscreen. I shoot the targets then it lets you aim around with the gun after and it's god awful not calibrated correctly at all. As soon as I go back to bordered it's fiine.
« Last Edit: September 03, 2020, 02:04:02 pm by Jayinem »

Jayinem

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 305
  • Last login:September 29, 2021, 05:26:02 pm
  • I want to build my own arcade controls!
Re: Use RCPS3 Move Games with Lightgun using scripts
« Reply #79 on: September 03, 2020, 02:08:07 pm »
Nope had to remove it from the OP. I keep testing it and it will work good, then the next time I calibrate successfully but after the cursor goes the opposite direction and is not working correctly. Also every time I play i have to add Window and hit F3, so unless I can get it working good I consider it not worth the trouble.

To make it so you dont have to add the window every time you need to change the rpcs3 window title

goto settings -> emulator -> game window title and change it to %T

save and retry, add in window borderless gaming one more time and then you should be set.

What resolution are you using on WindowedBorderlessGaming and in rcps3?