light.hh 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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_LIGHT_HH
  9. #define G1_LIGHT_HH
  10. #include "math/vector.hh"
  11. class i4_saver_class;
  12. class i4_loader_class;
  13. struct g1_light_info
  14. {
  15. float directional_intensity; // 0..1
  16. i4_3d_vector direction;
  17. float ambient_intensity; // 0..1
  18. float shadow_intensity[256];
  19. void recalc_shadow_intensity();
  20. void set_ambient_intensity(float v);
  21. void set_directional_intensity(float v);
  22. void save(i4_saver_class *fp);
  23. i4_bool load(i4_loader_class *fp);
  24. void defaults();
  25. g1_light_info();
  26. } ;
  27. extern g1_light_info g1_lights;
  28. #endif