Padt (call target)

From Final Fantasy XII Wiki
Revision as of 09:46, 23 July 2019 by Admin (talk | contribs) (Created page with "{{Call|id=0x0007|return=u_short|name=padt|args=|act=}}Returns previously polled gamepad button data. All controls are converted to Dualshock 2 equivalents. VM doesn't see but...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Signature:

u_short padt(); // id: 0x0007

Returns previously polled gamepad button data.

All controls are converted to Dualshock 2 equivalents. VM doesn't see buttons not assigned to DS2 counterparts. The values are as follows:

#define PAD_LEFT      0x0080
#define PAD_DOWN      0x0040
#define PAD_RIGHT     0x0020
#define PAD_UP        0x0010
#define PAD_START     0x0008
#define PAD_R3        0x0004
#define PAD_L3        0x0002
#define PAD_SELECT    0x0001
#define PAD_SQUARE    0x8000
#define PAD_CROSS     0x4000
#define PAD_CIRCLE    0x2000
#define PAD_TRIANGLE  0x1000
#define PAD_R1        0x0800
#define PAD_L1        0x0400
#define PAD_R2        0x0200
#define PAD_L2        0x0100