dxx-rebirth/common/main/effects.h
2014-02-01 18:55:18 +00:00

97 lines
2.9 KiB
C

/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
*
* Headerfile for effects.c
*
*/
#ifndef _EFFECTS_H
#define _EFFECTS_H
#include "vclip.h"
#ifdef __cplusplus
#include "dxxsconf.h"
#include "compiler-array.h"
#if defined(DXX_BUILD_DESCENT_I)
#define MAX_EFFECTS 60
#elif defined(DXX_BUILD_DESCENT_II)
#define MAX_EFFECTS 110
#endif
//flags for eclips. If no flags are set, always plays
#define EF_CRITICAL 1 //this doesn't get played directly (only when mine critical)
#define EF_ONE_SHOT 2 //this is a special that gets played once
#define EF_STOPPED 4 //this has been stopped
#define ECLIP_NUM_FUELCEN 2
#define ECLIP_NUM_BOSS 53
#ifdef DXX_BUILD_DESCENT_II
#define ECLIP_NUM_FORCE_FIELD 78
#endif
struct eclip
{
vclip vc; //imbedded vclip
fix time_left; //for sequencing
int frame_count; //for sequencing
short changing_wall_texture; //Which element of Textures array to replace.
short changing_object_texture; //Which element of ObjBitmapPtrs array to replace.
int flags; //see above
int crit_clip; //use this clip instead of above one when mine critical
int dest_bm_num; //use this bitmap when monitor destroyed
int dest_vclip; //what vclip to play when exploding
int dest_eclip; //what eclip to play when exploding
fix dest_size; //3d size of explosion
int sound_num; //what sound this makes
int segnum,sidenum; //what seg & side, for one-shot clips
};
#if defined(DXX_BUILD_DESCENT_I) || defined(DXX_BUILD_DESCENT_II)
extern unsigned Num_effects;
extern array<eclip, MAX_EFFECTS> Effects;
#endif
// Set up special effects.
extern void init_special_effects();
// Clear any active one-shots
void reset_special_effects();
// Function called in game loop to do effects.
extern void do_special_effects();
// Restore bitmap
extern void restore_effect_bitmap_icons();
//stop an effect from animating. Show first frame.
void stop_effect(int effect_num);
//restart a stopped effect
void restart_effect(int effect_num);
/*
* reads n eclip structs from a PHYSFS_file
*/
void eclip_read(PHYSFS_file *fp, eclip &ec);
void eclip_write(PHYSFS_file *fp, const eclip &ec);
#endif
#endif /* _EFFECTS_H */