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

271 lines
7.9 KiB
C++
Raw Permalink Normal View History

2020-06-23 15:53:23 +08:00
/************************/
2020-06-23 15:27:59 +08:00
/* pattern.cpp */
/************************/
/* ENT : ACTION *a0 ,
2020-06-23 15:53:23 +08:00
: ????????????????????
2020-06-23 15:27:59 +08:00
: ????????????????????????????
2020-06-23 15:53:23 +08:00
RET : ?????????
: ??????
2020-06-23 15:27:59 +08:00
*/
#include "../systeminc/version.h"
#include "../systeminc/system.h"
#include "../systeminc/loadrealbin.h"
#include "../systeminc/loadsprbin.h"
#include "../systeminc/anim_tbl.h"
#include "../systeminc/t_music.h"
#ifdef _NPC_PICTURE
extern BOOL g_bUseAlpha;
void picture_play( ACTION *a0 )
{
//int i,j;
int pictable[9]={100388,100841,101178,100854,101570,100353,101759,101424,101489};
if( a0->picture != 0 ){
int picture1 = ((((a0->picture)&0xff000000)>>24)&0x000000ff);
int picture2 = ((((a0->picture)&0x00ff0000)>>16)&0x000000ff);
int picture3 = ((((a0->picture)&0x0000ff00)>>8 )&0x000000ff);
int picture4 = ( (a0->picture)&0x000000ff );
//a0->anim_no = ANIM_WALK;
2020-06-23 15:53:23 +08:00
if( picture1 == 1 ){//不断变身
2020-06-23 15:27:59 +08:00
if( a0->anim_chr_no == 101936 ){
a0->anim_chr_no = 101863;
return;
}
else if( a0->anim_chr_no == 101863 ){
a0->anim_chr_no = pictable[a0->picturetemp];
}
else
a0->anim_chr_no = 101863;
++a0->picturetemp;
if(a0->picturetemp == 9 )
a0->picturetemp = 0;
}
2020-06-23 15:53:23 +08:00
else if( picture1 == 2 ){//变身于某个图号
2020-06-23 15:27:59 +08:00
if( a0->anim_chr_no != pictable[picture2] ){
if( a0->anim_chr_no == 101863 )
a0->anim_chr_no = pictable[a0->picturetemp];
else
a0->anim_chr_no = 101863;
}
else{
2020-06-23 15:53:23 +08:00
if( a0->anim_no == 0 )//设定动作
2020-06-23 15:27:59 +08:00
a0->anim_no = 3;
else
a0->anim_no = 0;
}
++a0->picturetemp;
if(a0->picturetemp == 9 )
a0->picturetemp = 0;
}
else if( picture1 == 3 ){
if(g_bUseAlpha) a0->anim_chr_no = 101805; else a0->anim_chr_no = 101858;
a0->picture = (((1)<<24)&0xff000000)
|(((picture2)<<16)&0x00ff0000)
|(((picture3)<< 8)&0x0000ff00)
|( (picture4) &0x000000ff);
}
}
}
#endif
/*---------- ????????? ----------*/
2020-06-23 15:53:23 +08:00
// Return 1:播完了此动画( 无重覆播放的状况下 )
// Return 0:播放此动画中
2020-06-23 15:27:59 +08:00
int pattern( ACTION *a0, int anim_spd, int loop_flg)
{
ANIMLIST *ptAnimlist;
FRAMELIST *ptFramelist;
int i;
short dx,dy;
int BmpNo;
U4 chrNo;
extern int getCharType(ACTION *ptAct);
if(getCharType(a0)){
if(ATR_PAT_NO(a0)){
ATR_PAT_BAK_NO(a0) = ATR_PAT_NO(a0);
ATR_PAT_NO(a0) = 0;
}
return 0;
}else{
if(!ATR_PAT_NO(a0) && ATR_PAT_BAK_NO(a0)) ATR_PAT_NO(a0) = ATR_PAT_BAK_NO(a0);
}
if(ATR_CHR_ACT_OLD(a0) != ATR_CHR_ACT(a0) ||
ATR_CHR_ANG(a0) != ATR_CHR_ANG_OLD(a0) ||
ATR_CHR_NO(a0) != ATR_CHR_NO_OLD(a0)){
2020-06-23 15:53:23 +08:00
ATR_CHR_NO_OLD(a0) = ATR_CHR_NO(a0); /*????????????*/
ATR_CHR_ACT_OLD(a0) = ATR_CHR_ACT(a0); /*??????*/
ATR_CHR_ANG_OLD(a0) = ATR_CHR_ANG(a0); /*???????*/
ATR_CHR_TIM(a0) = 0;//frame counter设为一
ATR_CHR_CNT(a0) = 0;//这个动画的第几张图
2020-06-23 15:27:59 +08:00
}
if(ATR_CHR_TIM(a0)){
2020-06-23 15:53:23 +08:00
ATR_CHR_TIM(a0)--; //frame counter减一
2020-06-23 15:27:59 +08:00
return 0;
}
if(ATR_CHR_NO(a0) <= CG_INVISIBLE){
2020-06-23 15:53:23 +08:00
ATR_PAT_NO(a0) = 0; //指定为第0张图
2020-06-23 15:27:59 +08:00
#ifdef _NPC_PICTURE
picture_play(a0);
#endif
return 0;
}
2020-06-23 15:53:23 +08:00
if(ATR_CHR_NO(a0) < SPRSTART){ //不是sprite
2020-06-23 15:27:59 +08:00
realGetNo( ATR_CHR_NO(a0) , (U4 *)&BmpNo );
realGetPos( BmpNo , &dx, &dy);
2020-06-23 15:53:23 +08:00
ATR_PAT_NO(a0) = BmpNo; //BMP的图档编号
2020-06-23 15:27:59 +08:00
#ifdef _FIX_CG_ATR_ICON
if (ATR_CHR_NO(a0)>= CG_ATR_ICON_EARTH_BATTLE && ATR_CHR_NO(a0)<=CG_ATR_ICON_WIND_BATTLE){
2020-06-23 15:53:23 +08:00
ATR_CHR_H_POS(a0) = dx - 20; //X座标
2020-06-23 15:27:59 +08:00
}else{
2020-06-23 15:53:23 +08:00
ATR_CHR_H_POS(a0) = dx; //X座标
2020-06-23 15:27:59 +08:00
}
#else
2020-06-23 15:53:23 +08:00
ATR_CHR_H_POS(a0) = dx; //X座标
2020-06-23 15:27:59 +08:00
#endif
2020-06-23 15:53:23 +08:00
ATR_CHR_V_POS(a0) = dy; //Y座标
2020-06-23 15:27:59 +08:00
ATR_CHR_TIM(a0)=0x7fffffff;
//cary
if( ATR_CHR_ACT(a0) == ANIM_ATTACK && ATR_CHR_CNT(a0) == 0){
ATR_CHR_TIM(a0)=0;
ATR_HIT(a0) = 10000;
ATR_CHR_CNT(a0) = 1;
#ifdef _NPC_PICTURE
picture_play(a0);
#endif
return 0;
}
ATR_CHR_CNT(a0) = 0;
ATR_CHR_ACT(a0) = ANIM_STAND;
if( loop_flg == ANM_NO_LOOP){
#ifdef _NPC_PICTURE
picture_play(a0);
#endif
return 1;
}
//cary end
#ifdef _NPC_PICTURE
picture_play(a0);
#endif
return 0;
}
if(ATR_CHR_NO(a0) > SPRSTART + mxSPRITE){
#ifdef _NPC_PICTURE
picture_play(a0);
#endif
2020-06-23 15:53:23 +08:00
return 0; //超出sprite的范围
2020-06-23 15:27:59 +08:00
}
chrNo = ATR_CHR_NO(a0) - SPRSTART;
ptAnimlist = SpriteData[chrNo].ptAnimlist;
if( SpriteData[chrNo].animSize == 0 ){
#ifdef _NPC_PICTURE
picture_play(a0);
#endif
2020-06-23 15:53:23 +08:00
return 0; //无动画
2020-06-23 15:27:59 +08:00
}
2020-06-23 15:53:23 +08:00
//选择想要的方向和动画
2020-06-23 15:27:59 +08:00
for(i=0 ; i < SpriteData[chrNo].animSize; i++){
if( ATR_CHR_ANG(a0) == ptAnimlist[i].dir && ptAnimlist[i].no == ATR_CHR_ACT(a0) )
break;
}
if( i >= SpriteData[chrNo].animSize ){
// shan remark
// i = 0;
for( int sh_i=0 ; sh_i < SpriteData[chrNo].animSize; sh_i++){
if( ATR_CHR_ANG(a0) == ptAnimlist[sh_i].dir && ptAnimlist[sh_i].no == ANIM_STAND){
i = sh_i;
break;
}else{
i = 0;
}
}
}
ptFramelist = ptAnimlist[i].ptFramelist;
2020-06-23 15:53:23 +08:00
if(anim_spd) //有指定动画速度
2020-06-23 15:27:59 +08:00
ATR_CHR_TIM(a0) = anim_spd;
else
ATR_CHR_TIM(a0) = ptAnimlist[i].dtAnim;
#ifdef _NPC_PICTURE
if( a0->picture != 0 ){
int pictable[9]={100388,100841,101178,100854,101570,100353,101759,101424,101489};
/*if( (((a0->picture&0xff000000)>>24) & 0x000000ff) == 1
|| (((a0->picture&0xff000000)>>24) & 0x000000ff) == 3
|| ( (((a0->picture&&0xff000000)>>24) & 0x000000ff) == 2
&& ( a0->anim_chr_no != pictable[(((a0->picture&0x00ff0000)>>16)&0x000000ff)] ) ) )
2020-06-23 15:53:23 +08:00
ATR_CHR_TIM(a0) = 1;//变身npc速度调最快
2020-06-23 15:27:59 +08:00
*/
if( a0->anim_chr_no != pictable[(((a0->picture&0x00ff0000)>>16)&0x000000ff)]
|| (((a0->picture&0xff000000)>>24) & 0x000000ff) == 1
|| (((a0->picture&0xff000000)>>24) & 0x000000ff) == 3 )
if( a0->anim_chr_no != 101805 && a0->anim_chr_no != 101858 && a0->anim_chr_no != 101936 )
2020-06-23 15:53:23 +08:00
ATR_CHR_TIM(a0) = 1;//变身npc速度调最快
2020-06-23 15:27:59 +08:00
}
#endif
if((U4)ATR_CHR_CNT(a0) >= ptAnimlist[i].frameCnt){ //????????????
#ifdef _NPC_PICTURE
picture_play(a0);
#endif
2020-06-23 15:53:23 +08:00
if(loop_flg == ANM_NO_LOOP){ //?????
2020-06-23 15:27:59 +08:00
ATR_CHR_TIM(a0) = 255;
2020-06-23 15:53:23 +08:00
return 1; //????????
2020-06-23 15:27:59 +08:00
} else
2020-06-23 15:53:23 +08:00
ATR_CHR_CNT(a0) = 0; //???
2020-06-23 15:27:59 +08:00
}
2020-06-23 15:53:23 +08:00
//??????
2020-06-23 15:27:59 +08:00
if( ptFramelist[ATR_CHR_CNT(a0)].SoundNo != 0 ){
if(ptFramelist[ATR_CHR_CNT(a0)].SoundNo < 10000)
play_se( ptFramelist[ATR_CHR_CNT(a0)].SoundNo, ATR_H_POS(a0), ATR_V_POS(a0) );
else
ATR_HIT(a0) = ptFramelist[ATR_CHR_CNT(a0)].SoundNo;
}
#ifdef _PROFESSION_ADDSKILL
else{
if(ATR_CHR_NO(a0) >= 101769 && ATR_CHR_NO(a0) <= 101797){
int soundnum = 0;
switch(ATR_PAT_NO(a0)){
case 156+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 390;break;//水结界390
2020-06-23 15:27:59 +08:00
case 193+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 390;break;//水结界390
2020-06-23 15:27:59 +08:00
case 304+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 327;break;//地结界
2020-06-23 15:27:59 +08:00
case 341+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 327;break;//地结界
2020-06-23 15:27:59 +08:00
case 231+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 395;break;//火结界
2020-06-23 15:27:59 +08:00
case 268+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 268;break;//火结界
2020-06-23 15:27:59 +08:00
case 380+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 154;break;//风结界
2020-06-23 15:27:59 +08:00
case 417+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 154;break;//风结界
2020-06-23 15:27:59 +08:00
case 75+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 324;break;//破结界
2020-06-23 15:27:59 +08:00
case 97+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 324;break;//破结界
2020-06-23 15:27:59 +08:00
case 117+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 385;break;//号召自然
2020-06-23 15:27:59 +08:00
case 137+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 385;break;//号召自然
2020-06-23 15:27:59 +08:00
case 60+OLD_GRAPHICS_START:
2020-06-23 15:53:23 +08:00
soundnum = 388;break;//自然威能
2020-06-23 15:27:59 +08:00
}
play_se(soundnum,ATR_H_POS(a0),ATR_V_POS(a0));
}
}
#endif
2020-06-23 15:53:23 +08:00
ATR_PAT_NO(a0) = ptFramelist[ATR_CHR_CNT(a0)].BmpNo; //???????
realGetPos(ptFramelist[ATR_CHR_CNT(a0)].BmpNo, &dx, &dy); //????????????
ATR_CHR_H_POS(a0) = ptFramelist[ATR_CHR_CNT(a0)].PosX + dx; //??????????
ATR_CHR_V_POS(a0) = ptFramelist[ATR_CHR_CNT(a0)].PosY + dy; //??????????
2020-06-23 15:27:59 +08:00
ATR_CHR_CNT(a0)++;
ATR_CHR_TIM(a0)--;
return 0;
}