summaryrefslogblamecommitdiff
path: root/src/net/net.cpp
blob: f11e4c3b64a4dbe2f14539bfd3957030f34263e9 (plain) (tree)
1
2
3
4
5
6
7
  
                       

                                                       
                                                    
  
                                             


















                                                                         
                             
 
                   
                                    
      
 



                                       

                  


                       
                         
                      
                       
                         
                          
                            
                      

                        
                         
                       
                           
                       
                      
                     
                       
                     
                        

 
                                          
                                                    







                                                  
                                      
                                            
                                          


                                              
                                              
                                        
                                              
                                                
                                            
                                        
 
                                         
 
                        






                                         




                                             
 





                                                   
                                       
                                                     
     
                                 


        

                                                                 


                            






                                              
                                       
                                  
                                     
                    
                   
                                              


                                            


                      
                               



                                  
                     
     

                                        
     
                                     



             
                                                   








                                 
                   
/*
 *  The ManaPlus Client
 *  Copyright (C) 2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  The Mana Developers
 *  Copyright (C) 2011-2014  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/>.
 */

#include "net/net.h"

#include "main.h"

#include "net/loginhandler.h"

#ifdef TMWA_SUPPORT
#include "net/tmwa/generalhandler.h"
#endif

#ifdef EATHENA_SUPPORT
#include "net/eathena/generalhandler.h"
#endif

#include "debug.h"

namespace Net
{
    class AdminHandler;
    class AuctionHandler;
    class BankHandler;
    class BeingHandler;
    class BuySellHandler;
    class CashShopHandler;
    class CharServerHandler;
    class ChatHandler;
    class FamilyHandler;
    class GameHandler;
    class GeneralHandler;
    class GuildHandler;
    class InventoryHandler;
    class LoginHandler;
    class MailHandler;
    class NpcHandler;
    class PartyHandler;
    class PetHandler;
    class PlayerHandler;
}

Net::AdminHandler *adminHandler = nullptr;
Net::CharServerHandler *charServerHandler = nullptr;
Net::ChatHandler *chatHandler = nullptr;
Net::GeneralHandler *generalHandler = nullptr;
Net::InventoryHandler *inventoryHandler = nullptr;
Net::LoginHandler *loginHandler = nullptr;
Net::GameHandler *gameHandler = nullptr;
Net::GuildHandler *guildHandler = nullptr;
Net::NpcHandler *npcHandler = nullptr;
Net::PartyHandler *partyHandler = nullptr;
Net::PetHandler *petHandler = nullptr;
Net::PlayerHandler *playerHandler = nullptr;
Net::SkillHandler *skillHandler = nullptr;
Net::TradeHandler *tradeHandler = nullptr;
Net::BeingHandler *beingHandler = nullptr;
Net::BuySellHandler *buySellHandler = nullptr;
Net::ServerFeatures *serverFeatures = nullptr;
Net::MailHandler *mailHandler = nullptr;
Net::AuctionHandler *auctionHandler = nullptr;
Net::CashShopHandler *cashShopHandler = nullptr;
Net::FamilyHandler *familyHandler = nullptr;
Net::BankHandler *bankHandler = nullptr;

Net::SkillHandler *Net::getSkillHandler()
{
    return skillHandler;
}

Net::TradeHandler *Net::getTradeHandler()
{
    return tradeHandler;
}

Net::ServerFeatures *Net::getServerFeatures()
{
    return serverFeatures;
}


namespace Net
{
ServerInfo::Type networkType = ServerInfo::UNKNOWN;

void connectToServer(const ServerInfo &server)
{
    BLOCK_START("Net::connectToServer")
    if (networkType == server.type && generalHandler)
    {
        generalHandler->reload();
    }
    else
    {
        if (networkType != ServerInfo::UNKNOWN && generalHandler)
            generalHandler->unload();

        switch (server.type)
        {
            case ServerInfo::EATHENA:
#ifdef EATHENA_SUPPORT
                new EAthena::GeneralHandler;
#else
                new TmwAthena::GeneralHandler;
#endif
                break;
            case ServerInfo::TMWATHENA:
            case ServerInfo::EVOL:
            case ServerInfo::UNKNOWN:
            default:
#ifdef TMWA_SUPPORT
                new TmwAthena::GeneralHandler;
#else
                new EAthena::GeneralHandler;
#endif
                break;
        }

        generalHandler->load();

        networkType = server.type;
    }

    if (loginHandler)
    {
        loginHandler->setServer(server);
        loginHandler->connect();
    }
    BLOCK_END("Net::connectToServer")
}

void unload()
{
    GeneralHandler *const handler = generalHandler;
    if (handler)
        handler->unload();
}

ServerInfo::Type getNetworkType()
{
    return networkType;
}

}  // namespace Net