Ver código fonte

Changed from 1/10 to 1/100

  So yeah, mangle & wrange will occur at 44% and tangle at 4%
david 4 anos atrás
pai
commit
be756863c8
3 arquivos alterados com 10 adições e 6 exclusões
  1. 5 3
      charman.cpp
  2. 1 1
      utils.cpp
  3. 4 2
      wordplay.cpp

+ 5 - 3
charman.cpp

@@ -264,7 +264,8 @@ this->text_offsets = text_offsets;
   if (pos_len.size() > 0) {
     for (int i = 0; i < pos_len.size(); ++i) {
       int active = 0;
-      if (random_activate((level + 1) / 2)) { // 8
+      //if (random_activate((level + 1) / 2)) { // 8
+      if (random_activate(level * 11)) { // level = 4, so it's 44
         int c = word_mangler(pos_len[i]);
         if (c) {
           active = 1;
@@ -273,14 +274,15 @@ this->text_offsets = text_offsets;
         }
       }
 
-      if (random_activate((level + 1) / 2)) { // 4
+      //if (random_activate((level + 1) / 2)) { // 4
+      if (random_activate(level * 11)) { // level = 4, so it's 44
         if (word_wrangler(pos_len[i])) {
           this->mangle_count++;
           active = 1;
         }
       }
 
-      if (!active && random_activate((level + 1) / 2)) {
+      if (!active && random_activate(level)) { //level = 4, so it's 4
         if (word_tangler(pos_len[i])) {
           this->need_render = 1;
         }

+ 1 - 1
utils.cpp

@@ -32,7 +32,7 @@ int randrange(int M, int N) {
  */
 int random_activate(int w) {
   int r = randint(100);
-  if (r <= (w * 10)) {
+  if (r <= w) {
     return 1;
   };
   return 0;

+ 4 - 2
wordplay.cpp

@@ -92,7 +92,8 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
     restore_color.assign(color_restore(&temp_console));
     */
 
-    if (random_activate((level + 1) / 2)) {
+    //if (random_activate((level + 1) / 2)) {
+    if (random_activate(level * 5)) {
       std::ostringstream display;
       int needs_cls = 0;
 
@@ -166,7 +167,8 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
       work.insert(pos, std::string(display_output.size(), ' '));
       return 1; // need_render = 1;
     } else {
-      if (random_activate((level + 1) / 2)) {
+      //if (random_activate((level + 1) / 2)) {
+      if (random_activate(level * 5)) {
         int r;
         std::ostringstream display;