Import Aliens vs Predator - Gold (Build 116)
Source code release, imported from: https://www.gamefront.com/games/aliens-vs-predator-3/file/avp-gold-complete-source-code All text files were converted to Unix format.
This commit is contained in:
commit
218ca90543
572 changed files with 434587 additions and 0 deletions
43
3dc/win95/smacker.h
Normal file
43
3dc/win95/smacker.h
Normal file
|
@ -0,0 +1,43 @@
|
|||
/* KJL 15:25:20 8/16/97
|
||||
*
|
||||
* smacker.h - functions to handle FMV playback
|
||||
*
|
||||
*/
|
||||
#include "smack.h"
|
||||
|
||||
extern void PlayFMV(char *filenamePtr);
|
||||
extern void StartMenuMusic(void);
|
||||
extern void PlayMenuMusic(void);
|
||||
extern void EndMenuMusic(void);
|
||||
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
IMAGEHEADER *ImagePtr;
|
||||
Smack *SmackHandle;
|
||||
int SoundVolume;
|
||||
int IsTriggeredPlotFMV;
|
||||
int StaticImageDrawn;
|
||||
|
||||
int MessageNumber;
|
||||
|
||||
LPDIRECTDRAWSURFACE SrcSurface;
|
||||
LPDIRECT3DTEXTURE SrcTexture;
|
||||
LPDIRECT3DTEXTURE DestTexture;
|
||||
PALETTEENTRY SrcPalette[256];
|
||||
|
||||
int RedScale;
|
||||
int GreenScale;
|
||||
int BlueScale;
|
||||
|
||||
} FMVTEXTURE;
|
||||
|
||||
|
||||
extern int NextFMVTextureFrame(FMVTEXTURE *ftPtr, void *bufferPtr);
|
||||
extern void UpdateFMVTexturePalette(FMVTEXTURE *ftPtr);
|
||||
extern void InitialiseTriggeredFMVs(void);
|
||||
extern void StartTriggerPlotFMV(int number);
|
||||
|
||||
extern void StartFMVAtFrame(int number, int frame);
|
||||
extern void GetFMVInformation(int *messageNumberPtr, int *frameNumberPtr);
|
Loading…
Add table
Add a link
Reference in a new issue