Settings.cpp 7.3 KB

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