map_data.cc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. #include "map_data.hh"
  9. #include <string.h>
  10. g1_map_data_class *g1_map_data_class::first=0;
  11. g1_map_data_class::g1_map_data_class(char *name)
  12. : name(name)
  13. {
  14. if (!first)
  15. {
  16. next=first;
  17. first=this;
  18. }
  19. else
  20. {
  21. g1_map_data_class *last=0;
  22. g1_map_data_class *p;
  23. for (p=first; p && strcmp(p->name,name)>0;)
  24. {
  25. last=p;
  26. p=p->next;
  27. }
  28. if (last)
  29. {
  30. p->next=last->next;
  31. last->next=p;
  32. }
  33. else
  34. {
  35. next=first;
  36. first=this;
  37. }
  38. }
  39. }
  40. g1_map_data_class::~g1_map_data_class()
  41. {
  42. if (this==first)
  43. first=first->next;
  44. else
  45. {
  46. g1_map_data_class *p;
  47. for (p=first; p->next!=this; p=p->next);
  48. p->next=next;
  49. }
  50. }