aboutsummaryrefslogtreecommitdiff
path: root/src/net/cbaines/suma/BusSpecificStopView.java
blob: 79b13050b878c73b69ea3aa300158b3cae93a607 (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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
 * Southampton University Map App
 * Copyright (C) 2011  Christopher Baines
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

package net.cbaines.suma;

import java.sql.SQLException;
import java.text.DateFormat;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.res.Resources;
import android.net.Uri;
import android.util.Log;
import android.view.Gravity;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnLongClickListener;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;

import com.j256.ormlite.android.apptools.OpenHelperManager;
import com.j256.ormlite.dao.Dao;

public class BusSpecificStopView extends LinearLayout implements OnClickListener, OnLongClickListener {

	private static final String TAG = "BusSpecificStopView";

	// private static final String TAG = "StopView";

	private final TextView location;
	private final TextView time;
	private final ProgressBar timeProgress;

	private String onClickMessage = "";
	private final BusActivity context;

	private Stop stop;

	private String onClickHelpMessage;
	private String onClickUnidentifiedMessage;

	public BusSpecificStopView(BusActivity context, Stop stop) {
		super(context);

		this.context = context;

		View.inflate(context, R.layout.bus_specific_stop_view, this);

		// location = new TextView(context);
		location = (TextView) findViewById(R.id.busSpecificStopViewName);
		location.setTextSize(22f);
		location.setGravity(Gravity.LEFT);

		// time = new TextView(context);
		time = (TextView) findViewById(R.id.busSpecificStopViewTime);
		time.setTextSize(22f);

		// timeProgress = new ProgressBar(context, null, android.R.attr.progressBarStyleSmall);
		timeProgress = (ProgressBar) findViewById(R.id.busSpecificStopViewProgressBar);

		Resources resources = context.getResources();
		onClickHelpMessage = resources.getString(R.string.bus_stop_view_on_click_toast_help_message);
		onClickUnidentifiedMessage = resources.getString(R.string.bus_stop_view_on_click_toast_unidentified_message);

		setStop(stop);

		// RelativeLayout.LayoutParams relativeParams = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
		// LayoutParams.WRAP_CONTENT);
		// relativeParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
		//
		// RelativeLayout.LayoutParams relativeParams2 = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
		// LayoutParams.FILL_PARENT);
		// relativeParams2.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
		//
		// addView(location, relativeParams);
		// addView(time, relativeParams2);
		//
		// // LinearLayout progressLayout = new LinearLayout(context);
		// // progressLayout.setOrientation(LinearLayout.VERTICAL);
		// // progressLayout.addView(timeProgress, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
		//
		// addView(timeProgress, relativeParams2);
	}

	public void setStop(Stop stop) {

		// Log.i(TAG, "Time of arival " + stop.arivalTime);

		this.stop = stop;

		// if (stop.busStop.description.length() > 20) {
		// location.setText(stop.busStop.description.substring(0, 20)); // TODO
		// } else {
		location.setText(stop.busStop.description); // TODO
		// }

		if (stop.arivalTime != null) { // Time available
			time.setText(stop.getShortTimeToArival());
			time.setVisibility(View.VISIBLE);
			timeProgress.setVisibility(View.GONE);
		} else if (stop instanceof StopLoading) {
			time.setText("");
			time.setVisibility(View.GONE);
			timeProgress.setVisibility(View.VISIBLE);
		} else { // No time available (yet) and not currently loading
			time.setVisibility(View.GONE);
			time.setText("");
			timeProgress.setVisibility(View.GONE);
		}

		DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);

		try {
			Dao<Bus, Integer> busDao = helper.getBusDao();

			busDao.refresh(stop.bus);

			if (stop.arivalTime != null) {
				if (stop.live) {
					onClickMessage = stop.busStop.description + " at "
							+ DateFormat.getTimeInstance(DateFormat.SHORT).format(stop.arivalTime);
				} else {
					onClickMessage = stop.busStop.description + " at "
							+ DateFormat.getTimeInstance(DateFormat.SHORT).format(stop.arivalTime) + " (timetabled)";
				}
			} else {
				onClickMessage = stop.busStop.description + " on route, but arival time is not avalible";
			}
		} catch (SQLException e) {
			e.printStackTrace();
		}

		this.setOnClickListener(this);
		this.setOnLongClickListener(this);
	}

	public void onClick(View v) {
		DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);
		try {
			Dao<Bus, Integer> busDao = helper.getBusDao();
			busDao.refresh(stop.bus);
		} catch (SQLException e) {
			e.printStackTrace();
		}

		if (stop.bus.id != null) {
			context.makeToast(onClickMessage, onClickHelpMessage, Toast.LENGTH_SHORT);
		} else {
			context.makeToast(onClickMessage, Toast.LENGTH_SHORT);
		}
	}

	public boolean onLongClick(View v) { // TODO
		DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);

		try {
			Dao<Bus, Integer> busDao = helper.getBusDao();

			busDao.refresh(stop.bus);

			if (stop.bus.id != null) {
				Uri uri = Uri.parse("geo:" + Util.E6IntToDouble(stop.busStop.point.getLatitudeE6()) + ","
						+ Util.E6IntToDouble(stop.busStop.point.getLongitudeE6()) + "?z=18");

				Log.i(TAG, "Starting a activity for " + uri);

				Intent mapIntent = new Intent(Intent.ACTION_VIEW, uri);
				((Activity) context).startActivity(mapIntent);
			} else {
				context.makeToast(onClickUnidentifiedMessage, Toast.LENGTH_SHORT);
			}

		} catch (SQLException e) {
			e.printStackTrace();
		}
		return false;
	}

}