]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/display.py
Only cache stack
[lightcards.git] / lightcards / display.py
index ca6744adaa033a71c0da4194eee2deeb47226376..d0dd9a779b2881f19c897b1d8dad153ce362fb26 100644 (file)
@@ -6,7 +6,7 @@ from random import shuffle
 import sys
 import textwrap
 
-from . import lightcards
+from . import lightcards, progress
 
 
 class Display():
@@ -23,6 +23,17 @@ class Display():
         curses.init_pair(3, curses.COLOR_YELLOW, 0)
         self.get_key()
 
+    def leave(self):
+        if self.obj.getIdx() == len(self.stack):
+            self.obj.setIdx(0)
+
+        progress.dump(self.stack, lightcards.get_orig())
+        sys.exit(0)
+
+    def ntotal(self):
+        """Get toal number of starred cards"""
+        return(len([card for card in self.stack if card.getStar()]))
+
     def disp_bar(self):
         """
         Display the statusbar at the bottom of the screen with progress, star
@@ -46,13 +57,15 @@ class Display():
         # Create bar component
         bar_start = "["
         bar_middle = self.stack[self.obj.getIdx()].printStar()
-        bar_end= "] [" + percent + "% (" + \
+        bar_end = f"] [{self.ntotal()}/{str(len(self.stack))} starred] " + \
+            f"[{percent}% (" + \
             str(self.obj.getIdx() + 1).zfill(len(str(len(self.stack)))) + \
-            "/" + str(len(self.stack)) + ")] [" + \
-            self.headers[self.obj.getSide()] + " (" + \
-            str(self.obj.getSide() + 1) + ")]"
+            f"/{str(len(self.stack))})] [" + \
+            f"{self.headers[self.obj.getSide()]} (" + \
+            f"{str(self.obj.getSide() + 1)})] "
 
         # Put it all togethor
+        self.win.hline(mlines - 2, 0, 0, mcols)
         self.win.addstr(mlines - 1, 0, bar_start, curses.color_pair(1))
         self.win.addstr(bar_middle, star_color)
         self.win.insstr(bar_end, curses.color_pair(1))
@@ -60,44 +73,41 @@ class Display():
     def menu_print(self, string, err=False):
         self.win.clear()
         if err:
-            self.win.addstr(string + "\n\n", curses.color_pair(2))
+            color = curses.color_pair(2)
         else:
-            self.win.addstr(string + "\n\n", curses.color_pair(1))
-            self.disp_menu()
+            color = curses.color_pair(1)
+        self.disp_menu(keygrab=False)
+        self.win.addstr("\n\n" + string, color)
+        self.menu_grab()
 
-    def disp_menu(self):
-        """
-        Display a menu once the end of the deck has been reached, offering
-        multiple options on how to continue.
-        """
-
-        self.win.addstr("Choose one of the following options:\n\n" +
-                        "[y]: reset stack to original state\n" +
-                        "[z]: shuffle stack\n" +
-                        "[f]: flip all cards in stack\n" +
-                        "[t]: reverse stack order\n" +
-                        "[u]: unstar all\n" +
-                        "[s]: update stack to include starred only\n\n" +
-                        "[r]: restart\n" +
-                        "[q]: quit")
-        self.obj.setIdx(0)
+    def menu_grab(self):
         while True:
             key = self.win.getkey()
             if key == "q":
-                sys.exit(0)
+                if len(self.stack) == self.obj.getIdx():
+                    self.leave()
+                elif len(self.stack) < self.obj.getIdx():
+                    self.obj.setIdx(0)
+                self.get_key()
             elif key == "y":
                 self.stack = lightcards.get_orig()[1]
                 self.menu_print("Stack reset!")
+            elif key == "a":
+                self.stack.sort()
+                self.menu_print("Stack alphabetized!")
             elif key == "u":
                 [x.unStar() for x in self.stack]
                 self.menu_print("All unstarred!")
+            elif key == "d":
+                [x.star() for x in self.stack]
+                self.menu_print("All starred!")
             elif key == "t":
                 self.stack.reverse()
                 self.menu_print(
                     "self.stack reversed!")
             elif key == "z":
                 shuffle(self.stack)
-                self.menu_print("self.stack shuffled!")
+                self.menu_print("Stack shuffled!")
             elif key == "f":
                 for x in self.stack:
                     x[0], x[1] = x[1], x[0]
@@ -122,12 +132,40 @@ class Display():
                 self.obj.setIdx(len(self.stack) - 1)
                 self.get_key()
             elif key == "r":
+                self.obj.setIdx(0)
                 self.get_key()
 
+    def disp_menu(self, keygrab=True, quit=False):
+        """
+        Display a menu once the end of the deck has been reached, offering
+        multiple options on how to continue.
+        """
+
+        quit_text = "[q]: back"
+        if quit:
+            quit_text = "[q]: quit"
+
+        self.win.addstr("LIGHTCARDS MENU", curses.color_pair(1) +
+                        curses.A_BOLD)
+        self.win.hline(1, 0, curses.ACS_HLINE, 15)
+        self.win.addstr(2, 0, "[y]: reset stack to original state\n" +
+                        "[a]: alphabetize stack\n" +
+                        "[z]: shuffle stack\n" +
+                        "[f]: flip all cards in stack\n" +
+                        "[t]: reverse stack order\n" +
+                        "[u]: unstar all\n" +
+                        "[d]: star all\n" +
+                        "[s]: update stack to include starred only\n\n" +
+                        "[r]: restart\n" +
+                        quit_text)
+
+        if keygrab:
+            self.menu_grab()
+
     def wrap_width(self):
-        (mlines, mcols) = self.win.getmaxyx()
-        wrap_width = mcols
-        if mcols > 80:
+        (_, mcols) = self.win.getmaxyx()
+        wrap_width = mcols - 20
+        if wrap_width > 80:
             wrap_width = 80
         return wrap_width
 
@@ -138,9 +176,9 @@ class Display():
         side.
         """
         self.win.clear()
-        (mlines, mcols) = self.win.getmaxyx()
+        (_, mcols) = self.win.getmaxyx()
         if self.obj.getIdx() == len(self.stack):
-            self.disp_menu()
+            self.disp_menu(quit=True)
         else:
             # If on the back of the card, show the content of the front side in
             # the header
@@ -169,6 +207,7 @@ class Display():
                 self.stack[self.obj.getIdx()][self.obj.getSide()],
                 width=self.wrap_width()))
         self.disp_bar()
+        self.disp_sidebar()
 
     def disp_help(self):
         """Display help screen"""
@@ -178,7 +217,7 @@ class Display():
         self.win.hline(1, 0, curses.ACS_HLINE, 15)
         self.win.addstr(2, 0, textwrap.fill(
             "Welcome to lightcards. Here are some keybindings to get you " +
-            "started", width=self.wrap_width()) +
+            "started:", width=self.wrap_width()) +
                         "\n\nh, left          previous card\n" +
                         "l, right         next card\n" +
                         "j, k, up, down   flip card\n" +
@@ -186,7 +225,8 @@ class Display():
                         "0, ^, home       go to the start of the deck\n" +
                         "$, end           go to the end of the deck\n" +
                         "H, ?             open this screen\n" +
-                        "e                open the input file in $EDITOR\n\n" +
+                        "e                open the input file in $EDITOR\n" +
+                        "m                open the control menu\n\n" +
                         textwrap.fill(
                             "More information can be found in the man page, " +
                             "or by running `lightcards --help`.",
@@ -207,7 +247,7 @@ class Display():
         while True:
             key = self.win.getkey()
             if key == "q":
-                sys.exit(0)
+                self.leave()
             elif key in ["l", "KEY_RIGHT"]:
                 self.obj.forward(self.stack)
                 self.obj.setSide(0)
@@ -232,6 +272,35 @@ class Display():
                 self.disp_card()
             elif key in ["H", "?"]:
                 self.disp_help()
+            elif key == "m":
+                self.win.clear()
+                self.disp_menu()
             elif key == "e":
                 (self.headers, self.stack) = lightcards.reparse()
                 self.get_key()
+
+    def disp_sidebar(self):
+        (mlines, mcols) = self.win.getmaxyx()
+        left = mcols - 19
+
+        self.win.addstr(0, mcols - 16, "STARRED CARDS",
+                        curses.color_pair(3) + curses.A_BOLD)
+        self.win.vline(0, mcols - 20, 0, mlines - 2)
+        self.win.hline(1, left, 0, mlines)
+
+        i = 0
+        for card in self.stack:
+            if i > mlines - 6:
+                self.win.addstr(2 + i, left, f"... ({self.ntotal() - i} more)")
+                break
+            elif card.getStar():
+                term = card[0]
+                if len(card[0]) > 18:
+                    term = card[0][:18] + "…"
+                self.win.addstr(2 + i, left, term)
+
+                i += 1
+
+        if i == 0:
+            self.win.addstr(2, left, "None starred")
+