blob: de45ad52db88a347fd32f28552855972e89eb5b9 (
plain) (
tree)
|
|
/*
* The ManaPlus Client
* Copyright (C) 2011-2015 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/tmwa/serverfeatures.h"
#include "debug.h"
extern int serverVersion;
extern unsigned int tmwServerVersion;
extern Net::ServerFeatures *serverFeatures;
namespace TmwAthena
{
ServerFeatures::ServerFeatures()
{
serverFeatures = this;
}
bool ServerFeatures::haveServerOnlineList() const
{
return serverVersion >= 3;
}
bool ServerFeatures::haveOnlineList() const
{
return true;
}
bool ServerFeatures::havePartyNickInvite() const
{
return false;
}
bool ServerFeatures::haveChangePartyLeader() const
{
return false;
}
bool ServerFeatures::haveServerHp() const
{
return serverVersion > 0 || tmwServerVersion > 0x0f0513;
}
bool ServerFeatures::haveLangTab() const
{
return serverVersion >= 8;
}
bool ServerFeatures::havePlayerStatusUpdate() const
{
return serverVersion >= 4;
}
bool ServerFeatures::haveBrokenPlayerAttackDistance() const
{
return serverVersion < 1;
}
bool ServerFeatures::haveNativeGuilds() const
{
return tmwServerVersion <= 0;
}
bool ServerFeatures::haveIncompleteChatMessages() const
{
return tmwServerVersion > 0;
}
bool ServerFeatures::haveRaceSelection() const
{
return serverVersion >= 2;
}
bool ServerFeatures::haveLookSelection() const
{
return serverVersion >= 9;
}
bool ServerFeatures::haveChatChannels() const
{
return false;
}
bool ServerFeatures::haveServerIgnore() const
{
return tmwServerVersion == 0;
}
bool ServerFeatures::haveMove3() const
{
return serverVersion >= 10 || tmwServerVersion >= 0x0f0512;
}
bool ServerFeatures::haveItemColors() const
{
return serverVersion >= 1;
}
bool ServerFeatures::haveOtherGender() const
{
return serverVersion >= 5;
}
bool ServerFeatures::haveMonsterAttackRange() const
{
return serverVersion > 0 || tmwServerVersion >= 0x0f0513;
}
bool ServerFeatures::haveEmailOnRegister() const
{
return serverVersion >= 7;
}
bool ServerFeatures::haveEmailOnDelete() const
{
return false;
}
bool ServerFeatures::haveEightDirections() const
{
return false;
}
bool ServerFeatures::haveCharRename() const
{
return false;
}
bool ServerFeatures::haveMonsterName() const
{
return false;
}
bool ServerFeatures::haveBankApi() const
{
return false;
}
bool ServerFeatures::haveServerVersion() const
{
return true;
}
bool ServerFeatures::haveMapServerVersion() const
{
return false;
}
bool ServerFeatures::haveNpcGender() const
{
return serverVersion > 0 || tmwServerVersion >= 0x0f0513;
}
bool ServerFeatures::haveJoinChannel() const
{
return false;
}
bool ServerFeatures::haveNpcWhispers() const
{
return false;
}
bool ServerFeatures::haveCreateCharGender() const
{
return false;
}
bool ServerFeatures::haveAttackDirections() const
{
return false;
}
bool ServerFeatures::haveVending() const
{
return false;
}
bool ServerFeatures::haveCart() const
{
return false;
}
bool ServerFeatures::haveTalkPet() const
{
return true;
}
bool ServerFeatures::haveMovePet() const
{
return true;
}
bool ServerFeatures::haveServerWarpNames() const
{
return false;
}
bool ServerFeatures::haveExpPacket() const
{
return false;
}
bool ServerFeatures::haveMute() const
{
return false;
}
bool ServerFeatures::haveChangePassword() const
{
return true;
}
bool ServerFeatures::haveTeamId() const
{
return tmwServerVersion > 0;
}
} // namespace TmwAthena
|