dxx-rebirth/common/main/endlevel.h

68 lines
2 KiB
C++

/*
* 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.
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
*
*/
#pragma once
#include <array>
#include "vecmat.h"
#include "fwd-segment.h"
#include "fwd-robot.h"
#include "gr.h"
#include "fwd-window.h"
namespace dcx {
struct d_unique_endlevel_state
{
using starfield_type = std::array<vms_vector, 500>;
starfield_type stars;
};
extern grs_bitmap *terrain_bitmap; //*satellite_bitmap,*station_bitmap,
extern polygon_model_index exit_modelnum, destroyed_exit_modelnum;
extern int Endlevel_sequence;
extern vms_matrix surface_orient;
void free_endlevel_data();
}
#ifdef dsx
namespace dsx {
window_event_result do_endlevel_frame(const d_level_shared_robot_info_state &LevelSharedRobotInfoState);
window_event_result stop_endlevel_sequence();
window_event_result start_endlevel_sequence();
void render_endlevel_frame(grs_canvas &, fix eye_offset);
//@@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);
}
#endif