summaryrefslogtreecommitdiffstats
path: root/include/pttstruct.h.save
blob: f73f6413266755fffb44422afdea84b3c508e442 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/* $Id: pttstruct.h.save,v 1.1 2002/03/07 15:13:48 in2 Exp $ */
~#ifndef INCLUDE_STRUCT_H
#define INCLUDE_STRUCT_H

/* 小雞的資料 */
typedef struct chicken_t {
    char name[20];
    char type;              /* 物種 */
    unsigned char tech[16]; /* 技能 */
    time_t birthday;        /* 生日 */
    time_t lastvisit;       /* 上次照顧時間 */
    int oo;                 /* 補品 */
    int food;               /* 食物 */
    int medicine;           /* 藥品 */
    int weight;             /* 體重 */
    int clean;              /* 乾淨 */
    int run;                /* 敏捷度 */
    int attack;             /* 攻擊力 */
    int book;               /* 知識 */
    int happy;              /* 快樂 */
    int satis;              /* 滿意度 */
    int temperament;        /* 氣質 */
    int tiredstrong;        /* 疲勞度 */
    int sick;               /* 病氣指數 */
    int hp;                 /* 血量 */
    int hp_max;             /* 滿血量 */
    int mm;                 /* 法力 */
    int mm_max;             /* 滿法力 */
    time_t cbirth;          /* 實際計算用的生日 */
    int pad[2];             /* 留著以後用 */
} chicken_t;

#define IDLEN      12             /* Length of bid/uid */
#define PASSLEN    14             /* Length of encrypted passwd field */
#define REGLEN     38             /* Length of registration data */

typedef struct userec_t {
    char userid[IDLEN + 1];
    char realname[20];
    char username[24];
    char passwd[PASSLEN];
    unsigned char uflag;
    unsigned int userlevel;
    unsigned short numlogins;
    unsigned short numposts;
    time_t firstlogin;
    time_t lastlogin;
    char lasthost[16];
    int  money;
    char remoteuser[3];           /* 保留 目前沒用到的 */
    char proverb;
    char email[50];
    char address[50];
    char justify[REGLEN + 1];
    unsigned char month;
    unsigned char day;
    unsigned char year;
    unsigned char sex;
    unsigned char state;
    unsigned char pager;
    unsigned char invisible;
    unsigned int  exmailbox;
    chicken_t mychicken;
    time_t lastsong;
    unsigned int  loginview;
    unsigned char channel;        /* 動態看板 */
    unsigned short vl_count;      /* ViolateLaw counter */
    unsigned short five_win;
    unsigned short five_lose;
    unsigned short five_tie;
    unsigned short chc_win;
    unsigned short chc_lose;
    unsigned short chc_tie;
    char pad[95];
} userec_t;
/* these are flags in userec_t.uflag */
#define SIG_FLAG        0x3     /* signature number, 2 bits */
#define PAGER_FLAG      0x4     /* true if pager was OFF last session */
#define CLOAK_FLAG      0x8     /* true if cloak was ON last session */
#define FRIEND_FLAG     0x10    /* true if show friends only */
#define BRDSORT_FLAG    0x20    /* true if the boards sorted alphabetical */
#define MOVIE_FLAG      0x40    /* true if show movie */
#define COLOR_FLAG      0x80    /* true if the color mode open */
#define MIND_FLAG       0x100   /* true if mind search mode open <-Heat*/

#define BTLEN      48             /* Length of board title */

typedef struct boardheader_t {
    char brdname[IDLEN + 1];             /* bid */
    char title[BTLEN + 1];
    char BM[IDLEN * 3 + 3];              /* BMs' uid, token '/' */
    unsigned int brdattr;                /* board的屬性 */
    char pad[3];                         /* 沒用到的 */
    time_t bupdate;                      /* note update time */
    char pad2[3];                        /* 沒用到的 */
    unsigned char bvote;                 /* Vote flags */
    time_t vtime;                        /* Vote close time */
    unsigned int level;                  /* 可以看此板的權限 */
    int uid;                             /* 看板的類別 ID */
    int gid;                             /* 看板所屬的類別 ID */
    void *next[2];           /* 在同一個gid下一個看板 動態產生*/
    void *firstchild[2];     /* 屬於這個看板的第一個子看板 */
    void *parent;
    char pad3[100];
} boardheader_t;

#define BRD_NOZAP             00001         /* 不可zap  */
#define BRD_NOCOUNT           00002         /* 不列入統計 */
#define BRD_NOTRAN            00004         /* 不轉信 */
#define BRD_GROUPBOARD        00010         /* 群組板 */
#define BRD_HIDE              00020         /* 隱藏板 (看板好友才可看) */
#define BRD_POSTMASK          00040         /* 限制發表或閱讀 */
#define BRD_ANONYMOUS         00100         /* 匿名板? */
#define BRD_DEFAULTANONYMOUS  00200         /* 預設匿名板 */
#define BRD_BAD           00400         /* 違法改進中看板 */
#define BRD_VOTEBOARD         01000     /* 連署機看板 */

#define TTLEN      64             /* Length of title */
#define FNLEN      33             /* Length of filename  */

#define FHR_REFERENCE   (1<<31)

typedef struct fileheader_t {
    char filename[FNLEN];         /* M.9876543210.A */
    char savemode;                /* file save mode */
    char owner[IDLEN + 2];        /* uid[.] */
    char date[6];                 /* [02/02] or space(5) */
    char title[TTLEN + 1];
    int  money;                   /* rocker: if bit32 on ==> reference */
    unsigned char filemode;       /* must be last field @ boards.c */
} fileheader_t;

#define FILE_LOCAL      0x1     /* local saved */
#define FILE_READ       0x1     /* already read : mail only */
#define FILE_MARKED     0x2     /* opus: 0x8 */
#define FILE_DIGEST     0x4     /* digest */
#define FILE_TAGED      0x8     /* taged */
#define FILE_SOLVED 0x10    /* problem solved, sysop only */

#define STRLEN     80             /* Length of most string data */


/* uhash is a userid->uid hash table -- jochang */

#define HASH_BITS 16
typedef struct uhash_t {
    char userid[MAX_USERS][IDLEN + 1];
    int money[MAX_USERS];
    int next_in_hash[MAX_USERS];
    int hash_head[1 << HASH_BITS];
    int number;             /* # of users total */
    int loaded;             /* .PASSWD has been loaded? */
} uhash_t;

union xitem_t {
    struct {                    /* bbs_item */
    char fdate[9];          /* [mm/dd/yy] */
    char editor[13];        /* user ID */
    char fname[31];
    } B;
    struct {                    /* gopher_item */
    char path[81];
    char server[48];
    int port;
    } G;
};

typedef struct {
    char title[63];
    union xitem_t X;
} item_t;

typedef struct {
    item_t *item[MAX_ITEMS];
    char mtitle[STRLEN];
    char *path;
    int num, page, now, level;
} gmenu_t;

typedef struct msgque_t {
    pid_t last_pid;
    char last_userid[IDLEN + 1];
    char last_call_in[80];
} msgque_t;

#define FAVMAX     74         /* Max boards of Myfavorite */
#define FAVGMAX    16             /* Max groups of Myfavorite */
#define FAVGSLEN    8         /* Max Length of Description String */

typedef struct userinfo_t {
    int uid;                      /* Used to find user name in passwd file */
    pid_t pid;                    /* kill() to notify user of talk request */
    int sockaddr;                 /* ... */
    int destuid;                  /* talk uses this to identify who called */
    int destuip;                  /* dest index in utmpshm->uinfo[] */
    unsigned char active;         /* When allocated this field is true */
    unsigned char invisible;      /* Used by cloaking function in Xyz menu */
    unsigned char sockactive;     /* Used to coordinate talk requests */
    unsigned int userlevel;
    unsigned char mode;           /* UL/DL, Talk Mode, Chat Mode, ... */
    unsigned char pager;          /* pager toggle, YEA, or NA */
    unsigned char in_chat;        /* for in_chat commands   */
    unsigned char sig;            /* signal type */
    char userid[IDLEN + 1];
    char chatid[11];              /* chat id, if in chat mode */
    char realname[20];
    char username[24];
    char from[27];                /* machine name the user called in from */
    int from_alias;
    char birth;                   /* 是否是生日 Ptt*/
    char tty[11];                 /* tty port */
    int friend[MAX_FRIEND];
    void *friend_online[MAX_FRIEND];  /* point到線上好友 */
    int friend_state[MAX_FRIEND];     /* 對應到friend_online的狀態 */
    int reject[MAX_REJECT];
    unsigned char msgcount;
    msgque_t msgs[MAX_MSGS];
    time_t uptime;
    time_t lastact;               /* 上次使用者動的時間 */
    unsigned int  brc_id;
    unsigned char lockmode;       /* 不准 multi_login 玩的東西 */
    char turn;                    /* for gomo */
    char mateid[IDLEN + 1];       /* for gomo */
    unsigned short int five_win;
    unsigned short int five_lose;
    unsigned short int five_tie;
    int myfavorite[FAVMAX];
    char gfavorite[FAVGMAX][FAVGSLEN+1];
    int ninGroup[FAVGMAX];
    int nGroup;
    int ninRoot;
    int mailalert;
    int sex;
    char color;
    int mind;
} userinfo_t;

typedef struct {
    fileheader_t *header;
    char mtitle[STRLEN];
    char *path;
    int num, page, now, level;
} menu_t;

typedef struct onekey_t {     /* Used to pass commands to the readmenu */
    int key;
    int (*fptr)();
} onekey_t;

#define ANSILINELEN (511)                /* Maximum Screen width in chars */

/* anti_crosspost */
typedef struct crosspost_t {
    int checksum[4]; /* 0 -> 'X' cross post  1-3 -> 簡查文章行 */
    int times;       /* 第幾次 */
} crosspost_t;

#define SORT_BY_ID    0
#define SORT_BY_CLASS 1
#define SORT_BY_STAT  1
#define SORT_BY_IDLE  2
#define SORT_BY_FROM  3
#define SORT_BY_FIVE  4
#define SORT_BY_SEX   5

typedef struct bcache_t {
    boardheader_t bcache[MAX_BOARD];
    boardheader_t *sorted[2][MAX_BOARD]; /* 0: by name 1: by class */
    fileheader_t dircache[MAX_BOARD][DIRCACHESIZE];
    unsigned int total[MAX_BOARD];
    time_t lastposttime[MAX_BOARD];
    time_t uptime;
    time_t touchtime;
    int number;
    int busystate;
} bcache_t;

typedef struct keeploc_t {
    char *key;
    int top_ln;
    int crs_ln;
    struct keeploc_t *next;
} keeploc_t;

#define USHM_SIZE       (MAX_ACTIVE + 4)  /* why+4? */

struct utmpfile_t {
    userinfo_t uinfo[USHM_SIZE];
    userinfo_t *sorted[8][USHM_SIZE];
    time_t uptime;
    int number;
    int busystate;
};

struct pttcache_t {
    char notes[MAX_MOVIE][200*11];
    char today_is[20];
    int n_notes[MAX_MOVIE_SECTION];          /* 一節中有幾個 看板 */
    int next_refresh[MAX_MOVIE_SECTION];     /* 下一次要refresh的 看板 */
    int max_film;
    int max_history;
    time_t uptime;
    time_t touchtime;
    int busystate;
};

typedef struct fromcache_t {
    char domain[MAX_FROM][50];
    char replace[MAX_FROM][50];
    int top;
    int max_user;
    time_t max_time;
    time_t uptime;
    time_t touchtime;
    int busystate;
} fromcache_t;

typedef struct {
    unsigned char oldlen;                /* previous line length */
    unsigned char len;                   /* current length of line */
    unsigned char mode;                  /* status of line, as far as update */
    unsigned char smod;                  /* start of modified data */
    unsigned char emod;                  /* end of modified data */
    unsigned char sso;                   /* start stand out */
    unsigned char eso;                   /* end stand out */
    unsigned char data[ANSILINELEN + 1];
} screenline_t;

typedef struct {
    int r, c;
} rc_t;

#define BRD_ROW           10
#define BRD_COL           9

typedef int board_t[BRD_ROW][BRD_COL];

/* name.c 中運用的資料結構 */
typedef struct word_t {
    char *word;
    struct word_t *next;
} word_t;

typedef struct commands_t {
    int (*cmdfunc)();
    int level;
    char *desc;                   /* next/key/description */
} commands_t;

typedef struct MailQueue {
    char filepath[FNLEN];
    char subject[STRLEN];
    time_t mailtime;
    char sender[IDLEN + 1];
    char username[24];
    char rcpt[50];
    int method;
    char * niamod;
} MailQueue;

enum  {MQ_TEXT, MQ_UUENCODE, MQ_JUSTIFY};

#endif