#include "version.h" #include "autil.h" #include "lssproto_serv.h" #include "common.h" // for StoneAge #include "log.h" // for StoneAge #include "char.h" #include "battle.h" #include "descrypt.h" #include "configfile.h" #include #include #include #include #include "shop.h" #include "npc_lua_interface.h" #ifdef _ABSOLUTE_DEBUG extern char charId[32]; extern char errordata[256]; extern int lastfunctime; #endif void lssproto_SetServerLogFiles( char *r , char *w ) { lssproto_strcpysafe( lssproto_writelogfilename , w , sizeof(lssproto_writelogfilename )); lssproto_strcpysafe( lssproto_readlogfilename , r , sizeof(lssproto_readlogfilename )); } int lssproto_InitServer( int (*writefunc)(int,char*,int) , int worksiz ) { int i; if( (void*)writefunc == NULL) { lssproto.write_func = lssproto_default_write_wrap; } else { lssproto.write_func = writefunc; } lssproto_AllocateCommonWork(worksiz); lssproto_stringwrapper = (char**)calloc( 1,sizeof(char*) * MAXLSRPCARGS); if(lssproto_stringwrapper ==NULL) return -1; memset( lssproto_stringwrapper , 0, sizeof(char*)*MAXLSRPCARGS); for(i=0;i",fd,__LINE__,func) extern int cliretfunc; int lssproto_ServerDispatchMessage(int fd, char *encoded) { #ifdef _DEFEND_BIGBAO if(CONNECT_getState(fd) == NOTLOGIN){ if (strlen(encoded)>getBigBao()){ close(fd); return -1; } }else{ if(strlen(encoded)>getBigBao2()){ close(fd); return -1; } } #endif int func,fieldcount; char raw[1024 * 64]; #ifdef _SERVER_DEF util_DiscardMessage(); #endif CONNECT_getCdkey( fd, PersonalKey, 4096); strcat(PersonalKey, _RUNNING_KEY); #ifdef _NEW_FUNC_DECRYPT if(!util_DecodeMessageTea(raw,encoded)) { return -2; } #else util_DecodeMessage(raw,encoded); #endif #ifdef _DEBUG_RET print("\nraw=%s\n",raw); #endif if( !util_SplitMessage(raw,SEPARATOR) ){ //print("\nDME1:package=%s\n",raw); DME(); return -2; } if (!util_GetFunctionFromSlice(&func, &fieldcount)) { logHack(fd,HACK_GETFUNCFAIL); DME(); return -1; } #ifdef _MO_SHOW_DEBUG if (isDebug()==1) { printf("\n客户端接口=%d\n",func); } if (func 0 && FD_ISSET( fd , &wfds ) ) { ret=send(fd,compr,comprLen+55,0); if ( ret == -1 && errno != EINTR ) { #ifdef _NETLOG_ char cdkey[16]; char charname[32]; CONNECT_getCharname(CONNECT_getCharaindex( fd ),charname,32); CONNECT_getCdkey(CONNECT_getCharaindex( fd ),cdkey,16); char token[128]; sprintf(token, "商城 send T人 ret=%d errno=%s",ret, strerror(errno)); LogCharOut(charname,cdkey,__FILE__,__FUNCTION__,__LINE__,token); #endif CONNECT_endOne_debug( fd ); } }else if( ret < 0 && errno != EINTR ){ #ifdef _NETLOG_ char cdkey[16]; char charname[32]; CONNECT_getCharname(CONNECT_getCharaindex( fd ),charname,32); CONNECT_getCdkey(CONNECT_getCharaindex( fd ),cdkey,16); char token[128]; sprintf(token, "商城 select T人 ret=%d errno=%s",ret, strerror(errno)); LogCharOut(charname,cdkey,__FILE__,__FUNCTION__,__LINE__,token); #endif CONNECT_endOne_debug(fd ); } } void lssproto_ShopOK_send(int fd) { char buffer[1024 * 64]; strcpy(buffer, ""); int checksum = 0; checksum += util_mkint(buffer, 0); util_mkint(buffer, checksum); util_SendMesg(fd, LSSPROTO_SHOPOK_SEND, buffer); } #ifdef _FAMILYBADGE_ void lssproto_FamilyBadge_send(int fd, char *data) { if( CONNECT_checkfd(fd) == FALSE )return; #ifdef _DEBUG_SEND_CLI printf("[发送]lssproto_FamilyBadge_send-data:%s\n", data); #endif char buffer[65500]; int checksum=0; strcpy(buffer,""); CONNECT_getCdkey( fd, PersonalKey, 4096); strcat(PersonalKey, _RUNNING_KEY); checksum += util_mkstring(buffer, data); util_mkint(buffer, checksum); util_SendMesg(fd, LSSPROTO_FAMILYBADGE_SEND, buffer); } #endif #ifdef _NEW_TITLE void lssproto_CharTitle_send(int fd,char* data)//发送新数据 { char buffer[1024 * 64]; int checksum=0; strcpy(buffer,""); CONNECT_getCdkey( fd, PersonalKey, 4096); strcat(PersonalKey, _RUNNING_KEY); checksum += util_mkstring(buffer, data); util_mkint(buffer, checksum); util_SendMesg(fd, LSSPROTO_CHARTITLE_SEND, buffer); char msg[256]; int fd_charaindex = CONNECT_getCharaindex(fd); sprintf(msg,"4|%d",CHAR_getInt( fd_charaindex, CHAR_TITLE_DEFAULT )); lssproto_CHAREFFECT_send(getfdFromCharaIndex(fd_charaindex), msg); } #endif #ifdef _VISUAL_BEATITUDE void lssproto_VisualBeatitude_send(int fd,char* data) { char buffer[1024 * 64]; int checksum=0; strcpy(buffer,""); CONNECT_getCdkey( fd, PersonalKey, 4096); strcat(PersonalKey, _RUNNING_KEY); checksum += util_mkstring(buffer, data); util_mkint(buffer, checksum); util_SendMesg(fd, LSSPROTO_VB_SEND, buffer); } #endif #ifdef _RED_MEMOY_ void lssproto_RedMemoy_send(int fd,int type,int time,int vip,char *name,int index) { if( CONNECT_checkfd(fd) == FALSE )return; char buffer[65500]; int checksum=0; strcpy(buffer,""); CONNECT_getCdkey( fd, PersonalKey, 4096); strcat(PersonalKey, _RUNNING_KEY); checksum += util_mkint(buffer, type); checksum += util_mkint(buffer, time); checksum += util_mkint(buffer, vip); checksum += util_mkstring(buffer, name); checksum += util_mkint(buffer, index); util_mkint(buffer, checksum); util_SendMesg(fd, LSSPROTO_REDMEMOY_SEND, buffer); } #endif #ifdef _MOVE_SCREEN void lssproto_MoveScreen_send(int fd, BOOL bMoveScreenMove, int iXY) { char szBuffer[65500]; int iChecksum = 0; #ifdef _DEBUG_SEND_CLI printf("[发送]LSSPROTO_MOVESCREEN_SEND-fd:%d,bMoveScreenMove:%d,iXY:%d\n",fd,bMoveScreenMove,iXY); #endif szBuffer[0] = '\0'; CONNECT_getCdkey(fd, PersonalKey, 4096); #ifdef _NEW_ENCRYT CONNECT_catRunKey(fd, PersonalKey); #else strcat(PersonalKey, _RUNNING_KEY); #endif iChecksum += util_mkint(szBuffer, bMoveScreenMove); iChecksum += util_mkint(szBuffer, iXY); util_mkint(szBuffer, iChecksum); util_SendMesg(fd, LSSPROTO_MOVE_SCREEN_SEND, szBuffer); } #endif #ifdef _THEATER void lssproto_TheaterData_send(int fd, char *pData) { int iChecksum = 0; char szBuffer[65500]; #ifdef _DEBUG_SEND_CLI printf("[发送]LSSPROTO_TheaterData_SEND-fd:%d,pData:%s\n",fd,pData); #endif strcpy(szBuffer,""); CONNECT_getCdkey(fd, PersonalKey, 4096); #ifdef _NEW_ENCRYT CONNECT_catRunKey(fd, PersonalKey); #else strcat(PersonalKey, _RUNNING_KEY); #endif iChecksum += util_mkstring(szBuffer, pData); util_mkint(szBuffer, iChecksum); util_SendMesg(fd, LSSPROTO_THEATER_DATA_SEND, szBuffer); } #endif #ifdef _NPC_MAGICCARD void lssproto_MagiccardAction_send(int fd, char *data) { char buffer[65500]; int checksum = 0; #ifdef _DEBUG_SEND_CLI printf("[发送]LSSPROTO_MagiccardAction_SEND-fd:%d,data:%s\n",fd,data); #endif strcpy(buffer,""); CONNECT_getCdkey(fd,PersonalKey,4096); #ifdef _NEW_ENCRYT CONNECT_catRunKey(fd, PersonalKey); #else strcat(PersonalKey, _RUNNING_KEY); #endif checksum += util_mkstring(buffer,data); util_mkint(buffer,checksum); util_SendMesg(fd,LSSPROTO_MAGICCARD_ACTION_SEND,buffer); } void lssproto_MagiccardDamage_send(int fd, int position ,int damage ,int offsetx,int offsety ) { char buffer[65500]; int checksum = 0; #ifdef _DEBUG_SEND_CLI printf("[发送]LSSPROTOMagiccardDamage_SEND-fd:%d,position:%d,damage:%d,offsetx:%d,offsety:%d\n",fd,position,damage,offsetx,offsety); #endif strcpy(buffer,""); CONNECT_getCdkey(fd,PersonalKey,4096); #ifdef _NEW_ENCRYT CONNECT_catRunKey(fd, PersonalKey); #else strcat(PersonalKey, _RUNNING_KEY); #endif checksum += util_mkint(buffer, position ); checksum += util_mkint(buffer, damage ); checksum += util_mkint(buffer, offsetx ); checksum += util_mkint(buffer, offsety ); util_mkint(buffer,checksum); util_SendMesg(fd,LSSPROTO_MAGICCARD_DAMAGE_SEND,buffer); } #endif #ifdef _NPC_DANCE void lssproto_DancemanOption_send(int fd, int option ) { char buffer[65500]; int checksum = 0; #ifdef _DEBUG_SEND_CLI printf("[发送]lssproto_DancemanOption_send-fd:%d,option:%d\n", fd, option); #endif strcpy(buffer,""); CONNECT_getCdkey(fd,PersonalKey,4096); #ifdef _NEW_ENCRYT CONNECT_catRunKey(fd, PersonalKey); #else strcat(PersonalKey, _RUNNING_KEY); #endif checksum += util_mkint(buffer, option ); util_mkint(buffer,checksum); util_SendMesg(fd,LSSPROTO_DANCEMAN_OPTION_SEND,buffer); } #endif