/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * 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 (at your option) 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ #ifndef _ArgumentCompletionListElement_H__ #define _ArgumentCompletionListElement_H__ #include "CorePrereqs.h" #include #include #define ACL_MODE_NORMAL 1 #define ACL_MODE_LOWERCASE 2 #define ACL_MODE_DISPLAY 4 namespace orxonox { typedef std::list ArgumentCompletionList; class _CoreExport ArgumentCompletionListElement { public: ArgumentCompletionListElement(const std::string& normalcase) : mode_(ACL_MODE_NORMAL), normalCase_(normalcase) {} ArgumentCompletionListElement(const std::string& normalcase, const std::string& lowercase) : mode_(ACL_MODE_NORMAL | ACL_MODE_LOWERCASE), normalCase_(normalcase), lowerCase_(lowercase) {} ArgumentCompletionListElement(const std::string& normalcase, const std::string& lowercase, const std::string& display) : mode_(ACL_MODE_NORMAL | ACL_MODE_LOWERCASE | ACL_MODE_DISPLAY), normalCase_(normalcase), lowerCase_(lowercase), display_(display) {} const std::string& getString() const { return this->normalCase_; } const std::string& getComparable() const { if (this->mode_ & ACL_MODE_LOWERCASE) { return this->lowerCase_; } else { return this->normalCase_; } } const std::string& getDisplay() const { if (this->mode_ & ACL_MODE_DISPLAY) { return this->display_; } else { return this->normalCase_; } } bool lowercaseComparison() const { return (this->mode_ & ACL_MODE_LOWERCASE); } bool operator<(const ArgumentCompletionListElement& other) const { return (this->getComparable() < other.getComparable()); } private: unsigned char mode_; std::string normalCase_; std::string lowerCase_; std::string display_; }; } #endif /* _ArgumentCompletionListElement_H__ */