Changeset 4fbc6ff in java-rpg-server


Ignore:
Timestamp:
Aug 31, 2007, 10:36:11 PM (17 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
52f778b
Parents:
243278b
Message:

[svn r31]

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ClientListener.java

    r243278b r4fbc6ff  
    11import java.net.*;
    22import java.io.*;
     3
     4/*
     5 * This thread listens for connections from clients.
     6 */
    37
    48public class ClientListener extends Thread {
  • LostHavenServer.java

    r243278b r4fbc6ff  
    55//import java.util.concurrent.*;
    66import java.awt.image.*;
     7
     8/*
     9 * This class initializes the server and then waits for a connection from the portal.
     10 */
    711
    812public class LostHavenServer { 
  • PortalInterfaceThread.java

    r243278b r4fbc6ff  
    11import 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 */
    27
    38public class PortalInterfaceThread extends Connection {
  • ProcessingThread.java

    r243278b r4fbc6ff  
    11import 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 */
    27
    38public class ProcessingThread extends Thread {
  • ServerThread.java

    r243278b r4fbc6ff  
    11import java.net.*;
    22import java.util.*;
     3
     4/*
     5 * This thread handles messages from clients.
     6 */
    37
    48public class ServerThread extends Connection {
Note: See TracChangeset for help on using the changeset viewer.