Bläddra i källkod

Make sysop_config panel.

Steve Thielemann 3 år sedan
förälder
incheckning
27a584896b
6 ändrade filer med 56 tillägg och 35 borttagningar
  1. 38 0
      deck.cpp
  2. 2 0
      deck.h
  3. 4 22
      main.cpp
  4. 5 5
      play.cpp
  5. 4 6
      play.h
  6. 3 2
      utils.cpp

+ 38 - 0
deck.cpp

@@ -4,6 +4,7 @@
 #include "utils.h"
 #include "version.h"
 #include <algorithm>
+#include <iomanip> // setw
 #include <map>
 #include <sstream>
 
@@ -1443,3 +1444,40 @@ door::Menu make_deck_menu(void) {
 
   return m;
 }
+
+#include "play.h" // statusValue
+
+door::Panel make_sysop_config(void) {
+  const int W = 35;
+  door::Panel p(5, 5, W);
+  p.setStyle(door::BorderStyle::DOUBLE);
+  door::ANSIColor panel_color =
+      door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE, door::ATTR::BOLD);
+  p.setColor(panel_color);
+  p.addLine(
+      std::make_unique<door::Line>("Game Settings - SysOp Configurable", W));
+  std::unique_ptr<door::Line> spacer = p.spacer_line(false);
+  spacer->setColor(panel_color);
+  p.addLine(std::move(spacer));
+
+  ostringstream oss;
+
+  door::renderFunction rf = statusValue(
+      door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE, door::ATTR::BOLD),
+      door::ANSIColor(door::COLOR::GREEN, door::COLOR::BLUE, door::ATTR::BOLD));
+
+  for (auto cfg : config) {
+    std::string key = cfg.first.as<std::string>();
+    if (key[0] == '_')
+      continue;
+    // Replace _ with space.
+    while (replace(key, "_", " ")) {
+    };
+    std::string value = cfg.second.as<std::string>();
+    oss << std::setw(20) << key << " : " << value;
+    p.addLine(std::make_unique<door::Line>(oss.str(), W, rf));
+    oss.clear();
+    oss.str(std::string());
+  }
+  return p;
+}

+ 2 - 0
deck.h

@@ -176,4 +176,6 @@ door::Menu make_main_menu(void);
 door::Menu make_config_menu(void);
 door::Menu make_deck_menu(void);
 
+door::Panel make_sysop_config(void);
+
 #endif

+ 4 - 22
main.cpp

@@ -112,29 +112,11 @@ int configure(door::Door &door, DBData &db) {
           cls_display_starfield();
         else
           door << door::reset << door::cls;
-        door << door::Goto(1, 1);
 
-        door << door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLACK)
-             << "Game Settings - SysOp Configurable" << door::reset << door::nl
-             << door::nl;
-        for (auto cfg : config) {
-          std::string key = cfg.first.as<std::string>();
-          if (key[0] == '_')
-            continue;
-          // TODO: replace _ with ' ' in string.
-          while (replace(key, "_", " ")) {
-          };
-          std::string value = cfg.second.as<std::string>();
-          door << door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLACK,
-                                  door::ATTR::BOLD)
-               << std::setw(20) << key
-               << door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLACK,
-                                  door::ATTR::BOLD)
-               << " : "
-               << door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLACK,
-                                  door::ATTR::BOLD)
-               << value << door::reset << door::nl;
-        }
+        door::Panel config_panel = make_sysop_config();
+        // config_panel.set(1, 1);
+        door << config_panel << door::reset << door::nl;
+
         r = press_a_key(door);
         if (r < 0)
           return r;

+ 5 - 5
play.cpp

@@ -820,8 +820,8 @@ void PlayCards::redraw(bool dealing) {
   }
 }
 
-door::renderFunction PlayCards::statusValue(door::ANSIColor status,
-                                            door::ANSIColor value) {
+door::renderFunction statusValue(door::ANSIColor status,
+                                 door::ANSIColor value) {
   door::renderFunction rf = [status,
                              value](const std::string &txt) -> door::Render {
     door::Render r(txt);
@@ -997,9 +997,9 @@ std::unique_ptr<door::Panel> PlayCards::make_left_panel(void) {
   return p;
 }
 
-door::renderFunction PlayCards::commandLineRender(door::ANSIColor bracket,
-                                                  door::ANSIColor inner,
-                                                  door::ANSIColor outer) {
+door::renderFunction commandLineRender(door::ANSIColor bracket,
+                                       door::ANSIColor inner,
+                                       door::ANSIColor outer) {
   door::renderFunction rf = [bracket, inner,
                              outer](const std::string &txt) -> door::Render {
     door::Render r(txt);

+ 4 - 6
play.h

@@ -82,12 +82,10 @@ public:
 
   int play(void);
   void init_values(void);
-
-  door::renderFunction statusValue(door::ANSIColor status,
-                                   door::ANSIColor value);
-  door::renderFunction commandLineRender(door::ANSIColor bracket,
-                                         door::ANSIColor inner,
-                                         door::ANSIColor outer);
 };
 
+door::renderFunction statusValue(door::ANSIColor status, door::ANSIColor value);
+door::renderFunction commandLineRender(door::ANSIColor bracket,
+                                       door::ANSIColor inner,
+                                       door::ANSIColor outer);
 #endif

+ 3 - 2
utils.cpp

@@ -53,7 +53,8 @@ bool iequals(const std::string &a, const std::string &b) {
 
 std::vector<std::pair<int, int>> find_words(const std::string &text) {
   std::vector<std::pair<int, int>> words;
-  std::regex word("([a-zA-Z]+)");
+  // this is expensive to construct, so only construct it once.
+  static std::regex word("([a-zA-Z]+)");
 
   for (auto it = std::sregex_iterator(text.begin(), text.end(), word);
        it != std::sregex_iterator(); ++it) {
@@ -61,4 +62,4 @@ std::vector<std::pair<int, int>> find_words(const std::string &text) {
     words.push_back(std::make_pair(it->position(), it->length()));
   }
   return words;
-}
+}