/inc/trait.h

https://code.google.com/p/dwarftherapist/ · C Header · 66 lines · 37 code · 6 blank · 23 comment · 9 complexity · 4214294041ff551c8cb5a80abf25a545 MD5 · raw file

  1. /*
  2. Dwarf Therapist
  3. Copyright (c) 2009 Trey Stout (chmod)
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  18. THE SOFTWARE.
  19. */
  20. #ifndef TRAIT_H
  21. #define TRAIT_H
  22. #include <QtGui>
  23. class Trait : public QObject {
  24. Q_OBJECT
  25. public:
  26. Trait(const QSettings &s, QObject *parent = 0)
  27. : QObject(parent)
  28. {
  29. name = s.value("name", "UNKNOWN").toString();
  30. trait_id = s.value("trait_id", -1).toInt();
  31. m_level_string[0] = s.value("level_0", "UNKNOWN TRAIT 0(" + name + ")").toString();
  32. m_level_string[10] = s.value("level_1", "UNKNOWN TRAIT 1(" + name + ")").toString();
  33. m_level_string[25] = s.value("level_2", "UNKNOWN TRAIT 2(" + name + ")").toString();
  34. m_level_string[61] = s.value("level_3", "UNKNOWN TRAIT 3(" + name + ")").toString();
  35. m_level_string[76] = s.value("level_4", "UNKNOWN TRAIT 4(" + name + ")").toString();
  36. m_level_string[91] = s.value("level_5", "UNKNOWN TRAIT 5(" + name + ")").toString();
  37. }
  38. QString level_message(const short &val) {
  39. if (val >= 91)
  40. return m_level_string[91];
  41. else if (val >= 76)
  42. return m_level_string[76];
  43. else if (val >= 61)
  44. return m_level_string[61];
  45. else if (val >= 25)
  46. return m_level_string[25];
  47. else if (val >= 10)
  48. return m_level_string[10];
  49. else
  50. return m_level_string[0];
  51. }
  52. QString name;
  53. int trait_id;
  54. //! this map will hold the minimum_value -> string (e.g. level 76-90 of Nervousness is "Is always tense and jittery")
  55. QMap<int, QString> m_level_string;
  56. };
  57. #endif