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"
|
||
|
||
// ???????刪叉???
|
||
#define MOUSE_HIT_SIZE_X 48
|
||
#define MOUSE_HIT_SIZE_Y 48
|
||
|
||
// ??????????????
|
||
#define MOUSE_AUTO_REPEATE_TIME 100
|
||
|
||
// Robin
|
||
|
||
// ????﹨▍
|
||
MOUSE mouse;
|
||
// ????????????????吻????????
|
||
int HitFontNo;
|
||
// ????????????牙吻???????
|
||
int HitDispNo;
|
||
// ??????更??
|
||
char OneLineInfoStr[ 256 ];
|
||
|
||
int oneLineInfoFlag = 1;
|
||
// 牙?????
|
||
int BoxColor;
|
||
extern int transmigrationEffectFlag;
|
||
|
||
// ???????? ////////////////////////////////////////////////////////
|
||
void MouseInit( void )
|
||
{
|
||
memset( &mouse, 0, sizeof( MOUSE ) );
|
||
mouse.itemNo = -1; // ????吻????
|
||
|
||
|
||
}
|
||
|
||
// ????????ㄅ????? //////////////////////////////////////////////
|
||
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;
|
||
}
|
||
// ?火????
|
||
//???????????????
|
||
if(ResoMode == 1){
|
||
mouse.nowPoint.x = x * 2;
|
||
mouse.nowPoint.y = y * 2;
|
||
} else {
|
||
mouse.nowPoint.x = x;
|
||
mouse.nowPoint.y = y;
|
||
}
|
||
}
|
||
|
||
// ????????????????????ㄅ????? //////////////////////
|
||
void MouseCrickLeftDownPoint( int x, int y )
|
||
{
|
||
// ┤????
|
||
mouse.state |= MOUSE_LEFT_CRICK;
|
||
mouse.onceState |= MOUSE_LEFT_CRICK;
|
||
mouse.autoState |= MOUSE_LEFT_CRICK;
|
||
// ?火????
|
||
mouse.crickLeftDownPoint.x = x;
|
||
mouse.crickLeftDownPoint.y = y;
|
||
// ???????????????? 叉??〈??
|
||
mouse.beforeLeftPushTime = TimeGetTime();
|
||
mouse.leftPushTime = 0;
|
||
}
|
||
|
||
// ???????????????????ㄅ????? ////////////////////////
|
||
void MouseCrickLeftUpPoint( int x, int y )
|
||
{
|
||
// ┤????
|
||
mouse.state &= (~MOUSE_LEFT_CRICK);
|
||
mouse.onceState |= MOUSE_LEFT_CRICK_UP;
|
||
mouse.autoState &= (~MOUSE_LEFT_CRICK);
|
||
// ?火????
|
||
mouse.crickLeftUpPoint.x = x;
|
||
mouse.crickLeftUpPoint.y = y;
|
||
// ????????????????
|
||
mouse.beforeLeftPushTime = 0;
|
||
mouse.leftPushTime = 0;
|
||
}
|
||
|
||
// ??????????????????ㄅ????? //////////////////////////
|
||
void MouseDblCrickLeftUpPoint( int x, int y )
|
||
{
|
||
// ┤????
|
||
//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;
|
||
// ?火????
|
||
mouse.crickLeftDownPoint.x = x;
|
||
mouse.crickLeftDownPoint.y = y;
|
||
// ???????????????? 叉??〈??
|
||
mouse.beforeLeftPushTime = TimeGetTime();
|
||
mouse.leftPushTime = 0;
|
||
}
|
||
|
||
// ???????????????????ㄅ????? ////////////////////////
|
||
void MouseCrickRightDownPoint( int x, int y )
|
||
{
|
||
// ┤????
|
||
mouse.state |= MOUSE_RIGHT_CRICK;
|
||
mouse.onceState |= MOUSE_RIGHT_CRICK;
|
||
mouse.autoState |= MOUSE_RIGHT_CRICK;
|
||
// ?火????
|
||
mouse.crickRightDownPoint.x = x;
|
||
mouse.crickRightDownPoint.y = y;
|
||
// ???????????????? 叉??〈??
|
||
mouse.beforeRightPushTime = TimeGetTime();
|
||
mouse.rightPushTime = 0;
|
||
}
|
||
|
||
// ???????????????????ㄅ????? ////////////////////////
|
||
void MouseCrickRightUpPoint( int x, int y )
|
||
{
|
||
// ┤????
|
||
mouse.state &= (~MOUSE_RIGHT_CRICK);
|
||
mouse.onceState |= MOUSE_RIGHT_CRICK_UP;
|
||
mouse.autoState &= (~MOUSE_RIGHT_CRICK);
|
||
// ?火????
|
||
mouse.crickRightUpPoint.x = x;
|
||
mouse.crickRightUpPoint.y = y;
|
||
// ????????????????
|
||
mouse.beforeRightPushTime = 0;
|
||
mouse.rightPushTime = 0;
|
||
}
|
||
|
||
// ??????????????????ㄅ????? //////////////////////////
|
||
void MouseDblCrickRightUpPoint( int x, int y )
|
||
{
|
||
// ┤????
|
||
mouse.state |= MOUSE_RIGHT_CRICK;
|
||
mouse.onceState |= MOUSE_RIGHT_DBL_CRICK;
|
||
mouse.onceState |= MOUSE_RIGHT_CRICK;
|
||
mouse.autoState |= MOUSE_RIGHT_CRICK;
|
||
// ?火????
|
||
mouse.crickRightDownPoint.x = x;
|
||
mouse.crickRightDownPoint.y = y;
|
||
// ???????????????? 叉??〈??
|
||
mouse.beforeRightPushTime = TimeGetTime();
|
||
mouse.rightPushTime = 0;
|
||
}
|
||
|
||
// ????? ///////////////////////////////////////////////////////////////
|
||
void MouseProc( void )
|
||
{
|
||
static UINT leftPushTimeBak;
|
||
static UINT rightPushTimeBak;
|
||
|
||
// ┤????
|
||
mouse.onceState = MOUSE_NO_CRICK;
|
||
// ???????????????????
|
||
if( mouse.beforeLeftPushTime > 0 )
|
||
{
|
||
mouse.leftPushTime = TimeGetTime() - mouse.beforeLeftPushTime;
|
||
}
|
||
// ???????????????????
|
||
if( mouse.beforeRightPushTime > 0 )
|
||
{
|
||
mouse.rightPushTime = TimeGetTime() - mouse.beforeRightPushTime;
|
||
}
|
||
// ?????????
|
||
// ????????????
|
||
// ???企??????
|
||
if( mouse.leftPushTime > 500 ){
|
||
// ???????
|
||
if( leftPushTimeBak == 0 ){
|
||
mouse.autoState |= MOUSE_LEFT_CRICK; // ?????
|
||
leftPushTimeBak = mouse.leftPushTime; // ?????
|
||
}else
|
||
// ????????刺?
|
||
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;
|
||
}
|
||
|
||
// ????????????
|
||
// ???企??????
|
||
if( mouse.rightPushTime > 500 ){
|
||
// ???????
|
||
if( rightPushTimeBak == 0 ){
|
||
mouse.autoState |= MOUSE_RIGHT_CRICK; // ?????
|
||
rightPushTimeBak = mouse.rightPushTime; // ?????
|
||
}else
|
||
// ????????刺?
|
||
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 ){
|
||
|
||
// ?????????
|
||
if( MouseCursorFlag == FALSE ){
|
||
if( mouse.flag == FALSE ){
|
||
StockDispBuffer( mouse.nowPoint.x + 16, mouse.nowPoint.y + 16, DISP_PRIO_MOUSE, CG_MOUSE_CURSOR, 0 );
|
||
}
|
||
}
|
||
|
||
}
|
||
// ????︻????? *********************************************************/
|
||
void CheckGroupSelect( int no )
|
||
{
|
||
int i;
|
||
DISP_INFO *pDispInfo;
|
||
DISP_SORT *pDispSort;
|
||
/* ???牙?????????牙??!????????? */
|
||
for( i = 0 ; i < DispBuffer.DispCnt ; i++ ){
|
||
|
||
pDispInfo = DispBuffer.DispInfo + i;
|
||
pDispSort = DispBuffer.DispSort + i;
|
||
|
||
// ??????????
|
||
if( pDispInfo->hitFlag == no ){
|
||
// ??????????
|
||
if( pDispSort->dispPrio >= DISP_PRIO_MENU ){
|
||
// ????牙????????????
|
||
#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{
|
||
// ????牙????????????
|
||
#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
|
||
// 牙????????????
|
||
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
|
||
|
||
/* ???????????刪叉 **************************************************/
|
||
void HitMouseCursor( void )
|
||
{
|
||
int i; // ???????
|
||
int strWidth; // 更???????
|
||
int hitFlag = FALSE; // ???刪叉???
|
||
static int cnt = 0; // ?????
|
||
int itemNameColor = FONT_PAL_WHITE; // ?????
|
||
|
||
DISP_SORT *pDispSort = DispBuffer.DispSort + DispBuffer.DispCnt - 1;
|
||
DISP_INFO *pDispInfo;
|
||
|
||
// 牙?????阪?
|
||
if( !transmigrationEffectFlag )
|
||
oneLineInfoFlag = 1;
|
||
else
|
||
oneLineInfoFlag = 0;
|
||
|
||
if( cnt >= sizeof( BoxColorTbl ) - 1 ) cnt = 0;
|
||
else cnt++;
|
||
|
||
// 牙????? 叉
|
||
BoxColor = BoxColorTbl[ cnt ];
|
||
#ifdef _ITEM_PATH
|
||
ITEMPATHFLAG = FALSE;
|
||
#endif
|
||
/* ????牙?????????????????????????可??*/
|
||
for( i = 0 ; i < FontCnt ; i++ ){
|
||
|
||
// ???刪叉??????
|
||
if( FontBuffer[ i ].hitFlag == 0 ) continue;
|
||
|
||
// 更???????????????
|
||
|
||
strWidth = GetStrWidth( FontBuffer[ i ].str );
|
||
|
||
// ?????刪叉
|
||
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 ){
|
||
|
||
// ???????吻?????
|
||
HitFontNo = i;
|
||
|
||
// ?????牙???
|
||
if( FontBuffer[ i ].hitFlag == 2 ){
|
||
// ????牙????????????
|
||
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 );
|
||
}
|
||
// 更?????
|
||
OneLineInfoStr[ 0 ] = NULL;
|
||
return; // ??????????????刪叉????
|
||
}
|
||
}
|
||
// ???????吻???????
|
||
HitFontNo = -1;
|
||
|
||
/* ???牙?????????牙??!????????? */
|
||
for( i = DispBuffer.DispCnt - 1; i >= 0 ; i--, pDispSort-- ){
|
||
// 牙????向????????????
|
||
pDispInfo = DispBuffer.DispInfo + pDispSort->no;
|
||
|
||
// ???刪叉??????
|
||
if( pDispInfo->hitFlag == 0 ) continue;
|
||
|
||
// ????????????㎝
|
||
//if( SpriteInfo[ pDispInfo->bmpNo ].lpSurfaceInfo == NULL ) continue;
|
||
// ?????????????????????????
|
||
// ?????????
|
||
if( LoadBmp( pDispInfo->bmpNo ) == FALSE ) continue;
|
||
|
||
// ?????????
|
||
if( pDispInfo->pAct == NULL ){
|
||
// ?????刪叉
|
||
#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{
|
||
// ?????刪叉????????
|
||
#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;
|
||
}
|
||
|
||
// 酘奻善衵狟晤瘍峈6 , 7 , 8 , 9
|
||
// 絞躺夔恁寁等齬醴垀恁寁腔婓扂源腔弇离
|
||
if( BattleMyNo >= 10 && ( 6 == pDispInfo->hitFlag || 7 == pDispInfo->hitFlag ) )
|
||
{
|
||
hitFlag = FALSE;
|
||
continue;
|
||
}
|
||
// 絞躺夔恁寁等齬醴垀恁寁腔婓扂源腔弇离
|
||
if( BattleMyNo < 10 && ( 8 == pDispInfo->hitFlag || 9 == pDispInfo->hitFlag ) )
|
||
{
|
||
hitFlag = FALSE;
|
||
continue;
|
||
}
|
||
#ifdef _SKILL_ADDBARRIER
|
||
// 硐夔恁扂源
|
||
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
|
||
|
||
// 更?牙????????
|
||
// StockFontBuffer( pDispInfo->x, pDispInfo->y, FONT_PRIO_FRONT, 0, "Hit", 1 );
|
||
|
||
// ???????吻????
|
||
HitDispNo = pDispSort->no;
|
||
|
||
// ?????牙???
|
||
if( pDispInfo->hitFlag >= 2 ){
|
||
// ??????????
|
||
if( pDispSort->dispPrio >= DISP_PRIO_YES_NO_WND ){
|
||
// ????牙????????????
|
||
#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
|
||
// ??????????
|
||
if( pDispSort->dispPrio >= DISP_PRIO_MENU ){
|
||
// ????牙????????????
|
||
#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{
|
||
// ????牙????????????
|
||
#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
|
||
}
|
||
|
||
// ????︻??????佃?︻??
|
||
if( pDispInfo->hitFlag >= 3 ) CheckGroupSelect( pDispInfo->hitFlag );
|
||
SortDispBuffer(); // 牙???????
|
||
}
|
||
|
||
// ?????????
|
||
if( TaskBarFlag == FALSE ){
|
||
// ?????????????
|
||
if( pDispInfo->pAct != NULL ){
|
||
// ??????牙????
|
||
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
|
||
|
||
|
||
|
||
// 更???
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%4d/%4d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
// ??????牙????
|
||
// ???????
|
||
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_PC ){
|
||
// ?〈? 叉
|
||
itemNameColor = pDispInfo->pAct->itemNameColor;
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d 騵ㄩ%dㄞ%d ㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d %s Lvㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d %s Lvㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d %s Lvㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d %s Lvㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d",
|
||
pc.familyName, pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
||
else
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%dㄞ%d ㄩ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pc.mp );
|
||
}
|
||
}else
|
||
// 兝????????
|
||
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
|
||
// ?〈? 叉
|
||
itemNameColor = pDispInfo->pAct->itemNameColor;
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%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ㄩ%d %s Lvㄩ%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ㄩ%d %s Lvㄩ%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ㄩ%d", pDispInfo->pAct->fmname, pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
else
|
||
sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
}else{
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%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ㄩ%d %s Lvㄩ%d", pDispInfo->pAct->fmname, pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
||
else
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d %s Lvㄩ%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ㄩ%d", pDispInfo->pAct->fmname, pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
else
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
}
|
||
}else
|
||
// ?????
|
||
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_PET ){
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
}else{
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
}
|
||
}else
|
||
// ??????
|
||
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_ITEM ){
|
||
// ?〈? 叉
|
||
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
|
||
// ??兝?????????即?
|
||
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_OTHER ){
|
||
sprintf_s( OneLineInfoStr,"%s", pDispInfo->pAct->name );
|
||
}
|
||
}else
|
||
// ·卯??
|
||
if( ProcNo == PROC_BATTLE ){
|
||
// ?????
|
||
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_PET ){
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
}else{
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
}
|
||
}else
|
||
// ??????
|
||
if( pDispInfo->pAct->atr & ACT_ATR_TYPE_ITEM ){
|
||
// ?〈? 叉
|
||
//itemNameColor = pDispInfo->pAct->itemNameColor;
|
||
sprintf_s( OneLineInfoStr,"%s", pDispInfo->pAct->name );
|
||
}else
|
||
// ?·?????????
|
||
if( BattleMyNo < BATTLKPKPLYAERNUM ){
|
||
// 希???????牙
|
||
if( ( (ATR_EQU *)pDispInfo->pAct->pYobi )->place_no == BattleMyNo ){
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
// Robin 0728 ride Pet
|
||
if( pDispInfo->pAct->onRide == 1 )
|
||
sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d 騵ㄩ%dㄞ%d ㄩ%d %s Lvㄩ%d 騵ㄩ%dㄞ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, BattleMyMp );
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%dㄞ%d ㄩ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d %s Lvㄩ%d 騵ㄩ%dㄞ%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ㄩ%d 騵ㄩ%dㄞ%d ㄩ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp, pDispInfo->pAct->mp );
|
||
}
|
||
}
|
||
else
|
||
// ?????牙
|
||
if( ( (ATR_EQU *)p_party[ BattleMyNo ]->pYobi )->group_flg == ( (ATR_EQU *)pDispInfo->pAct->pYobi )->group_flg ){
|
||
// 更???
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%4d/%4d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d 騵ㄩ%dㄞ%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ㄩ%d 騵ㄩ%dㄞ%d %s Lvㄩ%d 騵ㄩ%dㄞ%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ㄩ%d 騵ㄩ%dㄞ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
}else{
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%dㄞ%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ㄩ%d 騵ㄩ%dㄞ%d %s Lvㄩ%d 騵ㄩ%dㄞ%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ㄩ%d 騵ㄩ%dㄞ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
}
|
||
}else{ // ????
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
// Robin
|
||
if( pDispInfo->pAct->onRide == 1 )
|
||
#ifdef _STONDEBUG_
|
||
sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d 騵ㄩ%d %s Lvㄩ%d 騵ㄩ%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ㄩ%d %s Lvㄩ%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ㄩ%d 騵ㄩ%dㄞ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
#else
|
||
sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
#endif
|
||
}else{
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
// Robin
|
||
if( pDispInfo->pAct->onRide == 1 )
|
||
#ifdef _STONDEBUG_
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%d %s Lvㄩ%d 騵ㄩ%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ㄩ%d %s Lvㄩ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->level,
|
||
pDispInfo->pAct->petName, pDispInfo->pAct->petLevel );
|
||
#endif
|
||
else
|
||
#ifdef _STONDEBUG_
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%dㄞ%d",
|
||
pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
#else
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
#endif
|
||
}
|
||
}
|
||
}else{ // ?·?????
|
||
#ifdef _STONDEBUG_
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d 騵ㄩ%dㄞ%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d 騵ㄩ%dㄞ%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
//sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
}else{
|
||
// shan add
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%dㄞ%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%dㄞ%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
}
|
||
#else
|
||
// ????
|
||
if( pDispInfo->pAct->freeName[ 0 ] != NULL ){
|
||
//sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d 騵ㄩ%dㄞ%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
// shan add
|
||
sprintf_s( OneLineInfoStr,"%s [%s] Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->freeName, pDispInfo->pAct->level );
|
||
}else{
|
||
//sprintf_s( OneLineInfoStr,"%s Lvㄩ%d 騵ㄩ%dㄞ%d", pDispInfo->pAct->name, pDispInfo->pAct->level, pDispInfo->pAct->hp, pDispInfo->pAct->maxHp );
|
||
// shan add
|
||
sprintf_s( OneLineInfoStr,"%s Lvㄩ%d", pDispInfo->pAct->name, pDispInfo->pAct->level );
|
||
}
|
||
#endif
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if( oneLineInfoFlag)
|
||
ShowBottomLineString(itemNameColor, OneLineInfoStr);
|
||
}
|
||
// 更?????
|
||
OneLineInfoStr[ 0 ] = NULL;
|
||
|
||
// ??????
|
||
mouse.level = pDispSort->dispPrio;
|
||
return;
|
||
}
|
||
}
|
||
// ??????
|
||
mouse.level = DISP_PRIO_TILE;
|
||
// ???????吻???????
|
||
HitDispNo = -1;
|
||
|
||
// ?????????
|
||
if( TaskBarFlag == FALSE ){
|
||
ShowBottomLineString(itemNameColor, OneLineInfoStr);
|
||
}
|
||
// 更?????
|
||
OneLineInfoStr[ 0 ] = NULL;
|
||
|
||
}
|
||
|
||
|