am_map.h

来自「The source code of Doom legacy for windo」· C头文件 代码 · 共 73 行

H
73
字号
// Emacs style mode select   -*- C++ -*- //-----------------------------------------------------------------------------//// $Id: am_map.h,v 1.2 2000/02/27 00:42:10 hurdler Exp $//// Copyright (C) 1993-1996 by id Software, Inc.// Portions Copyright (C) 1998-2000 by DooM Legacy Team.//// 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 2// of the License, or (at your option) any later version.//// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU General Public License for more details.////// $Log: am_map.h,v $// Revision 1.2  2000/02/27 00:42:10  hurdler// fix CR+LF problem//// Revision 1.1.1.1  2000/02/22 20:32:33  hurdler// Initial import into CVS (v1.29 pr3)////// DESCRIPTION://      AutoMap module.////-----------------------------------------------------------------------------#ifndef __AMMAP_H__#define __AMMAP_H__#include "d_event.h"typedef struct{    int x, y;} fpoint_t;typedef struct{    fpoint_t a, b;} fline_t;// Used by ST StatusBar stuff.#define AM_MSGHEADER (('a'<<24)+('m'<<16))#define AM_MSGENTERED (AM_MSGHEADER | ('e'<<8))#define AM_MSGEXITED (AM_MSGHEADER | ('x'<<8))extern boolean am_recalc;       //added:05-02-98:true if screen size changesextern  boolean automapactive;  // In AutoMap mode?extern int     am_cheating;// Called by main loop.boolean AM_Responder (event_t* ev);// 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);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?