Settings.cpp 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. Settings::ServerList Settings::serverList()
  57. {
  58. ServerList list;
  59. int size = ourSettings->beginReadArray("servers");
  60. for(int i = 0; i < size; ++i)
  61. {
  62. ourSettings->setArrayIndex(i);
  63. QStringList svaddr = ourSettings->value("address").toString().split(":");
  64. Server sv;
  65. if(svaddr.size() >= 2)
  66. {
  67. sv.address = svaddr.at(0);
  68. sv.port = svaddr.at(1).toUShort();
  69. }
  70. else
  71. continue;
  72. list.append(sv);
  73. }
  74. ourSettings->endArray();
  75. return list;
  76. }
  77. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  78. void Settings::setServerList(ServerList &list)
  79. {
  80. ourSettings->beginWriteArray("servers");
  81. for(int i = 0; i < list.size(); ++i)
  82. {
  83. ourSettings->setArrayIndex(i);
  84. ourSettings->setValue("address", list.at(i).address + ":" + QString::number(list.at(i).port));
  85. }
  86. ourSettings->endArray();
  87. }
  88. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  89. QString Settings::quakeFolder() const
  90. {
  91. return ourSettings->value("quakeFolder", QCoreApplication::applicationDirPath()).toString();
  92. }
  93. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  94. QString Settings::botName() const
  95. {
  96. return ourSettings->value("botName", "[ServeMe]").toString();
  97. }
  98. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  99. int Settings::botPing() const
  100. {
  101. return ourSettings->value("botPing", 666).toInt();
  102. }
  103. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  104. int Settings::botTopColor() const
  105. {
  106. return ourSettings->value("botTopColor", 11).toInt();
  107. }
  108. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  109. int Settings::botBottomColor() const
  110. {
  111. return ourSettings->value("botBottomColor", 12).toInt();
  112. }
  113. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  114. bool Settings::botSpectator() const
  115. {
  116. return ourSettings->value("botSpectator", true).toBool();
  117. }
  118. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  119. int Settings::floodProtTime() const
  120. {
  121. return qBound<int>(6, ourSettings->value("floodProtTime", 6).toInt(), 9999);
  122. }
  123. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  124. int Settings::qwFloodProtTime() const
  125. {
  126. return ourSettings->value("qwFloodProtTime", 600).toInt();
  127. }
  128. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  129. int Settings::spamFloodProtTime() const
  130. {
  131. return ourSettings->value("spamFloodProtTime", 300).toInt();
  132. }
  133. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  134. unsigned int Settings::queryInterval() const
  135. {
  136. return ourSettings->value("queryInterval", 1000).toUInt();
  137. }
  138. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  139. int Settings::timeToSayHiAfterConnected() const
  140. {
  141. return ourSettings->value("timeToSayHiAfterConnected", 7).toInt();
  142. }
  143. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  144. int Settings::timeToWaitForCountReply() const
  145. {
  146. return ourSettings->value("timeToWaitForCountReply", 7).toInt();
  147. }
  148. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  149. bool Settings::developerMode() const
  150. {
  151. return ourSettings->value("developerMode", false).toBool();
  152. }
  153. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  154. QString Settings::sshHostName() const
  155. {
  156. return ourSettings->value("sshHostName", "b4r.org").toString();
  157. }
  158. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  159. QString Settings::sshUserName() const
  160. {
  161. return ourSettings->value("sshUserName", "stomp").toString();
  162. }
  163. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  164. quint16 Settings::sshPort() const
  165. {
  166. return ourSettings->value("sshPort", 22).toUInt();
  167. }
  168. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  169. int Settings::refreshHostNamesHour() const
  170. {
  171. return ourSettings->value("refreshHostNamesHour", 21).toInt();
  172. }
  173. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  174. int Settings::maxServers() const
  175. {
  176. return ourSettings->value("maxServers", 100).toInt();
  177. }
  178. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  179. void Settings::save()
  180. {
  181. ourSettings->setValue("quakeFolder", quakeFolder());
  182. ourSettings->setValue("botName", botName());
  183. ourSettings->setValue("botPing", botPing());
  184. ourSettings->setValue("botTopColor", botTopColor());
  185. ourSettings->setValue("botBottomColor", botBottomColor());
  186. ourSettings->setValue("botSpectator", botSpectator());
  187. ourSettings->setValue("floodProtTime", floodProtTime());
  188. ourSettings->setValue("queryInterval", queryInterval());
  189. ourSettings->setValue("qwFloodProtTime", qwFloodProtTime());
  190. ourSettings->setValue("spamFloodProtTime", spamFloodProtTime());
  191. ourSettings->setValue("timeToSayHiAfterConnected", timeToSayHiAfterConnected());
  192. ourSettings->setValue("timeToWaitForCountReply", timeToWaitForCountReply());
  193. ourSettings->setValue("developerMode", developerMode());
  194. ourSettings->setValue("sshHostName", sshHostName());
  195. ourSettings->setValue("sshUserName", sshUserName());
  196. ourSettings->setValue("sshPort", sshPort());
  197. ourSettings->setValue("refreshHostNamesHour", refreshHostNamesHour());
  198. ourSettings->setValue("maxServers", maxServers());
  199. ServerList list = serverList();
  200. setServerList(list);
  201. }