-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsample.cpp
executable file
·122 lines (111 loc) · 3.97 KB
/
sample.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* Sample program for PiPS2 library.
* Compile: g++ sample.cpp PiPS2.cpp -o sample -lwiringPi
*
* Sets up the PS2 remote for analog mode and to return all pressure values.
* Reads controller every 10ms and prints the buttons that are pressed to the console.
* BTN_START uses the functionality to detect a button push or release.
* Holding R2 will print the pressure values of the right analog stick to console.
* All other buttons just cause a message to be printed after every read if they are being pressed.
*
* You can just implement the same functionality from the Start button or from the R2 functionality
* for any keys.
*
*/
#include <wiringPi.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include "PiPS2.h"
#define READDELAYMS 10
int main(int argc, char **argv)
{
char *progname = *argv++; argc--;
if (wiringPiSetupPhys () == -1)
{
fprintf (stdout, "Unable to start wiringPi: %s\n",
strerror (errno)) ;
return 1 ;
}
////////////// PiPS2 stuff ////////////////////////////
// Create a PIPS2 object
PIPS2 pips2;
int nextRead = READDELAYMS;
if (!pips2.initializeController(19, 21, 23, 24))
{
fprintf(stderr, "%s: Failed to configure gamepad\nController is not responding.\nExiting ...\n", progname);
exit(EXIT_FAILURE);
}
int returnVal = pips2.reInitializeController(ALLPRESSUREMODE);
if (returnVal == -1)
{
printf("%s: Invalid Mode\n", progname);
exit(EXIT_FAILURE);
} else if (returnVal == -2)
{
printf("%s: Took too many tries to reinit.\n", progname);
exit(EXIT_FAILURE);
}
delay(50);
printf("Control mode = %d\n", pips2.PS2data[1]);
while (1)
{
if (millis() > nextRead)
{
nextRead += READDELAYMS;
// Read the controller.
pips2.readPS2();
// Example detecting when a button is pressed or released.
char changedStates[2]; // Create the vector to hold changed states.
pips2.getChangedStates(changedStates); // Populate the vector
char btnDowns[2]; // Create the vector of buttons that have been pushed since last read.
char btnUps[2]; // Create the vector of buttons that have been pushed since last read.
// Buttons that have been pushed down are buttons that are currently down and have changed.
btnDowns[0] = ~pips2.PS2data[3] & changedStates[0];
// Buttons that have been released are buttons that are currently up and have changed.
btnUps[0] = pips2.PS2data[3] & changedStates[0];
// Just going to check for the START button.
if (CHK(btnDowns[0], BTN_START))
printf("BTN_START has been pushed DOWN\n");
if (CHK(btnUps[0], BTN_START))
printf("BTN_START has been RELEASED\n");
// Example reading each button.
if (!CHK(pips2.PS2data[3], BTN_SELECT))
printf("BTN_SELECT is pressed\n");
if (!CHK(pips2.PS2data[3], BTN_RIGHT_JOY))
printf("BTN_RIGHT_JOY is pressed\n");
if (!CHK(pips2.PS2data[3], BTN_LEFT_JOY))
printf("BTN_LEFT_JOY is pressed\n");
//if (!CHK(pips2.PS2data[3], BTN_START))
// printf("BTN_START is pressed\n");
if (!CHK(pips2.PS2data[3], BTN_UP))
printf("BTN_UP is pressed\n");
if (!CHK(pips2.PS2data[3], BTN_RIGHT))
printf("BTN_RIGHT is pressed\n");
if (!CHK(pips2.PS2data[3], BTN_DOWN))
printf("BTN_DOWN is pressed\n");
if (!CHK(pips2.PS2data[3], BTN_LEFT))
printf("BTN_LEFT is pressed\n");
if (!CHK(pips2.PS2data[4], BTN_L2))
printf("BTN_L2 is pressed\n");
if (!CHK(pips2.PS2data[4], BTN_R2))
{
printf("Right Joy Horizontal = %d\tVertical = %d\n", pips2.PS2data[5], pips2.PS2data[6]);
}
if (!CHK(pips2.PS2data[4], BTN_L1))
printf("BTN_L1 is pressed\n");
if (!CHK(pips2.PS2data[4], BTN_R1))
printf("BTN_R1 is pressed\n");
if (!CHK(pips2.PS2data[4], BTN_TRIANGLE))
printf("BTN_TRIANGLE is pressed\n");
if (!CHK(pips2.PS2data[4], BTN_CIRCLE))
printf("BTN_CIRCLE is pressed\n");
if (!CHK(pips2.PS2data[4], BTN_X))
printf("X is pressed\n");
if (!CHK(pips2.PS2data[4], BTN_SQUARE))
printf("BTN_SQUARE is pressed\n");
}
}
return 0;
}