Moved Parlor game stuff into parlor.game package instead of spreading it
across parlor.client, parlor.server and parlor.data. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@437 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: LobbyConfig.java,v 1.3 2001/10/11 04:13:33 mdb Exp $
|
||||
// $Id: LobbyConfig.java,v 1.4 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.micasa.lobby;
|
||||
|
||||
@@ -12,7 +12,7 @@ import com.samskivert.util.StringUtil;
|
||||
|
||||
import com.threerings.crowd.data.PlaceConfig;
|
||||
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
|
||||
public class LobbyConfig extends PlaceConfig
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: LobbyController.java,v 1.5 2001/10/11 04:13:33 mdb Exp $
|
||||
// $Id: LobbyController.java,v 1.6 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.micasa.lobby;
|
||||
|
||||
@@ -10,7 +10,7 @@ import com.threerings.crowd.client.PlaceView;
|
||||
import com.threerings.crowd.util.CrowdContext;
|
||||
|
||||
import com.threerings.parlor.client.*;
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
|
||||
import com.threerings.micasa.Log;
|
||||
import com.threerings.micasa.util.MiCasaContext;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// $Id: InvitationHandler.java,v 1.1 2001/10/01 05:07:13 mdb Exp $
|
||||
// $Id: InvitationHandler.java,v 1.2 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
|
||||
/**
|
||||
* A client entity that wishes to handle invitations received by other
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// $Id: InvitationResponseObserver.java,v 1.4 2001/10/01 06:19:15 mdb Exp $
|
||||
// $Id: InvitationResponseObserver.java,v 1.5 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
|
||||
/**
|
||||
* A client entity that wishes to generate invitations for games must
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: ParlorDirector.java,v 1.10 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: ParlorDirector.java,v 1.11 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
@@ -10,7 +10,7 @@ import com.samskivert.util.HashIntMap;
|
||||
import com.threerings.presents.client.InvocationReceiver;
|
||||
|
||||
import com.threerings.parlor.Log;
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
import com.threerings.parlor.util.ParlorContext;
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: ParlorService.java,v 1.6 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: ParlorService.java,v 1.7 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
@@ -7,7 +7,7 @@ import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationDirector;
|
||||
|
||||
import com.threerings.parlor.Log;
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
|
||||
/**
|
||||
* This class provides an interface to the various parlor services that
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: GameCodes.java,v 1.2 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: GameCodes.java,v 1.3 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
package com.threerings.parlor.game;
|
||||
|
||||
import com.threerings.presents.client.InvocationCodes;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: GameConfig.java,v 1.6 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: GameConfig.java,v 1.7 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.data;
|
||||
package com.threerings.parlor.game;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: GameController.java,v 1.6 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: GameController.java,v 1.7 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
package com.threerings.parlor.game;
|
||||
|
||||
import java.awt.event.ActionEvent;
|
||||
|
||||
@@ -14,8 +14,6 @@ import com.threerings.crowd.data.PlaceObject;
|
||||
import com.threerings.crowd.util.CrowdContext;
|
||||
|
||||
import com.threerings.parlor.Log;
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.data.GameObject;
|
||||
import com.threerings.parlor.util.ParlorContext;
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: GameManager.java,v 1.7 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: GameManager.java,v 1.8 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
package com.threerings.parlor.game;
|
||||
|
||||
import com.threerings.presents.dobj.MessageEvent;
|
||||
|
||||
@@ -12,10 +12,7 @@ import com.threerings.crowd.server.CrowdServer;
|
||||
import com.threerings.crowd.server.CrowdServer;
|
||||
|
||||
import com.threerings.parlor.Log;
|
||||
import com.threerings.parlor.client.GameCodes;
|
||||
import com.threerings.parlor.client.ParlorCodes;
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.data.GameObject;
|
||||
|
||||
/**
|
||||
* The game manager handles the server side management of a game. It
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// $Id: GameObject.dobj,v 1.3 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: GameObject.dobj,v 1.4 2001/10/11 21:08:21 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.data;
|
||||
package com.threerings.parlor.game;
|
||||
|
||||
import com.threerings.crowd.data.PlaceObject;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: ParlorManager.java,v 1.8 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: ParlorManager.java,v 1.9 2001/10/11 21:08:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
@@ -14,7 +14,8 @@ import com.threerings.crowd.server.CrowdServer;
|
||||
|
||||
import com.threerings.parlor.Log;
|
||||
import com.threerings.parlor.client.ParlorCodes;
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
import com.threerings.parlor.game.GameManager;
|
||||
|
||||
/**
|
||||
* The parlor manager is responsible for the parlor services in
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: ParlorProvider.java,v 1.6 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: ParlorProvider.java,v 1.7 2001/10/11 21:08:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
@@ -10,7 +10,7 @@ import com.threerings.crowd.server.CrowdServer;
|
||||
|
||||
import com.threerings.parlor.Log;
|
||||
import com.threerings.parlor.client.ParlorCodes;
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
|
||||
/**
|
||||
* The parlor provider handles the server side of the various Parlor
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TestClient.java,v 1.3 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: TestClient.java,v 1.4 2001/10/11 21:08:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.test;
|
||||
|
||||
@@ -15,7 +15,7 @@ import com.threerings.crowd.client.*;
|
||||
|
||||
import com.threerings.parlor.Log;
|
||||
import com.threerings.parlor.client.*;
|
||||
import com.threerings.parlor.data.*;
|
||||
import com.threerings.parlor.game.*;
|
||||
import com.threerings.parlor.util.ParlorContext;
|
||||
|
||||
public class TestClient
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TestConfig.java,v 1.1 2001/10/03 03:45:44 mdb Exp $
|
||||
// $Id: TestConfig.java,v 1.2 2001/10/11 21:08:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.test;
|
||||
|
||||
@@ -7,7 +7,7 @@ import java.io.IOException;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
|
||||
import com.threerings.parlor.data.GameConfig;
|
||||
import com.threerings.parlor.game.GameConfig;
|
||||
|
||||
public class TestConfig extends GameConfig
|
||||
{
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
//
|
||||
// $Id: TestController.java,v 1.3 2001/10/11 04:07:51 mdb Exp $
|
||||
// $Id: TestController.java,v 1.4 2001/10/11 21:08:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.test;
|
||||
|
||||
import com.threerings.crowd.client.PlaceView;
|
||||
import com.threerings.parlor.client.GameController;
|
||||
import com.threerings.parlor.game.GameController;
|
||||
|
||||
public class TestController extends GameController
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user