851 lines
32 KiB
C++
851 lines
32 KiB
C++
![]() |
/************************/
|
|||
|
/* mouse.c */
|
|||
|
/************************/
|
|||
|
#include "../systeminc/version.h"
|
|||
|
#include "../systeminc/system.h"
|
|||
|
#include "../systeminc/loadrealbin.h"
|
|||
|
#include "../systeminc/anim_tbl.h"
|
|||
|
#include "../systeminc/pc.h"
|
|||
|
#include "../systeminc/menu.h"
|
|||
|
#include "../systeminc/battleMenu.h"
|
|||
|
#include "../systeminc/ime_sa.h"
|
|||
|
#include "../systeminc/map.h"
|
|||
|
#include "../systeminc/login.h"
|
|||
|
|
|||
|
// ???????<3F>R<EFBFBD>e???
|
|||
|
#define MOUSE_HIT_SIZE_X 48
|
|||
|
#define MOUSE_HIT_SIZE_Y 48
|
|||
|
|
|||
|
// ??????????????
|
|||
|
#define MOUSE_AUTO_REPEATE_TIME 100
|
|||
|
|
|||
|
// Robin
|
|||
|
|
|||
|
// ????<3F>B<EFBFBD>l
|
|||
|
MOUSE mouse;
|
|||
|
// ????????????????<3F>k????????
|
|||
|
int HitFontNo;
|
|||
|
// ????????????<3F><><EFBFBD><EFBFBD><EFBFBD>k???????
|
|||
|
int HitDispNo;
|
|||
|
// ??????<3F><>??
|
|||
|
char OneLineInfoStr[ 256 ];
|
|||
|
|
|||
|
int oneLineInfoFlag = 1;
|
|||
|
// <20><><EFBFBD><EFBFBD>?????<3F><>
|
|||
|
int BoxColor;
|
|||
|
extern int transmigrationEffectFlag;
|
|||
|
|
|||
|
// ???<3F>ѩ<EFBFBD>???? ////////////////////////////////////////////////////////
|
|||
|
void MouseInit( void )
|
|||
|
{
|
|||
|
memset( &mouse, 0, sizeof( MOUSE ) );
|
|||
|
mouse.itemNo = -1; // ????<3F>k????
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
// ????????<3F>t????? //////////////////////////////////////////////
|
|||
|
void MouseNowPoint( int x, int y )
|
|||
|
{
|
|||
|
if(ResoMode == 1){
|
|||
|
if(x > 640)x = 640;
|
|||
|
if(y > 480)y = 480;
|
|||
|
}else{
|
|||
|
if(x > lpDraw->xSize)x = lpDraw->xSize;
|
|||
|
if(y > lpDraw->ySize)y = lpDraw->ySize;
|
|||
|
}
|
|||
|
// ?<3F><>????
|
|||
|
//???????????????
|
|||
|
if(ResoMode == 1){
|
|||
|
mouse.nowPoint.x = x * 2;
|
|||
|
mouse.nowPoint.y = y * 2;
|
|||
|
} else {
|
|||
|
mouse.nowPoint.x = x;
|
|||
|
mouse.nowPoint.y = y;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// ????????????????????<3F>t????? //////////////////////
|
|||
|
void MouseCrickLeftDownPoint( int x, int y )
|
|||
|
{
|
|||
|
// <20>֢t????
|
|||
|
mouse.state |= MOUSE_LEFT_CRICK;
|
|||
|
mouse.onceState |= MOUSE_LEFT_CRICK;
|
|||
|
mouse.autoState |= MOUSE_LEFT_CRICK;
|
|||
|
// ?<3F><>????
|
|||
|
mouse.crickLeftDownPoint.x = x;
|
|||
|
mouse.crickLeftDownPoint.y = y;
|
|||
|
// ????????????????<3F>@<40>e??<3F>q?<3F><>
|
|||
|
mouse.beforeLeftPushTime = TimeGetTime();
|
|||
|
mouse.leftPushTime = 0;
|
|||
|
}
|
|||
|
|
|||
|
// ???????????????????<3F>t????? ////////////////////////
|
|||
|
void MouseCrickLeftUpPoint( int x, int y )
|
|||
|
{
|
|||
|
// <20>֢t????
|
|||
|
mouse.state &= (~MOUSE_LEFT_CRICK);
|
|||
|
mouse.onceState |= MOUSE_LEFT_CRICK_UP;
|
|||
|
mouse.autoState &= (~MOUSE_LEFT_CRICK);
|
|||
|
// ?<3F><>????
|
|||
|
mouse.crickLeftUpPoint.x = x;
|
|||
|
mouse.crickLeftUpPoint.y = y;
|
|||
|
// ????????????????
|
|||
|
mouse.beforeLeftPushTime = 0;
|
|||
|
mouse.leftPushTime = 0;
|
|||
|
}
|
|||
|
|
|||
|
// ??????????????????<3F>t????? //////////////////////////
|
|||
|
void MouseDblCrickLeftUpPoint( int x, int y )
|
|||
|
{
|
|||
|
// <20>֢t????
|
|||
|
//mouse.onceState |= ( MOUSE_LEFT_DBL_CRICK | MOUSE_LEFT_CRICK );
|
|||
|
mouse.state |= MOUSE_LEFT_CRICK;
|
|||
|
mouse.onceState |= MOUSE_LEFT_DBL_CRICK;
|
|||
|
mouse.onceState |= MOUSE_LEFT_CRICK;
|
|||
|
mouse.autoState |= MOUSE_LEFT_CRICK;
|
|||
|
// ?<3F><>????
|
|||
|
mouse.crickLeftDownPoint.x = x;
|
|||
|
mouse.crickLeftDownPoint.y = y;
|
|||
|
// ????????????????<3F>@<40>e??<3F>q?<3F><>
|
|||
|
mouse.beforeLeftPushTime = TimeGetTime();
|
|||
|
mouse.leftPushTime = 0;
|
|||
|
}
|
|||
|
|
|||
|
// ???????????????????<3F>t????? ////////////////////////
|
|||
|
void MouseCrickRightDownPoint( int x, int y )
|
|||
|
{
|
|||
|
// <20>֢t????
|
|||
|
mouse.state |= MOUSE_RIGHT_CRICK;
|
|||
|
mouse.onceState |= MOUSE_RIGHT_CRICK;
|
|||
|
mouse.autoState |= MOUSE_RIGHT_CRICK;
|
|||
|
// ?<3F><>????
|
|||
|
mouse.crickRightDownPoint.x = x;
|
|||
|
mouse.crickRightDownPoint.y = y;
|
|||
|
// ????????????????<3F>@<40>e??<3F>q?<3F><>
|
|||
|
mouse.beforeRightPushTime = TimeGetTime();
|
|||
|
mouse.rightPushTime = 0;
|
|||
|
}
|
|||
|
|
|||
|
// ???????????????????<3F>t????? ////////////////////////
|
|||
|
void MouseCrickRightUpPoint( int x, int y )
|
|||
|
{
|
|||
|
// <20>֢t????
|
|||
|
mouse.state &= (~MOUSE_RIGHT_CRICK);
|
|||
|
mouse.onceState |= MOUSE_RIGHT_CRICK_UP;
|
|||
|
mouse.autoState &= (~MOUSE_RIGHT_CRICK);
|
|||
|
// ?<3F><>????
|
|||
|
mouse.crickRightUpPoint.x = x;
|
|||
|
mouse.crickRightUpPoint.y = y;
|
|||
|
// ????????????????
|
|||
|
mouse.beforeRightPushTime = 0;
|
|||
|
mouse.rightPushTime = 0;
|
|||
|
}
|
|||
|
|
|||
|
// ??????????????????<3F>t????? //////////////////////////
|
|||
|
void MouseDblCrickRightUpPoint( int x, int y )
|
|||
|
{
|
|||
|
// <20>֢t????
|
|||
|
mouse.state |= MOUSE_RIGHT_CRICK;
|
|||
|
mouse.onceState |= MOUSE_RIGHT_DBL_CRICK;
|
|||
|
mouse.onceState |= MOUSE_RIGHT_CRICK;
|
|||
|
mouse.autoState |= MOUSE_RIGHT_CRICK;
|
|||
|
// ?<3F><>????
|
|||
|
mouse.crickRightDownPoint.x = x;
|
|||
|
mouse.crickRightDownPoint.y = y;
|
|||
|
// ????????????????<3F>@<40>e??<3F>q?<3F><>
|
|||
|
mouse.beforeRightPushTime = TimeGetTime();
|
|||
|
mouse.rightPushTime = 0;
|
|||
|
}
|
|||
|
|
|||
|
// ????? ///////////////////////////////////////////////////////////////
|
|||
|
void MouseProc( void )
|
|||
|
{
|
|||
|
static UINT leftPushTimeBak;
|
|||
|
static UINT rightPushTimeBak;
|
|||
|
|
|||
|
// <20>֢t????
|
|||
|
mouse.onceState = MOUSE_NO_CRICK;
|
|||
|
// ???????????????????
|
|||
|
if( mouse.beforeLeftPushTime > 0 )
|
|||
|
{
|
|||
|
mouse.leftPushTime = TimeGetTime() - mouse.beforeLeftPushTime;
|
|||
|
}
|
|||
|
// ???????????????????
|
|||
|
if( mouse.beforeRightPushTime > 0 )
|
|||
|
{
|
|||
|
mouse.rightPushTime = TimeGetTime() - mouse.beforeRightPushTime;
|
|||
|
}
|
|||
|
// ?????????
|
|||
|
// ????????????
|
|||
|
// ???<3F><>??????<3F><>
|
|||
|
if( mouse.leftPushTime > 500 ){
|
|||
|
// ???????
|
|||
|
if( leftPushTimeBak == 0 ){
|
|||
|
mouse.autoState |= MOUSE_LEFT_CRICK; // ?????
|
|||
|
leftPushTimeBak = mouse.leftPushTime; // ?????
|
|||
|
}else
|
|||
|
// ????????<3F><>?
|
|||
|
if( mouse.leftPushTime - leftPushTimeBak >= MOUSE_AUTO_REPEATE_TIME ){
|
|||
|
mouse.autoState |= MOUSE_LEFT_CRICK; // ?????
|
|||
|
leftPushTimeBak = mouse.leftPushTime; // ?????
|
|||
|
}else{ // ?????????
|
|||
|
mouse.autoState &= (~MOUSE_LEFT_CRICK); // ??????
|
|||
|
}
|
|||
|
}else{
|
|||
|
mouse.autoState &= (~MOUSE_LEFT_CRICK); // ??????
|
|||
|
leftPushTimeBak = 0;
|
|||
|
}
|
|||
|
|
|||
|
// ????????????
|
|||
|
// ???<3F><>??????<3F><>
|
|||
|
if( mouse.rightPushTime > 500 ){
|
|||
|
// ???????
|
|||
|
if( rightPushTimeBak == 0 ){
|
|||
|
mouse.autoState |= MOUSE_RIGHT_CRICK; // ?????
|
|||
|
rightPushTimeBak = mouse.rightPushTime; // ?????
|
|||
|
}else
|
|||
|
// ????????<3F><>?
|
|||
|
if( mouse.rightPushTime - rightPushTimeBak >= MOUSE_AUTO_REPEATE_TIME ){
|
|||
|
mouse.autoState |= MOUSE_RIGHT_CRICK; // ?????
|
|||
|
rightPushTimeBak = mouse.rightPushTime; // ?????
|
|||
|
}else{ // ?????????
|
|||
|
mouse.autoState &= (~MOUSE_RIGHT_CRICK); // ??????
|
|||
|
}
|
|||
|
}else{
|
|||
|
mouse.autoState &= (~MOUSE_RIGHT_CRICK); // ??????
|
|||
|
rightPushTimeBak = 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
// ????????????
|
|||
|
//if( mouse.rightPushTime > 0 ){
|
|||
|
//}else mouse.state &= (~MOUSE_RIGHT_AUTO_CRICK);
|
|||
|
// ????????????
|
|||
|
//if( !WindowMode ){
|
|||
|
//if( 0 <= mouse.nowPoint.x && mouse.nowPoint.x < 640 &&
|
|||
|
// 0 <= mouse.nowPoint.y && mouse.nowPoint.y < 480 ){
|
|||
|
|
|||
|
// ?<3F><>???????
|
|||
|
if( MouseCursorFlag == FALSE ){
|
|||
|
if( mouse.flag == FALSE ){
|
|||
|
StockDispBuffer( mouse.nowPoint.x + 16, mouse.nowPoint.y + 16, DISP_PRIO_MOUSE, CG_MOUSE_CURSOR, 0 );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
// ????<3F>k<EFBFBD><6B>???? *********************************************************/
|
|||
|
void CheckGroupSelect( int no )
|
|||
|
{
|
|||
|
int i;
|
|||
|
DISP_INFO *pDispInfo;
|
|||
|
DISP_SORT *pDispSort;
|
|||
|
/* ???<3F><><EFBFBD><EFBFBD>?????????<3F><><EFBFBD><EFBFBD>??<3F>I?????<3F><>??? */
|
|||
|
for( i = 0 ; i < DispBuffer.DispCnt ; i++ ){
|
|||
|
|
|||
|
pDispInfo = DispBuffer.DispInfo + i;
|
|||
|
pDispSort = DispBuffer.DispSort + i;
|
|||
|
|
|||
|
// ??????????
|
|||
|
if( pDispInfo->hitFlag == no ){
|
|||
|
// ??????<3F><>????
|
|||
|
if( pDispSort->dispPrio >= DISP_PRIO_MENU ){
|
|||
|
// ????<3F><><EFBFBD><EFBFBD>????????????
|
|||
|
#ifndef __CARYTEST
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height + 2,
|
|||
|
DISP_PRIO_BOX2, BoxColor, 0 );
|
|||
|
#else
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height + 2,
|
|||
|
DISP_PRIO_BOX2, BoxColor, 0 );
|
|||
|
#endif
|
|||
|
}else{
|
|||
|
// ????<3F><><EFBFBD><EFBFBD>????????????
|
|||
|
#ifndef __CARYTEST
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height + 2,
|
|||
|
DISP_PRIO_BOX, BoxColor, 0 );
|
|||
|
//pDispSort->dispPrio, 250, 0 );
|
|||
|
#else
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height + 2,
|
|||
|
DISP_PRIO_BOX, BoxColor, 0 );
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#if 1
|
|||
|
// <20><><EFBFBD><EFBFBD>????????????
|
|||
|
UCHAR BoxColorTbl[] = {
|
|||
|
//255, 255, 255, 255, 255,
|
|||
|
//8,8,8,8,8,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
250,250,250,250,250,
|
|||
|
15,15,15,15,15,
|
|||
|
2,2,2,2,2,
|
|||
|
15,15,15,15,15,
|
|||
|
//250,250,250,250,250,
|
|||
|
//8,8,8,8,8,
|
|||
|
};
|
|||
|
#else
|
|||
|
UCHAR BoxColorTbl[] = {
|
|||
|
255,255,255,255,255,255,255,255,255,255,
|
|||
|
255,255,255,255,255,255,255,255,255,255,
|
|||
|
7,7,7,7,7,7,7,7,7,7,
|
|||
|
248,248,248,248,248,248,248,248,248,248,
|
|||
|
0,0,0,0,0,0,0,0,0,0,
|
|||
|
248,248,248,248,248,248,248,248,248,248,
|
|||
|
7,7,7,7,7,7,7,7,7,7,
|
|||
|
};
|
|||
|
#endif
|
|||
|
|
|||
|
/* ???????????<3F>R<EFBFBD>e **************************************************/
|
|||
|
void HitMouseCursor( void )
|
|||
|
{
|
|||
|
int i; // ???????
|
|||
|
int strWidth; // <20><>???????
|
|||
|
int hitFlag = FALSE; // ???<3F>R<EFBFBD>e???
|
|||
|
static int cnt = 0; // ?????
|
|||
|
int itemNameColor = FONT_PAL_WHITE; // ?????<3F><>
|
|||
|
|
|||
|
DISP_SORT *pDispSort = DispBuffer.DispSort + DispBuffer.DispCnt - 1;
|
|||
|
DISP_INFO *pDispInfo;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>?????<3F><><EFBFBD><EFBFBD>?
|
|||
|
if( !transmigrationEffectFlag )
|
|||
|
oneLineInfoFlag = 1;
|
|||
|
else
|
|||
|
oneLineInfoFlag = 0;
|
|||
|
|
|||
|
if( cnt >= sizeof( BoxColorTbl ) - 1 ) cnt = 0;
|
|||
|
else cnt++;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>?????<3F><><EFBFBD>@<40>e
|
|||
|
BoxColor = BoxColorTbl[ cnt ];
|
|||
|
#ifdef _ITEM_PATH
|
|||
|
ITEMPATHFLAG = FALSE;
|
|||
|
#endif
|
|||
|
/* ????<3F><><EFBFBD><EFBFBD>?????????????????????????<3F>i??*/
|
|||
|
for( i = 0 ; i < FontCnt ; i++ ){
|
|||
|
|
|||
|
// ???<3F>R<EFBFBD>e??????
|
|||
|
if( FontBuffer[ i ].hitFlag == 0 ) continue;
|
|||
|
|
|||
|
// <20><>????????????<3F><>??
|
|||
|
|
|||
|
strWidth = GetStrWidth( FontBuffer[ i ].str );
|
|||
|
|
|||
|
// <20><>?????<3F>R<EFBFBD>e
|
|||
|
if( mouse.nowPoint.x <= FontBuffer[ i ].x + strWidth + 2 &&
|
|||
|
FontBuffer[ i ].x - 2 <= mouse.nowPoint.x &&
|
|||
|
|
|||
|
mouse.nowPoint.y <= FontBuffer[ i ].y + FONT_SIZE + 2 &&
|
|||
|
|
|||
|
FontBuffer[ i ].y - 2 <= mouse.nowPoint.y ){
|
|||
|
|
|||
|
// ????<3F><>??<3F>k?????
|
|||
|
HitFontNo = i;
|
|||
|
|
|||
|
// ?????<3F><><EFBFBD><EFBFBD>???
|
|||
|
if( FontBuffer[ i ].hitFlag == 2 ){
|
|||
|
// ????<3F><><EFBFBD><EFBFBD>????????????
|
|||
|
StockBoxDispBuffer( FontBuffer[ i ].x - 3,
|
|||
|
#ifdef _NEWFONT_
|
|||
|
FontBuffer[ i ].y - 2,
|
|||
|
#else
|
|||
|
FontBuffer[ i ].y - 4,
|
|||
|
#endif
|
|||
|
FontBuffer[ i ].x + strWidth + 2,
|
|||
|
#ifdef _NEWFONT_
|
|||
|
FontBuffer[ i ].y + FONT_SIZE + 6,
|
|||
|
#else
|
|||
|
FontBuffer[ i ].y + FONT_SIZE + 4,
|
|||
|
#endif
|
|||
|
|
|||
|
DISP_PRIO_BOX2, BoxColor, 0 );
|
|||
|
|
|||
|
SortDispBuffer();
|
|||
|
}
|
|||
|
HitDispNo = -1;
|
|||
|
// ??????
|
|||
|
mouse.level = DISP_PRIO_MENU;
|
|||
|
// ?????????
|
|||
|
if( TaskBarFlag == FALSE && oneLineInfoFlag ){
|
|||
|
ShowBottomLineString(itemNameColor, OneLineInfoStr);
|
|||
|
//the third StockFontBuffer( 8, 460, FONT_PRIO_FRONT, itemNameColor, OneLineInfoStr, 0 );
|
|||
|
}
|
|||
|
// <20><>?????
|
|||
|
OneLineInfoStr[ 0 ] = NULL;
|
|||
|
return; // ??????????????<3F>R<EFBFBD>e????
|
|||
|
}
|
|||
|
}
|
|||
|
// ????<3F><>??<3F>k???????
|
|||
|
HitFontNo = -1;
|
|||
|
|
|||
|
/* ???<3F><><EFBFBD><EFBFBD>?????????<3F><><EFBFBD><EFBFBD>??<3F>I?????<3F><>??? */
|
|||
|
for( i = DispBuffer.DispCnt - 1; i >= 0 ; i--, pDispSort-- ){
|
|||
|
// <20><><EFBFBD><EFBFBD>????<3F>V????????????
|
|||
|
pDispInfo = DispBuffer.DispInfo + pDispSort->no;
|
|||
|
|
|||
|
// ???<3F>R<EFBFBD>e??????
|
|||
|
if( pDispInfo->hitFlag == 0 ) continue;
|
|||
|
|
|||
|
// ?<3F><>???????????<3F>Q
|
|||
|
//if( SpriteInfo[ pDispInfo->bmpNo ].lpSurfaceInfo == NULL ) continue;
|
|||
|
// ?????????????????????????
|
|||
|
// ?????????
|
|||
|
if( LoadBmp( pDispInfo->bmpNo ) == FALSE ) continue;
|
|||
|
|
|||
|
// ?????????
|
|||
|
if( pDispInfo->pAct == NULL ){
|
|||
|
// <20><>?????<3F>R<EFBFBD>e
|
|||
|
#ifndef __CARYTEST
|
|||
|
if( mouse.nowPoint.x <= pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width &&
|
|||
|
pDispInfo->x <= mouse.nowPoint.x &&
|
|||
|
mouse.nowPoint.y <= pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height &&
|
|||
|
pDispInfo->y <= mouse.nowPoint.y )
|
|||
|
#else
|
|||
|
if( mouse.nowPoint.x <= pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width &&
|
|||
|
pDispInfo->x <= mouse.nowPoint.x &&
|
|||
|
mouse.nowPoint.y <= pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height &&
|
|||
|
pDispInfo->y <= mouse.nowPoint.y )
|
|||
|
#endif
|
|||
|
hitFlag = TRUE;
|
|||
|
}else{
|
|||
|
// <20><>?????<3F>R<EFBFBD>e????????
|
|||
|
#ifndef __CARYTEST
|
|||
|
if( mouse.nowPoint.x <= pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width * 0.5 + MOUSE_HIT_SIZE_X * 0.5 &&
|
|||
|
pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width * 0.5 - MOUSE_HIT_SIZE_X * 0.5 <= mouse.nowPoint.x &&
|
|||
|
mouse.nowPoint.y <= pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height &&
|
|||
|
pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height - MOUSE_HIT_SIZE_Y <= mouse.nowPoint.y )
|
|||
|
#else
|
|||
|
if( mouse.nowPoint.x <= pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width * 0.5 + MOUSE_HIT_SIZE_X * 0.5 &&
|
|||
|
pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width * 0.5 - MOUSE_HIT_SIZE_X * 0.5 <= mouse.nowPoint.x &&
|
|||
|
mouse.nowPoint.y <= pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height &&
|
|||
|
pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height - MOUSE_HIT_SIZE_Y <= mouse.nowPoint.y )
|
|||
|
#endif
|
|||
|
hitFlag = TRUE;
|
|||
|
}
|
|||
|
|
|||
|
// ???????
|
|||
|
if( hitFlag == TRUE ){
|
|||
|
|
|||
|
#ifdef __ATTACK_MAGIC
|
|||
|
|
|||
|
int cnt;
|
|||
|
|
|||
|
for( cnt = 0 ; cnt < BATTLKPKPLYAERNUM ; cnt++ )
|
|||
|
{
|
|||
|
if( p_party[cnt] == pDispInfo->pAct )
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD>ϵ<EFBFBD><CFB5><EFBFBD><EFBFBD>±<EFBFBD><C2B1><EFBFBD>Ϊ6 , 7 , 8 , 9
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀǰ<C4BF><C7B0>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҷ<EFBFBD><D2B7><EFBFBD>λ<EFBFBD><CEBB>
|
|||
|
if( BattleMyNo >= 10 && ( 6 == pDispInfo->hitFlag || 7 == pDispInfo->hitFlag ) )
|
|||
|
{
|
|||
|
hitFlag = FALSE;
|
|||
|
continue;
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀǰ<C4BF><C7B0>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҷ<EFBFBD><D2B7><EFBFBD>λ<EFBFBD><CEBB>
|
|||
|
if( BattleMyNo < 10 && ( 8 == pDispInfo->hitFlag || 9 == pDispInfo->hitFlag ) )
|
|||
|
{
|
|||
|
hitFlag = FALSE;
|
|||
|
continue;
|
|||
|
}
|
|||
|
#ifdef _SKILL_ADDBARRIER
|
|||
|
// ֻ<><D6BB>ѡ<EFBFBD>ҷ<EFBFBD>
|
|||
|
if( BattleMyNo < 10 && ( 10 == pDispInfo->hitFlag || 11 == pDispInfo->hitFlag ) )
|
|||
|
{
|
|||
|
hitFlag = FALSE;
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( BattleMyNo >= 10 && ( 12 == pDispInfo->hitFlag || 13 == pDispInfo->hitFlag ) )
|
|||
|
{
|
|||
|
hitFlag = FALSE;
|
|||
|
continue;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#endif
|
|||
|
|
|||
|
// <20><>?<3F><><EFBFBD><EFBFBD>????????
|
|||
|
// StockFontBuffer( pDispInfo->x, pDispInfo->y, FONT_PRIO_FRONT, 0, "Hit", 1 );
|
|||
|
|
|||
|
// ????<3F><>??<3F>k????
|
|||
|
HitDispNo = pDispSort->no;
|
|||
|
|
|||
|
// ?????<3F><><EFBFBD><EFBFBD>???
|
|||
|
if( pDispInfo->hitFlag >= 2 ){
|
|||
|
// ??????<3F><>????
|
|||
|
if( pDispSort->dispPrio >= DISP_PRIO_YES_NO_WND ){
|
|||
|
// ????<3F><><EFBFBD><EFBFBD>????????????
|
|||
|
#ifndef __CARYTEST
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height + 2,
|
|||
|
//DISP_PRIO_BOX2, 250, 0 );
|
|||
|
DISP_PRIO_BOX3, BoxColor, 0 );
|
|||
|
#else
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height + 2,
|
|||
|
DISP_PRIO_BOX3, BoxColor, 0 );
|
|||
|
#endif
|
|||
|
}else
|
|||
|
// ??????<3F><>????
|
|||
|
if( pDispSort->dispPrio >= DISP_PRIO_MENU ){
|
|||
|
// ????<3F><><EFBFBD><EFBFBD>????????????
|
|||
|
#ifndef __CARYTEST
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height + 2,
|
|||
|
//DISP_PRIO_BOX2, 250, 0 );
|
|||
|
DISP_PRIO_BOX2, BoxColor, 0 );
|
|||
|
#else
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height + 2,
|
|||
|
DISP_PRIO_BOX2, BoxColor, 0 );
|
|||
|
#endif
|
|||
|
}else{
|
|||
|
// ????<3F><><EFBFBD><EFBFBD>????????????
|
|||
|
#ifndef __CARYTEST
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + SpriteInfo[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + SpriteInfo[ pDispInfo->bmpNo ].height + 2,
|
|||
|
//DISP_PRIO_BOX, 250, 0 );
|
|||
|
DISP_PRIO_BOX, BoxColor, 0 );
|
|||
|
//pDispSort->dispPrio, 250, 0 );
|
|||
|
#else
|
|||
|
StockBoxDispBuffer( pDispInfo->x - 2, pDispInfo->y - 2,
|
|||
|
pDispInfo->x + g_lpRealAdrn[ pDispInfo->bmpNo ].width + 2,
|
|||
|
pDispInfo->y + g_lpRealAdrn[ pDispInfo->bmpNo ].height + 2,
|
|||
|
DISP_PRIO_BOX, BoxColor, 0 );
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
// ????<3F>k<EFBFBD><6B>?????<3F><>?<3F>k<EFBFBD><6B>?
|
|||
|
if( pDispInfo->hitFlag >= 3 ) CheckGroupSelect( pDispInfo->hitFlag );
|
|||
|
SortDispBuffer(); // <20><><EFBFBD><EFBFBD>???????
|
|||
|
}
|
|||
|
|
|||
|
// ?????????
|
|||
|
if( TaskBarFlag == FALSE ){
|
|||
|
// ?????????????
|
|||
|
if( pDispInfo->pAct != NULL ){
|
|||
|
// ??????<3F><><EFBFBD><EFBFBD>????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_INFO ){
|
|||
|
if( ProcNo == PROC_GAME ){
|
|||
|
#ifdef _MOUSE_SHOW_INFO_FOR_HEAD
|
|||
|
int left = GetStrWidth(pDispInfo->pAct->name)/2;
|
|||
|
itemNameColor = pDispInfo->pAct->itemNameColor;
|
|||
|
StockFontBuffer( pDispInfo->x+20 - left, pDispInfo->y-10, FONT_PRIO_FRONT, itemNameColor, pDispInfo->pAct->name, 0 );
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
|
|||
|
// <20><>???<3F><>
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%4d/%4d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
// ??????<3F><><EFBFBD><EFBFBD>????
|
|||
|
// ???????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_PC ){
|
|||
|
// <20><><EFBFBD>q?<3F><><EFBFBD>@<40>e
|
|||
|
itemNameColor = pDispInfo->pAct->itemNameColor;
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
|||
|
if( pDispInfo->pAct->petName[ 0 ] != NULL )
|
|||
|
if( pc.familyName[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d %s Lv<4C><76>%d",
|
|||
|
pc.familyName, pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d %s Lv<4C><76>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
if( pc.familyName[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d",
|
|||
|
pc.familyName, pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
|||
|
}else{
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
|||
|
if( pDispInfo->pAct->petName[ 0 ] != NULL )
|
|||
|
if( pc.familyName[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d %s Lv<4C><76>%d",
|
|||
|
pc.familyName, pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp, pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d %s Lv<4C><76>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp, pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
if( pc.familyName[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d",
|
|||
|
pc.familyName, pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
|||
|
}
|
|||
|
}else
|
|||
|
// <20>\????????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_OTHER_PC ){
|
|||
|
#ifdef _MOUSE_DBL_CLICK
|
|||
|
if( mouseDblRightOn ) {
|
|||
|
openServerWindow( WINDOW_MESSAGETYPE_MOUSEGETNAME, 0, 0, 0, pDispInfo->pAct->name);
|
|||
|
return;
|
|||
|
}
|
|||
|
#endif
|
|||
|
// <20><><EFBFBD>q?<3F><><EFBFBD>@<40>e
|
|||
|
itemNameColor = pDispInfo->pAct->itemNameColor;
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
if( pDispInfo->pAct->petName[ 0 ] != NULL )
|
|||
|
if( pDispInfo->pAct->fmname[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s [%s] Lv<4C><76>%d %s Lv<4C><76>%d", pDispInfo->pAct->fmname, pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d %s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
if( pDispInfo->pAct->fmname[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s [%s] Lv<4C><76>%d", pDispInfo->pAct->fmname, pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
}else{
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
if( pDispInfo->pAct->petName[ 0 ] != NULL )
|
|||
|
if( pDispInfo->pAct->fmname[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s Lv<4C><76>%d %s Lv<4C><76>%d", pDispInfo->pAct->fmname, pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d %s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
else
|
|||
|
if( pDispInfo->pAct->fmname[0] != NULL )
|
|||
|
sprintf_s( OneLineInfoStr,"{%s} %s Lv<4C><76>%d", pDispInfo->pAct->fmname, pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
}
|
|||
|
}else
|
|||
|
// ?????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_PET ){
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
}else{
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
}
|
|||
|
}else
|
|||
|
// ??????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_ITEM ){
|
|||
|
// <20><><EFBFBD>q?<3F><><EFBFBD>@<40>e
|
|||
|
itemNameColor = pDispInfo->pAct->itemNameColor;
|
|||
|
sprintf_s( OneLineInfoStr,"%s", pDispInfo->pAct->name );
|
|||
|
#ifdef _ITEM_PATH
|
|||
|
ITEMPATHFLAG = TRUE;
|
|||
|
#endif
|
|||
|
}else
|
|||
|
// ????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_GOLD ){
|
|||
|
sprintf_s( OneLineInfoStr,"%s", pDispInfo->pAct->name );
|
|||
|
}else
|
|||
|
// ??<3F>\??????<3F><>?<3F><>??<3F>Y?
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_OTHER ){
|
|||
|
sprintf_s( OneLineInfoStr,"%s", pDispInfo->pAct->name );
|
|||
|
}
|
|||
|
}else
|
|||
|
// <20>P<EFBFBD>f??
|
|||
|
if( ProcNo == PROC_BATTLE ){
|
|||
|
// ?????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_PET ){
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
}else{
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
}
|
|||
|
}else
|
|||
|
// ??????
|
|||
|
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_ITEM ){
|
|||
|
// <20><><EFBFBD>q?<3F><><EFBFBD>@<40>e
|
|||
|
//itemNameColor = pDispInfo->pAct->itemNameColor;
|
|||
|
sprintf_s( OneLineInfoStr,"%s", pDispInfo->pAct->name );
|
|||
|
}else
|
|||
|
// ?<3F>P?????????
|
|||
|
if( BattleMyNo < BATTLKPKPLYAERNUM ){
|
|||
|
// <20><><EFBFBD><EFBFBD>???????<3F><><EFBFBD><EFBFBD>
|
|||
|
if( ( (ATR_EQU *)pDispInfo->pAct->pYobi )->place_no == BattleMyNo ){
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
// Robin 0728 ride Pet
|
|||
|
if( pDispInfo->pAct->onRide == 1 )
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pDispInfo->pAct->mp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel, pDispInfo->pAct->petHp, pDispInfo->pAct->petMaxHp );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pDispInfo->pAct->mp );
|
|||
|
}else{
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, BattleMyMp );
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pDispInfo->pAct->mp );
|
|||
|
// Robin 0728
|
|||
|
if( pDispInfo->pAct->onRide == 1 )
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pDispInfo->pAct->mp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel, pDispInfo->pAct->petHp, pDispInfo->pAct->petMaxHp );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d <20><><EFBFBD><EFBFBD>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pDispInfo->pAct->mp );
|
|||
|
}
|
|||
|
}
|
|||
|
else
|
|||
|
// <20>s<EFBFBD><73>????<3F><><EFBFBD><EFBFBD>
|
|||
|
if( ( (ATR_EQU *)p_party[ BattleMyNo ]->pYobi )->group_flg == ( (ATR_EQU *)pDispInfo->pAct->pYobi )->group_flg ){
|
|||
|
// <20><>???<3F><>
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%4d/%4d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
// Robin 0728
|
|||
|
if( pDispInfo->pAct->onRide == 1 )
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel, pDispInfo->pAct->petHp, pDispInfo->pAct->petMaxHp);
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
}else{
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
// Robin 0728
|
|||
|
if( pDispInfo->pAct->onRide == 1 )
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel, pDispInfo->pAct->petHp, pDispInfo->pAct->petMaxHp );
|
|||
|
else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
}
|
|||
|
}else{ // <20><>???
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
// Robin
|
|||
|
if( pDispInfo->pAct->onRide == 1 )
|
|||
|
#ifdef _STONDEBUG_
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel, pDispInfo->pAct->petHp );
|
|||
|
#else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d %s Lv<4C><76>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
#endif
|
|||
|
else
|
|||
|
#ifdef _STONDEBUG_
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
#else
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
#endif
|
|||
|
}else{
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
// Robin
|
|||
|
if( pDispInfo->pAct->onRide == 1 )
|
|||
|
#ifdef _STONDEBUG_
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d %s Lv<4C><76>%d <20>ͣ<EFBFBD>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel, pDispInfo->pAct->petHp );
|
|||
|
#else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d %s Lv<4C><76>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level,
|
|||
|
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
|||
|
#endif
|
|||
|
else
|
|||
|
#ifdef _STONDEBUG_
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d",
|
|||
|
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
#else
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
}else{ // ?<3F>P?????
|
|||
|
#ifdef _STONDEBUG_
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
//sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
}else{
|
|||
|
// shan add
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
}
|
|||
|
#else
|
|||
|
// <20><>????
|
|||
|
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
|||
|
//sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
// shan add
|
|||
|
sprintf_s( OneLineInfoStr,"%s [%s] Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
|||
|
}else{
|
|||
|
//sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d <20>ͣ<EFBFBD>%d<><64>%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
|||
|
// shan add
|
|||
|
sprintf_s( OneLineInfoStr,"%s Lv<4C><76>%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( oneLineInfoFlag)
|
|||
|
ShowBottomLineString(itemNameColor, OneLineInfoStr);
|
|||
|
}
|
|||
|
// <20><>?????
|
|||
|
OneLineInfoStr[ 0 ] = NULL;
|
|||
|
|
|||
|
// ??????
|
|||
|
mouse.level = pDispSort->dispPrio;
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
// ??????
|
|||
|
mouse.level = DISP_PRIO_TILE;
|
|||
|
// ????<3F><>??<3F>k???????
|
|||
|
HitDispNo = -1;
|
|||
|
|
|||
|
// ?????????
|
|||
|
if( TaskBarFlag == FALSE ){
|
|||
|
ShowBottomLineString(itemNameColor, OneLineInfoStr);
|
|||
|
}
|
|||
|
// <20><>?????
|
|||
|
OneLineInfoStr[ 0 ] = NULL;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|