only use ascii drawstyles in ascii mode
[netris.git] / curses.c
index 6363d2674d8899e5b6c0cf52a79d550adc86cf85..a2c523480d6281e11489588a5cd362ba569d7b28 100644 (file)
--- a/curses.c
+++ b/curses.c
@@ -15,8 +15,6 @@
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * $Id: curses.c,v 1.33 1999/05/16 06:56:25 mhw Exp $
  */
 
 #include "netris.h"
 #endif
 
 static MyEventType KeyGenFunc(EventGenRec *gen, MyEvent *event);
-static EventGenRec keyGen =
-//             { NULL, 0, FT_read, STDIN_FILENO, KeyGenFunc, EM_key };
-               { NULL, 0, FT_read, STDIN_FILENO, KeyGenFunc, EM_key };
+static EventGenRec keyGen = {
+//     NULL, 0, FT_read, STDIN_FILENO, KeyGenFunc, EM_key
+       NULL, 0, FT_read, STDIN_FILENO, KeyGenFunc, EM_key
+};
 
 static int boardYPos[MAX_SCREENS], boardXPos[MAX_SCREENS];
 static int boardSize[MAX_SCREENS];
@@ -51,12 +50,12 @@ WINDOW *msgwin;
 static int haveColor;
 int PlayerDisp[MAX_SCREENS];
 
-#define MSG_HEIGHT 64 //max history
+#define MSG_HEIGHT 64  //max history
 char *message[MSG_HEIGHT];
 char messages[MSG_HEIGHT][MSG_WIDTH];
 
-static char *term_vi;  /* String to make cursor invisible */
-static char *term_ve;  /* String to make cursor visible */
+static char *term_vi;  /* String to make cursor invisible */
+static char *term_ve;  /* String to make cursor visible */
 
 void InitScreens(void)
 {
@@ -178,12 +177,12 @@ void GetTermcapInfo(void)
                        "vt100", "vt101", "vt102",
                        "vt200", "vt220", "vt300",
                        "vt320", "vt400", "vt420",
-                       "screen", "xterm", NULL };
+                       "screen", "xterm", NULL
+               };
                int i;
 
                for (i = 0; vts[i]; i++)
-                       if (!strcmp(term, vts[i]))
-                       {
+                       if (!strcmp(term, vts[i])) {
                                term_vi = "\033[?25l";
                                term_ve = "\033[?25h";
                                break;
@@ -391,9 +390,9 @@ void Messagetype(char c, int x, char *s)
                mvwaddch(msgwin, messageHeight-1, (x+1) % (messageWidth-1), ' ');
        } //escape
        else {
-               if (c == 13 || c==127) //enter/backspace
+               if (c == 13 || c == 127) //enter/backspace
                        mvwaddch(msgwin, messageHeight - 1, (x+2) % (messageWidth-1),
-                               x>=messageWidth-3 ? s[x - messageWidth + 3] : ' ');
+                               x >= messageWidth-3 ? s[x - messageWidth + 3] : ' ');
                else //any character
                        mvwaddch(msgwin, messageHeight - 1, x % (messageWidth-1), c);
                mvwaddch(msgwin, messageHeight - 1, (x+1) % (messageWidth-1), '_');
@@ -414,59 +413,56 @@ void PlotBlock1(int y, int x, unsigned char type)
                }
 #endif
                switch (Sets.drawstyle) {
-                       case 2:
-                               switch (type & 192) {
-                                case 64:  //right neighbour
-                                        addstr("[[");
-                                        break;
-                                case 128: //left
-                                        addstr("]]");
-                                        break;
-                                default:  //both/none
-                                        addstr("[]");
-                                        break;
-                               } //horizontal stickiness
-                               break; //ascii horizontally grouped
-                       case 3:
-                               switch (type & 240) {
-                                case 48:
-                                        addstr("||"); break; //middle
-                                case 64: case 80: case 96:
-                                        addstr("[="); break; //left end
-                                case 112:
-                                        addstr("|="); break;
-                                case 128: case 144: case 160:
-                                        addstr("=]"); break; //right end
-                                case 176:
-                                        addstr("=|"); break;
-                                case 192: case 208: case 224:
-                                        addstr("=="); break;
-                                default:
-                                        addstr("[]"); break; //top/bottom/mid
-                               } //neighbours
-                               break; //ascii semi-grouped
-                       case 7:
-                               switch (type & 240) {
-                                case 16:  addch(ACS_ULCORNER); addch(ACS_URCORNER); break;//top end
-                                case 32:  addch(ACS_LLCORNER); addch(ACS_LRCORNER); break;//bottom end
-                                case 48:  addch(ACS_VLINE); addch(ACS_VLINE); break;   //vertical middle
-                                case 64:  addch(' '); addch(ACS_HLINE); break;         //left end
-                                case 80:  addch(ACS_ULCORNER); addch(ACS_TTEE); break; //top left corner
-                                case 96:  addch(ACS_LLCORNER); addch(ACS_BTEE); break; //bottom left corner
-                                case 112: addch(ACS_LTEE); addch(ACS_PLUS); break;     //vertical+right
-                                case 128: addch(ACS_HLINE); addch(' '); break;         //right end
-                                case 144: addch(ACS_TTEE); addch(ACS_URCORNER); break; //top right corner
-                                case 160: addch(ACS_BTEE); addch(ACS_LRCORNER); break; //bottom right corner
-                                case 176: addch(ACS_PLUS); addch(ACS_RTEE); break;     //vertical+left
-                                case 192: addch(ACS_HLINE); addch(ACS_HLINE); break;   //horizontal middle
-                                case 208: addch(ACS_TTEE); addch(ACS_TTEE); break;     //horizontal+down
-                                case 224: addch(ACS_BTEE); addch(ACS_BTEE); break;     //horizontal+up
-                                default:  addstr("[]"); break;
-                               } //neighbours
-                               break; //curses grouped
+               case 2:
+                       switch (type & 192) {
+                       case 64:  //right neighbour
+                               addstr("[["); break;
+                       case 128: //left
+                               addstr("]]"); break;
+                       default:  //both/none
+                               addstr("[]"); break;
+                       } //horizontal stickiness
+                       break; //ascii horizontally grouped
+               case 3:
+                       switch (type & 240) {
+                       case 48:
+                               addstr("||"); break; //middle
+                       case 64: case 80: case 96:
+                               addstr("[="); break; //left end
+                       case 112:
+                               addstr("|="); break;
+                       case 128: case 144: case 160:
+                               addstr("=]"); break; //right end
+                       case 176:
+                               addstr("=|"); break;
+                       case 192: case 208: case 224:
+                               addstr("=="); break;
                        default:
-                               addstr("[]");
-                               break; //ascii non-grouped
+                               addstr("[]"); break; //top/bottom/mid
+                       } //neighbours
+                       break; //ascii semi-grouped
+               case 7:
+                       switch (type & 240) {
+                       case  16: addch(ACS_ULCORNER); addch(ACS_URCORNER); break;//top end
+                       case  32: addch(ACS_LLCORNER); addch(ACS_LRCORNER); break;//bottom end
+                       case  48: addch(ACS_VLINE); addch(ACS_VLINE); break;    //vertical middle
+                       case  64: addch(' '); addch(ACS_HLINE); break;          //left end
+                       case  80: addch(ACS_ULCORNER); addch(ACS_TTEE); break;  //top left corner
+                       case  96: addch(ACS_LLCORNER); addch(ACS_BTEE); break;  //bottom left corner
+                       case 112: addch(ACS_LTEE); addch(ACS_PLUS); break;      //vertical+right
+                       case 128: addch(ACS_HLINE); addch(' '); break;          //right end
+                       case 144: addch(ACS_TTEE); addch(ACS_URCORNER); break;  //top right corner
+                       case 160: addch(ACS_BTEE); addch(ACS_LRCORNER); break;  //bottom right corner
+                       case 176: addch(ACS_PLUS); addch(ACS_RTEE); break;      //vertical+left
+                       case 192: addch(ACS_HLINE); addch(ACS_HLINE); break;    //horizontal middle
+                       case 208: addch(ACS_TTEE); addch(ACS_TTEE); break;      //horizontal+down
+                       case 224: addch(ACS_BTEE); addch(ACS_BTEE); break;      //horizontal+up
+                       default:  addstr("[]"); break;
+                       } //neighbours
+                       break; //curses grouped
+               default:
+                       addstr("[]");
+                       break; //ascii non-grouped
                } //draw block
 #ifdef HAVE_NCURSES
                if (Sets.standout) standend();
@@ -499,8 +495,8 @@ void PlotBlock1S(int y, int x, unsigned char type)
 }
 void PlotBlock(int scr, int y, int x, unsigned char type)
 {
-       if (y >= 0 && y < Players[scr].boardVisible &&
-               x >= 0 && x < Players[scr].boardWidth) {
+       if (y >= 0 && y < Players[scr].boardVisible
+        && x >= 0 && x < Players[scr].boardWidth) {
                if (boardSize[scr] > 1)
                        PlotBlock1(boardYPos[scr] - y, boardXPos[scr] + 2*x, type);
                else
@@ -599,10 +595,10 @@ void ScheduleFullRedraw(void)
 
 void CatchWinCh(int sig)
 { //handle window resize
-       endwin();    //exit curses
-       refresh();    //and reinit display (with different sizes)
+       endwin();      //exit curses
+       refresh();     //and reinit display (with different sizes)
        InitFields();  //manually redraw everything
-       refresh();    //refresh
+       refresh();     //refresh
 }
 
 static MyEventType KeyGenFunc(EventGenRec *gen, MyEvent *event)
@@ -613,7 +609,3 @@ static MyEventType KeyGenFunc(EventGenRec *gen, MyEvent *event)
                return E_none;
 }
 
-/*
- * vi: ts=4 ai
- * vim: noai si
- */