Post: [PS3][CCAPI][C#] Button Monitoring!
06-07-2016, 11:53 AM #1
Freezee
Bounty hunter
(adsbygoogle = window.adsbygoogle || []).push({}); I just converted the TMAPI code from iMCSx to CCAPI, Code is below, It was REALLY easy.

Please, no Hate!


Define the Buttons!
    
public class Buttons
{
//Define Buttons For Modern Warfare 3
public static uint
X = 1024,
O = 512,
Square = 2097152,
L3 = 139264,
R3 = 262144,
L2 = 32768,
R2 = 16384,
Start = 128,
L1 = 2056,
R1 = 65536,
Crouch = 512,
Prone = 256;
}


Define a few things..
    public class PS3Types
{
// Create Connect Types
public static int StartButton;
public static byte[] BIND = new byte[4];
public static uint[] processIDs;
public static uint ProcessID;
}


get the PlayerState from entities...
    private uint getPlayerState(int clientIndex)
{
// Get the playerState from entities.
byte[] monitor = new byte[4];
PS3.GetMemory(0x000FCA280 + ((uint)clientIndex * 0x280) + 0x158, monitor);
Array.Reverse(monitor);
uint Next = BitConverter.ToUInt32(monitor, 0);
return Next;
}


Get Button Value
            private uint UseButtonMonitoring(int client)
{
// Get buttons value.
return (getPlayerState(client) + 0x3609);
}


Detect the Button.
    private uint DetectButton(int clientID)
{
// Reverse Byte[] to UInt32 and detect them.
PS3.GetMemory(UseButtonMonitoring(clientID), PS3Types.BIND);
return System.BitConverter.ToUInt32(PS3Types.BIND, 0);
}





and last but not least.
    
//Define a Client if you want

uint client0 = DetectButton(0);

//Then you can use if/else statements for functions or something else.
if (client0 == Buttons.L1 + Buttons.R1)
{
//do something
}





Lets hope we will see some CCAPI/CEX Mod Menus, not just TMAPI/DEX Smile

If you have any problems, Just let me know.



EDIT: A little button test feature you can try in Private Match,

DOWNLOAD SOURCE: You must login or register to view this content.

SCREENSHOT, CLICK SPOILER!

Screenshot:You must login or register to view this content.

Virus Scan not needed since its open source..


Note: I used the direct PS3Lib classes, they arent modified, I got them from You must login or register to view this content.
.
Last edited by Freezee ; 06-07-2016 at 12:33 PM. Reason: Updated..

The following user thanked Freezee for this useful post:

EnzoMezzomo

Copyright © 2025, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo