summaryrefslogtreecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/43/d08732c36a0d00131719b896d543f08c
blob: 00f4f6a66e400ae115bb4d68145ba869bb3dbf61 (plain) (blame)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.macaroon.piztor;

import android.annotation.SuppressLint;
import android.location.Location;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.Menu;
import android.widget.ImageButton;

public class Main extends PiztorAct {

	final static int SearchButtonPress = 1;
	final static int FetchButtonPress = 2;
	final static int FocuseButtonPress = 3;
	final static int SuccessFetch = 4;
	final static int FailedFetch = 5;
	final static int TimerFlush = 6; 
	ActMgr actMgr;
	ImageButton btnSearch, btnFetch, btnFocus, btnSettings;
	@SuppressLint("HandlerLeak")
	Handler handler = new Handler() {
		@Override
		public void handleMessage(Message m) {
			if (m.what != 0) {
				Location l = (Location) m.obj;
				if (l == null)
					System.out.println("fuck!!!");
				ReqUpdate r = new ReqUpdate(UserInfo.token, l.getLatitude(),
						l.getLongitude(), System.currentTimeMillis(), 1000);
				AppMgr.transam.send(r);
			}
		}
	};
	
	String cause(int t) {
		switch (t) {
		case SearchButtonPress:
			return "SearchButtonPress";
		case FetchButtonPress:
			return "FetchButtonPress";
		case FocuseButtonPress:
			return "FocuseButtonPress";
		case SuccessFetch:
			return "SuccessFetch";
		case FailedFetch:
			return "FailedFetch";
		case TimerFlush:
			return "TimerFlush";
		default:
			return "Fuck!!!";
		}
	}

	class StartStatus extends ActStatus {

		@Override
		void enter(int e) {
			System.out.println("enter start status!!!!");
		}

		@Override
		void leave(int e) {
			System.out.println("leave start status!!!! because" + cause(e));
		}
		
	}
	
	class FetchStatus extends ActStatus {

		@Override
		void enter(int e) {
			// TODO Auto-generated method stub
			
		}

		@Override
		void leave(int e) {
			// TODO Auto-generated method stub
			
		}
		
	}
	
	class FocusStatus extends ActStatus {

		@Override
		void enter(int e) {
			// TODO Auto-generated method stub
			
		}

		@Override
		void leave(int e) {
			// TODO Auto-generated method stub
			
		}
		
	}
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		id = "Main";
		super.onCreate(savedInstanceState);
		AppMgr.tracker.setHandler(handler);
		ActStatus[] r = new ActStatus[3];
		r[0] = new StartStatus();
		r[1] = new FetchStatus();
		r[2] = new FocusStatus();
		actMgr = new ActMgr(this, r[0], r);
		actMgr.add(r[0], FocuseButtonPress, r[2]);
		actMgr.add(r[0], FetchButtonPress, r[1]);
		actMgr.add(r[1], FetchButtonPress, r[0]);
		actMgr.add(r[1], FailedFetch, r[0]);
		actMgr.add(r[2], FocuseButtonPress, r[0]);
		actMgr.add(r[0], TimerFlush, r[0]);
		setContentView(R.layout.activity_main);
	}

	@Override
	protected void onStart() {
		super.onStart();
		btnFetch = (ImageButton) findViewById(R.id.footbar_btn_fetch);
		btnFocus = (ImageButton) findViewById(R.id.footbar_btn_focus);
		btnSearch = (ImageButton) findViewById(R.id.footbar_btn_search);
		btnSettings = (ImageButton) findViewById(R.id.footbar_btn_settings);
		
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}