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