saver.hh 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_SAVER_HH
  9. #define G1_SAVER_HH
  10. #include "file/file.hh"
  11. #include "memory/growarry.hh"
  12. #include "path.hh"
  13. #include "reference.hh"
  14. #include "loaders/dir_load.hh"
  15. #include "loaders/dir_save.hh"
  16. #include "lisp/li_types.hh"
  17. #include "global_id.hh"
  18. class g1_path_saver_class;
  19. class g1_object_class;
  20. struct g1_saver_section_type
  21. {
  22. w16 section_id;
  23. w32 section_offset;
  24. g1_saver_section_type(w16 section_id, w32 section_offset)
  25. : section_offset(section_offset), section_id(section_id) {}
  26. };
  27. class g1_saver_class : public i4_saver_class
  28. {
  29. g1_object_class **ref_list;
  30. w32 t_refs;
  31. g1_global_id_manager_class::remapper *remap;
  32. public:
  33. g1_saver_class(i4_file_class *out, i4_bool close_on_delete=i4_T);
  34. ~g1_saver_class();
  35. void set_helpers(g1_object_class **reference_list, w32 total_references);
  36. virtual i4_bool write_reference(const g1_reference_class &ref);
  37. i4_bool write_global_id(w32 id);
  38. };
  39. class g1_loader_class : public i4_loader_class
  40. {
  41. g1_object_class **ref_list;
  42. w32 t_refs;
  43. g1_reference_class *first_ref;
  44. w32 *id_remap;
  45. public:
  46. li_type_number *li_remap; // used to load lisp objects
  47. i4_bool references_were_loaded() { return first_ref!=0; }
  48. g1_loader_class(i4_file_class *in, i4_bool close_on_delete=i4_T);
  49. void set_remap(w32 total_refs);
  50. void end_remap();
  51. void set_helpers(g1_object_class **reference_list, w32 total_references);
  52. void read_reference(g1_reference_class &ref);
  53. w32 read_global_id();
  54. // called by level loader after all objects have been loaded
  55. void convert_references();
  56. ~g1_loader_class();
  57. };
  58. // returns NULL if file is corrupted
  59. g1_loader_class *g1_open_save_file(i4_file_class *in,
  60. i4_bool close_on_delete_or_fail=i4_T);
  61. #endif