stoneage8.5/石器时代8.5客户端最新源代码/石器源码/system/chat.cpp

1568 lines
40 KiB
C++
Raw Normal View History

2020-06-22 17:49:02 +08:00
/************************/
/* chat.c */
/************************/
#include "../systeminc/version.h"
#include "../systeminc/system.h"
#include "../systeminc/font.h"
#include "../other/caryIme.h"
#include "../systeminc/netproc.h"
#include "../systeminc/battleProc.h"
#include "../systeminc/savedata.h"
#include "time.h"
#include "../systeminc/menu.h"
#include "../systeminc/t_music.h"
#include "../systeminc/t_music.h"
#include "../systeminc/tool.h"
#include "../systeminc/lssproto_cli.h"
#include "../systeminc/netmain.h"
#include "../systeminc/chat.h"
#include "../NewProto/protocol.h"
#ifdef _TALK_WINDOW
#include "../systeminc/talkwindow.h"
#endif
#include "../systeminc/EncryptClient.h"
#include <atlconv.h>
extern INPUT_HISTORY InputHistory ;
extern STR_BUFFER SubBuffer;
#ifdef __ONLINEGM
extern BOOL OnlineGmFlag;
#endif
// ?????????
CHAT_BUFFER ChatBuffer[ MAX_CHAT_LINE ];
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD><EFBFBD>?<3F>V????????
2020-06-22 17:49:02 +08:00
STR_BUFFER MyChatBuffer;
2020-06-23 15:27:59 +08:00
// ???<3F>V????????????????
2020-06-22 17:49:02 +08:00
STR_BUFFER *pNowStrBuffer = NULL;
// ??????????
int NowChatLine = 0;
// ????
int NowMaxChatLine = DEF_CHAT_LINE;
#ifdef _SA_LIAOTIAN_
int NowChatLine_Bak = 0;
#endif
2020-06-23 15:27:59 +08:00
// ??<3F><>?<3F><>??
2020-06-22 17:49:02 +08:00
int NowMaxVoice = DEF_VOICE;
2020-06-23 15:27:59 +08:00
// ????<3F><><EFBFBD><EFBFBD>????
2020-06-22 17:49:02 +08:00
int CursorFlashCnt = 0;
2020-06-23 15:27:59 +08:00
// ??????????<3F><>
2020-06-22 17:49:02 +08:00
int ChatLineSmoothY = 0 ;
#define CAHT_HISTORY_STR_FILE_NAME "data\\chathis.dat" // ??????????????
2020-06-23 15:27:59 +08:00
// ???????????<3F>B<EFBFBD>l
2020-06-22 17:49:02 +08:00
CHAT_HISTORY ChatHistory;
#define MAX_SHIELD_SIZE 5000
//typedef CEncryptClient<0x55, 0x168, 0xC9, 0x3C, 0x6B, 0x49, 0x81, 0x65> ENCRYPTCONF;
char SayShieldList[MAX_SHIELD_SIZE][24];
char NameShieldList[MAX_SHIELD_SIZE][24];
// ???????
void KeyboardTab( void );
// ??????
FILE *chatLogFile = NULL;
char chatLogFileName[256];
void openChatLogFile( void );
/*
2020-06-23 15:27:59 +08:00
#ifdef _TELLCHANNEL // (<28><><EFBFBD>ɿ<EFBFBD>) ROG ADD <20><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
char ReTellName[] = "";
#endif
*/
void InitChat( void )
{
memset( ChatBuffer, 0, sizeof( CHAT_BUFFER ) * MAX_CHAT_LINE );
memset( &MyChatBuffer, 0, sizeof( STR_BUFFER ) );
MyChatBuffer.len = _FONTDATALEN_-10;
#ifndef _CHANNEL_MODIFY
MyChatBuffer.fontPrio = FONT_PRIO_BACK;
#else
MyChatBuffer.fontPrio = FONT_PRIO_CHATBUFFER;
#endif
#ifdef _MO_CHAT_EXPRESSION
MyChatBuffer.x = 8+20;
#else
MyChatBuffer.x = 8;
#endif
MyChatBuffer.y = 432 + DISPLACEMENT_Y;
getUserChatOption();
openChatLogFile();
#ifdef _CHANNEL_MODIFY
FILE *pf;
char buf[5];
if ((pf = fopen("data\\channel.dat","r")) == NULL)
{
pc.etcFlag |= PC_ETCFLAG_CHAT_TELL;
if ((pf = fopen("data\\channel.dat", "w+")) == NULL)
return;
else
{
buf[0] = (pc.etcFlag & PC_ETCFLAG_CHAT_TELL) ? 1:0;
buf[1] = (pc.etcFlag & PC_ETCFLAG_CHAT_SAVE) ? 1:0;
#ifdef _CHAR_PROFESSION
buf[2] = (pc.etcFlag & PC_ETCFLAG_CHAT_OCC) ? 1:0;
#endif
#ifdef _CHANNEL_WORLD
buf[3] = (pc.etcFlag & PC_ETCFLAG_CHAT_WORLD) ? 1:0;
#endif
#ifdef _CHANNEL_ALL_SERV
buf[4] = (pc.etcFlag & PC_ETCFLAG_ALL_SERV) ? 1:0;
#endif
fwrite(buf, 1, sizeof(buf), pf);
fclose(pf);
}
}
else
{
fread(&buf,1,sizeof(char),pf);
if (buf)
pc.etcFlag |= PC_ETCFLAG_CHAT_TELL;
fread(&buf,1,sizeof(char),pf);
if (buf)
pc.etcFlag |= PC_ETCFLAG_CHAT_SAVE;
fread(&buf,1,sizeof(char),pf);
#ifdef _CHAR_PROFESSION
if (buf)
pc.etcFlag |= PC_ETCFLAG_CHAT_OCC;
#endif
#ifdef _CHANNEL_WORLD
if (buf)
pc.etcFlag |= PC_ETCFLAG_CHAT_WORLD;
#endif
#ifdef _CHANNEL_ALL_SERV
if (buf)
pc.etcFlag |= PC_ETCFLAG_ALL_SERV;
#endif
fclose(pf);
}
if (pc.familyleader <= 0) pc.etcFlag &= ~PC_ETCFLAG_CHAT_FM;
else pc.etcFlag |= PC_ETCFLAG_CHAT_FM;
#ifdef _CHAR_PROFESSION
if (pc.profession_class == 0) pc.etcFlag &= ~PC_ETCFLAG_CHAT_OCC;
else pc.etcFlag |= PC_ETCFLAG_CHAT_OCC;
#endif
if(!pc.etcFlag &PC_ETCFLAG_PARTY){
pc.etcFlag |= PC_ETCFLAG_PARTY;
}
2020-06-23 15:27:59 +08:00
//<2F>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
pc.etcFlag |= PC_ETCFLAG_PARTY;
if (bNewServer) lssproto_FS_send(sockfd,pc.etcFlag);
else old_lssproto_FS_send(sockfd,pc.etcFlag);
#endif
}
void openChatLogFile( void )
{
if( chatLogFile == NULL ){
#ifdef _STONDEBUG_
chatLogFile = fopen( chatLogFileName, "wt" );
#else
static struct tm nowTime;
time_t longTime;
time( &longTime );
localtime_s(&nowTime, &longTime );
sprintf_s( chatLogFileName, ".\\chat\\CHAT_%02d%02d%02d.TXT",
(nowTime.tm_year % 100), nowTime.tm_mon+1, nowTime.tm_mday );
chatLogFile = fopen( chatLogFileName, "a" );
if( chatLogFile ){
fprintf( chatLogFile, "----- Login: %02d/%02d/%02d %02d:%02d:%02d -----\n",
(nowTime.tm_year % 100), nowTime.tm_mon+1, nowTime.tm_mday,
nowTime.tm_hour, nowTime.tm_min, nowTime.tm_sec );
}
#endif
}
}
BOOL SaveChatHistoryStr( int no )
{
FILE *fp;
if( ( fp = fopen( CAHT_HISTORY_STR_FILE_NAME, "r+b" ) ) == NULL )
return FALSE;
2020-06-23 15:27:59 +08:00
// ??????<3F><>????????????<3F><>???
2020-06-22 17:49:02 +08:00
fseek( fp, sizeof( ChatHistory.str[ 0 ] ) * no, SEEK_SET );
2020-06-23 15:27:59 +08:00
// <20><>?????????
2020-06-22 17:49:02 +08:00
if( fwrite( &ChatHistory.str[ no ], sizeof( ChatHistory.str[ 0 ] ), 1, fp ) < 1 ){
fclose( fp );// ????????
return FALSE;
}
2020-06-23 15:27:59 +08:00
// ?<3F><>???<3F>k??<3F><>???????????<3F><>???
2020-06-22 17:49:02 +08:00
fseek( fp, sizeof( ChatHistory.str[ 0 ] ) * MAX_CHAT_HISTORY, SEEK_SET );
2020-06-23 15:27:59 +08:00
// ?<3F><>???<3F>k??<3F><><EFBFBD>V
2020-06-22 17:49:02 +08:00
if( fwrite( &no, sizeof( int ), 1, fp ) < 1 ){
fclose( fp );// ????????
return FALSE;
}
// ????????
fclose( fp );
return TRUE;
}
2020-06-23 15:27:59 +08:00
// ???????<3F><>??<3F><>??? ****************************************************************/
2020-06-22 17:49:02 +08:00
BOOL LoadChatHistoryStr( void )
{
FILE *fp;
2020-06-23 15:27:59 +08:00
// ?????????<3F>k?????
2020-06-22 17:49:02 +08:00
ChatHistory.nowNo = -1;
2020-06-23 15:27:59 +08:00
// <20><>???????????
2020-06-22 17:49:02 +08:00
if( ( fp = fopen( CAHT_HISTORY_STR_FILE_NAME, "rb" ) ) == NULL ){
2020-06-23 15:27:59 +08:00
// ?????<3F>ɤ<EFBFBD>??<3F><>
2020-06-22 17:49:02 +08:00
if( ( fp = fopen( CAHT_HISTORY_STR_FILE_NAME, "wb" ) ) != NULL ){
// ???????
fwrite( &ChatHistory, sizeof( CHAT_HISTORY ) - sizeof( int ), 1, fp );
fclose( fp ); // ????????
}
2020-06-23 15:27:59 +08:00
// ?<3F><>???????<3F>k?????
2020-06-22 17:49:02 +08:00
ChatHistory.nowNo = MAX_CHAT_HISTORY - 1;
return FALSE;
}
2020-06-23 15:27:59 +08:00
// ???<3F><>???
2020-06-22 17:49:02 +08:00
if( fread( &ChatHistory, sizeof( CHAT_HISTORY ) - sizeof( int ), 1, fp ) < 1 ){
fclose( fp ); // ????????
return FALSE;
}
// ????????
fclose( fp );
return TRUE;
}
2020-06-23 15:27:59 +08:00
/* <20><>??????<3F>V?<3F><>????? ****************************************************/
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
void* EncryptFileName( LPCTSTR pszResFile,unsigned int &nSize )
{
//ENCRYPTCONF myConfFileCncryp;
//if( NULL != pszResFile ) ; // [Chancy2008-4-16 21:51]
char szFile[MAX_PATH] = "";
char szResFileTemp[MAX_PATH] = "" ;
lstrcpyn( szResFileTemp , pszResFile , sizeof( szResFileTemp ) ) ;
char* pszReadName;
_strlwr_s(pszReadName=_strdup(szResFileTemp),256); // [Chancy2008-4-16 21:52]
if ( !pszReadName )
return NULL;
sprintf_s(szFile,"data/%s.bin",pszReadName);
FILE* fp = fopen(szFile, "rb");
if ( !fp )
{
return false;
}
//(myConfFileCncryp).Init();
fseek(fp,0,SEEK_END);//move file pointer to file end
unsigned int unFileSize = ftell( fp );
nSize = ftell( fp );
fseek( fp,0,SEEK_SET );// RESTORE
void* pBuffer = new char[ unFileSize + 1 ]; // apply 1 char memory for '\0' because char pointer
if( !pBuffer )
return false;
memset( pBuffer,0,sizeof( char ) * ( unFileSize + 1 ) );
fread( pBuffer,unFileSize,1,fp );
//(myConfFileCncryp).Encrypt((unsigned char *)pBuffer,unFileSize);
fclose(fp);
return pBuffer;
}
2020-06-23 15:27:59 +08:00
BOOL MoveFilePointInt( const char * pBuffer ,unsigned int nSize , unsigned int &nRead, BOOL &bRead ,int nResult) // <20>ƶ<EFBFBD><C6B6>ļ<EFBFBD>ָ<EFBFBD><D6B8> [11/27/2007]
2020-06-22 17:49:02 +08:00
{
2020-06-23 15:27:59 +08:00
unsigned int nReadCount = nRead; // <20><>¼<EFBFBD>ϴ<EFBFBD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD>λ<EFBFBD><CEBB> [11/28/2007]
2020-06-22 17:49:02 +08:00
const char* pFind = strstr( pBuffer + nRead,"\n");//find \n
if( pFind )
{
2020-06-23 15:27:59 +08:00
nRead = ( pFind - pBuffer + 1 ); // <20>õ<EFBFBD><C3B5><EFBFBD>ǰָ<C7B0><D6B8><EFBFBD><EFBFBD>λ<EFBFBD><CEBB> [11/28/2007] //<2F>õ<EFBFBD><C3B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>ʼλ<CABC>õ<EFBFBD>ƫ<EFBFBD><C6AB>λ<EFBFBD><CEBB>// <20><><EFBFBD>ȵ<EFBFBD>ע<EFBFBD>Ͳ<EFBFBD>׼ȷ [<5B><><EFBFBD>ĸ<EFBFBD> 2007-12-14]
2020-06-22 17:49:02 +08:00
}
2020-06-23 15:27:59 +08:00
if ((2 == nRead - nReadCount && nResult !=0)|| nResult == 0) // / <09>ж϶<D0B6><CFB6><EFBFBD><EFBFBD><EFBFBD>ʵ<EFBFBD><CAB5><EFBFBD>ݣ<EFBFBD>2<EFBFBD><32><EFBFBD>ֽڱ<D6BD>ʾ<EFBFBD><CABE>\r\n<><6E><EFBFBD><EFBFBD> [11/28/2007]
2020-06-22 17:49:02 +08:00
{
bRead = FALSE;
}
else
{
bRead = TRUE;
}
if( nRead > nSize )
return false;
return true;
}
BOOL LoadReadSayShield( void )
{
char szName[]="ShieldWorld";
unsigned int nSize;
char* pBuffer = (char*)EncryptFileName((char*)szName,nSize);
if( !pBuffer )
return FALSE;
2020-06-23 15:27:59 +08:00
unsigned int nRead = 0; //<2F>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD>˵<EFBFBD>
2020-06-22 17:49:02 +08:00
BOOL bRead = FALSE;
int i = 0;
static char szWord[20] = "";
while(nRead < nSize)
{
int nResult = sscanf_s(pBuffer + nRead , "%s", &szWord);
if ( !MoveFilePointInt(pBuffer,nSize,nRead,bRead,nResult))
break;
if ( bRead == FALSE )
continue;
if ( 1 == nResult )
{
if(i >= MAX_SHIELD_SIZE)
{
break;
}
strcpy(SayShieldList[i], szWord );
i++;
}
else
break;
}
delete[] pBuffer;
pBuffer = NULL;
return TRUE;
}
BOOL LoadReadNameShield( void )
{
char szName[]="ShieldName";
unsigned int nSize;
char* pBuffer = (char*)EncryptFileName((char*)szName,nSize);
if( !pBuffer )
return FALSE;
2020-06-23 15:27:59 +08:00
unsigned int nRead = 0; //<2F>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD>˵<EFBFBD>
2020-06-22 17:49:02 +08:00
BOOL bRead = FALSE;
int i = 0;
static char szName_[20] = "";
while(nRead < nSize)
{
int nResult = sscanf_s(pBuffer + nRead , "%s", &szName_);
if ( !MoveFilePointInt(pBuffer,nSize,nRead,bRead,nResult))
break;
if ( bRead == FALSE )
continue;
if ( 1 == nResult )
{
if(i >= MAX_SHIELD_SIZE)
{
break;
}
strcpy(NameShieldList[i], szName_ );
i++;
}
else
break;
}
delete[] pBuffer;
pBuffer = NULL;
return TRUE;
}
bool CheckSay( const char* strSay, const char szReplace )
{
if ( NULL==strSay ) return true;
if ( strlen(strSay)==0 ) return true;
for ( size_t i=0;i<MAX_SHIELD_SIZE;i++ )
{
if ( const char *szRe = strstr( strSay,SayShieldList[i] ) )
{
2020-06-23 15:27:59 +08:00
// g_objGameMsg.AddMsg( SayShieldList[i].c_str() ); // <20><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
//memset( (void*)szRe,szReplace,strlen(SayShieldList[i]) );
return false;
}
}
return true;
}
bool CheckName( const char* strSay )
{
if ( NULL==strSay ) return true;
if ( strlen(strSay)==0 ) return true;
for ( size_t i=0;i<MAX_SHIELD_SIZE;i++ )
{
if ( const char *szRe = strstr( strSay,NameShieldList[i] ) )
{
2020-06-23 15:27:59 +08:00
// g_objGameMsg.AddMsg( SayShieldList[i].c_str() ); // <20><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
// memset( (void*)szRe,szReplace,NameShieldList[i].length() );
//word = NameShieldList[i];
return false;
}
}
return true;
}
2020-06-23 15:27:59 +08:00
extern int <EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
extern int <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
2020-06-22 17:49:02 +08:00
void StrToNowStrBuffer( char *str )
{
2020-06-23 15:27:59 +08:00
if(<EFBFBD><EFBFBD><EFBFBD><EFBFBD> == 950 ){
2020-06-22 17:49:02 +08:00
extern char* BIG5ToGB2312(const char* szBIG5String);
char *newstr;
newstr=BIG5ToGB2312((const char *)str);
int strLen,i;
strLen=strlen(newstr);
if(strLen>86)
strLen=86;
for(i=0;i<strLen;i++){
if(IsDBCSLeadByte(newstr[i])){
StockStrBufferDBChar(newstr+i);
i++;
}else
StockStrBufferChar(newstr[i]);
}
}else{
int strLen,i;
strLen=strlen(str);
if(strLen>86)
strLen=86;
for(i=0;i<strLen;i++){
if(IsDBCSLeadByte(str[i])){
StockStrBufferDBChar(str+i);
i++;
}else
StockStrBufferChar(str[i]);
}
}
}
void StrToNowStrBuffer1( char *str )
{
2020-06-23 15:27:59 +08:00
if(<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>){
2020-06-22 17:49:02 +08:00
int strLen,i;
2020-06-23 15:27:59 +08:00
char <EFBFBD><EFBFBD><EFBFBD><EFBFBD>[1024]={0};
LCMapString (0x804,0x4000000,str, strlen(str),<EFBFBD><EFBFBD><EFBFBD><EFBFBD>,1024);
strLen=strlen(<EFBFBD><EFBFBD><EFBFBD><EFBFBD>);
2020-06-22 17:49:02 +08:00
if(strLen>86)
strLen=86;
for(i=0;i<strLen;i++){
2020-06-23 15:27:59 +08:00
if(IsDBCSLeadByte(<EFBFBD><EFBFBD><EFBFBD><EFBFBD>[i])){
StockStrBufferDBChar(<EFBFBD><EFBFBD><EFBFBD><EFBFBD>+i);
2020-06-22 17:49:02 +08:00
i++;
}else
2020-06-23 15:27:59 +08:00
StockStrBufferChar(<EFBFBD><EFBFBD><EFBFBD><EFBFBD>[i]);
2020-06-22 17:49:02 +08:00
}
}else{
int strLen,i;
strLen=strlen(str);
if(strLen>86)
strLen=86;
for(i=0;i<strLen;i++){
if(IsDBCSLeadByte(str[i])){
StockStrBufferDBChar(str+i);
i++;
}else
StockStrBufferChar(str[i]);
}
}
}
int StrToNowStrBuffer2( char *str )
{
int strLen,i;
strLen=strlen(str);
if(strLen>70){
if(IsDBCSLeadByte(str[68]))
strLen = 69;
else
strLen = 70;
}
for(i=0;i<strLen;i++){
if(IsDBCSLeadByte(str[i])){
StockStrBufferDBChar(str+i);
i++;
}else
StockStrBufferChar(str[i]);
}
return i;
}
/* ???????? ************************************************************/
void ChatProc( void )
{
// ???????????
//if( joy_trg[ 1 ] & JOY_RETURN ) KeyboardReturn();
// ??????????
if( joy_trg[ 1 ] & JOY_TAB ) KeyboardTab();
// ??????
//if( joy_trg[ 0 ] & JOY_CTRL_C ){
// ???????????
// SetClipboad();
//}
// ??????
if( joy_trg[ 0 ] & JOY_CTRL_V ){
2020-06-23 15:27:59 +08:00
// ?????????<3F>V?????????
2020-06-22 17:49:02 +08:00
GetClipboad();
}
#ifdef __ONLINEGM
if(OnlineGmFlag == TRUE) TalkMode = 0;
#endif
2020-06-23 15:27:59 +08:00
#ifdef _TELLCHANNEL //ROG ADD <20><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if( joy_trg[ 1 ] & JOY_CTRL_R
#ifdef __ONLINEGM
&& OnlineGmFlag == FALSE
#endif
)
{
pNowStrBuffer->buffer[ 0 ] = NULL;
pNowStrBuffer->cursor=0;
pNowStrBuffer->cnt = 0;
StrToNowStrBuffer1(secretName);
TalkMode = 1;
}
#else
#ifdef _FRIENDCHANNEL
StrToNowStrBuffer1( secretName );
#endif
#endif
2020-06-23 15:27:59 +08:00
// <20>V??????????????????
2020-06-22 17:49:02 +08:00
if( pNowStrBuffer == &MyChatBuffer || pNowStrBuffer == &MailStr ){
if( joy_trg[ 1 ] & JOY_F1 ) StrToNowStrBuffer1( chatRegistryStr[ 0 ].buffer );
if( joy_trg[ 1 ] & JOY_F2 ) StrToNowStrBuffer1( chatRegistryStr[ 1 ].buffer );
if( joy_trg[ 1 ] & JOY_F3 ) StrToNowStrBuffer1( chatRegistryStr[ 2 ].buffer );
if( joy_trg[ 1 ] & JOY_F4 ) StrToNowStrBuffer1( chatRegistryStr[ 3 ].buffer );
if( joy_trg[ 1 ] & JOY_F5 ) StrToNowStrBuffer1( chatRegistryStr[ 4 ].buffer );
if( joy_trg[ 1 ] & JOY_F6 ) StrToNowStrBuffer1( chatRegistryStr[ 5 ].buffer );
if( joy_trg[ 1 ] & JOY_F7 ) StrToNowStrBuffer1( chatRegistryStr[ 6 ].buffer );
if( joy_trg[ 1 ] & JOY_F8 ) StrToNowStrBuffer1( chatRegistryStr[ 7 ].buffer );
}
if( pNowStrBuffer == &MyChatBuffer && GetImeString() == NULL ){
2020-06-23 15:27:59 +08:00
// <20><>???????
2020-06-22 17:49:02 +08:00
if( joy_auto[ 0 ] & JOY_UP ){
static UINT oldtime = 0;
if(oldtime < TimeGetTime()){
oldtime = TimeGetTime() + 100;
int bak = ChatHistory.nowNo;
if( ChatHistory.nowNo == -1 ) ChatHistory.nowNo = ChatHistory.newNo;
else ChatHistory.nowNo--;
if( ChatHistory.nowNo < 0 ) ChatHistory.nowNo = MAX_CHAT_HISTORY - 1;
if( ChatHistory.str[ ChatHistory.nowNo ][ 0 ] != 0 && ( ChatHistory.nowNo != ChatHistory.newNo || bak == -1 ) ){
pNowStrBuffer->cnt = 0;
pNowStrBuffer->buffer[ 0 ] = NULL;
pNowStrBuffer->cursor=0;
StrToNowStrBuffer1( ChatHistory.str[ ChatHistory.nowNo ] );
}else{
ChatHistory.nowNo = bak;
}
#ifdef _TALK_WINDOW
if(g_bTalkWindow) TalkWindow.Update();
#endif
}
}else
// ????????
if( joy_auto[ 0 ] & JOY_DOWN ){
static UINT oldtime = 0;
if(oldtime < TimeGetTime()){
oldtime = TimeGetTime() + 100;
2020-06-23 15:27:59 +08:00
// ?????????<3F>V?????
2020-06-22 17:49:02 +08:00
if( ChatHistory.nowNo != -1 ){
2020-06-23 15:27:59 +08:00
// ?????????<3F>I???
2020-06-22 17:49:02 +08:00
if( ChatHistory.nowNo == ChatHistory.newNo ){
ChatHistory.nowNo = -1;
2020-06-23 15:27:59 +08:00
// <20>V?????<3F><>?????
2020-06-22 17:49:02 +08:00
pNowStrBuffer->cnt = 0;
pNowStrBuffer->buffer[ 0 ] = NULL;
pNowStrBuffer->cursor=0;
}else{
ChatHistory.nowNo++;
// ????????
if( ChatHistory.nowNo >= MAX_CHAT_HISTORY ) ChatHistory.nowNo = 0;
2020-06-23 15:27:59 +08:00
// <20>V?????<3F><>?????
2020-06-22 17:49:02 +08:00
pNowStrBuffer->cnt = 0;
pNowStrBuffer->buffer[ 0 ] = NULL;
pNowStrBuffer->cursor=0;
2020-06-23 15:27:59 +08:00
// ?????<3F><>???<3F>V????????
2020-06-22 17:49:02 +08:00
StrToNowStrBuffer1( ChatHistory.str[ ChatHistory.nowNo ] );
}
#ifdef _TALK_WINDOW
if(g_bTalkWindow) TalkWindow.Update();
#endif
}
}
}
}
}
2020-06-23 15:27:59 +08:00
// ?????????<3F><><EFBFBD><EFBFBD>?? **************************************************/
2020-06-22 17:49:02 +08:00
void FlashKeyboardCursor( void )
{
if(pNowStrBuffer==NULL) return;
if(CursorFlashCnt >= 20){
StockFontBuffer(pNowStrBuffer->imeX, pNowStrBuffer->imeY , pNowStrBuffer->fontPrio, pNowStrBuffer->color, "_" , 0 );
}
CursorFlashCnt++;
if( CursorFlashCnt >= 40 ) CursorFlashCnt = 0;
}
// ?????? ***************************************************************/
void KeyboardBackSpace( void )
{
int byte,cursor;
if(pNowStrBuffer==NULL) return;
#ifdef __ONLINEGM
if (pNowStrBuffer==&SubBuffer ){
if (pNowStrBuffer->cursor==0 && InputHistory.newNo>0 && (InputHistory.newNo-1)>InputHistory.lockNo){
InputHistory.str[InputHistory.newNo][0] = '\0';
StrToNowStrBuffer1( InputHistory.str[ InputHistory.newNo-1 ] );
byte = lstrlen(InputHistory.str[ InputHistory.newNo-1 ]);
pNowStrBuffer->cnt = byte;
pNowStrBuffer->cursor = byte;
InputHistory.newNo--;
InputHistory.addNo--;
if (InputHistory.newNo < 3+1 ){
InputHistory.nowNo = 0;
pNowStrBuffer->y -= pNowStrBuffer->lineDist;
if(pNowStrBuffer->y<325-5)
pNowStrBuffer->y = 325-5 ;
}
else
InputHistory.nowNo = InputHistory.newNo-3-1;
}
}
#endif
if((cursor=pNowStrBuffer->cursor) > 0){
char *lpstr=pNowStrBuffer->buffer;
char *lpstr1=lpstr+cursor;
byte=lpstr1-GetCharPrev(lpstr,lpstr1);
for(;cursor<=pNowStrBuffer->cnt;cursor++){
lpstr[cursor-byte]=lpstr[cursor];
}
pNowStrBuffer->cnt-=byte;
pNowStrBuffer->cursor-=byte;
CursorFlashCnt=20;
}
}
// ??????? ***************************************************************/
void KeyboardTab( void )
{
int i,flag = 0;
2020-06-23 15:27:59 +08:00
// <20>V?<3F><>???????
2020-06-22 17:49:02 +08:00
if( pNowStrBuffer == NULL ) return;
2020-06-23 15:27:59 +08:00
// <20><>?<3F>K????? *******************************
2020-06-22 17:49:02 +08:00
for( i = 0 ; i < MAX_CHAT_REGISTY_STR ; i++ ){
if( pNowStrBuffer == &chatRegistryStr[ i ] ){
flag = TRUE;
break;
}
}
2020-06-23 15:27:59 +08:00
// <20><>?<3F>K??? *******************************
2020-06-22 17:49:02 +08:00
if( flag == TRUE ){
// ???????????
if( joy_con[ 1 ] & JOY_RSHIFT || joy_con[ 1 ] & JOY_LSHIFT ){
i--;
// ????????
if( i < 0 ) i = MAX_CHAT_REGISTY_STR - 1;
}else{
i++;
// ????????
if( i >= MAX_CHAT_REGISTY_STR ) i = 0;
}
2020-06-23 15:27:59 +08:00
// <20>V???????<3F>h
2020-06-22 17:49:02 +08:00
GetKeyInputFocus( &chatRegistryStr[ i ] );
}
2020-06-23 15:27:59 +08:00
// ?????????????<3F><>??
2020-06-22 17:49:02 +08:00
CursorFlashCnt = 20;
#ifdef _CHANNEL_MODIFY
static DWORD dwChannelChangeTime = TimeGetTime();
if(dwChannelChangeTime + 250 < TimeGetTime()){
dwChannelChangeTime = TimeGetTime();
TalkMode = (TalkMode + 1) % PC_ETCFLAG_CHAT_WORLD_NUM;
switch(TalkMode){
case PC_ETCFLAG_CHAT_MODE_ID:
strcpy(secretName,"");
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD>ڶ<EFBFBD><DAB6><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD>л<EFBFBD>һ<EFBFBD><D2BB>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(pc.etcFlag & PC_ETCFLAG_CHAT_MODE){
pc.etcFlag &= ~PC_ETCFLAG_CHAT_MODE;
if(bNewServer) lssproto_FS_send(sockfd,pc.etcFlag);
else old_lssproto_FS_send(sockfd,pc.etcFlag);
}
break;
case PC_ETCFLAG_CHAT_TELL_ID:
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD>ر<EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_TELL)) TalkMode++;
else break;
case PC_ETCFLAG_CHAT_PARTY_ID:
2020-06-23 15:27:59 +08:00
// <20>޶<EFBFBD><DEB6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(partyModeFlag == 0) TalkMode++;
else{
pc.etcFlag |= PC_ETCFLAG_CHAT_MODE;
if(bNewServer) lssproto_FS_send(sockfd,pc.etcFlag);
else old_lssproto_FS_send(sockfd,pc.etcFlag);
break;
}
case PC_ETCFLAG_CHAT_FM_ID:
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD><EFBFBD>Ƶ<EFBFBD>п<EFBFBD>,<2C>ص<EFBFBD><D8B5><EFBFBD>Ƶ
2020-06-22 17:49:02 +08:00
if(pc.etcFlag & PC_ETCFLAG_CHAT_MODE){
pc.etcFlag &= ~PC_ETCFLAG_CHAT_MODE;
if(bNewServer) lssproto_FS_send(sockfd,pc.etcFlag);
else old_lssproto_FS_send(sockfd,pc.etcFlag);
}
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD>ر<EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_FM)) TalkMode++;
else break;
#ifdef _CHAR_PROFESSION
case PC_ETCFLAG_CHAT_OCC_ID:
2020-06-23 15:27:59 +08:00
// ְҵƵ<D2B5><C6B5><EFBFBD>ر<EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_OCC))
TalkMode++;
break;
#endif
#ifdef _CHATROOMPROTOCOL
case PC_ETCFLAG_CHAT_CHAT_ID:
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_CHAT)){
secretFlag = FALSE;
selChar = -1;
strcpy(secretName,"");
}
break;
#endif
#ifdef _CHANNEL_WORLD
case PC_ETCFLAG_CHAT_WORLD_ID:
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_WORLD)){
if((pc.etcFlag & PC_ETCFLAG_ALL_SERV)){
TalkMode++;
}else{
TalkMode = 0;
}
}
break;
#endif
#ifdef _CHANNEL_ALL_SERV
case PC_ETCFLAG_ALL_SERV_ID:
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
2020-06-22 17:49:02 +08:00
if(!(pc.etcFlag & PC_ETCFLAG_ALL_SERV)){
TalkMode = 0;
}
break;
#endif
default:
TalkMode++;
break;
}
#ifdef _TALK_WINDOW
if(g_bTalkWindow) TalkWindow.Update();
#endif
}
#else
#ifdef _FRIENDCHANNEL
TalkMode = (TalkMode + 1) % 3;
if(TalkMode == 2 ){
secretFlag = FALSE;
selChar = -1;
pNowStrBuffer->buffer[ 0 ] = NULL;
pNowStrBuffer->cursor=0;
pNowStrBuffer->cnt = 0;
StrToNowStrBuffer("");
if(strcmp(pc.chatRoomNum, "") == 0) TalkMode = 0;
}else strcpy(secretName,"");
#else
#ifdef _TELLCHANNEL
TalkMode = (TalkMode + 1) % 2;
pNowStrBuffer->buffer[ 0 ] = NULL;
pNowStrBuffer->cursor=0;
pNowStrBuffer->cnt = 0;
StrToNowStrBuffer("");
#endif
#endif
#endif
}
void KeyboardLeft()
{
int byte,cursor;
if(pNowStrBuffer==NULL) return;
if((cursor=pNowStrBuffer->cursor) > 0){
char *lpstr=pNowStrBuffer->buffer;
char *lpstr1=lpstr+cursor;
byte=lpstr1-GetCharPrev(lpstr,lpstr1);
pNowStrBuffer->cursor-=byte;
CursorFlashCnt=20;
}
}
void KeyboardRight()
{
int byte=1,cursor;
if(pNowStrBuffer==NULL) return;
if((cursor=pNowStrBuffer->cursor) < (pNowStrBuffer->cnt)){
char *lpstr=pNowStrBuffer->buffer;
lpstr+=cursor;
if(*lpstr && IsDBCSLeadByte(*lpstr))
byte=2;
pNowStrBuffer->cursor+=byte;
}
CursorFlashCnt=20;
}
#include <tlhelp32.h>
/* ???????? ************************************************************/
void KeyboardReturn( void )
{
//ttom
static bool first_keydown=true;
if(!first_keydown) {
2020-06-23 15:27:59 +08:00
//cary ʮ<><CAAE>
2020-06-22 17:49:02 +08:00
static DWORD PreTime=TimeGetTime(),CurTime;
if(((CurTime=TimeGetTime())-PreTime)<500)
return;
PreTime=CurTime;
}
#ifdef __NEW_CLIENT
extern HANDLE hProcessSnap, hParentProcess;
extern DWORD dwPID;
extern PROCESSENTRY32 pe32;
if( dwPID){
pe32.dwSize = sizeof(PROCESSENTRY32);
if( Process32First( hProcessSnap, &pe32)){
do{
if( pe32.th32ProcessID == dwPID){
if( !strstr( pe32.szExeFile, "explorer.exe") && (hParentProcess = OpenProcess( PROCESS_ALL_ACCESS, FALSE, dwPID))){
#ifndef NO_TERMINATER
TerminateProcess( hParentProcess, 0);
#endif
CloseHandle( hParentProcess);
}
break;
}
}while( Process32Next( hProcessSnap, &pe32));
}
dwPID = 0;
}
#endif
first_keydown=false;
//end
//ttom
char bakNo;
2020-06-23 15:27:59 +08:00
// ?????????<3F><>????????
2020-06-22 17:49:02 +08:00
if( GetImeString() != NULL )
return;
2020-06-23 15:27:59 +08:00
// ????<3F>V??? *******************************
2020-06-22 17:49:02 +08:00
if( pNowStrBuffer == &MyChatBuffer ){
if( pNowStrBuffer->cnt == 0 )
return;
pNowStrBuffer->buffer[ pNowStrBuffer->cnt ] = '\0';
#ifdef _STONDEBUG_
// ????????
if( strstr( pNowStrBuffer->buffer, "[battlein]" ) )
EncountFlag = TRUE;
if( strstr( pNowStrBuffer->buffer, "[battleout]" ) ){
ChangeProc( PROC_GAME, 1 );
DeathAllAction(); // ????????
}
#ifdef _THEATER
if (strstr(pNowStrBuffer->buffer, "scenery"))
{
char szData[128];
getStringToken(pNowStrBuffer->buffer, ' ', 2, sizeof(szData) - 1, szData);
sprintf_s(szData, "%d|%d", E_DATA_TYPE_SCENERY, atoi(szData));
lssproto_TheaterData_recv(0, szData);
}
if (strstr(pNowStrBuffer->buffer, "movescreen"))
{
int iXY = 0;
char szData[128];
if (pc.bMoveScreenMode)
lssproto_MoveScreen_recv(0, FALSE, iXY);
else
{
getStringToken(pNowStrBuffer->buffer, ' ', 2, sizeof(szData) - 1, szData);
iXY = atoi(szData);
getStringToken(pNowStrBuffer->buffer, ' ', 3, sizeof(szData) - 1, szData);
iXY = (iXY << 16) | atoi(szData);
lssproto_MoveScreen_recv(0, TRUE, iXY);
}
}
if (strstr(pNowStrBuffer->buffer, "playnpc"))
{
char szData[128], szData1[128];
getStringToken(pNowStrBuffer->buffer, ' ', 2, sizeof(szData1) - 1, szData1);
sprintf_s(szData, "12|%s", szData1);
lssproto_TheaterData_recv(0, szData);
}
#endif
if( strstr( pNowStrBuffer->buffer, "[cary encountoff]" ) ){
EncountOffFlag = TRUE;
pNowStrBuffer->cnt = 0;
pNowStrBuffer->cursor=0;
*( pNowStrBuffer->buffer )= '\0';
return;
}
if( strstr( pNowStrBuffer->buffer, "[cary encounton]" ) ){
EncountOffFlag = FALSE;
pNowStrBuffer->cnt = 0;
pNowStrBuffer->cursor=0;
*( pNowStrBuffer->buffer )= '\0';
return;
}
#endif
// ??????
bakNo = ChatHistory.newNo;
2020-06-23 15:27:59 +08:00
// ??????<3F>k??
2020-06-22 17:49:02 +08:00
ChatHistory.newNo++;
// ????????
if( ChatHistory.newNo >= MAX_CHAT_HISTORY )
ChatHistory.newNo = 0;
//cary
BOOL bSave=TRUE;
/*
BOOL bH=FALSE;
for(int i=0;i<pNowStrBuffer->cnt;i++){
if(!bH){
if('['==pNowStrBuffer->buffer[i])
bH=TRUE;
}else{
}
}
*/
/*
for(int i=0;i<pNowStrBuffer->cnt;i++){
if('['==pNowStrBuffer->buffer[i]){
if(strstr( pNowStrBuffer->buffer+i, "debug on]" ) != 0){
bSave=FALSE;
break;
}
}
}
*/
if(('['==pNowStrBuffer->buffer[0])&&(']'==pNowStrBuffer->buffer[pNowStrBuffer->cnt-1]))
bSave=FALSE;
if(!bSave){
ChatHistory.newNo = bakNo;
}else{
//end
2020-06-23 15:27:59 +08:00
// <20>q????<3F><>????
2020-06-22 17:49:02 +08:00
if( strcmp( pNowStrBuffer->buffer, ChatHistory.str[ bakNo ] ) != 0 ){
2020-06-23 15:27:59 +08:00
// ???<3F><>??????
2020-06-22 17:49:02 +08:00
strcpy( ChatHistory.str[ ChatHistory.newNo ], pNowStrBuffer->buffer );
2020-06-23 15:27:59 +08:00
// ???????<3F><>??<3F><><EFBFBD>V
2020-06-22 17:49:02 +08:00
SaveChatHistoryStr( ChatHistory.newNo );
}else{
// ??????????
ChatHistory.newNo = bakNo;
}
}
ChatHistory.nowNo = -1;
if( offlineFlag == FALSE )
chatStrSendForServer( pNowStrBuffer->buffer, MyChatBuffer.color );
pNowStrBuffer->cnt = 0;
pNowStrBuffer->cursor=0;
*( pNowStrBuffer->buffer )= '\0';
}else
2020-06-23 15:27:59 +08:00
// <20><>?<3F><>??? **********************************
2020-06-22 17:49:02 +08:00
if( pNowStrBuffer == &shougouChange ){
2020-06-23 15:27:59 +08:00
// ??????<3F><>
2020-06-22 17:49:02 +08:00
DeathAction( pActMenuWnd3 );
pActMenuWnd3 = NULL;
2020-06-23 15:27:59 +08:00
// <20>V????????
2020-06-22 17:49:02 +08:00
GetKeyInputFocus( &MyChatBuffer );
2020-06-23 15:27:59 +08:00
// ?????<3F><>???
2020-06-22 17:49:02 +08:00
play_se( 203, 320, 240 );
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD>q<EFBFBD><71>??<3F><>
2020-06-22 17:49:02 +08:00
if( bNewServer)
lssproto_FT_send( sockfd, shougouChange.buffer ) ; /* ../doc/lssproto.html line 1792 */
else
old_lssproto_FT_send( sockfd, shougouChange.buffer ) ; /* ../doc/lssproto.html line 1792 */
}else
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD>q<EFBFBD><71>??? **********************************
2020-06-22 17:49:02 +08:00
if( pNowStrBuffer == &petNameChange ){
2020-06-23 15:27:59 +08:00
// ??????<3F><>
2020-06-22 17:49:02 +08:00
DeathAction( pActMenuWnd3 );
pActMenuWnd3 = NULL;
2020-06-23 15:27:59 +08:00
// <20>V????????
2020-06-22 17:49:02 +08:00
GetKeyInputFocus( &MyChatBuffer );
2020-06-23 15:27:59 +08:00
// ?????<3F><>???
2020-06-22 17:49:02 +08:00
play_se( 203, 320, 240 );
2020-06-23 15:27:59 +08:00
// <20><><EFBFBD>q<EFBFBD><71>??<3F><>
2020-06-22 17:49:02 +08:00
if( bNewServer)
lssproto_KN_send( sockfd, petStatusNo, petNameChange.buffer ) ; /* ../doc/lssproto.html line 1792 */
else
old_lssproto_KN_send( sockfd, petStatusNo, petNameChange.buffer ) ; /* ../doc/lssproto.html line 1792 */
}else
// ????? **********************************
if( pNowStrBuffer == &MailStr
#ifdef __EDEN_AUCTION
|| pNowStrBuffer == &AuctionStr){
#else
){
#endif
char *buffer=pNowStrBuffer->buffer;
2020-06-23 15:27:59 +08:00
//<2F>пɷ<D0BF><C9B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ
2020-06-22 17:49:02 +08:00
if(pNowStrBuffer->cnt < pNowStrBuffer->len-pNowStrBuffer->lineLen){
2020-06-23 15:27:59 +08:00
//<2F><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>ȫ<EFBFBD><C8AB>Ϊspace<63><65><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
if((pNowStrBuffer->cursor)%pNowStrBuffer->lineLen == 0)
StockStrBufferChar(' ');
while((pNowStrBuffer->cursor)%pNowStrBuffer->lineLen)
StockStrBufferChar(' ');
}
}else
// ????? **********************************
if( pNowStrBuffer == &MailStr ){
// ????????????
if( MailStr.cnt < MailStr.len - MailStr.lineLen ){
2020-06-23 15:27:59 +08:00
// ?<3F>Z??
2020-06-22 17:49:02 +08:00
if( MailStr.cnt % MailStr.lineLen == 0 )
StockStrBufferChar( ' ' );
2020-06-23 15:27:59 +08:00
// ??<3F>Z???????<3F>V??
2020-06-22 17:49:02 +08:00
while( MailStr.cnt % MailStr.lineLen )
StockStrBufferChar( ' ' );
}
}
2020-06-23 15:27:59 +08:00
// ????<3F>V??? ****************************
#ifdef _FRIENDCHANNEL //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
char temp[STR_BUFFER_SIZE];
if( pNowStrBuffer == &chatRoomName ){
GetKeyInputFocus( &MyChatBuffer );
play_se( 203, 320, 240 );
sprintf_s(temp,"C|%s",chatRoomName.buffer);
lssproto_CHATROOM_send ( sockfd , temp ) ;
DeathAction(pSetRoomWnd);
pSetRoomWnd = NULL;
setRoomFlag = FALSE;
}
#endif
#ifdef _TELLCHANNEL
2020-06-23 15:27:59 +08:00
if(TalkMode == 1){ //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
pNowStrBuffer->buffer[ 0 ] = NULL;
pNowStrBuffer->cursor=0;
pNowStrBuffer->cnt = 0;
StrToNowStrBuffer1(secretName);
}
#endif
extern STR_BUFFER *idPasswordStr;
extern short idKeyReturn;
if( pNowStrBuffer == idPasswordStr )
{
idKeyReturn = 1;
}
2020-06-23 15:27:59 +08:00
// ?????????????<3F><>??
2020-06-22 17:49:02 +08:00
CursorFlashCnt = 20;
}
extern STR_BUFFER idKey;
extern STR_BUFFER passwd;
extern STR_BUFFER selCharName;
2020-06-23 15:27:59 +08:00
/* <09><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>Ԫ<EFBFBD><D4AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀǰ<C4BF><C7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>String buffer
parameter: c: <EFBFBD><EFBFBD>Ԫ */
2020-06-22 17:49:02 +08:00
void StockStrBufferChar(char c)
{
if(BYTE(c)>0x1f){
int cnt,cursor;
if(pNowStrBuffer==NULL || (cnt=pNowStrBuffer->cnt) >= pNowStrBuffer->len)
return;
char *buffer=pNowStrBuffer->buffer;
if(pNowStrBuffer==&idKey || pNowStrBuffer==&passwd){
/*if(!(('0'<=c && c<='9') || ('A'<=c && c<='Z') || ('a'<=c && c<='z')))
return;*/
}else if(pNowStrBuffer==&selCharName){
2020-06-23 15:27:59 +08:00
if(' '==c || '<EFBFBD><EFBFBD>'==c|| ','==c || '|'==c || '\\'==c)
2020-06-22 17:49:02 +08:00
return;
}else if(pNowStrBuffer==&SubBuffer){
if('&'==c || '|'==c )
return;
}
for(cursor=pNowStrBuffer->cursor++;cursor<=cnt;cnt--)
buffer[cnt+1]=buffer[cnt];
buffer[cursor++]=c;
pNowStrBuffer->cnt++;
CursorFlashCnt=20;
#ifdef _TALK_WINDOW
if(g_bTalkWindow) TalkWindow.Update();
#endif
}
}
2020-06-23 15:27:59 +08:00
/* <09><>˫λԪ<CEBB><D4AA>Ԫ<EFBFBD><D4AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀǰ<C4BF><C7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>String buffer
parameter: lpc: ˫λԪ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ */
2020-06-22 17:49:02 +08:00
void StockStrBufferDBChar(char *lpc)
{
int cnt,cursor;
if(pNowStrBuffer==NULL || (cnt=pNowStrBuffer->cnt) >= pNowStrBuffer->len-1)
return;
char *buffer=pNowStrBuffer->buffer;
if(pNowStrBuffer==&idKey || pNowStrBuffer==&passwd)
return;
else{
for(cursor=pNowStrBuffer->cursor;cursor<=cnt;cnt--)
buffer[cnt+2]=buffer[cnt];
buffer[cursor++]=*lpc++;
buffer[cursor++]=*lpc;
pNowStrBuffer->cnt+=2;
pNowStrBuffer->cursor+=2;
CursorFlashCnt=20;
}
}
#ifdef _FONT_SIZE
void StockChatBufferLine( char *str, unsigned char color )
{
StockChatBufferLineExt( str, color, 0 );
}
void StockChatBufferLineExt( char *str_, unsigned char color, int fontsize )
#else
void StockChatBufferLine( char *str_, unsigned char color )
#endif
{
char *str=str_;
2020-06-23 15:27:59 +08:00
extern int <EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
extern int <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
if(<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>){
char <EFBFBD><EFBFBD><EFBFBD><EFBFBD>[1024]={0};
LCMapString (0x804,0x4000000,str_, strlen(str_),<EFBFBD><EFBFBD><EFBFBD><EFBFBD>,1024);
str = <EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
2020-06-22 17:49:02 +08:00
}else{
str = str_;
}
#ifdef _SA_LIAOTIAN_
if(NowChatLine_Bak != NowChatLine) NowChatLine = NowChatLine_Bak;
#endif
#ifdef _MO_CHAT_EXPRESSION
char strtemp[1024];
delFontBuffer(&ChatBuffer[ NowChatLine ]);
int splitPoint = 0;
char splitStr[ STR_BUFFER_SIZE + 1 ];
unsigned int MyChatBufferLen = _FONTDATALEN_;
if( strlen( str ) > MyChatBufferLen ){
strncpy_s( splitStr, str, MyChatBufferLen );
*( splitStr + MyChatBufferLen ) = NULL;
if( GetStrLastByte( splitStr ) == 3 ){
splitPoint = MyChatBufferLen - 1;
*( splitStr + MyChatBufferLen - 1 ) = NULL;
}else
splitPoint = MyChatBufferLen;
strncpy_s( strtemp, str, splitPoint );
strtemp[splitPoint]=0;
NewStockFontBuffer(&ChatBuffer[ NowChatLine ],0,color,strtemp,fontsize);
}else NewStockFontBuffer(&ChatBuffer[ NowChatLine ],0,color,str,fontsize);
#ifdef _SA_LIAOTIAN_
NowChatLine_Bak++;
#endif
NowChatLine++;
if( NowChatLine >= MAX_CHAT_LINE ){
NowChatLine = 0;
#ifdef _SA_LIAOTIAN_
NowChatLine_Bak=0;
#endif
}
if( chatLogFile ){
fprintf( chatLogFile, "%s\n", str );
}
ChatLineSmoothY = 20;
if( splitPoint != 0 ){
#ifdef _FONT_SIZE
StockChatBufferLineExt( str + splitPoint, color, fontsize );
#else
StockChatBufferLine( str + splitPoint, color );
#endif
}
#else
int splitPoint = 0;
char splitStr[ STR_BUFFER_SIZE + 1 ];
#ifdef _NEWFONT_
unsigned int MyChatBufferLen = 87;
#else
unsigned int MyChatBufferLen = 112;
#endif
#ifdef _FONT_SIZE
if( fontsize > 0 ) {
MyChatBufferLen = (int)(MyChatBufferLen*((float)FONT_SIZE/(float)fontsize));
}
#endif
if( strlen( str ) > MyChatBufferLen ){
strncpy_s( splitStr, str, MyChatBufferLen );
*( splitStr + MyChatBufferLen ) = NULL;
if( GetStrLastByte( splitStr ) == 3 ){
splitPoint = MyChatBufferLen - 1;
*( splitStr + MyChatBufferLen - 1 ) = NULL;
}else
splitPoint = MyChatBufferLen;
strncpy_s( ChatBuffer[ NowChatLine ].buffer, str, splitPoint );
*( ChatBuffer[ NowChatLine ].buffer + splitPoint ) = NULL;
#ifdef _TALK_WINDOW
TalkWindow.AddString(ChatBuffer[NowChatLine].buffer,color);
#endif
}else{
strcpy( ChatBuffer[ NowChatLine ].buffer, str );
#ifdef _TALK_WINDOW
TalkWindow.AddString(str,color);
#endif
}
if( chatLogFile ){
fprintf( chatLogFile, "%s\n", ChatBuffer[ NowChatLine ].buffer );
}
ChatBuffer[ NowChatLine ].color = color;
#ifdef _FONT_SIZE
ChatBuffer[ NowChatLine ].fontsize = fontsize;
#endif
NowChatLine++;
if( NowChatLine >= MAX_CHAT_LINE ) NowChatLine = 0;
if( splitPoint != 0 ){
#ifdef _FONT_SIZE
StockChatBufferLineExt( str + splitPoint, color, fontsize );
#else
StockChatBufferLine( str + splitPoint, color );
#endif
}
ChatLineSmoothY = 20;
//ChatLineSmoothY = 20 - ChatBuffer[ NowChatLine-1 ].fontsize;
#ifdef _TALK_WINDOW
if(g_bTalkWindow) TalkWindow.Update();
#endif
#endif
}
void ClearChatBuffer( void )
{
int i;
for( i = 0 ; i < MAX_CHAT_LINE ; i++ ){
ChatBuffer[ i ].buffer[ 0 ] = '\0';
}
NowChatLine = 0;
#ifdef _SA_LIAOTIAN_
NowChatLine_Bak=0;
#endif
}
void ChatBufferToFontBuffer( void )
{
#ifdef _TALK_WINDOW
if(g_bTalkWindow) return;
#endif
int i, j, k = 0;
2020-06-23 15:27:59 +08:00
int x = 8, y = 400; // <20><><EFBFBD><EFBFBD>?<3F><>
2020-06-22 17:49:02 +08:00
j = NowChatLine - 1;
// ????????
if( j < 0 )
j = MAX_CHAT_LINE - 1;
2020-06-23 15:27:59 +08:00
// ??????????<3F><>?<3F><><EFBFBD><EFBFBD>
2020-06-22 17:49:02 +08:00
if( ChatLineSmoothY > 0 )
k = NowMaxChatLine + 1;
else
k = NowMaxChatLine;
// ????????
if( k > MAX_CHAT_LINE )
k = MAX_CHAT_LINE;
2020-06-23 15:27:59 +08:00
// ???????<3F><>???
2020-06-22 17:49:02 +08:00
for( i = 0 ; i < k; i++ ){
// ?????????
if( *ChatBuffer[ j ].buffer != NULL
){
#ifdef _FONT_SIZE
#ifdef _MO_CHAT_EXPRESSION
CHAT_BUFFER * temp = &ChatBuffer[j];
while(temp){
if(temp->x>760) break;
if(temp->BmpNo){
StockDispBuffer(temp->x+x+14, y + ChatLineSmoothY + DISPLACEMENT_Y+7, DISP_PRIO_IME1,temp->BmpNo, 0);
}else{
StockFontBufferExt(temp->x+x, y + ChatLineSmoothY + DISPLACEMENT_Y, FONT_PRIO_BACK, temp->color, ( char *)temp->buffer, 0,temp->fontsize );
}
temp = temp->NextChatBuffer;
}
#else
StockFontBufferExt( x, y + ChatLineSmoothY + DISPLACEMENT_Y - (int)((ChatBuffer[j].fontsize/2)*1.4), FONT_PRIO_BACK, ChatBuffer[ j ].color, ( char *)ChatBuffer[ j ].buffer, 0, ChatBuffer[ j ].fontsize );
#endif
//StockFontBufferExt( temp->x+x, y + ChatLineSmoothY + DISPLACEMENT_Y, FONT_PRIO_BACK, temp->color, ( char *)temp->buffer, 0, 0);
#else
#ifdef _MO_CHAT_EXPRESSION
CHAT_BUFFER * temp = &ChatBuffer[j];
while(temp){
if(temp->x>760) break;
if(temp->BmpNo){
StockDispBuffer(temp->x+x+14, y + ChatLineSmoothY + DISPLACEMENT_Y+7, DISP_PRIO_IME1,temp->BmpNo, 0);
}else{
StockFontBuffer(temp->x+x, y + ChatLineSmoothY + DISPLACEMENT_Y, FONT_PRIO_BACK, temp->color, ( char *)temp->buffer, 0 );
}
temp = temp->NextChatBuffer;
}
#else
StockFontBuffer( x, y + ChatLineSmoothY + DISPLACEMENT_Y, FONT_PRIO_BACK, ChatBuffer[ j ].color, ( char *)ChatBuffer[ j ].buffer, 0 );
#endif
#endif
}
2020-06-23 15:27:59 +08:00
y -= _CHAT_SPACING; // ?<3F><>?<3F>h
2020-06-22 17:49:02 +08:00
#ifdef _FONT_SIZE
y -= (int)((ChatBuffer[j].fontsize/2)*1.4);
#endif
// ??????
j--;
// ????????
if( j < 0 )
j = MAX_CHAT_LINE - 1;
}
// ???????????
if( ChatLineSmoothY > 0 )
ChatLineSmoothY--;
#ifdef LABEL_STR_
extern char g_szChannelTitle[][13];
StockFontBuffer( 2 ,430 + DISPLACEMENT_Y, FONT_PRIO_BACK, MyChatBuffer.color ,g_szChannelTitle[TalkMode] , 0 );
#endif
#ifdef _MO_CHAT_EXPRESSION
extern void ShowBottomLineString(int iColor,LPSTR lpstr);
extern int focusGraId( int *id, int cnt );
extern int pushGraId( int *id, int cnt );
extern int selGraId( int *id, int cnt );
2020-06-23 15:27:59 +08:00
int <EFBFBD><EFBFBD><EFBFBD>ťID = -1;
static int <EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼƬ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> = 0;
static int <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬=FALSE;
static int <EFBFBD><EFBFBD><EFBFBD>ǰҳ=0;
static int <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ = (EXPRESSION_NOID_NUM)%48?(EXPRESSION_NOID_NUM)/48+1:(EXPRESSION_NOID_NUM)/48;
2020-06-22 17:49:02 +08:00
int chatBtnGraNo[] =
{
CG_FIELD_CHAT_BTN_OFF,
CG_FIELD_CHAT_BTN_ON
};
2020-06-23 15:27:59 +08:00
StockDispBuffer(40, 559, DISP_PRIO_IME3, chatBtnGraNo[<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼƬ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>], 1);
2020-06-22 17:49:02 +08:00
if( MakeHitBox(40-10, 559-10,40+10,559+10, DISP_PRIO_IME4 ) == TRUE )
{
2020-06-23 15:27:59 +08:00
ShowBottomLineString(FONT_PAL_WHITE, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
2020-06-22 17:49:02 +08:00
if(mouse.onceState & MOUSE_LEFT_CRICK){
2020-06-23 15:27:59 +08:00
<EFBFBD><EFBFBD><EFBFBD>ǰҳ=1;
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼƬ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>=1;
if(<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬) <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬=FALSE;
else <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬=TRUE;
2020-06-22 17:49:02 +08:00
play_se(203, 320, 240);
2020-06-23 15:27:59 +08:00
}else <EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼƬ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>=0;
2020-06-22 17:49:02 +08:00
}
2020-06-23 15:27:59 +08:00
if(<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬){
2020-06-22 17:49:02 +08:00
if( joy_trg[ 0 ] & JOY_ESC ) {
MenuToggleFlag|=JOY_ESC;
play_se(203, 320, 240);
2020-06-23 15:27:59 +08:00
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬=FALSE;
2020-06-22 17:49:02 +08:00
}
2020-06-23 15:27:59 +08:00
int <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ťID[2];
2020-06-22 17:49:02 +08:00
StockDispBuffer(120, 447, DISP_PRIO_IME3, 55103, 1);
2020-06-23 15:27:59 +08:00
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ťID[0]=StockDispBuffer(89, 535, DISP_PRIO_IME4, 55104, 2);
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ťID[1]=StockDispBuffer(152, 535, DISP_PRIO_IME4, 55105, 2);
int <EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID= selGraId(<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ťID,2);
if(<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID==0){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if(<EFBFBD><EFBFBD><EFBFBD>ǰҳ>1) <EFBFBD><EFBFBD><EFBFBD>ǰҳ--;
}else if(<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID==1){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if(<EFBFBD><EFBFBD><EFBFBD>ǰҳ < <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ) <EFBFBD><EFBFBD><EFBFBD>ǰҳ++;
2020-06-22 17:49:02 +08:00
}
2020-06-23 15:27:59 +08:00
int start=(<EFBFBD><EFBFBD><EFBFBD>ǰҳ-1)*48;
int end = (<EFBFBD><EFBFBD><EFBFBD>ǰҳ*48 < EXPRESSION_NOID_NUM ?<EFBFBD><EFBFBD><EFBFBD>ǰҳ*48:EXPRESSION_NOID_NUM);
2020-06-22 17:49:02 +08:00
int x,y;
for(y=0;y<6;y++){
for(x=0;x<8;x++){
2020-06-23 15:27:59 +08:00
<EFBFBD><EFBFBD><EFBFBD>ťID=StockDispBuffer(19+x*29, 362+y*29, DISP_PRIO_IME4, EXPRESSION_NOID_START+start, 2);
if(selGraId(&<EFBFBD><EFBFBD><EFBFBD>ťID,1)!=-1){
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬=FALSE;
2020-06-22 17:49:02 +08:00
play_se(203, 320, 240);
2020-06-23 15:27:59 +08:00
char <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>[128];
sprintf_s(<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,"#%d",start+1);
strcat_s(MyChatBuffer.buffer,<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>);
2020-06-22 17:49:02 +08:00
MyChatBuffer.cursor=strlen(MyChatBuffer.buffer);
MyChatBuffer.cnt=strlen(MyChatBuffer.buffer);
}
start++;
if(EXPRESSION_NOID_NUM < start) break;
}
if(EXPRESSION_NOID_NUM < start) break;
}
}
#endif
StockFontBuffer2( &MyChatBuffer );
}
/*******************************************************************************/
2020-06-23 15:27:59 +08:00
/* <20><>??????<3F>S??<3F>u???<3F><>??
/* ??<3F>k <09>S?<3F><>?
/* <09>u?<3F><>?
/* ??<3F><>?
2020-06-22 17:49:02 +08:00
/*******************************************************************************/
int GetStrLastByte( char *str )
{
int byte = 0;
2020-06-23 15:27:59 +08:00
// <20><>??????????
2020-06-22 17:49:02 +08:00
while( !( *str == '\0' ) ){
// ( *str == ( char )0x81 && *( str + 1 ) == ( char )0x51 ) ) ){
2020-06-23 15:27:59 +08:00
// <20>u????
2020-06-22 17:49:02 +08:00
if(IsDBCSLeadByte(*str)){
2020-06-23 15:27:59 +08:00
// <20>u??<3F><>??<3F><>???????
2020-06-22 17:49:02 +08:00
if( *( str + 1 ) == NULL ) return 3; // ??
2020-06-23 15:27:59 +08:00
str += 2; // ????<3F><>??
byte = 2; // <20>u???
2020-06-22 17:49:02 +08:00
2020-06-23 15:27:59 +08:00
}else{ // <20>S????
2020-06-22 17:49:02 +08:00
2020-06-23 15:27:59 +08:00
str ++; // ????<3F><>??
byte = 1; // <20>S???
2020-06-22 17:49:02 +08:00
}
}
return byte;
}
/*******************************************************************************/
2020-06-23 15:27:59 +08:00
/* <20><>????????????<3F><>??
/* ??<3F>k ????
2020-06-22 17:49:02 +08:00
/*******************************************************************************/
#ifndef _NEWFONT_
int GetStrWidth( char *str )
{
int width = 0;
2020-06-23 15:27:59 +08:00
// <20><>??????????
2020-06-22 17:49:02 +08:00
while(!( *str == '\0' ) ){
if(IsDBCSLeadByte(*str)){
str += 2;
2020-06-23 15:27:59 +08:00
width += FONT_SIZE; // ȫ<>ε<EFBFBD>size
2020-06-22 17:49:02 +08:00
}else{
str ++;
2020-06-23 15:27:59 +08:00
width += FONT_SIZE>>1; // <20><><EFBFBD>ε<EFBFBD>size
2020-06-22 17:49:02 +08:00
}
}
return width;
}
#else
extern int getTextLength(char * str);
int GetStrWidth( char *str )
{
return getTextLength(str);
}
#endif
/*******************************************************************************/
2020-06-23 15:27:59 +08:00
/* <20>V??????<3F><><EFBFBD>x
2020-06-22 17:49:02 +08:00
/*******************************************************************************/
void GetKeyInputFocus( STR_BUFFER *pStrBuffer )
{
pNowStrBuffer = pStrBuffer;
}
2020-06-23 15:27:59 +08:00
// ?????????<3F>V????????? ********************************************/
2020-06-22 17:49:02 +08:00
void GetClipboad( void )
{
HGLOBAL hMem;
LPTSTR lpMem;
/* ???????????? */
OpenClipboard( hWnd );
2020-06-23 15:27:59 +08:00
/* ?????????<3F><>????????????<3F><><EFBFBD>x */
2020-06-22 17:49:02 +08:00
hMem = GetClipboardData( CF_TEXT );
2020-06-23 15:27:59 +08:00
/* ??????????<3F><> */
2020-06-22 17:49:02 +08:00
if( hMem == NULL ){
CloseClipboard();
return;
}
/* ????????????? */
lpMem = (LPTSTR)GlobalLock( hMem );
2020-06-23 15:27:59 +08:00
/* ???????????????<3F><>??<3F>@<40>e */
2020-06-22 17:49:02 +08:00
// SetWindowText( hwStrE, lpMem );
// lstrcpy( chat_input_buf, lpMem );
StrToNowStrBuffer( lpMem );
GlobalUnlock( hMem );
CloseClipboard();
}
void SetClipboad( void )
{
HGLOBAL hMem;
LPTSTR lpMem;
2020-06-23 15:27:59 +08:00
// <20>V?<3F><>???????
2020-06-22 17:49:02 +08:00
if( pNowStrBuffer == NULL ) return;
2020-06-23 15:27:59 +08:00
// <20><>??<3F><>?????
2020-06-22 17:49:02 +08:00
if( pNowStrBuffer->buffer[ 0 ] == NULL ) return;
2020-06-23 15:27:59 +08:00
/* ??????????<3F><> */
2020-06-22 17:49:02 +08:00
hMem = GlobalAlloc( GHND, 512 );
2020-06-23 15:27:59 +08:00
/* ????????????????????<3F><><EFBFBD>x */
2020-06-22 17:49:02 +08:00
lpMem = ( LPTSTR )GlobalLock( hMem );
// lstrcpy( lpMem, chat_input_buf );
2020-06-23 15:27:59 +08:00
/* ??????????<3F><>??????? */
2020-06-22 17:49:02 +08:00
lstrcpy( lpMem, pNowStrBuffer->buffer );
/* ??????????????? */
GlobalUnlock( hMem );
/* ???????????? */
OpenClipboard( hWnd );
/* ??????????? */
EmptyClipboard();
2020-06-23 15:27:59 +08:00
/* ??????????????????<3F><>?????? */
2020-06-22 17:49:02 +08:00
SetClipboardData( CF_TEXT, hMem );
/* ???????????? */
CloseClipboard();
2020-06-23 15:27:59 +08:00
/* ??????????<3F><> */
2020-06-22 17:49:02 +08:00
//GlobalFree( hMem );
}