2017-02-12 17:38:23 +00:00
|
|
|
struct InputEvent native
|
|
|
|
{
|
|
|
|
native uint8 type;
|
|
|
|
native uint8 subtype;
|
|
|
|
native int16 data1; // keys / mouse/joystick buttons
|
|
|
|
native int16 data2;
|
|
|
|
native int16 data3;
|
|
|
|
native int x; // mouse/joystick x move
|
|
|
|
native int y; // mouse/joystick y move
|
|
|
|
|
|
|
|
enum EGenericEvent
|
|
|
|
{
|
|
|
|
NoEvent,
|
|
|
|
KeyDown, // data1: scan code, data2: Qwerty ASCII code
|
|
|
|
KeyUp, // same
|
|
|
|
Mouse, // x, y: mouse movement deltas
|
|
|
|
GUI_Event, // subtype specifies actual event
|
|
|
|
DeviceChange,// a device has been connected or removed
|
|
|
|
}
|
|
|
|
|
2017-02-12 22:05:39 +00:00
|
|
|
enum EGUIEvent
|
|
|
|
{
|
|
|
|
GUI_None,
|
|
|
|
GUI_KeyDown, // data1: unshifted ASCII, data2: shifted ASCII, data3: modifiers
|
|
|
|
GUI_KeyRepeat, // same
|
|
|
|
GUI_KeyUp, // same
|
|
|
|
GUI_Char, // data1: translated character (for user text input), data2: alt down?
|
|
|
|
GUI_FirstMouseEvent,
|
|
|
|
GUI_MouseMove,
|
|
|
|
GUI_LButtonDown,
|
|
|
|
GUI_LButtonUp,
|
|
|
|
GUI_LButtonDblClick,
|
|
|
|
GUI_MButtonDown,
|
|
|
|
GUI_MButtonUp,
|
|
|
|
GUI_MButtonDblClick,
|
|
|
|
GUI_RButtonDown,
|
|
|
|
GUI_RButtonUp,
|
|
|
|
GUI_RButtonDblClick,
|
|
|
|
GUI_WheelUp, // data3: shift/ctrl/alt
|
|
|
|
GUI_WheelDown, // "
|
|
|
|
GUI_WheelRight, // "
|
|
|
|
GUI_WheelLeft, // "
|
|
|
|
GUI_BackButtonDown,
|
|
|
|
GUI_BackButtonUp,
|
|
|
|
GUI_FwdButtonDown,
|
|
|
|
GUI_FwdButtonUp,
|
|
|
|
GUI_LastMouseEvent,
|
|
|
|
};
|
|
|
|
|
2017-02-12 17:38:23 +00:00
|
|
|
const KEY_ESCAPE = 0x01;
|
|
|
|
}
|
|
|
|
|
2017-01-15 22:21:38 +00:00
|
|
|
struct TexMan
|
|
|
|
{
|
|
|
|
enum EUseTypes
|
|
|
|
{
|
|
|
|
Type_Any,
|
|
|
|
Type_Wall,
|
|
|
|
Type_Flat,
|
|
|
|
Type_Sprite,
|
|
|
|
Type_WallPatch,
|
|
|
|
Type_Build,
|
|
|
|
Type_SkinSprite,
|
|
|
|
Type_Decal,
|
|
|
|
Type_MiscPatch,
|
|
|
|
Type_FontChar,
|
|
|
|
Type_Override, // For patches between TX_START/TX_END
|
|
|
|
Type_Autopage, // Automap background - used to enable the use of FAutomapTexture
|
|
|
|
Type_SkinGraphic,
|
|
|
|
Type_Null,
|
|
|
|
Type_FirstDefined,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum EFlags
|
|
|
|
{
|
|
|
|
TryAny = 1,
|
|
|
|
Overridable = 2,
|
|
|
|
ReturnFirst = 4,
|
|
|
|
AllowSkins = 8,
|
|
|
|
ShortNameOnly = 16,
|
|
|
|
DontCreate = 32
|
|
|
|
};
|
2017-02-09 11:02:07 +00:00
|
|
|
|
|
|
|
enum ETexReplaceFlags
|
|
|
|
{
|
|
|
|
NOT_BOTTOM = 1,
|
|
|
|
NOT_MIDDLE = 2,
|
|
|
|
NOT_TOP = 4,
|
|
|
|
NOT_FLOOR = 8,
|
|
|
|
NOT_CEILING = 16,
|
|
|
|
NOT_WALL = 7,
|
|
|
|
NOT_FLAT = 24
|
|
|
|
};
|
2017-01-15 22:21:38 +00:00
|
|
|
|
|
|
|
native static TextureID CheckForTexture(String name, int usetype, int flags = TryAny);
|
2017-02-09 11:02:07 +00:00
|
|
|
native static void ReplaceTextures(String from, String to, int flags);
|
2017-02-11 15:11:48 +00:00
|
|
|
native static int, int GetSize(TextureID tex);
|
|
|
|
native static Vector2 GetScaledSize(TextureID tex);
|
2017-01-15 22:21:38 +00:00
|
|
|
}
|
|
|
|
|
2017-02-05 17:07:12 +00:00
|
|
|
enum DrawTextureTags
|
|
|
|
{
|
|
|
|
TAG_USER = (1<<30),
|
|
|
|
DTA_Base = TAG_USER + 5000,
|
|
|
|
DTA_DestWidth, // width of area to draw to
|
|
|
|
DTA_DestHeight, // height of area to draw to
|
|
|
|
DTA_Alpha, // alpha value for translucency
|
|
|
|
DTA_FillColor, // color to stencil onto the destination (RGB is the color for truecolor drawers, A is the palette index for paletted drawers)
|
|
|
|
DTA_TranslationIndex, // translation table to recolor the source
|
|
|
|
DTA_AlphaChannel, // bool: the source is an alpha channel; used with DTA_FillColor
|
|
|
|
DTA_Clean, // bool: scale texture size and position by CleanXfac and CleanYfac
|
|
|
|
DTA_320x200, // bool: scale texture size and position to fit on a virtual 320x200 screen
|
|
|
|
DTA_Bottom320x200, // bool: same as DTA_320x200 but centers virtual screen on bottom for 1280x1024 targets
|
|
|
|
DTA_CleanNoMove, // bool: like DTA_Clean but does not reposition output position
|
|
|
|
DTA_CleanNoMove_1, // bool: like DTA_CleanNoMove, but uses Clean[XY]fac_1 instead
|
|
|
|
DTA_FlipX, // bool: flip image horizontally //FIXME: Does not work with DTA_Window(Left|Right)
|
|
|
|
DTA_ShadowColor, // color of shadow
|
|
|
|
DTA_ShadowAlpha, // alpha of shadow
|
|
|
|
DTA_Shadow, // set shadow color and alphas to defaults
|
|
|
|
DTA_VirtualWidth, // pretend the canvas is this wide
|
|
|
|
DTA_VirtualHeight, // pretend the canvas is this tall
|
|
|
|
DTA_TopOffset, // override texture's top offset
|
|
|
|
DTA_LeftOffset, // override texture's left offset
|
|
|
|
DTA_CenterOffset, // bool: override texture's left and top offsets and set them for the texture's middle
|
|
|
|
DTA_CenterBottomOffset,// bool: override texture's left and top offsets and set them for the texture's bottom middle
|
|
|
|
DTA_WindowLeft, // don't draw anything left of this column (on source, not dest)
|
|
|
|
DTA_WindowRight, // don't draw anything at or to the right of this column (on source, not dest)
|
|
|
|
DTA_ClipTop, // don't draw anything above this row (on dest, not source)
|
|
|
|
DTA_ClipBottom, // don't draw anything at or below this row (on dest, not source)
|
|
|
|
DTA_ClipLeft, // don't draw anything to the left of this column (on dest, not source)
|
|
|
|
DTA_ClipRight, // don't draw anything at or to the right of this column (on dest, not source)
|
|
|
|
DTA_Masked, // true(default)=use masks from texture, false=ignore masks
|
|
|
|
DTA_HUDRules, // use fullscreen HUD rules to position and size textures
|
|
|
|
DTA_HUDRulesC, // only used internally for marking HUD_HorizCenter
|
|
|
|
DTA_KeepRatio, // doesn't adjust screen size for DTA_Virtual* if the aspect ratio is not 4:3
|
|
|
|
DTA_RenderStyle, // same as render style for actors
|
|
|
|
DTA_ColorOverlay, // DWORD: ARGB to overlay on top of image; limited to black for software
|
|
|
|
DTA_Internal1,
|
|
|
|
DTA_Internal2,
|
|
|
|
DTA_Internal3,
|
|
|
|
DTA_Fullscreen, // Draw image fullscreen (same as DTA_VirtualWidth/Height with graphics size.)
|
|
|
|
|
|
|
|
// floating point duplicates of some of the above:
|
|
|
|
DTA_DestWidthF,
|
|
|
|
DTA_DestHeightF,
|
|
|
|
DTA_TopOffsetF,
|
|
|
|
DTA_LeftOffsetF,
|
|
|
|
DTA_VirtualWidthF,
|
|
|
|
DTA_VirtualHeightF,
|
|
|
|
DTA_WindowLeftF,
|
|
|
|
DTA_WindowRightF,
|
|
|
|
|
|
|
|
// For DrawText calls only:
|
|
|
|
DTA_TextLen, // stop after this many characters, even if \0 not hit
|
|
|
|
DTA_CellX, // horizontal size of character cell
|
|
|
|
DTA_CellY, // vertical size of character cell
|
|
|
|
};
|
|
|
|
|
2017-01-17 16:31:54 +00:00
|
|
|
struct Screen native
|
2017-02-10 12:20:19 +00:00
|
|
|
{
|
|
|
|
int CleanWidth, CleanHeight;
|
|
|
|
int CleanXFac, CleanYFac;
|
|
|
|
int CleanWidth_1, CleanHeight_1;
|
|
|
|
int CleanXFac_1, CleanYFac_1;
|
|
|
|
|
|
|
|
native static Color PaletteColor(int index);
|
|
|
|
native static int GetWidth();
|
|
|
|
native static int GetHeight();
|
|
|
|
native static void Clear(int left, int top, int right, int bottom, Color color, int palcolor = -1);
|
|
|
|
|
|
|
|
native static void DrawHUDTexture(TextureID tex, double x, double y);
|
|
|
|
native static vararg void DrawTexture(TextureID tex, bool animate, double x, double y, ...);
|
|
|
|
native static vararg void DrawChar(Font font, int normalcolor, double x, double y, int character, ...);
|
|
|
|
native static vararg void DrawText(Font font, int normalcolor, double x, double y, String text, ...);
|
2017-02-11 15:11:48 +00:00
|
|
|
native static void DrawFrame(int x, int y, int w, int h);
|
2017-02-10 12:20:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class BrokenLines : Object native
|
|
|
|
{
|
|
|
|
native int Count();
|
|
|
|
native int StringWidth(int line);
|
|
|
|
native String StringAt(int line);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Font native
|
2017-01-15 22:21:38 +00:00
|
|
|
{
|
2017-02-03 23:19:25 +00:00
|
|
|
enum EColorRange
|
|
|
|
{
|
|
|
|
CR_UNDEFINED = -1,
|
|
|
|
CR_BRICK,
|
|
|
|
CR_TAN,
|
|
|
|
CR_GRAY,
|
|
|
|
CR_GREY = CR_GRAY,
|
|
|
|
CR_GREEN,
|
|
|
|
CR_BROWN,
|
|
|
|
CR_GOLD,
|
|
|
|
CR_RED,
|
|
|
|
CR_BLUE,
|
|
|
|
CR_ORANGE,
|
|
|
|
CR_WHITE,
|
|
|
|
CR_YELLOW,
|
|
|
|
CR_UNTRANSLATED,
|
|
|
|
CR_BLACK,
|
|
|
|
CR_LIGHTBLUE,
|
|
|
|
CR_CREAM,
|
|
|
|
CR_OLIVE,
|
|
|
|
CR_DARKGREEN,
|
|
|
|
CR_DARKRED,
|
|
|
|
CR_DARKBROWN,
|
|
|
|
CR_PURPLE,
|
|
|
|
CR_DARKGRAY,
|
|
|
|
CR_CYAN,
|
|
|
|
NUM_TEXT_COLORS
|
|
|
|
};
|
2017-02-10 23:36:53 +00:00
|
|
|
|
|
|
|
const TEXTCOLOR_BRICK = "\034A";
|
|
|
|
const TEXTCOLOR_TAN = "\034B";
|
|
|
|
const TEXTCOLOR_GRAY = "\034C";
|
|
|
|
const TEXTCOLOR_GREY = "\034C";
|
|
|
|
const TEXTCOLOR_GREEN = "\034D";
|
|
|
|
const TEXTCOLOR_BROWN = "\034E";
|
|
|
|
const TEXTCOLOR_GOLD = "\034F";
|
|
|
|
const TEXTCOLOR_RED = "\034G";
|
|
|
|
const TEXTCOLOR_BLUE = "\034H";
|
|
|
|
const TEXTCOLOR_ORANGE = "\034I";
|
|
|
|
const TEXTCOLOR_WHITE = "\034J";
|
|
|
|
const TEXTCOLOR_YELLOW = "\034K";
|
|
|
|
const TEXTCOLOR_UNTRANSLATED = "\034L";
|
|
|
|
const TEXTCOLOR_BLACK = "\034M";
|
|
|
|
const TEXTCOLOR_LIGHTBLUE = "\034N";
|
|
|
|
const TEXTCOLOR_CREAM = "\034O";
|
|
|
|
const TEXTCOLOR_OLIVE = "\034P";
|
|
|
|
const TEXTCOLOR_DARKGREEN = "\034Q";
|
|
|
|
const TEXTCOLOR_DARKRED = "\034R";
|
|
|
|
const TEXTCOLOR_DARKBROWN = "\034S";
|
|
|
|
const TEXTCOLOR_PURPLE = "\034T";
|
|
|
|
const TEXTCOLOR_DARKGRAY = "\034U";
|
|
|
|
const TEXTCOLOR_CYAN = "\034V";
|
|
|
|
|
|
|
|
const TEXTCOLOR_NORMAL = "\034-";
|
|
|
|
const TEXTCOLOR_BOLD = "\034+";
|
|
|
|
|
|
|
|
const TEXTCOLOR_CHAT = "\034*";
|
|
|
|
const TEXTCOLOR_TEAMCHAT = "\034!";
|
|
|
|
|
2017-02-05 15:18:41 +00:00
|
|
|
|
2017-02-05 12:55:05 +00:00
|
|
|
native int GetCharWidth(int code);
|
|
|
|
native int StringWidth(String code);
|
2017-02-10 10:44:46 +00:00
|
|
|
native int GetHeight();
|
2017-02-11 15:11:48 +00:00
|
|
|
native String GetCursor();
|
2017-02-10 10:44:46 +00:00
|
|
|
|
2017-02-05 12:55:05 +00:00
|
|
|
native static int FindFontColor(Name color);
|
2017-02-05 12:14:22 +00:00
|
|
|
native static Font FindFont(Name fontname);
|
|
|
|
native static Font GetFont(Name fontname);
|
2017-02-05 15:18:41 +00:00
|
|
|
native static BrokenLines BreakLines(String text, int maxlen);
|
2017-02-03 23:46:22 +00:00
|
|
|
}
|
|
|
|
|
2017-02-11 15:11:48 +00:00
|
|
|
struct Translation
|
|
|
|
{
|
|
|
|
Color colors[256];
|
|
|
|
|
2017-02-12 15:48:29 +00:00
|
|
|
native int AddTranslation();
|
2017-02-11 15:11:48 +00:00
|
|
|
native static bool SetPlayerTranslation(int group, int num, int plrnum, PlayerClass pclass);
|
|
|
|
static int MakeID(int group, int num)
|
|
|
|
{
|
|
|
|
return (group << 16) + num;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-17 16:31:54 +00:00
|
|
|
struct Console native
|
|
|
|
{
|
|
|
|
native static void HideConsole();
|
2017-02-05 12:14:22 +00:00
|
|
|
native static void MidPrint(Font fontname, string textlabel, bool bold = false);
|
2017-02-12 15:02:55 +00:00
|
|
|
native static vararg void Printf(string fmt, ...);
|
2017-01-17 16:31:54 +00:00
|
|
|
}
|
|
|
|
|
2017-01-18 21:15:48 +00:00
|
|
|
struct DamageTypeDefinition native
|
|
|
|
{
|
|
|
|
native static bool IgnoreArmor(Name type);
|
|
|
|
}
|
|
|
|
|
2017-02-09 23:25:50 +00:00
|
|
|
struct CVar native
|
|
|
|
{
|
2017-02-10 23:36:53 +00:00
|
|
|
enum ECVarType
|
|
|
|
{
|
|
|
|
CVAR_Bool,
|
|
|
|
CVAR_Int,
|
|
|
|
CVAR_Float,
|
|
|
|
CVAR_String,
|
|
|
|
CVAR_Color,
|
|
|
|
};
|
|
|
|
|
|
|
|
native static CVar FindCVar(Name name);
|
2017-02-10 12:20:19 +00:00
|
|
|
native int GetInt();
|
|
|
|
native double GetFloat();
|
|
|
|
native String GetString();
|
2017-02-10 23:36:53 +00:00
|
|
|
native void SetInt(int v);
|
|
|
|
native void SetFloat(double v);
|
|
|
|
native void SetString(String s);
|
|
|
|
native int GetRealType();
|
|
|
|
native int ResetToDefault();
|
2017-02-09 23:25:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 16:31:54 +00:00
|
|
|
struct GameInfoStruct native
|
|
|
|
{
|
|
|
|
// will be extended as needed.
|
|
|
|
native Name backpacktype;
|
|
|
|
native double Armor2Percent;
|
2017-01-18 21:15:48 +00:00
|
|
|
native String ArmorIcon1;
|
|
|
|
native String ArmorIcon2;
|
2017-01-19 16:40:34 +00:00
|
|
|
native int gametype;
|
2017-01-17 16:31:54 +00:00
|
|
|
}
|
|
|
|
|
2016-10-30 13:00:11 +00:00
|
|
|
class Object native
|
|
|
|
{
|
2016-11-22 22:42:32 +00:00
|
|
|
native bool bDestroyed;
|
|
|
|
|
2016-11-18 21:12:53 +00:00
|
|
|
// These really should be global functions...
|
|
|
|
native static int G_SkillPropertyInt(int p);
|
|
|
|
native static double G_SkillPropertyFloat(int p);
|
2016-11-25 18:52:35 +00:00
|
|
|
native static vector3, int G_PickDeathmatchStart();
|
|
|
|
native static vector3, int G_PickPlayerStart(int pnum, int flags = 0);
|
2016-11-28 10:52:03 +00:00
|
|
|
native static void S_Sound (Sound sound_id, int channel, float volume = 1, float attenuation = ATTN_NORM);
|
2017-01-03 19:06:20 +00:00
|
|
|
native static void S_PauseSound (bool notmusic, bool notsfx);
|
|
|
|
native static void S_ResumeSound (bool notsfx);
|
2016-11-30 00:25:51 +00:00
|
|
|
native static bool S_ChangeMusic(String music_name, int order = 0, bool looping = true, bool force = false);
|
2016-11-29 16:17:10 +00:00
|
|
|
native static uint BAM(double angle);
|
2016-12-28 20:41:06 +00:00
|
|
|
native static void SetMusicVolume(float vol);
|
2017-02-10 12:20:19 +00:00
|
|
|
native static uint MSTime();
|
2016-11-18 21:12:53 +00:00
|
|
|
|
2016-12-27 18:25:55 +00:00
|
|
|
native Name GetClassName();
|
2017-01-12 21:49:18 +00:00
|
|
|
native void Destroy();
|
2016-12-27 18:25:55 +00:00
|
|
|
|
2017-01-12 21:49:18 +00:00
|
|
|
// This does not call into the native method of the same name to avoid problems with objects that get garbage collected late on shutdown.
|
|
|
|
virtual void OnDestroy() {}
|
2016-10-30 13:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class Thinker : Object native
|
|
|
|
{
|
2016-11-29 18:50:34 +00:00
|
|
|
enum EStatnums
|
|
|
|
{
|
|
|
|
// Thinkers that don't actually think
|
|
|
|
STAT_INFO, // An info queue
|
|
|
|
STAT_DECAL, // A decal
|
|
|
|
STAT_AUTODECAL, // A decal that can be automatically deleted
|
|
|
|
STAT_CORPSEPOINTER, // An entry in Hexen's corpse queue
|
|
|
|
STAT_TRAVELLING, // An actor temporarily travelling to a new map
|
|
|
|
|
|
|
|
// Thinkers that do think
|
|
|
|
STAT_FIRST_THINKING=32,
|
|
|
|
STAT_SCROLLER=STAT_FIRST_THINKING, // A DScroller thinker
|
|
|
|
STAT_PLAYER, // A player actor
|
|
|
|
STAT_BOSSTARGET, // A boss brain target
|
|
|
|
STAT_LIGHTNING, // The lightning thinker
|
|
|
|
STAT_DECALTHINKER, // An object that thinks for a decal
|
|
|
|
STAT_INVENTORY, // An inventory item
|
|
|
|
STAT_LIGHT, // A sector light effect
|
|
|
|
STAT_LIGHTTRANSFER, // A sector light transfer. These must be ticked after the light effects.
|
|
|
|
STAT_EARTHQUAKE, // Earthquake actors
|
|
|
|
STAT_MAPMARKER, // Map marker actors
|
|
|
|
|
|
|
|
STAT_DEFAULT = 100, // Thinkers go here unless specified otherwise.
|
|
|
|
STAT_SECTOREFFECT, // All sector effects that cause floor and ceiling movement
|
|
|
|
STAT_ACTORMOVER, // actor movers
|
|
|
|
STAT_SCRIPTS, // The ACS thinker. This is to ensure that it can't tick before all actors called PostBeginPlay
|
|
|
|
STAT_BOT, // Bot thinker
|
|
|
|
MAX_STATNUM = 127
|
|
|
|
}
|
|
|
|
|
2016-11-23 20:26:59 +00:00
|
|
|
const TICRATE = 35;
|
|
|
|
|
2016-11-21 13:59:17 +00:00
|
|
|
virtual native void Tick();
|
|
|
|
virtual native void PostBeginPlay();
|
2016-11-29 18:50:34 +00:00
|
|
|
virtual native void ChangeStatNum(int stat);
|
2016-10-31 16:02:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class ThinkerIterator : Object native
|
|
|
|
{
|
|
|
|
|
2016-11-29 18:50:34 +00:00
|
|
|
native static ThinkerIterator Create(class<Object> type = "Actor", int statnum=Thinker.MAX_STATNUM+1);
|
2016-11-05 00:19:41 +00:00
|
|
|
native Thinker Next(bool exact = false);
|
2016-10-31 16:02:47 +00:00
|
|
|
native void Reinit();
|
|
|
|
}
|
|
|
|
|
2016-11-16 00:36:21 +00:00
|
|
|
class ActorIterator : Object native
|
|
|
|
{
|
|
|
|
native static ActorIterator Create(int tid, class<Actor> type = "Actor");
|
|
|
|
native Actor Next();
|
|
|
|
native void Reinit();
|
|
|
|
}
|
|
|
|
|
2016-11-29 17:42:48 +00:00
|
|
|
class BlockThingsIterator : Object native
|
|
|
|
{
|
|
|
|
native Actor thing;
|
|
|
|
native Vector3 position;
|
|
|
|
native int portalflags;
|
|
|
|
|
|
|
|
native static BlockThingsIterator Create(Actor origin, double checkradius = -1, bool ignorerestricted = false);
|
|
|
|
native static BlockThingsIterator CreateFromPos(double checkx, double checky, double checkz, double checkh, double checkradius, bool ignorerestricted);
|
|
|
|
native bool Next();
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:37:22 +00:00
|
|
|
struct DropItem native
|
2016-10-31 16:02:47 +00:00
|
|
|
{
|
|
|
|
native readonly DropItem Next;
|
2016-11-05 00:19:41 +00:00
|
|
|
native readonly name Name;
|
2016-10-31 16:02:47 +00:00
|
|
|
native readonly int Probability;
|
2016-11-22 22:42:32 +00:00
|
|
|
native int Amount;
|
2016-10-31 16:02:47 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 21:12:53 +00:00
|
|
|
class SpotState : Object native
|
|
|
|
{
|
|
|
|
native static SpotState GetSpotState();
|
|
|
|
native SpecialSpot GetNextInList(class<Actor> type, int skipcounter);
|
2016-11-24 00:23:35 +00:00
|
|
|
native SpecialSpot GetSpotWithMinMaxDistance(Class<Actor> type, double x, double y, double mindist, double maxdist);
|
|
|
|
|
2016-11-22 18:20:31 +00:00
|
|
|
}
|
|
|
|
|
2016-11-22 23:35:06 +00:00
|
|
|
struct LevelLocals native
|
|
|
|
{
|
|
|
|
native readonly int time;
|
|
|
|
native readonly int maptime;
|
|
|
|
native readonly int totaltime;
|
|
|
|
native readonly int starttime;
|
|
|
|
native readonly int partime;
|
|
|
|
native readonly int sucktime;
|
|
|
|
native readonly int cluster;
|
|
|
|
native readonly int clusterflags;
|
|
|
|
native readonly int levelnum;
|
|
|
|
native readonly String LevelName;
|
|
|
|
native readonly String MapName;
|
|
|
|
native String NextMap;
|
|
|
|
native String NextSecretMap;
|
|
|
|
native readonly int maptype;
|
|
|
|
native readonly String Music;
|
|
|
|
native readonly int musicorder;
|
2016-11-29 18:50:34 +00:00
|
|
|
native int total_secrets;
|
2016-11-22 23:35:06 +00:00
|
|
|
native int found_secrets;
|
2016-11-29 18:50:34 +00:00
|
|
|
native int total_items;
|
2016-11-22 23:35:06 +00:00
|
|
|
native int found_items;
|
2016-11-29 18:50:34 +00:00
|
|
|
native int total_monsters;
|
2016-11-22 23:35:06 +00:00
|
|
|
native int killed_monsters;
|
|
|
|
native double gravity;
|
|
|
|
native double aircontrol;
|
|
|
|
native double airfriction;
|
|
|
|
native int airsupply;
|
|
|
|
native double teamdamage;
|
|
|
|
native bool monsterstelefrag;
|
|
|
|
native bool actownspecial;
|
|
|
|
native bool sndseqtotalctrl;
|
|
|
|
native bool allmap;
|
|
|
|
native bool missilesactivateimpact;
|
|
|
|
native bool monsterfallingdamage;
|
|
|
|
native bool checkswitchrange;
|
|
|
|
native bool polygrind;
|
2016-11-27 19:14:43 +00:00
|
|
|
native bool nomonsters;
|
2017-01-03 19:06:20 +00:00
|
|
|
native bool frozen;
|
2017-01-15 22:21:38 +00:00
|
|
|
native bool infinite_flight;
|
2016-11-22 23:35:06 +00:00
|
|
|
// level_info_t *info cannot be done yet.
|
|
|
|
}
|
|
|
|
|
2016-11-28 17:15:18 +00:00
|
|
|
struct StringTable native
|
|
|
|
{
|
2017-02-12 13:28:38 +00:00
|
|
|
native static String Localize(String val, bool prefixed = true);
|
2016-11-28 17:15:18 +00:00
|
|
|
}
|
|
|
|
|
2016-11-25 00:33:04 +00:00
|
|
|
// a few values of this need to be readable by the play code.
|
|
|
|
// Most are handled at load time and are omitted here.
|
|
|
|
struct DehInfo native
|
|
|
|
{
|
|
|
|
native int MaxSoulsphere;
|
|
|
|
native uint8 ExplosionStyle;
|
|
|
|
native double ExplosionAlpha;
|
|
|
|
native int NoAutofreeze;
|
|
|
|
native int BFGCells;
|
2017-01-17 16:31:54 +00:00
|
|
|
native int BlueAC;
|
2016-11-25 00:33:04 +00:00
|
|
|
}
|
|
|
|
|
2016-11-22 23:35:06 +00:00
|
|
|
struct State native
|
|
|
|
{
|
2016-11-25 00:33:04 +00:00
|
|
|
native State NextState;
|
|
|
|
native int sprite;
|
|
|
|
native int16 Tics;
|
|
|
|
native uint16 TicRange;
|
|
|
|
native uint8 Frame;
|
|
|
|
native uint8 UseFlags;
|
|
|
|
native int Misc1;
|
|
|
|
native int Misc2;
|
|
|
|
native uint16 bSlow;
|
|
|
|
native uint16 bFast;
|
|
|
|
native bool bFullbright;
|
|
|
|
native bool bNoDelay;
|
|
|
|
native bool bSameFrame;
|
|
|
|
native bool bCanRaise;
|
|
|
|
native bool bDehacked;
|
2016-11-28 22:30:14 +00:00
|
|
|
|
|
|
|
native int DistanceTo(state other);
|
2017-01-19 16:40:34 +00:00
|
|
|
native bool ValidateSpriteFrame();
|
2017-02-11 15:11:48 +00:00
|
|
|
native TextureID, bool, Vector2 GetSpriteTexture(int rotation, int skin = 0, Vector2 scale = (0,0));
|
2016-11-22 23:35:06 +00:00
|
|
|
}
|
|
|
|
|
2016-11-25 15:05:03 +00:00
|
|
|
struct F3DFloor native
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-26 00:14:47 +00:00
|
|
|
struct Wads
|
|
|
|
{
|
|
|
|
enum WadNamespace
|
|
|
|
{
|
|
|
|
ns_hidden = -1,
|
|
|
|
|
|
|
|
ns_global = 0,
|
|
|
|
ns_sprites,
|
|
|
|
ns_flats,
|
|
|
|
ns_colormaps,
|
|
|
|
ns_acslibrary,
|
|
|
|
ns_newtextures,
|
|
|
|
ns_bloodraw,
|
|
|
|
ns_bloodsfx,
|
|
|
|
ns_bloodmisc,
|
|
|
|
ns_strifevoices,
|
|
|
|
ns_hires,
|
|
|
|
ns_voxels,
|
|
|
|
|
|
|
|
ns_specialzipdirectory,
|
|
|
|
ns_sounds,
|
|
|
|
ns_patches,
|
|
|
|
ns_graphics,
|
|
|
|
ns_music,
|
|
|
|
|
|
|
|
ns_firstskin,
|
|
|
|
}
|
|
|
|
|
|
|
|
native static int CheckNumForName(string name, int ns, int wadnum = -1, bool exact = false);
|
2016-11-27 23:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct TerrainDef native
|
|
|
|
{
|
|
|
|
native Name TerrainName;
|
|
|
|
native int Splash;
|
|
|
|
native int DamageAmount;
|
|
|
|
native Name DamageMOD;
|
|
|
|
native int DamageTimeMask;
|
|
|
|
native double FootClip;
|
|
|
|
native float StepVolume;
|
|
|
|
native int WalkStepTics;
|
|
|
|
native int RunStepTics;
|
|
|
|
native Sound LeftStepSound;
|
|
|
|
native Sound RightStepSound;
|
|
|
|
native bool IsLiquid;
|
|
|
|
native bool AllowProtection;
|
|
|
|
native double Friction;
|
|
|
|
native double MoveFactor;
|
|
|
|
};
|
2016-11-28 00:30:36 +00:00
|
|
|
|
|
|
|
enum EPickStart
|
|
|
|
{
|
|
|
|
PPS_FORCERANDOM = 1,
|
|
|
|
PPS_NOBLOCKINGCHECK = 2,
|
|
|
|
}
|
2016-11-28 17:15:18 +00:00
|
|
|
|
|
|
|
// Although String is a builtin type, this is a convenient way to attach methods to it.
|
2017-01-23 18:09:36 +00:00
|
|
|
struct StringStruct native
|
2016-11-28 17:15:18 +00:00
|
|
|
{
|
2017-01-21 00:07:44 +00:00
|
|
|
native static vararg String Format(String fmt, ...);
|
2017-02-05 15:47:33 +00:00
|
|
|
native vararg void AppendFormat(String fmt, ...);
|
2017-02-06 11:18:10 +00:00
|
|
|
|
|
|
|
native void Replace(String pattern, String replacement);
|
|
|
|
native String Mid(int pos = 0, int len = 2147483647);
|
|
|
|
native int Len();
|
|
|
|
native String CharAt(int pos);
|
|
|
|
native int CharCodeAt(int pos);
|
2016-11-28 17:15:18 +00:00
|
|
|
}
|
2016-11-28 20:33:14 +00:00
|
|
|
|
|
|
|
class Floor : Thinker native
|
|
|
|
{
|
|
|
|
// only here so that some constants and functions can be added. Not directly usable yet.
|
|
|
|
enum EFloor
|
|
|
|
{
|
|
|
|
floorLowerToLowest,
|
|
|
|
floorLowerToNearest,
|
|
|
|
floorLowerToHighest,
|
|
|
|
floorLowerByValue,
|
|
|
|
floorRaiseByValue,
|
|
|
|
floorRaiseToHighest,
|
|
|
|
floorRaiseToNearest,
|
|
|
|
floorRaiseAndCrush,
|
|
|
|
floorRaiseAndCrushDoom,
|
|
|
|
floorCrushStop,
|
|
|
|
floorLowerInstant,
|
|
|
|
floorRaiseInstant,
|
|
|
|
floorMoveToValue,
|
|
|
|
floorRaiseToLowestCeiling,
|
2017-02-12 17:38:23 +00:00
|
|
|
floorRaiseuint8xture,
|
2016-11-28 20:33:14 +00:00
|
|
|
|
|
|
|
floorLowerAndChange,
|
|
|
|
floorRaiseAndChange,
|
|
|
|
|
|
|
|
floorRaiseToLowest,
|
|
|
|
floorRaiseToCeiling,
|
|
|
|
floorLowerToLowestCeiling,
|
2017-02-12 17:38:23 +00:00
|
|
|
floorLoweruint8xture,
|
2016-11-28 20:33:14 +00:00
|
|
|
floorLowerToCeiling,
|
|
|
|
|
|
|
|
donutRaise,
|
|
|
|
|
|
|
|
buildStair,
|
|
|
|
waitStair,
|
|
|
|
resetStair,
|
|
|
|
|
2017-02-12 22:05:39 +00:00
|
|
|
// Not to be used as parameters to DoFloor()
|
2016-11-28 20:33:14 +00:00
|
|
|
genFloorChg0,
|
|
|
|
genFloorChgT,
|
|
|
|
genFloorChg
|
|
|
|
};
|
|
|
|
|
2016-11-30 00:25:51 +00:00
|
|
|
native static bool CreateFloor(sector sec, EFloor floortype, line ln, double speed, double height = 0, int crush = -1, int change = 0, bool crushmode = false, bool hereticlower = false);
|
|
|
|
}
|
|
|
|
|
|
|
|
class Ceiling : Thinker native
|
|
|
|
{
|
|
|
|
enum ECeiling
|
|
|
|
{
|
|
|
|
ceilLowerByValue,
|
|
|
|
ceilRaiseByValue,
|
|
|
|
ceilMoveToValue,
|
|
|
|
ceilLowerToHighestFloor,
|
|
|
|
ceilLowerInstant,
|
|
|
|
ceilRaiseInstant,
|
|
|
|
ceilCrushAndRaise,
|
|
|
|
ceilLowerAndCrush,
|
|
|
|
ceil_placeholder,
|
|
|
|
ceilCrushRaiseAndStay,
|
|
|
|
ceilRaiseToNearest,
|
|
|
|
ceilLowerToLowest,
|
|
|
|
ceilLowerToFloor,
|
|
|
|
|
|
|
|
// The following are only used by Generic_Ceiling
|
|
|
|
ceilRaiseToHighest,
|
|
|
|
ceilLowerToHighest,
|
|
|
|
ceilRaiseToLowest,
|
|
|
|
ceilLowerToNearest,
|
|
|
|
ceilRaiseToHighestFloor,
|
|
|
|
ceilRaiseToFloor,
|
2017-02-12 17:38:23 +00:00
|
|
|
ceilRaiseuint8xture,
|
|
|
|
ceilLoweruint8xture,
|
2016-11-30 00:25:51 +00:00
|
|
|
|
|
|
|
genCeilingChg0,
|
|
|
|
genCeilingChgT,
|
|
|
|
genCeilingChg
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ECrushMode
|
|
|
|
{
|
|
|
|
crushDoom = 0,
|
|
|
|
crushHexen = 1,
|
|
|
|
crushSlowdown = 2
|
|
|
|
}
|
|
|
|
|
|
|
|
native bool CreateCeiling(sector sec, int type, line ln, double speed, double speed2, double height = 0, int crush = -1, int silent = 0, int change = 0, int crushmode = crushDoom);
|
2016-11-28 20:33:14 +00:00
|
|
|
|
2016-11-30 00:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct LookExParams
|
|
|
|
{
|
|
|
|
double Fov;
|
|
|
|
double minDist;
|
|
|
|
double maxDist;
|
|
|
|
double maxHeardist;
|
|
|
|
int flags;
|
|
|
|
State seestate;
|
|
|
|
};
|