summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/Login.java
blob: a359c6a522a72916c942104bebedde19b27f5978 (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
138
139
140
141
142
143
144
145
package com.macaroon.piztor;

import android.annotation.SuppressLint;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.View;
import android.view.Window;
import android.view.animation.AlphaAnimation;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;

public class Login extends PiztorAct {

	Button btnLogin;
	EditText edtUser, edtPass;
	int loginButtonClick = 1, retryButtonClick = 2, loginFailed = 3;
	Handler handler = new Handler() {
		@Override
		public void handleMessage(Message m) {
			System.out.println("receive what : " + m.what);
			if (m.what == -1) {
				((Exception) m.obj).printStackTrace();
				actMgr.trigger(loginFailed);
				return;
			}
			if (m.what == 0) {
				ResLogin res = (ResLogin) m.obj;
				Log.d(LogInfo.login, LogInfo.s);
				app.token = res.t;
				app.sublist = res.sublist;
				app.username = res.uinfo.username;
				app.mapInfo.myInfo = new UserInfo(res.uinfo.uid);
				app.mapInfo.myInfo.setInfo(res.uinfo.gid.company,
						res.uinfo.gid.section, res.uinfo.sex,
						res.uinfo.nickname);
				app.mapInfo.myInfo.level = res.uinfo.level;
				app.mapInfo.myInfo.nickname = res.uinfo.nickname;
				System.out.println("login !!!!" + res.sublist.size());
				actMgr.trigger(AppMgr.loginSuccess);
			} else {
				System.out.println("login handler reveive other info   :  "
						+ m.what);
			}
		}
	};

	class StartStatus extends ActStatus {

		@Override
		void enter(int e) {
		}

		@Override
		void leave(int e) {
		}
	}

	class LoginStatus extends ActStatus {

		@Override
		void enter(int e) {
			String user = edtUser.getText().toString();
			String pass = edtPass.getText().toString();
			long nowtime = System.currentTimeMillis();
			System.out.println(user + " : " + pass + "\n");
			transam.send(new ReqLogin(user, pass, nowtime, 5000));
		}

		@Override
		void leave(int e) {
			if (e == loginFailed) {
				Toast toast = Toast.makeText(getApplicationContext(),
						"login failed", Toast.LENGTH_LONG);
				toast.show();
			} else {
				System.out.println("fuck!!!asdfasdfasdf!");
			}
		}

	}

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		id = "login";
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_login);
		ImageView imageView = (ImageView) findViewById(R.id.login_img);
		AlphaAnimation alphaUp = new AlphaAnimation(0.0f, 1.0f);
		alphaUp.setDuration(2000);
		alphaUp.setStartOffset(500);
		alphaUp.setFillAfter(true);
		imageView.startAnimation(alphaUp);
	}

	@Override
	protected void onStart() {
		super.onStart();
		btnLogin = (Button) findViewById(R.id.login_btn_login);
		edtUser = (EditText) findViewById(R.id.user_id);
		edtPass = (EditText) findViewById(R.id.user_pass);
		btnLogin.setOnClickListener(new View.OnClickListener() {
			@Override
			public void onClick(View arg0) {
				actMgr.trigger(loginButtonClick);
			}
		});
	}

	@Override
	protected void onResume() {
		if (app.isExiting)
			finish();
		app.isLogout = false;
		super.onResume();
		ActStatus[] r = new ActStatus[2];
		r[0] = new StartStatus();
		r[1] = new LoginStatus();
		actMgr = new ActMgr(appMgr, this, r[0], r);
		actMgr.add(r[0], loginButtonClick, r[1]);
		actMgr.add(r[1], loginFailed, r[0]);
		transam.setHandler(handler);
	}

	@Override
	public boolean onKeyDown(int keyCode, KeyEvent event) {
		if (keyCode == KeyEvent.KEYCODE_BACK) {
			app.isExiting = true;
		}
		return super.onKeyDown(keyCode, event);
	}

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

}