Settings.cpp 7.1 KB

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