Package games.stendhal.client.actions

Source Code of games.stendhal.client.actions.MuteAction

/* $Id: MuteAction.java,v 1.8 2010/09/24 20:52:18 nhnb 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.client.actions;

import games.stendhal.client.ClientSingletonRepository;
import games.stendhal.client.gui.chatlog.StandardEventLine;
import games.stendhal.client.gui.wt.core.WtWindowManager;
import games.stendhal.client.sound.system.Time;


/**
* mutes or umutes the sound
*/
class MuteAction implements SlashAction {

  /**
   * Execute a chat command.
   *
   * @param params
   *            The formal parameters.
   * @param remainder
   *            Line content after parameters.
   *
   * @return <code>true</code> if was handled.
   */
  public boolean execute(final String[] params, final String remainder) {
    boolean play = Boolean.parseBoolean(WtWindowManager.getInstance().getProperty("sound.play", "true"));
    play = !play;
    WtWindowManager.getInstance().setProperty("sound.play", Boolean.toString(play));
    ClientSingletonRepository.getSound().mute(!play, true, new Time(2, Time.Unit.SEC));
    if (play) {
      ClientSingletonRepository.getUserInterface().addEventLine(new StandardEventLine("Sounds are now on."));
    } else {
      ClientSingletonRepository.getUserInterface().addEventLine(new StandardEventLine("Sounds are now off."));
    }
    return true;
  }

  /**
   * Get the maximum number of formal parameters.
   *
   * @return The parameter count.
   */
  public int getMaximumParameters() {
    return 0;
  }

  /**
   * Get the minimum number of formal parameters.
   *
   * @return The parameter count.
   */
  public int getMinimumParameters() {
    return 0;
  }
}
TOP

Related Classes of games.stendhal.client.actions.MuteAction

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.