Settings.cpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. GNU General Public License version 3 notice
  3. Copyright (C) 2012 Mihawk <luiz@netdome.biz>. All rights reserved.
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see < http://www.gnu.org/licenses/ >.
  14. */
  15. #include "Settings.h"
  16. #include <QSettings>
  17. #include <QCoreApplication>
  18. #include <QStringList>
  19. #include <stdio.h>
  20. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21. Settings* Settings::ourInstance = NULL;
  22. QSettings* Settings::ourSettings;
  23. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  24. Settings::Settings()
  25. {
  26. ourSettings = new QSettings(QCoreApplication::applicationDirPath() + "/cimsqwbot.cfg", QSettings::IniFormat);
  27. }
  28. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  29. Settings::~Settings()
  30. {
  31. delete ourSettings;
  32. }
  33. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  34. bool Settings::changeConfigFile(const QString &fileName)
  35. {
  36. delete ourSettings;
  37. ourSettings = new QSettings(fileName, QSettings::IniFormat);
  38. QSettings::Status status = ourSettings->status();
  39. if(status != QSettings::NoError)
  40. {
  41. printf("Failed to load config file [%s]. Falling back to default config file.\n", fileName.toAscii().data());
  42. delete ourSettings;
  43. ourSettings = NULL;
  44. return false;
  45. }
  46. return true;
  47. }
  48. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  49. Settings* Settings::globalInstance()
  50. {
  51. if(!ourInstance)
  52. ourInstance = new Settings();
  53. return ourInstance;
  54. }
  55. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  56. QStringList Settings::serverList()
  57. {
  58. QStringList list;
  59. int size = ourSettings->beginReadArray("servers");
  60. for(int i = 0; i < size; ++i)
  61. {
  62. ourSettings->setArrayIndex(i);
  63. list.append(ourSettings->value("address").toString());
  64. }
  65. ourSettings->endArray();
  66. return list;
  67. }
  68. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  69. void Settings::setServerList(QStringList &list)
  70. {
  71. ourSettings->beginWriteArray("servers");
  72. for(int i = 0; i < list.size(); ++i)
  73. {
  74. ourSettings->setArrayIndex(i);
  75. ourSettings->setValue("address", list.at(i));
  76. }
  77. ourSettings->endArray();
  78. }
  79. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  80. QString Settings::quakeFolder() const
  81. {
  82. return ourSettings->value("quakeFolder", QCoreApplication::applicationDirPath()).toString();
  83. }
  84. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  85. QString Settings::botName() const
  86. {
  87. return ourSettings->value("botName", "[ServeMe]").toString();
  88. }
  89. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  90. int Settings::botPing() const
  91. {
  92. return ourSettings->value("botPing", 666).toInt();
  93. }
  94. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  95. int Settings::botTopColor() const
  96. {
  97. return ourSettings->value("botTopColor", 11).toInt();
  98. }
  99. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  100. int Settings::botBottomColor() const
  101. {
  102. return ourSettings->value("botBottomColor", 12).toInt();
  103. }
  104. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  105. bool Settings::botSpectator() const
  106. {
  107. return ourSettings->value("botSpectator", true).toBool();
  108. }
  109. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  110. int Settings::floodProtTime() const
  111. {
  112. return qBound<int>(6, ourSettings->value("floodProtTime", 6).toInt(), 9999);
  113. }
  114. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  115. int Settings::qwFloodProtTime() const
  116. {
  117. return ourSettings->value("qwFloodProtTime", 600).toInt();
  118. }
  119. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  120. int Settings::spamFloodProtTime() const
  121. {
  122. return ourSettings->value("spamFloodProtTime", 300).toInt();
  123. }
  124. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  125. unsigned int Settings::queryInterval() const
  126. {
  127. return ourSettings->value("queryInterval", 1000).toUInt();
  128. }
  129. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  130. int Settings::timeToSayHiAfterConnected() const
  131. {
  132. return ourSettings->value("timeToSayHiAfterConnected", 7).toInt();
  133. }
  134. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  135. int Settings::timeToWaitForCountReply() const
  136. {
  137. return ourSettings->value("timeToWaitForCountReply", 7).toInt();
  138. }
  139. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  140. bool Settings::developerMode() const
  141. {
  142. return ourSettings->value("developerMode", false).toBool();
  143. }
  144. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  145. void Settings::save()
  146. {
  147. ourSettings->setValue("quakeFolder", quakeFolder());
  148. ourSettings->setValue("botName", botName());
  149. ourSettings->setValue("botPing", botPing());
  150. ourSettings->setValue("botTopColor", botTopColor());
  151. ourSettings->setValue("botBottomColor", botBottomColor());
  152. ourSettings->setValue("botSpectator", botSpectator());
  153. ourSettings->setValue("floodProtTime", floodProtTime());
  154. ourSettings->setValue("queryInterval", queryInterval());
  155. ourSettings->setValue("qwFloodProtTime", qwFloodProtTime());
  156. ourSettings->setValue("spamFloodProtTime", spamFloodProtTime());
  157. ourSettings->setValue("timeToSayHiAfterConnected", timeToSayHiAfterConnected());
  158. ourSettings->setValue("timeToWaitForCountReply", timeToWaitForCountReply());
  159. ourSettings->setValue("developerMode", developerMode());
  160. QStringList list = serverList();
  161. setServerList(list);
  162. }