Package games.stendhal.bot.curses

Source Code of games.stendhal.bot.curses.CursesUI

/* $Id: CursesUI.java,v 1.3 2011/01/10 20:19:28 madmetzger Exp $ */
/***************************************************************************
*                   (C) Copyright 2003-2010 - Stendhal                    *
***************************************************************************
***************************************************************************
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
***************************************************************************/
package games.stendhal.bot.curses;

import jcurses.util.Protocol;
import games.stendhal.client.ClientSingletonRepository;
import games.stendhal.client.gui.UserInterface;
import games.stendhal.client.gui.chatlog.EventLine;
import games.stendhal.client.sound.SoundSystemFacade;
import games.stendhal.client.sound.nosound.NoSoundFacade;
import games.stendhal.common.NotificationType;

/**
* the curses user interface
*
* @author hendrik
*/
public class CursesUI implements UserInterface {
  private SoundSystemFacade soundSystemFacade;
  private CursesWindow window;

  /**
   * creates a CursesUI
   *
   * @param window CursesWindow
   */
  public CursesUI(CursesWindow window) {
    ClientSingletonRepository.setUserInterface(this);
    soundSystemFacade = new NoSoundFacade();
    this.window = window;
  }

  /**
   * just output a line on stdout
   *
   * @param line to print
   */
  public void addEventLine(EventLine line) {
        Protocol.debug("addEventLine (" + window + "): " + line);
        if (this.window != null) {
            this.window.addChatLine(line.toString());
        }
  }

  /**
   * adds a text box on the screen
   *
   * @param x  x
   * @param y  y
   * @param text text to display
   * @param type type of text
   * @param isTalking chat?
   */
  public void addGameScreenText(double x, double y,
      String text, NotificationType type,
      boolean isTalking) {
    // ignored
  }

  /**
   * gets the sound system
   *
   * @return SoundSystemFacade
   */
  public SoundSystemFacade getSoundSystemFacade() {
    return soundSystemFacade;
  }

  public void addAchievementBox(String title, String description,
      String category) {
    // ignored
   
  }

}
TOP

Related Classes of games.stendhal.bot.curses.CursesUI

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.