Browse Source

Ok, harry looks at node number passed -SL0

to create the log file for that node.
(We are ready for multiple nodes at once.)

If the -SL isn't passed, it says something
about running ./mySTIC (whatever you're doing)

So if you're trying to run -cfg, you want
./mySTIC -cfg

Fixed terminal, we didn't understand 39, 49.
(Default FG, BG.)
bugz 4 years ago
parent
commit
d5e670bc96
6 changed files with 45 additions and 22 deletions
  1. 5 2
      charman.cpp
  2. 29 15
      hharry.cpp
  3. 10 0
      terminal.cpp
  4. 0 4
      terminal.h
  5. 0 1
      utils.cpp
  6. 1 0
      utils.h

+ 5 - 2
charman.cpp

@@ -31,7 +31,7 @@ void CharMan::validate(void) {
 }
 
 void CharMan::regular_expressions(void) {
-  std::regex words("[a-zA-Z']+([ ]{1,2}[a-zA-Z&-]+)+");
+  static std::regex words("[a-zA-Z'-]+([ ]{1,2}[a-zA-Z&'-]+)+");
   // I need position and length.
 
   for (auto it =
@@ -93,6 +93,9 @@ int CharMan::word_mangler(std::pair<int, int> pos_len) {
   return count;
 }
 
+// What is the max number of characters I should wrangle?
+#define MAX_TRANSPOSE 2
+
 int CharMan::word_wrangler(std::pair<int, int> pos_len) {
   int count = 0;
   int p;
@@ -102,7 +105,7 @@ int CharMan::word_wrangler(std::pair<int, int> pos_len) {
     return 0;
 
   p = randint(pos_len.second - 4) + 2;
-  for (len = 0; len < 3; ++len) {
+  for (len = 0; len < MAX_TRANSPOSE; ++len) {
     if (!isalpha(this->get(pos_len.first + p + len)))
       break;
   }

+ 29 - 15
hharry.cpp

@@ -8,6 +8,8 @@
 #include <unistd.h>
 
 #include <string>
+#include <sstream>
+
 using namespace std;
 
 // #include <signal.h> // handle Ctrl-C/SIGINT
@@ -110,8 +112,8 @@ The code to get the username and fullname is useless on telnet
 connections.
 
  */
-const char *username = NULL;
-const char *fullname = NULL;
+string username;
+string fullname;
 
 /*
 This only works for those few idiots that use the
@@ -129,9 +131,9 @@ int locate_user(const char *alias) {
   // Carry on!
   while (fread(buffer, 0x600, 1, user) == 1) {
     pcopy(buffer + 0x6d, temp);
-    if (strcasecmp(temp, username) == 0) {
+    if (strcasecmp(temp, username.c_str()) == 0) {
       pcopy(buffer + 0x8c, temp);
-      fullname = strdup(temp);
+      fullname.assign(temp);
       break;
     }
     /*
@@ -144,7 +146,6 @@ int locate_user(const char *alias) {
   return 1;
 }
 
-
 /*
 
 This is done.  :D  My buffering system works with stack'em.
@@ -226,10 +227,7 @@ int main(int argc, char *argv[]) {
   pid_t pid;
   int node = -1;
 
-  if (!file_output_open("horrible_harry.log"))
-    return 2;
   init_harry();
-
   srandom(time(NULL));
 
   // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
@@ -255,18 +253,34 @@ int main(int argc, char *argv[]) {
   // -U<username>
   for (int x = 0; x < argc; x++) {
     if (strncmp("-U", argv[x], 2) == 0) {
-      username = argv[x] + 2;
-      ZF_LOGI("Username: [%s]", username);
-    };
+      username.assign( argv[x] + 2);
+    }
     if (strncmp("-SL", argv[x], 3) == 0) {
       node = atoi(argv[x] + 3) + 1;
-      ZF_LOGI("Node: %d", node);
     }
   }
 
-  if (username != NULL) {
-    locate_user(username);
-    ZF_LOGD("Username: [%s] A.K.A. [%s]", username, fullname);
+  if (node == -1) {
+    // likely this is someone trying to run something
+    printf("Try ./mySTIC (whatever it is you're trying)!\n");
+    return 2;
+  }
+
+  string logfile;
+  {
+    ostringstream buffer;
+
+    buffer << "horrible_harry_" << node << ".log";
+    logfile = buffer.str();
+  };
+
+  if (!file_output_open((const char *)logfile.c_str()))
+    return 2;
+
+  ZF_LOGI("Node: %d", node);
+  if (!username.empty() ) {
+    locate_user(username.c_str());
+    ZF_LOGD("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(), (const char *)fullname.c_str());
   }
 
   pid = forkpty(&master, NULL, NULL, NULL);

+ 10 - 0
terminal.cpp

@@ -50,6 +50,16 @@ void ansi_color(struct console_details *cdp, int color) {
     cdp->bgcolor = color - 40;
     return;
   }
+  if (color == 39) {
+    // default fg color
+    cdp->fgcolor = 7;
+    return;
+  }
+  if (color == 49) {
+    // default bg color
+    cdp->bgcolor = 0;
+    return;
+  }
   ZF_LOGD("ansi_color( %d ) is unknown to me.", color);
 }
 

+ 0 - 4
terminal.h

@@ -30,8 +30,4 @@ ANSI_TYPE console_ansi(struct console_details *cdp, const char *ansi);
 termchar console_char(struct console_details *cdp, char ch);
 void console_receive(struct console_details *cdp, std::string chars);
 
-/*   // These should no longer be needed or used //
-void console_string(struct console_details *cdp, const char *chars);
-void console_receive(struct console_details *cdp, const char *chars, int len);
-*/
 #endif

+ 0 - 1
utils.cpp

@@ -1,4 +1,3 @@
-#include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

+ 1 - 0
utils.h

@@ -16,6 +16,7 @@ int random_activate(int w);
  * This converts most \n\r\v\f\t codes,
  * defaults to \xHH (hex value).
  */
+
 char *repr(const char *data);
 const char *strnstr(const char *source, int len, const char *needle);
 int rstrnstr(const char *buffer, int len, const char *find);