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