Package org.groovymud.shell.telnetd

Source Code of org.groovymud.shell.telnetd.MudShell

package org.groovymud.shell.telnetd;

import java.io.IOException;

import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;

import net.wimpi.telnetd.net.Connection;
import net.wimpi.telnetd.net.ConnectionEvent;
import net.wimpi.telnetd.shell.Shell;

import org.apache.log4j.Logger;
import org.groovymud.object.alive.Player;
import org.groovymud.shell.command.CommandInterpreter;

/**
* This shell is passed on to from the log in shell, and is where the user is
* prompted for all their commands in the mud.
*
*
* @author matt
*/
public class MudShell extends ShellBridge {

  private CommandInterpreter interpreter;
  protected static final String BEAN_NAME = "mudShell";
  private final static Logger logger = Logger.getLogger(MudShell.class);

  public void run(Connection connection) {
    setConnection(connection);
    setExtendedTerminalIO((ExtendedTerminalIO) getConnection().getConnectionData().getEnvironment().get("terminalIO"));
    Player player = (Player) getConnection().getConnectionData().getEnvironment().get("player");
    LoginContext lc = (LoginContext) getConnection().getConnectionData().getEnvironment().get("loginContext");
    getInterpreter().doShellCommand("look", player);
    try {
      while (getObjectRegistry().getMudObject(player.getName()) != null) {
        handleRequest(player);
      }
    } catch (Exception e) {
      logger.error(e, e);
    } finally {
      try {
        lc.logout();
      } catch (LoginException e) {
        logger.error(e, e);
      } finally {
        connection.close();
      }
    }
  }

  public static Shell createShell() {
    return (Shell) getApplicationContext().getBean(BEAN_NAME);
  }

  private void handleRequest(Player player) throws IOException {
    ExtendedTerminalIO io = getExtendedTerminalIO();
    io.write("\r\n>");
    io.flush();
    String command;
    try {
      command = io.readln(false);
      getInterpreter().doShellCommand(command, player);
    } catch (Exception e) {
      logger.error(e, e);
      try {
        player.getTerminalOutput().writeln("You cannot do that.");
      } catch (IOException e1) {
        logger.error(e1, e1);
      }

    }
  }

  public void connectionIdle(ConnectionEvent ce) {
    try {
      getExtendedTerminalIO().write("CONNECTION_IDLE");

      getExtendedTerminalIO().flush();
    } catch (IOException e) {
      logger.error(e, e);
    }
  }

  // this implements the ConnectionListener!
  public void connectionTimedOut(ConnectionEvent ce) {
    try {
      getExtendedTerminalIO().write("CONNECTION_TIMEDOUT");
      getExtendedTerminalIO().flush();
      // close connection
      getConnection().close();
    } catch (Exception ex) {
      logger.error("connectionTimedOut()", ex);
    }
  }

  public void connectionLogoutRequest(ConnectionEvent ce) {
    try {
      getExtendedTerminalIO().write("CONNECTION_LOGOUTREQUEST");
      getExtendedTerminalIO().flush();
    } catch (IOException e) {
      logger.error(e, e);
    }

  }

  public void connectionSentBreak(ConnectionEvent ce) {
    try {
      getExtendedTerminalIO().write("CONNECTION_BREAK");
      getExtendedTerminalIO().flush();
    } catch (IOException e) {
      logger.error(e, e);
    }

  }

  public CommandInterpreter getInterpreter() {
    return interpreter;
  }

  public void setInterpreter(CommandInterpreter interpreter) {
    this.interpreter = interpreter;
  }

}
TOP

Related Classes of org.groovymud.shell.telnetd.MudShell

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.