diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-02-09 19:56:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-02-09 19:56:40 +0300 |
commit | fd20692fa893b5e96ddd7647b1487b9b3cca5f50 (patch) | |
tree | 19790082bdd3f3344a75514c27899b7521df1e36 /src/being | |
parent | 3ad5dc250eec4fb091840e3834cbc12573e923df (diff) | |
download | mv-fd20692fa893b5e96ddd7647b1487b9b3cca5f50.tar.gz mv-fd20692fa893b5e96ddd7647b1487b9b3cca5f50.tar.bz2 mv-fd20692fa893b5e96ddd7647b1487b9b3cca5f50.tar.xz mv-fd20692fa893b5e96ddd7647b1487b9b3cca5f50.zip |
Collect clan info information in clan object.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/claninfo.cpp | 25 | ||||
-rw-r--r-- | src/being/claninfo.h | 72 |
2 files changed, 97 insertions, 0 deletions
diff --git a/src/being/claninfo.cpp b/src/being/claninfo.cpp new file mode 100644 index 000000000..bba4fcd5e --- /dev/null +++ b/src/being/claninfo.cpp @@ -0,0 +1,25 @@ +/* + * The ManaPlus Client + * Copyright (C) 2018 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 "being/claninfo.h" + +#include "debug.h" + +ClanInfo clanInfo; diff --git a/src/being/claninfo.h b/src/being/claninfo.h new file mode 100644 index 000000000..307044cb3 --- /dev/null +++ b/src/being/claninfo.h @@ -0,0 +1,72 @@ +/* + * The ManaPlus Client + * Copyright (C) 2018 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 BEING_CLANINFO_H +#define BEING_CLANINFO_H + +#include "enums/simpletypes/beingid.h" + +#include "utils/vector.h" + +#include <string> + +#include "localconsts.h" + +struct ClanInfo final +{ + ClanInfo() : + allyClans(), + antagonistClans(), + name(), + masterName(), + mapName(), + id(0), + onlineMembers(0), + totalMembers(0) + { + } + + A_DELETE_COPY(ClanInfo) + + void clear() + { + allyClans.clear(); + antagonistClans.clear(); + name.clear(); + masterName.clear(); + mapName.clear(); + id = 0; + onlineMembers = 0; + totalMembers = 0; + } + + STD_VECTOR<std::string> allyClans; + STD_VECTOR<std::string> antagonistClans; + std::string name; + std::string masterName; + std::string mapName; + int id; + int onlineMembers; + int totalMembers; +}; + +extern ClanInfo clanInfo; + +#endif // BEING_CLANINFO_H |