Xbox One Controller On PS4

Titan One general support. Questions, firmware update, feature request.

Xbox One Controller On PS4

Postby JukeBox360 » Tue Mar 22, 2016 6:58 pm

Hello Console Tuner forum!

1st time post here. I have a quick question I'm hoping someone could solve.

I have a Titan One. I'm trying to use my Xbox One controller on my PlayStation 4.

It works well already but I'm trying to figure out how to properly remap basically one button.

The touch button. Now I'm not trying to add touch sensitive option to the Xbox One controller. I'm simply trying to add the click in.

I'm currently playing The Division on ps4. Using this controller doesn't allow me to open up my map. So I'm trying to make a button for the touch click. I figured removing the share button and making it the click would be nice. But I can't seem to figure this out.

Is this even possible?

Thanks!

Juke
User avatar
JukeBox360
Sergeant First Class
Sergeant First Class
 
Posts: 24
Joined: Tue Mar 22, 2016 6:52 pm

Re: Xbox One Controller On PS4

Postby JukeBox360 » Tue Mar 22, 2016 7:59 pm

So is this not an option? I'd really like to be able to bring out my map when playing the division using this adapter.

Not being able to is kind of a deal breaker for me. :cry:

Could I make some sort of button combo to bring out the map instead?

Just need to somehow get the touch pad click option asap.
User avatar
JukeBox360
Sergeant First Class
Sergeant First Class
 
Posts: 24
Joined: Tue Mar 22, 2016 6:52 pm

Re: Xbox One Controller On PS4

Postby bonefisher » Tue Mar 22, 2016 8:05 pm

bonefisher
Lieutenant General
Lieutenant General
 
Posts: 5413
Joined: Thu Jan 29, 2015 10:49 am

Re: Xbox One Controller On PS4

Postby JukeBox360 » Tue Mar 22, 2016 8:13 pm

Yup, I have literally zero clue as to how I'm suppose to use that. I don't exactly know how to script.

Nor do I know where to even get the idea for the touch pad click option.

There isn't some sort of combo option I could do vs re mapping? Like pressing A + Xbox Home = Touch Pad Click?
User avatar
JukeBox360
Sergeant First Class
Sergeant First Class
 
Posts: 24
Joined: Tue Mar 22, 2016 6:52 pm

Re: Xbox One Controller On PS4

Postby bonefisher » Tue Mar 22, 2016 8:27 pm

put the script up and I'll put it in there for you.
bonefisher
Lieutenant General
Lieutenant General
 
Posts: 5413
Joined: Thu Jan 29, 2015 10:49 am

Re: Xbox One Controller On PS4

Postby bonefisher » Tue Mar 22, 2016 8:29 pm

You want it on A button?
bonefisher
Lieutenant General
Lieutenant General
 
Posts: 5413
Joined: Thu Jan 29, 2015 10:49 am

Re: Xbox One Controller On PS4

Postby JukeBox360 » Tue Mar 22, 2016 9:06 pm

Anything works really. I'm not going to complain about what I get.

A combo option would work great so the buttons stay default.

I think A + Home ( or whatever you could do ) = Touch Pad click would work great!

If a remap is easier. I don't need a share button. As I literally never use it. So share = Touch Click would work great as well. ( idk what the little left click button is called on the xbox. Menu? idk
User avatar
JukeBox360
Sergeant First Class
Sergeant First Class
 
Posts: 24
Joined: Tue Mar 22, 2016 6:52 pm

Re: Xbox One Controller On PS4

Postby bonefisher » Tue Mar 22, 2016 11:06 pm

Code: Select all

main {
    if(event_release(8)) {    // LEFT STICK CLICK HOLD FOR 500ms
   
    if(get_ptime(8) >= 500) { // AND RELEASE TO GET YOUR TOUCH PAD.
   
        combo_run(touch);}    // WORKS NORMAL UNDER 500ms.
    }
}

combo touch {
   
    set_val(27, 100);
   
    wait(200);
}

Try this to see if you like!
bonefisher
Lieutenant General
Lieutenant General
 
Posts: 5413
Joined: Thu Jan 29, 2015 10:49 am

Re: Xbox One Controller On PS4

Postby JukeBox360 » Wed Mar 23, 2016 7:41 am

bonefisher wrote:
Code: Select all

main {
    if(event_release(8)) {    // LEFT STICK CLICK HOLD FOR 500ms
   
    if(get_ptime(8) >= 500) { // AND RELEASE TO GET YOUR TOUCH PAD.
   
        combo_run(touch);}    // WORKS NORMAL UNDER 500ms.
    }
}

combo touch {
   
    set_val(27, 100);
   
    wait(200);
}

Try this to see if you like!


Ty very much! I'm assuming I just load this into the GPC script part thing. Save it and load it onto the device?

Also I'm not sure I'm reading this right. But based off what I'm reading it seems it's left click to do this option? Left click is the run option in the game.
User avatar
JukeBox360
Sergeant First Class
Sergeant First Class
 
Posts: 24
Joined: Tue Mar 22, 2016 6:52 pm

Re: Xbox One Controller On PS4

Postby bonefisher » Wed Mar 23, 2016 9:45 am

Code: Select all

 // TAP VIEW BUTTON QUICK FOR YOUR TOUCH
// OR HOLD FOR 500ms TO GET REGULAR PRESS

main {
    if((event_release(1)) && (get_ptime(1) <= 500)) {
   
        combo_run(touch); }

    block(1, 500);
}

combo touch {
   
    set_val(27, 100);
   
    wait(200);
   
    set_val(27, 0);
}


Or You can go with this! Yes copy and paste in new script and run.
bonefisher
Lieutenant General
Lieutenant General
 
Posts: 5413
Joined: Thu Jan 29, 2015 10:49 am


Return to Titan One Device

Who is online

Users browsing this forum: No registered users and 123 guests