raze/source/core/automap.h

38 lines
868 B
C
Raw Normal View History

2020-09-06 10:44:58 +00:00
#pragma once
#include "tarray.h"
#include "build.h"
#include "c_cvars.h"
#include "palentry.h"
2020-09-06 10:44:58 +00:00
class FSerializer;
struct event_t;
2020-09-06 10:44:58 +00:00
extern bool automapping;
extern bool gFullMap;
extern BitArray show2dsector;
extern BitArray show2dwall;
2020-09-06 10:44:58 +00:00
void SerializeAutomap(FSerializer& arc);
2020-09-06 10:44:58 +00:00
void ClearAutomap();
2021-12-02 00:05:07 +00:00
void MarkSectorSeen(sectortype* sect);
void DrawOverheadMap(const DVector2& plxy, const DAngle pl_angle, double const smoothratio);
bool AM_Responder(event_t* ev, bool last);
void drawlinergb(const DVector2& v1, const DVector2& v2, PalEntry p);
inline DVector2 OutAutomapVector(const DVector2& pos, const DVector2& angvect, const double zoom = 1., const DVector2& xydim = { 0, 0 })
{
return -pos.Rotated(angvect.Y, angvect.X) * zoom + xydim;
}
enum AM_Mode
{
am_off,
am_overlay,
am_full,
am_count
};
extern int automapMode;
EXTERN_CVAR(Bool, am_followplayer)