Lines Matching refs:Pads
31 PADStatus Pads[PAD_MAX_CONTROLLERS]; variable
43 Pads[chan].err, in PrintPads()
44 (Pads[chan].button & PAD_BUTTON_A) ? 'O' : '_', in PrintPads()
45 (Pads[chan].button & PAD_BUTTON_B) ? 'O' : '_', in PrintPads()
46 (Pads[chan].button & PAD_BUTTON_X) ? 'O' : '_', in PrintPads()
47 (Pads[chan].button & PAD_BUTTON_Y) ? 'O' : '_', in PrintPads()
48 (Pads[chan].button & PAD_BUTTON_START) ? 'O' : '_', in PrintPads()
49 (Pads[chan].button & PAD_TRIGGER_Z) ? 'O' : '_', in PrintPads()
50 (Pads[chan].button & PAD_TRIGGER_L) ? 'O' : '_', in PrintPads()
51 (Pads[chan].button & PAD_TRIGGER_R) ? 'O' : '_', in PrintPads()
53 (Pads[chan].button & PAD_BUTTON_LEFT) ? '<' : '_', in PrintPads()
54 (Pads[chan].button & PAD_BUTTON_RIGHT) ? '>' : '_', in PrintPads()
55 (Pads[chan].button & PAD_BUTTON_UP) ? '^' : '_', in PrintPads()
56 (Pads[chan].button & PAD_BUTTON_DOWN) ? 'v' : '_', in PrintPads()
58 Pads[chan].stickX, in PrintPads()
59 Pads[chan].stickY, in PrintPads()
60 Pads[chan].substickX, in PrintPads()
61 Pads[chan].substickY, in PrintPads()
62 Pads[chan].triggerLeft, in PrintPads()
63 Pads[chan].triggerRight); in PrintPads()
83 PADRead(Pads); in main()
89 switch (Pads[chan].err) in main()
92 if ( Pads[chan].button & PAD_BUTTON_START) in main()
127 memcpy(org, Pads, sizeof org); in main()
130 PADClamp2(Pads, PAD_STICK_CLAMP_OCTA_WITH_MARGIN); in main()
131 PADClampTrigger(Pads, PAD_TRIGGER_FIXED_BASE); in main()
136 PADClamp2(Pads, PAD_STICK_CLAMP_OCTA_WITHOUT_MARGIN); in main()
137 PADClampTrigger(Pads, PAD_TRIGGER_INDIVIDUAL_BASE); in main()
142 memcpy(Pads, org, sizeof org); in main()
145 PADClampCircle2(Pads, PAD_STICK_CLAMP_CIRCLE_WITH_MARGIN); in main()
146 PADClampTrigger(Pads, PAD_TRIGGER_FIXED_BASE); in main()
151 PADClampCircle2(Pads, PAD_STICK_CLAMP_CIRCLE_WITHOUT_MARGIN); in main()
152 PADClampTrigger(Pads, PAD_TRIGGER_INDIVIDUAL_BASE); in main()