瀏覽代碼

When rendering next_quit_panel, check card 27.

If card 27 hasn't been played, render black.
Otherwise, reset will use white, which matches
the card background.  Note: card 27 is index 26.
Steve Thielemann 3 年之前
父節點
當前提交
c8a28c0430
共有 1 個文件被更改,包括 14 次插入4 次删除
  1. 14 4
      play.cpp

+ 14 - 4
play.cpp

@@ -446,7 +446,12 @@ next_hand:
         }
 
         next_quit_panel->update();
-        door << *next_quit_panel << door::reset;
+        door << *next_quit_panel;
+        // Has card 27 played?  If so, use BLACK.  Otherwise WHITE.
+        if (state.at(26) == 2)
+          door << door::ANSIColor(door::COLOR::BLACK);
+        else
+          door << door::reset;
 
         // use some other variable here for what we get from the get_one_of.
 
@@ -641,7 +646,12 @@ next_hand:
                              hand, 1, score);
                 //}
                 next_quit_panel->update();
-                door << *next_quit_panel << door::reset;
+                door << *next_quit_panel;
+                // Has card 27 played?  If so, use BLACK.  Otherwise WHITE.
+                if (state.at(26) == 2)
+                  door << door::ANSIColor(door::COLOR::BLACK);
+                else
+                  door << door::reset;
 
                 if (hand < total_hands) {
                   r = door.get_one_of("NQ");
@@ -707,8 +717,8 @@ next_hand:
           c = dp.marker(1);
           c->set(cx + off_x + 2, cy + off_y + 2);
           door << *c
-               << door::reset; // reset works here, because the selected_card bg
-                               // is WHITE, and cursor is WHITE.
+               << door::reset; // reset works here, because the selected_card
+                               // bg is WHITE, and cursor is WHITE.
         }
       } break;
       case XKEY_RIGHT_ARROW: