g1_render.hh 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef G1_RENDER_HH
  9. #define G1_RENDER_HH
  10. #include "arch.hh"
  11. #include "math/num_type.hh"
  12. #include "player_type.hh"
  13. #include "r1_vert.hh"
  14. #include "tex_id.hh"
  15. class g1_screen_box
  16. {
  17. public:
  18. i4_float x1,y1,x2,y2;
  19. i4_float z1,z2,w;
  20. w32 object_id; // same as global id of object
  21. };
  22. struct g1_selectable_list
  23. {
  24. enum { MAX=64 };
  25. w32 t_recent;
  26. g1_screen_box recent[MAX];
  27. g1_screen_box *add() { return t_recent<MAX-1 ? recent + (t_recent++) : 0; }
  28. g1_selectable_list() { t_recent=0; }
  29. };
  30. class g1_post_draw_quad_class
  31. {
  32. public:
  33. w16 vert_ref[4]; // if vert_ref[3]=0xffff then it is a tri
  34. g1_post_draw_quad_class() { ; }
  35. g1_post_draw_quad_class(w16 a, w16 b, w16 c, w16 d)
  36. {
  37. vert_ref[0]=a;
  38. vert_ref[1]=b;
  39. vert_ref[2]=c;
  40. vert_ref[3]=d;
  41. }
  42. };
  43. class g1_quad_object_class;
  44. class i4_transform_class;
  45. class g1_sprite_class;
  46. class i4_3d_point_class;
  47. class r1_render_api_class;
  48. class cell_shadow_poly_list;
  49. class g1_map_vertex_class;
  50. class g1_map_cell_class;
  51. class i4_transform_class;
  52. class g1_quad_class;
  53. class g1_draw_context_class;
  54. class g1_object_class;
  55. class g1_map_class;
  56. class i4_draw_context_class;
  57. class i4_font_class;
  58. typedef g1_quad_class *(*g1_tint_modify_function_type)(g1_quad_class *in, g1_player_type player);
  59. typedef void (*g1_get_ambient_function_type)(i4_transform_class *object_to_world,
  60. i4_float &ar, i4_float &ag, i4_float &ab);
  61. // this is the default function for handling tinted polygons
  62. g1_quad_class *g1_tint_modify_function(g1_quad_class *in, g1_player_type player);
  63. // default method for getting ambient lighting, reads from the map
  64. void g1_get_ambient_function(i4_transform_class *object_to_world,
  65. i4_float &ar, i4_float &ag, i4_float &ab);
  66. enum { G1_REVERSE_POINTS=2};
  67. class g1_render_class
  68. {
  69. public:
  70. g1_selectable_list *current_selectable_list;
  71. g1_selectable_list *last_selectable_list;
  72. enum { WIREFRAME, TEXTURED, SOLID } draw_mode;
  73. static i4_bool main_draw;
  74. static i4_float scale_x, scale_y, ooscale_x, ooscale_y,
  75. center_x, center_y;
  76. static r1_render_api_class *r_api;
  77. // this number will be >0 && <=1, it use to interpolate object position on fast frame
  78. // rates i.e. draw_x = (lx-x)*frame_ration + lx
  79. float frame_ratio;
  80. i4_font_class *rendered_font;
  81. g1_tint_modify_function_type tint_modify;
  82. g1_get_ambient_function_type get_ambient;
  83. static sw8 render_damage_level;
  84. float calculate_frame_ratio();
  85. void set_render_damage_level(sw8 level) { render_damage_level = level; }
  86. void render_object(g1_quad_object_class *obj,
  87. i4_transform_class *object_to_view,
  88. i4_transform_class *object_to_world = 0,
  89. i4_float texture_scale = 1.0,
  90. int player_num = -1, // -1 is no player
  91. sw32 current_frame = 0,
  92. g1_screen_box *outline = 0,
  93. w32 option_flags = 0);
  94. void render_object_polys(g1_quad_object_class *obj,
  95. i4_transform_class *object_to_view,
  96. sw32 current_frame = 0);
  97. // draws a sprite on the screen nearest to view, sprite_width is in pixels
  98. void render_near_sprite(float px, float py,
  99. r1_texture_handle tex,
  100. float sprite_width=0.1, float sprite_height=0.1,
  101. float s1=0, float t1=0, float s2=1, float t2=1);
  102. // draws a sprite on the at the specifed z, (it is projected) sprite_width is world-space size
  103. void render_sprite(const i4_3d_vector &view_space_position,
  104. r1_texture_handle tex,
  105. float sprite_width=0.1, float sprite_height=0.1,
  106. float s1=0, float t1=0, float s2=1, float t2=1);
  107. void render_3d_line(const i4_3d_point_class &v1,
  108. const i4_3d_point_class &v2,
  109. i4_color color1,
  110. i4_color color2,
  111. i4_transform_class *t,
  112. i4_bool draw_in_front_of_everything=i4_F);
  113. void draw_outline(g1_screen_box *outline, g1_object_class *for_who);
  114. void post_draw_quads();
  115. sw32 add_post_draw_vert(r1_vert &a);
  116. sw32 add_post_draw_quad(g1_post_draw_quad_class &q);
  117. void add_smoke_vert(i4_float x, i4_float y, i4_float z,
  118. i4_float r, i4_float g, i4_float b,
  119. i4_float alpha)
  120. {
  121. r1_vert a;
  122. a.v.x=x;
  123. a.v.y=y;
  124. a.v.z=z;
  125. a.r=r;
  126. a.g=g;
  127. a.b=b;
  128. a.a=alpha;
  129. add_post_draw_vert(a);
  130. }
  131. void add_translucent_trail(i4_transform_class *t,
  132. i4_3d_point_class *spots, int t_spots,
  133. float start_width, float end_width,
  134. float start_alpha, float end_alpha,
  135. w32 sc, w32 ec);
  136. /* void draw_building(g1_draw_context_class *context,
  137. g1_map_cell_class *cell,
  138. w16 x, w16 y,
  139. g1_map_vertex_class *v1,
  140. g1_map_vertex_class *v2,
  141. g1_map_vertex_class *v3,
  142. g1_map_vertex_class *v4,
  143. i4_bool p_or_span); */
  144. void draw_rectangle(int x1, int y1, int x2, int y2, i4_color color,
  145. i4_draw_context_class &context);
  146. // this routine transform all 4 verts (in place) and clip the resulting quad and render it
  147. void clip_render_quad(g1_quad_class *q, r1_vert *verts,
  148. i4_transform_class *t,
  149. int current_frame);
  150. void install_font();
  151. void uninstall_font();
  152. g1_render_class()
  153. {
  154. rendered_font=0;
  155. draw_mode=TEXTURED;
  156. tint_modify=g1_tint_modify_function;
  157. get_ambient=g1_get_ambient_function;
  158. current_selectable_list=0;
  159. }
  160. i4_bool project_point(const i4_3d_point_class &p, r1_vert &v, i4_transform_class *transform);
  161. };
  162. void g1_setup_tri_texture_coords(r1_vert *tri1, r1_vert *tri2,
  163. int cell_rotation, int cell_is_mirrored);
  164. extern g1_render_class g1_render;
  165. #endif