stoneage8.5/石器时代8.5客户端最新源代码/石器源码/wgs/common.cpp
2020-06-22 17:49:02 +08:00

378 lines
8.7 KiB
C++

/*-----------------------------------------------
Common.cpp -- common function
(c) 冀겟價Cary Hsu, 1999.10.4
-----------------------------------------------*/
#include <windows.h>
#include <time.h>
#include "../systeminc/version.h"
#include "Message.h"
#include "../systeminc/login.h"
#ifdef _MEMORYLEAK_CHECK
#include "../LeakDetector/vld.h"
#endif
char szPid[10];
char szCSIP[125];
char szError[1024];
char szAnnouncement[1024];
//#ifdef CHINA_VER
// 댕쩍경
// char szWGS[]="210.51.17.41";
// WORD wWGS=9125;
//#else
#ifdef _BACK_VERSION ////
// 릿옻경
char szWGS[]="210.64.97.28";
WORD wWGS=13009;
#else
#ifdef _PK_SERVER
// 겟拱PK경
char szWGS[]="210.64.97.28";
WORD wWGS=13010;
#else
// 攣駕경
char szWGS[]="210.64.97.28";
//char szWGS[]="wgs.hwaei.com.tw";
WORD wWGS=13005;
#endif
#endif
WORD wCS;
char szPlain[80];
char szCipher[80];
char P_Key[8];
char P_Key1[256];
extern int iEncrypt;
DWORD dwServer=NULL;
int iWGS=0;
BOOL ReadWGSMessage(LPSTR lpstr,int &iStrLen)
{
TCHAR cMessage=0;
Parameter *param;
if(RET_OK==AnalyzeMessage(lpstr,iStrLen)){
if(WGS==dwServer){
while(messHead){
cMessage=*messHead->param->lpstrParam;
param=ReleaseMessHeadParam();
if(M_REDI==cMessage){
if(GetIP_PORT(param)){
iWGS=2;
ReleaseMessList();
}
}else if(M_PKEY==cMessage){
iEncrypt=E_ECB;
dwServer=CS;
GetEncrypt(param);
PKey_Init();
iWGS=4;
ReleaseMessList();
}else if(M_ERRO==cMessage){
iWGS=9;
if(messHead->param && messHead->param->lpstrParam)
lstrcpy(szError,messHead->param->lpstrParam);
}
RemoveMessHead();
}
}else{
while(messHead){
cMessage=*messHead->param->lpstrParam;
param=ReleaseMessHeadParam();
if(M_PKEY==cMessage){
iEncrypt=E_ECB;
GetEncrypt(param);
iWGS=4;
}else if(M_CONT==cMessage){
iWGS=6;
}else if(M_GOTO==cMessage){
iWGS=8;
iEncrypt=E_NO;
ipAddressAnalyze();
ReleaseMessList();
}else if(M_ERRO==cMessage){
iWGS=9;
if(messHead->param && messHead->param->lpstrParam)
lstrcpy(szError,messHead->param->lpstrParam);
ReleaseMessList();
}
RemoveMessHead();
}
}
}else
return FALSE;
iStrLen=0;
return TRUE;
}
BOOL GetIP_PORT(Parameter *param)
{
if((param)&&(param->lpstrParam)){
lstrcpy(szCSIP,param->lpstrParam);
if((param=ReleaseMessHeadParam())&&(param->lpstrParam)){
wCS=(WORD)atoi(param->lpstrParam);
if((param=ReleaseMessHeadParam())&&(param->lpstrParam)){
lstrcpy(szPid,param->lpstrParam);
return TRUE;
}
}
}
return FALSE;
}
void GetEncrypt(Parameter *param)
{
if(param && param->lpstrParam){
int iLen=strlen(param->lpstrParam);
iLen>>=1;
strncpy_s(szPlain,param->lpstrParam,iLen);
szPlain[iLen]='\0';
strcpy(szCipher,param->lpstrParam+iLen);
}
}
void PKey_Init()
{
TCHAR szTemp[17],szTemp1[3];
srand((unsigned)time(NULL));
int i;
for(i=0;i<7;i++)
szTemp[i]=P_Key[i]=rand()%256;
P_Key[7]='\0';
for(i=7;i<16;i++)
szTemp[i]=rand()%256;
P_Key1[0]='\0';
for(i=0;i<16;i++){
wsprintf(szTemp1,"%02X",(unsigned char)~szTemp[i]);
lstrcat(P_Key1,szTemp1);
}
}
#include "../systeminc/chat.h"
extern STR_BUFFER idKey;
extern STR_BUFFER passwd;
int appendWriteBuf( int index , char *buf , int size );
void DoHellow()
{
AddParamForFormat(M_HELO2,FORMAT_START);
AddParamForFormat(idKey.buffer,idKey.cnt,NULL);
AddParamForFormat(passwd.buffer,passwd.cnt,FORMAT_FINISH);
int iLen;
LPTSTR lpstr=GetString(iLen,P_Key);
appendWriteBuf(NULL,lpstr,iLen);
}
void DoSKey()
{
int iLen;
AddParamForFormat(M_SKEY,FORMAT_START);
PKey_Init();
AddParamForFormat(P_Key1,32,FORMAT_FINISH);
LPTSTR lpstr=GetString(iLen,SZ_ECB);
appendWriteBuf(NULL,lpstr,iLen);
}
#ifdef _OMIT_WGS
void testtest()
{
LPTSTR lpstr = O_WGS_Format();
appendWriteBuf(NULL,lpstr, 6);
}
#endif
#include "../systeminc/netmain.h"
extern struct gameserver gmsv[];
struct gamegroup gmgroup[MAX_GMGROUP];
extern int nGroup;
#ifdef NO_WGS
void SetTestServer()
{
ZeroMemory( gmsv, sizeof(gameserver)*MAX_GMSV);
ZeroMemory( gmgroup, sizeof(gamegroup)*MAX_GMGROUP);
/*
nGroup = 2;
strcpy( gmgroup[0].name, "꿎桿혐");
gmgroup[0].num = 2;
gmgroup[0].startindex = 0;
gmgroup[0].used = 1;
strcpy( gmgroup[1].name, "꿎桿댕혐");
gmgroup[1].num = 2;
gmgroup[1].startindex = 2;
gmgroup[1].used = 1;
strcpy( gmsv[0].ipaddr, "127.0.0.1");
strcpy( gmsv[0].name, "꿎桿寧窟");
strcpy( gmsv[0].port, "7001");
gmsv[0].used = '1';
strcpy( gmsv[1].ipaddr, "114.215.158.113");
strcpy( gmsv[1].name, "꿎桿랗窟");
strcpy( gmsv[1].port, "7001");
gmsv[1].used = '1';
strcpy( gmsv[2].ipaddr, "192.168.0.104");
strcpy( gmsv[2].name, "꿎桿힛窟");
strcpy( gmsv[2].port, "7001");
gmsv[2].used = '1';
strcpy( gmsv[3].ipaddr, "my.gamma7happy.com");
strcpy( gmsv[3].name, "꿎桿愷窟");
strcpy( gmsv[3].port, "7001");
gmsv[3].used = '1';
*/
HRESULT hr = ::CoInitialize( NULL );
if ( FAILED( hr ) )
{
MessageBoxA( NULL, "놓迦뺏呵겨", "ERROR", MB_OK );
return;
}
::CoUninitialize();
}
#endif
void ipAddressAnalyze()
{
char szIP[50];
DWORD dwLevel = 0;
DWORD dwID, dwResult;
int nGroup1, indexgm;
LPSTR lpstrTemp;
DWORD dwCafeKey = GetCafeNumber();
Parameter *param = messHead->param;
HKEY hkey;
if( RegOpenKeyEx( HKEY_LOCAL_MACHINE , "Software\\Waei\\柯포珂덜\\5.00.000" , 0 , KEY_READ , &hkey ) == ERROR_SUCCESS ){
dwCafeKey |= 0x02;
RegCloseKey( hkey );
}
if( param && param->lpstrParam){
nGroup = 0;//
indexgm = 0;
ZeroMemory( gmsv, sizeof(gameserver)*MAX_GMSV);
ZeroMemory( gmgroup, sizeof(gamegroup)*MAX_GMGROUP);
nGroup1 = atoi( param->lpstrParam);
if( nGroup1 > MAX_GMGROUP)
nGroup1 = MAX_GMGROUP;
param = ReleaseMessHeadParam();
#ifdef _SHOW_COUNT // WON ADD 汲륩蛟포직좆
if( param && param->lpstrParam){
param = ReleaseMessHeadParam();
}
#endif
for( int i = 0; i < nGroup1; i++){
if( param && param->lpstrParam){
dwID = atoi( param->lpstrParam);
param = ReleaseMessHeadParam();
dwResult = dwID & dwCafeKey;
dwLevel = 1; //옵鹿朞
if( dwCafeKey){
// 怜狼唐鬼뒈헷앎옵鹿였돕杰唐槿溝
/*if(dwID){
if( 0 == dwResult)
dwLevel = 0; //였꼇돕
}*/
}else{
if(dwID){
dwLevel = 0;//였꼇돕
}
#ifdef _8_TEST
if( dwID == 2 )
dwLevel = 1;
else
dwLevel = 0;
#endif
}
/*
dwLevel = 1; //옵鹿朞
if( 0 == dwResult){
if( dwID > 1)
dwLevel = 2; //怜콘였꼇콘朞
else if( 1 == dwID)
dwLevel = 0; //였꼇돕
}
*/
}
if( param && param->lpstrParam){
if( dwLevel)
strcpy( gmgroup[nGroup].name, param->lpstrParam);
param = ReleaseMessHeadParam();
}
if( param && param->lpstrParam){
gmgroup[nGroup].num = atoi(param->lpstrParam);
param = ReleaseMessHeadParam();
}
if( param && param->lpstrParam){
strcpy( szIP, param->lpstrParam);
param = ReleaseMessHeadParam();
gmgroup[nGroup].startindex = indexgm;
#ifdef _SHOW_COUNT // WON ADD 汲륩蛟포직좆
if( param && param->lpstrParam){
param = ReleaseMessHeadParam();
}
#endif
for( int j = 0; j<gmgroup[nGroup].num && indexgm < MAX_GMSV; j++, indexgm++){
if( param && param->lpstrParam){
if( dwLevel)
strcpy( gmsv[indexgm].name, param->lpstrParam);
param = ReleaseMessHeadParam();
}
if( param && param->lpstrParam){
if( dwLevel){
char *sss;
if( lpstrTemp = strtok_s( param->lpstrParam, ":",&sss)){
if( szIP[0]){ //谿寧group瞳谿寧C class돨렀鍋
strcpy( gmsv[indexgm].ipaddr, szIP);
strcat_s( gmsv[indexgm].ipaddr, ".");
strcat_s( gmsv[indexgm].ipaddr, lpstrTemp);
}else //Copy 供憐돨IP address
strcpy( gmsv[indexgm].ipaddr, lpstrTemp);
char *sss;
if( lpstrTemp = strtok_s( NULL, ":",&sss)){
strcpy( gmsv[indexgm].port, lpstrTemp);
gmsv[indexgm].used = '1';
}
}
}
param = ReleaseMessHeadParam();
}
#ifdef _SHOW_COUNT // WON ADD 汲륩蛟포직좆
if( param && param->lpstrParam){
strcpy( gmsv[indexgm].count, param->lpstrParam);
param = ReleaseMessHeadParam();
}
#endif
}
if( dwLevel){
gmgroup[nGroup].used = (char)dwLevel;
nGroup++;
}
}
}
if (param && param->lpstrParam){
strcpy( szAnnouncement, param->lpstrParam);
param = ReleaseMessHeadParam();
}else
szAnnouncement[0] = '\0';
}
}
#ifdef _MEMORYLEAK_CHECK
#endif