]> icculus.org git repositories - btb/d2x.git/blob - main/render.h
use the orientation parameter of g3_draw_bitmap
[btb/d2x.git] / main / render.h
1 /*
2 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
3 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
4 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
5 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
6 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
7 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
8 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
9 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
10 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
11 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
12 */
13
14 /*
15  *
16  * Header for rendering-based functions
17  *
18  */
19
20
21 #ifndef _RENDER_H
22 #define _RENDER_H
23
24 #include "3d.h"
25
26 #include "object.h"
27
28 #define MAX_RENDER_SEGS     500
29 #define OBJS_PER_SEG        5
30 #define N_EXTRA_OBJ_LISTS   50
31
32 extern int Clear_window;    // 1 = Clear whole background window, 2 = clear view portals into rest of world, 0 = no clear
33
34 void render_frame(fix eye_offset, int window_num);  //draws the world into the current canvas
35
36 // cycle the flashing light for when mine destroyed
37 void flash_frame(void);
38
39 int find_seg_side_face(short x,short y,int *seg,int *side,int *face,int *poly);
40
41 // these functions change different rendering parameters
42 // all return the new value of the parameter
43
44 // how may levels deep to render
45 int inc_render_depth(void);
46 int dec_render_depth(void);
47 int reset_render_depth(void);
48
49 // how many levels deep to render in perspective
50 int inc_perspective_depth(void);
51 int dec_perspective_depth(void);
52 int reset_perspective_depth(void);
53
54 // misc toggles
55 int toggle_outline_mode(void);
56 int toggle_show_only_curside(void);
57
58 // When any render function needs to know what's looking at it, it
59 // should access Render_viewer_object members.
60 extern fix Render_zoom;     // the player's zoom factor
61
62 // This is used internally to render_frame(), but is included here so AI
63 // can use it for its own purposes.
64 extern unsigned char visited[MAX_SEGMENTS];
65
66 extern int N_render_segs;
67 extern short Render_list[MAX_RENDER_SEGS];
68
69 #ifdef EDITOR
70 extern int Render_only_bottom;
71 #endif
72
73
74 // Set the following to turn on player head turning
75 extern int Use_player_head_angles;
76
77 // If the above flag is set, these angles specify the orientation of the head
78 extern vms_angvec Player_head_angles;
79
80 //
81 // Routines for conditionally rotating & projecting points
82 //
83
84 // This must be called at the start of the frame if rotate_list() will be used
85 void render_start_frame(void);
86
87 // Given a list of point numbers, rotate any that haven't been rotated
88 // this frame
89 g3s_codes rotate_list(int nv, short *pointnumlist);
90
91 // Given a list of point numbers, project any that haven't been projected
92 void project_list(int nv, short *pointnumlist);
93
94 extern void render_mine(int start_seg_num, fix eye_offset, int window_num);
95
96 extern void update_rendered_data(int window_num, object *viewer, int rear_view_flag, int user);
97
98 #endif /* _RENDER_H */