diff options
Diffstat (limited to 'ColaBBS_to_PttBBS/cntbrd.c')
-rw-r--r-- | ColaBBS_to_PttBBS/cntbrd.c | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/ColaBBS_to_PttBBS/cntbrd.c b/ColaBBS_to_PttBBS/cntbrd.c new file mode 100644 index 00000000..23f28849 --- /dev/null +++ b/ColaBBS_to_PttBBS/cntbrd.c @@ -0,0 +1,114 @@ +#include "bbs.h" +/* usage: ./cntbrd < ColaBBS/.BOARDS > ~/.BRD */ + +typedef struct { + char brdname[13]; + char pad[148]; + char title[49]; + char pad2[46]; +} fbrd_t; + +int main(int argc, char **argv) +{ + fbrd_t fbh; + boardheader_t bh; +#if 0 + int i; + read(0, &fbh, sizeof(fbh)); + for( i = 0 ; i < sizeof(fbh) ; ++i ) + printf("%03d: %d(%c)\n", i, fbh.pad[i], fbh.pad[i]); + return 0; +#endif + + memset(&bh, 0, sizeof(bh)); + strcpy(bh.brdname, "SYSOP"); + strcpy(bh.title, "嘰哩 ◎站長好!"); + bh.brdattr = BRD_POSTMASK | BRD_NOTRAN | BRD_NOZAP; + bh.level = 0; + bh.gid = 2; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "1..........."); + strcpy(bh.title, ".... Σ中央政府 《高壓危險,非人可敵》"); + bh.brdattr = BRD_GROUPBOARD; + bh.level = PERM_SYSOP; + bh.gid = 1; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "junk"); + strcpy(bh.title, "發電 ◎雜七雜八的垃圾"); + bh.brdattr = BRD_NOTRAN; + bh.level = PERM_SYSOP; + bh.gid = 2; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "Security"); + strcpy(bh.title, "發電 ◎站內系統安全"); + bh.brdattr = BRD_NOTRAN; + bh.level = PERM_SYSOP; + bh.gid = 2; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "2..........."); + strcpy(bh.title, ".... Σ市民廣場 報告 站長 ㄜ!"); + bh.brdattr = BRD_GROUPBOARD; + bh.level = 0; + bh.gid = 1; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "ALLPOST"); + strcpy(bh.title, "嘰哩 ◎跨板式LOCAL新文章"); + bh.brdattr = BRD_POSTMASK | BRD_NOTRAN; + bh.level = PERM_SYSOP; + bh.gid = 5; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "deleted"); + strcpy(bh.title, "嘰哩 ◎資源回收筒"); + bh.brdattr = BRD_NOTRAN; + bh.level = PERM_BM; + bh.gid = 5; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "Note"); + strcpy(bh.title, "嘰哩 ◎動態看板及歌曲投稿"); + bh.brdattr = BRD_NOTRAN; + bh.level = 0; + bh.gid = 5; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "Record"); + strcpy(bh.title, "嘰哩 ◎我們的成果"); + bh.brdattr = BRD_NOTRAN | BRD_POSTMASK; + bh.level = 0; + bh.gid = 5; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "WhoAmI"); + strcpy(bh.title, "嘰哩 ◎呵呵,猜猜我是誰!"); + bh.brdattr = BRD_NOTRAN; + bh.level = 0; + bh.gid = 5; + write(1, &bh, sizeof(bh)); + + strcpy(bh.brdname, "EditExp"); + strcpy(bh.title, "嘰哩 ◎範本精靈投稿區"); + bh.brdattr = BRD_NOTRAN; + bh.level = 0; + bh.gid = 5; + write(1, &bh, sizeof(bh)); + + while( read(0, &fbh, sizeof(fbh)) == sizeof(fbh) ){ + if( !fbh.brdname[0] || strcasecmp(fbh.brdname, "sysop") == 0 ) + continue; + memset(&bh, 0, sizeof(bh)); + strlcpy(bh.brdname, fbh.brdname, sizeof(bh.brdname)); + strlcpy(bh.title, "轉換 ◎", sizeof(bh.title)); + strlcpy(&bh.title[7], fbh.title, sizeof(bh.title)); + bh.brdattr = BRD_NOTRAN; + bh.level = 0; + bh.gid = 2; + write(1, &bh, sizeof(bh)); + } + return 0; +} |