utils.cpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. #include "utils.h"
  2. #include <regex>
  3. #include <string>
  4. #include <vector>
  5. #include <exception>
  6. /**
  7. * Clean up the trailing ../ in __FILE__
  8. *
  9. * This is used by the logging macro.
  10. *
  11. * @param filepath
  12. * @return const char*
  13. */
  14. const char *trim_path(const char *filepath) {
  15. if (strncmp(filepath, "../", 3) == 0) {
  16. filepath += 3;
  17. }
  18. return filepath;
  19. }
  20. #include <fstream>
  21. bool file_exists(const std::string &name) {
  22. std::ifstream f(name.c_str());
  23. return f.good();
  24. }
  25. bool replace(std::string &str, const std::string &from, const std::string &to) {
  26. size_t start_pos = str.find(from);
  27. if (start_pos == std::string::npos) return false;
  28. do {
  29. str.replace(start_pos, from.length(), to);
  30. } while ((start_pos = str.find(from)) != std::string::npos);
  31. return true;
  32. }
  33. bool replace(std::string &str, const char *from, const char *to) {
  34. size_t start_pos = str.find(from);
  35. if (start_pos == std::string::npos) return false;
  36. do {
  37. str.replace(start_pos, strlen(from), to);
  38. } while ((start_pos = str.find(from)) != std::string::npos);
  39. return true;
  40. }
  41. void ansi_clean(std::string &str) {
  42. static std::regex ansi_cleaner("\x1b\[[0-9;]*[A-Zmh]",
  43. std::regex_constants::ECMAScript);
  44. str = std::regex_replace(str, ansi_cleaner, "");
  45. }
  46. void high_ascii(std::string &str) {
  47. // the + replaces all of them into one. I want each high ascii replaced with
  48. // #.
  49. static std::regex high_cleaner("[\x80-\xff]",
  50. std::regex_constants::ECMAScript);
  51. str = std::regex_replace(str, high_cleaner, "#");
  52. }
  53. std::smatch ansi_newline(const std::string &str) {
  54. static std::regex ansi_nl("\x1b\[[0-9;]*[JK]",
  55. std::regex_constants::ECMAScript);
  56. std::smatch m;
  57. std::regex_search(str, m, ansi_nl);
  58. return m;
  59. }
  60. std::string repr(const std::string &source) {
  61. std::string output = source;
  62. replace(output, "\n", "\\n");
  63. replace(output, "\r", "\\r");
  64. replace(output, "\b", "\\b");
  65. replace(output, "\x1b", "\\[");
  66. high_ascii(output);
  67. return output;
  68. }
  69. std::string clean_string(const std::string &source) {
  70. std::string clean = source;
  71. /*
  72. replace(clean, "\n", "\\n");
  73. replace(clean, "\r", "\\r");
  74. replace(clean, "\b", "\\b");
  75. replace(clean, "\x1b", "\\[");
  76. */
  77. replace(clean, "\n", "");
  78. replace(clean, "\r", "");
  79. // ANSI too
  80. ansi_clean(clean);
  81. // BUGZ_LOG(error) << "cleaned: " << clean;
  82. high_ascii(clean);
  83. // replace(clean, "\x1b", "^");
  84. return clean;
  85. }
  86. std::vector<std::string> split(const std::string &line) {
  87. static std::regex rx_split("[^\\s]+");
  88. std::vector<std::string> results;
  89. for (auto it = std::sregex_iterator(line.begin(), line.end(), rx_split);
  90. it != std::sregex_iterator(); ++it) {
  91. results.push_back(it->str());
  92. }
  93. return results;
  94. }
  95. std::vector<std::string> split(const std::string &line, const std::string &by) {
  96. std::string work = line;
  97. std::vector<std::string> results;
  98. size_t pos;
  99. while ((pos = work.find(by)) != std::string::npos) {
  100. results.push_back(work.substr(0, pos));
  101. work.erase(0, pos + by.length());
  102. }
  103. if (!work.empty()) results.push_back(work);
  104. return results;
  105. }
  106. bool in(const std::string &line, const std::string &has) {
  107. return (line.find(has) != std::string::npos);
  108. }
  109. bool startswith(const std::string &line, const std::string &has) {
  110. return (line.substr(0, has.length()) == has);
  111. }
  112. bool endswith(const std::string &line, const std::string &has) {
  113. if (line.length() < has.length()) return false;
  114. return (line.substr(line.length() - has.length()) == has);
  115. }
  116. void trim(std::string &str) {
  117. while (str.substr(0, 1) == " ") str.erase(0, 1);
  118. while (str.substr(str.length() - 1) == " ") str.erase(str.length() - 1);
  119. }
  120. bool at_command_prompt(const std::string &prompt) {
  121. if (startswith(prompt, "Command ["))
  122. if (endswith(prompt, "] (?=Help)? : ")) return true;
  123. return false;
  124. }
  125. bool at_computer_prompt(const std::string &prompt) {
  126. if (startswith(prompt, "Computer command ["))
  127. if (endswith(prompt, "] (?=Help)? ")) return true;
  128. return false;
  129. }
  130. bool at_planet_prompt(const std::string &prompt) {
  131. if (startswith(prompt, "Planet command (?=Help)"))
  132. if (endswith(prompt, " [D] ")) return true;
  133. return false;
  134. }
  135. bool density_clear(int sector, int density, int navhaz) {
  136. if (sector == 0) return false;
  137. // if(anomoly) return false;
  138. /*
  139. http://wiki.classictw.com/index.php?title=Gypsy%27s_Big_Dummy%27s_Guide_to_TradeWars_Text#Trader_Information
  140. Density Readings:
  141. 0 = Empty Sector or Ferrengi Dreadanought
  142. 1 = Marker Beacon
  143. 2 = Limpet Type 2 Tracking Mine
  144. 5 = Fighter (per Fighter)
  145. 10 = Armid Type 1 Mine
  146. 21 = Navigation Hazard (Per 1 Percent)
  147. 21 = Destroyed Ship (Due to 1 Percent Nav-Haz)
  148. 38 = Unmanned Ship
  149. 40 = Manned Ship, Alien or Ferrengi Assault Trader
  150. 50 = Destroyed Starport (After 25 Percent Nav-Haz Clears)
  151. 100 = Starport or Ferrengi Battle Cruiser
  152. 210 = Destroyed Planet (Due to 10 Percent Nav-Haz)
  153. 462 = Federation Starship under Admiral Nelson
  154. 489 = Federation Starship under Captain Zyrain
  155. 500 = Planet
  156. 512 = Federation Starship under Admiral Clausewitz
  157. 575 = Destroyed Port (Before 25% Nav-Haz Clears)
  158. */
  159. int dense = density;
  160. if ((navhaz != 0) && (navhaz <= 5)) {
  161. // Adjust density by upto 5% navhaz, exlude greather than 5%
  162. dense -= navhaz * 21;
  163. }
  164. if (navhaz > 5) return false;
  165. switch (dense) {
  166. case 0:
  167. case 1:
  168. case 100:
  169. case 101:
  170. return true;
  171. }
  172. // Special case for Sector 001.
  173. if ((sector == 1) && (dense == 601)) return true;
  174. return false;
  175. }
  176. #include <algorithm>
  177. #include <cctype>
  178. void str_toupper(std::string &str) {
  179. std::transform(str.begin(), str.end(), str.begin(), ::toupper);
  180. }
  181. void str_tolower(std::string &str) {
  182. std::transform(str.begin(), str.end(), str.begin(), ::tolower);
  183. }
  184. void remove_telnet_commands(std::string &text) {
  185. size_t pos;
  186. while ((pos = text.find('\xff')) != std::string::npos) {
  187. text.erase(pos, pos + 3);
  188. }
  189. }
  190. int sstoi(const std::string &text, int failure) {
  191. int result;
  192. try {
  193. result = stoi(text);
  194. } catch (const std::invalid_argument &e) {
  195. // BUGZ_LOG(fatal) << e.what();
  196. return failure;
  197. } catch (const std::out_of_range &e) {
  198. // BUGZ_LOG(fatal) << e.what();
  199. return failure;
  200. }
  201. return result;
  202. }
  203. time_t time_t_now(void) {
  204. return std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
  205. }
  206. // json support functions
  207. bool json_bool(json j) {
  208. if (j.is_boolean()) {
  209. return j.get<bool>();
  210. }
  211. if (j.is_number_integer()) {
  212. return j.get<int>() == 1;
  213. }
  214. if (j.is_string()) {
  215. std::string temp = j.get<std::string>();
  216. char c = toupper(temp[0]);
  217. return ((c == 'Y') || (c == 'T'));
  218. }
  219. std::string error = "json_bool from ";
  220. error += j.type_name();
  221. throw std::range_error(error);
  222. }
  223. std::string json_str(json j) {
  224. if (j.is_string()) return j.get<std::string>();
  225. if (j.is_number_integer()) {
  226. return std::to_string(j.get<int>());
  227. }
  228. std::string error = "json_str from ";
  229. error += j.type_name();
  230. throw std::range_error(error);
  231. }
  232. int json_int(json j) {
  233. if (j.is_number_integer()) return j.get<int>();
  234. if (j.is_string()) return sstoi(j.get<std::string>());
  235. std::string error = "json_int from ";
  236. error += j.type_name();
  237. throw std::range_error(error);
  238. }