624daadcd9
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@670 c613c5cb-e716-0410-b11b-feb51c14d237
234 lines
6.9 KiB
Java
234 lines
6.9 KiB
Java
//
|
|
// $Id$
|
|
//
|
|
// Vilya library - tools for developing networked games
|
|
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
|
|
// http://www.threerings.net/code/vilya/
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License as published
|
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library 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
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
package com.threerings.micasa.client;
|
|
|
|
import java.awt.EventQueue;
|
|
import java.awt.event.WindowAdapter;
|
|
import java.awt.event.WindowEvent;
|
|
import java.io.IOException;
|
|
import javax.swing.JPanel;
|
|
|
|
import com.samskivert.util.Config;
|
|
import com.samskivert.util.RunQueue;
|
|
import com.threerings.util.MessageManager;
|
|
|
|
import com.threerings.presents.client.Client;
|
|
import com.threerings.presents.dobj.DObjectManager;
|
|
|
|
import com.threerings.crowd.client.LocationDirector;
|
|
import com.threerings.crowd.client.OccupantDirector;
|
|
import com.threerings.crowd.client.PlaceView;
|
|
|
|
import com.threerings.crowd.chat.client.ChatDirector;
|
|
|
|
import com.threerings.parlor.client.ParlorDirector;
|
|
|
|
import com.threerings.micasa.util.MiCasaContext;
|
|
|
|
/**
|
|
* The MiCasa client takes care of instantiating all of the proper
|
|
* managers and loading up all of the necessary configuration and getting
|
|
* the client bootstrapped. It can be extended by games that require an
|
|
* extended context implementation.
|
|
*/
|
|
public class MiCasaClient
|
|
implements RunQueue
|
|
{
|
|
/**
|
|
* Initializes a new client and provides it with a frame in which to
|
|
* display everything.
|
|
*/
|
|
public void init (MiCasaFrame frame)
|
|
throws IOException
|
|
{
|
|
// create our context
|
|
_ctx = createContextImpl();
|
|
|
|
// create the directors/managers/etc. provided by the context
|
|
createContextServices();
|
|
|
|
// for test purposes, hardcode the server info
|
|
_client.setServer("localhost", Client.DEFAULT_SERVER_PORTS);
|
|
|
|
// keep this for later
|
|
_frame = frame;
|
|
|
|
// log off when they close the window
|
|
_frame.addWindowListener(new WindowAdapter() {
|
|
@Override
|
|
public void windowClosing (WindowEvent evt) {
|
|
// if we're logged on, log off
|
|
if (_client.isLoggedOn()) {
|
|
_client.logoff(true);
|
|
} else {
|
|
// otherwise get the heck out
|
|
System.exit(0);
|
|
}
|
|
}
|
|
});
|
|
|
|
// create our client controller and stick it in the frame
|
|
_frame.setController(new ClientController(_ctx, _frame));
|
|
}
|
|
|
|
/**
|
|
* Returns a reference to the context in effect for this client. This
|
|
* reference is valid for the lifetime of the application.
|
|
*/
|
|
public MiCasaContext getContext ()
|
|
{
|
|
return _ctx;
|
|
}
|
|
|
|
/**
|
|
* Creates the {@link MiCasaContext} implementation that will be
|
|
* passed around to all of the client code. Derived classes may wish
|
|
* to override this and create some extended context implementation.
|
|
*/
|
|
protected MiCasaContext createContextImpl ()
|
|
{
|
|
return new MiCasaContextImpl();
|
|
}
|
|
|
|
/**
|
|
* Creates and initializes the various services that are provided by
|
|
* the context. Derived classes that provide an extended context
|
|
* should override this method and create their own extended
|
|
* services. They should be sure to call
|
|
* <code>super.createContextServices</code>.
|
|
*/
|
|
protected void createContextServices ()
|
|
throws IOException
|
|
{
|
|
// create the handles on our various services
|
|
_client = new Client(null, this);
|
|
|
|
// create our managers and directors
|
|
_locdir = new LocationDirector(_ctx);
|
|
_occdir = new OccupantDirector(_ctx);
|
|
_pardtr = new ParlorDirector(_ctx);
|
|
_msgmgr = new MessageManager(MESSAGE_MANAGER_PREFIX);
|
|
_chatdir = new ChatDirector(_ctx, _msgmgr, null);
|
|
}
|
|
|
|
// documentation inherited from interface RunQueue
|
|
public void postRunnable (Runnable run)
|
|
{
|
|
// queue it on up on the awt thread
|
|
EventQueue.invokeLater(run);
|
|
}
|
|
|
|
// documentation inherited from interface RunQueue
|
|
public boolean isDispatchThread ()
|
|
{
|
|
return EventQueue.isDispatchThread();
|
|
}
|
|
|
|
/**
|
|
* The context implementation. This provides access to all of the
|
|
* objects and services that are needed by the operating client.
|
|
*/
|
|
protected class MiCasaContextImpl implements MiCasaContext
|
|
{
|
|
/**
|
|
* Apparently the default constructor has default access, rather
|
|
* than protected access, even though this class is declared to be
|
|
* protected. Why, I don't know, but we need to be able to extend
|
|
* this class elsewhere, so we need this.
|
|
*/
|
|
protected MiCasaContextImpl ()
|
|
{
|
|
}
|
|
|
|
public Client getClient ()
|
|
{
|
|
return _client;
|
|
}
|
|
|
|
public DObjectManager getDObjectManager ()
|
|
{
|
|
return _client.getDObjectManager();
|
|
}
|
|
|
|
public Config getConfig ()
|
|
{
|
|
return _config;
|
|
}
|
|
|
|
public LocationDirector getLocationDirector ()
|
|
{
|
|
return _locdir;
|
|
}
|
|
|
|
public OccupantDirector getOccupantDirector ()
|
|
{
|
|
return _occdir;
|
|
}
|
|
|
|
public ChatDirector getChatDirector ()
|
|
{
|
|
return _chatdir;
|
|
}
|
|
|
|
public ParlorDirector getParlorDirector ()
|
|
{
|
|
return _pardtr;
|
|
}
|
|
|
|
public void setPlaceView (PlaceView view)
|
|
{
|
|
// stick the place view into our frame
|
|
_frame.setPanel((JPanel)view);
|
|
}
|
|
|
|
public void clearPlaceView (PlaceView view)
|
|
{
|
|
// we'll just let the next place view replace our old one
|
|
}
|
|
|
|
public MiCasaFrame getFrame ()
|
|
{
|
|
return _frame;
|
|
}
|
|
|
|
public MessageManager getMessageManager ()
|
|
{
|
|
return _msgmgr;
|
|
}
|
|
}
|
|
|
|
protected MiCasaContext _ctx;
|
|
protected MiCasaFrame _frame;
|
|
protected Config _config = new Config("micasa");
|
|
|
|
protected Client _client;
|
|
protected LocationDirector _locdir;
|
|
protected OccupantDirector _occdir;
|
|
protected ChatDirector _chatdir;
|
|
protected ParlorDirector _pardtr;
|
|
protected MessageManager _msgmgr;
|
|
|
|
/** The prefix prepended to localization bundle names before looking
|
|
* them up in the classpath. */
|
|
protected static final String MESSAGE_MANAGER_PREFIX = "rsrc.i18n";
|
|
}
|