summaryrefslogblamecommitdiff
path: root/src/net/eathena/serverfeatures.cpp
blob: 32e0d18e2909f8d0ae99548f612be32789ca3183 (plain) (tree)
1
2
3

                       
                                                    


















                                                                         

                    

                  
                         

                                           


                 




                                
                                                 
 
                             

 




                                           




                                                




                                                  




                                         

                                                   
                             

 




                                                           




                                             




                                                       

                                              
                             

 

                                              
                             

 




                                             




                                             

                                      
                             

 

                                           
                

 
                                                   



                 




                                                




                                                   

                                                
                             

 

                                              
                             

 




                                                




                                           




                                            




                                        

                                              
                                                      

 




                                                 

                                          
                             

 

                                            
                             

 




                                            

                                                 
                             

 




                                                 




                                        




                                     




                                      

                                        
                             

 

                                        
                             

 




                                                




                                          




                                     




                                       




                                                




                                               




                                                




                                      




                                                      




                                             




                                              




                                     




                                           




                                       




                                             




                                         
                       
/*
 *  The ManaPlus Client
 *  Copyright (C) 2011-2016  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/eathena/serverfeatures.h"

#include "net/net.h"

#include "debug.h"

extern int serverVersion;
extern Net::ServerFeatures *serverFeatures;

namespace EAthena
{

ServerFeatures::ServerFeatures()
{
    serverFeatures = this;
}

bool ServerFeatures::haveServerOnlineList() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveOnlineList() const
{
    return false;
}

bool ServerFeatures::havePartyNickInvite() const
{
    return true;
}

bool ServerFeatures::haveChangePartyLeader() const
{
    return true;
}

bool ServerFeatures::haveServerHp() const
{
    return true;
}

bool ServerFeatures::havePlayerStatusUpdate() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveBrokenPlayerAttackDistance() const
{
    return false;
}

bool ServerFeatures::haveNativeGuilds() const
{
    return true;
}

bool ServerFeatures::haveIncompleteChatMessages() const
{
    return false;
}

bool ServerFeatures::haveRaceSelection() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveLookSelection() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveChatChannels() const
{
    return true;
}

bool ServerFeatures::haveServerIgnore() const
{
    return true;
}

bool ServerFeatures::haveMove3() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveItemColors() const
{
    return true;
}

bool ServerFeatures::haveAccountOtherGender() const
{
    return false;
}

bool ServerFeatures::haveCharOtherGender() const
{
    return serverVersion >= 10;
}

bool ServerFeatures::haveMonsterAttackRange() const
{
    return false;
}

bool ServerFeatures::haveEmailOnRegister() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveEmailOnDelete() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveEightDirections() const
{
    return true;
}

bool ServerFeatures::haveCharRename() const
{
    return true;
}

bool ServerFeatures::haveMonsterName() const
{
    return true;
}

bool ServerFeatures::haveBankApi() const
{
    return true;
}

bool ServerFeatures::haveServerVersion() const
{
    return Net::getNetworkType() == ServerType::EVOL2;
}

bool ServerFeatures::haveMapServerVersion() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveNpcGender() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveJoinChannel() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveNpcWhispers() const
{
    return true;
}

bool ServerFeatures::haveCreateCharGender() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveAttackDirections() const
{
    return true;
}

bool ServerFeatures::haveVending() const
{
    return true;
}

bool ServerFeatures::haveCart() const
{
    return true;
}

bool ServerFeatures::haveCards() const
{
    return true;
}

bool ServerFeatures::haveTalkPet() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveMovePet() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveServerWarpNames() const
{
    return serverVersion == 0;
}

bool ServerFeatures::haveExpPacket() const
{
    return true;
}

bool ServerFeatures::haveMute() const
{
    return true;
}

bool ServerFeatures::haveTeamId() const
{
    return false;
}

bool ServerFeatures::haveAdvancedSprites() const
{
    return serverVersion >= 7;
}

bool ServerFeatures::haveExtendedRiding() const
{
    return serverVersion >= 9;
}

bool ServerFeatures::haveAdvancedBuySell() const
{
    return true;
}

bool ServerFeatures::haveSlide() const
{
    return serverVersion >= 10;
}

bool ServerFeatures::haveExtendedDropsPosition() const
{
    return serverVersion >= 12;
}

bool ServerFeatures::haveSecureTrades() const
{
    return true;
}

bool ServerFeatures::haveMultyStatusUp() const
{
    return true;
}

bool ServerFeatures::haveMail() const
{
    return true;
}

bool ServerFeatures::haveServerPets() const
{
    return true;
}

bool ServerFeatures::haveFamily() const
{
    return true;
}

bool ServerFeatures::haveMoveWhileSit() const
{
    return serverVersion > 0;
}

bool ServerFeatures::haveKillerId() const
{
    return serverVersion >= 14;
}

}  // namespace EAthena