2009-12-17 15:27:57 -05:00
|
|
|
/*
|
|
|
|
Yaaic - Yet Another Android IRC Client
|
|
|
|
|
|
|
|
Copyright 2009 Sebastian Kaspari
|
|
|
|
|
|
|
|
This file is part of Yaaic.
|
|
|
|
|
|
|
|
Yaaic 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Yaaic 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 Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.yaaic.view;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.app.Dialog;
|
|
|
|
import android.content.ComponentName;
|
|
|
|
import android.content.Intent;
|
2010-03-02 14:18:44 -05:00
|
|
|
import android.content.IntentFilter;
|
2009-12-17 15:27:57 -05:00
|
|
|
import android.content.ServiceConnection;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.IBinder;
|
2010-03-05 09:56:57 -05:00
|
|
|
import android.util.Log;
|
|
|
|
import android.view.Display;
|
2010-03-05 13:34:05 -05:00
|
|
|
import android.view.KeyEvent;
|
2009-12-17 15:27:57 -05:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
2010-03-05 13:34:05 -05:00
|
|
|
import android.widget.AdapterView;
|
2009-12-17 15:27:57 -05:00
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.EditText;
|
2010-03-05 09:56:57 -05:00
|
|
|
import android.widget.Gallery;
|
2009-12-17 15:27:57 -05:00
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
2010-03-05 09:56:57 -05:00
|
|
|
import android.widget.ViewSwitcher;
|
2010-03-05 13:34:05 -05:00
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
|
|
|
import android.widget.TableLayout.LayoutParams;
|
2010-03-05 09:56:57 -05:00
|
|
|
|
|
|
|
import org.yaaic.R;
|
|
|
|
import org.yaaic.Yaaic;
|
|
|
|
import org.yaaic.adapter.DeckAdapter;
|
|
|
|
import org.yaaic.irc.IRCBinder;
|
|
|
|
import org.yaaic.irc.IRCService;
|
|
|
|
import org.yaaic.listener.ChannelListener;
|
|
|
|
import org.yaaic.model.Broadcast;
|
2010-03-05 13:34:05 -05:00
|
|
|
import org.yaaic.model.Channel;
|
2010-03-06 11:52:22 -05:00
|
|
|
import org.yaaic.model.Message;
|
2010-03-05 09:56:57 -05:00
|
|
|
import org.yaaic.model.Server;
|
|
|
|
import org.yaaic.receiver.ChannelReceiver;
|
2009-12-17 15:27:57 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Connected to server
|
|
|
|
*
|
|
|
|
* @author Sebastian Kaspari <sebastian@yaaic.org>
|
|
|
|
*/
|
2010-03-05 13:34:05 -05:00
|
|
|
public class ServerActivity extends Activity implements ServiceConnection, ChannelListener, OnItemClickListener
|
2009-12-17 15:27:57 -05:00
|
|
|
{
|
2010-03-05 09:56:57 -05:00
|
|
|
public static final String TAG = "Yaaic/ServerActivity";
|
|
|
|
|
|
|
|
private int serverId;
|
2010-03-02 14:18:44 -05:00
|
|
|
private Server server;
|
2009-12-17 15:27:57 -05:00
|
|
|
private IRCBinder binder;
|
2010-03-05 09:56:57 -05:00
|
|
|
private ChannelReceiver receiver;
|
2009-12-17 15:27:57 -05:00
|
|
|
|
2010-03-05 09:56:57 -05:00
|
|
|
private ViewSwitcher switcher;
|
|
|
|
private Gallery deck;
|
|
|
|
private DeckAdapter deckAdapter;
|
2009-12-17 15:27:57 -05:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState)
|
|
|
|
{
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
2010-03-05 09:56:57 -05:00
|
|
|
serverId = getIntent().getExtras().getInt("serverId");
|
2010-03-02 14:18:44 -05:00
|
|
|
server = (Server) Yaaic.getInstance().getServerById(serverId);
|
2010-03-05 09:56:57 -05:00
|
|
|
setTitle("Yaaic - " + server.getTitle());
|
2009-12-17 15:27:57 -05:00
|
|
|
|
|
|
|
setContentView(R.layout.server);
|
|
|
|
|
|
|
|
((TextView) findViewById(R.id.title)).setText(server.getTitle());
|
|
|
|
((ImageView) findViewById(R.id.status)).setImageResource(server.getStatusIcon());
|
|
|
|
|
2010-03-05 13:34:05 -05:00
|
|
|
Display d = getWindowManager().getDefaultDisplay();
|
|
|
|
|
|
|
|
deckAdapter = new DeckAdapter(d.getWidth(), d.getHeight());
|
2010-03-05 09:56:57 -05:00
|
|
|
deck = (Gallery) findViewById(R.id.deck);
|
|
|
|
deck.setAdapter(deckAdapter);
|
2010-03-05 13:34:05 -05:00
|
|
|
deck.setOnItemClickListener(this);
|
|
|
|
|
2010-03-05 09:56:57 -05:00
|
|
|
switcher = (ViewSwitcher) findViewById(R.id.switcher);
|
2010-03-05 13:34:05 -05:00
|
|
|
|
|
|
|
for (Channel channel : server.getChannels()) {
|
|
|
|
onNewChannel(channel.getName());
|
|
|
|
}
|
2009-12-17 15:27:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume()
|
|
|
|
{
|
|
|
|
super.onResume();
|
|
|
|
|
|
|
|
Intent intent = new Intent(this, IRCService.class);
|
|
|
|
bindService(intent, this, 0);
|
2010-03-05 09:56:57 -05:00
|
|
|
|
2010-03-05 13:54:04 -05:00
|
|
|
receiver = new ChannelReceiver(server.getId(), this);
|
2010-03-05 09:56:57 -05:00
|
|
|
registerReceiver(receiver, new IntentFilter(Broadcast.CHANNEL_MESSAGE));
|
|
|
|
registerReceiver(receiver, new IntentFilter(Broadcast.CHANNEL_NEW));
|
|
|
|
registerReceiver(receiver, new IntentFilter(Broadcast.CHANNEL_REMOVE));
|
2009-12-17 15:27:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPause()
|
|
|
|
{
|
|
|
|
super.onPause();
|
|
|
|
|
|
|
|
unbindService(this);
|
2010-03-05 09:56:57 -05:00
|
|
|
unregisterReceiver(receiver);
|
2009-12-17 15:27:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public void onServiceConnected(ComponentName name, IBinder service)
|
|
|
|
{
|
|
|
|
this.binder = (IRCBinder) service;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onServiceDisconnected(ComponentName name)
|
|
|
|
{
|
|
|
|
this.binder = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
super.onCreateOptionsMenu(menu);
|
|
|
|
|
|
|
|
// inflate from xml
|
|
|
|
MenuInflater inflater = getMenuInflater();
|
|
|
|
inflater.inflate(R.menu.server, menu);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onMenuItemSelected(int featureId, MenuItem item)
|
|
|
|
{
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.disconnect:
|
|
|
|
binder.getService().getConnection(serverId).quitServer();
|
2010-03-05 13:43:02 -05:00
|
|
|
server.clearChannels();
|
2009-12-17 15:27:57 -05:00
|
|
|
setResult(RESULT_OK);
|
|
|
|
finish();
|
|
|
|
break;
|
|
|
|
case R.id.join:
|
|
|
|
final Dialog dialog = new Dialog(this);
|
|
|
|
dialog.setContentView(R.layout.channeldialog);
|
|
|
|
dialog.setTitle(R.string.channel);
|
|
|
|
|
|
|
|
Button button = (Button) dialog.findViewById(R.id.join);
|
|
|
|
button.setOnClickListener(new OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
String channel = ((EditText) v.getRootView().findViewById(R.id.channel)).getText().toString();
|
|
|
|
binder.getService().getConnection(serverId).joinChannel(channel);
|
|
|
|
dialog.cancel();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-03-05 13:54:04 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get server object assigned to this activity
|
|
|
|
*
|
|
|
|
* @return the server object
|
|
|
|
*/
|
|
|
|
public Server getServer()
|
|
|
|
{
|
|
|
|
return server;
|
|
|
|
}
|
2010-03-02 14:18:44 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* On channel message
|
|
|
|
*/
|
2010-03-02 14:28:32 -05:00
|
|
|
public void onChannelMessage(String target)
|
2010-03-02 14:18:44 -05:00
|
|
|
{
|
2010-03-06 11:52:22 -05:00
|
|
|
Message message = server.getChannel(target).pollMessage();
|
2010-03-02 14:28:32 -05:00
|
|
|
|
2010-03-05 10:25:15 -05:00
|
|
|
TextView canvas = (TextView) deckAdapter.getItemByName(target);
|
|
|
|
|
|
|
|
if (canvas != null) {
|
2010-03-06 12:59:46 -05:00
|
|
|
canvas.append(message.render(canvas.getContext()));
|
2010-03-06 19:01:35 -05:00
|
|
|
int y = (canvas.getLineCount() * canvas.getLineHeight()) - canvas.getHeight() + 20;
|
2010-03-08 13:55:32 -05:00
|
|
|
//Log.d(TAG, "Scrolling to: " + y);
|
2010-03-06 19:01:35 -05:00
|
|
|
canvas.scrollTo(0, y);
|
2010-03-05 10:25:15 -05:00
|
|
|
deckAdapter.notifyDataSetChanged();
|
2010-03-05 13:34:05 -05:00
|
|
|
|
|
|
|
if (target.equals(deckAdapter.getSwitchedName())) {
|
2010-03-06 12:59:46 -05:00
|
|
|
((TextView) deckAdapter.getSwitchedView()).append(message.render(canvas.getContext()));
|
2010-03-05 13:34:05 -05:00
|
|
|
}
|
2010-03-05 10:25:15 -05:00
|
|
|
} else {
|
|
|
|
Log.d(TAG, "No canvas found");
|
|
|
|
}
|
2010-03-02 14:18:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On new channel
|
|
|
|
*/
|
2010-03-05 08:25:33 -05:00
|
|
|
public void onNewChannel(String target)
|
2010-03-02 14:18:44 -05:00
|
|
|
{
|
2010-03-05 09:56:57 -05:00
|
|
|
Log.d(TAG, "onNewChannel() " + target);
|
|
|
|
|
2010-03-05 13:34:05 -05:00
|
|
|
deckAdapter.addItem(server.getChannel(target));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On Channel item clicked
|
|
|
|
*/
|
|
|
|
public void onItemClick(AdapterView<?> adapterView, View view, int position, long id)
|
|
|
|
{
|
|
|
|
Log.d(TAG, "Selected channel: " + position);
|
2010-03-05 09:56:57 -05:00
|
|
|
|
2010-03-05 13:34:05 -05:00
|
|
|
Channel channel = deckAdapter.getItem(position);
|
|
|
|
view = deckAdapter.renderChannel(channel, switcher);
|
|
|
|
//getView(position, view, deck);
|
|
|
|
view.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
|
|
|
|
deckAdapter.setSwitched(channel.getName(), view);
|
|
|
|
switcher.addView(view);
|
|
|
|
switcher.showNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On key down
|
|
|
|
*
|
|
|
|
* This is glue code to call onBackPressed() which
|
|
|
|
* will be automatically called by later android releases
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event)
|
|
|
|
{
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_BACK) {
|
|
|
|
onBackPressed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On back key pressed
|
|
|
|
*/
|
|
|
|
public void onBackPressed()
|
|
|
|
{
|
|
|
|
if (deckAdapter.isSwitched()) {
|
|
|
|
switcher.showNext();
|
|
|
|
switcher.removeView(deckAdapter.getSwitchedView());
|
|
|
|
//switcher.showNext();
|
|
|
|
deckAdapter.setSwitched(null, null);
|
|
|
|
Log.d(TAG, "Back pressed");
|
|
|
|
} else {
|
|
|
|
Log.d(TAG, "Back pressed -> FINISH");
|
|
|
|
finish();
|
|
|
|
}
|
2010-03-02 14:18:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On channel remove
|
|
|
|
*/
|
2010-03-05 08:25:33 -05:00
|
|
|
public void onRemoveChannel(String target)
|
2010-03-02 14:18:44 -05:00
|
|
|
{
|
2010-03-06 15:05:23 -05:00
|
|
|
// XXX: Implement me :)
|
2010-03-02 14:18:44 -05:00
|
|
|
}
|
2009-12-17 15:27:57 -05:00
|
|
|
}
|