2006-02-24 04:48:15 +00:00
|
|
|
// Emacs style mode select -*- C++ -*-
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// $Id:$
|
|
|
|
//
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
|
|
//
|
|
|
|
// This source is available for distribution and/or modification
|
|
|
|
// only under the terms of the DOOM Source Code License as
|
|
|
|
// published by id Software. All rights reserved.
|
|
|
|
//
|
|
|
|
// The source is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
// DESCRIPTION:
|
|
|
|
// AutoMap module.
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __AMMAP_H__
|
|
|
|
#define __AMMAP_H__
|
|
|
|
|
2008-09-14 23:54:38 +00:00
|
|
|
struct event_t;
|
|
|
|
class FArchive;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2010-12-12 17:54:10 +00:00
|
|
|
|
|
|
|
void AM_StaticInit();
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// Called by main loop.
|
2010-08-27 15:20:05 +00:00
|
|
|
bool AM_Responder (event_t* ev, bool last);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// Called by main loop.
|
|
|
|
void AM_Ticker (void);
|
|
|
|
|
|
|
|
// Called by main loop,
|
|
|
|
// called instead of view drawer if automap active.
|
|
|
|
void AM_Drawer (void);
|
|
|
|
|
|
|
|
// Called to force the automap to quit
|
|
|
|
// if the level is completed while it is up.
|
|
|
|
void AM_Stop (void);
|
|
|
|
|
2009-04-16 03:02:08 +00:00
|
|
|
void AM_NewResolution ();
|
2006-02-24 04:48:15 +00:00
|
|
|
void AM_ToggleMap ();
|
2008-01-05 12:15:10 +00:00
|
|
|
void AM_LevelInit ();
|
|
|
|
void AM_SerializeMarkers(FArchive &arc);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|