dxx-rebirth/common/main/inferno.h

96 lines
2.3 KiB
C
Raw Normal View History

2006-03-20 17:12:09 +00:00
/*
2014-06-01 17:55:23 +00:00
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
2006-03-20 17:12:09 +00:00
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
*
* Header file for Inferno. Should be included in all source files.
*
*/
#pragma once
2006-03-20 17:12:09 +00:00
#include "dxxsconf.h"
2022-02-12 18:57:12 +00:00
#include "fwd-inferno.h"
#include "dsx-ns.h"
#include "ntstring.h"
#include "player-callsign.h"
2014-07-23 02:27:22 +00:00
2015-12-13 18:00:49 +00:00
namespace dcx {
#if defined(__APPLE__) || defined(macintosh)
#define KEY_MAC(x) x
2006-03-20 17:12:09 +00:00
#else
// do not use MAC, it will break MSVC compilation somewhere in rpcdce.h
#define KEY_MAC(x)
2006-03-20 17:12:09 +00:00
#endif
/**
** Constants
**/
// How close two points must be in all dimensions to be considered the same point.
2006-03-20 17:12:09 +00:00
#define FIX_EPSILON 10
// a filename, useful for declaring arrays of filenames
struct d_fname : ntstring<FILENAME_LEN - 1>
2014-07-23 02:27:22 +00:00
{
d_fname() = default;
d_fname(const d_fname &) = default;
d_fname &operator=(const d_fname &) = default;
2014-07-23 02:27:22 +00:00
template <std::size_t N>
void operator=(char (&i)[N]) const = delete;
template <std::size_t N>
void operator=(const char (&i)[N])
{
copy_if(i);
2014-07-23 02:27:22 +00:00
}
};
struct d_interface_unique_state
{
callsign_t PilotName;
#if DXX_HAVE_POISON
d_interface_unique_state();
#endif
2019-07-07 22:00:02 +00:00
void update_window_title();
};
struct d_game_view_unique_state
{
uint8_t Death_sequence_aborted;
};
}
2016-01-09 16:38:15 +00:00
#ifdef dsx
2015-12-13 18:00:49 +00:00
namespace dsx {
2006-03-20 17:12:09 +00:00
/**
** Global variables
**/
extern int Quitting;
2006-03-20 17:12:09 +00:00
extern int Screen_mode; // editor screen or game screen?
#ifdef DXX_BUILD_DESCENT_I
extern int MacHog;
#endif
2006-03-20 17:12:09 +00:00
}
#endif