Changeset 4fbc6ff in java-rpg-server
- Timestamp:
- Aug 31, 2007, 10:36:11 PM (17 years ago)
- Branches:
- master
- Children:
- 52f778b
- Parents:
- 243278b
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ClientListener.java
r243278b r4fbc6ff 1 1 import java.net.*; 2 2 import java.io.*; 3 4 /* 5 * This thread listens for connections from clients. 6 */ 3 7 4 8 public class ClientListener extends Thread { -
LostHavenServer.java
r243278b r4fbc6ff 5 5 //import java.util.concurrent.*; 6 6 import java.awt.image.*; 7 8 /* 9 * This class initializes the server and then waits for a connection from the portal. 10 */ 7 11 8 12 public class LostHavenServer { -
PortalInterfaceThread.java
r243278b r4fbc6ff 1 1 import java.net.*; 2 3 /* 4 * This thread handles connections from the portal and will start a thread that listens for connections from the client if it receives 5 * a request to do so. 6 */ 2 7 3 8 public class PortalInterfaceThread extends Connection { -
ProcessingThread.java
r243278b r4fbc6ff 1 1 import java.util.*; 2 3 /* 4 * This thread handles events in the world such as monster movement and player movement and other things that do not require player input. It 5 * also sends information to all players to notify them of changes in the world. 6 */ 2 7 3 8 public class ProcessingThread extends Thread { -
ServerThread.java
r243278b r4fbc6ff 1 1 import java.net.*; 2 2 import java.util.*; 3 4 /* 5 * This thread handles messages from clients. 6 */ 3 7 4 8 public class ServerThread extends Connection {
Note:
See TracChangeset
for help on using the changeset viewer.