From 46a1fe3826ffb77103552e9f20e69441fa65b49e Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 4 Oct 2020 20:10:13 +0200 Subject: [PATCH] - updated script definitions to silcence startup warnings. --- source/common/scripting/interface/vmnatives.cpp | 4 ++-- wadsrc/static/zscript/base.zs | 16 +++++++++++++++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/source/common/scripting/interface/vmnatives.cpp b/source/common/scripting/interface/vmnatives.cpp index c4499b5a4..4fa160ac5 100644 --- a/source/common/scripting/interface/vmnatives.cpp +++ b/source/common/scripting/interface/vmnatives.cpp @@ -541,7 +541,7 @@ DEFINE_ACTION_FUNCTION(_CVar, FindCVar) // // //============================================================================= - +#if 0 DEFINE_ACTION_FUNCTION(FKeyBindings, SetBind) { PARAM_SELF_STRUCT_PROLOGUE(FKeyBindings); @@ -623,7 +623,7 @@ DEFINE_ACTION_FUNCTION(DOptionMenuItemCommand, DoCommand) C_DoCommand(cmd); return 0; } - +#endif DEFINE_ACTION_FUNCTION(_Console, MidPrint) { PARAM_PROLOGUE; diff --git a/wadsrc/static/zscript/base.zs b/wadsrc/static/zscript/base.zs index b095878e4..abbb3182e 100644 --- a/wadsrc/static/zscript/base.zs +++ b/wadsrc/static/zscript/base.zs @@ -155,9 +155,22 @@ enum DrawTextureTags DTA_FullscreenEx, // advanced fullscreen control. DTA_FullscreenScale, // enable DTA_Fullscreen coordinate calculation for placed overlays. - DTA_ScaleX, // scales the patch dimensions before applying any other transformation. + + DTA_ScaleX, DTA_ScaleY, + DTA_ViewportX, // Defines the viewport on the screen that should be rendered to. + DTA_ViewportY, + DTA_ViewportWidth, + DTA_ViewportHeight, + DTA_CenterOffsetRel, // Apply texture offsets relative to center, instead of top left. This is standard alignment for Build's 2D content. + DTA_TopLeft, // always align to top left. Added to have a boolean condition for this alignment. + DTA_Pin, // Pin a non-widescreen image to the left/right edge of the screen. + DTA_Rotate, + DTA_FlipOffsets, // Flips offsets when using DTA_FlipX and DTA_FlipY, this cannot be automatic due to unexpected behavior with unoffsetted graphics. + DTA_Indexed, // Use an indexed texture combined with the given translation. + DTA_CleanTop, // Like DTA_Clean but aligns to the top of the screen instead of the center. + }; class Shape2DTransform : Object native @@ -205,6 +218,7 @@ struct Screen native native static void ClearClipRect(); native static int, int, int, int GetClipRect(); //native static int, int, int, int GetViewWindow(); + native static double, double, double, double GetFullscreenRect(double vwidth, double vheight, int fsmode); } struct Font native