f_tables.hh 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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_F_TABLES_HH
  9. #define G1_F_TABLES_HH
  10. #include "math/point.hh"
  11. #include "math/num_type.hh"
  12. extern float g1_table_0_31_to_n1_1[32]; // maps 5 bits of integer into float range -1 to 1
  13. extern float g1_table_0_31_to_0_1[32]; // maps 5 bits of integer into float range 0 to 1
  14. extern float g1_table_0_255_to_0_1[256];
  15. extern float g1_shadow_sub_0_63_to_0_1_red_or_green[64]; // used in map_vert.hh for cloud shadows
  16. extern float g1_shadow_sub_0_63_to_0_1_blue[64];
  17. inline w16 g1_normal_to_16(i4_3d_vector v)
  18. {
  19. w32 x=i4_f_to_i((v.x+1.0)*15.5),
  20. y=i4_f_to_i((v.y+1.0)*15.5),
  21. z=i4_f_to_i((v.z+1.0)*15.5);
  22. return (x<<10)|(y<<5)|z;
  23. }
  24. #endif