blob: e27f94141182e628a5ea1b26bf5b2c37bd0b94df (
plain)
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
|
package com.orbekk;
import java.net.InetAddress;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.orbekk.discovery.Broadcaster;
import com.orbekk.discovery.SameService;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class HelloAndroidActivity extends Activity {
private Logger logger = LoggerFactory.getLogger(getClass());
public void createNetwork(View unused) {
logger.info("Creating network");
Intent intent = new Intent(this, SameService.class);
intent.setAction("create");
startService(intent);
}
public void joinNetwork(View unused) {
logger.info("Joining network");
Intent intent = new Intent(this, SameService.class);
intent.setAction("join");
// InetAddress address = new Broadcaster(this).getBroadcastAddress();
EditText t = (EditText)findViewById(R.id.editText1);
intent.putExtra("ip", t.getText().toString());
startService(intent);
}
private void showIpAddress() {
TextView t = (TextView)findViewById(R.id.ipAddress);
t.setText("My IP: ");
t.append(new Broadcaster(this).getWlanAddress().getHostAddress());
}
private void showBroadcastAddress() {
EditText t = (EditText)findViewById(R.id.editText1);
t.setText(new Broadcaster(this).getBroadcastAddress().getHostAddress());
}
/**
* Called when the activity is first created.
* @param savedInstanceState If the activity is being re-initialized after
* previously being shut down then this Bundle contains the data it most
* recently supplied in onSaveInstanceState(Bundle). <b>Note: Otherwise it is null.</b>
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
System.setProperty("java.net.preferIPv4Stack", "true");
System.setProperty("java.net.preferIPv6Addresses", "false");
setContentView(R.layout.main);
showIpAddress();
showBroadcastAddress();
// ClientApp client = new ClientApp();
// SameInterface client_ = client.getClient(10015, "ClientNetwork",
// "http://10.0.0.6:10010/");
// GameController controller = GameController.create(
// GameController.newPlayer(), client_);
// setContentView(new GameView(this, controller));
// Broadcast broadcast = new Broadcast(this);
// broadcast.sendBroadcast("Broadcast test".getBytes(), 10010);
// Broadcaster broadcaster = new Broadcaster();
// Log.i(TAG, "Broadcast success: " + broadcaster.sendBroadcast(10010, "Broadcast test from Android".getBytes()));
//
}
@Override
protected void onDestroy() {
super.onDestroy();
}
}
|