Mission3.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** File: Mission3.h
  5. **
  6. ** Author:
  7. **
  8. ** Description:
  9. ** Header file for the training library "Mission3" interface.
  10. **
  11. ** History:
  12. */
  13. #ifndef _MISSION_ONE_H_
  14. #define _MISSION_ONE_H_
  15. #ifndef _TRAINING_MISSION_H_
  16. #include "TrainingMission.h"
  17. #endif //_TRAINING_MISSION_H_
  18. namespace Training
  19. {
  20. //------------------------------------------------------------------------------
  21. // a needed value
  22. //------------------------------------------------------------------------------
  23. #define TM_NUMBER_OF_DERELICTS 10
  24. //------------------------------------------------------------------------------
  25. // class definitions
  26. //------------------------------------------------------------------------------
  27. class Mission3 : public TrainingMission
  28. {
  29. public:
  30. virtual /* void */ ~Mission3 (void);
  31. virtual int GetMissionID (void);
  32. virtual SectorID GetStartSectorID (void);
  33. virtual bool RecordKeyPress (TrekKey key);
  34. virtual bool ShipLanded (void);
  35. protected:
  36. ShipID m_derelict_hulls[TM_NUMBER_OF_DERELICTS];
  37. protected:
  38. virtual void CreateUniverse (void);
  39. virtual Condition* CreateMission (void);
  40. Condition* CreateGotTargetCondition (void);
  41. Goal* CreateGoal01 (void);
  42. Goal* CreateGoal02 (void);
  43. Goal* CreateGoal03 (void);
  44. Goal* CreateGoal04 (void);
  45. Goal* CreateGoal05 (void);
  46. Goal* CreateGoal06 (void);
  47. Goal* CreateGoal07 (void);
  48. Goal* CreateGoal08 (void);
  49. Goal* CreateGoal09 (void);
  50. Goal* CreateGoal10 (void);
  51. Goal* CreateGoal11 (void);
  52. Goal* CreateGoal12 (void);
  53. Goal* CreateGoal13 (void);
  54. };
  55. //------------------------------------------------------------------------------
  56. }
  57. #endif //_MISSION_ONE_H_