dxx-rebirth/common/main/endlevel.h

60 lines
1.8 KiB
C
Raw Normal View History

2006-03-20 17:12:09 +00:00
/*
2014-06-01 17:55:23 +00:00
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
2006-03-20 17:12:09 +00:00
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.
*/
/*
*
* Header for endlevel.c
2006-03-20 17:12:09 +00:00
*
*/
#ifndef _OUTSIDE_H
#define _OUTSIDE_H
#ifdef __cplusplus
2014-11-23 04:36:58 +00:00
#include "vecmat.h"
#include "segnum.h"
2006-03-20 17:12:09 +00:00
extern int Endlevel_sequence;
void do_endlevel_frame();
void stop_endlevel_sequence();
void start_endlevel_sequence();
void render_endlevel_frame(fix eye_offset);
void draw_exit_model();
void free_endlevel_data();
2006-03-20 17:12:09 +00:00
void init_endlevel();
extern grs_bitmap *terrain_bitmap; //*satellite_bitmap,*station_bitmap,
extern segnum_t exit_segnum;
2006-03-20 17:12:09 +00:00
//@@extern vms_vector mine_exit_point;
//@@extern object external_explosion;
//@@extern int ext_expl_playing;
//called for each level to load & setup the exit sequence
void load_endlevel_data(int level_num);
2014-09-28 21:51:49 +00:00
extern unsigned exit_modelnum, destroyed_exit_modelnum;
2012-11-11 00:14:30 +00:00
extern vms_matrix surface_orient;
2006-03-20 17:12:09 +00:00
#endif
2006-03-20 17:12:09 +00:00
#endif /* _OUTSIDE_H */