home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / -screenplay- / otherstuff / adoomppc_src / am_map.h < prev    next >
C/C++ Source or Header  |  1998-04-23  |  1KB  |  55 lines

  1. // Emacs style mode select   -*- C++ -*- 
  2. //-----------------------------------------------------------------------------
  3. //
  4. // $Id:$
  5. //
  6. // Copyright (C) 1993-1996 by id Software, Inc.
  7. //
  8. // This source is available for distribution and/or modification
  9. // only under the terms of the DOOM Source Code License as
  10. // published by id Software. All rights reserved.
  11. //
  12. // The source is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
  15. // for more details.
  16. //
  17. // DESCRIPTION:
  18. //  AutoMap module.
  19. //
  20. //-----------------------------------------------------------------------------
  21.  
  22. #ifndef __AMMAP_H__
  23. #define __AMMAP_H__
  24.  
  25. // Used by ST StatusBar stuff.
  26. #define AM_MSGHEADER (('a'<<24)+('m'<<16))
  27. #define AM_MSGENTERED (AM_MSGHEADER | ('e'<<8))
  28. #define AM_MSGEXITED (AM_MSGHEADER | ('x'<<8))
  29.  
  30.  
  31. void resinit_am_map (void);
  32.  
  33. // Called by main loop.
  34. boolean AM_Responder (event_t* ev);
  35.  
  36. // Called by main loop.
  37. void AM_Ticker (void);
  38.  
  39. // Called by main loop,
  40. // called instead of view drawer if automap active.
  41. void AM_Drawer (void);
  42.  
  43. // Called to force the automap to quit
  44. // if the level is completed while it is up.
  45. void AM_Stop (void);
  46.  
  47.  
  48.  
  49. #endif
  50. //-----------------------------------------------------------------------------
  51. //
  52. // $Log:$
  53. //
  54. //-----------------------------------------------------------------------------
  55.