charman.cpp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. #include <ctype.h>
  2. #include <regex>
  3. #include <string>
  4. #include <vector>
  5. #include "charman.h"
  6. #include "utils.h"
  7. #include "zf_log.h"
  8. void CharMan::validate(void) {
  9. // Control buffer debugging output.
  10. #ifndef NO_BUFFER_DEBUG
  11. bool valid = true;
  12. ZF_LOGE("validate: text_offsets %d", (int)text_offsets.size());
  13. ZF_LOGE("validate work size %d, buffer size %d, text size %d",
  14. (int)work.size(), (int)buffer.size(), (int)text.size());
  15. for (int x = 0; x < (int)text_offsets.size(); ++x) {
  16. int offset = text_offsets[x];
  17. ZF_LOGE("%d : %d", x, offset);
  18. if (offset >= 0) {
  19. if (text[x] != work[offset]) {
  20. ZF_LOGE("validate: %d off %d [%c != %c]", x, offset, text[x],
  21. work[offset]);
  22. valid = false;
  23. }
  24. if ((text[x] != ' ') && (text[x] != buffer[offset])) {
  25. ZF_LOGE("validate: %d off %d [%c != %c]", x, offset, text[x],
  26. buffer[offset]);
  27. valid = false;
  28. }
  29. }
  30. }
  31. if (!valid) {
  32. ZF_LOGE("* NOT VALID* Somethings hosed.");
  33. diagnostics();
  34. }
  35. #endif
  36. }
  37. void CharMan::diagnostics(void) {
  38. // Control buffer debugging output.
  39. #ifndef NO_BUFFER_DEBUG
  40. ZF_LOGV_MEM(buffer.data(), buffer.size(), "Buffer:");
  41. ZF_LOGV_MEM(work.data(), work.size(), "Work:");
  42. ZF_LOGV_MEM(text.data(), text.size(), "Text Buffer:");
  43. std::ostringstream oss;
  44. int comma = 0;
  45. for (auto it = std::begin(text_offsets); it != std::end(text_offsets); ++it) {
  46. if (comma) {
  47. oss << ", ";
  48. };
  49. comma++;
  50. oss << *it;
  51. if (comma == 30) {
  52. std::string temp_output = oss.str();
  53. ZF_LOGV("Vector: %s", temp_output.c_str());
  54. // reset ostringstream
  55. oss.str(std::string());
  56. oss.clear();
  57. comma = 0;
  58. }
  59. }
  60. std::string vector_output = oss.str();
  61. ZF_LOGV("Vector: %s", vector_output.c_str());
  62. // reset oss (if we need it)
  63. oss.str(std::string());
  64. oss.clear();
  65. #endif
  66. }
  67. void CharMan::regular_expressions(void) {
  68. static std::regex words("[a-zA-Z'-]+([ ]{1,2}[a-zA-Z&'-]+)+");
  69. // I need position and length.
  70. pos_len.clear();
  71. for (auto it =
  72. std::sregex_iterator(this->text.begin(), this->text.end(), words);
  73. it != std::sregex_iterator(); ++it) {
  74. int pos = it->position(), len = it->length();
  75. ZF_LOGD("pos %d len %d (%s)", pos, len,
  76. this->text.substr(pos, len).c_str());
  77. if (len > 4)
  78. pos_len.push_back(std::make_pair(it->position(), it->length()));
  79. }
  80. }
  81. char CharMan::get(int pos) { return this->text[pos]; }
  82. void CharMan::set(int pos, char ch) {
  83. this->text[pos] = ch;
  84. int idx = this->text_offsets[pos];
  85. if (idx >= 0) {
  86. this->buffer[idx] = ch;
  87. this->work[idx] = ch;
  88. }
  89. }
  90. void CharMan::insert(int pos, std::string str) {
  91. int len = str.size();
  92. // What happens if pos is at the end of the buffer?
  93. int idx;
  94. if (pos == (int)text_offsets.size()) {
  95. // Ok, this is at the very end of the buffer, which is beyond what the
  96. // vector is holding.
  97. idx = this->text_offsets[pos - 1] + 1;
  98. ZF_LOGE("Use %d for idx", idx);
  99. } else
  100. idx = this->text_offsets[pos];
  101. // ZF_LOGE("insert( POS %d, LEN %d, IDX %d, %s)", pos, len, idx, str.c_str());
  102. // diagnostics();
  103. std::string blank(len, ' ');
  104. // Don't insert into text.
  105. // Insert blank into work.
  106. // Update indexes >= idx
  107. if (idx >= 0) {
  108. this->buffer.insert(idx, str);
  109. this->work.insert(idx, blank);
  110. // UPDATE indexes!
  111. for (auto it = std::begin(this->text_offsets);
  112. it != std::end(this->text_offsets); ++it) {
  113. if (*it >= idx) {
  114. *it += len;
  115. }
  116. }
  117. // ZF_LOGE("Indexes updated... check your work");
  118. // diagnostics();
  119. }
  120. }
  121. int CharMan::word_mangler(std::pair<int, int> pos_len) {
  122. int pos = pos_len.first;
  123. int state = randrange(-1, 1);
  124. int count = 0;
  125. for (int p = 0; p < pos_len.second; ++p) {
  126. char c = this->get(pos + p);
  127. if (randint(pos_len.second) == p)
  128. break;
  129. switch (state) {
  130. case -1:
  131. if (islower(c)) {
  132. count++;
  133. this->set(pos + p, toupper(c));
  134. }
  135. break;
  136. case 0:
  137. if (islower(c)) {
  138. count++;
  139. this->set(pos + p, toupper(c));
  140. } else {
  141. if (isupper(c)) {
  142. count++;
  143. this->set(pos + p, tolower(c));
  144. }
  145. }
  146. break;
  147. case 1:
  148. if (isupper(c)) {
  149. count++;
  150. this->set(pos + p, tolower(c));
  151. }
  152. break;
  153. }
  154. }
  155. return count;
  156. }
  157. // What is the max number of characters I should wrangle?
  158. #define MAX_TRANSPOSE 2
  159. int CharMan::word_wrangler(std::pair<int, int> pos_len) {
  160. int count = 0;
  161. int p;
  162. int len;
  163. if (pos_len.second < 4)
  164. return 0;
  165. p = randint(pos_len.second - 4) + 2;
  166. for (len = 0; len < MAX_TRANSPOSE; ++len) {
  167. if (!isalpha(this->get(pos_len.first + p + len)))
  168. break;
  169. }
  170. ZF_LOGD("Wrangler: %d, %d", p, len);
  171. if (len >= 2) {
  172. for (int x = 0; x < len / 2; x++) {
  173. char ch = this->get(pos_len.first + p + x);
  174. this->set(pos_len.first + p + x,
  175. this->get(pos_len.first + p + len - 1 - x));
  176. this->set(pos_len.first + p + len - 1 - x, ch);
  177. }
  178. count++;
  179. }
  180. return count;
  181. }
  182. /*
  183. Display up to certain point.
  184. Print some characters slowly. Delay.
  185. */
  186. int CharMan::word_tangler(std::pair<int, int> pos_len) {
  187. int p;
  188. int len;
  189. std::string part = this->text.substr(pos_len.first, pos_len.second);
  190. ZF_LOGE("tangler [%s]", logrepr(part.c_str()));
  191. if (pos_len.second < 4)
  192. return 0;
  193. /* p = randint(pos_len.second - 4);
  194. len = randint(pos_len.second - p); */
  195. p = pos_len.first;
  196. len = pos_len.second;
  197. if (len >= 2) {
  198. ZF_LOGD("Tangler: %d, %d", p, len);
  199. this->validate();
  200. std::ostringstream buffer;
  201. std::string tangle;
  202. int r = 1; // randint(2) + 1;
  203. buffer << "^P1^R" << r;
  204. r = randint(4) + 1;
  205. buffer << "^S" << r;
  206. tangle = buffer.str();
  207. std::string reset = "^R0^S0";
  208. ZF_LOGD("insert reset %s", reset.c_str());
  209. this->insert(p + len, reset);
  210. // this->validate();
  211. ZF_LOGD("insert tangle %s", tangle.c_str());
  212. this->insert(p, tangle);
  213. // this->validate();
  214. return 1;
  215. }
  216. return 0;
  217. }
  218. CharMan::CharMan(std::string &buffer, std::string &work, std::string &text,
  219. std::vector<int> &text_offsets)
  220. : buffer(buffer), work(work), text(text), text_offsets(text_offsets) {
  221. this->mangle_count = 0;
  222. this->mangle_chars = 0;
  223. this->need_render = 0;
  224. this->level = harry_level();
  225. if (!this->level)
  226. return;
  227. // validate();
  228. regular_expressions();
  229. ZF_LOGD("Found %d word groups", (int)pos_len.size());
  230. if (pos_len.size() > 0) {
  231. for (int i = 0; i < (int)pos_len.size(); ++i) {
  232. int active = 0;
  233. // if (random_activate((level + 1) / 2)) { // 8
  234. if (random_activate(level * 11)) { // level = 4, so it's 44
  235. int c = word_mangler(pos_len[i]);
  236. if (c) {
  237. active = 1;
  238. this->mangle_count++;
  239. this->mangle_chars += c;
  240. }
  241. }
  242. // if (random_activate((level + 1) / 2)) { // 4
  243. if (random_activate(level * 11)) { // level = 4, so it's 44
  244. if (word_wrangler(pos_len[i])) {
  245. this->mangle_count++;
  246. active = 1;
  247. }
  248. }
  249. if (!active && random_activate(level)) { // level = 4, so it's 4
  250. if (word_tangler(pos_len[i])) {
  251. this->need_render = 1;
  252. }
  253. }
  254. }
  255. }
  256. };
  257. CharMan::~CharMan() {
  258. ZF_LOGD("~CharMan");
  259. // validate();
  260. }