summaryrefslogblamecommitdiff
path: root/src/commandhandler.h
blob: 64f0288c3761e783bc4bdc3d49b6c6622a16d6d0 (plain) (tree)
1
2
3
4
5
6
7
  
                       

                                                            
                                               
  
                                             


























                                                                         
                                          
     
                




















































































































































































































                                                                           
                                                                        


                                                               

                                                              
 

                                                              
 
                                                                         
 
                                                                              
 
                                                                           
 
                                                                          






                                                               

                                                                 
                                                                             
 
                                                             
                                                            
 
                                                        
                                                       

                                                           
                                                          
 

                                                               
                                                                             






                                                                
/*
 *  The ManaPlus Client
 *  Copyright (C) 2008-2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  The Mana Developers
 *  Copyright (C) 2011  The ManaPlus Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  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
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef COMMANDHANDLER_H
#define COMMANDHANDLER_H

#include "playerrelations.h"

#include <string>

class ChatTab;

extern ChatTab *localChatTab;

#ifdef __GNUC__
#define A_UNUSED  __attribute__ ((unused))
#else
#define A_UNUSED
#endif

#define BOOLEAN_OPTIONS _("Options to /%s are \"yes\", \"no\", \"true\", "\
"\"false\", \"1\", \"0\".")

/**
 * A class to parse and handle user commands
 */
class CommandHandler
{
    public:
        /**
         * Constructor
         */
        CommandHandler();

        /**
         * Destructor
         */
        ~CommandHandler() {}

        /**
         * Parse and handle the given command.
         */
        void handleCommand(const std::string &command,
                           ChatTab *tab = localChatTab);

        void handleCommands(const std::string &command,
                            ChatTab *tab = localChatTab);

        static char parseBoolean(const std::string &value);

    protected:
        friend class ChatTab;
        friend class WhisperTab;

        /**
         * Handle an announce command.
         */
        void handleAnnounce(const std::string &args, ChatTab *tab);

        /**
         * Handle a help command.
         */
        void handleHelp(const std::string &args, ChatTab *tab);

        /**
         * Handle a where command.
         */
        void handleWhere(const std::string &args, ChatTab *tab);

        /**
         * Handle a who command.
         */
        void handleWho(const std::string &args, ChatTab *tab);

        /**
         * Handle a msg command.
         */
        void handleMsg(const std::string &args, ChatTab *tab);

        /**
         * Handle a msg tab request.
         */
        void handleQuery(const std::string &args, ChatTab *tab);

        /**
         * Handle a join command.
         */
        void handleJoin(const std::string &args, ChatTab *tab);

        /**
         * Handle a listchannels command.
         */
        void handleListChannels(const std::string &args, ChatTab *tab);

        /**
         * Handle a clear command.
         */
        void handleClear(const std::string &args, ChatTab *tab);

        /**
         * Handle a createparty command.
         */
        void handleCreateParty(const std::string &args, ChatTab *tab);

        /**
         * Handle a createguild command.
         */
        void handleCreateGuild(const std::string &args, ChatTab *tab);

        /**
         * Handle a party command.
         */
        void handleParty(const std::string &args, ChatTab *tab);

        /**
         * Handle a me command.
         */
        void handleMe(const std::string &args, ChatTab *tab);

        /**
         * Handle a toggle command.
         */
        void handleToggle(const std::string &args, ChatTab *tab);

        /**
         * Handle a present command.
         */
        void handlePresent(const std::string &args, ChatTab *tab);

        /**
         * Handle an ignore command.
         */
        void handleIgnore(const std::string &args, ChatTab *tab);

        /**
         * Handle an unignore command.
         */
        void handleUnignore(const std::string &args, ChatTab *tab);

        /**
         * Handle an friend command.
         */
        void handleFriend(const std::string &args, ChatTab *tab);

        /**
         * Handle an disregard command.
         */
        void handleDisregard(const std::string &args, ChatTab *tab);

        /**
         * Handle an neutral command.
         */
        void handleNeutral(const std::string &args, ChatTab *tab);

        /**
         * Handle an erase command.
         */
        void handleErase(const std::string &args, ChatTab *tab);

        /**
         * Change relation.
         */
        void changeRelation(const std::string &args,
                            PlayerRelation::Relation relation,
                            const std::string &relationText, ChatTab *tab);

        /**
         * Handle a quit command.
         */
        void handleQuit(const std::string &args, ChatTab *tab);

        /**
         * Handle show all command.
         */
        void handleShowAll(const std::string &args, ChatTab *tab);

        /**
         * Handle move command.
         */
        void handleMove(const std::string &args, ChatTab *tab);

        /**
         * Handle target command.
         */
        void handleTarget(const std::string &args, ChatTab *tab);

        /**
         * Handle closeall command.
         */
        void handleCloseAll(const std::string &args, ChatTab *tab);

        /**
         * Handle ignoreall command.
         */
        void handleIgnoreAll(const std::string &args, ChatTab *tab);

        /**
         * Handle outfit command.
         */
        void handleOutfit(const std::string &args, ChatTab *tab);

        /**
         * Handle emote command.
         */
        void handleEmote(const std::string &args, ChatTab *tab);

        /**
         * Handle away command.
         */
        void handleAway(const std::string &args, ChatTab *tab);

        /**
         * Handle follow command.
         */
        void handleFollow(const std::string &args, ChatTab *tab);

        /**
         * Handle imitation command.
         */
        void handleImitation(const std::string &args, ChatTab *tab);

        /**
         * Handle heal command.
         */
        void handleHeal(const std::string &args, ChatTab *tab);

        /**
         * Handle navigate command.
         */
        void handleNavigate(const std::string &args, ChatTab *tab);

        void handleMail(const std::string &args, ChatTab *tab A_UNUSED);

        void handleHack(const std::string &args, ChatTab *tab);

        void handlePriceLoad(const std::string &args A_UNUSED,
                             ChatTab *tab A_UNUSED);

        void handlePriceSave(const std::string &args A_UNUSED,
                             ChatTab *tab A_UNUSED);

        void handleTrade(const std::string &args, ChatTab *tab A_UNUSED);

        void handleDisconnect(const std::string &args, ChatTab *tab A_UNUSED);

        void handleUndress(const std::string &args, ChatTab *tab A_UNUSED);

        void handleAttack(const std::string &args, ChatTab *tab A_UNUSED);

        void handleDirs(const std::string &args, ChatTab *tab);

        void handleInfo(const std::string &args, ChatTab *tab);

        void handleWait(const std::string &args, ChatTab *tab);

        void handleUptime(const std::string &args, ChatTab *tab);

        void handleAddAttack(const std::string &args, ChatTab *tab A_UNUSED);

        void handleAddPriorityAttack(const std::string &args,
                                     ChatTab *tab A_UNUSED);

        void handleRemoveAttack(const std::string &args,
                                ChatTab *tab A_UNUSED);

        void handleAddIgnoreAttack(const std::string &args,
                                   ChatTab *tab A_UNUSED);

        void handleDump(const std::string &args, ChatTab *tab);

        void handleCacheInfo(const std::string &args, ChatTab *tab A_UNUSED);

        bool parse2Int(const std::string &args, int *x, int *y);
};

extern CommandHandler *commandHandler;

#endif // COMMANDHANDLER_H