diff options
author | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-18 17:14:32 +0800 |
---|---|---|
committer | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-18 17:14:32 +0800 |
commit | d00edbdbd10efdd918837b5958dba4577be59e84 (patch) | |
tree | 8fc451c3f5443deda2d4167056dc9cf3e8546e00 /mbbsd/user.c | |
parent | 36a55220bb41463b63308ea5b2c781bdfa453e9f (diff) | |
download | pttbbs-d00edbdbd10efdd918837b5958dba4577be59e84.tar pttbbs-d00edbdbd10efdd918837b5958dba4577be59e84.tar.gz pttbbs-d00edbdbd10efdd918837b5958dba4577be59e84.tar.bz2 pttbbs-d00edbdbd10efdd918837b5958dba4577be59e84.tar.lz pttbbs-d00edbdbd10efdd918837b5958dba4577be59e84.tar.xz pttbbs-d00edbdbd10efdd918837b5958dba4577be59e84.tar.zst pttbbs-d00edbdbd10efdd918837b5958dba4577be59e84.zip |
Many changes in structure.
Add sex restriction.
git-svn-id: http://opensvn.csie.org/pttbbs/branches/scw.angel@1999 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r-- | mbbsd/user.c | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index cbb85d1d..e01f00c6 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -89,8 +89,10 @@ user_display(userec_t * u, int real) get_num_records(genbuf, sizeof(fileheader_t)), u->exmailbox, u->mobile, u->month, u->day, u->year % 100, u->mychicken.name); +#ifdef PLAY_ANGEL prints(" 小 天 使: %s\n", u->myangel[0] ? u->myangel : "無"); +#endif prints(" 註冊日期: %s", ctime(&u->firstlogin)); prints(" 前次光臨: %s", ctime(&u->lastlogin)); prints(" 前次點歌: %s", ctime(&u->lastsong)); @@ -221,6 +223,9 @@ static void Customize(void) char done = 0, mindbuf[5]; char *wm[3] = {"一般", "進階", "未來"}; int key; +#ifdef PLAY_ANGEL + char *am[4] = {"男女皆可", "限女生", "限男生", "暫不接受新的小主人"}; +#endif showtitle("個人化設定", "個人化設定"); memcpy(mindbuf, &currutmp->mind, 4); @@ -240,8 +245,9 @@ static void Customize(void) #ifdef PLAY_ANGEL if( HAS_PERM(PERM_ANGEL) ){ prints("%-30s%10s\n", "F. 接受小主人詢問", - ((cuser.uflag2 & BEING_ANGEL) ? "是" : "否")); - key = getkey("請按 [A-F] 切換設定,按 [Return] 結束:"); + (REJECT_QUESTION ? "否" : "是")); + prints("%-30s%10s\n", "G. 接受的小主人性別", am[ANGEL_STATUS()]); + key = getkey("請按 [A-G] 切換設定,按 [Return] 結束:"); }else #endif key = getkey("請按 [A-E] 切換設定,按 [Return] 結束:"); @@ -281,7 +287,15 @@ static void Customize(void) #ifdef PLAY_ANGEL case 'f': if( HAS_PERM(PERM_ANGEL) ){ - t_switchangel(); + SwitchBeingAngel(); + break; + } + done = 1; + break; + + case 'g': + if( HAS_PERM(PERM_ANGEL) ){ + SwitchAngelSex(ANGEL_STATUS() + 1); break; } #endif @@ -394,6 +408,21 @@ uinfo_query(userec_t * u, int real, int unum) i++; break; } + +#ifdef PLAY_ANGEL + if (real) + while (1) { + getdata_str(i, 0, "小天使:", buf, IDLEN + 1, DOECHO, + x.myangel); + if(buf[0] == 0 || (getuser(buf) && + (xuser.userlevel & PERM_ANGEL))){ + strlcpy(x.myangel, buf, IDLEN + 1); + ++i; + break; + } + } +#endif + if (real) { int l; if (HAS_PERM(PERM_BBSADM)) { |