map_movi.cc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.hh"
  9. #include "g1_object.hh"
  10. #include "m_flow.hh"
  11. i4_bool g1_map_class::start_movie()
  12. {
  13. if (!current_movie || !current_movie->current())
  14. return i4_F;
  15. current_movie->start();
  16. movie_in_progress=i4_T;
  17. g1_object_class *o[G1_MAX_OBJECTS];
  18. int t=make_object_list(o,G1_MAX_OBJECTS);
  19. for (int i=0; i<t; i++)
  20. o[i]->request_think();
  21. tick_time.get();
  22. return i4_T;
  23. }
  24. void g1_map_class::stop_movie()
  25. {
  26. if (current_movie)
  27. current_movie->stop();
  28. movie_in_progress=i4_F;
  29. }
  30. i4_bool g1_map_class::advance_movie_with_time()
  31. {
  32. if (current_movie)
  33. {
  34. g1_movie_flow_class::advance_status stat;
  35. stat=current_movie->advance_movie_with_time();
  36. if (stat==g1_movie_flow_class::DONE)
  37. {
  38. movie_in_progress=i4_F;
  39. return i4_F;
  40. }
  41. if (stat==g1_movie_flow_class::NEXT_SCENE)
  42. {
  43. g1_object_class *o[G1_MAX_OBJECTS];
  44. int t=make_object_list(o,G1_MAX_OBJECTS);
  45. for (int i=0; i<t; i++)
  46. o[i]->request_think();
  47. }
  48. return i4_T;
  49. }
  50. else
  51. return i4_F;
  52. }