From cac54d42e9198c24b8fbf41ec7b6457692fbadbe Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 3 Aug 2022 13:49:17 +0200 Subject: [PATCH] - fixed script warnings after updating to version 4.9.0 --- wadsrc/static/zscript.txt | 2 +- wadsrc/static/zscript/engine/dynarrays.zs | 16 ++++++++-------- .../zscript/engine/ui/menu/colorpickermenu.zs | 2 +- .../zscript/engine/ui/menu/imagescroller.zs | 4 ++-- wadsrc/static/zscript/games/blood/ui/menu.zs | 2 +- wadsrc/static/zscript/games/duke/ui/menu.zs | 10 +++++----- wadsrc/static/zscript/games/exhumed/ui/menu.zs | 4 ++-- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/wadsrc/static/zscript.txt b/wadsrc/static/zscript.txt index dd0d1ea09..51559ff3d 100644 --- a/wadsrc/static/zscript.txt +++ b/wadsrc/static/zscript.txt @@ -1,4 +1,4 @@ -version "4.3" +version "4.9" #include "zscript/engine/base.zs" #include "zscript/engine/dynarrays.zs" #include "zscript/engine/inputevents.zs" diff --git a/wadsrc/static/zscript/engine/dynarrays.zs b/wadsrc/static/zscript/engine/dynarrays.zs index 009350b8e..85d135d87 100644 --- a/wadsrc/static/zscript/engine/dynarrays.zs +++ b/wadsrc/static/zscript/engine/dynarrays.zs @@ -3,7 +3,7 @@ struct DynArray_I8 native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_I8 other); native void Move(DynArray_I8 other); @@ -23,7 +23,7 @@ struct DynArray_I8 native struct DynArray_I16 native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_I16 other); native void Move(DynArray_I16 other); @@ -43,7 +43,7 @@ struct DynArray_I16 native struct DynArray_I32 native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_I32 other); native void Move(DynArray_I32 other); @@ -64,7 +64,7 @@ struct DynArray_I32 native struct DynArray_F32 native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_F32 other); native void Move(DynArray_F32 other); @@ -84,7 +84,7 @@ struct DynArray_F32 native struct DynArray_F64 native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_F64 other); native void Move(DynArray_F64 other); @@ -104,7 +104,7 @@ struct DynArray_F64 native struct DynArray_Ptr native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_Ptr other); native void Move(DynArray_Ptr other); @@ -124,7 +124,7 @@ struct DynArray_Ptr native struct DynArray_Obj native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_Obj other); native void Move(DynArray_Obj other); @@ -144,7 +144,7 @@ struct DynArray_Obj native struct DynArray_String native { - native readonly uint Size; + native readonly int Size; native void Copy(DynArray_String other); native void Move(DynArray_String other); diff --git a/wadsrc/static/zscript/engine/ui/menu/colorpickermenu.zs b/wadsrc/static/zscript/engine/ui/menu/colorpickermenu.zs index ac02f7394..218a215fc 100644 --- a/wadsrc/static/zscript/engine/ui/menu/colorpickermenu.zs +++ b/wadsrc/static/zscript/engine/ui/menu/colorpickermenu.zs @@ -303,7 +303,7 @@ class ColorpickerMenu : OptionMenu } // Make sure the cursors stand out against similar colors // by pulsing them. - blinky = abs(sin(MSTime()/1000.0)) * 0.5 + 0.5; + blinky = abs(sin(MSTimeF()/1000.0)) * 0.5 + 0.5; col = Color(255, int(r*blinky), int(g*blinky), int(b*blinky)); screen.Clear (box_x, box_y, box_x + w, box_y + 1, col); diff --git a/wadsrc/static/zscript/engine/ui/menu/imagescroller.zs b/wadsrc/static/zscript/engine/ui/menu/imagescroller.zs index 6fd58bb6a..d56d770ce 100644 --- a/wadsrc/static/zscript/engine/ui/menu/imagescroller.zs +++ b/wadsrc/static/zscript/engine/ui/menu/imagescroller.zs @@ -154,7 +154,7 @@ class ImageScrollerMenu : Menu { if (AnimatedTransition) { - start = MSTime() * (120. / 1000.); + start = MSTimeF() * (120. / 1000.); length = 30; dir = animtype; previous = current; @@ -247,7 +247,7 @@ class ImageScrollerMenu : Menu private bool DrawTransition() { - double now = MSTime() * (120. / 1000.); + double now = MSTimeF() * (120. / 1000.); if (now < start + length) { double factor = screen.GetWidth()/2; diff --git a/wadsrc/static/zscript/games/blood/ui/menu.zs b/wadsrc/static/zscript/games/blood/ui/menu.zs index 5f5b9054f..82a6816ab 100644 --- a/wadsrc/static/zscript/games/blood/ui/menu.zs +++ b/wadsrc/static/zscript/games/blood/ui/menu.zs @@ -64,7 +64,7 @@ class ListMenuItemBloodTextItem : ListMenuItemTextItem int cr = generic_ui? Font.CR_GRAY : Font.CR_NATIVEPAL; int trans = generic_ui? 0 : Translation.MakeID(Translation_Remap, pal); - if (selected) shade = 32 - ((MSTime() * 120 / 1000) & 63); + if (selected) shade = 32 - ((int(MSTimeF()) * 120 / 1000) & 63); Screen.DrawText(gamefont, Font.CR_UNTRANSLATED, xpos+1, mYpos+1, mText, DTA_Color, 0xff000000, DTA_FullscreenScale, FSMode_Fit320x200); Screen.DrawText(gamefont, Font.CR_NATIVEPAL, xpos, mYpos, mText, DTA_TranslationIndex, trans, DTA_Color, Raze.shadeToLight(shade), DTA_FullscreenScale, FSMode_Fit320x200); diff --git a/wadsrc/static/zscript/games/duke/ui/menu.zs b/wadsrc/static/zscript/games/duke/ui/menu.zs index f0363a1f5..3d757d9f6 100644 --- a/wadsrc/static/zscript/games/duke/ui/menu.zs +++ b/wadsrc/static/zscript/games/duke/ui/menu.zs @@ -60,7 +60,7 @@ class DukeMenuDelegate : RazeMenuDelegate void DrawCursor(double x, double y, double scale, bool right) { - uint mclock = MSTime() * 120 / 1000; + uint mclock = uint(MSTimeF() * (120. / 1000.)); uint frames = (gameinfo.gametype & GAMEFLAG_RRALL) ? 16 : 7; String picname; if (!right) picname= String.Format("SPINNINGNUKEICON%d", ((mclock >> 3) % frames)); @@ -136,8 +136,8 @@ class ListMenuItemDukeLogo : ListMenuItem Screen.DrawTexture(TexMan.CheckForTexture("INGAMEDUKETHREEDEE"), false, x, 29, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_CenterOffsetRel, true); if (gameinfo.gametype & GAMEFLAG_PLUTOPAK) { - int mclock = MSTime() * 120 / 1000; - int light = 223 + Raze.bsin(mclock<<4, -9); + let mclock = MSTimeF() * 120 / 1000; + int light = 223 + Raze.bsin(mclock * 16, -9); let pe = Color(255, light, light, light); Screen.DrawTexture(TexMan.CheckForTexture("MENUPLUTOPAKSPRITE"), false, x + 100, 36, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_Color, pe, DTA_CenterOffsetRel, true); } @@ -175,8 +175,8 @@ class ListMenuItemDukeTextItem : ListMenuItemTextItem if (selected) { - int mclock = MSTime() * 120 / 1000; - int light = 231 + ((Raze.bsin(mclock<<5) * 3) >> 11); + let mclock = MSTimeF() * 120 / 1000; + int light = 231 + ((Raze.bsin(mclock * 32) * 3) >> 11); pe = Color(255, light, light, light); } else diff --git a/wadsrc/static/zscript/games/exhumed/ui/menu.zs b/wadsrc/static/zscript/games/exhumed/ui/menu.zs index b3052df07..51410eafa 100644 --- a/wadsrc/static/zscript/games/exhumed/ui/menu.zs +++ b/wadsrc/static/zscript/games/exhumed/ui/menu.zs @@ -96,7 +96,7 @@ class ListMenuItemExhumedTextItem : ListMenuItemTextItem int width = myfont.StringWidth(mText); let delegate = ExhumedMenuDelegate(menuDelegate); double zoom = 1.; - let now = MSTime(); + let now = MSTimeF(); if (delegate && (delegate.zoomsize < 1. || delegate.lastzoomsize < 1.)) { @@ -143,7 +143,7 @@ class ExhumedMainMenu : ListMenu delegate.lastzoomsize = delegate.zoomsize; if (delegate.zoomsize < 1.) { - delegate.zoomtime = MSTime(); + delegate.zoomtime = MSTimeF(); delegate.zoomsize += 0.0625; if (delegate.zoomsize >= 1.) delegate.zoomsize = 1.;