chuyiwen_gmsv/npc/npc_familyman.c

688 lines
18 KiB
C
Raw Normal View History

2016-12-24 08:45:52 +08:00
#include "version.h"
#include <string.h>
#include "char.h"
#include "object.h"
#include "char_base.h"
#include "npcutil.h"
#include "configfile.h"
#include "lssproto_serv.h"
#include "saacproto_cli.h"
#include "npc_familyman.h"
#include "family.h"
extern int familyNumTotal;
extern char familyListBuf[MAXFAMILYLIST];
char sendbuf[1024];
char buf[1024];
char subbuf[128];
int i, j;
/*
2017-01-13 23:37:03 +08:00
* NPC
*
2016-12-24 08:45:52 +08:00
*
*/
struct {
int windowno;
int windowtype;
int buttontype;
int takeitem;
int giveitem;
char message[4096];
}w;
struct {
BOOL use;
int checkhaveitem;
int checkhaveitemgotowin;
int checkdonthaveitem;
int checkdonthaveitemgotowin;
int warp;
int battle;
int gotowin;
2017-01-13 23:37:03 +08:00
}buttonproc[13]; /* ok,cancel, yes,no,prev,next 及凛及质 */
2016-12-24 08:45:52 +08:00
enum {
CHAR_WORK_MSGCOLOR = CHAR_NPCWORKINT1,
};
static void NPC_Familyman_selectWindow( int meindex, int toindex, int num);
static BOOL NPC_Familyman_readData( int meindex, int windowno, BOOL chkflg);
static int NPC_Familyman_restoreButtontype( char *data );
/*********************************
2017-01-13 23:37:03 +08:00
*
2016-12-24 08:45:52 +08:00
*********************************/
BOOL NPC_FamilymanInit( int meindex )
{
char argstr[NPC_UTIL_GETARGSTR_BUFSIZE];
char buf[1024];
//int i;
//char secondToken[1024];
// Robin test
// print(" familyman_Init ");
NPC_Util_GetArgStr( meindex, argstr, sizeof( argstr));
if( NPC_Util_GetStrFromStrWithDelim( argstr, "conff", buf, sizeof( buf))
== NULL )
{
2017-01-13 23:37:03 +08:00
print( "familyman:没有指定设定的档案 。\n");
2016-12-24 08:45:52 +08:00
return FALSE;
}
2017-01-13 23:37:03 +08:00
/* 赓渝凛卞涩烂犯□正毛民尼永弁仄化支月 */
2016-12-24 08:45:52 +08:00
if( !NPC_Familyman_readData( meindex, -1, TRUE) ) {
return FALSE;
}
CHAR_setInt( meindex , CHAR_WHICHTYPE , CHAR_TYPEWINDOWMAN );
return TRUE;
}
/*********************************
2017-01-13 23:37:03 +08:00
*
2016-12-24 08:45:52 +08:00
*********************************/
void NPC_FamilymanTalked( int meindex , int talkerindex , char *szMes ,int color )
{
NPC_Familyman_selectWindow( meindex, talkerindex, 1 );
}
/*********************************
2017-01-13 23:37:03 +08:00
*
2016-12-24 08:45:52 +08:00
*********************************/
void NPC_FamilymanLooked( int meindex , int lookedindex)
{
print(" Look:me:%d,looked:%d ",meindex,lookedindex);
NPC_Familyman_selectWindow( meindex, lookedindex,1 );
}
static void NPC_Familyman_selectWindow( int meindex, int toindex, int num)
{
int fd;
char buf[256];
2017-01-13 23:37:03 +08:00
/* 皿伊奶乩□卞覆仄化分仃 杀允月 */
2016-12-24 08:45:52 +08:00
if( CHAR_getInt( toindex , CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER ) {
return;
}
2017-01-13 23:37:03 +08:00
/* ㄠ弘伉永玉动 及心 */
2016-12-24 08:45:52 +08:00
if( !NPC_Util_charIsInFrontOfChar( toindex, meindex, 1 )) return;
if( !NPC_Familyman_readData( meindex, num, FALSE) ) {
print( "familyman:readdata error\n");
return;
}
fd = getfdFromCharaIndex( toindex);
if( fd != -1 ) {
lssproto_WN_send( fd, w.windowtype,
w.buttontype,
w.windowno+100,
CHAR_getWorkInt( meindex, CHAR_WORKOBJINDEX),
makeEscapeString( w.message, buf, sizeof(buf)));
}
}
void NPC_FamilymanWindowTalked( int meindex, int talkerindex,
int seqno, int select, char *data)
{
int button = -1;
char buf[256];
2017-01-13 23:37:03 +08:00
/* ㄠ弘伉永玉动 及心 */
2016-12-24 08:45:52 +08:00
if( NPC_Util_CharDistance( talkerindex, meindex ) > 1) return;
// CoolFish Add For Check Old Leader Del Family
if(seqno == CHAR_WINDOWTYPE_FAMILYMAN_OUT)
{
int fd = getfdFromCharaIndex( talkerindex);
if(select == WINDOW_BUTTONTYPE_YES)
FAMILY_Leave( fd, talkerindex, "E|1");
return;
}
// CoolFish End
2017-01-13 23:37:03 +08:00
/* 仇及它奴件玉它 寞及犯□正毛 心 戈 */
2016-12-24 08:45:52 +08:00
if( !NPC_Familyman_readData( meindex, seqno - 100, FALSE) ) {
print( "familyman:readdata error\n");
return;
}
2017-01-13 23:37:03 +08:00
/* 瓷仄凶示正件毛譬屯月 */
2016-12-24 08:45:52 +08:00
if( w.windowtype == WINDOW_MESSAGETYPE_SELECT ) {
button = atoi( data)+5;
if( button > 12 ) {
print( "familyman:invalid button[%d]\n", button);
return;
}
}
else if( select & WINDOW_BUTTONTYPE_OK) button = 0;
else if( select & WINDOW_BUTTONTYPE_CANCEL) button = 1;
else if( select & WINDOW_BUTTONTYPE_YES) button = 2;
else if( select & WINDOW_BUTTONTYPE_NO) button = 3;
else if( select & WINDOW_BUTTONTYPE_PREV) button = 4;
else if( select & WINDOW_BUTTONTYPE_NEXT) button = 5;
else {
print( "familyman:invalid button[%d]\n", select);
return;
}
if( buttonproc[button].use == TRUE ) {
int fd;
int newwin = -1;
fd = getfdFromCharaIndex( talkerindex);
2017-01-13 23:37:03 +08:00
/* 示正件卞方匀化质 毛孔曰歹仃月 */
2016-12-24 08:45:52 +08:00
if( newwin == -1 ) {
newwin = buttonproc[button].gotowin;
}
// Robin
2017-01-13 23:37:03 +08:00
// 成立
2016-12-24 08:45:52 +08:00
if( newwin == 5 ) {
if( CHAR_getInt( talkerindex, CHAR_FMINDEX ) > 0 )
{
2017-01-13 23:37:03 +08:00
//CHAR_talkToCli( talkerindex, -1, "资格不符!已经加入家族。", CHAR_COLORWHITE );
2016-12-24 08:45:52 +08:00
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK, -1, -1,
2017-01-13 23:37:03 +08:00
makeEscapeString( "\n很抱歉喔!你已经加入家族了!", buf, sizeof(buf)));
2016-12-24 08:45:52 +08:00
return;
}
if( (CHAR_getInt( talkerindex, CHAR_TRANSMIGRATION ) == 0)
&& (CHAR_getInt( talkerindex, CHAR_LV) < 30) )
{
2017-01-13 23:37:03 +08:00
//CHAR_talkToCli( talkerindex, -1, "很抱歉!等级不足。", CHAR_COLORWHITE );
2016-12-24 08:45:52 +08:00
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK, -1, -1,
2017-01-13 23:37:03 +08:00
makeEscapeString( "\n很抱歉喔!你的等级不足!", buf, sizeof(buf)));
2016-12-24 08:45:52 +08:00
return;
}
if( !NPC_EventCheckFlg( talkerindex, 4 ) )
{
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK, -1, -1,
2017-01-13 23:37:03 +08:00
makeEscapeString( "\n很抱歉喔!你必须先完成成人礼才行!", buf, sizeof(buf)));
2016-12-24 08:45:52 +08:00
return;
}
#ifdef _NEWFM_GOLD
if( CHAR_getInt( talkerindex, CHAR_GOLD ) < getNewFmGold() )
{
char newfmmsg[256];
2017-01-13 23:37:03 +08:00
sprintf(newfmmsg,"\n很抱歉喔!你申请的手续费不足!\n现申请家族需要手续费:%d石币\n\nPS:由于人气火爆,家族数量不够使用,故提升申请要求,请大家理解,希望大家不要建立无用家族,谢谢!",getNewFmGold());
2016-12-24 08:45:52 +08:00
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK, -1, -1,
newfmmsg);
return;
}
#else
if( CHAR_getInt( talkerindex, CHAR_GOLD ) < 10000 )
{
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK, -1, -1,
2017-01-13 23:37:03 +08:00
makeEscapeString( "\n很抱歉喔!你申请的手续费不足!\n现申请家族需要手续费10000石币\n", buf, sizeof(buf)));
2016-12-24 08:45:52 +08:00
return;
}
#endif
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_FAMILYADD, WINDOW_BUTTONTYPE_NONE, CHAR_WINDOWTYPE_FAMILYMAN_ADD,
CHAR_getWorkInt( meindex, CHAR_WORKOBJINDEX), "Hello!!" );
return;
}
2017-01-13 23:37:03 +08:00
// 列表 , 加入
2016-12-24 08:45:52 +08:00
if( newwin == 6 )
{
/*
strcpy( buf, "");
j = 0;
for( i=1 ; i<=8 ; i++ ) {
if( i > familyNumTotal ) break;
if( getStringFromIndexWithDelim( familyListBuf, "|", i, subbuf,
sizeof(subbuf) ) == FALSE) break;
strcat( buf, "|" );
strcat( buf, subbuf );
j++;
}
sprintf( sendbuf, "S|F|%d|%d|%d%s", familyNumTotal, 1, j, buf );
//print(" FL:%s ", sendbuf );
lssproto_FM_send( fd, sendbuf );
*/
//saacproto_ACShowFMList_send( acfd );
FAMILY_Detail( fd, talkerindex, "S|F|1|0" );
return;
}
2017-01-13 23:37:03 +08:00
// 退出
2016-12-24 08:45:52 +08:00
if( newwin == 7 )
{
if( CHAR_getInt( talkerindex, CHAR_FMINDEX ) == -1 ) {
2017-01-13 23:37:03 +08:00
// CHAR_talkToCli( talkerindex, -1, "你还未加入任何家族呀。", CHAR_COLORWHITE );
2016-12-24 08:45:52 +08:00
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_OK, -1, -1,
2017-01-13 23:37:03 +08:00
makeEscapeString( "\n很抱歉喔!你还没有加入任何家族呀!", buf, sizeof(buf)));
2016-12-24 08:45:52 +08:00
return;
}
//if (CHAR_getInt(talkerindex, CHAR_FMLEADERFLAG) == FMMEMBER_LEADER) {
2017-01-13 23:37:03 +08:00
// CHAR_talkToCli( talkerindex, -1, "族长....", CHAR_COLORWHITE );
2016-12-24 08:45:52 +08:00
// return;
//}
print(" WN2FM ");
// CoolFish Change for old leader del family check
if(CHAR_getInt(talkerindex, CHAR_FMLEADERFLAG) == FMMEMBER_LEADER)
{
lssproto_WN_send(fd, WINDOW_MESSAGETYPE_MESSAGE,
WINDOW_BUTTONTYPE_YESNO, CHAR_WINDOWTYPE_FAMILYMAN_OUT,
CHAR_getWorkInt(meindex, CHAR_WORKOBJINDEX),
2017-01-13 23:37:03 +08:00
makeEscapeString("\n您现在是这个家族的族长喔...\n\n家族解散了就无法再救回唷!~\n\n确定要解散家族吗?",buf, sizeof(buf)));
2016-12-24 08:45:52 +08:00
return;
}
else
FAMILY_Leave( fd, talkerindex, "E|1");
// CoolFish Change End
return;
}
if( !NPC_Familyman_readData( meindex, newwin, FALSE) ) {
print( "familyman:readdata error\n");
return;
}
//fd = getfdFromCharaIndex( talkerindex);
if( fd != -1 ) {
lssproto_WN_send( fd, w.windowtype,
w.buttontype,
w.windowno+100,
CHAR_getWorkInt( meindex, CHAR_WORKOBJINDEX),
makeEscapeString( w.message, buf, sizeof(buf)));
}
}
}
/*
2017-01-13 23:37:03 +08:00
* windowno及犯
2016-12-24 08:45:52 +08:00
*
2017-01-13 23:37:03 +08:00
*
* meindex int NPC及charaindex
* windowno int
2016-12-24 08:45:52 +08:00
*
*/
static BOOL NPC_Familyman_readData( int meindex, int windowno, BOOL chkflg)
{
int i;
int linenum = 0;
int endflg = FALSE;
int buttonendflg;
int winno = -1;
int buttonconfmode;
int b_mode;
int selectnum ;
int messagepos;
BOOL errflg = FALSE;
BOOL readflg = TRUE;
FILE *fp;
char argstr[NPC_UTIL_GETARGSTR_BUFSIZE];
char filename[64];
char opfile[128];
char line[1024];
char firstToken[1024];
char secondToken[1024];
2017-01-13 23:37:03 +08:00
/* 它奴件玉它及涩烂毛 曰 戈厌瞻 */
2016-12-24 08:45:52 +08:00
NPC_Util_GetArgStr( meindex, argstr, sizeof( argstr));
2017-01-13 23:37:03 +08:00
/* 涩烂白央奶伙 潸 */
2016-12-24 08:45:52 +08:00
NPC_Util_GetStrFromStrWithDelim( argstr, "conff", filename, sizeof( filename));
sprintf( opfile, "%s/", getNpcdir( ) );
strcat( opfile, filename);
fp = fopen( opfile, "r");
if( fp == NULL ) {
print( "familyman:file open error [%s]\n", opfile);
return FALSE;
}
while( readflg == TRUE ) {
endflg = FALSE;
buttonendflg = TRUE;
buttonconfmode = FALSE;
selectnum = 0;
messagepos = 0;
winno = -1;
b_mode = -1;
errflg = FALSE;
2017-01-13 23:37:03 +08:00
/* 赓渝祭 */
2016-12-24 08:45:52 +08:00
w.windowno = -1;
w.windowtype = -1;
w.buttontype = -1;
w.takeitem = -1;
w.giveitem = -1;
w.message[0] = '\0';
for( i = 0; i < arraysizeof( buttonproc); i ++ ) {
buttonproc[i].use = FALSE;
buttonproc[i].checkhaveitem = -1;
buttonproc[i].checkhaveitemgotowin = -1;
buttonproc[i].checkdonthaveitem = -1;
buttonproc[i].checkdonthaveitemgotowin = -1;
buttonproc[i].warp = -1;
buttonproc[i].battle = -1;
buttonproc[i].gotowin = -1;
}
while( 1) {
char buf[256];
int ret;
if( !fgets( line, sizeof( line), fp)){
readflg = FALSE;
break;
}
linenum ++;
2017-01-13 23:37:03 +08:00
/* 戊丢件玄反 骰 */
2016-12-24 08:45:52 +08:00
if( line[0] == '#' || line[0] == '\n') continue;
2017-01-13 23:37:03 +08:00
/* 荼垫潸月 */
2016-12-24 08:45:52 +08:00
chomp( line );
2017-01-13 23:37:03 +08:00
/* 垫毛帮溥允月 */
/* 引内 tab 毛 " " 卞 五晶尹月 */
2016-12-24 08:45:52 +08:00
replaceString( line, '\t' , ' ' );
2017-01-13 23:37:03 +08:00
/* 燮 及旦矢□旦毛潸月[*/
2016-12-24 08:45:52 +08:00
for( i = 0; i < strlen( line); i ++) {
if( line[i] != ' ' ) {
break;
}
strcpy( buf, &line[i]);
}
if( i != 0 ) strcpy( line, buf);
2017-01-13 23:37:03 +08:00
/* delim "=" 匹 赓(1)及玄□弁件毛 月*/
2016-12-24 08:45:52 +08:00
ret = getStringFromIndexWithDelim( line, "=", 1, firstToken,
sizeof( firstToken ) );
if( ret == FALSE ){
print( "Find error at %s in line %d. Ignore\n",
filename , linenum);
continue;
}
2017-01-13 23:37:03 +08:00
/* delim "=" 匹2 及玄□弁件毛 月*/
2016-12-24 08:45:52 +08:00
ret = getStringFromIndexWithDelim( line, "=", 2, secondToken,
sizeof( secondToken ) );
if( ret == FALSE ){
print( "Find error at %s in line %d. Ignore\n",
filename , linenum);
continue;
}
if( strcasecmp( firstToken, "winno") == 0 ) {
if( winno != -1 ) {
2017-01-13 23:37:03 +08:00
print( "familyman:已有winno却重新定义winno\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
errflg = TRUE;
readflg = FALSE;
break;
}
2017-01-13 23:37:03 +08:00
/* 它奴件玉它No毛忡绣 */
2016-12-24 08:45:52 +08:00
winno = atoi( secondToken);
continue;
}
2017-01-13 23:37:03 +08:00
/* 它奴件玉它No 互瑁引匀化中卅中凛及垫反 骰允月 */
2016-12-24 08:45:52 +08:00
if( winno == -1 ) {
2017-01-13 23:37:03 +08:00
print( "familyman:winno 尚未定义,资料却已设定。\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
readflg = FALSE;
errflg = FALSE;
break;
}
2017-01-13 23:37:03 +08:00
/* 它奴件玉它No 互域谯仄凶凛反椭瘀毛 戈[
* */
2016-12-24 08:45:52 +08:00
if( (chkflg == FALSE && winno == windowno )||
chkflg == TRUE)
{
if( buttonconfmode == TRUE ) {
if( strcasecmp( firstToken, "gotowin") == 0 ) {
buttonproc[b_mode].gotowin = atoi( secondToken);
}
else if( strcasecmp( firstToken, "checkhaveitem") == 0 ) {
buttonproc[b_mode].checkhaveitem = atoi( secondToken);
}
else if( strcasecmp( firstToken, "haveitemgotowin") == 0 ) {
buttonproc[b_mode].checkhaveitemgotowin = atoi( secondToken);
}
else if( strcasecmp( firstToken, "checkdonthaveitem") == 0 ) {
buttonproc[b_mode].checkdonthaveitem = atoi( secondToken);
}
else if( strcasecmp( firstToken, "donthaveitemgotowin") == 0 ) {
buttonproc[b_mode].checkdonthaveitemgotowin = atoi( secondToken);
}
else if( strcasecmp( firstToken, "endbutton") == 0 ) {
if( buttonproc[b_mode].gotowin == - 1 ) {
if( buttonproc[b_mode].checkhaveitem == -1 &&
buttonproc[b_mode].checkdonthaveitem == -1)
{
errflg = TRUE;
}
else {
2017-01-13 23:37:03 +08:00
/* 升匀切井井凶匀吊分仃匹手涩烂今木化中木壬 */
2016-12-24 08:45:52 +08:00
if( !((buttonproc[b_mode].checkhaveitem != -1 &&
buttonproc[b_mode].checkhaveitemgotowin != -1)
|| (buttonproc[b_mode].checkdonthaveitem != -1 &&
buttonproc[b_mode].checkdonthaveitemgotowin != -1)))
{
errflg = TRUE;
}
}
}
if( errflg == TRUE) {
2017-01-13 23:37:03 +08:00
print( "familyman: 找不到gotowin\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
readflg = FALSE;
errflg = TRUE;
break;
}
buttonproc[b_mode].use = TRUE;
buttonconfmode = FALSE;
buttonendflg = TRUE;
}
}
else {
w.windowno = winno;
2017-01-13 23:37:03 +08:00
/* 它奴件玉它正奶皿及涩烂 */
2016-12-24 08:45:52 +08:00
if( strcasecmp( firstToken, "wintype") == 0 ) {
w.windowtype = atoi( secondToken);
}
2017-01-13 23:37:03 +08:00
/* 示正件正奶皿及涩烂 */
2016-12-24 08:45:52 +08:00
else if( strcasecmp( firstToken, "buttontype") == 0 ) {
w.buttontype = NPC_Familyman_restoreButtontype( secondToken);
}
2017-01-13 23:37:03 +08:00
/* getitem及涩烂 */
2016-12-24 08:45:52 +08:00
else if( strcasecmp( firstToken, "takeitem") == 0 ) {
w.takeitem = atoi( secondToken);
}
2017-01-13 23:37:03 +08:00
/* giveitem及涩烂 */
2016-12-24 08:45:52 +08:00
else if( strcasecmp( firstToken, "giveitem") == 0 ) {
w.giveitem = atoi( secondToken);
}
2017-01-13 23:37:03 +08:00
/* message及涩烂 */
2016-12-24 08:45:52 +08:00
else if( strcasecmp( firstToken, "message") == 0 ) {
if( messagepos == 0 ) {
strcpy( w.message, secondToken);
messagepos = strlen( w.message);
}
else {
w.message[messagepos]='\n';
messagepos++;
strcpy( &w.message[messagepos], secondToken);
messagepos+=strlen(secondToken);
}
}
2017-01-13 23:37:03 +08:00
/* 示正件毛瓷仄凶凛及涩烂 */
2016-12-24 08:45:52 +08:00
else if( strcasecmp( firstToken, "okpressed") == 0 ) {
buttonconfmode = TRUE;
b_mode = 0;
buttonendflg = FALSE;
}
else if( strcasecmp( firstToken, "cancelpressed") == 0 ) {
buttonconfmode = TRUE;
b_mode = 1;
buttonendflg = FALSE;
}
else if( strcasecmp( firstToken, "yespressed") == 0 ) {
buttonconfmode = TRUE;
b_mode = 2;
buttonendflg = FALSE;
}
else if( strcasecmp( firstToken, "nopressed") == 0 ) {
buttonconfmode = TRUE;
b_mode = 3;
buttonendflg = FALSE;
}
else if( strcasecmp( firstToken, "prevpressed") == 0 ) {
buttonconfmode = TRUE;
b_mode = 4;
buttonendflg = FALSE;
}
else if( strcasecmp( firstToken, "nextpressed") == 0 ) {
buttonconfmode = TRUE;
b_mode = 5;
buttonendflg = FALSE;
}
else if( strcasecmp( firstToken, "selected") == 0 ) {
buttonconfmode = TRUE;
b_mode = 6 + selectnum;
buttonendflg = FALSE;
selectnum ++;
}
2017-01-13 23:37:03 +08:00
/* 涩烂蔽歹曰 */
2016-12-24 08:45:52 +08:00
else if( strcasecmp( firstToken, "endwin") == 0 ) {
endflg = TRUE;
if( chkflg == FALSE) {
readflg = FALSE;
}
break;
}
else {
2017-01-13 23:37:03 +08:00
print( "familyman:设定是不可能的参数\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
}
}
}
else {
if( strcasecmp( firstToken, "endwin") == 0 ) {
winno = -1;
}
}
}
if( buttonendflg == FALSE) {
2017-01-13 23:37:03 +08:00
print( "familyman: 找不到endbutton\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
errflg = TRUE;
break;
}
if( winno != -1 ) {
if( w.windowtype == -1 ) {
2017-01-13 23:37:03 +08:00
print( "familyman: 找不到wintype\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
errflg = TRUE;
break;
}
if( w.buttontype == -1 ) {
2017-01-13 23:37:03 +08:00
print( "familyman: 找不到button\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
errflg = TRUE;
break;
}
if( strlen( w.message) == 0 ) {
2017-01-13 23:37:03 +08:00
print( "familyman: 找不到message\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
errflg = TRUE;
break;
}
}
}
fclose( fp);
if( chkflg == FALSE && w.windowno == -1 ) {
2017-01-13 23:37:03 +08:00
print( "familyman: 找不到所指定的windowno\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
return FALSE;
}
if( winno != -1 && endflg == FALSE) {
2017-01-13 23:37:03 +08:00
print( "familyman: 找不到endwin\n");
2016-12-24 08:45:52 +08:00
print( "filename:[%s] line[%d]\n", filename, linenum);
return FALSE;
}
if( errflg == TRUE) return FALSE;
return TRUE;
}
/*
2017-01-13 23:37:03 +08:00
* buttontype=
2016-12-24 08:45:52 +08:00
*
*/
static int NPC_Familyman_restoreButtontype( char *data )
{
int ret = 0;
int rc;
int i;
char buff[1024];
for( i = 1; ; i ++ ) {
rc = getStringFromIndexWithDelim( data, "|", i, buff,
sizeof( buff ) );
if( rc == FALSE) break;
if( strcasecmp( buff, "ok") == 0 ) {
ret |= WINDOW_BUTTONTYPE_OK;
}
else if( strcasecmp( buff, "cancel") == 0 ) {
ret |= WINDOW_BUTTONTYPE_CANCEL;
}
else if( strcasecmp( buff, "yes") == 0 ) {
ret |= WINDOW_BUTTONTYPE_YES;
}
else if( strcasecmp( buff, "no") == 0 ) {
ret |= WINDOW_BUTTONTYPE_NO;
}
else if( strcasecmp( buff, "prev") == 0 ) {
ret |= WINDOW_BUTTONTYPE_PREV;
}
else if( strcasecmp( buff, "next") == 0 ) {
ret |= WINDOW_BUTTONTYPE_NEXT;
}
}
if( ret == 0 ) {
ret = atoi( data);
}
return ret;
}