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

Diff of /lbbs/src/bbs_main.c

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

Revision 1.24 by sysadm, Mon Mar 21 17:08:21 2005 UTC Revision 1.37 by sysadm, Fri May 9 11:21:11 2025 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2                            bbs_main.c  -  description                                                    bbs_main.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_main.h"
18  #include "bbs.h"  #include "bbs.h"
19    #include "welcome.h"
20    #include "login.h"
21    #include "user_priv.h"
22  #include "common.h"  #include "common.h"
23    #include "database.h"
24    #include "log.h"
25  #include "io.h"  #include "io.h"
26    #include "screen.h"
27  #include "menu.h"  #include "menu.h"
28  #include "bbs_cmd.h"  #include "bbs_cmd.h"
 #include <time.h>  
 #include <fcntl.h>  
29  #include <unistd.h>  #include <unistd.h>
30    #include <time.h>
31  #include <string.h>  #include <string.h>
32    
33  int  int bbs_info()
 bbs_main ()  
34  {  {
35    char temp[256];          prints("»¶Ó­¹âÁÙ \033[1;33m%s \033[32m[%s]  \033[37m( %s )\r\n",
36    int ret;                     BBS_name, BBS_server, app_version);
   
   set_input_echo (0);  
   
   bbs_info ();  
   
   //Welcome  
   bbs_welcome ();  
   
   //Login  
   ret = bbs_login ();  
   if (ret < 0)  
     return -1;  
   clearscr ();  
   
   //BBS Top 10  
   strcpy (temp, app_home_dir);  
   strcat (temp, "data/bbs_top.txt");  
   display_file_ex (temp, 1, 1);  
   
   //Main  
   bbs_center ();  
37    
38    //Logout          iflush();
   bbs_exit ();  
39    
40    return 0;          return 0;
41  }  }
42    
43  int  int bbs_exit()
 bbs_info ()  
44  {  {
45    prints ("»¶Ó­¹âÁÙ \033[1;33m%s \033[32m[%s]  \033[37m( %s )\r\n",          display_file_ex(DATA_GOODBYE, 1, 0);
           BBS_name, BBS_server, app_version);  
46    
47    iflush ();          sleep(1);
48    
49    return 0;          return 0;
50  }  }
51    
52  int  int bbs_center()
 bbs_exit ()  
53  {  {
54    char temp[256];          int ch, redraw;
55            time_t t_last_action;
56    
57    strcpy (temp, app_home_dir);          BBS_last_access_tm = t_last_action = time(0);
   strcat (temp, "data/goodbye.txt");  
   display_file_ex (temp, 1, 0);  
58    
59    sleep (1);          clearscr();
60    
61    return 0;          show_top("");
62  }          show_active_board();
63            show_bottom("");
64  int          display_menu(get_menu(&bbs_menu, "TOPMENU"));
 bbs_center ()  
 {  
   int ch, result;  
   char action[MAX_MENUACTION_LENGTH];  
   time_t t_last_action;  
   fd_set inputs, testfds;  
   struct timeval timeout;  
   
   FD_ZERO (&inputs);  
   FD_SET (0, &inputs);  
   
   t_last_action = time (0);  
   
   clearscr ();  
   
   show_top ("");  
   show_active_board ();  
   show_bottom ("");  
   display_menu (get_menu (&bbs_menu, "TOPMENU"));  
   
   while (1)  
     {  
       testfds = inputs;  
       timeout.tv_sec = 0;  
       timeout.tv_usec = 100000;  
   
       result = select (FD_SETSIZE, &testfds, (fd_set *) NULL,  
                        (fd_set *) NULL, &timeout);  
65    
66        switch (result)          while (!SYS_server_exit)
67          {          {
68          case 0:                  ch = igetch(0);
69            break;  
70          case -1:                  if (time(0) - t_last_action >= 10)
71            log_error ("select() error!\n");                  {
72            break;                          t_last_action = time(0);
73          default:                          show_active_board();
74            if (FD_ISSET (0, &testfds))                          show_bottom("");
75              {                  }
               ch = igetch ();  
76    
77                switch (ch)                  switch (ch)
78                  {                  {
79                  case KEY_NULL:                  case KEY_NULL:
80                    return 0;                          return 0;
81                    case KEY_TIMEOUT:
82                            if (time(0) - BBS_last_access_tm >= MAX_DELAY_TIME)
83                            {
84                                    return -1;
85                            }
86                            continue;
87                  default:                  default:
88                    strcpy (action, menu_control (&bbs_menu, ch));                          redraw = 1;
89                    switch (get_cmd_value (action))                          switch (menu_control(&bbs_menu, ch))
90                      {                          {
91                      case EXITBBS:                          case EXITBBS:
92                        return 0;                                  return 0;
93                      case BBSNET:                          case REDRAW:
94                        bbs_net ();                                  break;
95                        clearscr ();                          case NOREDRAW:
96                        show_top ("");                          case UNKNOWN_CMD:
97                        show_active_board ();                          default:
98                        show_bottom ("");                                  redraw = 0;
99                        display_current_menu (&bbs_menu);                                  break;
100                        break;                          }
101                      case UNKNOWN_CMD:                          if (redraw)
102                        break;                          {
103                      }                                  clearscr();
104                                    show_top("");
105                                    show_active_board();
106                                    show_bottom("");
107                                    display_current_menu(&bbs_menu);
108                            }
109                  }                  }
110              }                  BBS_last_access_tm = time(0);
           break;  
111          }          }
112        if (time (0) - t_last_action >= 10)  
113            return 0;
114    }
115    
116    int bbs_main()
117    {
118            int ret;
119    
120            set_input_echo(0);
121    
122            bbs_info();
123    
124            // Welcome
125            bbs_welcome();
126    
127            // Login
128            ret = bbs_login();
129            if (ret < 0)
130                    return -1;
131            log_std("User \"%s\"(%ld) login from %s:%d\n",
132                            BBS_username, BBS_priv.uid, hostaddr_client, port_client);
133            clearscr();
134    
135            // BBS Top 10
136            display_file_ex("./var/bbs_top.txt", 1, 1);
137    
138            // Main
139            bbs_center();
140    
141            // Logout
142            bbs_exit();
143            log_std("User logout\n");
144    
145            MYSQL *db = db_open();
146            if (db == NULL)
147          {          {
148            t_last_action = time (0);                  return -1;
           show_active_board ();  
           show_bottom ("");  
149          }          }
     }  
150    
151    return 0;          user_online_del(db);
152    
153            mysql_close(db);
154    
155            return 0;
156  }  }


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

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