// Arminius' protocol utilities ver 0.1 // // Any questions and bugs, mailto: arminius@mail.hwaei.com.tw // ------------------------------------------------------------------- // The following definitions is to define game-dependent codes. // Before compiling, remove the "//". #define __STONEAGE #include #include #include #include "autil.h" #include "../systeminc/chat.h" #include "../systeminc/font.h" #include "../systeminc/VMProtectSDK.h" #ifdef __STONEAGE #include "../systeminc/version.h" #include "../systeminc/lssproto_util.h" //#include "../systeminc/common.h" #endif char **MesgSlice; int SliceCount; char PersonalKey[32]; #ifdef _STONDEBUG_ extern int g_iMallocCount; #endif // ------------------------------------------------------------------- // Initialize utilities // void util_Init(void) { int i; MesgSlice = (char **) MALLOC(sizeof(char *) * SLICE_MAX); #ifdef _STONDEBUG_ g_iMallocCount++; #endif for (i=0; i=SliceCount) { // discard all message for (j=0; j0=bytes converted int util_256to64(char *dst, char *src, int len, char *table) { unsigned int dw,dwcounter; int i; if (!dst || !src || !table) return 0; dw=0; dwcounter=0; for (i=0; i> 6 ); if (i%3==2) { dst[ dwcounter++ ] = table[ dw & 0x3f ]; dw = 0; } } if (dw) dst[ dwcounter++ ] = table[ dw ]; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Convert 6-bit strings into 8-bit strings, buffers that store these strings // must have enough space. // // arg: dst=6-bit string; src=8-bit string; table=mapping table // ret: 0=failed >0=bytes converted int util_64to256(char *dst, char *src, char *table) { unsigned int dw,dwcounter; unsigned int i, j; char *ptr = NULL; dw=0; dwcounter=0; if (!dst || !src || !table) return 0; char c; for (i=0; i> 8; } else { dw = (unsigned int)(ptr-table) & 0x3f; } } if (dw) dst[ dwcounter++ ] = dw & 0xff; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // This basically is a 256to64 encoder. But it shifts the result by key. // // arg: dst=6-bit string; src=8-bit string; len=src strlen; // table=mapping table; key=rotate key; // ret: 0=failed >0=bytes converted int util_256to64_shr(char *dst, char *src, int len, char *table, char *key) { unsigned int dw,dwcounter,j; int i; if (!dst || !src || !table || !key) return 0; if (strlen(key)<1) return 0; // key can't be empty. dw=0; dwcounter=0; j=0; for (i=0; i> 6 ); if (i%3==2) { dst[ dwcounter++ ] = table[ ((dw & 0x3f) + key[j]) % 64 ];// check! j++; if (!key[j]) j=0; dw = 0; } } if (dw) dst[ dwcounter++ ] = table[ (dw + key[j]) % 64 ]; // check! dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Decoding function of util_256to64_shr. // // arg: dst=8-bit string; src=6-bit string; table=mapping table; // key=rotate key; // ret: 0=failed >0=bytes converted int util_shl_64to256(char *dst, char *src, char *table, char *key) { unsigned int dw,dwcounter,i,j,k; char *ptr = NULL; if (!key || (strlen(key)<1)) return 0; // must have key dw=0; dwcounter=0; j=0; if (!dst || !src || !table) return 0; char c; for (i=0; i> 8; } else { // check! dw = (((unsigned int)(ptr-table) & 0x3f) + 64 - key[j]) % 64; j++; if (!key[j]) j=0; } } if (dw) dst[ dwcounter++ ] = dw & 0xff; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // This basically is a 256to64 encoder. But it shifts the result by key. // // arg: dst=6-bit string; src=8-bit string; len=src strlen; // table=mapping table; key=rotate key; // ret: 0=failed >0=bytes converted int util_256to64_shl(char *dst, char *src, int len, char *table, char *key) { unsigned int dw,dwcounter; int i, j; if (!dst || !src || !table || !key) return 0; if (strlen(key)<1) return 0; // key can't be empty. dw=0; dwcounter=0; j=0; for (i=0; i> 6 ); if (i%3==2) { dst[ dwcounter++ ] = table[ ((dw & 0x3f) + 64 - key[j]) % 64 ]; // check! j++; if (!key[j]) j=0; dw = 0; } } if (dw) dst[ dwcounter++ ] = table[ (dw + 64 - key[j]) % 64 ]; // check! dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Decoding function of util_256to64_shl. // // arg: dst=8-bit string; src=6-bit string; table=mapping table; // key=rotate key; // ret: 0=failed >0=bytes converted int util_shr_64to256(char *dst, char *src, char *table, char *key) { unsigned int dw,dwcounter,i,j,k; char *ptr = NULL; if (!key || (strlen(key)<1)) return 0; // must have key dw=0; dwcounter=0; j=0; if (!dst || !src || !table) return 0; char c; for (i=0; i> 8; } else { // check! dw = (((unsigned int)(ptr-table) & 0x3f) + key[j]) % 64; j++; if (!key[j]) j=0; } } if (dw) dst[ dwcounter++ ] = dw & 0xff; dst[ dwcounter ] = '\0'; return dwcounter; } // ------------------------------------------------------------------- // Swap a integer (4 byte). // The value "rule" indicates the swaping rule. It's a 4 byte string // such as "1324" or "2431". // void util_swapint(int *dst, int *src, char *rule) { char *ptr, *qtr; int i; ptr = (char *) src; qtr = (char *) dst; for (i=0; i<4; i++) qtr[rule[i]-'1']=ptr[i]; } // ------------------------------------------------------------------- // Xor a string. Be careful that your string contains '0xff'. Your // data may lose. // void util_xorstring(char *dst, char *src) { unsigned int i; for (i=0; i 0 ){ char* d = dest; const char* s = src; unsigned int i; for( i=0; i=n ){ *(d+i-1)='\0'; break; } *(d+i) = *(s+i); }else *(d+i) = *(s+i); } } return dest; } void strcpysafe( char* dest ,size_t n ,const char* src ) { if (!src) { *dest = '\0'; return; } if( n <= 0 ) return; else if( n < strlen( src ) + 1 ){ strncpy2( dest , src , n-1 ); dest[n-1]='\0'; }else strcpy( dest , src ); } void strncpysafe( char* dest , const size_t n , const char* src ,const int length ) { unsigned int Short; Short = min( strlen( src ) ,(unsigned int) length ); if( n < Short + 1 ){ strncpy2( dest , src , n-1 ); dest[n-1]='\0'; }else if( n <= 0 ){ return; }else{ strncpy2( dest , src , Short ); dest[Short]= '\0'; } } BOOL getStringFromIndexWithDelim_body( char* src ,char* delim ,int index,char* buf , int buflen) { int i; int length =0; int addlen=0; int oneByteMode = 0; if( strlen( delim ) == 1 ){ oneByteMode = 1; } for( i = 0 ; i < index ; i ++ ){ char* last; src += addlen; if( oneByteMode ){ last = ScanOneByte( src, delim[0] ); }else{ last = strstr( src , delim ); } if( last == NULL ){ strcpysafe( buf , buflen, src ); if( i == index - 1 ){ if(buf[0]==0) return FALSE; return TRUE; } buf[0]=0; return FALSE; } length = last - src; addlen= length + strlen( delim ); } strncpysafe( buf, buflen , src,length ); if(buf[0]==0) return FALSE; return TRUE; } void ltrim(char *str){ char *ptr; for(ptr=str; *ptr == 32; ptr++) ; } void rtrim(char *str){ int i; for(i=(int)strlen(str)-1; str[i] == 32 && i>=0; str[i--]=0); } #ifdef _FONT_STYLE_ WM_STR wmstr[25]; extern int getTextLength(char * str); void getstrstyle(char *str,int index,int pos,int flg,WM_STR wm[]) { char *stemp,*etemp; if(flg) stemp = str; else stemp = sunday(str, "[style "); if(stemp){ if(stemp!= str){ wm[index].flg=TRUE; wm[index].style[pos].size = FONT_SIZE1; if(pos==0) wm[index].style[pos].x = 0; else wm[index].style[pos].x = getTextLength(wm[index].style[pos-1].str)+wm[index].style[pos-1].x; wm[index].style[pos].color = 0; int len = stemp - str; memcpy(wm[index].style[pos].str,str,len); wm[index].style[pos].str[len]=NULL; pos++; getstrstyle(stemp,index,pos,TRUE,wm); }else{ wm[index].flg=TRUE; stemp=stemp+7; etemp = sunday(stemp, "]")+1; char *scolor = sunday(stemp, "c="); if(scolor){ scolor=scolor+2; char strnum[3]; int i=0; for(i;i<2 && scolor[i] !=' ' && scolor[i]!=']';i++){ strnum[i] = scolor[i]; } strnum[i]=0; wm[index].style[pos].color = atoi(strnum); }else wm[index].style[pos].color =0; char *ssize = sunday(stemp, "s="); if(ssize){ ssize=ssize+2; char strsize[3]; int i=0; for(i;i<2 && ssize[i] !=' ' && ssize[i]!=']';i++){ strsize[i] = ssize[i]; } strsize[i]=0; wm[index].style[pos].size = atoi(ssize); }else wm[index].style[pos].size = FONT_SIZE1; stemp = sunday(str,"[/style]"); int len = stemp - etemp; memcpy(wm[index].style[pos].str,etemp,len); wm[index].style[pos].str[len]=NULL; if(pos==0) wm[index].style[pos].x = 0; else wm[index].style[pos].x = getTextLength(wm[index].style[pos-1].str)+wm[index].style[pos-1].x; pos++; stemp = stemp + 8; getstrstyle(stemp,index,pos,FALSE,wm); } }else{ sprintf(wm[index].style[pos].str,"%s",str); if(!wm[index].flg){ wm[index].flg=TRUE; wm[index].style[pos].x = 0; wm[index].style[pos].color = 0; wm[index].style[pos].size = FONT_SIZE1; }else{ wm[index].style[pos].size = FONT_SIZE1; wm[index].style[pos].x = getTextLength(wm[index].style[pos-1].str)+wm[index].style[pos-1].x; wm[index].style[pos].color = 0; } } } void PutWinText(int x,int y,char fontPrio,int color,char *str,BOOL hitFlag,int index ) { int i=0; for(;i<30;i++){ if(*wmstr[index].style[i].str) StockFontBufferExt(x+wmstr[index].style[i].x,y,fontPrio,wmstr[index].style[i].color, wmstr[index].style[i].str,hitFlag,wmstr[index].style[i].size); } } #ifdef _CHARTITLE_STR_ void PutTitleText(int x,int y,char fontPrio,TITLE_STR str,BOOL hitFlag) { int i=0; for(;i<10;i++){ if(*str.style[i].str) StockFontBufferExt(x+str.style[i].x,y,fontPrio,str.style[i].color, str.style[i].str,hitFlag,str.style[i].size); } } extern int getTextLength(char * str); void getTitlestyle(char *str,int pos,int flg,TITLE_STR* wm) { char *stemp,*etemp; if(flg) stemp = str; else stemp = sunday(str, "[style "); if(stemp){ if(stemp!= str){ wm->flg=TRUE; wm->style[pos].size = FONT_SIZE1; if(pos==0) wm->style[pos].x = 0; else wm->style[pos].x = getTextLength(wm->style[pos-1].str)+wm->style[pos-1].x; wm->style[pos].color = 0; int len = stemp - str; memcpy(wm->style[pos].str,str,len); wm->style[pos].str[len]=NULL; pos++; getTitlestyle(stemp,pos,TRUE,wm); }else{ wm->flg=TRUE; stemp=stemp+7; etemp = sunday(stemp, "]")+1; char *scolor = sunday(stemp, "c="); if(scolor){ scolor=scolor+2; char strnum[3]; int i=0; for(i;i<2 && scolor[i] !=' ' && scolor[i]!=']';i++){ strnum[i] = scolor[i]; } strnum[i]=0; wm->style[pos].color = atoi(strnum); }else wm->style[pos].color =0; char *ssize = sunday(stemp, "s="); if(ssize){ ssize=ssize+2; char strsize[3]; int i=0; for(i;i<2 && ssize[i] !=' ' && ssize[i]!=']';i++){ strsize[i] = ssize[i]; } strsize[i]=0; wm->style[pos].size = atoi(ssize); }else wm->style[pos].size = FONT_SIZE1; stemp = sunday(str,"[/style]"); int len = stemp - etemp; memcpy(wm->style[pos].str,etemp,len); wm->style[pos].str[len]=NULL; if(pos==0) wm->style[pos].x = 0; else wm->style[pos].x = getTextLength(wm->style[pos-1].str)+wm->style[pos-1].x; pos++; stemp = stemp + 8; getTitlestyle(stemp,pos,FALSE,wm); } }else{ sprintf(wm->style[pos].str,"%s",str); if(!wm->flg){ wm->flg=TRUE; wm->style[pos].x = 0; wm->style[pos].color = 0; wm->style[pos].size = FONT_SIZE1; wm->len = getTextLength(wm->style[pos].str); }else{ wm->style[pos].size = FONT_SIZE1; wm->style[pos].x = getTextLength(wm->style[pos-1].str)+wm->style[pos-1].x; wm->style[pos].color = 0; wm->len = getTextLength(wm->style[pos].str)+wm->style[pos].x; } } } void getCharTitleSplit( char *str,TITLE_STR* title) { memset(title,0,sizeof(TITLE_STR)); if (str == NULL) return; int i=0; for(i;i<25;i++){ if(*str){ getTitlestyle(str,0,FALSE,title); } } } #endif void getStrSplitNew( char str[][256]) { memset(wmstr,0,sizeof(WM_STR)*25); int i=0; for(i;i<25;i++){ if(str[i][0]){ getstrstyle(str[i],i,0,FALSE,wmstr); } } } #endif