2016-03-01 15:47:10 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// Copyright 1993-1996 id Software
|
|
|
|
// Copyright 1999-2016 Randy Heit
|
|
|
|
// Copyright 2002-2016 Christoph Oelckers
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
2016-03-01 15:47:10 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-04-17 11:33:19 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see http://www.gnu.org/licenses/
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-04-17 11:33:19 +00:00
|
|
|
//
|
2016-03-01 15:47:10 +00:00
|
|
|
#ifndef __AMMAP_H__
|
|
|
|
#define __AMMAP_H__
|
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
#include "dobject.h"
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
struct event_t;
|
2016-09-20 07:11:13 +00:00
|
|
|
class FSerializer;
|
2019-01-26 14:21:20 +00:00
|
|
|
struct FLevelLocals;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
class DAutomapBase : public DObject
|
|
|
|
{
|
|
|
|
DECLARE_ABSTRACT_CLASS(DAutomapBase, DObject);
|
|
|
|
public:
|
|
|
|
FLevelLocals *Level; // temporary location so that it can be set from the outside.
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
// Called by main loop.
|
|
|
|
virtual bool Responder(event_t* ev, bool last) = 0;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
// Called by main loop.
|
|
|
|
virtual void Ticker(void) = 0;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
// Called by main loop,
|
|
|
|
// called instead of view drawer if automap active.
|
|
|
|
virtual void Drawer(int bottom) = 0;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
virtual void NewResolution() = 0;
|
|
|
|
virtual void LevelInit() = 0;
|
|
|
|
virtual void UpdateShowAllLines() = 0;
|
|
|
|
virtual void GoBig() = 0;
|
|
|
|
virtual void ResetFollowLocation() = 0;
|
|
|
|
virtual int addMark() = 0;
|
|
|
|
virtual bool clearMarks() = 0;
|
|
|
|
virtual DVector2 GetPosition() = 0;
|
|
|
|
virtual void startDisplay() = 0;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
};
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2019-01-26 14:21:20 +00:00
|
|
|
void AM_StaticInit();
|
|
|
|
void AM_ClearColorsets(); // reset data for a restart.
|
|
|
|
DAutomapBase *AM_Create(FLevelLocals *Level);
|
|
|
|
void AM_Stop();
|
|
|
|
void AM_ToggleMap();
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
#endif
|