obj3d.hh 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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 OBJ3D_HH
  9. #define OBJ3D_HH
  10. #include "arch.hh"
  11. #include "math/point.hh"
  12. #include "tex_id.hh"
  13. #include "r1_vert.hh"
  14. #include "g1_vert.hh"
  15. #include "error/error.hh"
  16. class g1_texture_animation
  17. {
  18. public:
  19. w16 quad_number; // quad number in model
  20. w8 max_frames; // frames of animation (0 == panning texture)
  21. w8 frames_x; // frames of animation in X direction
  22. i4_float speed; // speed of animation in units/frame
  23. i4_float du,dv; // total change in u & v in pan or animation
  24. i4_float u[4], v[4]; // base u,v coordinates from the polygon
  25. };
  26. class g1_quad_class
  27. {
  28. public:
  29. enum { MAX_VERTS=4 };
  30. typedef w16 vertex_ref_type;
  31. w32 max_verts() const { return MAX_VERTS; }
  32. w32 num_verts() const { return (vertex_ref[MAX_VERTS-1]==0xffff)? MAX_VERTS-1 : MAX_VERTS; }
  33. vertex_ref_type vertex_ref[MAX_VERTS];
  34. i4_float u[4],v[4], texture_scale;
  35. i4_3d_vector normal;
  36. r1_texture_handle material_ref;
  37. w32 flags;
  38. enum
  39. {
  40. TRANSLUCENCY = 0x1f,
  41. TINT = (1<<5),
  42. SELECTED = (1<<6),
  43. ON = 0xff
  44. };
  45. void set_flags(w8 mask, w8 value = ON) { flags = (flags&~mask) | (value&mask); }
  46. w8 get_flags(w8 mask) const { return flags&mask; }
  47. void set(w32 a, w32 b, w32 c, w32 d = 0xffff)
  48. //{{{
  49. {
  50. vertex_ref[0] = (w16)a;
  51. vertex_ref[1] = (w16)b;
  52. vertex_ref[2] = (w16)c;
  53. vertex_ref[3] = (w16)d;
  54. }
  55. //}}}
  56. void set_material(r1_texture_handle _material_ref)
  57. //{{{
  58. {
  59. material_ref=_material_ref;
  60. }
  61. //}}}
  62. };
  63. class g1_quad_object_class
  64. {
  65. public:
  66. class animation_class
  67. {
  68. public:
  69. w16 num_frames;
  70. g1_vert_class *vertex; // num_vert * num_frame entries
  71. };
  72. w16 num_vertex;
  73. g1_quad_class *quad;
  74. w16 num_quad;
  75. animation_class *animation;
  76. w16 num_animations;
  77. w32 *mount_id;
  78. i4_3d_vector *mount;
  79. w16 num_mounts;
  80. g1_texture_animation *special;
  81. w16 num_special;
  82. i4_bool get_mount_point(char *name, i4_3d_vector& vect) const;
  83. g1_vert_class *get_verts(int anim, int frame)
  84. //{{{
  85. {
  86. return animation[anim].vertex + num_vertex * frame;
  87. }
  88. //}}}
  89. i4_float extent;
  90. void scale(i4_float value);
  91. void translate(i4_float xadd, i4_float yadd, i4_float zadd);
  92. void calc_extents(void);
  93. void init() { num_vertex=0; num_quad=0; num_mounts=0; num_animations=0; num_special=0; }
  94. ~g1_quad_object_class() {}
  95. i4_bool intersect(const i4_3d_vector &point,
  96. const i4_3d_vector &ray,
  97. int anim, int frame,
  98. i4_float *t=0,
  99. int *poly_hit=0,
  100. i4_3d_vector *normal_hit=0);
  101. void update(i4_float frame);
  102. };
  103. class i4_loader_class;
  104. class g1_base_object_loader_class
  105. {
  106. public:
  107. g1_quad_object_class *obj;
  108. virtual g1_quad_object_class *allocate_object() = 0;
  109. virtual void set_num_vertex(w16 num_vertex) = 0;
  110. virtual void set_num_animations(w16 anims) = 0;
  111. virtual void create_animation(w16 anim, const i4_const_str &name, w16 frames) = 0;
  112. virtual void create_vertex(w16 anim, w16 frame, w16 index, const i4_3d_vector& v) = 0;
  113. virtual void store_vertex_normal(w16 anim, w16 frame, w16 index, const i4_3d_vector& normal) {}
  114. virtual void set_num_quads(w16 num_quads) = 0;
  115. virtual void create_quad(w16 quad, int verts, w16 *ref, w32 flags) = 0;
  116. virtual void store_texture_name(w32 quad, const i4_const_str &name) {}
  117. virtual void store_texture_params(w32 quad, i4_float scale, i4_float *u, i4_float *v) {}
  118. virtual void store_quad_normal(w16 quad, const i4_3d_vector& v) {}
  119. virtual void set_num_mount_points(w16 num_mounts) {}
  120. virtual void create_mount_point(w32 index, const i4_const_str &name, const i4_3d_vector &off) {}
  121. virtual void set_num_texture_animations(w16 num_textures) {}
  122. virtual void create_texture_animation(w32 index, w16 quad, w8 max_frames, w8 frames_x,
  123. i4_float du, i4_float dv, i4_float speed) {}
  124. virtual void create_texture_pan(w32 index, w16 quad,
  125. i4_float du, i4_float dv, i4_float speed) {}
  126. virtual void finish_object() {}
  127. virtual g1_quad_object_class *load(i4_loader_class *fp);
  128. };
  129. #endif
  130. //{{{ Emacs Locals
  131. // Local Variables:
  132. // folded-file: t
  133. // End:
  134. //}}}