소스 검색

Added new Line ctors. Setup test capture output.

Steve Thielemann 4 년 전
부모
커밋
1d570179d0
3개의 변경된 파일73개의 추가작업 그리고 27개의 파일을 삭제
  1. 38 26
      door.cpp
  2. 9 1
      door.h
  3. 26 0
      lines.cpp

+ 38 - 26
door.cpp

@@ -32,11 +32,13 @@ static bool hangup = false;
 
 void sig_handler(int signal) {
   hangup = true;
+  /*
   ofstream sigf;
   sigf.open("signal.log", std::ofstream::out | std::ofstream::app);
 
   sigf << "SNAP! GOT: " << signal << std::endl;
   sigf.close();
+  */
   // 13 SIGPIPE -- ok, what do I do with this, eh?
 }
 
@@ -84,6 +86,7 @@ void cp437toUnicode(const char *input, std::string &out) {
 }
 
 bool unicode = false;
+bool debug_capture = false;
 
 /**
  * Construct a new Door object using the commandline parameters
@@ -182,16 +185,11 @@ Door::Door(std::string dname, int argc, char *argv[])
   }
 
   // Set program name
-  // strcpy(od_control.od_prog_name, dname.c_str());
-  // od_prog_copyright, od_prog_version
+
   std::string logFileName = dname + ".log";
   logf.open(logFileName.c_str(), std::ofstream::out | std::ofstream::app);
 
   log("Door init");
-  // strcpy(od_control.od_logfile_name, logFileName.c_str());
-  // Initialize Door
-  //  od_init();
-
   init();
 
   // door.sys doesn't give BBS name. system_name
@@ -200,11 +198,6 @@ Door::Door(std::string dname, int argc, char *argv[])
 }
 
 Door::~Door() {
-  // od_exit(0, FALSE);
-
-  // alarm(0);
-  // signal(SIGALRM, SIG_DFL);
-
   // restore default mode
   // tcsetattr(STDIN_FILENO, TCSANOW, &tio_default);
   tcsetattr(STDIN_FILENO, TCOFLUSH, &tio_default);
@@ -269,7 +262,7 @@ void Door::detect_unicode_and_screen(void) {
     *this << "\377\375\042\377\373\001"; // fix telnet client
   }
 
-  *this << "\x1b[0;30;40m;\x1b[2J\x1b[H"; // black on black, clrscr, go home
+  *this << "\x1b[0;30;40m\x1b[2J\x1b[H"; // black on black, clrscr, go home
   *this << "\u2615"
         << "\x1b[6n";                   // hot beverage + cursor pos
   *this << "\x1b[999C\x1b[999B\x1b[6n"; // goto end of screen + cursor pos
@@ -303,8 +296,16 @@ void Door::detect_unicode_and_screen(void) {
       logf << std::endl;
       logf << "BUFFER [" << (char *)buffer << "]" << std::endl;
       */
+      // logf << "BUFFER [" << (char *)buffer << "]" << std::endl;
+
       // this did not work -- because of the null characters in the buffer.
-      if (strstr(buffer, "1;2R") != nullptr) {
+
+      // 1;3R required on David's machine.  I'm not sure why.
+      // 1;3R also happens under VSCodium.
+      // 1;4R is what I get from syncterm.
+
+      if ((strstr(buffer, "1;2R") != nullptr) or
+          (strstr(buffer, "1;3R") != nullptr)) {
         unicode = true;
         log("unicode enabled \u2615"); // "U0001f926");
       }
@@ -434,7 +435,10 @@ signed int Door::getch(void) {
   char key;
 
   if (door::hangup)
-    return -1;
+    return -2;
+
+  if (time_left < 2)
+    return -3;
 
   while (select_ret == -1) {
     FD_ZERO(&socket_set);
@@ -686,16 +690,20 @@ signed int Door::sleep_key(int secs) {
  * @return std::streamsize
  */
 std::streamsize Door::xsputn(const char *s, std::streamsize n) {
-  static std::string buffer;
-  buffer.append(s, n);
-  // setp(&(*buffer.begin()), &(*buffer.end()));
-  std::cout << buffer;
-  std::cout.flush();
-  // od_disp_emu(buffer.c_str(), TRUE);
-  // Tracking character position could be a problem / local terminal unicode.
-  if (track)
-    cx += n;
-  buffer.clear();
+  if (debug_capture) {
+    debug_buffer.append(s, n);
+  } else {
+    static std::string buffer;
+    buffer.append(s, n);
+    // setp(&(*buffer.begin()), &(*buffer.end()));
+    std::cout << buffer;
+    std::cout.flush();
+    // od_disp_emu(buffer.c_str(), TRUE);
+    // Tracking character position could be a problem / local terminal unicode.
+    if (track)
+      cx += n;
+    buffer.clear();
+  }
   return n;
 }
 
@@ -716,8 +724,12 @@ int Door::overflow(char c) {
 
   // buffer.push_back(c);
   // od_disp_emu(temp, TRUE);
-  std::cout << c;
-  std::cout.flush();
+  if (debug_capture) {
+    debug_buffer.append(1, c);
+  } else {
+    std::cout << c;
+    std::cout.flush();
+  }
   if (track)
     cx++;
   // setp(&(*buffer.begin()), &(*buffer.end()));

+ 9 - 1
door.h

@@ -1,4 +1,5 @@
-// #include <OpenDoor.h> // Now using odoors for c++
+#ifndef DOOR_H
+#define DOOR_H
 
 #include "anyoption.h"
 #include <cstdint>
@@ -55,6 +56,7 @@
 namespace door {
 
 extern bool unicode;
+extern bool debug_capture;
 
 /*
 Translate CP437 strings to unicode for output.
@@ -221,6 +223,7 @@ public:
   virtual ~Door();
   void log(std::string output);
   AnyOption opt;
+  std::string debug_buffer;
 
   /**
    * Previous ANSI-BBS colors and attributes sent.
@@ -454,6 +457,10 @@ private:
 public:
   Line(std::string &txt, int width = 0);
   Line(const char *txt, int width = 0);
+  Line(std::string &txt, int width, ANSIColor c);
+  Line(const char *txt, int width, ANSIColor c);
+  Line(std::string &txt, int width, renderFunction rf);
+  Line(const char *txt, int width, renderFunction rf);
   Line(const Line &rhs);
   // ~Line();
 
@@ -680,3 +687,4 @@ lightline - text, changes format/coloring if focus/nofocus is set?
  */
 
 } // namespace door
+#endif

+ 26 - 0
lines.cpp

@@ -114,6 +114,32 @@ Line::Line(std::string &txt, int width) : text{txt} {
   hasColor = false;
 }
 
+Line::Line(std::string &txt, int width, ANSIColor c) : text{txt}, color{c} {
+  if (width)
+    makeWidth(width);
+  hasColor = true;
+}
+
+Line::Line(const char *txt, int width, ANSIColor c) : text{txt}, color{c} {
+  if (width)
+    makeWidth(width);
+  hasColor = true;
+}
+
+Line::Line(std::string &txt, int width, renderFunction rf)
+    : text{txt}, render{rf} {
+  if (width)
+    makeWidth(width);
+  hasColor = false;
+}
+
+Line::Line(const char *txt, int width, renderFunction rf)
+    : text{txt}, render{rf} {
+  if (width)
+    makeWidth(width);
+  hasColor = false;
+}
+
 /**
  * Construct a new Line:: Line object with
  * const char * and total width