-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJavadathoe.java
85 lines (75 loc) · 2.96 KB
/
Javadathoe.java
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
//THIS IS THE SERVER for the ANDROID client to talk to. This is the most important part!
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.Inet4Address;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.UnknownHostException;
public class Javdathoe {
/**
* @param args
*/
private static ServerSocket serverSocket;
private static Socket clientSocket;
private static InputStreamReader inputStreamReader;
private static BufferedReader bufferedReader;
private static String message;
static JTmap PS3 = new JTmap();
public static void main(String[] args) {
try {
System.out.println("Computer IP: " + Inet4Address.getLocalHost().getHostAddress());
}
catch (UnknownHostException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
int port = 1337; //THIS IS THE PORT YOUR ANDROID DEVICE IS COMMUNICATING THROUGH.
try {
serverSocket = new ServerSocket(port); //Server socket
} catch (IOException e) {
System.out.println("Could not listen on port: " + port);
return;
}
System.out.println("Server started. Listening to the port " + port);
Boolean AndroidConnected = false;
while (true) {
try {
clientSocket = serverSocket.accept(); //accept the client connection
inputStreamReader = new InputStreamReader(clientSocket.getInputStream());
bufferedReader = new BufferedReader(inputStreamReader); //get the client message
message = bufferedReader.readLine();
if(message.equals("Connect"))
{
PS3.init();
PS3.Connect();
AndroidConnected = true;
}
if(message.equals("Attach"))
{
if(AndroidConnected == false)
{
}
else
{
PS3.Attach();
}
}
//https://stackoverflow.com/questions/18571223/convert-java-string-to-byte-array
if(message.contains("ChangeName|"))
{
System.out.println(message);
PS3.SetMemory(0x1BBBC2C, new byte[] {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, 31);
String nameGT = message.replace("ChangeName|", "");
System.out.println(nameGT);
//message.split("-")[0];
PS3.WriteString(0x1BBBC2C, nameGT);
}
inputStreamReader.close();
clientSocket.close();
} catch (IOException ex) {
System.out.println("Problem reading message!");
}
}
}
}