/[LeafOK_CVS]/lbbs/src/screen.c
ViewVC logotype

Diff of /lbbs/src/screen.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.5 by sysadm, Sat Oct 23 08:22:25 2004 UTC Revision 1.36 by sysadm, Tue May 6 05:31:26 2025 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2                            screen.c  -  description                                                    screen.c  -  description
3                               -------------------                                                           -------------------
4      begin                : Mon Oct 18 2004          Copyright            : (C) 2004-2025 by Leaflet
5      copyright            : (C) 2004 by Leaflet          Email                : leaflet@leafok.com
     email                : leaflet@leafok.com  
6   ***************************************************************************/   ***************************************************************************/
7    
8  /***************************************************************************  /***************************************************************************
9   *                                                                         *   *                                                                         *
10   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
11   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
12   *   the Free Software Foundation; either version 2 of the License, or     *   *   the Free Software Foundation; either version 3 of the License, or     *
13   *   (at your option) any later version.                                   *   *   (at your option) any later version.                                   *
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17    #include "bbs.h"
18    #include "common.h"
19    #include "str_process.h"
20    #include "log.h"
21  #include "io.h"  #include "io.h"
22    #include "screen.h"
23    #include <string.h>
24    #include <ctype.h>
25    #include <sys/types.h>
26    #include <sys/stat.h>
27    #include <unistd.h>
28    #include <stdlib.h>
29    
30  int screen_lines = 24;  #define ACTIVE_BOARD_HEIGHT 8
31    
32  void  int screen_rows = 24;
33  moveto (int row, int col)  int screen_cols = 80;
34    
35    void moveto(int row, int col)
36    {
37            if (row >= 0)
38            {
39                    prints("\033[%d;%dH", row, col);
40            }
41            else
42            {
43                    prints("\r");
44            }
45    }
46    
47    void clrtoeol()
48    {
49            prints("\033[K");
50    }
51    
52    void clrline(int line_begin, int line_end)
53    {
54            int i;
55    
56            for (i = line_begin; i <= line_end; i++)
57            {
58                    moveto(i, 0);
59                    prints("\033[K");
60            }
61    }
62    
63    void clrtobot(int line_begin)
64    {
65            moveto(line_begin, 0);
66            prints("\033[J");
67            moveto(line_begin, 0);
68    }
69    
70    void clearscr()
71    {
72            prints("\033[2J");
73            moveto(0, 0);
74    }
75    
76    int press_any_key()
77    {
78            moveto(screen_rows, 0);
79            clrtoeol();
80    
81            prints("                           \033[1;33m按任意键继续...\033[0;37m");
82            iflush();
83    
84            return igetch_t(60);
85    }
86    
87    void set_input_echo(int echo)
88    {
89            if (echo)
90            {
91                    outc('\x83'); // ASCII code 131
92                    iflush();
93            }
94            else
95            {
96                    //    outc ('\x85'); // ASCII code 133
97                    prints("\xff\xfb\x01\xff\xfb\x03");
98                    iflush();
99                    igetch(0);
100                    igetch(1);
101            }
102    }
103    
104    static int _str_input(char *buffer, int buffer_length, int echo_mode)
105    {
106            int c, offset = 0, i, hz = 0;
107    
108            for (i = 0; i < buffer_length && buffer[i] != '\0'; i++)
109            {
110                    offset++;
111            }
112    
113            while ((c = igetch_t(60)))
114            {
115                    if (c == KEY_NULL || c == KEY_TIMEOUT || c == CR)
116                    {
117                            igetch(1); // Cleanup remaining '\n' in the buffer
118                            break;
119                    }
120                    if (c == LF)
121                    {
122                            continue;
123                    }
124                    if (c == BACKSPACE)
125                    {
126                            if (offset > 0)
127                            {
128                                    offset--;
129                                    if (buffer[offset] < 0 || buffer[offset] > 127)
130                                    {
131                                            prints("\033[D \033[D");
132                                            offset--;
133                                            if (offset < 0) // should not happen
134                                            {
135                                                    log_error("Offset of buffer is negative\n");
136                                                    offset = 0;
137                                            }
138                                    }
139                                    buffer[offset] = '\0';
140                                    prints("\033[D \033[D");
141                                    iflush();
142                            }
143                            continue;
144                    }
145                    if (c > 255 || iscntrl(c))
146                    {
147                            continue;
148                    }
149                    if (c > 127 && c <= 255)
150                    {
151                            if (!hz && offset + 2 > buffer_length) // No enough space for Chinese character
152                            {
153                                    igetch(1); // Cleanup remaining input
154                                    outc('\a');
155                                    iflush();
156                                    continue;
157                            }
158                            hz = (!hz);
159                    }
160                    if (offset >= buffer_length)
161                    {
162                            outc('\a');
163                            iflush();
164                            continue;
165                    }
166                    buffer[offset++] = (char)c;
167                    buffer[offset] = '\0';
168                    switch (echo_mode)
169                    {
170                    case DOECHO:
171                            outc((char)c);
172                            break;
173                    case NOECHO:
174                            outc('*');
175                            break;
176                    }
177                    if (!hz)
178                    {
179                            iflush();
180                    }
181            }
182    
183            return offset;
184    }
185    
186    int str_input(char *buffer, int buffer_length, int echo_mode)
187    {
188            int len;
189    
190            buffer[0] = '\0';
191    
192            len = _str_input(buffer, buffer_length, echo_mode);
193    
194            prints("\r\n");
195            iflush();
196    
197            return len;
198    };
199    
200    int get_data(int row, int col, char *prompt, char *buffer, int buffer_length, int echo_mode)
201    {
202            int len;
203    
204            igetch(1); // Cleanup input buffer
205    
206            moveto(row, col);
207            prints(prompt);
208            prints(buffer);
209            iflush();
210    
211            len = _str_input(buffer, buffer_length, echo_mode);
212    
213            return len;
214    }
215    
216    int display_file(const char *filename)
217    {
218            char buffer[LINE_BUFFER_LEN];
219            FILE *fin;
220            size_t i;
221    
222            if ((fin = fopen(filename, "r")) == NULL)
223            {
224                    return -1;
225            }
226    
227            while (fgets(buffer, sizeof(buffer) - 1, fin))
228            {
229                    i = strnlen(buffer, sizeof(buffer) - 1);
230                    if (buffer[i - 1] == '\n' && buffer[i - 2] != '\r')
231                    {
232                            buffer[i - 1] = '\r';
233                            buffer[i] = '\n';
234                            buffer[i + 1] = '\0';
235                    }
236                    prints(buffer);
237                    iflush();
238            }
239            fclose(fin);
240    
241            return 0;
242    }
243    
244    int display_file_ex(const char *filename, int begin_line, int wait)
245    {
246            char buffer[LINE_BUFFER_LEN];
247            int ch = 0;
248            int input_ok, line, max_lines;
249            long int c_line_current = 0;
250            long int c_line_total = 0;
251            FILE *fin;
252            long *p_line_offsets;
253            long int len;
254            long int percentile;
255            int loop = 1;
256    
257            if ((fin = fopen(filename, "r")) == NULL)
258            {
259                    log_error("Unable to open file %s\n", filename);
260                    return -1;
261            }
262    
263            p_line_offsets = (long *)malloc(sizeof(long) * MAX_FILE_LINES);
264    
265            c_line_total = split_file_lines(fin, screen_cols, p_line_offsets, MAX_FILE_LINES);
266    
267            clrline(begin_line, screen_rows);
268            line = begin_line;
269            max_lines = screen_rows - 1;
270    
271            while (loop)
272            {
273                    if (c_line_current >= c_line_total && c_line_total <= screen_rows - 2)
274                    {
275                            if (wait)
276                            {
277                                    ch = press_any_key();
278                            }
279                            else
280                            {
281                                    iflush();
282                            }
283    
284                            loop = 0;
285                            break;
286                    }
287    
288                    if (c_line_current >= c_line_total || line >= max_lines)
289                    {
290                            if (c_line_current - (line - 1) + (screen_rows - 2) < c_line_total)
291                            {
292                                    percentile = (c_line_current - (line - 1) + (screen_rows - 2)) * 100 / c_line_total;
293                            }
294                            else
295                            {
296                                    percentile = 100;
297                            }
298    
299                            moveto(screen_rows, 0);
300                            prints("\033[1;44;32m%s (%d%%)%s\033[33m  │ 结束 ← <q> │ ↑/↓/PgUp/PgDn 移动 │ ? 辅助说明 │     \033[m",
301                                       (percentile < 100 ? "下面还有喔" : "没有更多了"), percentile,
302                                       (percentile < 10 ? "  " : (percentile < 100 ? " " : "")));
303                            iflush();
304    
305                            input_ok = 0;
306                            while (!input_ok)
307                            {
308                                    ch = igetch_t(MAX_DELAY_TIME);
309                                    input_ok = 1;
310                                    switch (ch)
311                                    {
312                                    case KEY_UP:
313                                            if (c_line_current - line < 0) // Reach top
314                                            {
315                                                    break;
316                                            }
317                                            c_line_current -= line;
318                                            line = begin_line;
319                                            max_lines = begin_line + 1;
320                                            prints("\033[T"); // Scroll down 1 line
321                                            // max_lines = screen_rows - 1; // Legacy Fterm only works with this line
322                                            break;
323                                    case KEY_DOWN:
324                                    case CR:
325                                            if (c_line_current + ((screen_rows - 2) - (line - 1)) >= c_line_total) // Reach bottom
326                                            {
327                                                    break;
328                                            }
329                                            c_line_current += ((screen_rows - 2) - (line - 1));
330                                            line = screen_rows - 2;
331                                            max_lines = screen_rows - 1;
332                                            moveto(screen_rows, 0);
333                                            clrtoeol();
334                                            prints("\033[S"); // Scroll up 1 line
335                                            break;
336                                    case KEY_PGUP:
337                                    case Ctrl('B'):
338                                            if (c_line_current - line < 0) // Reach top
339                                            {
340                                                    break;
341                                            }
342                                            c_line_current -= ((screen_rows - 3) + (line - 1));
343                                            if (c_line_current < 0)
344                                            {
345                                                    c_line_current = 0;
346                                            }
347                                            line = begin_line;
348                                            max_lines = screen_rows - 1;
349                                            clrline(begin_line, screen_rows);
350                                            break;
351                                    case KEY_RIGHT:
352                                    case KEY_PGDN:
353                                    case Ctrl('F'):
354                                    case KEY_SPACE:
355                                            if (c_line_current + (screen_rows - 2) - (line - 1) >= c_line_total) // Reach bottom
356                                            {
357                                                    break;
358                                            }
359                                            c_line_current += (screen_rows - 3) - (line - 1);
360                                            if (c_line_current + screen_rows - 2 > c_line_total) // No enough lines to display
361                                            {
362                                                    c_line_current = c_line_total - (screen_rows - 2);
363                                            }
364                                            line = begin_line;
365                                            max_lines = screen_rows - 1;
366                                            clrline(begin_line, screen_rows);
367                                            break;
368                                    case KEY_NULL:
369                                    case KEY_TIMEOUT:
370                                    case KEY_LEFT:
371                                    case 'q':
372                                    case 'Q':
373                                            loop = 0;
374                                            break;
375                                    case '?':
376                                    case 'h':
377                                    case 'H':
378                                            // Display help information
379                                            display_file_ex(DATA_READ_HELP, begin_line, 1);
380    
381                                            // Refresh after display help information
382                                            c_line_current -= (line - 1);
383                                            line = begin_line;
384                                            max_lines = screen_rows - 1;
385                                            clrline(begin_line, screen_rows);
386                                            break;
387                                    default:
388                                            input_ok = 0;
389                                            break;
390                                    }
391                            }
392    
393                            continue;
394                    }
395    
396                    fseek(fin, p_line_offsets[c_line_current], SEEK_SET);
397                    len = p_line_offsets[c_line_current + 1] - p_line_offsets[c_line_current];
398                    if (len >= LINE_BUFFER_LEN)
399                    {
400                            log_error("Error length exceeds buffer size: %d\n", len);
401                            len = LINE_BUFFER_LEN - 1;
402                    }
403                    if (fgets(buffer, (int)len + 1, fin) == NULL)
404                    {
405                            log_error("Reach EOF\n");
406                            break;
407                    }
408                    moveto(line, 0);
409                    clrtoeol();
410                    prints("%s", buffer);
411                    c_line_current++;
412                    line++;
413            }
414    
415            free(p_line_offsets);
416            fclose(fin);
417    
418            return ch;
419    }
420    
421    int show_top(char *status)
422  {  {
423    if (row >= 0)          char buffer[LINE_BUFFER_LEN];
424      {  
425        prints ("\033[%d;%dH", row, col);          str_space(buffer, 20 - (int)strnlen(BBS_current_section_name, sizeof(BBS_current_section_name)));
426      }  
427    else          moveto(1, 0);
428      {          clrtoeol();
429        prints ("\r");          prints("\033[1;44;33m%-20s \033[37m%20s"
430      }                     "         %s\033[33m讨论区 [%s]\033[m",
431    iflush();                     status, BBS_name, buffer, BBS_current_section_name);
432  }          iflush();
433    
434  void          return 0;
 clrtoeol ()  
 {  
   prints ("\033[K");  
   iflush();  
 }  
   
 void  
 clrline (int line_begin, int line_end)  
 {  
   int i;  
     
   for (i = line_begin; i <= line_end; i++)  
   {  
     moveto (i, 0);  
     prints ("\033[K");  
   }  
   
   iflush();  
 }  
   
 void  
 clearscr()  
 {  
   prints ("\33[2J");  
   moveto (0,0);  
   iflush();  
 }  
   
 int  
 str_input (char *buffer, int buffer_length, int echo_mode)  
 {  
   char buf[256], ch;  
   int c, offset = 0, len, loop = 1, i, hz = 0;  
   
   memset (buffer, '\0', buffer_length);  
   
   while (c = igetch ())  
     {  
       if (c == CR || c == LF)  
         break;  
       if (c == BACKSPACE)  
         {  
           if (offset > 0)  
             {  
               buffer[--offset] = '\0';  
               prints ("\b \b");  
 //            clrtoeol ();  
               iflush ();  
             }  
           continue;  
         }  
       if (c > 255 || iscntrl (c))  
         {  
           continue;  
         }  
       if (c > 127 && c <= 255)  
         {  
           hz = (!hz);  
         }  
       if (offset >= buffer_length)  
         {  
           outc ('\a');  
           continue;  
         }  
       buffer[offset++] = (char) c;  
       buffer[offset] = '\0';  
       switch (echo_mode)  
         {  
         case 0:  
           outc ((char) c);  
           break;  
         case 1:  
           outc ('*');  
           break;  
         }  
       if (!hz)  
         {  
           iflush ();  
         }  
     }  
   
   prints ("\r\n");  
   iflush ();  
   
   return offset;  
 }  
   
 int  
 display_file(const char* filename, int clear, int begin_line)  
 {  
   char buffer[260];  
   FILE *fin;  
   int i, line;  
     
   if (clear)  
   {  
     clrline(begin_line, screen_lines - 1);  
     line = begin_line;  
     moveto (line, 0);  
   }  
     
   if ((fin = fopen(filename, "r")) != NULL)  
   {  
     while (fgets(buffer, 255, fin))  
     {  
       if (line == screen_lines - 1)  
       {  
         moveto (screen_lines - 1, 0);  
         press_any_key();  
         clrline(begin_line, screen_lines - 1);  
         line = begin_line;  
         moveto (line, 0);  
       }  
   
       i = strlen(buffer);  
       if (buffer[i-1] == '\n' && buffer[i-2] != '\r')  
       {  
          buffer[i-1] = '\r';  
          buffer[i] = '\n';  
          buffer[i+1] = '\0';  
       }  
       prints (buffer);  
       iflush ();  
         
       line ++;  
     }  
     fclose (fin);  
   
     return 0;  
   }  
     
   return -1;  
 }  
   
 int  
 show_top()  
 {  
   return 0;  
 }  
   
 int  
 show_bottom()  
 {  
   return 0;  
435  }  }
436    
437  int  int show_bottom(char *msg)
 press_any_key()  
438  {  {
439    prints ("                          \033[1;33m按任意键盘继续...\033[0;37m");          char str_time[LINE_BUFFER_LEN];
440    iflush();          char buffer[LINE_BUFFER_LEN];
441            time_t time_online;
442            struct tm *tm_online;
443    
444            get_time_str(str_time, sizeof(str_time));
445            str_space(buffer, 33 - (int)strnlen(BBS_username, sizeof(BBS_username)));
446    
447            time_online = time(0) - BBS_login_tm;
448            tm_online = gmtime(&time_online);
449    
450            moveto(screen_rows, 0);
451            clrtoeol();
452            prints("\033[1;44;33m[\033[36m%s\033[33m]"
453                       "%s帐号[\033[36m%s\033[33m]"
454                       "[\033[36m%1d\033[33m:\033[36m%2d\033[33m:\033[36m%2d\033[33m]\033[m",
455                       str_time, buffer, BBS_username, tm_online->tm_mday - 1,
456                       tm_online->tm_hour, tm_online->tm_min);
457            iflush();
458    
459            return 0;
460    }
461    
462    int show_active_board()
463    {
464            char filename[FILE_PATH_LEN];
465            char buffer[LINE_BUFFER_LEN];
466            FILE *fin;
467            static int line;
468            unsigned int len;
469            int end_of_line;
470    
471            clrline(3, 2 + ACTIVE_BOARD_HEIGHT);
472    
473            if ((fin = fopen(DATA_ACTIVE_BOARD, "r")) == NULL)
474            {
475                    log_error("Unable to open file %s\n", filename);
476                    return -1;
477            }
478    
479            for (int i = 0; i < line; i++)
480            {
481                    if (fgets(buffer, sizeof(buffer), fin) == NULL)
482                    {
483                            line = 0;
484                            rewind(fin);
485                            break;
486                    }
487            }
488    
489            for (int i = 0; i < ACTIVE_BOARD_HEIGHT; i++)
490            {
491                    if (fgets(buffer, sizeof(buffer), fin) == NULL)
492                    {
493                            line = 0;
494                            break;
495                    }
496                    line++;
497                    len = split_line(buffer, screen_cols, &end_of_line);
498                    buffer[len] = '\0'; // Truncate over-length line
499                    moveto(3 + i, 0);
500                    prints("%s", buffer);
501            }
502            iflush();
503    
504            fclose(fin);
505    
506    return igetch ();          return 0;
507  }  }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1