update file encoding
This commit is contained in:
parent
274b7d169c
commit
a733f596c0
BIN
石器时代8.5客户端最新源代码/.vs/石器源码/v15/.suo
Normal file
BIN
石器时代8.5客户端最新源代码/.vs/石器源码/v15/.suo
Normal file
Binary file not shown.
BIN
石器时代8.5客户端最新源代码/.vs/石器源码/v15/Browse.VC.db
Normal file
BIN
石器时代8.5客户端最新源代码/.vs/石器源码/v15/Browse.VC.db
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -10,187 +10,304 @@
|
||||
#ifdef _CHARTITLE_STR_
|
||||
extern unsigned int sockfd;
|
||||
typedef struct{
|
||||
BOOL 窗口显示;
|
||||
BOOL 确定窗口显示;
|
||||
int 当前页数;
|
||||
int 确定图档索引;
|
||||
char 介绍[100][32];
|
||||
int 称号索引[100];
|
||||
TITLE_STR title;//当前称号
|
||||
TITLE_STR titledata[100];//称号数据
|
||||
BOOL 关闭窗口;
|
||||
}称号数据结构;
|
||||
BOOL windowDisplay;//窗口显示;
|
||||
BOOL confirmWindowDisplay;//确定窗口显示;
|
||||
int crtPage;//当前页数;
|
||||
int confirmImageIdx;//确定图档索引;
|
||||
char intro[100][32]; //介绍
|
||||
int aliasIdx[100];//称号索引
|
||||
TITLE_STR title;//当前称号
|
||||
TITLE_STR titledata[100];//称号数据
|
||||
BOOL closeWindow;//关闭窗口;
|
||||
}AliasStruct//称号数据结构;
|
||||
extern int play_se(int tone, int x, int y);
|
||||
称号数据结构 称号;
|
||||
AliasStruct alias; //称号;
|
||||
|
||||
void 打开称号窗口初始化()
|
||||
//打开称号窗口初始化
|
||||
void openAliasWindowInit()
|
||||
{
|
||||
if(称号.窗口显示){
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
/*
|
||||
if(称号.窗口显示){
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
}else{
|
||||
称号.当前页数=0;
|
||||
称号.窗口显示=TRUE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.当前页数=0;
|
||||
称号.窗口显示=TRUE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
}*/
|
||||
if (alias.windowDisplay) {
|
||||
alias.windowDisplay = FALSE;
|
||||
alias.confirmWindowDisplay = FALSE;
|
||||
}
|
||||
else {
|
||||
alias.crtPage = 0;
|
||||
alias.windowDisplay = TRUE;
|
||||
alias.confirmWindowDisplay = FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
extern void PutTitleText(int x,int y,char fontPrio,TITLE_STR str,BOOL hitFlag);
|
||||
|
||||
BOOL 获取称号取消窗口()
|
||||
|
||||
//BOOL 获取称号取消窗口()
|
||||
BOOL cancelAlais()
|
||||
{
|
||||
return 称号.关闭窗口;
|
||||
//return 称号.关闭窗口;
|
||||
return alias.closeWindow;
|
||||
}
|
||||
//void 设置称号取消窗口()
|
||||
void configAlaisCancelWindow()
|
||||
{
|
||||
/*
|
||||
if(称号.关闭窗口) 称号.关闭窗口=FALSE;
|
||||
else 称号.关闭窗口=TRUE;
|
||||
*/
|
||||
if (alias.closeWindow) alias.closeWindow = FALSE;
|
||||
else alias.closeWindow = TRUE;
|
||||
}
|
||||
|
||||
void 设置称号取消窗口()
|
||||
//BOOL 获取当前称号是否存在()
|
||||
BOOL checkCrtAlaisExist()
|
||||
{
|
||||
if(称号.关闭窗口) 称号.关闭窗口=FALSE;
|
||||
else 称号.关闭窗口=TRUE;
|
||||
//return 称号.title.flg;
|
||||
return alias.title.flg;
|
||||
}
|
||||
|
||||
BOOL 获取当前称号是否存在()
|
||||
{
|
||||
return 称号.title.flg;
|
||||
}
|
||||
|
||||
void 称号展示()
|
||||
{
|
||||
if(称号.title.flg){
|
||||
PutTitleText(78-称号.title.len/2,49,FONT_PRIO_FRONT,称号.title,0);
|
||||
//void 称号展示()
|
||||
void alaisDisplay()
|
||||
{
|
||||
/*
|
||||
if(称号.title.flg){
|
||||
PutTitleText(78-称号.title.len/2,49,FONT_PRIO_FRONT,称号.title,0);
|
||||
}
|
||||
int bnt;
|
||||
bnt = StockFontBuffer(18,49,1,FONT_PAL_GREEN," ",2);
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
if(HitFontNo == bnt){
|
||||
if(称号.关闭窗口) 称号.关闭窗口=FALSE;
|
||||
else 称号.关闭窗口=TRUE;
|
||||
if(称号.关闭窗口) 称号.关闭窗口=FALSE;
|
||||
else 称号.关闭窗口=TRUE;
|
||||
play_se(203, 320, 240);
|
||||
}
|
||||
}*/
|
||||
if (alias.title.flg) {
|
||||
PutTitleText(78 - alias.title.len / 2, 49, FONT_PRIO_FRONT, alias.title, 0);
|
||||
}
|
||||
int bnt;
|
||||
bnt = StockFontBuffer(18, 49, 1, FONT_PAL_GREEN, " ", 2);
|
||||
if (mouse.onceState & MOUSE_LEFT_CRICK > 0) {
|
||||
if (HitFontNo == bnt) {
|
||||
if (alias.closeWindow) alias.closeWindow = FALSE;
|
||||
else alias.closeWindow = TRUE;
|
||||
play_se(203, 320, 240);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
BOOL 人物称号处理(ACTION * pct)
|
||||
//BOOL 人物称号处理(ACTION * pct)
|
||||
BOOL characterAlaisHandle(ACTION * pct)
|
||||
{
|
||||
/*
|
||||
int x,y;
|
||||
x = pct->x;
|
||||
y = pct->y + 133;
|
||||
int 按钮左=-1;
|
||||
int 按钮右=-1;
|
||||
int 按钮关闭=-1;
|
||||
int 按钮ID;
|
||||
按钮左 = StockDispBuffer( x -55, y + 7, DISP_PRIO_IME3, 55250, 2 );
|
||||
按钮右 = StockDispBuffer( x -20, y + 7, DISP_PRIO_IME3, 55251, 2 );
|
||||
按钮关闭 = StockDispBuffer( x+40, y + 7, DISP_PRIO_IME3, 55252, 2 );
|
||||
int 按钮左=-1;
|
||||
int 按钮右=-1;
|
||||
int 按钮关闭=-1;
|
||||
int 按钮ID;
|
||||
按钮左 = StockDispBuffer( x -55, y + 7, DISP_PRIO_IME3, 55250, 2 );
|
||||
按钮右 = StockDispBuffer( x -20, y + 7, DISP_PRIO_IME3, 55251, 2 );
|
||||
按钮关闭 = StockDispBuffer( x+40, y + 7, DISP_PRIO_IME3, 55252, 2 );
|
||||
if( mouse.onceState & MOUSE_LEFT_CRICK ){
|
||||
if(!称号.确定窗口显示){
|
||||
if(按钮左 == HitDispNo){
|
||||
if(称号.当前页数){
|
||||
称号.当前页数--;
|
||||
if(!称号.确定窗口显示){
|
||||
if(按钮左 == HitDispNo){
|
||||
if(称号.当前页数){
|
||||
称号.当前页数--;
|
||||
}
|
||||
}
|
||||
if(按钮右 == HitDispNo){
|
||||
if(称号.当前页数!=19 && 称号.titledata[(称号.当前页数+1)*5].flg)
|
||||
if(按钮右 == HitDispNo){
|
||||
if(称号.当前页数!=19 && 称号.titledata[(称号.当前页数+1)*5].flg)
|
||||
{
|
||||
称号.当前页数++;
|
||||
称号.当前页数++;
|
||||
}
|
||||
}
|
||||
if(按钮关闭 == HitDispNo){
|
||||
if(按钮关闭 == HitDispNo){
|
||||
DeathAction(pct);
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int i=0;
|
||||
int 称号图档索引;
|
||||
int 称号图档索引;
|
||||
for(;i<5;i++){
|
||||
称号图档索引 = 称号.当前页数*5+i;
|
||||
if(称号.titledata[称号图档索引].flg)
|
||||
称号图档索引 = 称号.当前页数*5+i;
|
||||
if(称号.titledata[称号图档索引].flg)
|
||||
{
|
||||
PutTitleText(380-称号.titledata[称号图档索引].len/2,43+i*0x20,FONT_PRIO_FRONT,称号.titledata[称号图档索引],0);
|
||||
char 称号序号[128];
|
||||
sprintf_s(称号序号,"%03d",称号图档索引+1);
|
||||
StockFontBufferExt(0x130,0x2D+i*0x20,1,FONT_PAL_GREEN,称号序号,0,19);
|
||||
if(!称号.确定窗口显示){
|
||||
PutTitleText(380-称号.titledata[称号图档索引].len/2,43+i*0x20,FONT_PRIO_FRONT,称号.titledata[称号图档索引],0);
|
||||
char 称号序号[128];
|
||||
sprintf_s(称号序号,"%03d",称号图档索引+1);
|
||||
StockFontBufferExt(0x130,0x2D+i*0x20,1,FONT_PAL_GREEN,称号序号,0,19);
|
||||
if(!称号.确定窗口显示){
|
||||
if(MakeHitBox(0x124,0x26+i*0x20,0x1B8,0x44+i*0x20,0x6D)==1){
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号图档索引],0);
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号图档索引],0);
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
称号.确定图档索引=称号.称号索引[ 称号图档索引];
|
||||
称号.确定窗口显示=TRUE;
|
||||
称号.确定图档索引=称号.称号索引[ 称号图档索引];
|
||||
称号.确定窗口显示=TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
}else break;
|
||||
}
|
||||
if(称号.确定窗口显示){
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号.确定图档索引],0);
|
||||
StockFontBuffer(0x130,0x118,2,0,"确定使用该称号吗?",0);
|
||||
StockDispBuffer(0x16D,0x130,0x6C,55253,1);//确定窗口底图
|
||||
按钮ID = StockDispBuffer(0x194,0x148,109,55252,2);//关闭
|
||||
if(称号.确定窗口显示){
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号.确定图档索引],0);
|
||||
StockFontBuffer(0x130,0x118,2,0,"确定使用该称号吗?",0);
|
||||
StockDispBuffer(0x16D,0x130,0x6C,55253,1);//确定窗口底图
|
||||
按钮ID = StockDispBuffer(0x194,0x148,109,55252,2);//关闭
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
if(按钮ID == HitDispNo){
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
if(按钮ID == HitDispNo){
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
}
|
||||
}
|
||||
按钮ID = StockDispBuffer(0x148,0x148,109,55254,2);//确定
|
||||
按钮ID = StockDispBuffer(0x148,0x148,109,55254,2);//确定
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
if(按钮ID == HitDispNo){
|
||||
if(按钮ID == HitDispNo){
|
||||
int checksum=0;
|
||||
char buf[1024*4];
|
||||
memset(buf,0,1024*4);
|
||||
checksum += util_mkint(buf, 称号.确定图档索引);
|
||||
checksum += util_mkint(buf, 称号.确定图档索引);
|
||||
util_mkint(buf, checksum);
|
||||
util_SendMesg(sockfd, LSSPROTO_CHARTITLE_SEND, buf);
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
}
|
||||
}
|
||||
}
|
||||
return FALSE;
|
||||
*/
|
||||
|
||||
int x,y;
|
||||
x = pct->x;
|
||||
y = pct->y + 133;
|
||||
int buttonLeft=-1;
|
||||
int buttonRight=-1;
|
||||
int buttonClose=-1;
|
||||
int buttonID;
|
||||
buttonLeft = StockDispBuffer( x -55, y + 7, DISP_PRIO_IME3, 55250, 2 );
|
||||
buttonRight = StockDispBuffer( x -20, y + 7, DISP_PRIO_IME3, 55251, 2 );
|
||||
buttonClose = StockDispBuffer( x+40, y + 7, DISP_PRIO_IME3, 55252, 2 );
|
||||
if( mouse.onceState & MOUSE_LEFT_CRICK ){
|
||||
if(!alias.confirmWindowDisplay){
|
||||
if(buttonLeft == HitDispNo){
|
||||
if(alias.crtPage){
|
||||
alias.crtPage--;
|
||||
}
|
||||
}
|
||||
if(buttonRight == HitDispNo){
|
||||
if(alias.crtPage!=19 && alias.titledata[(alias.crtPage+1)*5].flg)
|
||||
{
|
||||
alias.crtPage++;
|
||||
}
|
||||
}
|
||||
if(buttonClose == HitDispNo){
|
||||
DeathAction(pct);
|
||||
alias.windowDisplay=FALSE;
|
||||
alias.confirmWindowDisplay=FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int i=0;
|
||||
int aliasImageIdx;
|
||||
for(;i<5;i++){
|
||||
aliasImageIdx = alias.crtPage*5+i;
|
||||
if(alias.titledata[aliasImageIdx].flg)
|
||||
{
|
||||
PutTitleText(380- alias.titledata[aliasImageIdx].len/2,43+i*0x20,FONT_PRIO_FRONT, alias.titledata[aliasImageIdx],0);
|
||||
char aliasSerial[128];
|
||||
sprintf_s(aliasSerial,"%03d", aliasImageIdx +1);
|
||||
StockFontBufferExt(0x130,0x2D+i*0x20,1,FONT_PAL_GREEN, aliasSerial,0,19);
|
||||
if(!alias.confirmWindowDisplay){
|
||||
if(MakeHitBox(0x124,0x26+i*0x20,0x1B8,0x44+i*0x20,0x6D)==1){
|
||||
StockFontBuffer(0x123,0xD1,2,0, alias.intro[aliasImageIdx],0);
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
alias.confirmImageIdx=alias.aliasIdx[aliasImageIdx];
|
||||
alias.confirmWindowDisplay=TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
}else break;
|
||||
}
|
||||
if(alias.confirmWindowDisplay){
|
||||
StockFontBuffer(0x123,0xD1,2,0, alias.intro[alias.confirmImageIdx],0);
|
||||
StockFontBuffer(0x130,0x118,2,0,"确定使用该称号吗?",0);
|
||||
StockDispBuffer(0x16D,0x130,0x6C,55253,1);//确定窗口底图
|
||||
buttonID = StockDispBuffer(0x194,0x148,109,55252,2);//关闭
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
if(buttonID == HitDispNo){
|
||||
alias.confirmWindowDisplay=FALSE;
|
||||
alias.confirmImageIdx=0;
|
||||
}
|
||||
}
|
||||
buttonID = StockDispBuffer(0x148,0x148,109,55254,2);//确定
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
if(buttonID == HitDispNo){
|
||||
int checksum=0;
|
||||
char buf[1024*4];
|
||||
memset(buf,0,1024*4);
|
||||
checksum += util_mkint(buf, alias.confirmImageIdx);
|
||||
util_mkint(buf, checksum);
|
||||
util_SendMesg(sockfd, LSSPROTO_CHARTITLE_SEND, buf);
|
||||
alias.confirmWindowDisplay=FALSE;
|
||||
alias.confirmImageIdx=0;
|
||||
}
|
||||
}
|
||||
}
|
||||
return FALSE;
|
||||
|
||||
}
|
||||
extern void getCharTitleSplit( char *str,TITLE_STR* title);
|
||||
void 人物称号数据更新(char *数据)
|
||||
void 人物称号数据更新(char *数据)
|
||||
{
|
||||
char 基础内容[126],图档内容[1024],图档索引[1024],内容介绍[4000],临时[126];
|
||||
memset(基础内容,0,126);
|
||||
memset(图档内容,0,1024);
|
||||
memset(图档索引,0,1024);
|
||||
memset(内容介绍,0,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",1,基础内容,126);
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",1,临时,126);
|
||||
int titleindex = atoi(临时);
|
||||
char 基础内容[126],图档内容[1024],图档索引[1024],内容介绍[4000],临时[126];
|
||||
memset(基础内容,0,126);
|
||||
memset(图档内容,0,1024);
|
||||
memset(图档索引,0,1024);
|
||||
memset(内容介绍,0,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",1,基础内容,126);
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",1,临时,126);
|
||||
int titleindex = atoi(临时);
|
||||
extern char* FreeGetTitleStr(int id);
|
||||
if(titleindex>0) getCharTitleSplit(FreeGetTitleStr(titleindex),&称号.title);
|
||||
else memset(&称号.title,0,sizeof(TITLE_STR));
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",2,临时,126);
|
||||
int 数量 = atoi(临时);
|
||||
if(数量!=0){
|
||||
memset(&称号.titledata,0,sizeof(称号.titledata[0])*100);
|
||||
memset(&称号.称号索引,0,sizeof(int)*100);
|
||||
memset(&称号.介绍,0,32*100);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",2,图档内容,1024);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",3,内容介绍,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",4,图档索引,1024);
|
||||
if(titleindex>0) getCharTitleSplit(FreeGetTitleStr(titleindex),&称号.title);
|
||||
else memset(&称号.title,0,sizeof(TITLE_STR));
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",2,临时,126);
|
||||
int 数量 = atoi(临时);
|
||||
if(数量!=0){
|
||||
memset(&称号.titledata,0,sizeof(称号.titledata[0])*100);
|
||||
memset(&称号.称号索引,0,sizeof(int)*100);
|
||||
memset(&称号.介绍,0,32*100);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",2,图档内容,1024);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",3,内容介绍,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",4,图档索引,1024);
|
||||
int i=0;
|
||||
extern char* FreeGetTitleStr(int id);
|
||||
for(i;i<数量;i++){
|
||||
getStringFromIndexWithDelim_body((char *)图档内容,(char *)"|",i+1,临时,126);
|
||||
titleindex = atoi(临时);
|
||||
getCharTitleSplit(FreeGetTitleStr(titleindex),&称号.titledata[i]);
|
||||
getStringFromIndexWithDelim_body((char *)图档索引,(char *)"|",i+1,临时,126);
|
||||
称号.称号索引[i]=atoi(临时);
|
||||
getStringFromIndexWithDelim_body((char *)内容介绍,(char *)"|",i+1,临时,126);
|
||||
sprintf_s(称号.介绍[i],32,"%s",临时);
|
||||
for(i;i<数量;i++){
|
||||
getStringFromIndexWithDelim_body((char *)图档内容,(char *)"|",i+1,临时,126);
|
||||
titleindex = atoi(临时);
|
||||
getCharTitleSplit(FreeGetTitleStr(titleindex),&称号.titledata[i]);
|
||||
getStringFromIndexWithDelim_body((char *)图档索引,(char *)"|",i+1,临时,126);
|
||||
称号.称号索引[i]=atoi(临时);
|
||||
getStringFromIndexWithDelim_body((char *)内容介绍,(char *)"|",i+1,临时,126);
|
||||
sprintf_s(称号.介绍[i],32,"%s",临时);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void 初始化称号结构()
|
||||
void 初始化称号结构()
|
||||
{
|
||||
memset(&称号,0,sizeof(称号数据结构));
|
||||
memset(&称号,0,sizeof(称号数据结构));
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -199,204 +316,204 @@ void
|
||||
#ifdef _CHARTITLE_
|
||||
extern unsigned int sockfd;
|
||||
typedef struct{
|
||||
int 称号窗口结构;
|
||||
ACTION *称号结构[5];
|
||||
ACTION * 当前称号结构;
|
||||
int 当前称号图档;
|
||||
BOOL 窗口显示;
|
||||
int 图档[100];
|
||||
int 称号索引[100];
|
||||
char 介绍[100][32];
|
||||
int 当前页数;
|
||||
BOOL 确定窗口显示;
|
||||
int 确定图档索引;
|
||||
}称号数据结构;
|
||||
int 称号窗口结构;
|
||||
ACTION *称号结构[5];
|
||||
ACTION * 当前称号结构;
|
||||
int 当前称号图档;
|
||||
BOOL 窗口显示;
|
||||
int 图档[100];
|
||||
int 称号索引[100];
|
||||
char 介绍[100][32];
|
||||
int 当前页数;
|
||||
BOOL 确定窗口显示;
|
||||
int 确定图档索引;
|
||||
}称号数据结构;
|
||||
|
||||
称号数据结构 称号;
|
||||
称号数据结构 称号;
|
||||
|
||||
void 结束称号展示动画()
|
||||
void 结束称号展示动画()
|
||||
{
|
||||
int i=0;
|
||||
for(i;i<5;i++){
|
||||
if(称号.称号结构[i]){
|
||||
if(称号.称号结构[i]) DeathAction(称号.称号结构[i]);
|
||||
称号.称号结构[i]=0;
|
||||
if(称号.称号结构[i]){
|
||||
if(称号.称号结构[i]) DeathAction(称号.称号结构[i]);
|
||||
称号.称号结构[i]=0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void 打开称号窗口初始化()
|
||||
void 打开称号窗口初始化()
|
||||
{
|
||||
if(称号.窗口显示){
|
||||
结束称号展示动画();
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
if(称号.窗口显示){
|
||||
结束称号展示动画();
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
}else{
|
||||
称号.当前页数=0;
|
||||
称号.窗口显示=TRUE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.当前页数=0;
|
||||
称号.窗口显示=TRUE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void 称号展示()
|
||||
void 称号展示()
|
||||
{
|
||||
|
||||
if(称号.当前称号图档)
|
||||
if(!称号.当前称号结构){
|
||||
if(称号.当前称号图档 < 100000){
|
||||
称号.当前称号结构 = 0;
|
||||
StockDispBuffer(0x7F,0x40,109,称号.当前称号图档,0);
|
||||
if(称号.当前称号图档)
|
||||
if(!称号.当前称号结构){
|
||||
if(称号.当前称号图档 < 100000){
|
||||
称号.当前称号结构 = 0;
|
||||
StockDispBuffer(0x7F,0x40,109,称号.当前称号图档,0);
|
||||
}else{
|
||||
称号.当前称号结构 = MakeAnimDisp(0x7F,0x59,称号.当前称号图档,0);
|
||||
称号.当前称号结构 = MakeAnimDisp(0x7F,0x59,称号.当前称号图档,0);
|
||||
}
|
||||
}else if(*(int *)(称号.当前称号结构+0x140)!= 称号.当前称号图档){
|
||||
DeathAction(称号.当前称号结构);
|
||||
if(称号.当前称号图档 < 100000){
|
||||
称号.当前称号结构 = 0;
|
||||
StockDispBuffer(0x7F,0x40,109,称号.当前称号图档,0);
|
||||
}else if(*(int *)(称号.当前称号结构+0x140)!= 称号.当前称号图档){
|
||||
DeathAction(称号.当前称号结构);
|
||||
if(称号.当前称号图档 < 100000){
|
||||
称号.当前称号结构 = 0;
|
||||
StockDispBuffer(0x7F,0x40,109,称号.当前称号图档,0);
|
||||
}else{
|
||||
称号.当前称号结构 = MakeAnimDisp(0x7F,0x59,称号.当前称号图档,0);
|
||||
称号.当前称号结构 = MakeAnimDisp(0x7F,0x59,称号.当前称号图档,0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
BOOL 人物称号处理(ACTION * pct)
|
||||
BOOL 人物称号处理(ACTION * pct)
|
||||
{
|
||||
int x,y;
|
||||
x = pct->x;
|
||||
y = pct->y + 133;
|
||||
int 按钮左=-1;
|
||||
int 按钮右=-1;
|
||||
int 按钮关闭=-1;
|
||||
int 按钮ID;
|
||||
按钮左 = StockDispBuffer( x -55, y + 7, DISP_PRIO_IME3, 55250, 2 );
|
||||
按钮右 = StockDispBuffer( x -20, y + 7, DISP_PRIO_IME3, 55251, 2 );
|
||||
按钮关闭 = StockDispBuffer( x+40, y + 7, DISP_PRIO_IME3, 55252, 2 );
|
||||
int 按钮左=-1;
|
||||
int 按钮右=-1;
|
||||
int 按钮关闭=-1;
|
||||
int 按钮ID;
|
||||
按钮左 = StockDispBuffer( x -55, y + 7, DISP_PRIO_IME3, 55250, 2 );
|
||||
按钮右 = StockDispBuffer( x -20, y + 7, DISP_PRIO_IME3, 55251, 2 );
|
||||
按钮关闭 = StockDispBuffer( x+40, y + 7, DISP_PRIO_IME3, 55252, 2 );
|
||||
if( mouse.onceState & MOUSE_LEFT_CRICK ){
|
||||
if(!称号.确定窗口显示){
|
||||
if(按钮左 == HitDispNo){
|
||||
if(称号.当前页数){
|
||||
称号.当前页数--;
|
||||
结束称号展示动画();
|
||||
if(!称号.确定窗口显示){
|
||||
if(按钮左 == HitDispNo){
|
||||
if(称号.当前页数){
|
||||
称号.当前页数--;
|
||||
结束称号展示动画();
|
||||
}
|
||||
}
|
||||
if(按钮右 == HitDispNo){
|
||||
if(称号.当前页数!=19 && 称号.图档[(称号.当前页数+1)*5]){
|
||||
称号.当前页数++;
|
||||
结束称号展示动画();
|
||||
if(按钮右 == HitDispNo){
|
||||
if(称号.当前页数!=19 && 称号.图档[(称号.当前页数+1)*5]){
|
||||
称号.当前页数++;
|
||||
结束称号展示动画();
|
||||
}
|
||||
}
|
||||
if(按钮关闭 == HitDispNo){
|
||||
if(按钮关闭 == HitDispNo){
|
||||
DeathAction(pct);
|
||||
结束称号展示动画();
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
结束称号展示动画();
|
||||
称号.窗口显示=FALSE;
|
||||
称号.确定窗口显示=FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int i=0;
|
||||
int 称号图档索引;
|
||||
int 称号图档索引;
|
||||
for(;i<5;i++){
|
||||
称号图档索引 = 称号.当前页数*5+i;
|
||||
if(称号.图档[称号图档索引]){
|
||||
if(!称号.称号结构[i]){
|
||||
if(称号.图档[称号图档索引] < 100000){
|
||||
称号.称号结构[i] = 0;
|
||||
StockDispBuffer(0x16D+20,0x35+i*0x20,109,称号.图档[称号图档索引],0);
|
||||
称号图档索引 = 称号.当前页数*5+i;
|
||||
if(称号.图档[称号图档索引]){
|
||||
if(!称号.称号结构[i]){
|
||||
if(称号.图档[称号图档索引] < 100000){
|
||||
称号.称号结构[i] = 0;
|
||||
StockDispBuffer(0x16D+20,0x35+i*0x20,109,称号.图档[称号图档索引],0);
|
||||
}else{
|
||||
称号.称号结构[i] = MakeAnimDisp(0x16D+20,0x35+i*0x20,称号.图档[称号图档索引],0);
|
||||
称号.称号结构[i] = MakeAnimDisp(0x16D+20,0x35+i*0x20,称号.图档[称号图档索引],0);
|
||||
}
|
||||
}else if(称号.当前称号结构==0) StockDispBuffer(0x16D,0x35+i*0x20,109,称号.图档[称号图档索引],0);
|
||||
char 称号序号[128];
|
||||
sprintf_s(称号序号,"%03d",称号图档索引+1);
|
||||
}else if(称号.当前称号结构==0) StockDispBuffer(0x16D,0x35+i*0x20,109,称号.图档[称号图档索引],0);
|
||||
char 称号序号[128];
|
||||
sprintf_s(称号序号,"%03d",称号图档索引+1);
|
||||
|
||||
StockFontBufferExt(0x130,0x2D+i*0x20,1,FONT_PAL_GREEN,称号序号,0,16);
|
||||
if(!称号.确定窗口显示){
|
||||
StockFontBufferExt(0x130,0x2D+i*0x20,1,FONT_PAL_GREEN,称号序号,0,16);
|
||||
if(!称号.确定窗口显示){
|
||||
if(MakeHitBox(0x124,0x26+i*0x20,0x1B8,0x44+i*0x20,0x6D)==1){
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号图档索引],0);
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号图档索引],0);
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
称号.确定图档索引=称号.称号索引[ 称号图档索引];
|
||||
称号.确定窗口显示=TRUE;
|
||||
称号.确定图档索引=称号.称号索引[ 称号图档索引];
|
||||
称号.确定窗口显示=TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
}else break;
|
||||
}
|
||||
if(称号.确定窗口显示){
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号.确定图档索引],0);
|
||||
StockFontBuffer(0x130,0x118,2,0,"确定使用该称号吗?",0);
|
||||
StockDispBuffer(0x16D,0x130,0x6C,55253,1);//确定窗口底图
|
||||
按钮ID = StockDispBuffer(0x194,0x148,109,55252,2);//关闭
|
||||
if(称号.确定窗口显示){
|
||||
StockFontBuffer(0x123,0xD1,2,0,称号.介绍[称号.确定图档索引],0);
|
||||
StockFontBuffer(0x130,0x118,2,0,"确定使用该称号吗?",0);
|
||||
StockDispBuffer(0x16D,0x130,0x6C,55253,1);//确定窗口底图
|
||||
按钮ID = StockDispBuffer(0x194,0x148,109,55252,2);//关闭
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
if(按钮ID == HitDispNo){
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
if(按钮ID == HitDispNo){
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
}
|
||||
}
|
||||
按钮ID = StockDispBuffer(0x148,0x148,109,55254,2);//确定
|
||||
按钮ID = StockDispBuffer(0x148,0x148,109,55254,2);//确定
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK>0){
|
||||
if(按钮ID == HitDispNo){
|
||||
if(按钮ID == HitDispNo){
|
||||
int checksum=0;
|
||||
char buf[1024*4];
|
||||
memset(buf,0,1024*4);
|
||||
checksum += util_mkint(buf, 称号.确定图档索引);
|
||||
checksum += util_mkint(buf, 称号.确定图档索引);
|
||||
util_mkint(buf, checksum);
|
||||
util_SendMesg(sockfd, LSSPROTO_CHARTITLE_SEND, buf);
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
称号.确定窗口显示=FALSE;
|
||||
称号.确定图档索引=0;
|
||||
}
|
||||
}
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
void 窗口结束处理(ACTION* ID)//结束显示动画
|
||||
void 窗口结束处理(ACTION* ID)//结束显示动画
|
||||
{
|
||||
称号.窗口显示=FALSE;
|
||||
结束称号展示动画();
|
||||
if(称号.当前称号结构) DeathAction(称号.当前称号结构);
|
||||
称号.当前称号结构=0;
|
||||
称号.窗口显示=FALSE;
|
||||
结束称号展示动画();
|
||||
if(称号.当前称号结构) DeathAction(称号.当前称号结构);
|
||||
称号.当前称号结构=0;
|
||||
DeathAction(ID);
|
||||
}
|
||||
|
||||
void 人物称号数据更新(char *数据)
|
||||
void 人物称号数据更新(char *数据)
|
||||
{
|
||||
char 基础内容[126],图档内容[1024],图档索引[1024],内容介绍[4000],临时[126];
|
||||
memset(基础内容,0,126);
|
||||
memset(图档内容,0,1024);
|
||||
memset(图档索引,0,1024);
|
||||
memset(内容介绍,0,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",1,基础内容,126);
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",1,临时,126);
|
||||
int 值 = atoi(临时);
|
||||
if(值) 称号.当前称号图档=值;
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",2,临时,126);
|
||||
int 数量 = atoi(临时);
|
||||
if(数量!=0){
|
||||
memset(&称号.图档,0,sizeof(int)*100);
|
||||
memset(&称号.称号索引,0,sizeof(int)*100);
|
||||
memset(&称号.介绍,0,32*100);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",2,图档内容,1024);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",3,内容介绍,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",4,图档索引,1024);
|
||||
char 基础内容[126],图档内容[1024],图档索引[1024],内容介绍[4000],临时[126];
|
||||
memset(基础内容,0,126);
|
||||
memset(图档内容,0,1024);
|
||||
memset(图档索引,0,1024);
|
||||
memset(内容介绍,0,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",1,基础内容,126);
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",1,临时,126);
|
||||
int 值 = atoi(临时);
|
||||
if(值) 称号.当前称号图档=值;
|
||||
getStringFromIndexWithDelim_body((char *) 基础内容,(char *)"|",2,临时,126);
|
||||
int 数量 = atoi(临时);
|
||||
if(数量!=0){
|
||||
memset(&称号.图档,0,sizeof(int)*100);
|
||||
memset(&称号.称号索引,0,sizeof(int)*100);
|
||||
memset(&称号.介绍,0,32*100);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",2,图档内容,1024);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",3,内容介绍,4000);
|
||||
getStringFromIndexWithDelim_body((char *) 数据,(char *)"#@",4,图档索引,1024);
|
||||
int i=0;
|
||||
for(i;i<数量;i++){
|
||||
getStringFromIndexWithDelim_body((char *)图档内容,(char *)"|",i+1,临时,126);
|
||||
称号.图档[i]=atoi(临时);
|
||||
getStringFromIndexWithDelim_body((char *)图档索引,(char *)"|",i+1,临时,126);
|
||||
称号.称号索引[i]=atoi(临时);
|
||||
getStringFromIndexWithDelim_body((char *)内容介绍,(char *)"|",i+1,临时,126);
|
||||
sprintf_s(称号.介绍[i],32,"%s",临时);
|
||||
for(i;i<数量;i++){
|
||||
getStringFromIndexWithDelim_body((char *)图档内容,(char *)"|",i+1,临时,126);
|
||||
称号.图档[i]=atoi(临时);
|
||||
getStringFromIndexWithDelim_body((char *)图档索引,(char *)"|",i+1,临时,126);
|
||||
称号.称号索引[i]=atoi(临时);
|
||||
getStringFromIndexWithDelim_body((char *)内容介绍,(char *)"|",i+1,临时,126);
|
||||
sprintf_s(称号.介绍[i],32,"%s",临时);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void 初始化称号结构()
|
||||
void 初始化称号结构()
|
||||
{
|
||||
memset(&称号,0,sizeof(称号数据结构));
|
||||
memset(&称号,0,sizeof(称号数据结构));
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/vc141.idb
Normal file
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/vc141.idb
Normal file
Binary file not shown.
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/vc141.pdb
Normal file
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/vc141.pdb
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/石器源码.tlog/CL.command.1.tlog
Normal file
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/石器源码.tlog/CL.command.1.tlog
Normal file
Binary file not shown.
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/石器源码.tlog/CL.read.1.tlog
Normal file
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/石器源码.tlog/CL.read.1.tlog
Normal file
Binary file not shown.
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/石器源码.tlog/CL.write.1.tlog
Normal file
BIN
石器时代8.5客户端最新源代码/石器源码/VER25_DEBUG/石器源码.tlog/CL.write.1.tlog
Normal file
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.17763.0
|
||||
VER25_DEBUG|Win32|C:\Users\OWNER\Documents\GitHub\stoneage\石器时代8.5客户端最新源代码\|
|
@ -9,26 +9,26 @@
|
||||
#include "../other/caryIme.h"
|
||||
#include "../systeminc/field.h"
|
||||
#include "../systeminc/netmain.h"
|
||||
char 二级窗口内容[1024];
|
||||
char 二级窗口内容[1024];
|
||||
#ifdef _ICONBUTTONS_
|
||||
extern unsigned int sockfd;
|
||||
extern int nowGx, nowGy;
|
||||
extern int indexWN;
|
||||
extern int idWN;
|
||||
ACTION* 转盘动作地址=0;
|
||||
ACTION* 转盘动作地址=0;
|
||||
|
||||
typedef struct {
|
||||
int 形像;
|
||||
char 名[64];
|
||||
char 数据[512];
|
||||
}转盘道具结构;
|
||||
int 形像;
|
||||
char 名[64];
|
||||
char 数据[512];
|
||||
}转盘道具结构;
|
||||
|
||||
typedef struct {
|
||||
int x;
|
||||
int y;
|
||||
}转盘坐标结构;
|
||||
}转盘坐标结构;
|
||||
|
||||
int 转盘道具位置[10][2]={
|
||||
int 转盘道具位置[10][2]={
|
||||
{0x0,-0x74},
|
||||
{0x53,-0x5B},
|
||||
{0x86,-0x13},
|
||||
@ -41,159 +41,159 @@ int ת
|
||||
{-0x52,-0x58},
|
||||
};
|
||||
|
||||
转盘坐标结构 转盘坐标[10];
|
||||
转盘坐标结构 转盘坐标[10];
|
||||
|
||||
typedef struct {
|
||||
int x;
|
||||
int y;
|
||||
int 选中索引;
|
||||
BOOL 二级窗口;
|
||||
int 转动;//(0未转动 1转动中 2转动完了)
|
||||
int 指针位置;
|
||||
int 指针次数;
|
||||
int 指针圈数;
|
||||
转盘道具结构 道具[10];
|
||||
}转盘窗口结构;
|
||||
int 选中索引;
|
||||
BOOL 二级窗口;
|
||||
int 转动;//(0未转动 1转动中 2转动完了)
|
||||
int 指针位置;
|
||||
int 指针次数;
|
||||
int 指针圈数;
|
||||
转盘道具结构 道具[10];
|
||||
}转盘窗口结构;
|
||||
|
||||
转盘窗口结构 转盘窗口;
|
||||
转盘窗口结构 转盘窗口;
|
||||
|
||||
void 转盘窗口初始化(char * 内容)
|
||||
void 转盘窗口初始化(char * 内容)
|
||||
{
|
||||
转盘坐标[0].x=0;
|
||||
转盘坐标[0].y=-0x30;
|
||||
转盘坐标[1].x=0x2C;
|
||||
转盘坐标[1].y=-0x21;
|
||||
转盘坐标[2].x=0x49;
|
||||
转盘坐标[2].y=0x7;
|
||||
转盘坐标[3].x=0x48;
|
||||
转盘坐标[3].y=0x2F;
|
||||
转盘坐标[4].x=0x2D;
|
||||
转盘坐标[4].y=0x57;
|
||||
转盘坐标[5].x=0x4;
|
||||
转盘坐标[5].y=0x66;
|
||||
转盘坐标[6].x=-0x27;
|
||||
转盘坐标[6].y=0x5A;
|
||||
转盘坐标[7].x=-0x48;
|
||||
转盘坐标[7].y=0x32;
|
||||
转盘坐标[8].x=-0x47;
|
||||
转盘坐标[8].y=0x8;
|
||||
转盘坐标[9].x=-0x2A;
|
||||
转盘坐标[9].y=-0x20;
|
||||
memset(&转盘窗口,0,sizeof(转盘窗口结构));
|
||||
memset(二级窗口内容,0,1024);
|
||||
if(转盘动作地址) DeathAction(转盘动作地址);
|
||||
转盘动作地址=0;
|
||||
char *临时=new char [513];
|
||||
char *临时1=new char [513];
|
||||
转盘坐标[0].x=0;
|
||||
转盘坐标[0].y=-0x30;
|
||||
转盘坐标[1].x=0x2C;
|
||||
转盘坐标[1].y=-0x21;
|
||||
转盘坐标[2].x=0x49;
|
||||
转盘坐标[2].y=0x7;
|
||||
转盘坐标[3].x=0x48;
|
||||
转盘坐标[3].y=0x2F;
|
||||
转盘坐标[4].x=0x2D;
|
||||
转盘坐标[4].y=0x57;
|
||||
转盘坐标[5].x=0x4;
|
||||
转盘坐标[5].y=0x66;
|
||||
转盘坐标[6].x=-0x27;
|
||||
转盘坐标[6].y=0x5A;
|
||||
转盘坐标[7].x=-0x48;
|
||||
转盘坐标[7].y=0x32;
|
||||
转盘坐标[8].x=-0x47;
|
||||
转盘坐标[8].y=0x8;
|
||||
转盘坐标[9].x=-0x2A;
|
||||
转盘坐标[9].y=-0x20;
|
||||
memset(&转盘窗口,0,sizeof(转盘窗口结构));
|
||||
memset(二级窗口内容,0,1024);
|
||||
if(转盘动作地址) DeathAction(转盘动作地址);
|
||||
转盘动作地址=0;
|
||||
char *临时=new char [513];
|
||||
char *临时1=new char [513];
|
||||
int i;
|
||||
for(i=0;i<10;i++){
|
||||
memset(临时,0,512);
|
||||
memset(临时1,0,20);
|
||||
getStringFromIndexWithDelim_body((char *) 内容,(char *)"#@",i+1,临时,512);
|
||||
getStringFromIndexWithDelim_body((char *) 临时,(char *)"|",1,临时1,512);
|
||||
转盘窗口.道具[i].形像 = atoi(临时1);
|
||||
getStringFromIndexWithDelim_body((char *) 临时,(char *)"|",2,转盘窗口.道具[i].名,64);
|
||||
getStringFromIndexWithDelim_body((char *) 临时,(char *)"|",3,转盘窗口.道具[i].数据,512);
|
||||
memset(临时,0,512);
|
||||
memset(临时1,0,20);
|
||||
getStringFromIndexWithDelim_body((char *) 内容,(char *)"#@",i+1,临时,512);
|
||||
getStringFromIndexWithDelim_body((char *) 临时,(char *)"|",1,临时1,512);
|
||||
转盘窗口.道具[i].形像 = atoi(临时1);
|
||||
getStringFromIndexWithDelim_body((char *) 临时,(char *)"|",2,转盘窗口.道具[i].名,64);
|
||||
getStringFromIndexWithDelim_body((char *) 临时,(char *)"|",3,转盘窗口.道具[i].数据,512);
|
||||
}
|
||||
delete 临时;
|
||||
delete 临时1;
|
||||
int 窗口宽=424;
|
||||
int 窗口高=424;
|
||||
转盘窗口.x=(800-窗口宽)/2+窗口宽/2;
|
||||
转盘窗口.y=(600-窗口高)/2-40+窗口高/2;
|
||||
delete 临时;
|
||||
delete 临时1;
|
||||
int 窗口宽=424;
|
||||
int 窗口高=424;
|
||||
转盘窗口.x=(800-窗口宽)/2+窗口宽/2;
|
||||
转盘窗口.y=(600-窗口高)/2-40+窗口高/2;
|
||||
}
|
||||
|
||||
ACTION* 创建转盘窗口()
|
||||
ACTION* 创建转盘窗口()
|
||||
{
|
||||
if(转盘动作地址) DeathAction(转盘动作地址);
|
||||
转盘动作地址=0;
|
||||
转盘动作地址 = MakeWindowDisp(转盘窗口.x,转盘窗口.y,0,0,40166,0,FALSE);
|
||||
if(转盘动作地址) DeathAction(转盘动作地址);
|
||||
转盘动作地址=0;
|
||||
转盘动作地址 = MakeWindowDisp(转盘窗口.x,转盘窗口.y,0,0,40166,0,FALSE);
|
||||
play_se(202,320,240);
|
||||
return 转盘动作地址;
|
||||
return 转盘动作地址;
|
||||
}
|
||||
|
||||
void 转动后没给道具()
|
||||
void 转动后没给道具()
|
||||
{
|
||||
if(转盘窗口.转动==1){
|
||||
转盘窗口.转动=2;
|
||||
if(转盘窗口.转动==1){
|
||||
转盘窗口.转动=2;
|
||||
lssproto_WN_send(sockfd,nowGx,nowGy,indexWN,idWN,0,"2");
|
||||
}
|
||||
}
|
||||
extern short wnCloseFlag;
|
||||
extern int windowTypeWN;
|
||||
void 清除转盘动作()
|
||||
void 清除转盘动作()
|
||||
{
|
||||
if(转盘动作地址) DeathAction(转盘动作地址);
|
||||
转动后没给道具();
|
||||
转盘动作地址=0;
|
||||
if(转盘动作地址) DeathAction(转盘动作地址);
|
||||
转动后没给道具();
|
||||
转盘动作地址=0;
|
||||
wnCloseFlag=0;
|
||||
windowTypeWN = -1;
|
||||
wnCloseFlag = 1;
|
||||
}
|
||||
extern int cloasewindows;
|
||||
|
||||
ACTION* 转盘数据显示()
|
||||
ACTION* 转盘数据显示()
|
||||
{
|
||||
//底图
|
||||
StockDispBuffer(转盘窗口.x,转盘窗口.y+28,104,40166,1);
|
||||
//底图
|
||||
StockDispBuffer(转盘窗口.x,转盘窗口.y+28,104,40166,1);
|
||||
|
||||
//关闭
|
||||
if(MakeHitBox(转盘窗口.x+0x61,转盘窗口.y-0x99,转盘窗口.x+0x80,转盘窗口.y-0x7D,1)==1){
|
||||
StockDispBuffer(转盘窗口.x+0x71-2,转盘窗口.y-0x8B,105,40165,1);
|
||||
if( (mouse.onceState & MOUSE_LEFT_CRICK) && !转盘窗口.二级窗口){
|
||||
//关闭
|
||||
if(MakeHitBox(转盘窗口.x+0x61,转盘窗口.y-0x99,转盘窗口.x+0x80,转盘窗口.y-0x7D,1)==1){
|
||||
StockDispBuffer(转盘窗口.x+0x71-2,转盘窗口.y-0x8B,105,40165,1);
|
||||
if( (mouse.onceState & MOUSE_LEFT_CRICK) && !转盘窗口.二级窗口){
|
||||
windowTypeWN = -1;
|
||||
wnCloseFlag = 1;
|
||||
}
|
||||
}
|
||||
//开始按钮
|
||||
if(转盘窗口.转动)
|
||||
StockDispBuffer(转盘窗口.x,转盘窗口.y+0x1B+1,105,40164,1);
|
||||
//开始按钮
|
||||
if(转盘窗口.转动)
|
||||
StockDispBuffer(转盘窗口.x,转盘窗口.y+0x1B+1,105,40164,1);
|
||||
else{
|
||||
if(MakeHitBox(转盘窗口.x-0x30,转盘窗口.y-0x14,转盘窗口.x+0x30,转盘窗口.y+0x4A,1)==1){
|
||||
StockDispBuffer(转盘窗口.x,转盘窗口.y+0x1B+1,105,40164,1);
|
||||
if( (mouse.onceState & MOUSE_LEFT_CRICK) && !转盘窗口.二级窗口){
|
||||
if(MakeHitBox(转盘窗口.x-0x30,转盘窗口.y-0x14,转盘窗口.x+0x30,转盘窗口.y+0x4A,1)==1){
|
||||
StockDispBuffer(转盘窗口.x,转盘窗口.y+0x1B+1,105,40164,1);
|
||||
if( (mouse.onceState & MOUSE_LEFT_CRICK) && !转盘窗口.二级窗口){
|
||||
lssproto_WN_send(sockfd,nowGx,nowGy,indexWN,idWN,0,"1");
|
||||
}
|
||||
}
|
||||
}
|
||||
if(转盘窗口.转动==1){
|
||||
if(转盘窗口.指针次数>2){
|
||||
转盘窗口.指针次数 = 0;
|
||||
if(转盘窗口.指针位置==9) {
|
||||
转盘窗口.指针圈数++;
|
||||
转盘窗口.指针位置=0;
|
||||
if(转盘窗口.转动==1){
|
||||
if(转盘窗口.指针次数>2){
|
||||
转盘窗口.指针次数 = 0;
|
||||
if(转盘窗口.指针位置==9) {
|
||||
转盘窗口.指针圈数++;
|
||||
转盘窗口.指针位置=0;
|
||||
}
|
||||
else 转盘窗口.指针位置++;
|
||||
}else 转盘窗口.指针次数++;
|
||||
if(转盘窗口.指针圈数 == 8 && 转盘窗口.指针位置==(转盘窗口.选中索引-1)) {
|
||||
转盘窗口.转动=2;
|
||||
转盘窗口.二级窗口=TRUE;
|
||||
else 转盘窗口.指针位置++;
|
||||
}else 转盘窗口.指针次数++;
|
||||
if(转盘窗口.指针圈数 == 8 && 转盘窗口.指针位置==(转盘窗口.选中索引-1)) {
|
||||
转盘窗口.转动=2;
|
||||
转盘窗口.二级窗口=TRUE;
|
||||
lssproto_WN_send(sockfd,nowGx,nowGy,indexWN,idWN,0,"2");
|
||||
}
|
||||
}
|
||||
StockDispBuffer(转盘窗口.x+转盘坐标[转盘窗口.指针位置].x,转盘窗口.y+转盘坐标[转盘窗口.指针位置].y,106,40153+转盘窗口.指针位置,1);
|
||||
//道具显示
|
||||
StockDispBuffer(转盘窗口.x+转盘坐标[转盘窗口.指针位置].x,转盘窗口.y+转盘坐标[转盘窗口.指针位置].y,106,40153+转盘窗口.指针位置,1);
|
||||
//道具显示
|
||||
int i;
|
||||
for(i=0;i<10;i++){
|
||||
StockDispBuffer(转盘窗口.x+转盘道具位置[i][0],转盘窗口.y+转盘道具位置[i][1],106,转盘窗口.道具[i].形像,1);
|
||||
if(!转盘窗口.二级窗口)
|
||||
if(MakeHitBox(转盘窗口.x+转盘道具位置[i][0]-30,转盘窗口.y+转盘道具位置[i][1]-30,转盘窗口.x+转盘道具位置[i][0]+30,转盘窗口.y+转盘道具位置[i][1]+30,1)==1){
|
||||
//extern void 显示道具数据(short x,short y,UCHAR 层次,char* 内容,int 形像 ,char*名字);
|
||||
显示道具数据(转盘窗口.x+转盘道具位置[i][0],转盘窗口.y+转盘道具位置[i][1],107,转盘窗口.道具[i].数据,0,转盘窗口.道具[i].名);
|
||||
StockDispBuffer(转盘窗口.x+转盘道具位置[i][0],转盘窗口.y+转盘道具位置[i][1],106,转盘窗口.道具[i].形像,1);
|
||||
if(!转盘窗口.二级窗口)
|
||||
if(MakeHitBox(转盘窗口.x+转盘道具位置[i][0]-30,转盘窗口.y+转盘道具位置[i][1]-30,转盘窗口.x+转盘道具位置[i][0]+30,转盘窗口.y+转盘道具位置[i][1]+30,1)==1){
|
||||
//extern void 显示道具数据(short x,short y,UCHAR 层次,char* 内容,int 形像 ,char*名字);
|
||||
显示道具数据(转盘窗口.x+转盘道具位置[i][0],转盘窗口.y+转盘道具位置[i][1],107,转盘窗口.道具[i].数据,0,转盘窗口.道具[i].名);
|
||||
}
|
||||
}
|
||||
//窗口提示
|
||||
if(转盘窗口.二级窗口){
|
||||
StockDispBuffer(转盘窗口.x-0xC1,转盘窗口.y-0x32,107,40088,1);
|
||||
//窗口提示
|
||||
if(转盘窗口.二级窗口){
|
||||
StockDispBuffer(转盘窗口.x-0xC1,转盘窗口.y-0x32,107,40088,1);
|
||||
extern int getTextLength(char * str);
|
||||
StockFontBuffer(转盘窗口.x-getTextLength(二级窗口内容)/2,转盘窗口.y+5,2,0,二级窗口内容,1);
|
||||
int 按钮ID = StockDispBuffer(转盘窗口.x,转盘窗口.y+50,109,26042,2);
|
||||
StockFontBuffer(转盘窗口.x-getTextLength(二级窗口内容)/2,转盘窗口.y+5,2,0,二级窗口内容,1);
|
||||
int 按钮ID = StockDispBuffer(转盘窗口.x,转盘窗口.y+50,109,26042,2);
|
||||
if( mouse.onceState & MOUSE_LEFT_CRICK ){
|
||||
if( HitDispNo == 按钮ID ){
|
||||
转盘窗口.二级窗口=0;
|
||||
if( HitDispNo == 按钮ID ){
|
||||
转盘窗口.二级窗口=0;
|
||||
windowTypeWN = -1;
|
||||
wnCloseFlag = 1;
|
||||
memset(二级窗口内容,0,1024);
|
||||
memset(二级窗口内容,0,1024);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -203,14 +203,14 @@ ACTION* ת
|
||||
|| menuBtn == 1
|
||||
|| disconnectServerFlag == TRUE
|
||||
|| wnCloseFlag == 1
|
||||
|| cloasewindows == 1) 清除转盘动作();
|
||||
return 转盘动作地址;
|
||||
|| cloasewindows == 1) 清除转盘动作();
|
||||
return 转盘动作地址;
|
||||
}
|
||||
|
||||
void 置转盘数据(int 选中索引)
|
||||
void 置转盘数据(int 选中索引)
|
||||
{
|
||||
转盘窗口.转动=1;
|
||||
转盘窗口.选中索引=选中索引;
|
||||
转盘窗口.转动=1;
|
||||
转盘窗口.选中索引=选中索引;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -10,7 +10,7 @@
|
||||
// ??????????
|
||||
#define BATTLE_MAP_SIZE 400
|
||||
|
||||
#ifdef _NEWDRAWBATTLEMAP // (不可开放) Syu ADD 自动产生BattleMap
|
||||
#ifdef _NEWDRAWBATTLEMAP // (不可开放) Syu ADD 自动产生BattleMap
|
||||
#define RAND(x,y) ((x-1)+1+ (int)( (double)(y-(x-1))*rand()/(RAND_MAX+1.0)) )
|
||||
int RandBattleBg = 0;
|
||||
#endif
|
||||
@ -18,9 +18,9 @@ int RandBattleBg = 0;
|
||||
#ifdef __ATTACK_MAGIC
|
||||
|
||||
// Global vars
|
||||
extern int g_iRunEarthQuake; // 地震的状况: 0 --> 没地震 , 1 --> 初始化地震 , 2 --> 地震中
|
||||
extern int g_iCurRunEarthQuake; // 目前地震的位置线
|
||||
extern int g_iNumRunEarthQuake; // 地震的总次数
|
||||
extern int g_iRunEarthQuake; // 地震的状况: 0 --> 没地震 , 1 --> 初始化地震 , 2 --> 地震中
|
||||
extern int g_iCurRunEarthQuake; // 目前地震的位置线
|
||||
extern int g_iNumRunEarthQuake; // 地震的总次数
|
||||
|
||||
#endif
|
||||
|
||||
@ -28,27 +28,27 @@ extern int g_iNumRunEarthQuake; //
|
||||
extern BOOL g_bUseAlpha;
|
||||
#endif
|
||||
int MessageBoxNew(HWND hWnd,LPCSTR lpText,LPCSTR lpCaption,UINT uType);
|
||||
// ?????????<EFBFBD>?
|
||||
// ??????????
|
||||
int BattleMapNo = 0;
|
||||
|
||||
#ifdef _NEWDRAWBATTLEMAP_FIX // (不可开)ROG ADD 战斗地图修改
|
||||
int BattleMapAdvance = 0; // 战斗地图效能改进
|
||||
#ifdef _NEWDRAWBATTLEMAP_FIX // (不可开)ROG ADD 战斗地图修改
|
||||
int BattleMapAdvance = 0; // 战斗地图效能改进
|
||||
#endif
|
||||
// ?????? ????䦶
|
||||
// ?????? ????
|
||||
char *BattleMapFile[] = {
|
||||
#include "../systeminc/battleMapName.h"
|
||||
};
|
||||
|
||||
// ??????<EFBFBD>????????????????<3F> ***************************/
|
||||
// 水晶地表战斗地图编号
|
||||
// ?????????????????????? ***************************/
|
||||
// 水晶地表战斗地图编号
|
||||
static int iCrystalBattleMap[4][3] =
|
||||
{ // 绿 // 蓝 // 红 // 黄
|
||||
{ // 绿 // 蓝 // 红 // 黄
|
||||
{29060,29061,29062},{29058,29059,29066},{29063,29064,29065},{29057,29067,29068}
|
||||
};
|
||||
|
||||
BOOL ReadBattleMap( int no )
|
||||
{
|
||||
#ifdef _NEWDRAWBATTLEMAP_FIX // (不可开)ROG ADD 战斗地图修改
|
||||
#ifdef _NEWDRAWBATTLEMAP_FIX // (不可开)ROG ADD 战斗地图修改
|
||||
extern void ddrawBattleMap();
|
||||
ddrawBattleMap();
|
||||
#else
|
||||
@ -62,36 +62,36 @@ BOOL ReadBattleMap( int no )
|
||||
// ????????
|
||||
if( no >= BATTLE_MAP_FILES )
|
||||
no = 0;
|
||||
// ??????<EFBFBD>???
|
||||
// ?????????
|
||||
BattleMapNo = no;
|
||||
// ??????????????
|
||||
if( ( fp = fopen( BattleMapFile[ no ], "rb" ) ) == NULL ){
|
||||
sprintf_s( msg, "%s读取失败。", BattleMapFile[ no ] );
|
||||
MessageBoxNew( hWnd, msg, "战场地图错误", MB_OK | MB_ICONSTOP );
|
||||
sprintf_s( msg, "%s读取失败。", BattleMapFile[ no ] );
|
||||
MessageBoxNew( hWnd, msg, "战场地图错误", MB_OK | MB_ICONSTOP );
|
||||
return FALSE;
|
||||
}
|
||||
// ?????<EFBFBD>???
|
||||
// ????????
|
||||
fread( header, sizeof( char ), 4, fp );
|
||||
header[ 4 ] = '\0';
|
||||
// ????????
|
||||
if( !( strstr( header, "SAB" )) )
|
||||
MessageBoxNew( hWnd, "SAB 档案不存在", "战场地图错误", MB_OK | MB_ICONSTOP );
|
||||
// <EFBFBD>??????
|
||||
MessageBoxNew( hWnd, "SAB 档案不存在", "战场地图错误", MB_OK | MB_ICONSTOP );
|
||||
// ??????
|
||||
for( i = 0 ; i < 1089 ; i++ ){
|
||||
// ??????<EFBFBD>???? ????<3F>????? ?
|
||||
// ?????????? ????????? ?
|
||||
c1 = fgetc( fp );
|
||||
c2 = fgetc( fp );
|
||||
// ???????
|
||||
tile[ i ] = ( c1 << 8 ) | c2;
|
||||
}
|
||||
// ????<EFBFBD>??
|
||||
// ??????
|
||||
fclose( fp );
|
||||
//ROG FIX 战斗地图绘图位址调整
|
||||
//ROG FIX 战斗地图绘图位址调整
|
||||
//posX = 32 * ( -9 ) + (400 >> 1);
|
||||
//posY = 24 * 10 + (300 >> 1);
|
||||
posX = -416;
|
||||
posY=272;
|
||||
#ifdef _NEWDRAWBATTLEMAP // Syu ADD 自动产生BattleMap
|
||||
#ifdef _NEWDRAWBATTLEMAP // Syu ADD 自动产生BattleMap
|
||||
extern int nowFloor ;
|
||||
|
||||
if(((nowFloor == 817) || (nowFloor == 8007) || (nowFloor == 8101) || (nowFloor == 8100) ||
|
||||
@ -111,7 +111,7 @@ BOOL ReadBattleMap( int no )
|
||||
else if ( RandBattleBg == 4 ) RandBattleBg = 29025 ;
|
||||
|
||||
RandBattleBg = RAND ( 29047 , 29049 );
|
||||
// 水晶地表战斗地图
|
||||
// 水晶地表战斗地图
|
||||
if(nowFloor == 30022) RandBattleBg = iCrystalBattleMap[0][RAND(0,2)];
|
||||
else if(nowFloor == 30023) RandBattleBg = iCrystalBattleMap[1][RAND(0,2)];
|
||||
else if(nowFloor == 30024) RandBattleBg = iCrystalBattleMap[2][RAND(0,2)];
|
||||
@ -166,13 +166,13 @@ BOOL ReadBattleMap( int no )
|
||||
// ddrawBattleMap();
|
||||
|
||||
#else
|
||||
// ???<EFBFBD>???
|
||||
// ??????
|
||||
|
||||
for( i = 0 ; i < 20 ; i++ ){
|
||||
x = 0;
|
||||
y = 0;
|
||||
for( j = 0 ; j < 20 ; j++ ){
|
||||
// ???<EFBFBD><EFBFBD>????????
|
||||
// ???????????
|
||||
StockDispBuffer( posX + x, posY + y, DISP_PRIO_TILE, tile[ cnt++ ], 0 );
|
||||
x += 32;
|
||||
y -= 24;
|
||||
@ -185,9 +185,9 @@ BOOL ReadBattleMap( int no )
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// ??????<EFBFBD>? ***********************************************************/
|
||||
#ifdef _NEWDRAWBATTLEMAP_FIX // (不可开)ROG ADD 战斗地图修改
|
||||
#define RASTER_CLEARANCE 24 //增加效能
|
||||
// ??????? ***********************************************************/
|
||||
#ifdef _NEWDRAWBATTLEMAP_FIX // (不可开)ROG ADD 战斗地图修改
|
||||
#define RASTER_CLEARANCE 24 //增加效能
|
||||
#else
|
||||
#define RASTER_CLEARANCE 8
|
||||
#endif
|
||||
@ -212,9 +212,9 @@ void DrawBattleMap( void )
|
||||
short bx , by;
|
||||
#ifdef __ATTACK_MAGIC
|
||||
|
||||
// 特殊地图编号或地震中
|
||||
// 特殊地图编号或地震中
|
||||
|
||||
#ifdef _NEWDRAWBATTLEMAP // Syu ADD 自动产生BattleMap
|
||||
#ifdef _NEWDRAWBATTLEMAP // Syu ADD 自动产生BattleMap
|
||||
extern int nowFloor;
|
||||
if( ( BattleMapNo >= 148 && BattleMapNo <= 150 ) || 2 == g_iRunEarthQuake ||
|
||||
nowFloor == 817 || nowFloor == 8007 || nowFloor == 8101 || nowFloor == 8100 ||
|
||||
@ -235,7 +235,7 @@ void DrawBattleMap( void )
|
||||
by = 0;
|
||||
short x0, y0;
|
||||
long w, h;
|
||||
// <EFBFBD>???????
|
||||
// ???????
|
||||
x0 = bx;
|
||||
y0 = by;
|
||||
w = rect.right - rect.left;
|
||||
@ -284,8 +284,8 @@ void DrawBattleMap( void )
|
||||
|
||||
#endif
|
||||
|
||||
rect.left = 0; //?<EFBFBD>
|
||||
rect.right = 640 + DISPLACEMENT_X; //?<EFBFBD>
|
||||
rect.left = 0; //?
|
||||
rect.right = 640 + DISPLACEMENT_X; //?
|
||||
/* if(BattleMapAdvance < 10){
|
||||
BattleMapAdvance ++;
|
||||
return;
|
||||
@ -294,8 +294,8 @@ void DrawBattleMap( void )
|
||||
BattleMapAdvance =0;*/
|
||||
|
||||
for(d7=0; d7 < 480 + DISPLACEMENT_Y; d7+=RASTER_CLEARANCE){
|
||||
rect.top = d7 + piyo_tbl[(d6+value) & 63] + 12; //<EFBFBD><EFBFBD>
|
||||
rect.bottom = rect.top + RASTER_CLEARANCE; //?<EFBFBD>
|
||||
rect.top = d7 + piyo_tbl[(d6+value) & 63] + 12; //
|
||||
rect.bottom = rect.top + RASTER_CLEARANCE; //?
|
||||
|
||||
|
||||
#ifdef D3D_ENGINE
|
||||
@ -317,17 +317,17 @@ void DrawBattleMap( void )
|
||||
d6 = 0;
|
||||
for(d7=0; d7<480 + DISPLACEMENT_Y; d7+=RASTER_CLEARANCE/2){
|
||||
|
||||
rect.top = d7; //<EFBFBD><EFBFBD>
|
||||
rect.bottom = rect.top + RASTER_CLEARANCE; //?<EFBFBD>
|
||||
rect.top = d7; //
|
||||
rect.bottom = rect.top + RASTER_CLEARANCE; //?
|
||||
|
||||
d0 = piyo_tbl[(d6+piyo_point) & 63] / 2; //?<EFBFBD>
|
||||
d0 = piyo_tbl[(d6+piyo_point) & 63] / 2; //?
|
||||
if(d0 < 0){ //??????
|
||||
rect.left = 0 - d0;
|
||||
rect.right = 640 + DISPLACEMENT_X+ d0; //?<EFBFBD>
|
||||
rect.right = 640 + DISPLACEMENT_X+ d0; //?
|
||||
d0 = 0;
|
||||
} else {
|
||||
rect.left = 0;
|
||||
rect.right = 640 + DISPLACEMENT_X- d0; //?<EFBFBD>
|
||||
rect.right = 640 + DISPLACEMENT_X- d0; //?
|
||||
}
|
||||
#ifdef D3D_ENGINE
|
||||
destrect.left = d0;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -32,10 +32,10 @@ extern BOOL OnlineGmFlag;
|
||||
// ?????????
|
||||
CHAT_BUFFER ChatBuffer[ MAX_CHAT_LINE ];
|
||||
|
||||
// <EFBFBD><EFBFBD>?<3F>????????
|
||||
// ?????????
|
||||
STR_BUFFER MyChatBuffer;
|
||||
|
||||
// ???<EFBFBD>????????????????
|
||||
// ???????????????????
|
||||
STR_BUFFER *pNowStrBuffer = NULL;
|
||||
|
||||
// ??????????
|
||||
@ -45,15 +45,15 @@ int NowMaxChatLine = DEF_CHAT_LINE;
|
||||
#ifdef _SA_LIAOTIAN_
|
||||
int NowChatLine_Bak = 0;
|
||||
#endif
|
||||
// ??<EFBFBD>?<3F>??
|
||||
// ?????
|
||||
int NowMaxVoice = DEF_VOICE;
|
||||
// ????<EFBFBD>䴓????
|
||||
// ????????
|
||||
int CursorFlashCnt = 0;
|
||||
// ??????????<EFBFBD>
|
||||
// ??????????
|
||||
int ChatLineSmoothY = 0 ;
|
||||
|
||||
#define CAHT_HISTORY_STR_FILE_NAME "data\\chathis.dat" // ??????????????
|
||||
// ???????????<EFBFBD><EFBFBD>
|
||||
// ???????????
|
||||
CHAT_HISTORY ChatHistory;
|
||||
|
||||
#define MAX_SHIELD_SIZE 5000
|
||||
@ -70,7 +70,7 @@ char chatLogFileName[256];
|
||||
void openChatLogFile( void );
|
||||
|
||||
/*
|
||||
#ifdef _TELLCHANNEL // (不可开) ROG ADD 密语频道
|
||||
#ifdef _TELLCHANNEL // (不可开) ROG ADD 密语频道
|
||||
char ReTellName[] = "";
|
||||
#endif
|
||||
*/
|
||||
@ -152,7 +152,7 @@ void InitChat( void )
|
||||
if(!pc.etcFlag &PC_ETCFLAG_PARTY){
|
||||
pc.etcFlag |= PC_ETCFLAG_PARTY;
|
||||
}
|
||||
//修复组队
|
||||
//修复组队
|
||||
pc.etcFlag |= PC_ETCFLAG_PARTY;
|
||||
if (bNewServer) lssproto_FS_send(sockfd,pc.etcFlag);
|
||||
else old_lssproto_FS_send(sockfd,pc.etcFlag);
|
||||
@ -187,18 +187,18 @@ BOOL SaveChatHistoryStr( int no )
|
||||
|
||||
if( ( fp = fopen( CAHT_HISTORY_STR_FILE_NAME, "r+b" ) ) == NULL )
|
||||
return FALSE;
|
||||
// ??????<EFBFBD>????????????<3F>???
|
||||
// ?????????????????????
|
||||
fseek( fp, sizeof( ChatHistory.str[ 0 ] ) * no, SEEK_SET );
|
||||
// <EFBFBD>?????????
|
||||
// ?????????
|
||||
if( fwrite( &ChatHistory.str[ no ], sizeof( ChatHistory.str[ 0 ] ), 1, fp ) < 1 ){
|
||||
|
||||
fclose( fp );// ????????
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// ?<EFBFBD>???<3F>??<3F>???????????<3F>???
|
||||
// ????????????????????
|
||||
fseek( fp, sizeof( ChatHistory.str[ 0 ] ) * MAX_CHAT_HISTORY, SEEK_SET );
|
||||
// ?<EFBFBD>???<3F>??<3F><>
|
||||
// ??????
|
||||
if( fwrite( &no, sizeof( int ), 1, fp ) < 1 ){
|
||||
|
||||
fclose( fp );// ????????
|
||||
@ -211,30 +211,30 @@ BOOL SaveChatHistoryStr( int no )
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// ???????<EFBFBD>??<3F>??? ****************************************************************/
|
||||
// ???????????? ****************************************************************/
|
||||
BOOL LoadChatHistoryStr( void )
|
||||
{
|
||||
FILE *fp;
|
||||
|
||||
// ?????????<EFBFBD>?????
|
||||
// ??????????????
|
||||
ChatHistory.nowNo = -1;
|
||||
|
||||
// <EFBFBD>???????????
|
||||
// ???????????
|
||||
if( ( fp = fopen( CAHT_HISTORY_STR_FILE_NAME, "rb" ) ) == NULL ){
|
||||
// ?????<EFBFBD><EFBFBD>??<3F>
|
||||
// ???????
|
||||
if( ( fp = fopen( CAHT_HISTORY_STR_FILE_NAME, "wb" ) ) != NULL ){
|
||||
// ???????
|
||||
fwrite( &ChatHistory, sizeof( CHAT_HISTORY ) - sizeof( int ), 1, fp );
|
||||
fclose( fp ); // ????????
|
||||
}
|
||||
|
||||
// ?<EFBFBD>???????<3F>?????
|
||||
// ?????????????
|
||||
ChatHistory.nowNo = MAX_CHAT_HISTORY - 1;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// ???<EFBFBD>???
|
||||
// ??????
|
||||
if( fread( &ChatHistory, sizeof( CHAT_HISTORY ) - sizeof( int ), 1, fp ) < 1 ){
|
||||
|
||||
fclose( fp ); // ????????
|
||||
@ -246,8 +246,8 @@ BOOL LoadChatHistoryStr( void )
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* <EFBFBD>??????<3F>?<3F>????? ****************************************************/
|
||||
//加载屏蔽字
|
||||
/* ???????????? ****************************************************/
|
||||
//加载屏蔽字
|
||||
void* EncryptFileName( LPCTSTR pszResFile,unsigned int &nSize )
|
||||
{
|
||||
//ENCRYPTCONF myConfFileCncryp;
|
||||
@ -289,15 +289,15 @@ void* EncryptFileName( LPCTSTR pszResFile,unsigned int &nSize )
|
||||
return pBuffer;
|
||||
}
|
||||
|
||||
BOOL MoveFilePointInt( const char * pBuffer ,unsigned int nSize , unsigned int &nRead, BOOL &bRead ,int nResult) // 移动文件指针 [11/27/2007]
|
||||
BOOL MoveFilePointInt( const char * pBuffer ,unsigned int nSize , unsigned int &nRead, BOOL &bRead ,int nResult) // 移动文件指针 [11/27/2007]
|
||||
{
|
||||
unsigned int nReadCount = nRead; // 记录上次指针的位置 [11/28/2007]
|
||||
unsigned int nReadCount = nRead; // 记录上次指针的位置 [11/28/2007]
|
||||
const char* pFind = strstr( pBuffer + nRead,"\n");//find \n
|
||||
if( pFind )
|
||||
{
|
||||
nRead = ( pFind - pBuffer + 1 ); // 得到当前指针的位置 [11/28/2007] //得到相对与文件开始位置的偏移位置// 最先的注释不准确 [杨文鸽 2007-12-14]
|
||||
nRead = ( pFind - pBuffer + 1 ); // 得到当前指针的位置 [11/28/2007] //得到相对与文件开始位置的偏移位置// 最先的注释不准确 [杨文鸽 2007-12-14]
|
||||
}
|
||||
if ((2 == nRead - nReadCount && nResult !=0)|| nResult == 0) // / 判断读到真实数据(2个字节表示“\r\n”) [11/28/2007]
|
||||
if ((2 == nRead - nReadCount && nResult !=0)|| nResult == 0) // / 判断读到真实数据(2个字节表示“\r\n”) [11/28/2007]
|
||||
{
|
||||
bRead = FALSE;
|
||||
}
|
||||
@ -318,7 +318,7 @@ BOOL LoadReadSayShield( void )
|
||||
if( !pBuffer )
|
||||
return FALSE;
|
||||
|
||||
unsigned int nRead = 0; //已经读了的
|
||||
unsigned int nRead = 0; //已经读了的
|
||||
BOOL bRead = FALSE;
|
||||
int i = 0;
|
||||
static char szWord[20] = "";
|
||||
@ -354,7 +354,7 @@ BOOL LoadReadNameShield( void )
|
||||
if( !pBuffer )
|
||||
return FALSE;
|
||||
|
||||
unsigned int nRead = 0; //已经读了的
|
||||
unsigned int nRead = 0; //已经读了的
|
||||
BOOL bRead = FALSE;
|
||||
int i = 0;
|
||||
static char szName_[20] = "";
|
||||
@ -393,7 +393,7 @@ bool CheckSay( const char* strSay, const char szReplace )
|
||||
{
|
||||
if ( const char *szRe = strstr( strSay,SayShieldList[i] ) )
|
||||
{
|
||||
// g_objGameMsg.AddMsg( SayShieldList[i].c_str() ); // 测试时显示出来
|
||||
// g_objGameMsg.AddMsg( SayShieldList[i].c_str() ); // 测试时显示出来
|
||||
//memset( (void*)szRe,szReplace,strlen(SayShieldList[i]) );
|
||||
return false;
|
||||
}
|
||||
@ -410,7 +410,7 @@ bool CheckName( const char* strSay )
|
||||
{
|
||||
if ( const char *szRe = strstr( strSay,NameShieldList[i] ) )
|
||||
{
|
||||
// g_objGameMsg.AddMsg( SayShieldList[i].c_str() ); // 测试时显示出来
|
||||
// g_objGameMsg.AddMsg( SayShieldList[i].c_str() ); // 测试时显示出来
|
||||
// memset( (void*)szRe,szReplace,NameShieldList[i].length() );
|
||||
//word = NameShieldList[i];
|
||||
return false;
|
||||
@ -418,11 +418,11 @@ bool CheckName( const char* strSay )
|
||||
}
|
||||
return true;
|
||||
}
|
||||
extern int 编码;
|
||||
extern int 繁体开关;
|
||||
extern int 编码;
|
||||
extern int 繁体开关;
|
||||
void StrToNowStrBuffer( char *str )
|
||||
{
|
||||
if(编码 == 950 ){
|
||||
if(编码 == 950 ){
|
||||
extern char* BIG5ToGB2312(const char* szBIG5String);
|
||||
char *newstr;
|
||||
newstr=BIG5ToGB2312((const char *)str);
|
||||
@ -455,19 +455,19 @@ void StrToNowStrBuffer( char *str )
|
||||
|
||||
void StrToNowStrBuffer1( char *str )
|
||||
{
|
||||
if(繁体开关){
|
||||
if(繁体开关){
|
||||
int strLen,i;
|
||||
char 繁体[1024]={0};
|
||||
LCMapString (0x804,0x4000000,str, strlen(str),繁体,1024);
|
||||
strLen=strlen(繁体);
|
||||
char 繁体[1024]={0};
|
||||
LCMapString (0x804,0x4000000,str, strlen(str),繁体,1024);
|
||||
strLen=strlen(繁体);
|
||||
if(strLen>86)
|
||||
strLen=86;
|
||||
for(i=0;i<strLen;i++){
|
||||
if(IsDBCSLeadByte(繁体[i])){
|
||||
StockStrBufferDBChar(繁体+i);
|
||||
if(IsDBCSLeadByte(繁体[i])){
|
||||
StockStrBufferDBChar(繁体+i);
|
||||
i++;
|
||||
}else
|
||||
StockStrBufferChar(繁体[i]);
|
||||
StockStrBufferChar(繁体[i]);
|
||||
}
|
||||
}else{
|
||||
int strLen,i;
|
||||
@ -520,7 +520,7 @@ void ChatProc( void )
|
||||
//}
|
||||
// ??????
|
||||
if( joy_trg[ 0 ] & JOY_CTRL_V ){
|
||||
// ?????????<EFBFBD>?????????
|
||||
// ??????????????????
|
||||
GetClipboad();
|
||||
}
|
||||
|
||||
@ -528,7 +528,7 @@ void ChatProc( void )
|
||||
if(OnlineGmFlag == TRUE) TalkMode = 0;
|
||||
#endif
|
||||
|
||||
#ifdef _TELLCHANNEL //ROG ADD 密语频道
|
||||
#ifdef _TELLCHANNEL //ROG ADD 密语频道
|
||||
if( joy_trg[ 1 ] & JOY_CTRL_R
|
||||
#ifdef __ONLINEGM
|
||||
&& OnlineGmFlag == FALSE
|
||||
@ -547,7 +547,7 @@ void ChatProc( void )
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// <EFBFBD>??????????????????
|
||||
// ??????????????????
|
||||
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 );
|
||||
@ -560,7 +560,7 @@ void ChatProc( void )
|
||||
if( joy_trg[ 1 ] & JOY_F8 ) StrToNowStrBuffer1( chatRegistryStr[ 7 ].buffer );
|
||||
}
|
||||
if( pNowStrBuffer == &MyChatBuffer && GetImeString() == NULL ){
|
||||
// <EFBFBD>???????
|
||||
// ???????
|
||||
if( joy_auto[ 0 ] & JOY_UP ){
|
||||
static UINT oldtime = 0;
|
||||
if(oldtime < TimeGetTime()){
|
||||
@ -590,12 +590,12 @@ void ChatProc( void )
|
||||
|
||||
oldtime = TimeGetTime() + 100;
|
||||
|
||||
// ?????????<EFBFBD>?????
|
||||
// ??????????????
|
||||
if( ChatHistory.nowNo != -1 ){
|
||||
// ?????????<EFBFBD>???
|
||||
// ????????????
|
||||
if( ChatHistory.nowNo == ChatHistory.newNo ){
|
||||
ChatHistory.nowNo = -1;
|
||||
// <EFBFBD>?????<3F>?????
|
||||
// ??????????
|
||||
pNowStrBuffer->cnt = 0;
|
||||
pNowStrBuffer->buffer[ 0 ] = NULL;
|
||||
pNowStrBuffer->cursor=0;
|
||||
@ -603,11 +603,11 @@ void ChatProc( void )
|
||||
ChatHistory.nowNo++;
|
||||
// ????????
|
||||
if( ChatHistory.nowNo >= MAX_CHAT_HISTORY ) ChatHistory.nowNo = 0;
|
||||
// <EFBFBD>?????<3F>?????
|
||||
// ??????????
|
||||
pNowStrBuffer->cnt = 0;
|
||||
pNowStrBuffer->buffer[ 0 ] = NULL;
|
||||
pNowStrBuffer->cursor=0;
|
||||
// ?????<EFBFBD>???<3F>????????
|
||||
// ????????????????
|
||||
StrToNowStrBuffer1( ChatHistory.str[ ChatHistory.nowNo ] );
|
||||
}
|
||||
#ifdef _TALK_WINDOW
|
||||
@ -619,7 +619,7 @@ void ChatProc( void )
|
||||
}
|
||||
}
|
||||
|
||||
// ?????????<EFBFBD>䴓?? **************************************************/
|
||||
// ??????????? **************************************************/
|
||||
void FlashKeyboardCursor( void )
|
||||
{
|
||||
if(pNowStrBuffer==NULL) return;
|
||||
@ -674,17 +674,17 @@ void KeyboardTab( void )
|
||||
{
|
||||
int i,flag = 0;
|
||||
|
||||
// <EFBFBD>?<3F>???????
|
||||
// ????????
|
||||
if( pNowStrBuffer == NULL ) return;
|
||||
|
||||
// <EFBFBD>?<3F>????? *******************************
|
||||
// ?????? *******************************
|
||||
for( i = 0 ; i < MAX_CHAT_REGISTY_STR ; i++ ){
|
||||
if( pNowStrBuffer == &chatRegistryStr[ i ] ){
|
||||
flag = TRUE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// <EFBFBD>?<3F>??? *******************************
|
||||
// ???? *******************************
|
||||
if( flag == TRUE ){
|
||||
// ???????????
|
||||
if( joy_con[ 1 ] & JOY_RSHIFT || joy_con[ 1 ] & JOY_LSHIFT ){
|
||||
@ -696,11 +696,11 @@ void KeyboardTab( void )
|
||||
// ????????
|
||||
if( i >= MAX_CHAT_REGISTY_STR ) i = 0;
|
||||
}
|
||||
// <EFBFBD>???????<3F>
|
||||
// ???????
|
||||
GetKeyInputFocus( &chatRegistryStr[ i ] );
|
||||
}
|
||||
|
||||
// ?????????????<EFBFBD>??
|
||||
// ???????????????
|
||||
CursorFlashCnt = 20;
|
||||
#ifdef _CHANNEL_MODIFY
|
||||
static DWORD dwChannelChangeTime = TimeGetTime();
|
||||
@ -712,7 +712,7 @@ void KeyboardTab( void )
|
||||
switch(TalkMode){
|
||||
case PC_ETCFLAG_CHAT_MODE_ID:
|
||||
strcpy(secretName,"");
|
||||
// 已在队伍频道切回一般频道
|
||||
// 已在队伍频道切回一般频道
|
||||
if(pc.etcFlag & PC_ETCFLAG_CHAT_MODE){
|
||||
pc.etcFlag &= ~PC_ETCFLAG_CHAT_MODE;
|
||||
if(bNewServer) lssproto_FS_send(sockfd,pc.etcFlag);
|
||||
@ -720,11 +720,11 @@ void KeyboardTab( void )
|
||||
}
|
||||
break;
|
||||
case PC_ETCFLAG_CHAT_TELL_ID:
|
||||
// 密语频道关闭,跳到下一个频道
|
||||
// 密语频道关闭,跳到下一个频道
|
||||
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_TELL)) TalkMode++;
|
||||
else break;
|
||||
case PC_ETCFLAG_CHAT_PARTY_ID:
|
||||
// 无队伍跳到下一个频道
|
||||
// 无队伍跳到下一个频道
|
||||
if(partyModeFlag == 0) TalkMode++;
|
||||
else{
|
||||
pc.etcFlag |= PC_ETCFLAG_CHAT_MODE;
|
||||
@ -733,25 +733,25 @@ void KeyboardTab( void )
|
||||
break;
|
||||
}
|
||||
case PC_ETCFLAG_CHAT_FM_ID:
|
||||
// 若队频有开,关掉队频
|
||||
// 若队频有开,关掉队频
|
||||
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);
|
||||
}
|
||||
// 家族频道关闭,跳到下一个频道
|
||||
// 家族频道关闭,跳到下一个频道
|
||||
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_FM)) TalkMode++;
|
||||
else break;
|
||||
#ifdef _CHAR_PROFESSION
|
||||
case PC_ETCFLAG_CHAT_OCC_ID:
|
||||
// 职业频道关闭,跳到下一个频道
|
||||
// 职业频道关闭,跳到下一个频道
|
||||
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_OCC))
|
||||
TalkMode++;
|
||||
break;
|
||||
#endif
|
||||
#ifdef _CHATROOMPROTOCOL
|
||||
case PC_ETCFLAG_CHAT_CHAT_ID:
|
||||
// 聊天室频道
|
||||
// 聊天室频道
|
||||
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_CHAT)){
|
||||
secretFlag = FALSE;
|
||||
selChar = -1;
|
||||
@ -761,7 +761,7 @@ void KeyboardTab( void )
|
||||
#endif
|
||||
#ifdef _CHANNEL_WORLD
|
||||
case PC_ETCFLAG_CHAT_WORLD_ID:
|
||||
// 世界频道
|
||||
// 世界频道
|
||||
if(!(pc.etcFlag & PC_ETCFLAG_CHAT_WORLD)){
|
||||
if((pc.etcFlag & PC_ETCFLAG_ALL_SERV)){
|
||||
TalkMode++;
|
||||
@ -773,7 +773,7 @@ void KeyboardTab( void )
|
||||
#endif
|
||||
#ifdef _CHANNEL_ALL_SERV
|
||||
case PC_ETCFLAG_ALL_SERV_ID:
|
||||
// 星球频道
|
||||
// 星球频道
|
||||
if(!(pc.etcFlag & PC_ETCFLAG_ALL_SERV)){
|
||||
TalkMode = 0;
|
||||
}
|
||||
@ -846,7 +846,7 @@ void KeyboardReturn( void )
|
||||
//ttom
|
||||
static bool first_keydown=true;
|
||||
if(!first_keydown) {
|
||||
//cary 十七
|
||||
//cary 十七
|
||||
static DWORD PreTime=TimeGetTime(),CurTime;
|
||||
if(((CurTime=TimeGetTime())-PreTime)<500)
|
||||
return;
|
||||
@ -878,10 +878,10 @@ void KeyboardReturn( void )
|
||||
//end
|
||||
//ttom
|
||||
char bakNo;
|
||||
// ?????????<EFBFBD>????????
|
||||
// ?????????????????
|
||||
if( GetImeString() != NULL )
|
||||
return;
|
||||
// ????<EFBFBD>??? *******************************
|
||||
// ??????? *******************************
|
||||
if( pNowStrBuffer == &MyChatBuffer ){
|
||||
if( pNowStrBuffer->cnt == 0 )
|
||||
return;
|
||||
@ -945,7 +945,7 @@ void KeyboardReturn( void )
|
||||
#endif
|
||||
// ??????
|
||||
bakNo = ChatHistory.newNo;
|
||||
// ??????<EFBFBD>??
|
||||
// ????????
|
||||
ChatHistory.newNo++;
|
||||
// ????????
|
||||
if( ChatHistory.newNo >= MAX_CHAT_HISTORY )
|
||||
@ -978,11 +978,11 @@ void KeyboardReturn( void )
|
||||
ChatHistory.newNo = bakNo;
|
||||
}else{
|
||||
//end
|
||||
// <EFBFBD>????<3F>????
|
||||
// ????????
|
||||
if( strcmp( pNowStrBuffer->buffer, ChatHistory.str[ bakNo ] ) != 0 ){
|
||||
// ???<EFBFBD>??????
|
||||
// ?????????
|
||||
strcpy( ChatHistory.str[ ChatHistory.newNo ], pNowStrBuffer->buffer );
|
||||
// ???????<EFBFBD>??<3F><>
|
||||
// ?????????
|
||||
SaveChatHistoryStr( ChatHistory.newNo );
|
||||
}else{
|
||||
// ??????????
|
||||
@ -997,32 +997,32 @@ void KeyboardReturn( void )
|
||||
*( pNowStrBuffer->buffer )= '\0';
|
||||
}else
|
||||
|
||||
// <EFBFBD>?<3F>??? **********************************
|
||||
// ???? **********************************
|
||||
if( pNowStrBuffer == &shougouChange ){
|
||||
// ??????<EFBFBD>
|
||||
// ??????
|
||||
DeathAction( pActMenuWnd3 );
|
||||
pActMenuWnd3 = NULL;
|
||||
// <EFBFBD>????????
|
||||
// ????????
|
||||
GetKeyInputFocus( &MyChatBuffer );
|
||||
// ?????<EFBFBD>???
|
||||
// ????????
|
||||
play_se( 203, 320, 240 );
|
||||
// 䦶<EFBFBD><EFBFBD>??<3F>
|
||||
// ??
|
||||
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
|
||||
|
||||
// 䦶<EFBFBD><EFBFBD>??? **********************************
|
||||
// ??? **********************************
|
||||
if( pNowStrBuffer == &petNameChange ){
|
||||
// ??????<EFBFBD>
|
||||
// ??????
|
||||
DeathAction( pActMenuWnd3 );
|
||||
pActMenuWnd3 = NULL;
|
||||
// <EFBFBD>????????
|
||||
// ????????
|
||||
GetKeyInputFocus( &MyChatBuffer );
|
||||
// ?????<EFBFBD>???
|
||||
// ????????
|
||||
play_se( 203, 320, 240 );
|
||||
// 䦶<EFBFBD><EFBFBD>??<3F>
|
||||
// ??
|
||||
if( bNewServer)
|
||||
lssproto_KN_send( sockfd, petStatusNo, petNameChange.buffer ) ; /* ../doc/lssproto.html line 1792 */
|
||||
else
|
||||
@ -1038,9 +1038,9 @@ void KeyboardReturn( void )
|
||||
#endif
|
||||
|
||||
char *buffer=pNowStrBuffer->buffer;
|
||||
//尚可放入新行时
|
||||
//尚可放入新行时
|
||||
if(pNowStrBuffer->cnt < pNowStrBuffer->len-pNowStrBuffer->lineLen){
|
||||
//放入一行全部为space的新行
|
||||
//放入一行全部为space的新行
|
||||
if((pNowStrBuffer->cursor)%pNowStrBuffer->lineLen == 0)
|
||||
StockStrBufferChar(' ');
|
||||
while((pNowStrBuffer->cursor)%pNowStrBuffer->lineLen)
|
||||
@ -1052,17 +1052,17 @@ void KeyboardReturn( void )
|
||||
if( pNowStrBuffer == &MailStr ){
|
||||
// ????????????
|
||||
if( MailStr.cnt < MailStr.len - MailStr.lineLen ){
|
||||
// ?<EFBFBD>??
|
||||
// ???
|
||||
if( MailStr.cnt % MailStr.lineLen == 0 )
|
||||
StockStrBufferChar( ' ' );
|
||||
// ??<EFBFBD>???????<3F>??
|
||||
// ???????????
|
||||
while( MailStr.cnt % MailStr.lineLen )
|
||||
StockStrBufferChar( ' ' );
|
||||
}
|
||||
}
|
||||
|
||||
// ????<EFBFBD>??? ****************************
|
||||
#ifdef _FRIENDCHANNEL //聊天室命名
|
||||
// ??????? ****************************
|
||||
#ifdef _FRIENDCHANNEL //聊天室命名
|
||||
char temp[STR_BUFFER_SIZE];
|
||||
if( pNowStrBuffer == &chatRoomName ){
|
||||
GetKeyInputFocus( &MyChatBuffer );
|
||||
@ -1076,7 +1076,7 @@ void KeyboardReturn( void )
|
||||
#endif
|
||||
|
||||
#ifdef _TELLCHANNEL
|
||||
if(TalkMode == 1){ //聊天密语显示人名
|
||||
if(TalkMode == 1){ //聊天密语显示人名
|
||||
pNowStrBuffer->buffer[ 0 ] = NULL;
|
||||
pNowStrBuffer->cursor=0;
|
||||
pNowStrBuffer->cnt = 0;
|
||||
@ -1091,15 +1091,15 @@ void KeyboardReturn( void )
|
||||
idKeyReturn = 1;
|
||||
}
|
||||
|
||||
// ?????????????<EFBFBD>??
|
||||
// ???????????????
|
||||
CursorFlashCnt = 20;
|
||||
|
||||
}
|
||||
extern STR_BUFFER idKey;
|
||||
extern STR_BUFFER passwd;
|
||||
extern STR_BUFFER selCharName;
|
||||
/* 将单一字元储放至目前的输入String buffer
|
||||
parameter: c: 字元 */
|
||||
/* 将单一字元储放至目前的输入String buffer
|
||||
parameter: c: 字元 */
|
||||
void StockStrBufferChar(char c)
|
||||
{
|
||||
if(BYTE(c)>0x1f){
|
||||
@ -1111,7 +1111,7 @@ void StockStrBufferChar(char c)
|
||||
/*if(!(('0'<=c && c<='9') || ('A'<=c && c<='Z') || ('a'<=c && c<='z')))
|
||||
return;*/
|
||||
}else if(pNowStrBuffer==&selCharName){
|
||||
if(' '==c || ' '==c|| ','==c || '|'==c || '\\'==c)
|
||||
if(' '==c || ' '==c|| ','==c || '|'==c || '\\'==c)
|
||||
return;
|
||||
}else if(pNowStrBuffer==&SubBuffer){
|
||||
if('&'==c || '|'==c )
|
||||
@ -1128,8 +1128,8 @@ void StockStrBufferChar(char c)
|
||||
}
|
||||
}
|
||||
|
||||
/* 将双位元字元储放至目前的输入String buffer
|
||||
parameter: lpc: 双位元的字元 */
|
||||
/* 将双位元字元储放至目前的输入String buffer
|
||||
parameter: lpc: 双位元的字元 */
|
||||
void StockStrBufferDBChar(char *lpc)
|
||||
{
|
||||
int cnt,cursor;
|
||||
@ -1164,12 +1164,12 @@ void StockChatBufferLine( char *str_, unsigned char color )
|
||||
#endif
|
||||
{
|
||||
char *str=str_;
|
||||
extern int 编码;
|
||||
extern int 繁体开关;
|
||||
if(繁体开关){
|
||||
char 繁体[1024]={0};
|
||||
LCMapString (0x804,0x4000000,str_, strlen(str_),繁体,1024);
|
||||
str = 繁体;
|
||||
extern int 编码;
|
||||
extern int 繁体开关;
|
||||
if(繁体开关){
|
||||
char 繁体[1024]={0};
|
||||
LCMapString (0x804,0x4000000,str_, strlen(str_),繁体,1024);
|
||||
str = 繁体;
|
||||
}else{
|
||||
str = str_;
|
||||
}
|
||||
@ -1295,7 +1295,7 @@ void ChatBufferToFontBuffer( void )
|
||||
if(g_bTalkWindow) return;
|
||||
#endif
|
||||
int i, j, k = 0;
|
||||
int x = 8, y = 400; // <EFBFBD><EFBFBD>?<3F>
|
||||
int x = 8, y = 400; // ?
|
||||
|
||||
|
||||
|
||||
@ -1304,7 +1304,7 @@ void ChatBufferToFontBuffer( void )
|
||||
if( j < 0 )
|
||||
j = MAX_CHAT_LINE - 1;
|
||||
|
||||
// ??????????<EFBFBD>?<3F><>
|
||||
// ???????????
|
||||
if( ChatLineSmoothY > 0 )
|
||||
k = NowMaxChatLine + 1;
|
||||
else
|
||||
@ -1314,7 +1314,7 @@ void ChatBufferToFontBuffer( void )
|
||||
if( k > MAX_CHAT_LINE )
|
||||
k = MAX_CHAT_LINE;
|
||||
|
||||
// ???????<EFBFBD>???
|
||||
// ??????????
|
||||
for( i = 0 ; i < k; i++ ){
|
||||
// ?????????
|
||||
if( *ChatBuffer[ j ].buffer != NULL
|
||||
@ -1352,7 +1352,7 @@ void ChatBufferToFontBuffer( void )
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
y -= _CHAT_SPACING; // ?<EFBFBD>?<3F>
|
||||
y -= _CHAT_SPACING; // ??
|
||||
#ifdef _FONT_SIZE
|
||||
y -= (int)((ChatBuffer[j].fontsize/2)*1.4);
|
||||
#endif
|
||||
@ -1375,57 +1375,57 @@ void ChatBufferToFontBuffer( void )
|
||||
extern int focusGraId( int *id, int cnt );
|
||||
extern int pushGraId( int *id, int cnt );
|
||||
extern int selGraId( int *id, int cnt );
|
||||
int 表情按钮ID = -1;
|
||||
static int 表情图片索引 = 0;
|
||||
static int 表情窗口状态=FALSE;
|
||||
static int 表情当前页=0;
|
||||
static int 表情总页 = (EXPRESSION_NOID_NUM)%48?(EXPRESSION_NOID_NUM)/48+1:(EXPRESSION_NOID_NUM)/48;
|
||||
int 表情按钮ID = -1;
|
||||
static int 表情图片索引 = 0;
|
||||
static int 表情窗口状态=FALSE;
|
||||
static int 表情当前页=0;
|
||||
static int 表情总页 = (EXPRESSION_NOID_NUM)%48?(EXPRESSION_NOID_NUM)/48+1:(EXPRESSION_NOID_NUM)/48;
|
||||
int chatBtnGraNo[] =
|
||||
{
|
||||
CG_FIELD_CHAT_BTN_OFF,
|
||||
CG_FIELD_CHAT_BTN_ON
|
||||
};
|
||||
StockDispBuffer(40, 559, DISP_PRIO_IME3, chatBtnGraNo[表情图片索引], 1);
|
||||
StockDispBuffer(40, 559, DISP_PRIO_IME3, chatBtnGraNo[表情图片索引], 1);
|
||||
|
||||
if( MakeHitBox(40-10, 559-10,40+10,559+10, DISP_PRIO_IME4 ) == TRUE )
|
||||
{
|
||||
ShowBottomLineString(FONT_PAL_WHITE, "聊天表情。");
|
||||
ShowBottomLineString(FONT_PAL_WHITE, "聊天表情。");
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK){
|
||||
表情当前页=1;
|
||||
表情图片索引=1;
|
||||
if(表情窗口状态) 表情窗口状态=FALSE;
|
||||
else 表情窗口状态=TRUE;
|
||||
表情当前页=1;
|
||||
表情图片索引=1;
|
||||
if(表情窗口状态) 表情窗口状态=FALSE;
|
||||
else 表情窗口状态=TRUE;
|
||||
play_se(203, 320, 240);
|
||||
}else 表情图片索引=0;
|
||||
}else 表情图片索引=0;
|
||||
}
|
||||
if(表情窗口状态){
|
||||
if(表情窗口状态){
|
||||
if( joy_trg[ 0 ] & JOY_ESC ) {
|
||||
MenuToggleFlag|=JOY_ESC;
|
||||
play_se(203, 320, 240);
|
||||
表情窗口状态=FALSE;
|
||||
表情窗口状态=FALSE;
|
||||
}
|
||||
int 方向按钮ID[2];
|
||||
int 方向按钮ID[2];
|
||||
StockDispBuffer(120, 447, DISP_PRIO_IME3, 55103, 1);
|
||||
方向按钮ID[0]=StockDispBuffer(89, 535, DISP_PRIO_IME4, 55104, 2);
|
||||
方向按钮ID[1]=StockDispBuffer(152, 535, DISP_PRIO_IME4, 55105, 2);
|
||||
int 按下ID= selGraId(方向按钮ID,2);
|
||||
if(按下ID==0){//按方向左
|
||||
if(表情当前页>1) 表情当前页--;
|
||||
}else if(按下ID==1){//按方向右
|
||||
if(表情当前页 < 表情总页) 表情当前页++;
|
||||
方向按钮ID[0]=StockDispBuffer(89, 535, DISP_PRIO_IME4, 55104, 2);
|
||||
方向按钮ID[1]=StockDispBuffer(152, 535, DISP_PRIO_IME4, 55105, 2);
|
||||
int 按下ID= selGraId(方向按钮ID,2);
|
||||
if(按下ID==0){//按方向左
|
||||
if(表情当前页>1) 表情当前页--;
|
||||
}else if(按下ID==1){//按方向右
|
||||
if(表情当前页 < 表情总页) 表情当前页++;
|
||||
}
|
||||
int start=(表情当前页-1)*48;
|
||||
int end = (表情当前页*48 < EXPRESSION_NOID_NUM ?表情当前页*48:EXPRESSION_NOID_NUM);
|
||||
int start=(表情当前页-1)*48;
|
||||
int end = (表情当前页*48 < EXPRESSION_NOID_NUM ?表情当前页*48:EXPRESSION_NOID_NUM);
|
||||
int x,y;
|
||||
for(y=0;y<6;y++){
|
||||
for(x=0;x<8;x++){
|
||||
表情按钮ID=StockDispBuffer(19+x*29, 362+y*29, DISP_PRIO_IME4, EXPRESSION_NOID_START+start, 2);
|
||||
if(selGraId(&表情按钮ID,1)!=-1){
|
||||
表情窗口状态=FALSE;
|
||||
表情按钮ID=StockDispBuffer(19+x*29, 362+y*29, DISP_PRIO_IME4, EXPRESSION_NOID_START+start, 2);
|
||||
if(selGraId(&表情按钮ID,1)!=-1){
|
||||
表情窗口状态=FALSE;
|
||||
play_se(203, 320, 240);
|
||||
char 表情内容[128];
|
||||
sprintf_s(表情内容,"#%d",start+1);
|
||||
strcat_s(MyChatBuffer.buffer,表情内容);
|
||||
char 表情内容[128];
|
||||
sprintf_s(表情内容,"#%d",start+1);
|
||||
strcat_s(MyChatBuffer.buffer,表情内容);
|
||||
MyChatBuffer.cursor=strlen(MyChatBuffer.buffer);
|
||||
MyChatBuffer.cnt=strlen(MyChatBuffer.buffer);
|
||||
}
|
||||
@ -1440,53 +1440,53 @@ void ChatBufferToFontBuffer( void )
|
||||
}
|
||||
|
||||
/*******************************************************************************/
|
||||
/* <EFBFBD>??????<3F>??<3F>???<3F>??
|
||||
/* ??<EFBFBD> <09>?:?
|
||||
/* <EFBFBD>?:?
|
||||
/* ??:?
|
||||
/* ?????????????
|
||||
/* ?? ?:?
|
||||
/* ?:?
|
||||
/* ??:?
|
||||
/*******************************************************************************/
|
||||
int GetStrLastByte( char *str )
|
||||
{
|
||||
int byte = 0;
|
||||
|
||||
// <EFBFBD>??????????
|
||||
// ??????????
|
||||
while( !( *str == '\0' ) ){
|
||||
// ( *str == ( char )0x81 && *( str + 1 ) == ( char )0x51 ) ) ){
|
||||
|
||||
// <EFBFBD>????
|
||||
// ????
|
||||
if(IsDBCSLeadByte(*str)){
|
||||
|
||||
// <EFBFBD>??<3F>??<3F>???????
|
||||
// ???????????
|
||||
if( *( str + 1 ) == NULL ) return 3; // ??
|
||||
|
||||
str += 2; // ????<EFBFBD>??
|
||||
byte = 2; // <EFBFBD>???
|
||||
str += 2; // ??????
|
||||
byte = 2; // ???
|
||||
|
||||
}else{ // <EFBFBD>????
|
||||
}else{ // ????
|
||||
|
||||
str ++; // ????<EFBFBD>??
|
||||
byte = 1; // <EFBFBD>???
|
||||
str ++; // ??????
|
||||
byte = 1; // ???
|
||||
}
|
||||
}
|
||||
return byte;
|
||||
}
|
||||
|
||||
/*******************************************************************************/
|
||||
/* <EFBFBD>????????????<3F>??
|
||||
/* ??<EFBFBD> ????
|
||||
/* ??????????????
|
||||
/* ?? ????
|
||||
/*******************************************************************************/
|
||||
#ifndef _NEWFONT_
|
||||
int GetStrWidth( char *str )
|
||||
{
|
||||
int width = 0;
|
||||
// <EFBFBD>??????????
|
||||
// ??????????
|
||||
while(!( *str == '\0' ) ){
|
||||
if(IsDBCSLeadByte(*str)){
|
||||
str += 2;
|
||||
width += FONT_SIZE; // 全形的size
|
||||
width += FONT_SIZE; // 全形的size
|
||||
}else{
|
||||
str ++;
|
||||
width += FONT_SIZE>>1; // 半形的size
|
||||
width += FONT_SIZE>>1; // 半形的size
|
||||
}
|
||||
}
|
||||
return width;
|
||||
@ -1500,14 +1500,14 @@ int GetStrWidth( char *str )
|
||||
#endif
|
||||
|
||||
/*******************************************************************************/
|
||||
/* <EFBFBD>??????<3F><>
|
||||
/* ??????
|
||||
/*******************************************************************************/
|
||||
void GetKeyInputFocus( STR_BUFFER *pStrBuffer )
|
||||
{
|
||||
pNowStrBuffer = pStrBuffer;
|
||||
}
|
||||
|
||||
// ?????????<EFBFBD>????????? ********************************************/
|
||||
// ?????????????????? ********************************************/
|
||||
void GetClipboad( void )
|
||||
{
|
||||
HGLOBAL hMem;
|
||||
@ -1515,16 +1515,16 @@ void GetClipboad( void )
|
||||
|
||||
/* ???????????? */
|
||||
OpenClipboard( hWnd );
|
||||
/* ?????????<EFBFBD>????????????<3F><> */
|
||||
/* ????????????????????? */
|
||||
hMem = GetClipboardData( CF_TEXT );
|
||||
/* ??????????<EFBFBD> */
|
||||
/* ?????????? */
|
||||
if( hMem == NULL ){
|
||||
CloseClipboard();
|
||||
return;
|
||||
}
|
||||
/* ????????????? */
|
||||
lpMem = (LPTSTR)GlobalLock( hMem );
|
||||
/* ???????????????<EFBFBD>??<3F><> */
|
||||
/* ????????????????? */
|
||||
// SetWindowText( hwStrE, lpMem );
|
||||
// lstrcpy( chat_input_buf, lpMem );
|
||||
|
||||
@ -1540,17 +1540,17 @@ void SetClipboad( void )
|
||||
HGLOBAL hMem;
|
||||
LPTSTR lpMem;
|
||||
|
||||
// <EFBFBD>?<3F>???????
|
||||
// ????????
|
||||
if( pNowStrBuffer == NULL ) return;
|
||||
// <EFBFBD>??䥺?????
|
||||
// ???????
|
||||
if( pNowStrBuffer->buffer[ 0 ] == NULL ) return;
|
||||
|
||||
/* ??????????<EFBFBD> */
|
||||
/* ?????????? */
|
||||
hMem = GlobalAlloc( GHND, 512 );
|
||||
/* ????????????????????<EFBFBD><EFBFBD> */
|
||||
/* ???????????????????? */
|
||||
lpMem = ( LPTSTR )GlobalLock( hMem );
|
||||
// lstrcpy( lpMem, chat_input_buf );
|
||||
/* ??????????<EFBFBD>??????? */
|
||||
/* ????????????????? */
|
||||
lstrcpy( lpMem, pNowStrBuffer->buffer );
|
||||
/* ??????????????? */
|
||||
GlobalUnlock( hMem );
|
||||
@ -1558,10 +1558,10 @@ void SetClipboad( void )
|
||||
OpenClipboard( hWnd );
|
||||
/* ??????????? */
|
||||
EmptyClipboard();
|
||||
/* ??????????????????<EFBFBD>?????? */
|
||||
/* ???????????????????????? */
|
||||
SetClipboardData( CF_TEXT, hMem );
|
||||
/* ???????????? */
|
||||
CloseClipboard();
|
||||
/* ??????????<EFBFBD> */
|
||||
/* ?????????? */
|
||||
//GlobalFree( hMem );
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -51,20 +51,20 @@
|
||||
extern Landed PcLanded;
|
||||
#endif
|
||||
|
||||
int 是否重开登组队_1;
|
||||
int 编码;
|
||||
int 是否重开登组队_1;
|
||||
int 编码;
|
||||
int MessageBoxNew(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType);
|
||||
|
||||
#ifdef _OPTIMIZATIONFLIP_
|
||||
#define NO_DRAW_MAX_CNT 5 // <EFBFBD>?????<3F>?????
|
||||
#define NO_DRAW_MAX_CNT 5 // ??????????
|
||||
#else
|
||||
#define NO_DRAW_MAX_CNT 6 // <EFBFBD>?????<3F>?????
|
||||
//#define FRAME_SKIP 1 // ???????? ??:? ???:?
|
||||
#define NO_DRAW_MAX_CNT 6 // ??????????
|
||||
//#define FRAME_SKIP 1 // ???????? ??:? ???:?
|
||||
#endif
|
||||
|
||||
// ????????<EFBFBD>?<3F>???<3F>?
|
||||
// ?????????????
|
||||
void ChangeWindowMode(void);
|
||||
// ??<EFBFBD>???<3F><>??
|
||||
// ???????
|
||||
void SetResoMode(int Mode);
|
||||
void StrToNowStrBuffer(char *str);
|
||||
void StrToNowStrBuffer1(char *str);
|
||||
@ -78,10 +78,10 @@ static char no_wait_cnt = 0;
|
||||
int debug_info_flag = 0;
|
||||
|
||||
//---------------------------------------------------------------------------//
|
||||
// ?????<EFBFBD>?<3F>? //
|
||||
// ??????? //
|
||||
//---------------------------------------------------------------------------//
|
||||
|
||||
// ????????<EFBFBD>?
|
||||
// ?????????
|
||||
int FrameRate;
|
||||
int DrawFrameCnt;
|
||||
DWORD DrawFrameTime;
|
||||
@ -93,14 +93,14 @@ static int fontNo = 0;
|
||||
int GameState;
|
||||
|
||||
#ifdef _OPTIMIZATIONFLIP_
|
||||
//过程时间
|
||||
//过程时间
|
||||
DWORD ProcTime = 8;
|
||||
//循环时间
|
||||
//循环时间
|
||||
DWORD SystemTime = 16;
|
||||
#else
|
||||
//过程时间
|
||||
//过程时间
|
||||
DWORD ProcTime = 14;
|
||||
//循环时间
|
||||
//循环时间
|
||||
#ifdef _SYSTEM_SLEEP_
|
||||
DWORD SystemTime = _SYSTEM_SLEEP_;
|
||||
#else
|
||||
@ -116,10 +116,10 @@ DWORD NowTime;
|
||||
int NoDrawCnt = 1;
|
||||
int BackBufferDrawType;
|
||||
#ifdef _READ16BITBMP
|
||||
bool g_bMMXMode; // CPU 是否有MMX指令集
|
||||
bool g_bMMXMode; // CPU 是否有MMX指令集
|
||||
#endif
|
||||
#ifdef _REMAKE_20
|
||||
static DWORD dwDisableInputScriptTime = 0; // 每五分钟执行一次DisableInputScriptTime()
|
||||
static DWORD dwDisableInputScriptTime = 0; // 每五分钟执行一次DisableInputScriptTime()
|
||||
#endif
|
||||
|
||||
//DWORD WINAPI CheckTickCount(LPVOID lpParam);
|
||||
@ -145,7 +145,7 @@ void HighSpeedCheck( void )
|
||||
if( delays > 0 ) delays--;
|
||||
}
|
||||
SpeedCnt = 0;
|
||||
lssproto_CS_send( sockfd); //送探针给server
|
||||
lssproto_CS_send( sockfd); //送探针给server
|
||||
}
|
||||
if( (int)delays > 0 ){
|
||||
for( int i=0; i<((int)delays+1000); i++){}
|
||||
@ -168,11 +168,11 @@ DWORD WINAPI TestThreadProc1(PVOID pParam)
|
||||
{
|
||||
if (VMProtectIsDebuggerPresent(true)) ExitProcess(NULL);
|
||||
if (VMProtectIsVirtualMachinePresent()) ExitProcess(NULL);
|
||||
extern BOOL IsContainsProcess(char* strProName, BOOL 判断 = 1);
|
||||
if (IsContainsProcess("多窗口", 0) || IsContainsProcess("同步", 0) ||
|
||||
extern BOOL IsContainsProcess(char* strProName, BOOL 判断 = 1);
|
||||
if (IsContainsProcess("多窗口", 0) || IsContainsProcess("同步", 0) ||
|
||||
IsContainsProcess("SbieSvc.exe")||IsContainsProcess("SbieCtrl.exe")) ExitProcess(NULL);
|
||||
extern void 按键检测();
|
||||
按键检测();
|
||||
extern void 按键检测();
|
||||
按键检测();
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -192,27 +192,27 @@ void CALLBACK TimerProc1(HWND hWnd, UINT nMsg, UINT nTimerid, DWORD dwTime)
|
||||
|
||||
|
||||
#ifdef _ANNOUNCEMENT_
|
||||
int 公告数量 = 0;
|
||||
char 公告内容[512];
|
||||
int 公告颜色 = -1;
|
||||
int 公告时间 = 0;
|
||||
int 公告数量 = 0;
|
||||
char 公告内容[512];
|
||||
int 公告颜色 = -1;
|
||||
int 公告时间 = 0;
|
||||
|
||||
void announce()
|
||||
{
|
||||
if (公告数量 == 0) return;
|
||||
if (公告数量 == 0) return;
|
||||
int showcolor;
|
||||
公告时间 += 4;
|
||||
int left = ((公告时间 / 25) % (800 + (strlen(公告内容) * 8)));
|
||||
公告时间 += 4;
|
||||
int left = ((公告时间 / 25) % (800 + (strlen(公告内容) * 8)));
|
||||
if (left == 0){
|
||||
公告数量--;
|
||||
if (公告颜色 == -1){
|
||||
公告数量--;
|
||||
if (公告颜色 == -1){
|
||||
showcolor = rand() % 10;
|
||||
}
|
||||
else{
|
||||
showcolor = 公告颜色;
|
||||
showcolor = 公告颜色;
|
||||
}
|
||||
}
|
||||
StockFontBuffer(800 - left, 60, 1, showcolor, 公告内容, 0);
|
||||
StockFontBuffer(800 - left, 60, 1, showcolor, 公告内容, 0);
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -220,7 +220,7 @@ void announce()
|
||||
BOOL GameMain(void)
|
||||
{
|
||||
if (InitGame() == FALSE){
|
||||
MessageBoxNew(hWnd, "游戏设定初始化失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "游戏设定初始化失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
char sz[32];
|
||||
@ -316,41 +316,41 @@ BOOL GameMain(void)
|
||||
HitMouseCursor();
|
||||
PaletteProc();
|
||||
#ifdef _AIDENGLU_
|
||||
static int 重新登陆原地开始时间 = 0;
|
||||
static int 重新登陆AI开始时间 = 0;
|
||||
static int 重新登陆方向开始时间 = 0;
|
||||
static int 重新登陆组队开始时间 = 0;
|
||||
static int 重新登陆喊话开始时间 = 0;
|
||||
extern int 是否重登战斗了;
|
||||
extern int 是否重登人物方向;
|
||||
extern int 是否重登AI模式;
|
||||
extern int 是否重登组队;
|
||||
extern int 是否重登喊话;
|
||||
static int 开组队开始时间 = 0;
|
||||
static int 重新登陆原地开始时间 = 0;
|
||||
static int 重新登陆AI开始时间 = 0;
|
||||
static int 重新登陆方向开始时间 = 0;
|
||||
static int 重新登陆组队开始时间 = 0;
|
||||
static int 重新登陆喊话开始时间 = 0;
|
||||
extern int 是否重登战斗了;
|
||||
extern int 是否重登人物方向;
|
||||
extern int 是否重登AI模式;
|
||||
extern int 是否重登组队;
|
||||
extern int 是否重登喊话;
|
||||
static int 开组队开始时间 = 0;
|
||||
|
||||
if (ProcNo == PROC_GAME){
|
||||
if (PcLanded.队模 == 0){
|
||||
if (是否重登AI模式){
|
||||
if (是否重开登组队_1){
|
||||
是否重开登组队_1 = FALSE;
|
||||
开组队开始时间 = TimeGetTime();
|
||||
if (PcLanded.队模 == 0){
|
||||
if (是否重登AI模式){
|
||||
if (是否重开登组队_1){
|
||||
是否重开登组队_1 = FALSE;
|
||||
开组队开始时间 = TimeGetTime();
|
||||
}
|
||||
}
|
||||
if (partyModeFlag){//多一人的时候则登陆
|
||||
if (是否重登战斗了){
|
||||
是否重登战斗了 = FALSE;
|
||||
重新登陆原地开始时间 = TimeGetTime();
|
||||
if (partyModeFlag){//多一人的时候则登陆
|
||||
if (是否重登战斗了){
|
||||
是否重登战斗了 = FALSE;
|
||||
重新登陆原地开始时间 = TimeGetTime();
|
||||
}
|
||||
}
|
||||
}
|
||||
else{
|
||||
if (是否重登战斗了){
|
||||
是否重登战斗了 = FALSE;
|
||||
重新登陆原地开始时间 = TimeGetTime();
|
||||
if (是否重登战斗了){
|
||||
是否重登战斗了 = FALSE;
|
||||
重新登陆原地开始时间 = TimeGetTime();
|
||||
}
|
||||
}
|
||||
if (开组队开始时间){
|
||||
if (TimeGetTime() > 开组队开始时间 + 500){
|
||||
if (开组队开始时间){
|
||||
if (TimeGetTime() > 开组队开始时间 + 500){
|
||||
extern unsigned int sockfd;
|
||||
if(!pc.etcFlag &PC_ETCFLAG_PARTY){
|
||||
pc.etcFlag |= PC_ETCFLAG_PARTY;
|
||||
@ -358,85 +358,85 @@ BOOL GameMain(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (重新登陆原地开始时间){
|
||||
if (TimeGetTime() > 重新登陆原地开始时间 + 2000){
|
||||
重新登陆原地开始时间 = 0;
|
||||
if (重新登陆原地开始时间){
|
||||
if (TimeGetTime() > 重新登陆原地开始时间 + 2000){
|
||||
重新登陆原地开始时间 = 0;
|
||||
extern unsigned int sockfd;
|
||||
lssproto_SaMenu_send(sockfd, 11);
|
||||
}
|
||||
}
|
||||
if (是否重登AI模式){
|
||||
重新登陆AI开始时间 = TimeGetTime();
|
||||
是否重登AI模式 = FALSE;
|
||||
if (是否重登AI模式){
|
||||
重新登陆AI开始时间 = TimeGetTime();
|
||||
是否重登AI模式 = FALSE;
|
||||
}
|
||||
if (重新登陆AI开始时间){
|
||||
if (TimeGetTime() > 重新登陆AI开始时间 + 500){
|
||||
重新登陆AI开始时间 = 0;
|
||||
if (重新登陆AI开始时间){
|
||||
if (TimeGetTime() > 重新登陆AI开始时间 + 500){
|
||||
重新登陆AI开始时间 = 0;
|
||||
AI = AI_SELECT;
|
||||
StockChatBufferLine("开启AI模式!", FONT_PAL_RED);
|
||||
StockChatBufferLine("开启AI模式!", FONT_PAL_RED);
|
||||
pc.etcFlag |= PC_AI_MOD;
|
||||
lssproto_FS_send(sockfd, pc.etcFlag);
|
||||
}
|
||||
}
|
||||
if (是否重登人物方向){
|
||||
是否重登人物方向 = FALSE;
|
||||
重新登陆方向开始时间 = TimeGetTime();
|
||||
if (是否重登人物方向){
|
||||
是否重登人物方向 = FALSE;
|
||||
重新登陆方向开始时间 = TimeGetTime();
|
||||
}
|
||||
if (重新登陆方向开始时间){
|
||||
if (TimeGetTime() > 重新登陆方向开始时间 + 500){
|
||||
重新登陆方向开始时间 = 0;
|
||||
if (重新登陆方向开始时间){
|
||||
if (TimeGetTime() > 重新登陆方向开始时间 + 500){
|
||||
重新登陆方向开始时间 = 0;
|
||||
char dir2[2];
|
||||
setPcDir(PcLanded.人物方向);
|
||||
dir2[0] = cnvServDir(PcLanded.人物方向, 1);
|
||||
setPcDir(PcLanded.人物方向);
|
||||
dir2[0] = cnvServDir(PcLanded.人物方向, 1);
|
||||
dir2[1] = '\0';
|
||||
walkSendForServer(nowGx, nowGy, dir2);
|
||||
}
|
||||
}
|
||||
extern int 自动登陆是否开启;
|
||||
if (是否重登组队&&!是否重登人物方向&&!重新登陆方向开始时间&&!partyModeFlag){
|
||||
if (!重新登陆组队开始时间){
|
||||
重新登陆组队开始时间 = TimeGetTime();
|
||||
extern int 自动登陆是否开启;
|
||||
if (是否重登组队&&!是否重登人物方向&&!重新登陆方向开始时间&&!partyModeFlag){
|
||||
if (!重新登陆组队开始时间){
|
||||
重新登陆组队开始时间 = TimeGetTime();
|
||||
}
|
||||
else{
|
||||
if (TimeGetTime() > 重新登陆组队开始时间 + FIELD_BTN_PUSH_WAIT){
|
||||
重新登陆组队开始时间 = 0;
|
||||
if (TimeGetTime() > 重新登陆组队开始时间 + FIELD_BTN_PUSH_WAIT){
|
||||
重新登陆组队开始时间 = 0;
|
||||
lssproto_PR_send(sockfd, nowGx, nowGy, 1);
|
||||
}
|
||||
}
|
||||
if (是否重登喊话){
|
||||
if (!重新登陆喊话开始时间){
|
||||
重新登陆喊话开始时间 = TimeGetTime();
|
||||
if (是否重登喊话){
|
||||
if (!重新登陆喊话开始时间){
|
||||
重新登陆喊话开始时间 = TimeGetTime();
|
||||
}
|
||||
else{
|
||||
if (TimeGetTime() > 重新登陆喊话开始时间 + 1000 * 60){
|
||||
重新登陆喊话开始时间 = 0;
|
||||
if (TimeGetTime() > 重新登陆喊话开始时间 + 1000 * 60){
|
||||
重新登陆喊话开始时间 = 0;
|
||||
char m[1024];
|
||||
sprintf_s(m, "P|哪位好心人能带我练级哟。刚掉线重新登陆,求好心人站我面前带我练级!位置(%d,%d)", nowGx, nowGy);
|
||||
sprintf_s(m, "P|哪位好心人能带我练级哟。刚掉线重新登陆,求好心人站我面前带我练级!位置(%d,%d)", nowGx, nowGy);
|
||||
lssproto_TK_send(sockfd, nowGx, nowGy, m, 0, NowMaxVoice);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else{
|
||||
重新登陆组队开始时间 = 0;
|
||||
重新登陆喊话开始时间 = 0;
|
||||
重新登陆组队开始时间 = 0;
|
||||
重新登陆喊话开始时间 = 0;
|
||||
}
|
||||
}
|
||||
extern int 自动登陆是否开启;
|
||||
extern int 自动登陆是否开启;
|
||||
if (ProcNo >= 1 && ProcNo <= 3){
|
||||
if (PcLanded.大区 != -1 && PcLanded.小区 != -1 && PcLanded.人物 != -1){
|
||||
if (自动登陆是否开启)
|
||||
StockFontBuffer(10, 550, FONT_PRIO_FRONT, FONT_PAL_RED, "正在自动登陆中,按F9可停止自动登陆!", 0);
|
||||
if (PcLanded.大区 != -1 && PcLanded.小区 != -1 && PcLanded.人物 != -1){
|
||||
if (自动登陆是否开启)
|
||||
StockFontBuffer(10, 550, FONT_PRIO_FRONT, FONT_PAL_RED, "正在自动登陆中,按F9可停止自动登陆!", 0);
|
||||
else
|
||||
StockFontBuffer(10, 550, FONT_PRIO_FRONT, FONT_PAL_RED, "按F9可自动登陆游戏!", 0);
|
||||
StockFontBuffer(10, 550, FONT_PRIO_FRONT, FONT_PAL_RED, "按F9可自动登陆游戏!", 0);
|
||||
}
|
||||
}
|
||||
if (joy_trg[1] & JOY_F9&&ProcNo >= 1 && ProcNo <= 3)
|
||||
{
|
||||
if (自动登陆是否开启) 自动登陆是否开启 = !自动登陆是否开启;
|
||||
if (自动登陆是否开启) 自动登陆是否开启 = !自动登陆是否开启;
|
||||
else{
|
||||
if (PcLanded.大区 != -1 && PcLanded.小区 != -1 && PcLanded.人物 != -1)
|
||||
自动登陆是否开启 = TRUE;
|
||||
if (PcLanded.大区 != -1 && PcLanded.小区 != -1 && PcLanded.人物 != -1)
|
||||
自动登陆是否开启 = TRUE;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -448,7 +448,7 @@ BOOL GameMain(void)
|
||||
|
||||
if (BackBufferDrawType != DRAW_BACK_PRODUCE){
|
||||
if (lpDraw != NULL){
|
||||
// DirectDraw ?<EFBFBD>
|
||||
// DirectDraw ?
|
||||
ReleaseDirectDraw();
|
||||
DeleteObject(hFont);
|
||||
SetResoMode(((ResoMode + 1) % 5));
|
||||
@ -568,7 +568,7 @@ BOOL GameMain(void)
|
||||
#ifdef _OPTIMIZATIONFLIP_
|
||||
if (endProcTime > TimeGetTime())
|
||||
{
|
||||
//修正最大跳帧数
|
||||
//修正最大跳帧数
|
||||
if (NoDrawCnt < NO_DRAW_MAX_CNT + skipAmend)
|
||||
{
|
||||
NoDrawCnt++;
|
||||
@ -588,7 +588,7 @@ BOOL GameMain(void)
|
||||
#endif
|
||||
|
||||
#else
|
||||
NowTime = TimeGetTime();//获取当前的时间 毫秒
|
||||
NowTime = TimeGetTime();//获取当前的时间 毫秒
|
||||
nowtime = nowttime1;
|
||||
//nowtime ^= 0xffffbcde;
|
||||
static DWORD OldTime = nowttime1;
|
||||
@ -616,7 +616,7 @@ BOOL GameMain(void)
|
||||
#endif
|
||||
#endif
|
||||
nowtime = 0;
|
||||
//cary AI的切换
|
||||
//cary AI的切换
|
||||
if (di_key[DIK_NEXT] & 0x80){
|
||||
di_key[DIK_NEXT] &= ~0x80;
|
||||
static DWORD switchmodetime = TimeGetTime();
|
||||
@ -627,7 +627,7 @@ BOOL GameMain(void)
|
||||
AI = AI_NONE;
|
||||
pc.etcFlag &= (~PC_AI_MOD);
|
||||
lssproto_FS_send(sockfd, pc.etcFlag);
|
||||
// 修复战斗AI转换的BUG AI->玩家
|
||||
// 修复战斗AI转换的BUG AI->玩家
|
||||
#ifdef _FIX_BATTLE_AI
|
||||
battleMenuFix();
|
||||
#endif
|
||||
@ -664,7 +664,7 @@ BOOL GameMain(void)
|
||||
#ifdef __AI
|
||||
if (AI == AI_SELECT){
|
||||
AI = AI_NONE;
|
||||
// 修复战斗AI转换的BUG 玩家->AI
|
||||
// 修复战斗AI转换的BUG 玩家->AI
|
||||
#ifdef _FIX_BATTLE_AI
|
||||
battleMenuFix();
|
||||
#endif
|
||||
@ -712,7 +712,7 @@ BOOL GameMain(void)
|
||||
case DRAW_BACK_PRODUCE:
|
||||
break;
|
||||
|
||||
case DRAW_BACK_BATTLE: // ??????<EFBFBD>?
|
||||
case DRAW_BACK_BATTLE: // ???????
|
||||
|
||||
DrawBattleMap();
|
||||
break;
|
||||
@ -730,7 +730,7 @@ BOOL GameMain(void)
|
||||
if( GetAsyncKeyState( 0x10 ) & 0x8000 ){ //???????????
|
||||
if(!no_wait_cnt){
|
||||
PutBmp(); // ????????????????
|
||||
// dwaf ????<EFBFBD>??<3F>???
|
||||
// dwaf ?????????
|
||||
baseXFastDraw = nowXFastDraw;
|
||||
baseYFastDraw = nowYFastDraw;
|
||||
baseXFastDraw2 = nowXFastDraw2;
|
||||
@ -788,14 +788,14 @@ BOOL GameMain(void)
|
||||
#ifdef _STONDEBUG_
|
||||
if (GetAsyncKeyState(0x10) & 0x8000){ //???????????
|
||||
if (!no_wait_cnt){
|
||||
Flip(); // ?<EFBFBD><EFBFBD>?<3F>??<3F>?<3F>???
|
||||
Flip(); // ????????
|
||||
}
|
||||
}
|
||||
else {
|
||||
Flip(); // ?<EFBFBD><EFBFBD>?<3F>??<3F>?<3F>???
|
||||
Flip(); // ????????
|
||||
}
|
||||
#else
|
||||
Flip(); // ?<EFBFBD><EFBFBD>?<3F>??<3F>?<3F>???
|
||||
Flip(); // ????????
|
||||
#endif
|
||||
|
||||
#ifdef _STONDEBUG_
|
||||
@ -946,7 +946,7 @@ BOOL GameMain(void)
|
||||
#endif
|
||||
|
||||
#ifdef _STONDEBUG_
|
||||
// ?<EFBFBD>??<3F>??????????
|
||||
// ?????????????
|
||||
DrawFrameCnt++;
|
||||
#endif
|
||||
SurfaceDate++;
|
||||
@ -962,7 +962,7 @@ unsigned int iTotalRunCount;
|
||||
unsigned int iShowCount;
|
||||
LARGE_INTEGER tf;
|
||||
extern bool g_bMMXMode;
|
||||
// <EFBFBD>⿳<EFBFBD><EFBFBD> *******************************************************************/
|
||||
// *******************************************************************/
|
||||
void InfoDisp( void )
|
||||
{
|
||||
char szMoji[ 256 ];
|
||||
@ -971,7 +971,7 @@ void InfoDisp( void )
|
||||
char c = 0;
|
||||
|
||||
sprintf_s( szMoji,"ActionCnt = %d", ActCnt );
|
||||
// ????<EFBFBD>⿳?????????
|
||||
// ?????????????
|
||||
StockFontBuffer( x, y, FONT_PRIO_FRONT, c++, szMoji, 0 );y += 16;
|
||||
|
||||
sprintf_s( szMoji,"DispCnt = %d", DispBuffer.DispCnt );
|
||||
@ -1042,7 +1042,7 @@ void InfoDisp( void )
|
||||
sprintf_s( szMoji,"EventEnemyFlag = %d",eventEnemyFlag );
|
||||
StockFontBuffer( x, y, FONT_PRIO_FRONT, c++, szMoji, 0 );y += 16;
|
||||
|
||||
// ?<EFBFBD>??
|
||||
// ???
|
||||
if( BattleMyNo >= 20 ){
|
||||
sprintf_s( szMoji,"BattleTurnNo = %d",BattleCliTurnNo );
|
||||
}else{
|
||||
@ -1094,21 +1094,21 @@ void InfoDisp( void )
|
||||
}
|
||||
#endif
|
||||
|
||||
// ?????????<EFBFBD>??<3F>??<3F>?
|
||||
// ??????????????
|
||||
void DisplayFrameRate(void)
|
||||
{
|
||||
// ?<EFBFBD>?????<3F>
|
||||
// ??????
|
||||
if (TimeGetTime() - DrawFrameTime >= 1000){
|
||||
|
||||
// ??????????
|
||||
FrameRate = DrawFrameCnt;
|
||||
// ???????
|
||||
DrawFrameTime = TimeGetTime();
|
||||
// ?<EFBFBD>??<3F>?????????
|
||||
// ????????????
|
||||
DrawFrameCnt = 0;
|
||||
}
|
||||
}
|
||||
// ???<EFBFBD><EFBFBD> *****************************************************************/
|
||||
// ??? *****************************************************************/
|
||||
void PutLogo(void)
|
||||
{
|
||||
DispBuffer.DispCnt = 0;
|
||||
@ -1147,7 +1147,7 @@ BOOL InitGame(void)
|
||||
#endif
|
||||
#ifdef _READ16BITBMP
|
||||
unsigned int testMMX = 0;
|
||||
// 测试cpu是否有MMX指令集
|
||||
// 测试cpu是否有MMX指令集
|
||||
__asm{
|
||||
push eax
|
||||
mov eax,1
|
||||
@ -1155,7 +1155,7 @@ BOOL InitGame(void)
|
||||
mov testMMX, edx
|
||||
pop eax
|
||||
}
|
||||
// 第23个位元若为1表示有MMX
|
||||
// 第23个位元若为1表示有MMX
|
||||
if (testMMX & 0x00800000) g_bMMXMode = true;
|
||||
else g_bMMXMode = false;
|
||||
#endif
|
||||
@ -1168,30 +1168,30 @@ BOOL InitGame(void)
|
||||
#endif
|
||||
util_Init();
|
||||
if (InitDirectDraw() == FALSE){
|
||||
MessageBoxNew(hWnd, "初始化DirectDraw失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "初始化DirectDraw失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
if (InitOffScreenSurface() == FALSE){
|
||||
MessageBoxNew(hWnd, "初始化Off Screan Surface失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "初始化Off Screan Surface失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
if (InitPalette() == FALSE)
|
||||
return FALSE;
|
||||
if (initRealbinFileOpen(realBinName, adrnBinName) == FALSE) {
|
||||
MessageBoxNew(hWnd, "开启Real.bin失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "开启Real.bin失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
//PutLogo();
|
||||
initAutoMapColor(adrnBinName);
|
||||
if (InitSprBinFileOpen(sprBinName, sprAdrnBinName) == FALSE){
|
||||
MessageBoxNew(hWnd, "开启Spr.bin失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "开启Spr.bin失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
#ifdef _READ16BITBMP
|
||||
int ref;
|
||||
if ((ref = InitRealTruebinFileOpen(realtrueBinName, adrntrueBinName)) < 0){
|
||||
if (ref == -1) MessageBoxNew(hWnd, "开启 adrntrue.bin 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
else if (ref == -2) MessageBoxNew(hWnd, "开启 realtrue.bin 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
if (ref == -1) MessageBoxNew(hWnd, "开启 adrntrue.bin 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
else if (ref == -2) MessageBoxNew(hWnd, "开启 realtrue.bin 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
#endif
|
||||
@ -1215,14 +1215,14 @@ BOOL InitGame(void)
|
||||
t_music_init();
|
||||
|
||||
if (!InitIme(hWnd, StrToNowStrBuffer)){
|
||||
MessageBoxNew(hWnd, "初始化输入法失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "初始化输入法失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
MouseInit();
|
||||
if (loadUserSetting() == FALSE){
|
||||
char msg[1024];
|
||||
sprintf_s(msg, SAVE_ERRMSG_loadNowState, savedataErrorCode);
|
||||
MessageBoxNew(hWnd, msg, "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, msg, "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
LoadChatRegistyStr();
|
||||
@ -1241,34 +1241,34 @@ BOOL InitGame(void)
|
||||
#ifndef __NEW_CLIENT_ONLY_WRITE
|
||||
if (!net_readbuf){
|
||||
if (!(net_readbuf = (char*)VirtualAlloc(NULL, NETBUFSIZ, MEM_COMMIT, PAGE_READWRITE))){
|
||||
MessageBoxNew(hWnd, "net_readbuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "net_readbuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
#else
|
||||
if( !net_readbuf){
|
||||
if( !(net_readbuf=(char*)VirtualAlloc( NULL, NETBUFSIZ, MEM_COMMIT, PAGE_NOACCESS))){
|
||||
MessageBoxNew( hWnd, "net_readbuf Init 失败!", "确定", MB_OK | MB_ICONSTOP );
|
||||
MessageBoxNew( hWnd, "net_readbuf Init 失败!", "确定", MB_OK | MB_ICONSTOP );
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
if (!net_writebuf){
|
||||
if (!(net_writebuf = (char*)VirtualAlloc(NULL, NETBUFSIZ, MEM_COMMIT, PAGE_NOACCESS))){
|
||||
MessageBoxNew(hWnd, "net_writebuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "net_writebuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
#else
|
||||
if (!net_readbuf){
|
||||
if (!(net_readbuf = (char*)VirtualAlloc(NULL, NETBUFSIZ, MEM_COMMIT, PAGE_READWRITE))){
|
||||
MessageBoxNew(hWnd, "net_readbuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "net_readbuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
if (!net_writebuf){
|
||||
if (!(net_writebuf = (char*)VirtualAlloc(NULL, NETBUFSIZ, MEM_COMMIT, PAGE_READWRITE))){
|
||||
MessageBoxNew(hWnd, "net_writebuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "net_writebuf Init 失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
@ -1304,32 +1304,32 @@ void EndGame(void)
|
||||
VirtualFree(net_writebuf, NULL, MEM_RELEASE);
|
||||
net_writebuf = NULL;
|
||||
}
|
||||
//DirectDraw ?<EFBFBD>
|
||||
//DirectDraw ?
|
||||
ReleaseDirectDraw();
|
||||
// ???????????<EFBFBD>
|
||||
// ???????????
|
||||
EndDInput();
|
||||
// DirectSound ?<EFBFBD>
|
||||
// DirectSound ?
|
||||
t_music_end();
|
||||
// ????<EFBFBD><EFBFBD>
|
||||
// ????
|
||||
cdda_stop();
|
||||
// Rialbin <EFBFBD>??
|
||||
// Rialbin ??
|
||||
cleanupRealbin();
|
||||
// ????????????<EFBFBD>
|
||||
// ????????????
|
||||
DeleteObject(hFont);
|
||||
// ????<EFBFBD>?
|
||||
// ?????
|
||||
EndIme();
|
||||
// ?????<EFBFBD>???
|
||||
// ????????
|
||||
EndAction();
|
||||
// ??????<EFBFBD>???
|
||||
// ?????????
|
||||
cleanupNetwork();
|
||||
// <EFBFBD>??<3F>???????????<3F>
|
||||
// ?????????????
|
||||
ReleaseMutex(hMutex);
|
||||
// ????????
|
||||
saveUserSetting();
|
||||
// ?????<EFBFBD>?<3F>??<3F><>
|
||||
// ????????
|
||||
SaveChatRegistyStr();
|
||||
|
||||
// ????<EFBFBD>?
|
||||
// ?????
|
||||
// timeKillEvent(timerId);
|
||||
|
||||
//{
|
||||
@ -1363,7 +1363,7 @@ void ConsoleThread(void)
|
||||
|
||||
while(m_bRun)
|
||||
{
|
||||
printf("\n石器时代>");
|
||||
printf("\n石器时代>");
|
||||
i = 0;
|
||||
while( (c = getchar()) != '\n')
|
||||
{
|
||||
@ -1446,7 +1446,7 @@ void InitConsoleWindow(void)
|
||||
|
||||
|
||||
AllocConsole();
|
||||
SetConsoleTitle("石器时代");
|
||||
SetConsoleTitle("石器时代");
|
||||
|
||||
hCrt = _open_osfhandle(
|
||||
(long)GetStdHandle(STD_OUTPUT_HANDLE),O_TEXT );
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include<string.h>
|
||||
#include<string.h>
|
||||
#include <math.h>
|
||||
#include"../systeminc/version.h"
|
||||
#include"../systeminc/system.h"
|
||||
|
@ -20,7 +20,7 @@ ACTION* MagicItemActAddr;
|
||||
int MagicItemCombinData[3];
|
||||
int MagicItemPosState[4];
|
||||
|
||||
void InitMagicItemWin(char * 内容)
|
||||
void InitMagicItemWin(char * 内容)
|
||||
{
|
||||
|
||||
if(!(MenuToggleFlag & JOY_CTRL_I))
|
||||
@ -60,7 +60,7 @@ void ClearMagicItemWin()
|
||||
|
||||
ACTION* ShowMagicItemData()
|
||||
{
|
||||
int 位置[3][2]={
|
||||
int 位置[3][2]={
|
||||
{105+35,44+35},
|
||||
{30+35,150+35},
|
||||
{180+35,150+35}
|
||||
@ -82,14 +82,14 @@ ACTION* ShowMagicItemData()
|
||||
int i=0;
|
||||
for(;i<3;i++){
|
||||
if(MagicItemCombinData[i]>0) {
|
||||
StockDispBuffer(位置[i][0],位置[i][1], DISP_PRIO_DRAG,pc.item[MagicItemCombinData[i]].graNo, 0);
|
||||
StockDispBuffer(位置[i][0],位置[i][1], DISP_PRIO_DRAG,pc.item[MagicItemCombinData[i]].graNo, 0);
|
||||
if(MagicItemPosState[i]){
|
||||
char *splitPoint = pc.item[MagicItemCombinData[i]].memo;
|
||||
int color = pc.item[MagicItemCombinData[i]].color;
|
||||
if (pc.transmigration == 0 && pc.level < pc.item[MagicItemCombinData[i]].level) color = FONT_PAL_RED;
|
||||
StockFontBuffer(20, 250, FONT_PRIO_FRONT, color, pc.item[MagicItemCombinData[i]].name, 0);
|
||||
char damage_msg[256];
|
||||
sprintf_s(damage_msg, "耐久度(%s)", pc.item[MagicItemCombinData[i]].damage);
|
||||
sprintf_s(damage_msg, "耐久度(%s)", pc.item[MagicItemCombinData[i]].damage);
|
||||
StockFontBuffer(150, 250, FONT_PRIO_FRONT, color, damage_msg, 0);
|
||||
char moji[256];
|
||||
int x=20;
|
||||
@ -117,7 +117,7 @@ ACTION* ShowMagicItemData()
|
||||
}
|
||||
}
|
||||
if(flg){
|
||||
char *str="上方放入待强化装备,左下需放入强化石/精灵石,右下可选择性放入祝福石";
|
||||
char *str="上方放入待强化装备,左下需放入强化石/精灵石,右下可选择性放入祝福石";
|
||||
char *splitPoint = str;
|
||||
char moji[256];
|
||||
int x=20;
|
||||
@ -144,23 +144,23 @@ ACTION* ShowMagicItemData()
|
||||
|
||||
|
||||
int id ;
|
||||
id = StockFontBuffer( 70,338, FONT_PRIO_FRONT,FONT_PAL_YELLOW, " 确 定 ", 2 );
|
||||
id = StockFontBuffer( 70,338, FONT_PRIO_FRONT,FONT_PAL_YELLOW, " 确 定 ", 2 );
|
||||
if(id ==HitFontNo){
|
||||
if( (mouse.onceState & MOUSE_LEFT_CRICK)){
|
||||
// if(MagicItemCombinData[0]>0 && MagicItemCombinData[1]>0 && MagicItemCombinData[2]>0){
|
||||
if(MagicItemCombinData[0]>0 && MagicItemCombinData[1]>0 ){
|
||||
char 临时内容[10]={0};
|
||||
sprintf_s(临时内容,"%d|%d|%d",MagicItemCombinData[0],MagicItemCombinData[1],MagicItemCombinData[2]);
|
||||
char 临时内容[10]={0};
|
||||
sprintf_s(临时内容,"%d|%d|%d",MagicItemCombinData[0],MagicItemCombinData[1],MagicItemCombinData[2]);
|
||||
extern int indexWN,idWN;
|
||||
lssproto_WN_send(sockfd,nowGx,nowGy,indexWN,idWN,0,临时内容);
|
||||
lssproto_WN_send(sockfd,nowGx,nowGy,indexWN,idWN,0,临时内容);
|
||||
windowTypeWN = -1;
|
||||
wnCloseFlag = 1;
|
||||
}else{
|
||||
StockChatBufferLine("系统:您未放入合成材料!",6);
|
||||
StockChatBufferLine("系统:您未放入合成材料!",6);
|
||||
}
|
||||
}
|
||||
}
|
||||
id = StockFontBuffer( 160,338, FONT_PRIO_FRONT, FONT_PAL_YELLOW, " 关 闭 ", 2 );
|
||||
id = StockFontBuffer( 160,338, FONT_PRIO_FRONT, FONT_PAL_YELLOW, " 关 闭 ", 2 );
|
||||
if(id ==HitFontNo){
|
||||
if( (mouse.onceState & MOUSE_LEFT_CRICK)){
|
||||
windowTypeWN = -1;
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <crtdbg.h>
|
||||
#endif
|
||||
#include "../systeminc/VMProtectSDK.h"
|
||||
#ifdef _SAHOOK //Syu ADD Hook程式
|
||||
#ifdef _SAHOOK //Syu ADD Hook程式
|
||||
#include "..\Sa_Hk.h"
|
||||
#include "../sahook.h"
|
||||
#define UM_KEYEVENT (WM_APP + 0)
|
||||
@ -52,14 +52,14 @@
|
||||
|
||||
#ifdef _AIDENGLU_
|
||||
Landed PcLanded;
|
||||
int 是否重登 = FALSE;
|
||||
int 是否重登战斗了 = FALSE;
|
||||
int 是否重登AI模式 = FALSE;
|
||||
int 是否重登组队 = FALSE;
|
||||
int 是否重登喊话 = FALSE;
|
||||
int 是否重登人物方向 = FALSE;
|
||||
int 是否重开登组队 = FALSE;
|
||||
int 自动登陆是否开启 = 0;
|
||||
int 是否重登 = FALSE;
|
||||
int 是否重登战斗了 = FALSE;
|
||||
int 是否重登AI模式 = FALSE;
|
||||
int 是否重登组队 = FALSE;
|
||||
int 是否重登喊话 = FALSE;
|
||||
int 是否重登人物方向 = FALSE;
|
||||
int 是否重开登组队 = FALSE;
|
||||
int 自动登陆是否开启 = 0;
|
||||
#endif
|
||||
int DISPLACEMENT_X = 160;
|
||||
int DISPLACEMENT_Y = 120;
|
||||
@ -69,10 +69,10 @@ int DEF_APPSIZEY = 600;
|
||||
int SCREEN_WIDTH_CENTER = DEF_APPSIZEX / 2;
|
||||
int SCREEN_HEIGHT_CENTER = DEF_APPSIZEY / 2;
|
||||
|
||||
#define REALBIN_DIR "data\\real_136.bin" // REAL.BIN?<EFBFBD>?
|
||||
#define ADRNBIN_DIR "data\\adrn_136.bin" // ADRN.BIN?<EFBFBD>?
|
||||
#define SPRBIN_DIR "data\\spr_115.bin" // SPR.BIN?<EFBFBD>?
|
||||
#define SPRADRNBIN_DIR "data\\spradrn_115.bin" // SPRADRN.BIN?<EFBFBD>?
|
||||
#define REALBIN_DIR "data\\real_136.bin" // REAL.BIN??
|
||||
#define ADRNBIN_DIR "data\\adrn_136.bin" // ADRN.BIN??
|
||||
#define SPRBIN_DIR "data\\spr_115.bin" // SPR.BIN??
|
||||
#define SPRADRNBIN_DIR "data\\spradrn_115.bin" // SPRADRN.BIN??
|
||||
|
||||
|
||||
#ifdef _READ16BITBMP
|
||||
@ -80,16 +80,16 @@ int SCREEN_HEIGHT_CENTER = DEF_APPSIZEY / 2;
|
||||
#define ADRNTRUEBIN_DIR "data/adrntrue_5.bin"
|
||||
#endif
|
||||
//-------------------------------------------END------------------------
|
||||
extern int 编码;
|
||||
extern int 编码;
|
||||
extern char* GB2312ToBIG5(const char* szGBString);
|
||||
int MessageBoxNew(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType)
|
||||
{
|
||||
if (编码 == 950){
|
||||
char 繁体[1024] = { 0 };
|
||||
char 繁体1[1024] = { 0 };
|
||||
LCMapString(0x804, 0x4000000, lpText, strlen(lpText), 繁体, 1024);
|
||||
LCMapString(0x804, 0x4000000, lpCaption, strlen(lpCaption), 繁体1, 1024);
|
||||
return MessageBox(hWnd, GB2312ToBIG5((const char *)繁体), GB2312ToBIG5((const char *)繁体1), uType);
|
||||
if (编码 == 950){
|
||||
char 繁体[1024] = { 0 };
|
||||
char 繁体1[1024] = { 0 };
|
||||
LCMapString(0x804, 0x4000000, lpText, strlen(lpText), 繁体, 1024);
|
||||
LCMapString(0x804, 0x4000000, lpCaption, strlen(lpCaption), 繁体1, 1024);
|
||||
return MessageBox(hWnd, GB2312ToBIG5((const char *)繁体), GB2312ToBIG5((const char *)繁体1), uType);
|
||||
}
|
||||
else{
|
||||
return MessageBox(hWnd, lpText, lpCaption, uType);
|
||||
@ -97,27 +97,27 @@ int MessageBoxNew(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType)
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------//
|
||||
// ?? :?????<EFBFBD>?<3F>? //
|
||||
// ?? :??????? //
|
||||
//---------------------------------------------------------------------------//
|
||||
HINSTANCE hInst; // ??????????<EFBFBD>?
|
||||
HINSTANCE hInst; // ???????????
|
||||
HWND hWnd; // ?????????
|
||||
int CmdShow; // WinMain??????????????
|
||||
LPSTR CmdLine; // WinMain?????????????????????
|
||||
HANDLE hMutex; // <EFBFBD>??<3F>???????????????
|
||||
HANDLE hCheckMutex = NULL; // 给更新程式检查用的
|
||||
HANDLE hMutex; // ?????????????????
|
||||
HANDLE hCheckMutex = NULL; // 给更新程式检查用的
|
||||
|
||||
//BOOL WindowMode = TRUE; // ????????
|
||||
BOOL WindowMode = TRUE; // ??????????
|
||||
// TRUE : WindowMode
|
||||
// FALSE : FullScreen
|
||||
BOOL NoDelay = FALSE; // TCP_NODELAY ?<EFBFBD>??????add by ringo
|
||||
BOOL NoDelay = FALSE; // TCP_NODELAY ???????add by ringo
|
||||
#ifdef _NEW_RESOMODE
|
||||
//解析度模式( 0 : 640 * 480 , 1 : 320 * 240 ,2 : 640 * 480, 3 : 800 * 600 , 4 : 1024 * 768 )
|
||||
//解析度模式( 0 : 640 * 480 , 1 : 320 * 240 ,2 : 640 * 480, 3 : 800 * 600 , 4 : 1024 * 768 )
|
||||
int ResoMode = 3;
|
||||
#else
|
||||
int ResoMode = 0;
|
||||
#endif
|
||||
int LowResoCmdFlag = 0; // ??<EFBFBD><EFBFBD>????????
|
||||
int LowResoCmdFlag = 0; // ??????????
|
||||
|
||||
RECT g_clientRect;
|
||||
POINT g_clientPoint;
|
||||
@ -145,14 +145,14 @@ extern int MouseCursorFlag;
|
||||
#endif
|
||||
|
||||
void GetSettings();
|
||||
/* ????????<EFBFBD> */
|
||||
/* ???????? */
|
||||
void AnalyzeCmdLine(void);
|
||||
// ????????<EFBFBD>?<3F>???<3F>?
|
||||
// ?????????????
|
||||
void ChangeWindowMode(void);
|
||||
// ??<EFBFBD>???<3F><>??
|
||||
// ???????
|
||||
void SetResoMode(int Mode);
|
||||
|
||||
// ?????????<EFBFBD><EFBFBD>
|
||||
// ?????????
|
||||
WNDCLASS wndclass;
|
||||
|
||||
HANDLE hProcessSnap = NULL, hParentProcess = NULL;
|
||||
@ -169,7 +169,7 @@ CTalkWindow TalkWindow;
|
||||
#endif
|
||||
|
||||
|
||||
char 标题名[256];
|
||||
char 标题名[256];
|
||||
int getMAC(char * mac)
|
||||
{
|
||||
NCB ncb;
|
||||
@ -233,11 +233,11 @@ int getMAC(char * mac)
|
||||
return 0;
|
||||
}
|
||||
|
||||
char 机器数据[512];
|
||||
char 机器数据[512];
|
||||
|
||||
void 获取机器码()
|
||||
void 获取机器码()
|
||||
{
|
||||
HANDLE m_hMapFile = OpenFileMapping( //获得共享内存句柄
|
||||
HANDLE m_hMapFile = OpenFileMapping( //获得共享内存句柄
|
||||
FILE_MAP_READ | FILE_MAP_WRITE,
|
||||
FALSE,
|
||||
#ifdef _SA_VERSION_25
|
||||
@ -245,66 +245,66 @@ void
|
||||
#endif
|
||||
|
||||
if (m_hMapFile == NULL){
|
||||
HANDLE m_hMapFile = CreateFileMapping( //创建一个有名的共享内存
|
||||
(HANDLE)0xFFFFFFFF, //0xFFFFFFFF表示创建一个进程间共享的对象
|
||||
HANDLE m_hMapFile = CreateFileMapping( //创建一个有名的共享内存
|
||||
(HANDLE)0xFFFFFFFF, //0xFFFFFFFF表示创建一个进程间共享的对象
|
||||
NULL,
|
||||
PAGE_READWRITE, //读写共享
|
||||
PAGE_READWRITE, //读写共享
|
||||
0,
|
||||
1032, //共享区间大小4096
|
||||
1032, //共享区间大小4096
|
||||
#ifdef _SA_VERSION_25
|
||||
"shiqies");
|
||||
#endif
|
||||
|
||||
char *str = (char *)MapViewOfFile( //映射到本进程的地址空间
|
||||
char *str = (char *)MapViewOfFile( //映射到本进程的地址空间
|
||||
m_hMapFile,
|
||||
FILE_MAP_ALL_ACCESS,
|
||||
0,
|
||||
0,
|
||||
0);
|
||||
memset(str, 0, 1032);
|
||||
memset(机器数据, 0, 512);
|
||||
memset(机器数据, 0, 512);
|
||||
char userName[MAX_PATH];
|
||||
DWORD size = MAX_PATH;
|
||||
char mac[64];
|
||||
GetComputerName(userName, &size);
|
||||
getMAC(mac);
|
||||
sprintf_s(机器数据, "%s%s", mac, userName);
|
||||
memcpy(str, 机器数据, 512);
|
||||
sprintf_s(机器数据, "%s%s", mac, userName);
|
||||
memcpy(str, 机器数据, 512);
|
||||
}
|
||||
else{
|
||||
char *str = (char *)MapViewOfFile( //映射到本进程的地址空间
|
||||
char *str = (char *)MapViewOfFile( //映射到本进程的地址空间
|
||||
m_hMapFile,
|
||||
FILE_MAP_ALL_ACCESS,
|
||||
0,
|
||||
0,
|
||||
0);
|
||||
memcpy(机器数据, str, 512);
|
||||
memcpy(机器数据, str, 512);
|
||||
}
|
||||
}
|
||||
|
||||
BOOL 文件判断(char * path,char * name)
|
||||
BOOL 文件判断(char * path,char * name)
|
||||
{
|
||||
char 文件路径[256];
|
||||
sprintf(文件路径,"%s%s",path,name);
|
||||
BOOL ret = (access(文件路径,0)==0?TRUE:FALSE);
|
||||
char 文件路径[256];
|
||||
sprintf(文件路径,"%s%s",path,name);
|
||||
BOOL ret = (access(文件路径,0)==0?TRUE:FALSE);
|
||||
if(ret){
|
||||
;//MessageBox(NULL,文件路径,"石器时代",0);
|
||||
;//MessageBox(NULL,文件路径,"石器时代",0);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
BOOL 检测按键(char *path)
|
||||
BOOL 检测按键(char *path)
|
||||
{
|
||||
if(文件判断(path,"QMScript") ||
|
||||
文件判断(path,"Recorder.exe") ||
|
||||
文件判断(path,"QMColorActionCtl.ocx") ||
|
||||
文件判断(path,"ShieldModule.dat") ||
|
||||
文件判断(path,"qmacro.ini") ||
|
||||
文件判断(path,"wqm.exe") ||
|
||||
文件判断(path,"Fairy_Ape")||
|
||||
文件判断(path,"LAScriptX.dll")||
|
||||
文件判断(path,"mly.dll")||文件判断(path,"v5_hook.dll")||文件判断(path,"v5_Log.dll")||文件判断(path,"v5_Process_Manager.dll")
|
||||
if(文件判断(path,"QMScript") ||
|
||||
文件判断(path,"Recorder.exe") ||
|
||||
文件判断(path,"QMColorActionCtl.ocx") ||
|
||||
文件判断(path,"ShieldModule.dat") ||
|
||||
文件判断(path,"qmacro.ini") ||
|
||||
文件判断(path,"wqm.exe") ||
|
||||
文件判断(path,"Fairy_Ape")||
|
||||
文件判断(path,"LAScriptX.dll")||
|
||||
文件判断(path,"mly.dll")||文件判断(path,"v5_hook.dll")||文件判断(path,"v5_Log.dll")||文件判断(path,"v5_Process_Manager.dll")
|
||||
){
|
||||
return TRUE;
|
||||
}else{
|
||||
@ -314,13 +314,13 @@ BOOL
|
||||
|
||||
|
||||
|
||||
void 按键检测()
|
||||
void 按键检测()
|
||||
{
|
||||
char szProcessName[MAX_PATH];
|
||||
HMODULE hMods[4096];
|
||||
HANDLE hProcess;
|
||||
DWORD aProcesses[4096], cbNeeded, cbMNeeded;
|
||||
char 路径[256];
|
||||
char 路径[256];
|
||||
int j;
|
||||
if ( !EnumProcesses( aProcesses, sizeof(aProcesses), &cbNeeded ) ) return;
|
||||
|
||||
@ -340,9 +340,9 @@ void
|
||||
break;
|
||||
}
|
||||
}
|
||||
memcpy(路径,szProcessName,i+1);
|
||||
路径[i+1]=0;
|
||||
if(检测按键(路径)){
|
||||
memcpy(路径,szProcessName,i+1);
|
||||
路径[i+1]=0;
|
||||
if(检测按键(路径)){
|
||||
ExitProcess(NULL);
|
||||
}
|
||||
}
|
||||
@ -351,28 +351,28 @@ void
|
||||
return;
|
||||
}
|
||||
|
||||
BOOL IsContainsProcess(char* strProName, BOOL 判断 = 1)
|
||||
BOOL IsContainsProcess(char* strProName, BOOL 判断 = 1)
|
||||
{
|
||||
PROCESSENTRY32 pe32; //定义结构体变量来保存进程的信息
|
||||
pe32.dwSize = sizeof(pe32); //填充大小
|
||||
PROCESSENTRY32 pe32; //定义结构体变量来保存进程的信息
|
||||
pe32.dwSize = sizeof(pe32); //填充大小
|
||||
|
||||
HANDLE hProcessSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);//创建快照
|
||||
HANDLE hProcessSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);//创建快照
|
||||
|
||||
if (hProcessSnap == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
//MessageBox("进程快照失败","提示",MB_OK);
|
||||
//MessageBox("进程快照失败","提示",MB_OK);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
//遍历所有快照
|
||||
//遍历所有快照
|
||||
BOOL bMore = ::Process32First(hProcessSnap, &pe32);
|
||||
while (bMore)
|
||||
{
|
||||
if (判断 == 1){
|
||||
if (判断 == 1){
|
||||
if (strcmp(strProName, pe32.szExeFile) == 0)
|
||||
{
|
||||
return TRUE; //如果存在该进程,则返回TRUE
|
||||
bMore = FALSE;//停止循环
|
||||
return TRUE; //如果存在该进程,则返回TRUE
|
||||
bMore = FALSE;//停止循环
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -382,8 +382,8 @@ BOOL IsContainsProcess(char* strProName, BOOL
|
||||
else{
|
||||
if (strstr(pe32.szExeFile, strProName))
|
||||
{
|
||||
return TRUE; //如果存在该进程,则返回TRUE
|
||||
bMore = FALSE;//停止循环
|
||||
return TRUE; //如果存在该进程,则返回TRUE
|
||||
bMore = FALSE;//停止循环
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -391,7 +391,7 @@ BOOL IsContainsProcess(char* strProName, BOOL
|
||||
}
|
||||
}
|
||||
}
|
||||
//扫尾
|
||||
//扫尾
|
||||
CloseHandle(hProcessSnap);
|
||||
return FALSE;
|
||||
}
|
||||
@ -431,7 +431,7 @@ bool IsInsideVPC()
|
||||
return rc;
|
||||
}
|
||||
|
||||
BOOL 检测WARE()
|
||||
BOOL 检测WARE()
|
||||
{
|
||||
HKEY key;
|
||||
unsigned char buffer[512];
|
||||
@ -584,8 +584,8 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
|
||||
#ifdef _NODEBUG_
|
||||
VMProtectBegin("jiance111");
|
||||
extern void 按键检测();
|
||||
按键检测();
|
||||
extern void 按键检测();
|
||||
按键检测();
|
||||
if (
|
||||
(IsContainsProcess("VBoxTray.exe")) ||
|
||||
(IsContainsProcess("SbieSvc.exe")) ||
|
||||
@ -597,39 +597,39 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
(IsContainsProcess("vmtoolsd.exe")) ||
|
||||
(IsContainsProcess("vmacthlp.exe")) ||
|
||||
IsInsideVPC()||
|
||||
IsContainsProcess("多窗口", 0) ||
|
||||
IsContainsProcess("变速", 0)||
|
||||
IsContainsProcess("宇宙", 0)
|
||||
IsContainsProcess("多窗口", 0) ||
|
||||
IsContainsProcess("变速", 0)||
|
||||
IsContainsProcess("宇宙", 0)
|
||||
){
|
||||
return FALSE;
|
||||
}
|
||||
if (检测WARE()){
|
||||
if (检测WARE()){
|
||||
return FALSE;
|
||||
}
|
||||
VMProtectEnd();
|
||||
#endif
|
||||
编码 = GetACP();
|
||||
if (编码 == 950)
|
||||
编码 = GetACP();
|
||||
if (编码 == 950)
|
||||
{
|
||||
strcpy(标题名, GB2312ToBIG5(DEF_APPNAME));
|
||||
strcpy(标题名, GB2312ToBIG5(DEF_APPNAME));
|
||||
}
|
||||
获取机器码();
|
||||
获取机器码();
|
||||
hInst = hInstance;
|
||||
CmdShow = nCmdShow;
|
||||
CmdLine = lpCmdLine;
|
||||
#ifdef _REMAKE_20
|
||||
#ifndef _STONDEBUG_
|
||||
if(编码==950)
|
||||
hMutex = CreateMutex( NULL, TRUE, 标题名 );
|
||||
if(编码==950)
|
||||
hMutex = CreateMutex( NULL, TRUE, 标题名 );
|
||||
else
|
||||
hMutex = CreateMutex( NULL, TRUE, DEF_APPNAME );
|
||||
if(GetLastError() == ERROR_ALREADY_EXISTS){
|
||||
MessageBoxNew(hWnd,"StoneAge已经起动了!","确定",MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd,"StoneAge已经起动了!","确定",MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
// 建立一个核心物件,让更新程式可以判断是否有石器正在执行
|
||||
// 建立一个核心物件,让更新程式可以判断是否有石器正在执行
|
||||
hCheckMutex = CreateMutex(NULL, FALSE, "CheckForUpdate");
|
||||
|
||||
#ifdef _STONDEBUG_
|
||||
@ -694,8 +694,8 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
// else break;
|
||||
// }
|
||||
if(!checkclientflg) {
|
||||
// sprintf_s(strname, "游戏限制%d开!", _DEFENSETOOENNUM_);
|
||||
sprintf_s(strname, "游戏限制2开!");
|
||||
// sprintf_s(strname, "游戏限制%d开!", _DEFENSETOOENNUM_);
|
||||
sprintf_s(strname, "游戏限制2开!");
|
||||
#ifdef _VMP_
|
||||
MessageBoxNew(NULL,VMProtectDecryptStringA(strname), DEF_APPNAME, MB_OK | MB_ICONSTOP);
|
||||
#else
|
||||
@ -718,13 +718,13 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
wndclass.hCursor = LoadCursor(hInstance, MAKEINTRESOURCE(SA_MOUSE1));
|
||||
wndclass.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
|
||||
wndclass.lpszMenuName = NULL;
|
||||
if (编码 == 950)
|
||||
wndclass.lpszClassName = 标题名;
|
||||
if (编码 == 950)
|
||||
wndclass.lpszClassName = 标题名;
|
||||
else
|
||||
wndclass.lpszClassName = DEF_APPNAME;
|
||||
if (!RegisterClass(&wndclass)){
|
||||
MessageBoxNew(NULL, "初始化视窗失败!\n,请执行重新安装或洽询客服人员!",
|
||||
"确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(NULL, "初始化视窗失败!\n,请执行重新安装或洽询客服人员!",
|
||||
"确定", MB_OK | MB_ICONSTOP);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
@ -750,13 +750,13 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
#endif
|
||||
|
||||
#ifdef _NEWSHOP_
|
||||
extern void 商城初始化();
|
||||
商城初始化();
|
||||
extern void 商城初始化();
|
||||
商城初始化();
|
||||
#endif
|
||||
#ifdef _AIDENGLU_
|
||||
PcLanded.大区 = PcLanded.人物 = PcLanded.小区 = PcLanded.队模 = -1;
|
||||
PcLanded.是否自动喊话 = PcLanded.是否自动遇敌 = PcLanded.人物方向 = PcLanded.登陆延时时间 = FALSE;
|
||||
memset(PcLanded.登陆人物名称, 0, 4 * 32);
|
||||
PcLanded.大区 = PcLanded.人物 = PcLanded.小区 = PcLanded.队模 = -1;
|
||||
PcLanded.是否自动喊话 = PcLanded.是否自动遇敌 = PcLanded.人物方向 = PcLanded.登陆延时时间 = FALSE;
|
||||
memset(PcLanded.登陆人物名称, 0, 4 * 32);
|
||||
#endif
|
||||
|
||||
|
||||
@ -788,7 +788,7 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
if(g_iMallocCount != 0){
|
||||
char MSG[256];
|
||||
sprintf_s(MSG,"g_iMallocCount = %d",g_iMallocCount);
|
||||
MessageBoxNew( NULL,MSG,"确定", MB_OK | MB_ICONSTOP );
|
||||
MessageBoxNew( NULL,MSG,"确定", MB_OK | MB_ICONSTOP );
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -798,7 +798,7 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
|
||||
|
||||
|
||||
|
||||
// ???????<EFBFBD> ***********************************************************/
|
||||
// ??????? ***********************************************************/
|
||||
void DebugKey(char *str)
|
||||
{
|
||||
char *work;
|
||||
@ -807,7 +807,7 @@ void DebugKey(char *str)
|
||||
// ????????????? key0: ?????
|
||||
if ((work = strstr(str, "KEY0:")))
|
||||
{
|
||||
work += 5; // <EFBFBD>??????????????<3F>??
|
||||
work += 5; // ????????????????
|
||||
// : ????????
|
||||
while (*work != ':'){
|
||||
DebugKey0[i] = *work++;
|
||||
@ -818,12 +818,12 @@ void DebugKey(char *str)
|
||||
}
|
||||
}
|
||||
}
|
||||
DebugKey0[i] = NULL; // <EFBFBD><EFBFBD>??
|
||||
DebugKey0[i] = NULL; // ??
|
||||
i = 0;
|
||||
// ????????????? key1: ?????
|
||||
if ((work = strstr(str, "KEY1:")))
|
||||
{
|
||||
work += 5; // <EFBFBD>??????????????<3F>??
|
||||
work += 5; // ????????????????
|
||||
// : ????????
|
||||
while (*work != ':'){
|
||||
DebugKey1[i] = *work++;
|
||||
@ -834,12 +834,12 @@ void DebugKey(char *str)
|
||||
}
|
||||
}
|
||||
}
|
||||
DebugKey1[i] = NULL; // <EFBFBD><EFBFBD>??
|
||||
DebugKey1[i] = NULL; // ??
|
||||
i = 0;
|
||||
// ????????????? key1: ?????
|
||||
if ((work = strstr(str, "KEY2:")))
|
||||
{
|
||||
work += 5; // <EFBFBD>??????????????<3F>??
|
||||
work += 5; // ????????????????
|
||||
// : ????????
|
||||
while (*work != ':'){
|
||||
DebugKey2[i] = *work++;
|
||||
@ -850,7 +850,7 @@ void DebugKey(char *str)
|
||||
}
|
||||
}
|
||||
}
|
||||
DebugKey2[i] = NULL; // <EFBFBD><EFBFBD>??
|
||||
DebugKey2[i] = NULL; // ??
|
||||
}
|
||||
|
||||
|
||||
@ -862,7 +862,7 @@ void AnalyzeCmdLine(void)
|
||||
VMProtectBegin("AnalyzeCmdLine");
|
||||
#endif
|
||||
if (!(addr = strstr(CmdLine, "OpenClient"))){
|
||||
MessageBoxNew(NULL, "请使用启动器登陆游戏", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(NULL, "请使用启动器登陆游戏", "确定", MB_OK | MB_ICONSTOP);
|
||||
exit(0);
|
||||
}
|
||||
#ifdef _VMP_
|
||||
@ -975,10 +975,10 @@ void ChangeWindowMode(void)
|
||||
SetRect(&clientRect, 0, 0, lpDraw->xSize, lpDraw->ySize);
|
||||
AdjustWindowRectEx(&clientRect, windowStyle, FALSE, NULL);
|
||||
if (hWnd == NULL){
|
||||
if (编码 == 950)
|
||||
if (编码 == 950)
|
||||
hWnd = CreateWindowEx(NULL,
|
||||
标题名,
|
||||
标题名,
|
||||
标题名,
|
||||
标题名,
|
||||
windowStyle,
|
||||
//CW_USEDEFAULT,
|
||||
//CW_USEDEFAULT,
|
||||
@ -1008,11 +1008,11 @@ void ChangeWindowMode(void)
|
||||
NULL);
|
||||
}
|
||||
else{
|
||||
// ??????????<EFBFBD>?
|
||||
// ???????????
|
||||
SetWindowLong(hWnd, GWL_STYLE, windowStyle);
|
||||
// ?<EFBFBD>????????<3F><>
|
||||
// ?????????
|
||||
ShowWindow(hWnd, CmdShow);
|
||||
// ???????<EFBFBD>?????<3F>?
|
||||
// ?????????????
|
||||
SetWindowPos(hWnd,
|
||||
HWND_NOTOPMOST,
|
||||
0,
|
||||
@ -1022,35 +1022,35 @@ void ChangeWindowMode(void)
|
||||
//SWP_SHOWWINDOW );
|
||||
SWP_FRAMECHANGED);
|
||||
}
|
||||
// ?<EFBFBD>????????<3F><>
|
||||
// ?????????
|
||||
ShowWindow(hWnd, CmdShow);
|
||||
// ??????<EFBFBD><EFBFBD>?<3F>
|
||||
// ???????
|
||||
UpdateWindow(hWnd);
|
||||
}
|
||||
|
||||
// ?????????????? **********************************************************/
|
||||
void RecoverDirectDraw(void)
|
||||
{
|
||||
// DirectDraw ?<EFBFBD>
|
||||
// DirectDraw ?
|
||||
ReleaseDirectDraw();
|
||||
// ??<EFBFBD>???<3F><>
|
||||
// ?????
|
||||
SetResoMode(ResoMode);
|
||||
// DirectDraw ???
|
||||
if (InitDirectDraw() == FALSE){
|
||||
MessageBoxNew(hWnd, "Direct 初始化失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "Direct 初始化失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
// ???????? WM_CLOSE ??????????
|
||||
PostMessage(hWnd, WM_CLOSE, 0, 0L);
|
||||
}
|
||||
// ????????<EFBFBD>?<3F>?
|
||||
// ??????????
|
||||
//ChangeWindowMode();
|
||||
// ??????????????<EFBFBD>
|
||||
// ??????????????
|
||||
InitOffScreenSurface();
|
||||
// ???????
|
||||
if (InitPalette() == FALSE){
|
||||
MessageBoxNew(hWnd, "色盘 初始化失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "色盘 初始化失败!", "确定", MB_OK | MB_ICONSTOP);
|
||||
PostMessage(hWnd, WM_CLOSE, 0, 0L);
|
||||
}
|
||||
// ??????<EFBFBD>????????????????<3F>
|
||||
// ??????????????????????
|
||||
if (ProcNo == PROC_BATTLE){
|
||||
// ???????
|
||||
DispBuffer.DispCnt = 0;
|
||||
@ -1082,25 +1082,25 @@ void RecoverDirectDraw(void)
|
||||
else
|
||||
if (fastDrawTile && ProcNo == PROC_GAME)
|
||||
{
|
||||
repairMap(); // ????䴘?<3F>?
|
||||
repairMap(); // ??????
|
||||
}
|
||||
// ??????????????
|
||||
if (lpDraw->lpPALETTE != NULL){
|
||||
// ??????????
|
||||
if (WindowMode){
|
||||
// ?<EFBFBD>??????????<3F>??
|
||||
// ?????????????
|
||||
lpDraw->lpPALETTE->SetEntries(0, 0, 256, Palette);
|
||||
}
|
||||
}
|
||||
// ???????<EFBFBD>?????
|
||||
// ????????????
|
||||
mouse.state = MOUSE_NO_CRICK;
|
||||
mouse.onceState = MOUSE_NO_CRICK;
|
||||
// ???<EFBFBD>?<3F>????
|
||||
// ????????
|
||||
NowTime = TimeGetTime();
|
||||
}
|
||||
//---------------------------------------------------------------------------//
|
||||
// ?? :???????????? //
|
||||
// ?? :?? //
|
||||
// ?? :???????????? //
|
||||
// ?? :?? //
|
||||
//---------------------------------------------------------------------------//
|
||||
BOOL SystemTask(void)
|
||||
{
|
||||
@ -1115,11 +1115,11 @@ BOOL SystemTask(void)
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------//
|
||||
// ?? :?????????????? //
|
||||
// ?? :HWND hWnd: ??????<EFBFBD><EFBFBD>???? //
|
||||
// UINT Message: ????<EFBFBD>?????? //
|
||||
// WPARAM wParam: ????<EFBFBD>??????<3F><><EFBFBD>⿳? //
|
||||
// LPARAM lParam: ????<EFBFBD>??????<3F><><EFBFBD>⿳? //
|
||||
// ?? :?????????????? //
|
||||
// ?? :HWND hWnd: ?????????? //
|
||||
// UINT Message: ?????????? //
|
||||
// WPARAM wParam: ??????????? //
|
||||
// LPARAM lParam: ??????????? //
|
||||
//---------------------------------------------------------------------------//
|
||||
#ifdef _REMAKE_20
|
||||
extern short mouseCursorMode;
|
||||
@ -1129,12 +1129,12 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
switch (Message){
|
||||
#ifdef _REMAKE_20
|
||||
case WM_TIMER:
|
||||
// 重设8253晶片的clock
|
||||
// 重设8253晶片的clock
|
||||
RestoreCounter(1196);
|
||||
break;
|
||||
#endif
|
||||
/** ??????????? *****************************************************/
|
||||
case WM_ACTIVATE: // ??????????????????<EFBFBD>??????????
|
||||
case WM_ACTIVATE: // ????????????????????????????
|
||||
#ifdef SA_25
|
||||
static BOOL bInactive = FALSE;
|
||||
if( bInactive && (LOWORD(wParam) == WA_ACTIVE || LOWORD(wParam) == WA_CLICKACTIVE)){
|
||||
@ -1164,19 +1164,19 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
if (lpDraw->lpPALETTE != NULL){
|
||||
// ??????????
|
||||
if (WindowMode){
|
||||
// ?<EFBFBD>??????????<3F>??
|
||||
// ?????????????
|
||||
lpDraw->lpPALETTE->SetEntries(0, 0, 256, Palette);
|
||||
}
|
||||
}
|
||||
}
|
||||
//???????????<EFBFBD><EFBFBD>
|
||||
//?????OK??
|
||||
if (keyboad_flg == TRUE){ //?????OK??
|
||||
//???????????
|
||||
//?????OK??
|
||||
if (keyboad_flg == TRUE){ //?????OK??
|
||||
// ????????????????
|
||||
if (pDInputDevice != NULL){
|
||||
// ??????<EFBFBD>???????????
|
||||
// ?????????????????
|
||||
if (wParam == WA_INACTIVE){
|
||||
// DInput <EFBFBD><EFBFBD>
|
||||
// DInput
|
||||
DInputActiveFlag = FALSE;
|
||||
// ??????????
|
||||
for (int i = 0; i < 256; i++) di_key[i] = 0;
|
||||
@ -1190,15 +1190,15 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
}
|
||||
}
|
||||
|
||||
//????????OK??
|
||||
//????????OK??
|
||||
if (joy_flg == TRUE){
|
||||
// ???????????????????
|
||||
if (pDInputDevice2 == NULL)
|
||||
break;
|
||||
|
||||
// ??????<EFBFBD>???????????
|
||||
// ?????????????????
|
||||
if (wParam == WA_INACTIVE){
|
||||
// DInput <EFBFBD><EFBFBD>
|
||||
// DInput
|
||||
DInputActiveFlag = FALSE;
|
||||
pDInputDevice2->Unacquire();
|
||||
}
|
||||
@ -1209,18 +1209,18 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
}
|
||||
}
|
||||
break;
|
||||
case WM_CLOSE: // ?????<EFBFBD>????
|
||||
DestroyWindow(hWnd); // ??????<EFBFBD>????<3F>??
|
||||
case WM_CLOSE: // ?????????
|
||||
DestroyWindow(hWnd); // ????????????
|
||||
// WM_DESTROY ??????????
|
||||
break;
|
||||
case WM_DESTROY: // ??????<EFBFBD>??????
|
||||
case WM_DESTROY: // ????????????
|
||||
|
||||
PostQuitMessage(0); // WM_QUIT ???????? ( ???<EFBFBD>? )
|
||||
PostQuitMessage(0); // WM_QUIT ???????? ( ???? )
|
||||
break;
|
||||
#ifdef _REMAKE_20
|
||||
#ifndef _STONDEBUG_
|
||||
case WM_ACTIVATEAPP:
|
||||
// 如果被切到别的视窗,离开游戏
|
||||
// 如果被切到别的视窗,离开游戏
|
||||
if(!wParam){
|
||||
SendMessage(hWnd,WM_CLOSE,0,0);
|
||||
}
|
||||
@ -1229,32 +1229,32 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
#endif
|
||||
|
||||
#if 0
|
||||
case WM_PALETTECHANGED: // ?????<EFBFBD>??????
|
||||
case WM_PALETTECHANGED: // ???????????
|
||||
// DirectDraw??????????
|
||||
if( lpDraw == NULL ) break;
|
||||
// ??????????????
|
||||
if( lpDraw->lpPALETTE == NULL ) break;
|
||||
// ??????????
|
||||
//if( WindowMode ){
|
||||
// ?<EFBFBD>??????????<3F>??
|
||||
// ?????????????
|
||||
lpDraw->lpPALETTE->SetEntries( 0, 0, 256, Palette );
|
||||
//}
|
||||
break;
|
||||
//if( (HWND)wParam == hWnd ) break;
|
||||
|
||||
case WM_PALETTEISCHANGING: // ?????<EFBFBD>??????
|
||||
case WM_PALETTEISCHANGING: // ???????????
|
||||
// DirectDraw??????????
|
||||
if( lpDraw == NULL ) break;
|
||||
// ??????????????
|
||||
if( lpDraw->lpPALETTE == NULL ) break;
|
||||
// ??????????
|
||||
//if( WindowMode ){
|
||||
// ?<EFBFBD>??????????<3F>??
|
||||
// ?????????????
|
||||
lpDraw->lpPALETTE->SetEntries( 0, 0, 256, Palette );
|
||||
//}
|
||||
break;
|
||||
|
||||
case WM_QUERYNEWPALETTE: // ????<EFBFBD>????????????????????
|
||||
case WM_QUERYNEWPALETTE: // ????????????????????????
|
||||
|
||||
// DirectDraw??????????
|
||||
if( lpDraw == NULL ) break;
|
||||
@ -1263,16 +1263,16 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
|
||||
// ??????????
|
||||
//if( WindowMode ){
|
||||
// ?<EFBFBD>??????????<3F>??
|
||||
// ?????????????
|
||||
lpDraw->lpPALETTE->SetEntries( 0, 0, 256, Palette );
|
||||
//}
|
||||
|
||||
break;
|
||||
#endif
|
||||
|
||||
/** ??<EFBFBD>?????? *****************************************************/
|
||||
/** ???????? *****************************************************/
|
||||
|
||||
case WM_KEYDOWN: // ??<EFBFBD>???
|
||||
case WM_KEYDOWN: // ?????
|
||||
|
||||
if (SurfaceBusyFlag == TRUE){
|
||||
SurfaceBusyFlag = FALSE;
|
||||
@ -1322,7 +1322,7 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
break;
|
||||
#ifdef _REMAKE_20
|
||||
case WM_HOTKEY:
|
||||
// 如果被切到别的视窗,离开游戏
|
||||
// 如果被切到别的视窗,离开游戏
|
||||
SendMessage(hWnd,WM_CLOSE,0,0);
|
||||
break;
|
||||
#endif
|
||||
@ -1330,25 +1330,25 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
// ???????????
|
||||
if (SurfaceBusyFlag == TRUE){
|
||||
SurfaceBusyFlag = FALSE;
|
||||
MessageBoxNew(hWnd, "SurfaceBusyFlag error!", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "SurfaceBusyFlag error!", "确定", MB_OK | MB_ICONSTOP);
|
||||
RecoverDirectDraw();
|
||||
}
|
||||
switch (wParam){
|
||||
case VK_RETURN:
|
||||
#ifdef _REMAKE_20
|
||||
#ifndef _STONDEBUG_
|
||||
// 缩成视窗模式离开游戏
|
||||
// 缩成视窗模式离开游戏
|
||||
SendMessage(hWnd,WM_CLOSE,0,0);
|
||||
break;
|
||||
#endif
|
||||
#else
|
||||
// ?<EFBFBD>??<3F>??
|
||||
// ?????
|
||||
if (BackBufferDrawType == DRAW_BACK_PRODUCE) break;
|
||||
|
||||
// DirectDraw??????????
|
||||
if (lpDraw == NULL) break;
|
||||
|
||||
// ???????????<EFBFBD>?
|
||||
// ????????????
|
||||
if (WindowMode == TRUE) WindowMode = FALSE;
|
||||
else WindowMode = TRUE;
|
||||
#ifdef _TALK_WINDOW
|
||||
@ -1359,19 +1359,19 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
#endif
|
||||
ChangeMode(WindowMode);
|
||||
|
||||
// DirectDraw ?<EFBFBD>
|
||||
// DirectDraw ?
|
||||
ReleaseDirectDraw();
|
||||
|
||||
// ??<EFBFBD>???<3F><>
|
||||
// ?????
|
||||
SetResoMode(ResoMode);
|
||||
|
||||
// DirectDraw ???
|
||||
InitDirectDraw();
|
||||
// ??????????????<EFBFBD>
|
||||
// ??????????????
|
||||
InitOffScreenSurface();
|
||||
// ????????<EFBFBD>?<3F>?
|
||||
// ??????????
|
||||
ChangeWindowMode();
|
||||
// <EFBFBD>???????<3F>???
|
||||
// ??????????
|
||||
//SendMessage( HWND_BROADCAST, WM_PAINT, NULL, NULL );
|
||||
|
||||
// ???????
|
||||
@ -1379,7 +1379,7 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
//PostMessage( hWnd, WM_CLOSE, 0, 0L );
|
||||
PostMessage(hWnd, WM_SYSKEYDOWN, VK_RETURN, 0L);
|
||||
}
|
||||
// ??????<EFBFBD>????????????????<3F>
|
||||
// ??????????????????????
|
||||
if (ProcNo == PROC_BATTLE){
|
||||
// ???????
|
||||
DispBuffer.DispCnt = 0;
|
||||
@ -1411,20 +1411,20 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
else
|
||||
if (fastDrawTile && ProcNo == PROC_GAME)
|
||||
{
|
||||
repairMap(); // ????䴘?<3F>?
|
||||
repairMap(); // ??????
|
||||
}
|
||||
// ??????????????
|
||||
if (lpDraw->lpPALETTE != NULL){
|
||||
// ??????????
|
||||
if (WindowMode){
|
||||
// ?<EFBFBD>??????????<3F>??
|
||||
// ?????????????
|
||||
lpDraw->lpPALETTE->SetEntries(0, 0, 256, Palette);
|
||||
}
|
||||
}
|
||||
// ???????<EFBFBD>?????
|
||||
// ????????????
|
||||
mouse.state = MOUSE_NO_CRICK;
|
||||
mouse.onceState = MOUSE_NO_CRICK;
|
||||
// ???<EFBFBD>?<3F>????
|
||||
// ????????
|
||||
NowTime = TimeGetTime();
|
||||
break;
|
||||
#endif
|
||||
@ -1436,17 +1436,17 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case WM_CHAR: // <EFBFBD>?<3F>???
|
||||
// <EFBFBD>?????????
|
||||
case WM_CHAR: // ????
|
||||
// ?????????
|
||||
StockStrBufferChar((char)wParam);
|
||||
break;
|
||||
case WM_MOUSEMOVE: // ????<EFBFBD>????
|
||||
case WM_MOUSEMOVE: // ????????
|
||||
//SetCursor( wndclass.hCursor );
|
||||
// ????????<EFBFBD>?????
|
||||
// ?????????????
|
||||
MouseNowPoint(LOWORD(lParam), HIWORD(lParam));
|
||||
#ifndef _TALK_WINDOW
|
||||
if (mouse.flag == TRUE){
|
||||
ShowCursor(FALSE); // ????????<EFBFBD>?
|
||||
ShowCursor(FALSE); // ?????????
|
||||
mouse.flag = FALSE;
|
||||
}
|
||||
#else
|
||||
@ -1465,15 +1465,15 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
RecoverDirectDraw();
|
||||
}
|
||||
break;
|
||||
case WM_NCMOUSEMOVE: // ?????????????<EFBFBD>??
|
||||
// ???????<EFBFBD>?????
|
||||
case WM_NCMOUSEMOVE: // ???????????????
|
||||
// ????????????
|
||||
mouse.state = MOUSE_NO_CRICK;
|
||||
mouse.onceState = MOUSE_NO_CRICK;
|
||||
if (mouse.flag == FALSE){
|
||||
#ifdef _TALK_WINDOW
|
||||
g_iCursorCount = ShowCursor( TRUE );
|
||||
#else
|
||||
ShowCursor(TRUE); // ????????<EFBFBD><EFBFBD>
|
||||
ShowCursor(TRUE); // ????????
|
||||
#endif
|
||||
mouse.flag = TRUE;
|
||||
}
|
||||
@ -1485,16 +1485,16 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
#endif
|
||||
|
||||
#ifdef _REMAKE_20
|
||||
// 检查使用者是否真的按下滑鼠
|
||||
// 检查使用者是否真的按下滑鼠
|
||||
if(!IsLMouseButtonDown()) mouseCursorMode = 0;
|
||||
else
|
||||
#endif
|
||||
// ???????????????<EFBFBD>?????
|
||||
// ????????????????????
|
||||
MouseCrickLeftDownPoint(LOWORD(lParam), HIWORD(lParam));
|
||||
|
||||
break;
|
||||
case WM_LBUTTONUP: // ?????(????)
|
||||
// ???????????????<EFBFBD>?????
|
||||
// ????????????????????
|
||||
MouseCrickLeftUpPoint(LOWORD(lParam), HIWORD(lParam));
|
||||
break;
|
||||
|
||||
@ -1503,24 +1503,24 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
if (ProcNo == PROC_80_LOGIN)
|
||||
break;
|
||||
#endif
|
||||
// ??????????????????<EFBFBD>?????
|
||||
// ???????????????????????
|
||||
MouseDblCrickLeftUpPoint(LOWORD(lParam), HIWORD(lParam));
|
||||
break;
|
||||
case WM_RBUTTONDOWN: // ?????(????)
|
||||
#ifdef _REMAKE_20
|
||||
// 检查使用者是否真的按下滑鼠
|
||||
// 检查使用者是否真的按下滑鼠
|
||||
if(!IsRMouseButtonDown()) mouseCursorMode = 0;
|
||||
else
|
||||
#endif
|
||||
// ???????????????<EFBFBD>?????
|
||||
// ????????????????????
|
||||
MouseCrickRightDownPoint(LOWORD(lParam), HIWORD(lParam));
|
||||
break;
|
||||
case WM_RBUTTONUP: // ?????(????)
|
||||
// ???????????????<EFBFBD>?????
|
||||
// ????????????????????
|
||||
MouseCrickRightUpPoint(LOWORD(lParam), HIWORD(lParam));
|
||||
break;
|
||||
case WM_RBUTTONDBLCLK: // ????????
|
||||
// ??????????????????<EFBFBD>?????
|
||||
// ???????????????????????
|
||||
MouseDblCrickRightUpPoint(LOWORD(lParam), HIWORD(lParam));
|
||||
break;
|
||||
case WM_MBUTTONDOWN: // ?????(????)
|
||||
@ -1538,8 +1538,8 @@ LRESULT CALLBACK WindMsgProc(HWND hWnd, UINT Message, WPARAM wParam, LPARAM lPar
|
||||
}
|
||||
break;
|
||||
|
||||
//自订Hook Msg传送Type
|
||||
#ifdef _SAHOOK //Syu ADD Hook程式
|
||||
//自订Hook Msg传送Type
|
||||
#ifdef _SAHOOK //Syu ADD Hook程式
|
||||
case UM_KEYEVENT:
|
||||
TCHAR ac[2];
|
||||
BYTE bKeyState[256];
|
||||
@ -1568,7 +1568,7 @@ void SetResoMode(int Mode){
|
||||
ResoMode = Mode;
|
||||
lpDraw = (DIRECT_DRAW *)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (DWORD)sizeof(DIRECT_DRAW));
|
||||
if (lpDraw == NULL){
|
||||
MessageBoxNew(hWnd, "HeapAlloc Error ( DIRECT_DRAW )", "确定", MB_OK | MB_ICONSTOP);
|
||||
MessageBoxNew(hWnd, "HeapAlloc Error ( DIRECT_DRAW )", "确定", MB_OK | MB_ICONSTOP);
|
||||
return;
|
||||
}
|
||||
switch (Mode){
|
||||
@ -1591,7 +1591,7 @@ void SetResoMode(int Mode){
|
||||
DISPLACEMENT_Y = 0;
|
||||
break;
|
||||
case 2:
|
||||
//可变
|
||||
//可变
|
||||
lpDraw->xSize = 640;
|
||||
lpDraw->ySize = 480;
|
||||
SurfaceSizeX = 64;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -33,7 +33,7 @@ short tradeStatus = 0;
|
||||
|
||||
PET pet[MAX_PET];
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
PROFESSION_SKILL profession_skill[MAX_PROFESSION_SKILL];
|
||||
#endif
|
||||
|
||||
@ -104,14 +104,14 @@ void initPcAll(void)
|
||||
memset(&party, 0, sizeof(party));
|
||||
memset(&petSkill, 0, sizeof(petSkill));
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
memset(&profession_skill, 0, sizeof(profession_skill));
|
||||
#endif
|
||||
|
||||
pc.mailPetNo = -1;
|
||||
#ifdef _MORECHARACTERS_
|
||||
extern int 多人物当前页数;
|
||||
getUserSetting(selectPcNo+多人物当前页数*2);
|
||||
extern int 多人物当前页数;
|
||||
getUserSetting(selectPcNo+多人物当前页数*2);
|
||||
#else
|
||||
getUserSetting(selectPcNo);
|
||||
#endif
|
||||
@ -164,7 +164,7 @@ void initPcAll(void)
|
||||
pc.iSceneryNumber = -1;
|
||||
#endif
|
||||
#ifdef _SFUMATO
|
||||
pc.sfumato = 0; // 二次渲染图层色彩
|
||||
pc.sfumato = 0; // 二次渲染图层色彩
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -194,13 +194,13 @@ void initPc(void)
|
||||
{
|
||||
height = 1;
|
||||
}
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
// #ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
// #ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
// setPcParam(pc.name, pc.freeName, pc.level, pc.ridePetName, pc.ridePetLevel, pc.nameColor, walk, height, pc.profession_class, pc.profession_level, pc.profession_exp, pc.profession_skill_point, pc.ptAct->gm_name);
|
||||
// setPcParam(pc.name, pc.freeName, pc.level, pc.ridePetName, pc.ridePetLevel, pc.nameColor, walk, height, pc.profession_class, pc.profession_level, pc.profession_skill_point, pc.ptAct->gm_name);
|
||||
// #else
|
||||
// setPcParam(pc.name, pc.freeName, pc.level, pc.ridePetName, pc.ridePetLevel, pc.nameColor, walk, height, pc.profession_class, pc.profession_level, pc.profession_exp, pc.profession_skill_point);
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
setPcParam(pc.name, pc.freeName, pc.level, pc.ridePetName, pc.ridePetLevel, pc.nameColor, walk, height, pc.profession_class, pc.profession_level, pc.profession_skill_point , pc.herofloor);
|
||||
#else
|
||||
setPcParam(pc.name, pc.freeName, pc.level, pc.ridePetName, pc.ridePetLevel, pc.nameColor, walk, height, pc.profession_class, pc.profession_level, pc.profession_skill_point);
|
||||
@ -219,7 +219,7 @@ void initPc(void)
|
||||
pc.ptAct->hp = pc.hp;
|
||||
pc.ptAct->maxHp = pc.maxHp;
|
||||
|
||||
// ??<EFBFBD>⿳????????????????<3F>
|
||||
// ??????????????????
|
||||
#ifdef MAX_AIRPLANENUM
|
||||
for (i = 0; i < MAX_AIRPLANENUM; i++)
|
||||
#else
|
||||
@ -252,7 +252,7 @@ void initPc(void)
|
||||
}
|
||||
|
||||
|
||||
// PC????<EFBFBD>
|
||||
// PC????
|
||||
void createPc(int graNo, int gx, int gy, int dir)
|
||||
{
|
||||
pc.graNo = graNo;
|
||||
@ -315,12 +315,12 @@ void resetPc(void)
|
||||
pc.ptAct = NULL;
|
||||
}
|
||||
|
||||
// ????????<EFBFBD>????
|
||||
// ????????????
|
||||
delPcLeader();
|
||||
}
|
||||
|
||||
|
||||
// PC?????????<EFBFBD>?<3F><>
|
||||
// PC??????????
|
||||
void setPcGraNo(int graNo, int dir)
|
||||
{
|
||||
pc.graNo = graNo;
|
||||
@ -332,19 +332,19 @@ void setPcGraNo(int graNo, int dir)
|
||||
pc.ptAct->anim_chr_no = graNo;
|
||||
pc.ptAct->anim_ang = dir;
|
||||
#ifdef _SFUMATO
|
||||
pc.ptAct->sfumato = pc.sfumato; // 二次渲染图层色彩
|
||||
pc.ptAct->sfumato = pc.sfumato; // 二次渲染图层色彩
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
// PC???ID?<EFBFBD><EFBFBD>
|
||||
// PC???ID?
|
||||
void setPcId(int id)
|
||||
{
|
||||
pc.id = id;
|
||||
}
|
||||
|
||||
|
||||
// PC??????<EFBFBD><EFBFBD><EFBFBD>
|
||||
// PC??????
|
||||
void setPcWarpPoint(int gx, int gy)
|
||||
{
|
||||
// if(pc.ptAct == NULL)
|
||||
@ -354,7 +354,7 @@ void setPcWarpPoint(int gx, int gy)
|
||||
}
|
||||
|
||||
|
||||
// PC???????<EFBFBD>?<3F>???
|
||||
// PC???????????
|
||||
void setPcPoint(void)
|
||||
{
|
||||
if(pc.ptAct == NULL)
|
||||
@ -372,7 +372,7 @@ void setPcPoint(void)
|
||||
}
|
||||
|
||||
|
||||
// PC???????<EFBFBD><EFBFBD>
|
||||
// PC???????
|
||||
void setPcDir(int dir)
|
||||
{
|
||||
pc.dir = dir;
|
||||
@ -384,7 +384,7 @@ void setPcDir(int dir)
|
||||
}
|
||||
|
||||
|
||||
// ???????<EFBFBD><EFBFBD>
|
||||
// ???????
|
||||
void setPcAction(int act)
|
||||
{
|
||||
if(pc.ptAct == NULL)
|
||||
@ -413,7 +413,7 @@ void setPcEmotion(int emotion)
|
||||
}
|
||||
#endif
|
||||
|
||||
// ????????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
// ????????
|
||||
int getPcAction(void)
|
||||
{
|
||||
if(pc.ptAct == NULL)
|
||||
@ -426,13 +426,13 @@ int getPcAction(void)
|
||||
extern int TalkMode;
|
||||
#endif
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
// #ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
// #ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
// void setPcParam(char *name, char *freeName, int level, char *petname, int petlevel, int nameColor, int walk, int height, int profession_class, int profession_level, int profession_exp, int profession_skill_point , char *gm_name)
|
||||
// void setPcParam(char *name, char *freeName, int level, char *petname, int petlevel, int nameColor, int walk, int height, int profession_class, int profession_level, int profession_skill_point , char *gm_name)
|
||||
// #else
|
||||
// void setPcParam(char *name, char *freeName, int level, char *petname, int petlevel, int nameColor, int walk, int height, int profession_class, int profession_level, int profession_exp, int profession_skill_point)
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
void setPcParam(char *name, char *freeName, int level, char *petname, int petlevel, int nameColor, int walk, int height, int profession_class, int profession_level, int profession_skill_point , int herofloor)
|
||||
#else
|
||||
void setPcParam(char *name, char *freeName, int level, char *petname, int petlevel, int nameColor, int walk, int height, int profession_class, int profession_level, int profession_skill_point)
|
||||
@ -445,7 +445,7 @@ extern int TalkMode;
|
||||
int nameLen;
|
||||
int freeNameLen;
|
||||
int petnameLen;
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
int gmnameLen;
|
||||
#endif
|
||||
nameLen = strlen(name);
|
||||
@ -471,7 +471,7 @@ extern int TalkMode;
|
||||
pc.ridePetLevel = petlevel;
|
||||
|
||||
pc.nameColor = nameColor;
|
||||
if(walk != 0) // ??<EFBFBD>?<3F>??
|
||||
if(walk != 0) // ?????
|
||||
{
|
||||
pc.status |= CHR_STATUS_W;
|
||||
}
|
||||
@ -501,17 +501,17 @@ extern int TalkMode;
|
||||
|
||||
pc.ptAct->itemNameColor = nameColor;
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
pc.profession_class = profession_class;
|
||||
pc.ptAct->profession_class = profession_class;
|
||||
pc.profession_level = profession_level;
|
||||
// pc.profession_exp = profession_exp;
|
||||
pc.profession_skill_point = profession_skill_point;
|
||||
#endif
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
pc.herofloor = herofloor;
|
||||
#endif
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
gmnameLen = strlen(gm_name);
|
||||
if(gmnameLen <= 33){
|
||||
strcpy(pc.ptAct->gm_name, gm_name);
|
||||
@ -529,7 +529,7 @@ extern int TalkMode;
|
||||
}
|
||||
|
||||
|
||||
// PC????<EFBFBD>⿳???????<3F><>????
|
||||
// PC???????????????
|
||||
void updataPcAct(void)
|
||||
{
|
||||
if(pc.ptAct == NULL)
|
||||
@ -547,7 +547,7 @@ void updataPcAct(void)
|
||||
pc.ptAct->hp = pc.hp;
|
||||
pc.ptAct->maxHp = pc.maxHp;
|
||||
#ifdef _SFUMATO
|
||||
pc.ptAct->sfumato = pc.sfumato; // 二次渲染图层色彩
|
||||
pc.ptAct->sfumato = pc.sfumato; // 二次渲染图层色彩
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -580,22 +580,22 @@ void delPcParty(void)
|
||||
}
|
||||
|
||||
|
||||
// PC?????<EFBFBD>??????
|
||||
// PC???????????
|
||||
void setPcWatch(void)
|
||||
{
|
||||
pc.status |= CHR_STATUS_WATCH;
|
||||
}
|
||||
|
||||
|
||||
// PC?????<EFBFBD>??????????
|
||||
// PC???????????????
|
||||
void delPcWatch(void)
|
||||
{
|
||||
pc.status &= (~CHR_STATUS_WATCH);
|
||||
}
|
||||
|
||||
|
||||
// ??<EFBFBD>??????????
|
||||
//?<EFBFBD>?????????????<3F>?<3F>???<3F><>?
|
||||
// ????????????
|
||||
//???????????????????
|
||||
void setPcWalkFlag(void)
|
||||
{
|
||||
if(pc.ptAct == NULL)
|
||||
@ -604,8 +604,8 @@ void setPcWalkFlag(void)
|
||||
pc.ptAct->walkFlag = 1;
|
||||
}
|
||||
|
||||
// ??????<EFBFBD>??????????
|
||||
//?<EFBFBD>?????????????<3F>?<3F>???<3F><>?
|
||||
// ????????????????
|
||||
//???????????????????
|
||||
void delPcWalkFlag(void)
|
||||
{
|
||||
if(pc.ptAct == NULL)
|
||||
@ -615,7 +615,7 @@ void delPcWalkFlag(void)
|
||||
}
|
||||
|
||||
|
||||
// <EFBFBD>?????<3F><>
|
||||
// ?????
|
||||
int checkPcWalkFlag(void)
|
||||
{
|
||||
if(pc.ptAct == NULL)
|
||||
@ -625,21 +625,21 @@ int checkPcWalkFlag(void)
|
||||
}
|
||||
|
||||
|
||||
// <EFBFBD><EFBFBD><EFBFBD>????????
|
||||
// ????????
|
||||
void setPcUseMagic(void)
|
||||
{
|
||||
pc.status |= CHR_STATUS_USE_MAGIC;
|
||||
}
|
||||
|
||||
|
||||
// <EFBFBD><EFBFBD><EFBFBD>????????
|
||||
// ????????
|
||||
void delPcUseMagic(void)
|
||||
{
|
||||
pc.status &= (~CHR_STATUS_USE_MAGIC);
|
||||
}
|
||||
|
||||
|
||||
// PC???<EFBFBD>??<3F>?
|
||||
// PC??????
|
||||
void setPcFukidashi(unsigned int offTime)
|
||||
{
|
||||
CHAREXTRA *ext;
|
||||
@ -653,7 +653,7 @@ void setPcFukidashi(unsigned int offTime)
|
||||
}
|
||||
|
||||
|
||||
// ???????????䦶<EFBFBD>?<3F>?<3F><>
|
||||
// ?????????????
|
||||
void setPcNameColor(int color)
|
||||
{
|
||||
pc.pcNameColor = color;
|
||||
@ -686,13 +686,13 @@ void delPcAngel(void)
|
||||
extern struct Posstruct Positiontable[];
|
||||
#endif
|
||||
|
||||
// PC???<EFBFBD>?<3F>? /////////////////////////////////////////////////////////
|
||||
// PC????? /////////////////////////////////////////////////////////
|
||||
void changePcAct(int x, int y, int dir, int action,
|
||||
int effectno, int effectparam1, int effectparam2)
|
||||
{
|
||||
switch(action)
|
||||
{
|
||||
// ??<EFBFBD><EFBFBD>
|
||||
// ??
|
||||
case 0:
|
||||
#if 0
|
||||
#if 1
|
||||
@ -758,12 +758,12 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
setPcAction(ANIM_STAND);
|
||||
break;
|
||||
|
||||
// <EFBFBD>?<3F>?
|
||||
// ??
|
||||
case 30:
|
||||
setPcDir(dir);
|
||||
break;
|
||||
|
||||
// <EFBFBD>?
|
||||
// ?
|
||||
case 1:
|
||||
setPcAction(ANIM_WALK);
|
||||
break;
|
||||
@ -788,18 +788,18 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
setPcAction(ANIM_DAMAGE);
|
||||
break;
|
||||
|
||||
// ?<EFBFBD>
|
||||
// ?
|
||||
case 5:
|
||||
//setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
setPcAction(ANIM_DEAD);
|
||||
break;
|
||||
|
||||
// ?<EFBFBD><EFBFBD>?
|
||||
// ??
|
||||
case 6:
|
||||
break;
|
||||
|
||||
// ????<EFBFBD>?
|
||||
// ?????
|
||||
case 7:
|
||||
break;
|
||||
|
||||
@ -807,7 +807,7 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
case 8: /* UsedMagic */
|
||||
break;
|
||||
|
||||
// <EFBFBD>??
|
||||
// ??
|
||||
case 10:
|
||||
//setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
@ -821,7 +821,7 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
setPcAction(ANIM_SIT);
|
||||
break;
|
||||
|
||||
// <EFBFBD>?<3F>?
|
||||
// ??
|
||||
case 12:
|
||||
//setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
@ -835,14 +835,14 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
setPcAction(ANIM_HAPPY);
|
||||
break;
|
||||
|
||||
// <EFBFBD>?
|
||||
// ?
|
||||
case 14:
|
||||
//setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
setPcAction(ANIM_ANGRY);
|
||||
break;
|
||||
|
||||
// <EFBFBD>??
|
||||
// ??
|
||||
case 15:
|
||||
//setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
@ -856,7 +856,7 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
setPcAction(ANIM_GUARD);
|
||||
break;
|
||||
|
||||
// <EFBFBD>??<3F>????
|
||||
// ??????
|
||||
case 17:
|
||||
setPcDir(dir);
|
||||
setPcAction(ANIM_WALK);
|
||||
@ -869,26 +869,26 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
setPcAction(ANIM_NOD);
|
||||
break;
|
||||
|
||||
// ??<EFBFBD><EFBFBD>???????
|
||||
// ?????????
|
||||
case 19:
|
||||
//setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
setPcAction(ANIM_STAND);
|
||||
break;
|
||||
|
||||
// <EFBFBD><EFBFBD><EFBFBD>⿳
|
||||
//
|
||||
case 20:
|
||||
setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
break;
|
||||
|
||||
// ????<EFBFBD>⿳
|
||||
// ????
|
||||
case 21:
|
||||
setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
if(effectno == 1)
|
||||
{
|
||||
// ???????<EFBFBD><EFBFBD>
|
||||
// ???????
|
||||
setPcLeader();
|
||||
#if 0
|
||||
if(pc.ptAct != NULL)
|
||||
@ -900,12 +900,12 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
}
|
||||
else
|
||||
{
|
||||
// ???????<EFBFBD>?
|
||||
// ????????
|
||||
delPcLeader();
|
||||
}
|
||||
break;
|
||||
|
||||
// ?<EFBFBD><EFBFBD>⿳
|
||||
// ?
|
||||
case 22:
|
||||
setPcWarpPoint(x, y);
|
||||
setPcDir(dir);
|
||||
@ -919,7 +919,7 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
}
|
||||
break;
|
||||
|
||||
// ???????????䦶<EFBFBD>?<3F>
|
||||
// ????????????
|
||||
case 23:
|
||||
setPcNameColor(effectno);
|
||||
break;
|
||||
@ -982,7 +982,7 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
ext->pActFirework[1] = NULL;
|
||||
}
|
||||
ext->pActFirework[0] = GetAction(PRIO_CHR, 0);
|
||||
ext->pActFirework[0]->damage = effectno; // 借用 damage 来储存 type (effectno = type)
|
||||
ext->pActFirework[0]->damage = effectno; // 借用 damage 来储存 type (effectno = type)
|
||||
ext->pActFirework[0]->anim_chr_no = effectparam1;
|
||||
ext->pActFirework[0]->anim_no = ANIM_STAND;
|
||||
ext->pActFirework[0]->anim_ang = 1;
|
||||
@ -1022,8 +1022,8 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
//changePcAct(x, y, dir, 60 , giver , actionNum , petaction)
|
||||
//changePcAct(int x, int y, int dir, int action,int effectno, int effectparam1, int effectparam2)
|
||||
|
||||
//effectno 传来的值代表施放者的位置编号
|
||||
if(effectparam2 == 3){ //魔法牌
|
||||
//effectno 传来的值代表施放者的位置编号
|
||||
if(effectparam2 == 3){ //魔法牌
|
||||
ext->pActMagiccard[0] = GetAction(PRIO_CHR,0);
|
||||
ext->pActMagiccard[0]->anim_chr_no = effectparam1;
|
||||
ext->pActMagiccard[0]->dispPrio = DISP_PRIO_RESERVE;
|
||||
@ -1034,7 +1034,7 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
ext->pActMagiccard[0]->gx = Positiontable[effectno].petX+1 + x;
|
||||
ext->pActMagiccard[0]->gy = Positiontable[effectno].petY-1 + y;
|
||||
}
|
||||
}else if(effectparam2 == 0){ //被封印或是放弃出牌
|
||||
}else if(effectparam2 == 0){ //被封印或是放弃出牌
|
||||
ext->pActMagiccard[0] = GetAction(PRIO_CHR,0);
|
||||
ext->pActMagiccard[0]->anim_chr_no = 101290;
|
||||
ext->pActMagiccard[0]->dispPrio = DISP_PRIO_RESERVE;
|
||||
@ -1053,14 +1053,14 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
ext->pActMagiccard[i]->gx = Positiontable[effectno].petX + x;
|
||||
ext->pActMagiccard[i]->gy = Positiontable[effectno].petY + y;
|
||||
ext->pActMagiccard[i]->dispPrio = DISP_PRIO_RESERVE;
|
||||
ext->pActMagiccard[i]->anim_ang = dir;//1; //方向
|
||||
ext->pActMagiccard[i]->anim_ang = dir;//1; //方向
|
||||
}
|
||||
|
||||
ext->pActMagiccard[1]->anim_no = ANIM_STAND;
|
||||
|
||||
if(effectparam2 == 1) //宠牌攻击
|
||||
if(effectparam2 == 1) //宠牌攻击
|
||||
ext->pActMagiccard[2]->anim_no = ANIM_ATTACK;
|
||||
else if(effectparam2 == 2) //宠牌防御
|
||||
else if(effectparam2 == 2) //宠牌防御
|
||||
ext->pActMagiccard[2]->anim_no = ANIM_GUARD;
|
||||
}
|
||||
#ifdef _MOVE_SCREEN
|
||||
@ -1082,7 +1082,7 @@ void changePcAct(int x, int y, int dir, int action,
|
||||
}
|
||||
|
||||
|
||||
// ??<EFBFBD>⿳???? /////////////////////////////////////////////////////////
|
||||
// ?????? /////////////////////////////////////////////////////////
|
||||
void clearPartyParam(void)
|
||||
{
|
||||
int i;
|
||||
@ -1097,7 +1097,7 @@ void clearPartyParam(void)
|
||||
{
|
||||
if( party[i].id == pc.id)
|
||||
{
|
||||
// ????<EFBFBD>??????????
|
||||
// ??????????????
|
||||
if(party[i].ptAct != NULL)
|
||||
{
|
||||
party[i].ptAct->bufCount = 0;
|
||||
@ -1106,7 +1106,7 @@ void clearPartyParam(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
// ??????????<EFBFBD>?????<3F>????????
|
||||
// ???????????????????????
|
||||
if((pc.status & CHR_STATUS_LEADER) != 0
|
||||
&& party[i].ptAct != NULL)
|
||||
{
|
||||
@ -1125,7 +1125,7 @@ void clearPartyParam(void)
|
||||
}
|
||||
|
||||
|
||||
// ??<EFBFBD>⿳?ptAct?NULL?<3F>????
|
||||
// ???ptAct?NULL?????
|
||||
void clearPtActPartyParam(void)
|
||||
{
|
||||
int i;
|
||||
@ -1144,7 +1144,7 @@ void clearPtActPartyParam(void)
|
||||
|
||||
|
||||
|
||||
// ???????????<EFBFBD><EFBFBD>???????? /////////////////////////////
|
||||
// ??????????????????? /////////////////////////////
|
||||
int existCharacterListEntry(int index)
|
||||
{
|
||||
if(index < 0 || index >= MAXCHARACTER)
|
||||
@ -1161,7 +1161,7 @@ int existCharacterListEntry(int index)
|
||||
}
|
||||
|
||||
|
||||
// ???????<EFBFBD>?䦶????????
|
||||
// ????????????????
|
||||
int cmpNameCharacterList(char *name)
|
||||
{
|
||||
int i;
|
||||
@ -1178,7 +1178,7 @@ int cmpNameCharacterList(char *name)
|
||||
#ifdef _AIDENGLU_
|
||||
extern Landed PcLanded;
|
||||
#endif
|
||||
// ??????????<EFBFBD><EFBFBD>???????????<3F>?????????????
|
||||
// ??????????????????????????????????
|
||||
int setCharacterList(char *name, char *opt)
|
||||
{
|
||||
int index;
|
||||
@ -1191,7 +1191,7 @@ int setCharacterList(char *name, char *opt)
|
||||
if(index < 0 || index >= MAXCHARACTER)
|
||||
return -1;
|
||||
#ifdef _AIDENGLU_
|
||||
memset(PcLanded.登陆人物名称[index],0,32);
|
||||
memset(PcLanded.登陆人物名称[index],0,32);
|
||||
#endif
|
||||
memset(&chartable[index], 0, sizeof(CHARLISTTABLE));
|
||||
|
||||
@ -1217,13 +1217,13 @@ int setCharacterList(char *name, char *opt)
|
||||
chartable[index].attr[3] = getIntegerToken(opt, '|', 13)/10;
|
||||
chartable[index].login = getIntegerToken(opt, '|', 14);
|
||||
#ifdef _AIDENGLU_
|
||||
strcpy(PcLanded.登陆人物名称[index],name);
|
||||
strcpy(PcLanded.登陆人物名称[index],name);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
// ???????<EFBFBD>?????
|
||||
// ????????????
|
||||
// int index : ???????0 ~ 7
|
||||
int resetCharacterList(int index)
|
||||
{
|
||||
@ -1236,7 +1236,7 @@ int resetCharacterList(int index)
|
||||
}
|
||||
|
||||
|
||||
// ?????<EFBFBD>? /////////////////////////////////////////////////////////
|
||||
// ?????? /////////////////////////////////////////////////////////
|
||||
void getItem(void)
|
||||
{
|
||||
float tmpDir;
|
||||
@ -1244,31 +1244,31 @@ void getItem(void)
|
||||
int dir;
|
||||
static unsigned int piSendTime = 0;
|
||||
|
||||
// ?<EFBFBD>???????????????<3F>????????
|
||||
// ????????????????????????
|
||||
if(windowTypeWN == WINDOW_MESSAGETYPE_ITEMSHOPMENU
|
||||
|| windowTypeWN == WINDOW_MESSAGETYPE_ITEMSHOPMAIN
|
||||
|| windowTypeWN == WINDOW_MESSAGETYPE_LIMITITEMSHOPMAIN)
|
||||
return;
|
||||
|
||||
// <EFBFBD><EFBFBD><EFBFBD>?<3F>????<3F>??????????????
|
||||
// ???????????????????
|
||||
if(ABS(nowGx - mouseMapGx) > 1
|
||||
|| ABS(nowGy - mouseMapGy) > 1)
|
||||
return;
|
||||
|
||||
// <EFBFBD><EFBFBD><EFBFBD>??????<3F>???????????
|
||||
// ?????????????????
|
||||
if(!checkCharObjPoint(mouseMapGx, mouseMapGy,
|
||||
CHAROBJ_TYPE_NPC|CHAROBJ_TYPE_ITEM|CHAROBJ_TYPE_MONEY))
|
||||
// CHAROBJ_TYPE_ITEM|CHAROBJ_TYPE_MONEY))
|
||||
return;
|
||||
|
||||
// ???????<EFBFBD>??<3F>??
|
||||
// ???????????
|
||||
tmpX = (float)(mouseMapGx - nowGx);
|
||||
tmpY = (float)(mouseMapGy - nowGy);
|
||||
tmpDir = Atan(tmpX, tmpY) + 22.5F - 45.0F*3;
|
||||
AdjustDir(&tmpDir);
|
||||
dir = (int)(tmpDir/45);
|
||||
|
||||
// ?<EFBFBD>?<3F>
|
||||
// ??
|
||||
if(piSendTime+FIELD_BTN_PUSH_WAIT < TimeGetTime())
|
||||
{
|
||||
// ??????
|
||||
@ -1334,7 +1334,7 @@ BOOL TalkToNPC(void)
|
||||
|
||||
#endif
|
||||
|
||||
// ?????<EFBFBD>?<3F>? /////////////////////////////////////////////////////
|
||||
// ??????? /////////////////////////////////////////////////////
|
||||
void swapItem(int from, int to)
|
||||
{
|
||||
if(from < 0 || to < 0)
|
||||
@ -1381,7 +1381,7 @@ void swapItem(int from, int to)
|
||||
#endif
|
||||
}
|
||||
|
||||
// <EFBFBD>?<3F>?<3F>??
|
||||
// ????
|
||||
/*void swapInteger(int *a, int *b)
|
||||
{
|
||||
int tmp;
|
||||
@ -1402,7 +1402,7 @@ void swapItem(int from, int to)
|
||||
}*/
|
||||
|
||||
|
||||
// <EFBFBD>???<3F>?<3F>??????255<35>????<3F>???
|
||||
// ??????????255???????
|
||||
/*void swapString(char *a, char *b)
|
||||
{
|
||||
char tmp[256];
|
||||
@ -1416,7 +1416,7 @@ void swapItem(int from, int to)
|
||||
}
|
||||
*/
|
||||
|
||||
// ?<EFBFBD>????????? /////////////////////////////////////////////////
|
||||
// ?????????? /////////////////////////////////////////////////
|
||||
BOOL lookAtAround(void)
|
||||
{
|
||||
float tmpDir;
|
||||
@ -1424,32 +1424,32 @@ BOOL lookAtAround(void)
|
||||
int dir;
|
||||
static unsigned int lSendTime = 0;
|
||||
|
||||
// ?<EFBFBD>???????????????????????
|
||||
// ????????????????????????
|
||||
if(windowTypeWN == WINDOW_MESSAGETYPE_ITEMSHOPMENU
|
||||
|| windowTypeWN == WINDOW_MESSAGETYPE_ITEMSHOPMAIN
|
||||
|| windowTypeWN == WINDOW_MESSAGETYPE_LIMITITEMSHOPMAIN)
|
||||
return FALSE;
|
||||
|
||||
// <EFBFBD><EFBFBD><EFBFBD>?<3F>????<3F>??????????????
|
||||
// ???????????????????
|
||||
if(ABS(nowGx - mouseMapGx) > 2
|
||||
|| ABS(nowGy - mouseMapGy) > 2)
|
||||
return FALSE;
|
||||
|
||||
// <EFBFBD><EFBFBD><EFBFBD>??????<3F>???????????
|
||||
// ?????????????????
|
||||
if(!checkCharObjPoint(mouseMapGx, mouseMapGy, CHAROBJ_TYPE_LOOKAT))
|
||||
return FALSE;
|
||||
|
||||
// ???????<EFBFBD>??<3F>??
|
||||
// ???????????
|
||||
tmpX = (float)(mouseMapGx - nowGx);
|
||||
tmpY = (float)(mouseMapGy - nowGy);
|
||||
if(tmpX == 0 && tmpY == 0) // ?<EFBFBD><EFBFBD>?<3F>?<3F><>?????????<3F>??
|
||||
if(tmpX == 0 && tmpY == 0) // ??????????????
|
||||
return FALSE;
|
||||
|
||||
tmpDir = Atan(tmpX, tmpY) + 22.5F - 45.0F*3;
|
||||
AdjustDir(&tmpDir);
|
||||
dir = (int)(tmpDir/45);
|
||||
|
||||
// ?<EFBFBD>?<3F>
|
||||
// ??
|
||||
if(lSendTime+FIELD_BTN_PUSH_WAIT < TimeGetTime())
|
||||
{
|
||||
// ??????
|
||||
@ -1475,11 +1475,11 @@ int addressBookY = 16;
|
||||
int addressBookPage = 0;
|
||||
ACTION *ptActAddressBookChar[MAX_ADR_BOOK_COUNT];
|
||||
|
||||
// <EFBFBD><EFBFBD>???<3F>?????
|
||||
// ????????
|
||||
int addressBookSelectStrItem[1+3*MAX_ADR_BOOK_COUNT];
|
||||
// 0 ... <EFBFBD>??
|
||||
// n*3+1 ... ?<EFBFBD>
|
||||
// n*3+2 ... <EFBFBD><EFBFBD>
|
||||
// 0 ... ??
|
||||
// n*3+1 ... ?
|
||||
// n*3+2 ...
|
||||
// n*3+3 ... ??
|
||||
|
||||
|
||||
@ -1521,7 +1521,7 @@ void addressBookProc(void)
|
||||
{
|
||||
// ??????????????
|
||||
ptActAddressBookWin = MakeWindowDisp(addressBookX, addressBookY, 4, 8, NULL, 1);
|
||||
// ?<EFBFBD>?????????
|
||||
// ??????????
|
||||
for(i = 0; i < MAX_ADR_BOOK_COUNT; i++)
|
||||
{
|
||||
no = addressBookPage*MAX_ADR_BOOK_COUNT+i;
|
||||
@ -1539,7 +1539,7 @@ void addressBookProc(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
// ????????<EFBFBD>??
|
||||
// ??????????
|
||||
else
|
||||
if(!addressBookFlag
|
||||
&& ptActAddressBookWin != NULL)
|
||||
@ -1555,7 +1555,7 @@ void addressBookProc(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
// ???????<EFBFBD><EFBFBD>
|
||||
// ???????
|
||||
else
|
||||
if(addressBookFlag
|
||||
&& ptActAddressBookWin != NULL)
|
||||
@ -1565,7 +1565,7 @@ void addressBookProc(void)
|
||||
}
|
||||
|
||||
|
||||
// ???????<EFBFBD><EFBFBD>
|
||||
// ???????
|
||||
void addressBookWindow1(void)
|
||||
{
|
||||
int mode = 0;
|
||||
@ -1573,7 +1573,7 @@ void addressBookWindow1(void)
|
||||
int no;
|
||||
char msg[256];
|
||||
|
||||
// <EFBFBD>???<3F><>??????????
|
||||
// ?????????????
|
||||
// ???????????????????
|
||||
if(mouse.onceState & MOUSE_LEFT_CRICK)
|
||||
{
|
||||
@ -1587,7 +1587,7 @@ void addressBookWindow1(void)
|
||||
}
|
||||
}
|
||||
|
||||
// <EFBFBD>????????????<3F>??
|
||||
// ??????????????
|
||||
if(mode == 1)
|
||||
{
|
||||
addressBookFlag = FALSE;
|
||||
@ -1604,7 +1604,7 @@ void addressBookWindow1(void)
|
||||
old_lssproto_DAB_send(sockfd, addressBookPage*MAX_ADR_BOOK_COUNT+((mode-2)/3));
|
||||
}
|
||||
|
||||
// ???????????<EFBFBD>?????<3F>?<3F><>
|
||||
// ?????????????????
|
||||
if(ptActAddressBookWin->hp >= 1)
|
||||
{
|
||||
for(i = 0; i < MAX_ADR_BOOK_COUNT; i++)
|
||||
@ -1613,45 +1613,45 @@ void addressBookWindow1(void)
|
||||
|
||||
if(ptActAddressBookChar[i] != NULL)
|
||||
{
|
||||
// 䦶<EFBFBD>?????????<3F>???????
|
||||
// ????????????????
|
||||
if(strlen(addressBook[no].name) > 0)
|
||||
{
|
||||
// ??????<EFBFBD>?????<3F>⿳<EFBFBD><E2BFB3>
|
||||
// ???<EFBFBD><EFBFBD>
|
||||
// ???????????
|
||||
// ???
|
||||
ptActAddressBookChar[i]->atr &= (~ACT_ATR_HIDE);
|
||||
ptActAddressBookChar[i]->anim_chr_no = addressBook[no].graNo;
|
||||
// 䦶<EFBFBD><EFBFBD><EFBFBD>
|
||||
//
|
||||
sprintf_s(msg, "NAME. %s", addressBook[no].name);
|
||||
StockFontBuffer(addressBookX + 68, addressBookY + i * 110 + 28,
|
||||
FONT_PRIO_FRONT, FONT_PAL_WHITE, msg, 0);
|
||||
|
||||
// ???<EFBFBD><EFBFBD>
|
||||
// ???
|
||||
sprintf_s(msg, "LV. %d", addressBook[no].level);
|
||||
StockFontBuffer(addressBookX + 68, addressBookY + i * 110 + 46,
|
||||
FONT_PRIO_FRONT, FONT_PAL_WHITE, msg, 0);
|
||||
// ?????<EFBFBD><EFBFBD>
|
||||
// ?????
|
||||
if(addressBook[i].onlineFlag != 0)
|
||||
{
|
||||
StockFontBuffer(addressBookX + 130, addressBookY + i * 110 + 46,
|
||||
FONT_PRIO_FRONT, FONT_PAL_WHITE, "线上", 0);
|
||||
FONT_PRIO_FRONT, FONT_PAL_WHITE, "线上", 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
StockFontBuffer(addressBookX + 130, addressBookY + i * 110 + 46,
|
||||
FONT_PRIO_FRONT, FONT_PAL_GRAY, "断线", 0);
|
||||
FONT_PRIO_FRONT, FONT_PAL_GRAY, "断线", 0);
|
||||
}
|
||||
// ?<EFBFBD>???<3F><>
|
||||
// ????
|
||||
addressBookSelectStrItem[i*3+1] =
|
||||
StockFontBuffer(addressBookX + 68, addressBookY + i * 110 + 64,
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "送信", 2);
|
||||
// <EFBFBD><EFBFBD>???<3F><>
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "送信", 2);
|
||||
// ???
|
||||
addressBookSelectStrItem[i*3+2] =
|
||||
StockFontBuffer(addressBookX + 112, addressBookY + i * 110 + 64,
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "收信", 2);
|
||||
// ?????<EFBFBD><EFBFBD>
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "收信", 2);
|
||||
// ?????
|
||||
addressBookSelectStrItem[i*3+3] =
|
||||
StockFontBuffer(addressBookX + 156, addressBookY + i * 110 + 64,
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "删除", 2);
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "删除", 2);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1664,14 +1664,14 @@ void addressBookWindow1(void)
|
||||
|
||||
addressBookSelectStrItem[0] =
|
||||
StockFontBuffer(addressBookX + 56, addressBookY + 352,
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "关闭", 2);
|
||||
FONT_PRIO_FRONT, FONT_PAL_YELLOW, "关闭", 2);
|
||||
}
|
||||
}
|
||||
|
||||
int CHAR_getMaxHaveGold()
|
||||
{
|
||||
int MaxGold;
|
||||
#ifdef _FIX_MAXGOLD // WON ADD 增加人物金钱上限
|
||||
#ifdef _FIX_MAXGOLD // WON ADD 增加人物金钱上限
|
||||
int trans = pc.transmigration;
|
||||
MaxGold = 1000000 + trans*(1800000);
|
||||
#else
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2909,8 +2909,8 @@ Done:
|
||||
}
|
||||
|
||||
|
||||
|
||||
BOOL 获取动画尺寸(ACTION* a0,S2 *wx,S2* wy)
|
||||
//获取动画尺寸
|
||||
BOOL getAnimationSize(ACTION* a0,S2 *wx,S2* wy)
|
||||
{
|
||||
int chrNo = ATR_CHR_NO(a0) - SPRSTART;
|
||||
if(chrNo < 0){
|
||||
|
@ -9,7 +9,7 @@ struct gameserver
|
||||
char ipaddr[127];
|
||||
char port[64];
|
||||
char name[64];
|
||||
#ifdef _SHOW_COUNT // WON ADD 秀服务器流量
|
||||
#ifdef _SHOW_COUNT // WON ADD 秀服务器流量
|
||||
char count[64];
|
||||
#endif
|
||||
#ifdef _SHOWIPSLEEP_
|
||||
@ -24,7 +24,7 @@ struct gamegroup{
|
||||
char name[61];
|
||||
};
|
||||
|
||||
#define SUCCESSFULSTR "successful" // ??????<EFBFBD>?<3F>?<3F>??
|
||||
#define SUCCESSFULSTR "successful" // ??????????
|
||||
#define FAILEDSTR "failed"
|
||||
#define OKSTR "ok"
|
||||
#define CANCLE "cancle"
|
||||
@ -76,22 +76,22 @@ int getServerInfoByServerName( char *servername , char *hostname , short *port )
|
||||
|
||||
|
||||
// ????????
|
||||
#define NET_ERRMSG_SOCKLIBERROR "网路尚未准备好。"
|
||||
#define NET_ERRMSG_BADNAME "服务器名称不正确。"
|
||||
#define NET_ERRMSG_SOCKETERROR "无法执行socket的TCP。"
|
||||
#define NET_ERRMSG_NOTGETADDR "网络故障,请联系客服。"
|
||||
#define NET_ERRMSG_NOTCONNECT_S "无法开始进行服务器的连接。"
|
||||
#define NET_ERRMSG_NOTCONNECT "服务器尚未开启。请尝试其他连线"
|
||||
#define NET_ERRMSG_CONNECTTIMEOUT "服务器连接时间已到。"
|
||||
#define NET_ERRMSG_LOGINTIMEOUT "登入处理时间已到。"
|
||||
#define NET_ERRMSG_CHARLISTTIMEOUT "读取人物表时间已到。"
|
||||
#define NET_ERRMSG_LOGOUTTIMEOUT "登出处理时间已到。"
|
||||
#define NET_ERRMSG_LOGINFAIL "无法登入服务器。"
|
||||
#define NET_ERRMSG_CREATECHARTIMEOUT "人物制作时间已到。"
|
||||
#define NET_ERRMSG_DELETECHARTIMEOUT "人物削除时间已到。"
|
||||
#define NET_ERRMSG_VERSIONERROR "您当前的版本太旧,请使用更新器更新游戏后登陆!"
|
||||
#define NET_ERRMSG_SOCKLIBERROR "网路尚未准备好。"
|
||||
#define NET_ERRMSG_BADNAME "服务器名称不正确。"
|
||||
#define NET_ERRMSG_SOCKETERROR "无法执行socket的TCP。"
|
||||
#define NET_ERRMSG_NOTGETADDR "网络故障,请联系客服。"
|
||||
#define NET_ERRMSG_NOTCONNECT_S "无法开始进行服务器的连接。"
|
||||
#define NET_ERRMSG_NOTCONNECT "服务器尚未开启。请尝试其他连线"
|
||||
#define NET_ERRMSG_CONNECTTIMEOUT "服务器连接时间已到。"
|
||||
#define NET_ERRMSG_LOGINTIMEOUT "登入处理时间已到。"
|
||||
#define NET_ERRMSG_CHARLISTTIMEOUT "读取人物表时间已到。"
|
||||
#define NET_ERRMSG_LOGOUTTIMEOUT "登出处理时间已到。"
|
||||
#define NET_ERRMSG_LOGINFAIL "无法登入服务器。"
|
||||
#define NET_ERRMSG_CREATECHARTIMEOUT "人物制作时间已到。"
|
||||
#define NET_ERRMSG_DELETECHARTIMEOUT "人物削除时间已到。"
|
||||
#define NET_ERRMSG_VERSIONERROR "您当前的版本太旧,请使用更新器更新游戏后登陆!"
|
||||
|
||||
#define GAMESTATE_ERRMSG_LOGOUTDENY "服务器拒绝处理登出。"
|
||||
#define GAMESTATE_ERRMSG_LOGOUTDENY "服务器拒绝处理登出。"
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -4,27 +4,27 @@
|
||||
#ifdef _THEATER
|
||||
enum
|
||||
{
|
||||
E_DATA_TYPE_PLAYER, // 玩家
|
||||
E_DATA_TYPE_TALK, // 台词
|
||||
E_DATA_TYPE_ASIDE, // 旁白
|
||||
E_DATA_TYPE_ACTION, // 动作
|
||||
E_DATA_TYPE_MOVE, // 移动
|
||||
E_DATA_TYPE_SCENERY, // 布景
|
||||
E_DATA_TYPE_CHANGE, // 变身
|
||||
E_DATA_TYPE_DIR, // 方向
|
||||
E_DATA_TYPE_EFFECT, // 特效
|
||||
E_DATA_TYPE_FACE, // 表情
|
||||
E_DATA_TYPE_NOTE, // 注解
|
||||
E_DATA_TYPE_BGM, // 背景音乐
|
||||
E_DATA_TYPE_PLAYER, // 玩家
|
||||
E_DATA_TYPE_TALK, // 台词
|
||||
E_DATA_TYPE_ASIDE, // 旁白
|
||||
E_DATA_TYPE_ACTION, // 动作
|
||||
E_DATA_TYPE_MOVE, // 移动
|
||||
E_DATA_TYPE_SCENERY, // 布景
|
||||
E_DATA_TYPE_CHANGE, // 变身
|
||||
E_DATA_TYPE_DIR, // 方向
|
||||
E_DATA_TYPE_EFFECT, // 特效
|
||||
E_DATA_TYPE_FACE, // 表情
|
||||
E_DATA_TYPE_NOTE, // 注解
|
||||
E_DATA_TYPE_BGM, // 背景音乐
|
||||
E_DATA_TYPE_NPC, // NPC
|
||||
E_DATA_TYPE_END
|
||||
};
|
||||
|
||||
// lssproto_TheaterData_recv 使用
|
||||
// lssproto_TheaterData_recv 使用
|
||||
enum
|
||||
{
|
||||
E_THEATER_SEND_DATA_THEATER_MODE = E_DATA_TYPE_END + 1, // 剧院模式 参数: 0:取消剧场模式 1:观众 2:表演者
|
||||
E_THEATER_SEND_DATA_DISPLAY_SCORE, // 显示分数 参数: 分数
|
||||
E_THEATER_SEND_DATA_THEATER_MODE = E_DATA_TYPE_END + 1, // 剧院模式 参数: 0:取消剧场模式 1:观众 2:表演者
|
||||
E_THEATER_SEND_DATA_DISPLAY_SCORE, // 显示分数 参数: 分数
|
||||
E_THEATER_SEND_DATA_END
|
||||
};
|
||||
#endif
|
||||
@ -52,7 +52,7 @@ extern char netprocErrmsg[];
|
||||
|
||||
extern int connectServer2Counter;
|
||||
/*
|
||||
#ifdef _TELLCHANNEL // (不可开) ROG ADD 密语频道
|
||||
#ifdef _TELLCHANNEL // (不可开) ROG ADD 密语频道
|
||||
extern char ReTellName[];
|
||||
#endif
|
||||
*/
|
||||
|
@ -16,13 +16,13 @@
|
||||
#define ITEM_MEMO_LEN 84
|
||||
#define PET_NAME_LEN 16
|
||||
#define PET_FREENAME_LEN 32
|
||||
#define CHAR_FMNAME_LEN 33 // 家族名称
|
||||
#define CHAR_FMNAME_LEN 33 // 家族名称
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#define PROFESSION_MEMO_LEN 84
|
||||
#endif
|
||||
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
#define GM_NAME_LEN 32
|
||||
#endif
|
||||
|
||||
@ -62,13 +62,13 @@ typedef enum
|
||||
#endif
|
||||
CHAR_EQUIPPLACENUM,
|
||||
#ifdef _PET_ITEM
|
||||
PET_HEAD = 0, // 头
|
||||
PET_WING, // 翼
|
||||
PET_TOOTH, // 牙
|
||||
PET_PLATE, // 身体
|
||||
PET_BACK, // 背
|
||||
PET_CLAW, // 爪
|
||||
PET_FOOT, // 脚(鳍)
|
||||
PET_HEAD = 0, // 头
|
||||
PET_WING, // 翼
|
||||
PET_TOOTH, // 牙
|
||||
PET_PLATE, // 身体
|
||||
PET_BACK, // 背
|
||||
PET_CLAW, // 爪
|
||||
PET_FOOT, // 脚(鳍)
|
||||
PET_EQUIPNUM
|
||||
#endif
|
||||
}CHAR_EquipPlace;
|
||||
@ -76,16 +76,16 @@ typedef enum
|
||||
#ifdef _PET_ITEM
|
||||
typedef enum
|
||||
{
|
||||
// 宠物道具,共九种
|
||||
ITEM_PET_HEAD = 29, // 头
|
||||
ITEM_PET_WING, // 翼
|
||||
ITEM_PET_TOOTH, // 牙
|
||||
ITEM_PET_PLATE, // 身体护甲
|
||||
ITEM_PET_BACK, // 背部护甲
|
||||
ITEM_PET_CLAW, // 爪
|
||||
ITEM_PET_1_FOOT, // 脚部,双足
|
||||
ITEM_PET_2_FOOT, // 脚部,四足
|
||||
ITEM_PET_FIN, // 脚部,鳍
|
||||
// 宠物道具,共九种
|
||||
ITEM_PET_HEAD = 29, // 头
|
||||
ITEM_PET_WING, // 翼
|
||||
ITEM_PET_TOOTH, // 牙
|
||||
ITEM_PET_PLATE, // 身体护甲
|
||||
ITEM_PET_BACK, // 背部护甲
|
||||
ITEM_PET_CLAW, // 爪
|
||||
ITEM_PET_1_FOOT, // 脚部,双足
|
||||
ITEM_PET_2_FOOT, // 脚部,四足
|
||||
ITEM_PET_FIN, // 脚部,鳍
|
||||
ITEM_CATEGORYNUM
|
||||
}ITEM_CATEGORY;
|
||||
#define MAX_PET_ITEM 7
|
||||
@ -95,7 +95,7 @@ typedef enum
|
||||
#define MAX_MAXHAVEITEM 15
|
||||
#ifdef _NEW_ITEM_
|
||||
#define MAX_ITEM (MAX_ITEMSTART+MAX_MAXHAVEITEM*3)
|
||||
int 判断玩家道具数量();
|
||||
int getItemNum();//判断玩家道具数量();
|
||||
#else
|
||||
#define MAX_ITEM (MAX_ITEMSTART+MAX_MAXHAVEITEM)
|
||||
#endif
|
||||
@ -123,34 +123,34 @@ int
|
||||
#define MAX_PERSONAL_BANKGOLD 50000000
|
||||
|
||||
#ifdef _FMVER21
|
||||
#define FAMILY_MAXMEMBER 100 // 家族人数
|
||||
#define FAMILY_MAXMEMBER 100 // 家族人数
|
||||
#else
|
||||
#define FAMILY_MAXMEMBER 50 // 家族人数
|
||||
#define FAMILY_MAXMEMBER 50 // 家族人数
|
||||
#endif
|
||||
|
||||
enum
|
||||
{
|
||||
PC_ETCFLAG_PARTY = (1 << 0),
|
||||
PC_ETCFLAG_DUEL = (1 << 1),
|
||||
PC_ETCFLAG_CHAT_MODE = (1 << 2), //队伍频道开关
|
||||
PC_ETCFLAG_MAIL = (1 << 3), //名片频道
|
||||
PC_ETCFLAG_CHAT_MODE = (1 << 2), //队伍频道开关
|
||||
PC_ETCFLAG_MAIL = (1 << 3), //名片频道
|
||||
PC_ETCFLAG_TRADE = (1 << 4)
|
||||
#ifdef _CHANNEL_MODIFY
|
||||
,PC_ETCFLAG_CHAT_TELL = (1 << 5) //密语频道开关
|
||||
,PC_ETCFLAG_CHAT_FM = (1 << 6) //家族频道开关
|
||||
,PC_ETCFLAG_CHAT_TELL = (1 << 5) //密语频道开关
|
||||
,PC_ETCFLAG_CHAT_FM = (1 << 6) //家族频道开关
|
||||
#ifdef _CHAR_PROFESSION
|
||||
,PC_ETCFLAG_CHAT_OCC = (1 << 7) //职业频道开关
|
||||
,PC_ETCFLAG_CHAT_OCC = (1 << 7) //职业频道开关
|
||||
#endif
|
||||
,PC_ETCFLAG_CHAT_SAVE = (1 << 8) //对话储存开关
|
||||
,PC_ETCFLAG_CHAT_SAVE = (1 << 8) //对话储存开关
|
||||
#ifdef _CHATROOMPROTOCOL
|
||||
,PC_ETCFLAG_CHAT_CHAT = (1 << 9) //聊天室开关
|
||||
,PC_ETCFLAG_CHAT_CHAT = (1 << 9) //聊天室开关
|
||||
#endif
|
||||
#endif
|
||||
#ifdef _CHANNEL_WORLD
|
||||
,PC_ETCFLAG_CHAT_WORLD = (1 << 10) //世界频道开关
|
||||
,PC_ETCFLAG_CHAT_WORLD = (1 << 10) //世界频道开关
|
||||
#endif
|
||||
#ifdef _CHANNEL_ALL_SERV
|
||||
,PC_ETCFLAG_ALL_SERV = (1 << 11) //星球频道开关
|
||||
,PC_ETCFLAG_ALL_SERV = (1 << 11) //星球频道开关
|
||||
#endif
|
||||
,PC_AI_MOD = (1 << 12)
|
||||
};
|
||||
@ -160,23 +160,23 @@ enum
|
||||
PC_ETCFLAG_CHAT_MODE_ID = 0
|
||||
|
||||
#ifdef _CHANNEL_MODIFY
|
||||
,PC_ETCFLAG_CHAT_TELL_ID //密语频道
|
||||
,PC_ETCFLAG_CHAT_PARTY_ID //队伍频道
|
||||
,PC_ETCFLAG_CHAT_FM_ID //家族频道
|
||||
,PC_ETCFLAG_CHAT_TELL_ID //密语频道
|
||||
,PC_ETCFLAG_CHAT_PARTY_ID //队伍频道
|
||||
,PC_ETCFLAG_CHAT_FM_ID //家族频道
|
||||
#ifdef _CHAR_PROFESSION
|
||||
,PC_ETCFLAG_CHAT_OCC_ID //职业频道
|
||||
,PC_ETCFLAG_CHAT_OCC_ID //职业频道
|
||||
#endif
|
||||
#ifdef _CHATROOMPROTOCOL
|
||||
,PC_ETCFLAG_CHAT_CHAT_ID //聊天室
|
||||
,PC_ETCFLAG_CHAT_CHAT_ID //聊天室
|
||||
#endif
|
||||
#else
|
||||
,PC_ETCFLAG_CHAT_PARTY_ID //队伍频道
|
||||
,PC_ETCFLAG_CHAT_PARTY_ID //队伍频道
|
||||
#endif
|
||||
#ifdef _CHANNEL_WORLD
|
||||
,PC_ETCFLAG_CHAT_WORLD_ID //世界频道
|
||||
,PC_ETCFLAG_CHAT_WORLD_ID //世界频道
|
||||
#endif
|
||||
#ifdef _CHANNEL_ALL_SERV
|
||||
,PC_ETCFLAG_ALL_SERV_ID //星球频道开关
|
||||
,PC_ETCFLAG_ALL_SERV_ID //星球频道开关
|
||||
#endif
|
||||
,PC_ETCFLAG_CHAT_WORLD_NUM
|
||||
};
|
||||
@ -184,20 +184,20 @@ enum
|
||||
#define ITEM_FLAG_PET_MAIL ( 1 << 0 )
|
||||
#define ITEM_FLAG_MIX ( 1 << 1 )
|
||||
#define ITEM_FLAG_COOKING_MIX ( 1 << 2 )
|
||||
#define ITEM_FLAG_METAL_MIX ( 1 << 3 ) //金属
|
||||
#define ITEM_FLAG_JEWEL_MIX ( 1 << 4 ) //宝石
|
||||
#define ITEM_FLAG_FIX_MIX ( 1 << 5 ) //修复
|
||||
#define ITEM_FLAG_METAL_MIX ( 1 << 3 ) //金属
|
||||
#define ITEM_FLAG_JEWEL_MIX ( 1 << 4 ) //宝石
|
||||
#define ITEM_FLAG_FIX_MIX ( 1 << 5 ) //修复
|
||||
#ifdef _ITEM_INTENSIFY
|
||||
#define ITEM_FLAG_INTENSIFY_MIX ( 1 << 6 ) //强化
|
||||
#define ITEM_FLAG_INTENSIFY_MIX ( 1 << 6 ) //强化
|
||||
#endif
|
||||
#ifdef _ITEM_UPINSLAY
|
||||
#define ITEM_FLAG_UPINSLAY_MIX ( 1 << 7 ) //凿孔
|
||||
#define ITEM_FLAG_UPINSLAY_MIX ( 1 << 7 ) //凿孔
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int color; // 䦶<EFBFBD>?<3F>
|
||||
int graNo; // ??<EFBFBD>?
|
||||
int color; // ?
|
||||
int graNo; // ???
|
||||
int level; // ???????
|
||||
#ifdef _ITEM_PILENUMS
|
||||
int pile;
|
||||
@ -205,13 +205,13 @@ typedef struct
|
||||
#ifdef _ALCHEMIST //#ifdef _ITEMSET7_TXT
|
||||
char alch[4+200];
|
||||
#endif
|
||||
short useFlag; // <EFBFBD>????
|
||||
short field; // <EFBFBD>????<3F>?
|
||||
short target; // <EFBFBD><EFBFBD>
|
||||
short deadTargetFlag; // ???????<EFBFBD><EFBFBD>???
|
||||
short sendFlag; // ????????<EFBFBD>?<3F>?
|
||||
char name[ITEM_NAME_LEN*2+1]; // ????䦶
|
||||
char name2[ITEM_NAME2_LEN*2+1]; // ????䦶?
|
||||
short useFlag; // ????
|
||||
short field; // ?????
|
||||
short target; //
|
||||
short deadTargetFlag; // ??????????
|
||||
short sendFlag; // ??????????
|
||||
char name[ITEM_NAME_LEN*2+1]; // ????
|
||||
char name2[ITEM_NAME2_LEN*2+1]; // ?????
|
||||
char memo[ITEM_MEMO_LEN*2+1]; // ??
|
||||
char damage[20];
|
||||
#ifdef _PET_ITEM
|
||||
@ -227,7 +227,7 @@ typedef struct
|
||||
int counttime;
|
||||
#endif
|
||||
#ifdef _MAGIC_ITEM_
|
||||
int 道具类型;
|
||||
int itemType;//道具类型;
|
||||
#endif
|
||||
} ITEM;
|
||||
|
||||
@ -280,7 +280,7 @@ typedef struct
|
||||
int channel;
|
||||
int quickChannel;
|
||||
int personal_bankgold;
|
||||
int ridePetNo;//宠物形像
|
||||
int ridePetNo;//宠物形像
|
||||
int learnride;
|
||||
unsigned int lowsride;
|
||||
char ridePetName[CHAR_FREENAME_LEN+1];
|
||||
@ -289,79 +289,79 @@ typedef struct
|
||||
int baseGraNo;
|
||||
ITEM itempool[MAX_ITEM];
|
||||
int big4fm;
|
||||
int trade_confirm; // 1 -> 初始值
|
||||
// 2 -> 慬我方按下确定键
|
||||
// 3 -> 仅对方按下确定键
|
||||
// 4 -> 双方皆按下确定键
|
||||
int trade_confirm; // 1 -> 初始值
|
||||
// 2 -> 慬我方按下确定键
|
||||
// 3 -> 仅对方按下确定键
|
||||
// 4 -> 双方皆按下确定键
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
int profession_class;
|
||||
int profession_level;
|
||||
// int profession_exp;
|
||||
int profession_skill_point;
|
||||
char profession_class_name[32];
|
||||
#endif
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
int herofloor;
|
||||
#endif
|
||||
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
#ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
char gm_name[GM_NAME_LEN+1];
|
||||
#endif
|
||||
|
||||
#ifdef _FRIENDCHANNEL // ROG ADD 好友频道
|
||||
#ifdef _FRIENDCHANNEL // ROG ADD 好友频道
|
||||
char chatRoomNum[4];
|
||||
#endif
|
||||
#ifdef _STREET_VENDOR
|
||||
int iOnStreetVendor; // 摆摊模式
|
||||
int iOnStreetVendor; // 摆摊模式
|
||||
#endif
|
||||
int skywalker; // GM天行者??
|
||||
int skywalker; // GM天行者??
|
||||
#ifdef _MOVE_SCREEN
|
||||
BOOL bMoveScreenMode; // 移动荧幕模式
|
||||
BOOL bCanUseMouse; // 是否可以使用滑鼠移动
|
||||
int iDestX; // 目标点 X 座标
|
||||
int iDestY; // 目标点 Y 座标
|
||||
BOOL bMoveScreenMode; // 移动荧幕模式
|
||||
BOOL bCanUseMouse; // 是否可以使用滑鼠移动
|
||||
int iDestX; // 目标点 X 座标
|
||||
int iDestY; // 目标点 Y 座标
|
||||
#endif
|
||||
#ifdef _THEATER
|
||||
int iTheaterMode; // 剧场模式
|
||||
int iSceneryNumber; // 记录剧院背景图号
|
||||
ACTION *pActNPC[5]; // 记录剧场中临时产生出来的NPC
|
||||
int iTheaterMode; // 剧场模式
|
||||
int iSceneryNumber; // 记录剧院背景图号
|
||||
ACTION *pActNPC[5]; // 记录剧场中临时产生出来的NPC
|
||||
#endif
|
||||
#ifdef _NPC_DANCE
|
||||
int iDanceMode; // 动一动模式
|
||||
int iDanceMode; // 动一动模式
|
||||
#endif
|
||||
#ifdef _EVIL_KILL
|
||||
int newfame; // 讨伐魔军积分
|
||||
int newfame; // 讨伐魔军积分
|
||||
short ftype;
|
||||
#endif
|
||||
|
||||
int debugmode;
|
||||
#ifdef _SFUMATO
|
||||
int sfumato; // 二次渲染图层色彩
|
||||
int sfumato; // 二次渲染图层色彩
|
||||
#endif
|
||||
#ifdef _NEW_ITEM_
|
||||
int 道具栏状态;
|
||||
int itemKitStatus//道具栏状态;
|
||||
#endif
|
||||
#ifdef _CHARSIGNADY_NO_
|
||||
int 签到标记;
|
||||
int 签到标记;
|
||||
#endif
|
||||
#ifdef _MAGIC_ITEM_
|
||||
int 法宝道具状态;
|
||||
int 道具光环效果;
|
||||
int magicItemStatus//法宝道具状态;
|
||||
int itemRightEffect //道具光环效果;
|
||||
#endif
|
||||
} PC;
|
||||
|
||||
#ifdef _FMVER21
|
||||
enum
|
||||
{
|
||||
FMMEMBER_NONE = -1, // 未加入任何家族
|
||||
FMMEMBER_MEMBER = 1, // 一般成员
|
||||
FMMEMBER_APPLY, // 申请加入家族
|
||||
FMMEMBER_LEADER, // 家族族长
|
||||
FMMEMBER_ELDER, // 长老
|
||||
//FMMEMBER_INVITE, // 祭司
|
||||
//FMMEMBER_BAILEE, // 财务长
|
||||
//FMMEMBER_VICELEADER, // 副族长
|
||||
FMMEMBER_NONE = -1, // 未加入任何家族
|
||||
FMMEMBER_MEMBER = 1, // 一般成员
|
||||
FMMEMBER_APPLY, // 申请加入家族
|
||||
FMMEMBER_LEADER, // 家族族长
|
||||
FMMEMBER_ELDER, // 长老
|
||||
//FMMEMBER_INVITE, // 祭司
|
||||
//FMMEMBER_BAILEE, // 财务长
|
||||
//FMMEMBER_VICELEADER, // 副族长
|
||||
FMMEMBER_NUMBER,
|
||||
};
|
||||
#endif
|
||||
@ -385,9 +385,9 @@ enum
|
||||
MAGIC_TARGET_WITHOUTMYSELFANDPET,
|
||||
MAGIC_TARGET_WHOLEOTHERSIDE,
|
||||
#ifdef __ATTACK_MAGIC
|
||||
MAGIC_TARGET_SINGLE, // 针对敌方某一方
|
||||
MAGIC_TARGET_ONE_ROW, // 针对敌方某一列
|
||||
MAGIC_TARGET_ALL_ROWS, // 针对敌方所有人
|
||||
MAGIC_TARGET_SINGLE, // 针对敌方某一方
|
||||
MAGIC_TARGET_ONE_ROW, // 针对敌方某一列
|
||||
MAGIC_TARGET_ALL_ROWS, // 针对敌方所有人
|
||||
#endif
|
||||
};
|
||||
|
||||
@ -408,13 +408,13 @@ enum
|
||||
PETSKILL_TARGET_NONE,
|
||||
PETSKILL_TARGET_OTHERWITHOUTMYSELF,
|
||||
PETSKILL_TARGET_WITHOUTMYSELFANDPET
|
||||
#ifdef _BATTLESKILL // (不可开) Syu ADD 战斗技能介面
|
||||
#ifdef _BATTLESKILL // (不可开) Syu ADD 战斗技能介面
|
||||
,PETSKILL_TARGET_ONE_ROW
|
||||
,PETSKILL_TARGET_ONE_LINE
|
||||
,PETSKILL_TARGER_DEATH
|
||||
#endif
|
||||
#ifdef _SKILL_ADDBARRIER
|
||||
,PETSKILL_TARGET_ONE_ROW_ALL //选我方的单排
|
||||
,PETSKILL_TARGET_ONE_ROW_ALL //选我方的单排
|
||||
#endif
|
||||
};
|
||||
|
||||
@ -442,32 +442,32 @@ enum
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int index; //位置
|
||||
int graNo; // ??<EFBFBD>?
|
||||
int hp, maxHp; // ????<EFBFBD>??
|
||||
int mp, maxMp; // ????<EFBFBD>??
|
||||
int exp, maxExp; // ??<EFBFBD>???????<3F>????<3F>
|
||||
int index; //位置
|
||||
int graNo; // ???
|
||||
int hp, maxHp; // ??????
|
||||
int mp, maxMp; // ??????
|
||||
int exp, maxExp; // ?????????????
|
||||
int level; // ???
|
||||
int atk, def; // ????????㘎??
|
||||
int quick; // <EFBFBD><EFBFBD>?
|
||||
int ai; // ?<EFBFBD><EFBFBD>
|
||||
int earth, water, fire, wind; // 佋???
|
||||
int maxSkill; // ?<EFBFBD>????
|
||||
int trn; // 宠物转生数
|
||||
int atk, def; // ??????????
|
||||
int quick; // ?
|
||||
int ai; // ?
|
||||
int earth, water, fire, wind; // 佋???
|
||||
int maxSkill; // ?????
|
||||
int trn; // 宠物转生数
|
||||
#ifdef _SHOW_FUSION
|
||||
int fusion; // low word: 宠蛋旗标, hi word: 物种编码
|
||||
int fusion; // low word: 宠蛋旗标, hi word: 物种编码
|
||||
#endif
|
||||
#ifdef _ANGEL_SUMMON
|
||||
unsigned status;
|
||||
#else
|
||||
unsigned short status; // ?????(??????)
|
||||
#endif
|
||||
char name[CHAR_NAME_LEN+1]; // <EFBFBD>?䦶
|
||||
char freeName[PET_NAME_LEN+1]; // ???????䦶<EFBFBD>
|
||||
char name[CHAR_NAME_LEN+1]; // ?
|
||||
char freeName[PET_NAME_LEN+1]; // ???????
|
||||
short useFlag; // ??????????????
|
||||
short changeNameFlag; // 䦶<EFBFBD>?????????
|
||||
short changeNameFlag; // ?????????
|
||||
#ifdef _PET_ITEM
|
||||
ITEM item[MAX_PET_ITEM]; // 宠物道具
|
||||
ITEM item[MAX_PET_ITEM]; // 宠物道具
|
||||
#endif
|
||||
#ifdef _PETCOM_
|
||||
int oldlevel,oldhp,oldatk,oldquick,olddef;
|
||||
@ -519,7 +519,7 @@ typedef struct
|
||||
int dp;
|
||||
int graNo;
|
||||
char name[CHAR_NAME_LEN+1];
|
||||
#ifdef _MAILSHOWPLANET // (可开放) Syu ADD 显示名片星球
|
||||
#ifdef _MAILSHOWPLANET // (可开放) Syu ADD 显示名片星球
|
||||
char planetname[64];
|
||||
#endif
|
||||
} ADDRESS_BOOK;
|
||||
@ -550,7 +550,7 @@ typedef struct
|
||||
char memo[SKILL_MEMO_LEN+1];
|
||||
} PET_SKILL;
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
typedef struct
|
||||
{
|
||||
short useFlag;
|
||||
@ -571,31 +571,31 @@ typedef struct
|
||||
|
||||
typedef struct
|
||||
{
|
||||
char name[CHAR_NAME_LEN+1]; // SJIS?䦶<EFBFBD>????
|
||||
char name[CHAR_NAME_LEN+1]; // SJIS?????
|
||||
short level; // ???
|
||||
int login; // ??????
|
||||
|
||||
int faceGraNo; // ???<EFBFBD>?
|
||||
int faceGraNo; // ????
|
||||
int hp; // ??
|
||||
int str; // ???
|
||||
int def; // 㘎??
|
||||
int agi; // <EFBFBD><EFBFBD>?
|
||||
int app; // ⺷?
|
||||
int attr[4]; // <EFBFBD><EFBFBD>?佋???????
|
||||
int def; // ??
|
||||
int agi; // ?
|
||||
int app; // ?
|
||||
int attr[4]; // ?佋???????
|
||||
int dp; // ????????
|
||||
} CHARLISTTABLE;
|
||||
#ifdef _AIDENGLU_
|
||||
typedef struct
|
||||
{
|
||||
int 大区;
|
||||
int 队模;
|
||||
int 小区;
|
||||
int 人物;
|
||||
int 是否自动喊话;
|
||||
int 是否自动遇敌;
|
||||
int 人物方向;
|
||||
char 登陆人物名称[4][32];
|
||||
int 登陆延时时间;
|
||||
int bigArea; //大区;
|
||||
int teamMode; //队模;
|
||||
int smallArea; //小区;
|
||||
int character;//人物;
|
||||
int isAutoChat; //是否自动喊话;
|
||||
int isAutoMeet; //是否自动遇敌;
|
||||
int characterDirection;//人物方向;
|
||||
char logonName[4][32];//登陆人物名称[4][32];
|
||||
int logonDelay; //登陆延时时间;
|
||||
}Landed;
|
||||
#endif
|
||||
|
||||
@ -661,19 +661,19 @@ void setPcAction( int );
|
||||
#endif
|
||||
int getPcAction( void );
|
||||
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _CHAR_PROFESSION // WON ADD 人物职业
|
||||
#ifdef _PRO3_ADDSKILL
|
||||
#define MAX_PROFESSION_SKILL 30
|
||||
#else
|
||||
#define MAX_PROFESSION_SKILL 26
|
||||
#endif
|
||||
extern PROFESSION_SKILL profession_skill[];
|
||||
// #ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
// #ifdef _GM_IDENTIFY // Rog ADD GM识别
|
||||
// void setPcParam( char *, char *, int, char *, int, int, int, int, int, int, int, int, char *);
|
||||
// void setPcParam( char *, char *, int, char *, int, int, int, int, int, int, int, char *);
|
||||
// #else
|
||||
// void setPcParam( char *, char *, int, char *, int, int, int, int, int, int, int, int );
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
#ifdef _ALLDOMAN // (不可开) Syu ADD 排行榜NPC
|
||||
void setPcParam( char *, char *, int, char *, int, int, int, int, int, int, int , int );
|
||||
#else
|
||||
void setPcParam( char *, char *, int, char *, int, int, int, int, int, int, int );
|
||||
|
@ -7,13 +7,13 @@
|
||||
// ????????????
|
||||
#define BATTLE_MAP_FILES 220
|
||||
|
||||
// ?????????<EFBFBD>?
|
||||
// ??????????
|
||||
extern int BattleMapNo;
|
||||
|
||||
// ??????<EFBFBD>????????????????<3F> ***************************/
|
||||
// ?????????????????????? ***************************/
|
||||
BOOL ReadBattleMap( int no );
|
||||
|
||||
// ??????<EFBFBD>? ***********************************************************/
|
||||
// ??????? ***********************************************************/
|
||||
void DrawBattleMap( void );
|
||||
void 显示道具数据(short x,short y,UCHAR 层次,char* 内容,unsigned int 形像,char*名字 );
|
||||
void 显示道具数据(short x,short y,UCHAR 层次,char* 内容,unsigned int 形像,char*名字 );
|
||||
#endif
|
||||
|
@ -5,56 +5,56 @@
|
||||
#define _SPRDISP_H_
|
||||
|
||||
#include "version.h"
|
||||
#define DISP_BUFFER_SIZE 4096 // <EFBFBD><EFBFBD>???????
|
||||
#define DISP_BUFFER_SIZE 4096 // ???????
|
||||
enum{
|
||||
DISP_PRIO_BG = 0, //背景
|
||||
DISP_PRIO_TILE = 1, //地表// ????????䴘????????
|
||||
DISP_PRIO_CHAR = 10, //人物// ???
|
||||
DISP_PRIO_PARTS = 10, //建物// ?????<EFBFBD>??
|
||||
DISP_PRIO_RESERVE = 20, //预留
|
||||
DISP_PRIO_JIKI = 30, /* <EFBFBD>? */
|
||||
DISP_PRIO_BG = 0, //背景
|
||||
DISP_PRIO_TILE = 1, //地表// ????????????????
|
||||
DISP_PRIO_CHAR = 10, //人物// ???
|
||||
DISP_PRIO_PARTS = 10, //建物// ???????
|
||||
DISP_PRIO_RESERVE = 20, //预留
|
||||
DISP_PRIO_JIKI = 30, /* ? */
|
||||
DISP_PRIO_GRID = 100, // ????????
|
||||
DISP_PRIO_BOX, /* ???? */
|
||||
DISP_PRIO_IME1, /* ???????????? ?<EFBFBD>? */
|
||||
DISP_PRIO_IME2, /* ???????????? <EFBFBD><EFBFBD>? */
|
||||
DISP_PRIO_IME1, /* ???????????? ?? */
|
||||
DISP_PRIO_IME2, /* ???????????? ? */
|
||||
/* ??????? */
|
||||
DISP_PRIO_MENU, //选单/* ???? */
|
||||
DISP_PRIO_IME3, /* ????????????? ?<EFBFBD>? */
|
||||
DISP_PRIO_IME4, /* ????????????? <EFBFBD><EFBFBD>? */
|
||||
DISP_PRIO_MENU, //选单/* ???? */
|
||||
DISP_PRIO_IME3, /* ????????????? ?? */
|
||||
DISP_PRIO_IME4, /* ????????????? ? */
|
||||
DISP_PRIO_BOX2, /* ????? */
|
||||
DISP_PRIO_ITEM, /* ???? */
|
||||
/* ???????? */
|
||||
DISP_PRIO_YES_NO_WND, /* ?<EFBFBD>????? */
|
||||
DISP_PRIO_YES_NO_BTN, /* ?<EFBFBD>??? */
|
||||
DISP_PRIO_YES_NO_WND, /* ?????? */
|
||||
DISP_PRIO_YES_NO_BTN, /* ???? */
|
||||
DISP_PRIO_BOX3, /* ????? */
|
||||
DISP_PRIO_DRAG, /* ????? */
|
||||
DISP_PRIO_MOUSE, /* ??????? */
|
||||
DISP_PRIO_TOP = 255 /* ??<EFBFBD> */
|
||||
DISP_PRIO_TOP = 255 /* ?? */
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
int x, y; //秀图时的座标// <EFBFBD><EFBFBD>?<3F>
|
||||
int bmpNo; //图编号
|
||||
ACTION *pAct; // 动作
|
||||
BOOL hitFlag; // 十位数为 1:要显示alpha 2:饱和处理 3:石化 4:中毒
|
||||
char DrawEffect; // 0:无特别处理 1:alpha 2:饱和处理 3:石化 4:中毒
|
||||
int x, y; //秀图时的座标// ?
|
||||
int bmpNo; //图编号
|
||||
ACTION *pAct; // 动作
|
||||
BOOL hitFlag; // 十位数为 1:要显示alpha 2:饱和处理 3:石化 4:中毒
|
||||
char DrawEffect; // 0:无特别处理 1:alpha 2:饱和处理 3:石化 4:中毒
|
||||
#ifdef _READ16BITBMP
|
||||
char DrawEffect; // 0:无特别处理 1:alpha 2:饱和处理 3:石化 4:中毒
|
||||
char DrawEffect; // 0:无特别处理 1:alpha 2:饱和处理 3:石化 4:中毒
|
||||
#endif
|
||||
#ifdef _SFUMATO
|
||||
int sfumato; // 二次渲染图层色彩
|
||||
int sfumato; // 二次渲染图层色彩
|
||||
#endif
|
||||
}DISP_INFO;
|
||||
|
||||
typedef struct {
|
||||
short no; //这张图在DISP_INFO的位置// ?????<EFBFBD>??<3F>?
|
||||
UCHAR dispPrio; //显示时的优先顺序// <EFBFBD><EFBFBD>??<3F>??
|
||||
short no; //这张图在DISP_INFO的位置// ????????
|
||||
UCHAR dispPrio; //显示时的优先顺序// ????
|
||||
}DISP_SORT;
|
||||
|
||||
typedef struct{
|
||||
DISP_INFO DispInfo[ DISP_BUFFER_SIZE ];
|
||||
DISP_SORT DispSort[ DISP_BUFFER_SIZE ];
|
||||
short DispCnt; //目前储存数量//
|
||||
short DispCnt; //目前储存数量//
|
||||
}DISP_BUFFER;
|
||||
extern DISP_BUFFER DispBuffer;
|
||||
|
||||
@ -65,16 +65,16 @@ extern BYTE *pRealBinAlpha;
|
||||
#endif
|
||||
|
||||
void DrawAlpha32(
|
||||
unsigned long* lpDst, // 目标缓冲
|
||||
unsigned long iDstX, // 目标位置
|
||||
unsigned long iDstY, // 目标位置
|
||||
unsigned long iDstPitch, // 目标缓冲的pitch
|
||||
unsigned long* lpSrc, // 原色彩缓冲
|
||||
unsigned long iSrcX, // 原色彩位置
|
||||
unsigned long iSrcY, // 原色彩位置
|
||||
unsigned long iSrcW, // 原缓冲的尺寸
|
||||
unsigned long iSrcH, // 原缓冲的尺寸
|
||||
unsigned long iSrcPitch // 原色彩pitch
|
||||
unsigned long* lpDst, // 目标缓冲
|
||||
unsigned long iDstX, // 目标位置
|
||||
unsigned long iDstY, // 目标位置
|
||||
unsigned long iDstPitch, // 目标缓冲的pitch
|
||||
unsigned long* lpSrc, // 原色彩缓冲
|
||||
unsigned long iSrcX, // 原色彩位置
|
||||
unsigned long iSrcY, // 原色彩位置
|
||||
unsigned long iSrcW, // 原缓冲的尺寸
|
||||
unsigned long iSrcH, // 原缓冲的尺寸
|
||||
unsigned long iSrcPitch // 原色彩pitch
|
||||
);
|
||||
|
||||
void ablend_565(unsigned char *lpAlpha, unsigned int iAlpPitch,
|
||||
@ -85,7 +85,7 @@ void ablend_565(unsigned char *lpAlpha, unsigned int iAlpPitch,
|
||||
unsigned int iDstPitch);
|
||||
extern int SurfaceBusyFlag;
|
||||
void SortDispBuffer( void );
|
||||
BOOL 获取动画尺寸(ACTION* a0,short* wx,short* wy);
|
||||
BOOL getAnimationSize(ACTION* a0,short* wx,short* wy); //获取动画尺寸
|
||||
void PutBmp( void );
|
||||
int StockDispBuffer( int x, int y, UCHAR prio, int bmpNo, BOOL hitFlag );
|
||||
#ifdef _SFUMATO
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
@ -226,25 +226,26 @@
|
||||
<ProjectGuid>{7BCA4759-A8C8-4746-ABD8-C2B4C3C2DEFE}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>石器源码</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='VER25_DEBUG|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v100</PlatformToolset>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='_TW_SERVER_DEBUG|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v100</PlatformToolset>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='VER_TW_Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
@ -257,21 +258,21 @@
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v100</PlatformToolset>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='VER25_RELEASE|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v100</PlatformToolset>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='_TW_SERVER_RELEASE|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v100</PlatformToolset>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='VER_TW_Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
@ -281,7 +282,7 @@
|
||||
<PlatformToolset>v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='VER|Win32'">
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
@ -322,7 +323,7 @@
|
||||
<IncludePath>.\openssl;.\mylua\lua;.\curl;$(IncludePath)</IncludePath>
|
||||
<LibraryPath>.\mylua\lua;.\sdk;$(LibraryPath)</LibraryPath>
|
||||
<TargetName>sa25</TargetName>
|
||||
<OutDir>F:\石器时代\7-sa\</OutDir>
|
||||
<OutDir>D:\stoneAge\client</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='_TW_SERVER_DEBUG|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
|
Loading…
Reference in New Issue
Block a user