mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Added missing #includes Added LUA scripting and console Changed the way tracers are visualized, so they work more like real tracers instead of a light fountain Fixed signedness of many grid variables used in GetMouseMapPos calls Fixed enemy weapon choosing: Sometimes a mortar is chosen but later rejected, but the grenade class was not reset. Caused assertion failure Added checks so enemies don't try to chuck RPG grenades with their hands Now possible to shoot a someone in the head if he's in water Fixed InitSightArrays to also clear soldier interrupt duel points. This was causing an assertion failure elsewhere in the code because the interrupt list still had soldiers on it sometimes when this function was called. Soldiers are much less willing to forfeit their turn over an attempt to use more APs than they have Removed early setting of muzzle flash. This would allow enemies to get an interrupt before you even fired. Fixed item dropping by AI. If AI tried to drop something while standing it would cause deadlock Change to greatly speed up closing the sector inventory window in an unloaded sector Added conditional compile flag to always give robot weapon ready advantage, even for 360 degree sighting Check builddefines.h for the conditional flags. Of greatest interest might be LUA_CONSOLE. This will cause the game to bring up a command console when run. However this console is severely lacking in many areas. If anybody knows of an open-source terminal/console that could be used instead, it would be appreciated. The existing console does bad things when you try to close it, and since it counts as a separate app, it pauses the game while it has focus. LUA scripting is very limited, basically just proof of concept. There is one global variable, the Soldiers array. An array index gives you the soldier in that slot in the currently loaded sector. The soldier has a few things that can be accessed: name (short name); fullname (long name); grid (current grid #, can be changed); walkto(grid) (function to walk to another grid); runto(grid) (function to run to another grid) git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@924 3b4a5df2-a311-0410-b5c6-a8a6f20db521
909 lines
23 KiB
C++
909 lines
23 KiB
C++
#ifdef PRECOMPILEDHEADERS
|
|
#include "TileEngine All.h"
|
|
#else
|
|
#include "worlddef.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "wcheck.h"
|
|
#include "stdlib.h"
|
|
#include "time.h"
|
|
#include "video.h"
|
|
#include "debug.h"
|
|
#include "smooth.h"
|
|
#include "worldman.h"
|
|
#include "lighting.h"
|
|
#include "renderworld.h"
|
|
#include "overhead.h"
|
|
#include "ai.h"
|
|
#include "Sound Control.h"
|
|
#include "animation control.h"
|
|
#include "isometric utils.h"
|
|
#include "Font Control.h"
|
|
#include "message.h"
|
|
#include "tile animation.h"
|
|
#include "tile cache.h"
|
|
#include "explosion control.h"
|
|
#include "weapons.h"
|
|
#include "Keys.h"
|
|
#include "bullets.h"
|
|
#include "LightEffects.h"
|
|
#include "rotting corpses.h"
|
|
#include "SmokeEffects.h"
|
|
#endif
|
|
|
|
|
|
ANITILE *pAniTileHead = NULL;
|
|
|
|
|
|
ANITILE *CreateAnimationTile( ANITILE_PARAMS *pAniParams )
|
|
{
|
|
ANITILE *pAniNode;
|
|
ANITILE *pNewAniNode;
|
|
LEVELNODE *pNode;
|
|
INT32 iCachedTile=-1;
|
|
INT16 sGridNo;
|
|
UINT8 ubLevel;
|
|
INT16 usTileType;
|
|
INT16 usTileIndex;
|
|
INT16 sDelay;
|
|
INT16 sStartFrame=-1;
|
|
UINT32 uiFlags;
|
|
LEVELNODE *pGivenNode;
|
|
INT16 sX, sY, sZ;
|
|
UINT8 ubTempDir;
|
|
|
|
// Get some parameters from structure sent in...
|
|
sGridNo = pAniParams->sGridNo;
|
|
ubLevel = pAniParams->ubLevelID;
|
|
usTileType = pAniParams->usTileType;
|
|
usTileIndex = pAniParams->usTileIndex;
|
|
sDelay = pAniParams->sDelay;
|
|
sStartFrame = pAniParams->sStartFrame;
|
|
uiFlags = pAniParams->uiFlags;
|
|
pGivenNode = pAniParams->pGivenLevelNode;
|
|
sX = pAniParams->sX;
|
|
sY = pAniParams->sY;
|
|
sZ = pAniParams->sZ;
|
|
|
|
|
|
pAniNode = pAniTileHead;
|
|
|
|
// Allocate head
|
|
pNewAniNode = (ANITILE *) MemAlloc( sizeof( ANITILE ) );
|
|
|
|
if ( (uiFlags & ANITILE_EXISTINGTILE ) )
|
|
{
|
|
pNewAniNode->pLevelNode = pGivenNode;
|
|
pNewAniNode->pLevelNode->pAniTile = pNewAniNode;
|
|
}
|
|
else
|
|
{
|
|
if ( ( uiFlags & ANITILE_CACHEDTILE ) )
|
|
{
|
|
iCachedTile = GetCachedTile( pAniParams->zCachedFile );
|
|
|
|
if ( iCachedTile == -1 )
|
|
{
|
|
return( NULL );
|
|
}
|
|
|
|
usTileIndex = iCachedTile + TILE_CACHE_START_INDEX;
|
|
}
|
|
|
|
// ALLOCATE NEW TILE
|
|
switch( ubLevel )
|
|
{
|
|
case ANI_STRUCT_LEVEL:
|
|
|
|
pNode = ForceStructToTail( sGridNo, usTileIndex );
|
|
break;
|
|
|
|
case ANI_SHADOW_LEVEL:
|
|
|
|
AddShadowToHead( sGridNo, usTileIndex );
|
|
pNode = gpWorldLevelData[ sGridNo ].pShadowHead;
|
|
break;
|
|
|
|
case ANI_OBJECT_LEVEL:
|
|
|
|
AddObjectToHead( sGridNo, usTileIndex );
|
|
pNode = gpWorldLevelData[ sGridNo ].pObjectHead;
|
|
break;
|
|
|
|
case ANI_ROOF_LEVEL:
|
|
|
|
AddRoofToHead( sGridNo, usTileIndex );
|
|
pNode = gpWorldLevelData[ sGridNo ].pRoofHead;
|
|
break;
|
|
|
|
case ANI_ONROOF_LEVEL:
|
|
|
|
AddOnRoofToHead( sGridNo, usTileIndex );
|
|
pNode = gpWorldLevelData[ sGridNo ].pOnRoofHead;
|
|
break;
|
|
|
|
case ANI_TOPMOST_LEVEL:
|
|
|
|
AddTopmostToHead( sGridNo, usTileIndex );
|
|
pNode = gpWorldLevelData[ sGridNo ].pTopmostHead;
|
|
break;
|
|
|
|
default:
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
// SET NEW TILE VALUES
|
|
pNode->ubShadeLevel=DEFAULT_SHADE_LEVEL;
|
|
pNode->ubNaturalShadeLevel=DEFAULT_SHADE_LEVEL;
|
|
|
|
pNewAniNode->pLevelNode = pNode;
|
|
|
|
if ( uiFlags & ANITILE_LIGHT )
|
|
{
|
|
if( !IsLightEffectAtTile(sGridNo) && ( pNewAniNode->lightSprite=LightSpriteCreate("L-R03.LHT", 0 ) )!=(-1))
|
|
{
|
|
LightSpritePower(pNewAniNode->lightSprite, TRUE);
|
|
{
|
|
INT16 sXPos, sYPos;
|
|
|
|
ConvertGridNoToCenterCellXY( sGridNo, &sXPos, &sYPos );
|
|
LightSpritePosition( pNewAniNode->lightSprite, (INT16)(sXPos/CELL_X_SIZE), (INT16)(sYPos/CELL_Y_SIZE));
|
|
}
|
|
}
|
|
else
|
|
pNewAniNode->lightSprite = -1;
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_CACHEDTILE ) )
|
|
{
|
|
pNewAniNode->pLevelNode->uiFlags |= ( LEVELNODE_CACHEDANITILE );
|
|
pNewAniNode->sCachedTileID = (INT16)iCachedTile;
|
|
pNewAniNode->usCachedTileSubIndex = usTileType;
|
|
pNewAniNode->pLevelNode->pAniTile = pNewAniNode;
|
|
pNewAniNode->sRelativeX = sX;
|
|
pNewAniNode->sRelativeY = sY;
|
|
pNewAniNode->pLevelNode->sRelativeZ = sZ;
|
|
|
|
}
|
|
// Can't set relative X,Y,Z IF FLAGS ANITILE_CACHEDTILE set!
|
|
else if ( (uiFlags & ANITILE_USEABSOLUTEPOS ) )
|
|
{
|
|
pNewAniNode->pLevelNode->sRelativeX = sX;
|
|
pNewAniNode->pLevelNode->sRelativeY = sY;
|
|
pNewAniNode->pLevelNode->sRelativeZ = sZ;
|
|
pNewAniNode->pLevelNode->uiFlags |= ( LEVELNODE_USEABSOLUTEPOS );
|
|
}
|
|
|
|
}
|
|
|
|
|
|
switch( ubLevel )
|
|
{
|
|
case ANI_STRUCT_LEVEL:
|
|
|
|
ResetSpecificLayerOptimizing( TILES_DYNAMIC_STRUCTURES );
|
|
break;
|
|
|
|
case ANI_SHADOW_LEVEL:
|
|
|
|
ResetSpecificLayerOptimizing( TILES_DYNAMIC_SHADOWS );
|
|
break;
|
|
|
|
case ANI_OBJECT_LEVEL:
|
|
|
|
ResetSpecificLayerOptimizing( TILES_DYNAMIC_OBJECTS );
|
|
break;
|
|
|
|
case ANI_ROOF_LEVEL:
|
|
|
|
ResetSpecificLayerOptimizing( TILES_DYNAMIC_ROOF );
|
|
break;
|
|
|
|
case ANI_ONROOF_LEVEL:
|
|
|
|
ResetSpecificLayerOptimizing( TILES_DYNAMIC_ONROOF );
|
|
break;
|
|
|
|
case ANI_TOPMOST_LEVEL:
|
|
|
|
ResetSpecificLayerOptimizing( TILES_DYNAMIC_TOPMOST );
|
|
break;
|
|
|
|
}
|
|
|
|
// SET FLAGS FOR LEVELNODE
|
|
pNewAniNode->pLevelNode->uiFlags |= ( LEVELNODE_ANIMATION | LEVELNODE_USEZ | LEVELNODE_DYNAMIC );
|
|
|
|
if ( ( uiFlags & ANITILE_NOZBLITTER ) )
|
|
{
|
|
pNewAniNode->pLevelNode->uiFlags |= LEVELNODE_NOZBLITTER;
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_ALWAYS_TRANSLUCENT ) )
|
|
{
|
|
pNewAniNode->pLevelNode->uiFlags |= LEVELNODE_REVEAL;
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_USEBEST_TRANSLUCENT ) )
|
|
{
|
|
pNewAniNode->pLevelNode->uiFlags |= LEVELNODE_USEBESTTRANSTYPE;
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_ANIMATE_Z ) )
|
|
{
|
|
pNewAniNode->pLevelNode->uiFlags |= LEVELNODE_DYNAMICZ;
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_PAUSED ) )
|
|
{
|
|
pNewAniNode->pLevelNode->uiFlags |= ( LEVELNODE_LASTDYNAMIC | LEVELNODE_UPDATESAVEBUFFERONCE );
|
|
pNewAniNode->pLevelNode->uiFlags &= (~LEVELNODE_DYNAMIC );
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_OPTIMIZEFORSMOKEEFFECT ) )
|
|
{
|
|
pNewAniNode->pLevelNode->uiFlags |= LEVELNODE_NOWRITEZ;
|
|
}
|
|
|
|
|
|
// SET ANITILE VALUES
|
|
pNewAniNode->ubLevelID = ubLevel;
|
|
pNewAniNode->usTileIndex = usTileIndex;
|
|
|
|
if ( ( uiFlags & ANITILE_CACHEDTILE ) )
|
|
{
|
|
pNewAniNode->usNumFrames = gpTileCache[ iCachedTile ].ubNumFrames;
|
|
}
|
|
else
|
|
{
|
|
Assert( gTileDatabase[ usTileIndex ].pAnimData != NULL );
|
|
pNewAniNode->usNumFrames = gTileDatabase[ usTileIndex ].pAnimData->ubNumFrames;
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_USE_DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gOneCDirection[ pAniParams->uiUserData3 ];
|
|
sStartFrame = (UINT16)sStartFrame + ( pNewAniNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
if ( ( uiFlags & ANITILE_USE_4DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gb4DirectionsFrom8[ pAniParams->uiUserData3 ];
|
|
sStartFrame = (UINT16)sStartFrame + ( pNewAniNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
pNewAniNode->usTileType = usTileType;
|
|
pNewAniNode->pNext = pAniNode;
|
|
pNewAniNode->uiFlags = uiFlags;
|
|
pNewAniNode->sDelay = sDelay;
|
|
pNewAniNode->sCurrentFrame = sStartFrame;
|
|
pNewAniNode->uiTimeLastUpdate = GetJA2Clock( );
|
|
pNewAniNode->sGridNo = sGridNo;
|
|
|
|
pNewAniNode->sStartFrame = sStartFrame;
|
|
|
|
pNewAniNode->ubKeyFrame1 = pAniParams->ubKeyFrame1;
|
|
pNewAniNode->uiKeyFrame1Code = pAniParams->uiKeyFrame1Code;
|
|
pNewAniNode->ubKeyFrame2 = pAniParams->ubKeyFrame2;
|
|
pNewAniNode->uiKeyFrame2Code = pAniParams->uiKeyFrame2Code;
|
|
pNewAniNode->uiUserData = pAniParams->uiUserData;
|
|
pNewAniNode->ubUserData2 = pAniParams->ubUserData2;
|
|
pNewAniNode->uiUserData3 = pAniParams->uiUserData3;
|
|
|
|
|
|
//Set head
|
|
pAniTileHead = pNewAniNode;
|
|
|
|
// Set some special stuff
|
|
return( pNewAniNode );
|
|
}
|
|
|
|
// Loop throug all ani tiles and remove...
|
|
void DeleteAniTiles( )
|
|
{
|
|
ANITILE *pAniNode = NULL;
|
|
ANITILE *pNode = NULL;
|
|
|
|
// LOOP THROUGH EACH NODE
|
|
// And call delete function...
|
|
pAniNode = pAniTileHead;
|
|
|
|
while( pAniNode != NULL )
|
|
{
|
|
pNode = pAniNode;
|
|
pAniNode = pAniNode->pNext;
|
|
|
|
DeleteAniTile( pNode );
|
|
}
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("DeleteAniTiles done") );
|
|
}
|
|
|
|
|
|
void DeleteAniTile( ANITILE *pAniTile )
|
|
{
|
|
ANITILE *pAniNode = NULL;
|
|
ANITILE *pOldAniNode = NULL;
|
|
TILE_ELEMENT *TileElem;
|
|
|
|
pAniNode = pAniTileHead;
|
|
|
|
while( pAniNode!= NULL )
|
|
{
|
|
if ( pAniNode == pAniTile )
|
|
{
|
|
// OK, set links
|
|
// Check for head or tail
|
|
if ( pOldAniNode == NULL )
|
|
{
|
|
// It's the head
|
|
pAniTileHead = pAniTile->pNext;
|
|
}
|
|
else
|
|
{
|
|
pOldAniNode->pNext = pAniNode->pNext;
|
|
}
|
|
|
|
if ( !(pAniNode->uiFlags & ANITILE_EXISTINGTILE ) )
|
|
{
|
|
|
|
// Delete memory assosiated with item
|
|
switch( pAniNode->ubLevelID )
|
|
{
|
|
case ANI_STRUCT_LEVEL:
|
|
|
|
RemoveStructFromLevelNode( pAniNode->sGridNo, pAniNode->pLevelNode );
|
|
break;
|
|
|
|
case ANI_SHADOW_LEVEL:
|
|
|
|
RemoveShadowFromLevelNode( pAniNode->sGridNo, pAniNode->pLevelNode );
|
|
break;
|
|
|
|
case ANI_OBJECT_LEVEL:
|
|
|
|
RemoveObject( pAniNode->sGridNo, pAniNode->usTileIndex );
|
|
break;
|
|
|
|
case ANI_ROOF_LEVEL:
|
|
|
|
RemoveRoof( pAniNode->sGridNo, pAniNode->usTileIndex );
|
|
break;
|
|
|
|
case ANI_ONROOF_LEVEL:
|
|
|
|
RemoveOnRoof( pAniNode->sGridNo, pAniNode->usTileIndex );
|
|
break;
|
|
|
|
case ANI_TOPMOST_LEVEL:
|
|
|
|
RemoveTopmostFromLevelNode( pAniNode->sGridNo, pAniNode->pLevelNode );
|
|
break;
|
|
|
|
}
|
|
if ( pAniNode->uiFlags & ANITILE_LIGHT && pAniNode->lightSprite >= 0 )
|
|
{
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("@@@@@@@1 Destroying light sprite %d", pAniNode->lightSprite) );
|
|
LightSpriteDestroy(pAniNode->lightSprite);
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("@@@@@@@1 Light sprite destroyed") );
|
|
}
|
|
|
|
if ( ( pAniNode->uiFlags & ANITILE_CACHEDTILE ) )
|
|
{
|
|
RemoveCachedTile( pAniNode->sCachedTileID );
|
|
}
|
|
|
|
if ( pAniNode->uiFlags & ANITILE_EXPLOSION )
|
|
{
|
|
// Talk to the explosion data...
|
|
RemoveExplosionData( pAniNode->uiUserData3 );
|
|
|
|
if ( !gfExplosionQueueActive )
|
|
{
|
|
// turn on sighting again
|
|
// the explosion queue handles all this at the end of the queue
|
|
gTacticalStatus.uiFlags &= (~DISALLOW_SIGHT);
|
|
}
|
|
|
|
// Freeup attacker from explosion
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("@@@@@@@ Reducing attacker busy count..., EXPLOSION effect gone off") );
|
|
DebugAttackBusy( "@@@@@@@ EXPLOSION effect finished.\n");
|
|
ReduceAttackBusyCount( );
|
|
|
|
}
|
|
|
|
|
|
if ( pAniNode->uiFlags & ANITILE_RELEASE_ATTACKER_WHEN_DONE )
|
|
{
|
|
// First delete the bullet!
|
|
RemoveBullet( pAniNode->uiUserData3 );
|
|
|
|
// 0verhaul: Removed because it's handled by RemoveBullet.
|
|
// DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("@@@@@@@ Freeing up attacker - miss finished animation") );
|
|
// FreeUpAttacker( (UINT8) pAniNode->ubAttackerMissed );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
TileElem = &( gTileDatabase[ pAniNode->usTileIndex ] );
|
|
|
|
// OK, update existing tile usIndex....
|
|
Assert( TileElem->pAnimData != NULL );
|
|
pAniNode->pLevelNode->usIndex = TileElem->pAnimData->pusFrames[ pAniNode->pLevelNode->sCurrentFrame ];
|
|
|
|
// OK, set our frame data back to zero....
|
|
pAniNode->pLevelNode->sCurrentFrame = 0;
|
|
|
|
// Set some flags to write to Z / update save buffer
|
|
// pAniNode->pLevelNode->uiFlags |=( LEVELNODE_LASTDYNAMIC | LEVELNODE_UPDATESAVEBUFFERONCE );
|
|
pAniNode->pLevelNode->uiFlags &= ~( LEVELNODE_DYNAMIC | LEVELNODE_USEZ | LEVELNODE_ANIMATION );
|
|
|
|
if (pAniNode->uiFlags & ANITILE_DOOR)
|
|
{
|
|
// unset door busy!
|
|
DOOR_STATUS * pDoorStatus;
|
|
|
|
pDoorStatus = GetDoorStatus( pAniNode->sGridNo );
|
|
if (pDoorStatus)
|
|
{
|
|
pDoorStatus->ubFlags &= ~(DOOR_BUSY);
|
|
}
|
|
|
|
if ( GridNoOnScreen( pAniNode->sGridNo ) )
|
|
{
|
|
SetRenderFlags(RENDER_FLAG_FULL);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("@@@@@@@ freeing up animation memory") );
|
|
MemFree( pAniNode );
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("@@@@@@@ DeleteAniTile: done") );
|
|
return;
|
|
}
|
|
|
|
pOldAniNode = pAniNode;
|
|
pAniNode = pAniNode->pNext;
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateAniTiles( )
|
|
{
|
|
ANITILE *pAniNode = NULL;
|
|
ANITILE *pNode = NULL;
|
|
UINT32 uiClock = GetJA2Clock( );
|
|
UINT16 usMaxFrames, usMinFrames;
|
|
UINT8 ubTempDir;
|
|
|
|
// LOOP THROUGH EACH NODE
|
|
pAniNode = pAniTileHead;
|
|
|
|
while( pAniNode != NULL )
|
|
{
|
|
pNode = pAniNode;
|
|
pAniNode = pAniNode->pNext;
|
|
|
|
if ( (uiClock - pNode->uiTimeLastUpdate ) > (UINT32)pNode->sDelay && !( pNode->uiFlags & ANITILE_PAUSED ) )
|
|
{
|
|
pNode->uiTimeLastUpdate = GetJA2Clock( );
|
|
|
|
if ( pNode->uiFlags & ( ANITILE_OPTIMIZEFORSLOWMOVING ) )
|
|
{
|
|
pNode->pLevelNode->uiFlags |= (LEVELNODE_DYNAMIC );
|
|
pNode->pLevelNode->uiFlags &= (~LEVELNODE_LASTDYNAMIC);
|
|
}
|
|
else if ( pNode->uiFlags & ( ANITILE_OPTIMIZEFORSMOKEEFFECT ) )
|
|
{
|
|
// pNode->pLevelNode->uiFlags |= LEVELNODE_DYNAMICZ;
|
|
ResetSpecificLayerOptimizing( TILES_DYNAMIC_STRUCTURES );
|
|
pNode->pLevelNode->uiFlags &= (~LEVELNODE_LASTDYNAMIC);
|
|
pNode->pLevelNode->uiFlags |= (LEVELNODE_DYNAMIC );
|
|
}
|
|
|
|
if ( pNode->uiFlags & ANITILE_FORWARD )
|
|
{
|
|
usMaxFrames = pNode->usNumFrames;
|
|
|
|
if ( pNode->uiFlags & ANITILE_USE_DIRECTION_FOR_START_FRAME )
|
|
{
|
|
ubTempDir = gOneCDirection[ pNode->uiUserData3 ];
|
|
usMaxFrames = (UINT16)usMaxFrames + ( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
if ( pNode->uiFlags & ANITILE_USE_4DIRECTION_FOR_START_FRAME )
|
|
{
|
|
ubTempDir = gb4DirectionsFrom8[ pNode->uiUserData3 ];
|
|
usMaxFrames = (UINT16)usMaxFrames + ( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
if ( ( pNode->sCurrentFrame + 1 ) < usMaxFrames )
|
|
{
|
|
pNode->sCurrentFrame++;
|
|
pNode->pLevelNode->sCurrentFrame = pNode->sCurrentFrame;
|
|
|
|
if ( pNode->uiFlags & ANITILE_EXPLOSION )
|
|
{
|
|
// Talk to the explosion data...
|
|
UpdateExplosionFrame( pNode->uiUserData3, pNode->sCurrentFrame );
|
|
}
|
|
|
|
// CHECK IF WE SHOULD BE DISPLAYING TRANSLUCENTLY!
|
|
if ( pNode->sCurrentFrame == pNode->ubKeyFrame1 )
|
|
{
|
|
switch( pNode->uiKeyFrame1Code )
|
|
{
|
|
case ANI_KEYFRAME_BEGIN_TRANSLUCENCY:
|
|
|
|
pNode->pLevelNode->uiFlags |= LEVELNODE_REVEAL;
|
|
break;
|
|
|
|
case ANI_KEYFRAME_CHAIN_WATER_EXPLOSION:
|
|
|
|
IgniteExplosion( pNode->ubUserData2, pNode->pLevelNode->sRelativeX, pNode->pLevelNode->sRelativeY, 0, pNode->sGridNo, (UINT16)( pNode->uiUserData ), 0 );
|
|
DebugAttackBusy( "Reducing attack busy from water explosion delay.\n");
|
|
ReduceAttackBusyCount( );
|
|
break;
|
|
|
|
case ANI_KEYFRAME_DO_SOUND:
|
|
|
|
PlayJA2Sample( pNode->uiUserData, RATE_11025, SoundVolume( MIDVOLUME, (INT16)pNode->uiUserData3 ), 1, SoundDir( (INT16)pNode->uiUserData3 ) );
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
// CHECK IF WE SHOULD BE DISPLAYING TRANSLUCENTLY!
|
|
if ( pNode->sCurrentFrame == pNode->ubKeyFrame2 )
|
|
{
|
|
UINT16 ubExpType;
|
|
|
|
switch( pNode->uiKeyFrame2Code )
|
|
{
|
|
case ANI_KEYFRAME_BEGIN_DAMAGE:
|
|
|
|
ubExpType = Explosive[ Item[ (UINT16)pNode->uiUserData ].ubClassIndex ].ubType;
|
|
|
|
// if ( ubExpType == EXPLOSV_TEARGAS || ubExpType == EXPLOSV_MUSTGAS ||
|
|
// ubExpType == EXPLOSV_SMOKE )
|
|
if ( ubExpType == EXPLOSV_TEARGAS || ubExpType == EXPLOSV_MUSTGAS ||
|
|
ubExpType == EXPLOSV_SMOKE || ubExpType == EXPLOSV_BURNABLEGAS )
|
|
{
|
|
// Do sound....
|
|
// PlayJA2Sample( AIR_ESCAPING_1, RATE_11025, SoundVolume( HIGHVOLUME, pNode->sGridNo ), 1, SoundDir( pNode->sGridNo ) );
|
|
NewSmokeEffect( pNode->sGridNo, (UINT16)pNode->uiUserData, gExplosionData[ pNode->uiUserData3 ].Params.bLevel, (UINT8)pNode->ubUserData2 );
|
|
}
|
|
else
|
|
{
|
|
SpreadEffect( pNode->sGridNo, (UINT8)Explosive[ Item[ (UINT16)pNode->uiUserData ].ubClassIndex ].ubRadius, (UINT16)pNode->uiUserData, (UINT8)pNode->ubUserData2, FALSE, gExplosionData[ pNode->uiUserData3 ].Params.bLevel, -1 );
|
|
}
|
|
// Forfait any other animations this frame....
|
|
return;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
// We are done!
|
|
if ( pNode->uiFlags & ANITILE_LOOPING )
|
|
{
|
|
pNode->sCurrentFrame = pNode->sStartFrame;
|
|
|
|
if ( ( pNode->uiFlags & ANITILE_USE_DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gOneCDirection[ pNode->uiUserData3 ];
|
|
pNode->sCurrentFrame = (UINT16)( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
if ( ( pNode->uiFlags & ANITILE_USE_4DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gb4DirectionsFrom8[ pNode->uiUserData3 ];
|
|
pNode->sCurrentFrame = (UINT16)( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
}
|
|
else if ( pNode->uiFlags & ANITILE_REVERSE_LOOPING )
|
|
{
|
|
// Turn off backwards flag
|
|
pNode->uiFlags &= (~ANITILE_FORWARD );
|
|
|
|
// Turn onn forwards flag
|
|
pNode->uiFlags |= ANITILE_BACKWARD;
|
|
}
|
|
else
|
|
{
|
|
|
|
// Delete from world!
|
|
DeleteAniTile( pNode );
|
|
|
|
// Turn back on redunency checks!
|
|
gTacticalStatus.uiFlags &= (~NOHIDE_REDUNDENCY);
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("UpdateAniTiles: tile deleted, flags updated - done") );
|
|
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( pNode->uiFlags & ANITILE_BACKWARD )
|
|
{
|
|
if ( pNode->uiFlags & ANITILE_ERASEITEMFROMSAVEBUFFFER )
|
|
{
|
|
// ATE: Check if bounding box is on the screen...
|
|
if ( pNode->bFrameCountAfterStart == 0 )
|
|
{
|
|
pNode->bFrameCountAfterStart = 1;
|
|
pNode->pLevelNode->uiFlags |= (LEVELNODE_DYNAMIC );
|
|
|
|
// Dangerous here, since we may not even be on the screen...
|
|
SetRenderFlags( RENDER_FLAG_FULL );
|
|
|
|
continue;
|
|
}
|
|
}
|
|
|
|
usMinFrames = 0;
|
|
|
|
if ( pNode->uiFlags & ANITILE_USE_DIRECTION_FOR_START_FRAME )
|
|
{
|
|
ubTempDir = gOneCDirection[ pNode->uiUserData3 ];
|
|
usMinFrames = ( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
if ( pNode->uiFlags & ANITILE_USE_4DIRECTION_FOR_START_FRAME )
|
|
{
|
|
ubTempDir = gb4DirectionsFrom8[ pNode->uiUserData3 ];
|
|
usMinFrames = ( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
if ( ( pNode->sCurrentFrame - 1 ) >= usMinFrames )
|
|
{
|
|
pNode->sCurrentFrame--;
|
|
pNode->pLevelNode->sCurrentFrame = pNode->sCurrentFrame;
|
|
|
|
if ( pNode->uiFlags & ANITILE_EXPLOSION )
|
|
{
|
|
// Talk to the explosion data...
|
|
UpdateExplosionFrame( pNode->uiUserData3, pNode->sCurrentFrame );
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
// We are done!
|
|
if ( pNode->uiFlags & ANITILE_PAUSE_AFTER_LOOP )
|
|
{
|
|
// Turn off backwards flag
|
|
pNode->uiFlags &= (~ANITILE_BACKWARD );
|
|
|
|
// Pause
|
|
pNode->uiFlags |= ANITILE_PAUSED;
|
|
|
|
}
|
|
else if ( pNode->uiFlags & ANITILE_LOOPING )
|
|
{
|
|
pNode->sCurrentFrame = pNode->sStartFrame;
|
|
|
|
if ( ( pNode->uiFlags & ANITILE_USE_DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gOneCDirection[ pNode->uiUserData3 ];
|
|
pNode->sCurrentFrame = (UINT16)( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
if ( ( pNode->uiFlags & ANITILE_USE_4DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gb4DirectionsFrom8[ pNode->uiUserData3 ];
|
|
pNode->sCurrentFrame = (UINT16)( pNode->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
}
|
|
else if ( pNode->uiFlags & ANITILE_REVERSE_LOOPING )
|
|
{
|
|
// Turn off backwards flag
|
|
pNode->uiFlags &= (~ANITILE_BACKWARD );
|
|
|
|
// Turn onn forwards flag
|
|
pNode->uiFlags |= ANITILE_FORWARD;
|
|
}
|
|
else
|
|
{
|
|
// Delete from world!
|
|
DeleteAniTile( pNode );
|
|
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("UpdateAniTiles: tile deleted - done") );
|
|
|
|
return;
|
|
}
|
|
|
|
if ( pNode->uiFlags & ANITILE_ERASEITEMFROMSAVEBUFFFER )
|
|
{
|
|
// ATE: Check if bounding box is on the screen...
|
|
pNode->bFrameCountAfterStart = 0;
|
|
//pNode->pLevelNode->uiFlags |= LEVELNODE_UPDATESAVEBUFFERONCE;
|
|
|
|
// Dangerous here, since we may not even be on the screen...
|
|
SetRenderFlags( RENDER_FLAG_FULL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
if ( pNode->uiFlags & ( ANITILE_OPTIMIZEFORSLOWMOVING ) )
|
|
{
|
|
// ONLY TURN OFF IF PAUSED...
|
|
if ( ( pNode->uiFlags & ANITILE_ERASEITEMFROMSAVEBUFFFER ) )
|
|
{
|
|
if ( pNode->uiFlags & ANITILE_PAUSED )
|
|
{
|
|
if ( pNode->pLevelNode->uiFlags & LEVELNODE_DYNAMIC )
|
|
{
|
|
pNode->pLevelNode->uiFlags &= (~LEVELNODE_DYNAMIC );
|
|
pNode->pLevelNode->uiFlags |= (LEVELNODE_LASTDYNAMIC);
|
|
SetRenderFlags( RENDER_FLAG_FULL );
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
pNode->pLevelNode->uiFlags &= (~LEVELNODE_DYNAMIC );
|
|
pNode->pLevelNode->uiFlags |= (LEVELNODE_LASTDYNAMIC);
|
|
}
|
|
}
|
|
else if ( pNode->uiFlags & ( ANITILE_OPTIMIZEFORSMOKEEFFECT ) )
|
|
{
|
|
pNode->pLevelNode->uiFlags |= (LEVELNODE_LASTDYNAMIC);
|
|
pNode->pLevelNode->uiFlags &= (~LEVELNODE_DYNAMIC );
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void SetAniTileFrame( ANITILE *pAniTile, INT16 sFrame )
|
|
{
|
|
UINT8 ubTempDir;
|
|
INT16 sStartFrame = 0;
|
|
|
|
if ( (pAniTile->uiFlags & ANITILE_USE_DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gOneCDirection[ pAniTile->uiUserData3 ];
|
|
sStartFrame = (UINT16)sFrame + ( pAniTile->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
if ( (pAniTile->uiFlags & ANITILE_USE_4DIRECTION_FOR_START_FRAME ) )
|
|
{
|
|
// Our start frame is actually a direction indicator
|
|
ubTempDir = gb4DirectionsFrom8[ pAniTile->uiUserData3 ];
|
|
sStartFrame = (UINT16)sFrame + ( pAniTile->usNumFrames * ubTempDir );
|
|
}
|
|
|
|
pAniTile->sCurrentFrame = sStartFrame;
|
|
|
|
}
|
|
|
|
|
|
ANITILE *GetCachedAniTileOfType( INT16 sGridNo, UINT8 ubLevelID, UINT32 uiFlags )
|
|
{
|
|
LEVELNODE *pNode = NULL;
|
|
|
|
switch( ubLevelID )
|
|
{
|
|
case ANI_STRUCT_LEVEL:
|
|
|
|
pNode = gpWorldLevelData[ sGridNo ].pStructHead;
|
|
break;
|
|
|
|
case ANI_SHADOW_LEVEL:
|
|
|
|
pNode = gpWorldLevelData[ sGridNo ].pShadowHead;
|
|
break;
|
|
|
|
case ANI_OBJECT_LEVEL:
|
|
|
|
pNode = gpWorldLevelData[ sGridNo ].pObjectHead;
|
|
break;
|
|
|
|
case ANI_ROOF_LEVEL:
|
|
|
|
pNode = gpWorldLevelData[ sGridNo ].pRoofHead;
|
|
break;
|
|
|
|
case ANI_ONROOF_LEVEL:
|
|
|
|
pNode = gpWorldLevelData[ sGridNo ].pOnRoofHead;
|
|
break;
|
|
|
|
case ANI_TOPMOST_LEVEL:
|
|
|
|
pNode = gpWorldLevelData[ sGridNo ].pTopmostHead;
|
|
break;
|
|
|
|
default:
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
while( pNode != NULL )
|
|
{
|
|
if ( pNode->uiFlags & LEVELNODE_CACHEDANITILE )
|
|
{
|
|
if ( pNode->pAniTile->uiFlags & uiFlags )
|
|
{
|
|
return( pNode->pAniTile );
|
|
}
|
|
|
|
}
|
|
|
|
pNode = pNode->pNext;
|
|
}
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
|
|
void HideAniTile( ANITILE *pAniTile, BOOLEAN fHide )
|
|
{
|
|
if ( fHide )
|
|
{
|
|
pAniTile->pLevelNode->uiFlags |= LEVELNODE_HIDDEN;
|
|
}
|
|
else
|
|
{
|
|
pAniTile->pLevelNode->uiFlags &= (~LEVELNODE_HIDDEN );
|
|
}
|
|
}
|
|
|
|
void PauseAniTile( ANITILE *pAniTile, BOOLEAN fPause )
|
|
{
|
|
if ( fPause )
|
|
{
|
|
pAniTile->uiFlags |= ANITILE_PAUSED;
|
|
}
|
|
else
|
|
{
|
|
pAniTile->uiFlags &= (~ANITILE_PAUSED );
|
|
}
|
|
}
|
|
|
|
|
|
void PauseAllAniTilesOfType( UINT32 uiType, BOOLEAN fPause )
|
|
{
|
|
ANITILE *pAniNode = NULL;
|
|
ANITILE *pNode = NULL;
|
|
|
|
// LOOP THROUGH EACH NODE
|
|
pAniNode = pAniTileHead;
|
|
|
|
while( pAniNode != NULL )
|
|
{
|
|
pNode = pAniNode;
|
|
pAniNode = pAniNode->pNext;
|
|
|
|
if ( pNode->uiFlags & uiType )
|
|
{
|
|
PauseAniTile( pNode, fPause );
|
|
}
|
|
|
|
}
|
|
|
|
}
|