From 4cfa61b5e7841cdade8008f43333351f0541dd49 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Tue, 17 Mar 2026 14:30:06 +0100 Subject: [PATCH 01/28] Initial commit --- ...lebees.MdkScriptMixin.SpriteCompositor.sln | 22 +++++ ....MdkScriptMixin.SpriteCompositor.projitems | 19 ++++ ...ees.MdkScriptMixin.SpriteCompositor.shproj | 19 ++++ .../_authors | 1 + .../_description | 1 + .../_releasenotes | 2 + .../_version | 1 + .../documentation/class-diagram.md | 84 ++++++++++++++++++ .../readme.md | 0 .../SpriteCompositor.Demo/.gitignore | 1 + .../SpriteCompositor.Demo/Instructions.readme | 5 ++ .../SpriteCompositor.Demo/Program.cs | 72 +++++++++++++++ .../SpriteCompositor.Demo.csproj | 31 +++++++ .../SpriteCompositor.Demo/mdk.ini | 35 ++++++++ .../SpriteCompositor.Demo/thumb.png | Bin 0 -> 226796 bytes 15 files changed, 293 insertions(+) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_authors create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_version create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/readme.md create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/.gitignore create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/thumb.png diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln new file mode 100644 index 0000000..9111ff5 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Lelebees.MdkScriptMixin.SpriteCompositor", "Lelebees.MdkScriptMixin.SpriteCompositor\Lelebees.MdkScriptMixin.SpriteCompositor.shproj", "{8A3CDCC5-4B55-4D87-A415-698A0E1FF06F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpriteCompositor.Demo", "SpriteCompositor.Demo\SpriteCompositor.Demo.csproj", "{86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8A3CDCC5-4B55-4D87-A415-698A0E1FF06F}.Debug|x64.ActiveCfg = Debug|x64 + {8A3CDCC5-4B55-4D87-A415-698A0E1FF06F}.Debug|x64.Build.0 = Debug|x64 + {8A3CDCC5-4B55-4D87-A415-698A0E1FF06F}.Release|x64.ActiveCfg = Release|x64 + {8A3CDCC5-4B55-4D87-A415-698A0E1FF06F}.Release|x64.Build.0 = Release|x64 + {86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}.Debug|x64.ActiveCfg = Debug|x64 + {86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}.Debug|x64.Build.0 = Debug|x64 + {86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}.Release|x64.ActiveCfg = Release|x64 + {86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}.Release|x64.Build.0 = Release|x64 + EndGlobalSection +EndGlobal diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems new file mode 100644 index 0000000..ec095e3 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems @@ -0,0 +1,19 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + true + 8a3cdcc5-4b55-4d87-a415-698a0e1ff06f + + + + + + + + + + + + + diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj new file mode 100644 index 0000000..728c385 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj @@ -0,0 +1,19 @@ + + + + 8a3cdcc5-4b55-4d87-a415-698a0e1ff06f + 14.0 + + + + + + + bin\Debug\ + + + bin\Release\ + + + + diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_authors b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_authors new file mode 100644 index 0000000..cd6ba21 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_authors @@ -0,0 +1 @@ +Lelebees \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description new file mode 100644 index 0000000..8f64d68 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description @@ -0,0 +1 @@ +Advanced Sprite Compositor for the Sprite API in Space Engineers \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes new file mode 100644 index 0000000..6c25550 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes @@ -0,0 +1,2 @@ +- 1.0.0 + Added everything \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_version b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_version new file mode 100644 index 0000000..afaf360 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_version @@ -0,0 +1 @@ +1.0.0 \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md new file mode 100644 index 0000000..4ce46c2 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md @@ -0,0 +1,84 @@ +```mermaid +classDiagram + class Display { + -bool cacheInvalidationEnabled + -bool emptySpriteRendered + -IMyTextSurface surface + +Draw(Sprite sprite) void + + } + + class Sprite { + <> + +Translate(float amount, Direction direction) Sprite + +Translate(Vector2 vector) Sprite + +SetColor(Color color) void + +SetAlignment(TextAlignment alignment) void + +GetPosition() Vector2 + +Scale(float amount) Sprite + +Rotate(Angle angle, Anchor anchor) + } + + Anchor <|-- Sprite + Sprite <|-- SpriteLeaf + Sprite <|--o SpriteGroup + Sprite ..> Angle + Angle .. > AngleType + + class SpriteLeaf { + <> + #MySprite sprite + +Scale(float amount)* + +Rotate(Angle angle, Anchor anchor)* + } + + SpriteLeaf <|-- TextSprite + SpriteLeaf <|-- TextureSprite + SpriteLeaf <|-- ClippingSprite + + class TextureSprite { + +SetTexture(string texture) void + +Scale(float amount) void + +Rotate(Angle angle, Anchor anchor) void + } + + class TextSprite { + +SetText(string text) void + +SetFont(string fontId) void + +Scale(float amount) void + +Rotate(Angle angle, Anchor anchor) void + } + + class ClippingSprite { + +Scale(float amount) void + +Rotate(Angle angle, Anchor anchor) void + } + + class SpriteGroup { + -List~Sprite~ sprites + } + + class Angle { + -float radians + +AsRadians() float + +AsDegrees() float + } + + class AngleType { + <> + DEGREES + RADIANS + } + + class Anchor { + <> + +GetPosition() Vector2 + } + + class PointAnchor { + -Vector2 position + +GetPosition() Vector2 + } + + Anchor <|-- PointAnchor +``` \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/readme.md b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/readme.md new file mode 100644 index 0000000..e69de29 diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/.gitignore b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/.gitignore new file mode 100644 index 0000000..5fb0452 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/.gitignore @@ -0,0 +1 @@ +mdk.local.ini \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme new file mode 100644 index 0000000..ed30ab7 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme @@ -0,0 +1,5 @@ +R e a d m e +----------- + +In this file you can include any instructions or other comments you want to have injected onto the +top of your final script. You can safely delete this file if you do not want any such comments. diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs new file mode 100644 index 0000000..1c18467 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -0,0 +1,72 @@ +using Sandbox.Game.EntityComponents; +using Sandbox.ModAPI.Ingame; +using Sandbox.ModAPI.Interfaces; +using SpaceEngineers.Game.ModAPI.Ingame; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Collections.Immutable; +using System.Linq; +using System.Text; +using VRage; +using VRage.Collections; +using VRage.Game; +using VRage.Game.Components; +using VRage.Game.GUI.TextPanel; +using VRage.Game.ModAPI.Ingame; +using VRage.Game.ModAPI.Ingame.Utilities; +using VRage.Game.ObjectBuilders.Definitions; +using VRageMath; + +namespace IngameScript +{ + public partial class Program : MyGridProgram + { + // This file contains your actual script. + // + // You can either keep all your code here, or you can create separate + // code files to make your program easier to navigate while coding. + // + // Go to: + // https://github.com/malware-dev/MDK-SE/wiki/Quick-Introduction-to-Space-Engineers-Ingame-Scripts + // + // to learn more about ingame scripts. + + public Program() + { + // The constructor, called only once every session and + // always before any other method is called. Use it to + // initialize your script. + // + // The constructor is optional and can be removed if not + // needed. + // + // It's recommended to set Runtime.UpdateFrequency + // here, which will allow your script to run itself without a + // timer block. + } + + public void Save() + { + // Called when the program needs to save its state. Use + // this method to save your state to the Storage field + // or some other means. + // + // This method is optional and can be removed if not + // needed. + } + + public void Main(string argument, UpdateType updateSource) + { + // The main entry point of the script, invoked every time + // one of the programmable block's Run actions are invoked, + // or the script updates itself. The updateSource argument + // describes where the update came from. Be aware that the + // updateSource is a bitfield and might contain more than + // one update type. + // + // The method itself is required, but the arguments above + // can be removed if not needed. + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj new file mode 100644 index 0000000..6878f27 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj @@ -0,0 +1,31 @@ + + + + netframework48 + IngameScript + 6 + false + Release;Debug + x64 + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini new file mode 100644 index 0000000..be46794 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini @@ -0,0 +1,35 @@ +; This file is project specific and should be checked in to source control. + +[mdk] +; This is a programmable block script project. +; You should not change this. +type=programmableblock + +; Toggle trace (on|off) (verbose output) +trace=off + +; What type of minification to use (none|trim|stripcomments|lite|full) +; none: No minification +; trim: Removes unused types (NOT members). +; stripcomments: trim + removes comments. +; lite: stripcomments + removes leading/trailing whitespace. +; full: lite + renames identifiers to shorter names. +minify=none + +; Extra options for minification. +; none: No extra options. +; nomembertrimming: Disables member trimming in the 'trim' processor (legacy mode). +minifyextraoptions=none + +; A list of files and folder to ignore when creating the script. +; This is a comma separated list of glob patterns. +; See https://code.visualstudio.com/docs/editor/glob-patterns +ignores=obj/**/*,MDK/**/*,**/*.debug.cs + +; A list of allowed namespaces. All ingame script code should be within one of these namespaces. +; This is a comma separated list. +; +; WARNING: The programmable block strips all namespaces from the final script. +; If you have two types with the same name in different namespaces, there will be a conflict. +; It's recommended to keep all your script code in a single namespace to avoid issues. +namespaces=IngameScript diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/thumb.png b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/thumb.png new file mode 100644 index 0000000000000000000000000000000000000000..cf3653990155c966c10ccfbc5050e36420f4a38c GIT binary patch literal 226796 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

JYx#vBtR|PM(dBe=`+l|;;i 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 Date: Tue, 17 Mar 2026 16:59:17 +0100 Subject: [PATCH 02/28] Basic domain --- ....MdkScriptMixin.SpriteCompositor.projitems | 9 +++- .../src/anchor/Anchor.cs | 12 +++++ .../src/anchor/PointAnchor.cs | 19 +++++++ .../src/angle/Angle.cs | 31 +++++++++++ .../src/angle/AngleType.cs | 8 +++ .../src/sprite/Sprite.cs | 23 ++++++++ .../src/sprite/SpriteGroup.cs | 50 ++++++++++++++++++ .../src/sprite/SpriteLeaf.cs | 48 +++++++++++++++++ .../src/sprite/TextureSprite.cs | 52 +++++++++++++++++++ 9 files changed, 251 insertions(+), 1 deletion(-) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems index ec095e3..e2cf6dd 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems @@ -14,6 +14,13 @@ - + + + + + + + + diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs new file mode 100644 index 0000000..41c2b93 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs @@ -0,0 +1,12 @@ +using VRageMath; + +namespace IngameScript +{ + ///

+ /// Classes conforming to this interface can be used as an anchor to rotate around in sprite composition. + /// + public interface Anchor + { + Vector2 GetPosition(); + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs new file mode 100644 index 0000000..f673976 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs @@ -0,0 +1,19 @@ +using VRageMath; + +namespace IngameScript +{ + public struct PointAnchor : Anchor + { + private readonly Vector2 position; + + public PointAnchor(Vector2 position) + { + this.position = position; + } + + public Vector2 GetPosition() + { + return position; + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs new file mode 100644 index 0000000..4e99fd5 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -0,0 +1,31 @@ +using System; + +namespace IngameScript +{ + /// + /// An unambiguous angle for mathematical equations. + /// + public struct Angle + { + private readonly double radians; + + public Angle(double angle, AngleType type) + { + if (type != AngleType.Radians) + { + angle = angle * Math.PI / 180; + } + radians = angle; + } + + public double AsRadians() + { + return radians; + } + + public double AsDegrees() + { + return radians * 180 / Math.PI; + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs new file mode 100644 index 0000000..e1d0846 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs @@ -0,0 +1,8 @@ +namespace IngameScript +{ + public enum AngleType + { + Degrees, + Radians + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs new file mode 100644 index 0000000..6696c4a --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -0,0 +1,23 @@ +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace IngameScript +{ + public interface Sprite : Anchor + { + /// + /// Moves a sprite in 2D space. + /// + /// How far the sprite will be moved and in what direction + void Translate(Vector2 vector); + void SetColor(Color color); + void SetAlignment(TextAlignment alignment); + void Scale(float amount); + /// + /// Rotates a sprite in clockwise direction around the given anchor + /// + /// The angle of rotation + /// The point in space to rotate around, if no anchor is given, the center of this sprite is used + void Rotate(Angle angle, Anchor anchor = null); + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs new file mode 100644 index 0000000..e756dad --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -0,0 +1,50 @@ +using System.Collections.Generic; +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace IngameScript +{ + public class SpriteGroup : Sprite + { + private readonly List children; + + public SpriteGroup(List children) + { + this.children = children; + } + + public Vector2 GetPosition() + { + + //TODO: implement this + return new Vector2(0, 0); + } + + public void Translate(Vector2 vector) + { + children.ForEach(sprite => sprite.Translate(vector)); + } + + public void SetColor(Color color) + { + children.ForEach(sprite => sprite.SetColor(color)); + } + + public void SetAlignment(TextAlignment alignment) + { + children.ForEach(sprite => sprite.SetAlignment(alignment)); + } + + public void Scale(float amount) + { + //TODO: Provide better implementation + children.ForEach(sprite => sprite.Scale(amount)); + } + + public void Rotate(Angle angle, Anchor anchor = null) + { + if (anchor == null) anchor = this; + children.ForEach(sprite => sprite.Rotate(angle, anchor)); + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs new file mode 100644 index 0000000..8c49c44 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -0,0 +1,48 @@ +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace IngameScript +{ + public abstract class SpriteLeaf : Sprite + { + + protected MySprite Sprite; + + protected SpriteLeaf(MySprite sprite) + { + Sprite = sprite; + } + + public Vector2 GetPosition() + { + return Sprite.Position ?? new Vector2(0, 0); + } + + public void Translate(Vector2 vector) + { + if (Sprite.Position == null) + { + Sprite.Position = new Vector2(0, 0); + } + + var position = Sprite.Position.Value; + position.X += vector.X; + position.Y += vector.Y; + Sprite.Position = position; + } + + public void SetColor(Color color) + { + Sprite.Color = color; + } + + public void SetAlignment(TextAlignment alignment) + { + Sprite.Alignment = alignment; + } + + public abstract void Scale(float amount); + + public abstract void Rotate(Angle angle, Anchor anchor = null); + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs new file mode 100644 index 0000000..6c4e817 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -0,0 +1,52 @@ +using System; +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace IngameScript +{ + public class TextureSprite : SpriteLeaf + { + public TextureSprite(string texturePath = null) : base(new MySprite(type: SpriteType.TEXTURE, + position: Vector2.Zero, rotation: 0, data: texturePath)) + { + } + + public void SetTexture(string texturePath) + { + Sprite.Data = texturePath; + } + + public override void Scale(float amount) + { + if (Sprite.Size == null) + { + Sprite.Size = Vector2.One; + } + + var size = Sprite.Size.Value; + size.X *= amount; + size.Y *= amount; + Sprite.Size = size; + } + + public override void Rotate(Angle angle, Anchor anchor = null) + { + if (anchor == null) + { + anchor = this; + } + + var cos = Math.Cos(angle.AsRadians()); + var sin = Math.Sin(angle.AsRadians()); + + var anchorX = anchor.GetPosition().X; + var anchorY = anchor.GetPosition().Y; + + var position = Sprite.Position ?? Vector2.Zero; + position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); + position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); + Sprite.Position = position; + Sprite.RotationOrScale = (float)angle.AsRadians(); + } + } +} \ No newline at end of file From edaa317e848d00a3d0ec6fe76ffacbdf6dc6f251 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Tue, 24 Mar 2026 16:28:45 +0100 Subject: [PATCH 03/28] It's not really working but it's working a little --- ....MdkScriptMixin.SpriteCompositor.projitems | 5 +- .../src/angle/Angle.cs | 22 +++++- .../src/angle/AngleType.cs | 8 --- .../src/angle/AngleUnit.cs | 8 +++ .../src/sprite/ClippingSprite.cs | 56 +++++++++++++++ .../src/sprite/Sprite.cs | 9 +++ .../src/sprite/SpriteGroup.cs | 12 +++- .../src/sprite/SpriteLeaf.cs | 15 ++++ .../src/sprite/TextSprite.cs | 58 +++++++++++++++ .../src/sprite/TextureSprite.cs | 17 ++++- .../src/util/Sprites.cs | 45 ++++++++++++ .../SpriteCompositor.Demo/Program.cs | 70 ++++++++++--------- 12 files changed, 278 insertions(+), 47 deletions(-) delete mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems index e2cf6dd..9e9b3d3 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems @@ -17,10 +17,13 @@ - + + + + diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index 4e99fd5..495b9a9 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -9,12 +9,25 @@ public struct Angle { private readonly double radians; - public Angle(double angle, AngleType type) + public Angle(double angle, AngleUnit unit) { - if (type != AngleType.Radians) + if (unit == AngleUnit.Degrees) { angle = angle * Math.PI / 180; } + + while (angle > 2 * Math.PI || angle < -2 * Math.PI) + { + if (angle > 0) + { + angle -= 2 * Math.PI; + } + + if (angle < 0) + { + angle += 2 * Math.PI; + } + } radians = angle; } @@ -27,5 +40,10 @@ public double AsDegrees() { return radians * 180 / Math.PI; } + + public static Angle Add(Angle a, Angle b) + { + return new Angle(a.AsRadians() + b.AsRadians(), AngleUnit.Radians); + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs deleted file mode 100644 index e1d0846..0000000 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleType.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace IngameScript -{ - public enum AngleType - { - Degrees, - Radians - } -} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs new file mode 100644 index 0000000..58aa588 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs @@ -0,0 +1,8 @@ +namespace IngameScript +{ + public enum AngleUnit + { + Radians, + Degrees + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs new file mode 100644 index 0000000..7104953 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs @@ -0,0 +1,56 @@ +using System; +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace IngameScript +{ + public class ClippingSprite : SpriteLeaf + { + private ClippingSprite(MySprite sprite) : base(sprite) + { + } + + public ClippingSprite() : base(new MySprite(type: SpriteType.CLIP_RECT)) + { + + } + + public override void Scale(float amount) + { + if (Sprite.Size == null) + { + Sprite.Size = Vector2.One; + } + + var size = Sprite.Size.Value; + size.X *= amount; + size.Y *= amount; + Sprite.Size = size; + } + + public override void Rotate(Angle angle, Anchor anchor = null) + { + if (anchor == null) + { + anchor = this; + } + + var cos = Math.Cos(angle.AsRadians()); + var sin = Math.Sin(angle.AsRadians()); + + var anchorX = anchor.GetPosition().X; + var anchorY = anchor.GetPosition().Y; + + var position = Sprite.Position ?? Vector2.Zero; + position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); + position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); + Sprite.Position = position; + Sprite.RotationOrScale = (float)angle.AsRadians(); + } + + public override Sprite Clone() + { + return new ClippingSprite(Sprite); + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index 6696c4a..c205a52 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -1,3 +1,4 @@ +using System.Collections.Generic; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -19,5 +20,13 @@ public interface Sprite : Anchor /// The angle of rotation /// The point in space to rotate around, if no anchor is given, the center of this sprite is used void Rotate(Angle angle, Anchor anchor = null); + + /// + /// Creates a copy of the sprite that can be modified separately. + /// + /// A new instance of the sprite + Sprite Clone(); + + List ToDrawableList(RectangleF viewport); } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index e756dad..a55dd65 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Linq; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -15,7 +16,6 @@ public SpriteGroup(List children) public Vector2 GetPosition() { - //TODO: implement this return new Vector2(0, 0); } @@ -46,5 +46,15 @@ public void Rotate(Angle angle, Anchor anchor = null) if (anchor == null) anchor = this; children.ForEach(sprite => sprite.Rotate(angle, anchor)); } + + public Sprite Clone() + { + return new SpriteGroup(children.Select(sprite => sprite.Clone()).ToList()); + } + + public List ToDrawableList(RectangleF viewport) + { + return children.SelectMany(child => child.ToDrawableList(viewport)).ToList(); + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 8c49c44..2ce0532 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -1,3 +1,4 @@ +using System.Collections.Generic; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -44,5 +45,19 @@ public void SetAlignment(TextAlignment alignment) public abstract void Scale(float amount); public abstract void Rotate(Angle angle, Anchor anchor = null); + public abstract Sprite Clone(); + public List ToDrawableList(RectangleF viewport) + { + var copy = new MySprite( + Sprite.Type, + Sprite.Data, + Sprite.Position + viewport.Center, + Sprite.Size, + Sprite.Color, + Sprite.FontId, + Sprite.Alignment, + Sprite.RotationOrScale); + return new List { copy }; + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs new file mode 100644 index 0000000..12a82e7 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs @@ -0,0 +1,58 @@ +using System; +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace IngameScript +{ + public class TextSprite : SpriteLeaf + { + public TextSprite(string text) : base(new MySprite(type: SpriteType.TEXT, data: text)) + { + } + + private TextSprite(MySprite sprite) : base(sprite) + { + + } + + + public void SetText(string text) + { + Sprite.Data = text; + } + + public void SetFontId(string fontId) + { + Sprite.FontId = fontId; + } + + public override void Scale(float amount) + { + Sprite.RotationOrScale = amount; + } + + public override void Rotate(Angle angle, Anchor anchor = null) + { + if (anchor == null || anchor == this) + { + return; + } + + var cos = Math.Cos(angle.AsRadians()); + var sin = Math.Sin(angle.AsRadians()); + + var anchorX = anchor.GetPosition().X; + var anchorY = anchor.GetPosition().Y; + + var position = Sprite.Position ?? Vector2.Zero; + position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); + position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); + Sprite.Position = position; + } + + public override Sprite Clone() + { + return new TextSprite(Sprite); + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs index 6c4e817..c1cb200 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -11,6 +11,11 @@ public TextureSprite(string texturePath = null) : base(new MySprite(type: Sprite { } + private TextureSprite(MySprite sprite) : base(sprite) + { + + } + public void SetTexture(string texturePath) { Sprite.Data = texturePath; @@ -46,7 +51,17 @@ public override void Rotate(Angle angle, Anchor anchor = null) position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); Sprite.Position = position; - Sprite.RotationOrScale = (float)angle.AsRadians(); + Sprite.RotationOrScale += (float)angle.AsRadians(); + } + + public override Sprite Clone() + { + return new TextureSprite(Sprite); + } + + public void SetSize(Vector2 size) + { + Sprite.Size = size; } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs new file mode 100644 index 0000000..6fe4eb1 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; + +namespace IngameScript +{ + public abstract class Sprites + { + /// + /// Clones a sprite timesToRepeat times, places them in a circle and divides the space between sprites evenly. + /// + /// The sprite to clone + /// Number of instances of the sprite there need to be + /// The center of rotation + /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) + public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepeat, Anchor rotationAnchor) + { + double anglePerItem = 2 * Math.PI / timesToRepeat; + Angle stepSize = new Angle(anglePerItem, AngleUnit.Radians); + return RepeatRotated(spriteToRepeat, timesToRepeat, rotationAnchor, stepSize); + } + + /// + /// Clones a sprite timesToRepeat times, rotating each clone at an angle of stepSize compared to the previous clone. + /// + /// The sprite to clone + /// Number of instances of the sprite there need to be + /// The center of rotation + /// The angle to rotate each clone compared to the previous one + /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) + public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepeat, Anchor rotationAnchor, + Angle stepSize) + { + List resultingSprites = new List { spriteToRepeat }; + for (var i = 1; i < timesToRepeat; i++) + { + var newAngle = new Angle(stepSize.AsRadians() * i, AngleUnit.Radians); + var newSprite = spriteToRepeat.Clone(); + newSprite.Rotate(newAngle, rotationAnchor); + resultingSprites.Add(newSprite); + } + + return resultingSprites; + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index 1c18467..3a37461 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -22,51 +22,53 @@ namespace IngameScript { public partial class Program : MyGridProgram { - // This file contains your actual script. - // - // You can either keep all your code here, or you can create separate - // code files to make your program easier to navigate while coding. - // - // Go to: - // https://github.com/malware-dev/MDK-SE/wiki/Quick-Introduction-to-Space-Engineers-Ingame-Scripts - // - // to learn more about ingame scripts. + private readonly IMyTextSurface surface; + private Sprite sunSprite; + private RectangleF _viewport; public Program() { - // The constructor, called only once every session and - // always before any other method is called. Use it to - // initialize your script. - // - // The constructor is optional and can be removed if not - // needed. - // - // It's recommended to set Runtime.UpdateFrequency - // here, which will allow your script to run itself without a - // timer block. + surface = Me.GetSurface(0); + surface.ContentType = ContentType.SCRIPT; + surface.Script = ""; + _viewport = new RectangleF( + (surface.TextureSize - surface.SurfaceSize) / 2f, + surface.SurfaceSize + ); + + Runtime.UpdateFrequency = UpdateFrequency.Update100; + + var sunRayMiddle = new TextureSprite("SquareSimple"); + sunRayMiddle.SetSize(new Vector2(20, 5)); + var sunRayCapRight = new TextureSprite("SemiCircle"); + sunRayCapRight.SetSize(new Vector2(5, 20)); + var sunRayCapLeft = sunRayCapRight.Clone(); + sunRayCapRight.Rotate(new Angle(90, AngleUnit.Degrees)); + sunRayCapRight.Translate(new Vector2(10, 0)); + sunRayCapLeft.Rotate(new Angle(-90, AngleUnit.Degrees)); + sunRayCapLeft.Translate(new Vector2(-10, 0)); + + var sunRay = new SpriteGroup(new List { sunRayCapLeft, sunRayMiddle, sunRayCapRight }); + sunRay.Translate(new Vector2(50, 0)); + + var sunBody = new TextureSprite("Circle"); + sunBody.SetSize(new Vector2(50, 50)); + + var allRays = Sprites.RepeatRotated(sunRay, 4, sunBody, new Angle(90, AngleUnit.Degrees)); + allRays.Add(sunBody); + sunSprite = new SpriteGroup(allRays); + sunSprite.SetColor(Color.Yellow); } public void Save() { - // Called when the program needs to save its state. Use - // this method to save your state to the Storage field - // or some other means. - // - // This method is optional and can be removed if not - // needed. } public void Main(string argument, UpdateType updateSource) { - // The main entry point of the script, invoked every time - // one of the programmable block's Run actions are invoked, - // or the script updates itself. The updateSource argument - // describes where the update came from. Be aware that the - // updateSource is a bitfield and might contain more than - // one update type. - // - // The method itself is required, but the arguments above - // can be removed if not needed. + var frame = surface.DrawFrame(); + frame.AddRange(sunSprite.ToDrawableList(_viewport)); + frame.Dispose(); } } } \ No newline at end of file From c69e1e15d411feb08eac32b1a28198a814f3d438 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Tue, 24 Mar 2026 19:47:13 +0100 Subject: [PATCH 04/28] Rotations now work properly - Reversed the polarity of the angle used in sine and cosine calculations (I multiplied the angle by -1) - Prevented the rotation from spiraling in on itself by only modifiying the X-coordinate of a sprite after the correct Y value was also calculated --- .../src/sprite/TextureSprite.cs | 11 +++++------ .../SpriteCompositor.Demo/Program.cs | 13 ++++++------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs index c1cb200..261addd 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -13,7 +13,6 @@ public TextureSprite(string texturePath = null) : base(new MySprite(type: Sprite private TextureSprite(MySprite sprite) : base(sprite) { - } public void SetTexture(string texturePath) @@ -41,16 +40,16 @@ public override void Rotate(Angle angle, Anchor anchor = null) anchor = this; } - var cos = Math.Cos(angle.AsRadians()); - var sin = Math.Sin(angle.AsRadians()); + var cos = Math.Cos(-1 * angle.AsRadians()); + var sin = Math.Sin(-1 * angle.AsRadians()); var anchorX = anchor.GetPosition().X; var anchorY = anchor.GetPosition().Y; var position = Sprite.Position ?? Vector2.Zero; - position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); - position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); - Sprite.Position = position; + var posX = (float)(cos * (position.X - anchorX) + (position.Y - anchorY) * sin + anchorX); + var posY = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); + Sprite.Position = new Vector2(posX, posY); Sprite.RotationOrScale += (float)angle.AsRadians(); } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index 3a37461..cb2f09a 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -23,20 +23,20 @@ namespace IngameScript public partial class Program : MyGridProgram { private readonly IMyTextSurface surface; - private Sprite sunSprite; - private RectangleF _viewport; + private readonly Sprite sunSprite; + private readonly RectangleF viewport; public Program() { surface = Me.GetSurface(0); surface.ContentType = ContentType.SCRIPT; surface.Script = ""; - _viewport = new RectangleF( + viewport = new RectangleF( (surface.TextureSize - surface.SurfaceSize) / 2f, surface.SurfaceSize ); - Runtime.UpdateFrequency = UpdateFrequency.Update100; + Runtime.UpdateFrequency = UpdateFrequency.Update10; var sunRayMiddle = new TextureSprite("SquareSimple"); sunRayMiddle.SetSize(new Vector2(20, 5)); @@ -53,8 +53,7 @@ public Program() var sunBody = new TextureSprite("Circle"); sunBody.SetSize(new Vector2(50, 50)); - - var allRays = Sprites.RepeatRotated(sunRay, 4, sunBody, new Angle(90, AngleUnit.Degrees)); + var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody); allRays.Add(sunBody); sunSprite = new SpriteGroup(allRays); sunSprite.SetColor(Color.Yellow); @@ -67,7 +66,7 @@ public void Save() public void Main(string argument, UpdateType updateSource) { var frame = surface.DrawFrame(); - frame.AddRange(sunSprite.ToDrawableList(_viewport)); + frame.AddRange(sunSprite.ToDrawableList(viewport)); frame.Dispose(); } } From d43c13fb2ad13d334aee250c72fe50dbfa50beba Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 25 Mar 2026 13:55:45 +0100 Subject: [PATCH 05/28] Improve naming --- .../src/sprite/Sprite.cs | 8 ++++++-- .../src/sprite/SpriteGroup.cs | 7 +++---- .../src/sprite/SpriteLeaf.cs | 5 ++--- .../SpriteCompositor.Demo/Program.cs | 13 ++++--------- 4 files changed, 15 insertions(+), 18 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index c205a52..c042752 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -1,4 +1,3 @@ -using System.Collections.Generic; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -27,6 +26,11 @@ public interface Sprite : Anchor /// A new instance of the sprite Sprite Clone(); - List ToDrawableList(RectangleF viewport); + /// + /// Converts the sprite to a collection of sprites that Space Engineers can actually draw. + /// + /// The size of the screen the sprite(s) are to be drawn to. Moves the sprites so that 0,0 is the center of the screen. + /// A collection of MySprite objects that can be drawn on a screen the size of viewport. + MySprite[] AsDrawableCollection(RectangleF viewport); } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index a55dd65..76dd420 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -16,8 +16,7 @@ public SpriteGroup(List children) public Vector2 GetPosition() { - //TODO: implement this - return new Vector2(0, 0); + return children.Aggregate(Vector2.Zero, (current, child) => current + child.GetPosition()) / children.Count; } public void Translate(Vector2 vector) @@ -52,9 +51,9 @@ public Sprite Clone() return new SpriteGroup(children.Select(sprite => sprite.Clone()).ToList()); } - public List ToDrawableList(RectangleF viewport) + public MySprite[] AsDrawableCollection(RectangleF viewport) { - return children.SelectMany(child => child.ToDrawableList(viewport)).ToList(); + return children.SelectMany(child => child.AsDrawableCollection(viewport)).ToArray(); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 2ce0532..c91060f 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -1,4 +1,3 @@ -using System.Collections.Generic; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -46,7 +45,7 @@ public void SetAlignment(TextAlignment alignment) public abstract void Rotate(Angle angle, Anchor anchor = null); public abstract Sprite Clone(); - public List ToDrawableList(RectangleF viewport) + public MySprite[] AsDrawableCollection(RectangleF viewport) { var copy = new MySprite( Sprite.Type, @@ -57,7 +56,7 @@ public List ToDrawableList(RectangleF viewport) Sprite.FontId, Sprite.Alignment, Sprite.RotationOrScale); - return new List { copy }; + return new[] { copy }; } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index cb2f09a..0e00823 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -42,11 +42,10 @@ public Program() sunRayMiddle.SetSize(new Vector2(20, 5)); var sunRayCapRight = new TextureSprite("SemiCircle"); sunRayCapRight.SetSize(new Vector2(5, 20)); - var sunRayCapLeft = sunRayCapRight.Clone(); sunRayCapRight.Rotate(new Angle(90, AngleUnit.Degrees)); - sunRayCapRight.Translate(new Vector2(10, 0)); - sunRayCapLeft.Rotate(new Angle(-90, AngleUnit.Degrees)); - sunRayCapLeft.Translate(new Vector2(-10, 0)); + sunRayCapRight.Translate(new Vector2(9, 0)); + var sunRayCapLeft = sunRayCapRight.Clone(); + sunRayCapLeft.Rotate(new Angle(180, AngleUnit.Degrees), sunRayMiddle); var sunRay = new SpriteGroup(new List { sunRayCapLeft, sunRayMiddle, sunRayCapRight }); sunRay.Translate(new Vector2(50, 0)); @@ -59,14 +58,10 @@ public Program() sunSprite.SetColor(Color.Yellow); } - public void Save() - { - } - public void Main(string argument, UpdateType updateSource) { var frame = surface.DrawFrame(); - frame.AddRange(sunSprite.ToDrawableList(viewport)); + frame.AddRange(sunSprite.AsDrawableCollection(viewport)); frame.Dispose(); } } From f86e213abbcbf417def604842d3836da942b1add Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 25 Mar 2026 14:33:43 +0100 Subject: [PATCH 06/28] Some form of scaling working --- .../src/sprite/ClippingSprite.cs | 11 ++++++++++- .../src/sprite/Sprite.cs | 2 +- .../src/sprite/SpriteGroup.cs | 9 ++++++--- .../src/sprite/SpriteLeaf.cs | 2 +- .../src/sprite/TextSprite.cs | 11 ++++++++++- .../src/sprite/TextureSprite.cs | 11 ++++++++++- .../SpriteCompositor.Demo/Program.cs | 1 + 7 files changed, 39 insertions(+), 8 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs index 7104953..2b9e556 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs @@ -15,7 +15,7 @@ public ClippingSprite() : base(new MySprite(type: SpriteType.CLIP_RECT)) } - public override void Scale(float amount) + public override void Scale(float amount, Anchor anchor = null) { if (Sprite.Size == null) { @@ -26,6 +26,15 @@ public override void Scale(float amount) size.X *= amount; size.Y *= amount; Sprite.Size = size; + if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) + { + return; + } + + var anchorPos = anchor.GetPosition(); + var distanceFromAnchor = this.GetPosition() - anchorPos; + distanceFromAnchor *= amount; + Sprite.Position = anchorPos + distanceFromAnchor; } public override void Rotate(Angle angle, Anchor anchor = null) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index c042752..d61185f 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -12,7 +12,7 @@ public interface Sprite : Anchor void Translate(Vector2 vector); void SetColor(Color color); void SetAlignment(TextAlignment alignment); - void Scale(float amount); + void Scale(float amount, Anchor anchor = null); /// /// Rotates a sprite in clockwise direction around the given anchor /// diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 76dd420..10ad90f 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -34,10 +34,13 @@ public void SetAlignment(TextAlignment alignment) children.ForEach(sprite => sprite.SetAlignment(alignment)); } - public void Scale(float amount) + public void Scale(float amount, Anchor anchor = null) { - //TODO: Provide better implementation - children.ForEach(sprite => sprite.Scale(amount)); + if (anchor == null) + { + anchor = this; + } + children.ForEach(sprite => sprite.Scale(amount, anchor)); } public void Rotate(Angle angle, Anchor anchor = null) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index c91060f..764174a 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -41,7 +41,7 @@ public void SetAlignment(TextAlignment alignment) Sprite.Alignment = alignment; } - public abstract void Scale(float amount); + public abstract void Scale(float amount, Anchor anchor = null); public abstract void Rotate(Angle angle, Anchor anchor = null); public abstract Sprite Clone(); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs index 12a82e7..876f412 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs @@ -26,9 +26,18 @@ public void SetFontId(string fontId) Sprite.FontId = fontId; } - public override void Scale(float amount) + public override void Scale(float amount, Anchor anchor = null) { Sprite.RotationOrScale = amount; + if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) + { + return; + } + + var anchorPos = anchor.GetPosition(); + var distanceFromAnchor = this.GetPosition() - anchorPos; + distanceFromAnchor *= amount; + Sprite.Position = anchorPos + distanceFromAnchor; } public override void Rotate(Angle angle, Anchor anchor = null) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs index 261addd..89c78e8 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -20,7 +20,7 @@ public void SetTexture(string texturePath) Sprite.Data = texturePath; } - public override void Scale(float amount) + public override void Scale(float amount, Anchor anchor = null) { if (Sprite.Size == null) { @@ -31,6 +31,15 @@ public override void Scale(float amount) size.X *= amount; size.Y *= amount; Sprite.Size = size; + if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) + { + return; + } + + var anchorPos = anchor.GetPosition(); + var distanceFromAnchor = this.GetPosition() - anchorPos; + distanceFromAnchor *= amount; + Sprite.Position = anchorPos + distanceFromAnchor; } public override void Rotate(Angle angle, Anchor anchor = null) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index 0e00823..8697683 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -56,6 +56,7 @@ public Program() allRays.Add(sunBody); sunSprite = new SpriteGroup(allRays); sunSprite.SetColor(Color.Yellow); + sunSprite.Scale(2); } public void Main(string argument, UpdateType updateSource) From 7b5e1bd604720934a09c7faab958d86dae24c391 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 25 Mar 2026 14:50:42 +0100 Subject: [PATCH 07/28] Fixed scaling issues --- .../src/sprite/SpriteGroup.cs | 2 +- .../SpriteCompositor.Demo/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 10ad90f..74baef4 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -38,7 +38,7 @@ public void Scale(float amount, Anchor anchor = null) { if (anchor == null) { - anchor = this; + anchor = new PointAnchor(GetPosition()); } children.ForEach(sprite => sprite.Scale(amount, anchor)); } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index 8697683..5ab4229 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -56,7 +56,7 @@ public Program() allRays.Add(sunBody); sunSprite = new SpriteGroup(allRays); sunSprite.SetColor(Color.Yellow); - sunSprite.Scale(2); + sunSprite.Scale(2f); } public void Main(string argument, UpdateType updateSource) From 9966ceba48c97f7b92b9e93c2235b4757c320681 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 25 Mar 2026 15:57:58 +0100 Subject: [PATCH 08/28] Enable multi-dimensional scaling --- .../src/sprite/ClippingSprite.cs | 13 +++++--- .../src/sprite/Sprite.cs | 3 +- .../src/sprite/SpriteGroup.cs | 9 +++-- .../src/sprite/SpriteLeaf.cs | 3 +- .../src/sprite/TextSprite.cs | 24 ++++++++++---- .../src/sprite/TextureSprite.cs | 13 +++++--- .../SpriteCompositor.Demo/Program.cs | 33 +++++++++++++++++-- 7 files changed, 77 insertions(+), 21 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs index 2b9e556..282f820 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs @@ -15,7 +15,12 @@ public ClippingSprite() : base(new MySprite(type: SpriteType.CLIP_RECT)) } - public override void Scale(float amount, Anchor anchor = null) + public override void Scale(float scalar, Anchor anchor = null) + { + Scale(new Vector2(scalar, scalar), anchor); + } + + public override void Scale(Vector2 scalar, Anchor anchor = null) { if (Sprite.Size == null) { @@ -23,8 +28,8 @@ public override void Scale(float amount, Anchor anchor = null) } var size = Sprite.Size.Value; - size.X *= amount; - size.Y *= amount; + size.X *= scalar.X; + size.Y *= scalar.Y; Sprite.Size = size; if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) { @@ -33,7 +38,7 @@ public override void Scale(float amount, Anchor anchor = null) var anchorPos = anchor.GetPosition(); var distanceFromAnchor = this.GetPosition() - anchorPos; - distanceFromAnchor *= amount; + distanceFromAnchor *= scalar; Sprite.Position = anchorPos + distanceFromAnchor; } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index d61185f..da6aa38 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -12,7 +12,8 @@ public interface Sprite : Anchor void Translate(Vector2 vector); void SetColor(Color color); void SetAlignment(TextAlignment alignment); - void Scale(float amount, Anchor anchor = null); + void Scale(float scalar, Anchor anchor = null); + void Scale(Vector2 scalar, Anchor anchor = null); /// /// Rotates a sprite in clockwise direction around the given anchor /// diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 74baef4..8bce6ab 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -34,13 +34,18 @@ public void SetAlignment(TextAlignment alignment) children.ForEach(sprite => sprite.SetAlignment(alignment)); } - public void Scale(float amount, Anchor anchor = null) + public void Scale(float scalar, Anchor anchor = null) + { + Scale(new Vector2(scalar, scalar), anchor); + } + + public void Scale(Vector2 scalar, Anchor anchor = null) { if (anchor == null) { anchor = new PointAnchor(GetPosition()); } - children.ForEach(sprite => sprite.Scale(amount, anchor)); + children.ForEach(sprite => sprite.Scale(scalar, anchor)); } public void Rotate(Angle angle, Anchor anchor = null) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 764174a..ef76cb0 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -41,7 +41,8 @@ public void SetAlignment(TextAlignment alignment) Sprite.Alignment = alignment; } - public abstract void Scale(float amount, Anchor anchor = null); + public abstract void Scale(float scalar, Anchor anchor = null); + public abstract void Scale(Vector2 scalar, Anchor anchor = null); public abstract void Rotate(Angle angle, Anchor anchor = null); public abstract Sprite Clone(); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs index 876f412..0893bd1 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs @@ -12,7 +12,6 @@ public TextSprite(string text) : base(new MySprite(type: SpriteType.TEXT, data: private TextSprite(MySprite sprite) : base(sprite) { - } @@ -26,9 +25,20 @@ public void SetFontId(string fontId) Sprite.FontId = fontId; } - public override void Scale(float amount, Anchor anchor = null) + public void SetScale(float scale) { - Sprite.RotationOrScale = amount; + Sprite.RotationOrScale = scale; + } + + public override void Scale(float scalar, Anchor anchor = null) + { + Scale(new Vector2(scalar, scalar), anchor); + } + + public override void Scale(Vector2 scalar, Anchor anchor = null) + { + // Text sprites don't really scale in 2 dimensions, so instead we'll take the average scale + Sprite.RotationOrScale = (scalar.X + scalar.Y) / 2; if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) { return; @@ -36,8 +46,8 @@ public override void Scale(float amount, Anchor anchor = null) var anchorPos = anchor.GetPosition(); var distanceFromAnchor = this.GetPosition() - anchorPos; - distanceFromAnchor *= amount; - Sprite.Position = anchorPos + distanceFromAnchor; + distanceFromAnchor *= scalar; + Sprite.Position = anchorPos + distanceFromAnchor; } public override void Rotate(Angle angle, Anchor anchor = null) @@ -47,8 +57,8 @@ public override void Rotate(Angle angle, Anchor anchor = null) return; } - var cos = Math.Cos(angle.AsRadians()); - var sin = Math.Sin(angle.AsRadians()); + var cos = Math.Cos(-angle.AsRadians()); + var sin = Math.Sin(-angle.AsRadians()); var anchorX = anchor.GetPosition().X; var anchorY = anchor.GetPosition().Y; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs index 89c78e8..b3ebfb9 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -20,7 +20,12 @@ public void SetTexture(string texturePath) Sprite.Data = texturePath; } - public override void Scale(float amount, Anchor anchor = null) + public override void Scale(float scalar, Anchor anchor = null) + { + Scale(new Vector2(scalar, scalar), anchor); + } + + public override void Scale(Vector2 scalar, Anchor anchor = null) { if (Sprite.Size == null) { @@ -28,8 +33,8 @@ public override void Scale(float amount, Anchor anchor = null) } var size = Sprite.Size.Value; - size.X *= amount; - size.Y *= amount; + size.X *= scalar.X; + size.Y *= scalar.Y; Sprite.Size = size; if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) { @@ -38,7 +43,7 @@ public override void Scale(float amount, Anchor anchor = null) var anchorPos = anchor.GetPosition(); var distanceFromAnchor = this.GetPosition() - anchorPos; - distanceFromAnchor *= amount; + distanceFromAnchor *= scalar; Sprite.Position = anchorPos + distanceFromAnchor; } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index 5ab4229..7a008f3 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -28,14 +28,17 @@ public partial class Program : MyGridProgram public Program() { + // We prepare a screen like normal surface = Me.GetSurface(0); surface.ContentType = ContentType.SCRIPT; surface.Script = ""; + // This is a mystery tool that will help us later ;) viewport = new RectangleF( (surface.TextureSize - surface.SurfaceSize) / 2f, surface.SurfaceSize ); - + + // Strictly speaking this should be an Update100, but for testing and/or animation purposes it's nice to use Update10. Runtime.UpdateFrequency = UpdateFrequency.Update10; var sunRayMiddle = new TextureSprite("SquareSimple"); @@ -44,24 +47,50 @@ public Program() sunRayCapRight.SetSize(new Vector2(5, 20)); sunRayCapRight.Rotate(new Angle(90, AngleUnit.Degrees)); sunRayCapRight.Translate(new Vector2(9, 0)); + // You can copy a sprite you made earlier and apply different operations to it var sunRayCapLeft = sunRayCapRight.Clone(); + // We're using the middle part of the sun ray as an anchor point for the rotation, + // this allows us to flip the copied end to the left of the ray, without having to calculate how far it needs to go! sunRayCapLeft.Rotate(new Angle(180, AngleUnit.Degrees), sunRayMiddle); - + + // It's also possible to group sprites and treat them as if they were one. var sunRay = new SpriteGroup(new List { sunRayCapLeft, sunRayMiddle, sunRayCapRight }); sunRay.Translate(new Vector2(50, 0)); var sunBody = new TextureSprite("Circle"); sunBody.SetSize(new Vector2(50, 50)); + + // Since we don't feel like repeating the above steps for every sun ray, you can easily clone sprites in a circle! var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody); + allRays.Add(sunBody); sunSprite = new SpriteGroup(allRays); sunSprite.SetColor(Color.Yellow); + + // You can create, adjust and add sprites after a group has been made by keeping a reference to the list of the group's sprites + var praiseText = new TextSprite("Praise"); + praiseText.SetFontId("White"); + praiseText.Translate(new Vector2(0, -150)); + // Text can also be rotated around an anchor point, but beware! SE does not support rotating the text itself. This will therefore not create slanted text! + praiseText.Rotate(new Angle(35, AngleUnit.Degrees), sunSprite); + var theSunText = new TextSprite("the sun"); + theSunText.SetFontId("White"); + theSunText.Translate(new Vector2(0, 125)); + // Though we don't do it here, you can also use an arbitrary point in space as the anchor by creating a new PointAnchor. + theSunText.Rotate(new Angle(40, AngleUnit.Degrees), sunSprite); + + allRays.Add(praiseText); + allRays.Add(theSunText); + + // Any new operations will be applied to the newly grouped sprites as well, but previous operations will not be applied. sunSprite.Scale(2f); + // It's also possible to scale X and Y separately. You can even mirror sprites by applying a scale of -1 in one or both directions! } public void Main(string argument, UpdateType updateSource) { var frame = surface.DrawFrame(); + // To simplify use, the MySprite collection is moved so that 0,0 is the center of the viewport. frame.AddRange(sunSprite.AsDrawableCollection(viewport)); frame.Dispose(); } From 865d13719af8566a2b704a07c7f21c130fd3cc2e Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 25 Mar 2026 17:52:08 +0100 Subject: [PATCH 09/28] Fix incorrect ClippingSprite rotations --- .../src/sprite/ClippingSprite.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs index 282f820..cfcc8de 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs @@ -12,7 +12,6 @@ private ClippingSprite(MySprite sprite) : base(sprite) public ClippingSprite() : base(new MySprite(type: SpriteType.CLIP_RECT)) { - } public override void Scale(float scalar, Anchor anchor = null) @@ -39,7 +38,7 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) var anchorPos = anchor.GetPosition(); var distanceFromAnchor = this.GetPosition() - anchorPos; distanceFromAnchor *= scalar; - Sprite.Position = anchorPos + distanceFromAnchor; + Sprite.Position = anchorPos + distanceFromAnchor; } public override void Rotate(Angle angle, Anchor anchor = null) @@ -49,8 +48,8 @@ public override void Rotate(Angle angle, Anchor anchor = null) anchor = this; } - var cos = Math.Cos(angle.AsRadians()); - var sin = Math.Sin(angle.AsRadians()); + var cos = Math.Cos(-angle.AsRadians()); + var sin = Math.Sin(-angle.AsRadians()); var anchorX = anchor.GetPosition().X; var anchorY = anchor.GetPosition().Y; From 0e16ed49b87873655166b11fea43547a2d44c4e0 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 25 Mar 2026 21:39:51 +0100 Subject: [PATCH 10/28] Simplified API - Removed AngleUnit in favor of static creator methods - Fixed an issue where rotation or scaling of a sprite group would create a small error that compounded over time. - Added builder pattern for Text and Texture sprites - Changed functions that take a Vector2 to have an overload that takes 2 floats instead --- ....MdkScriptMixin.SpriteCompositor.projitems | 1 - .../_description | 2 +- .../_releasenotes | 6 +- .../src/angle/Angle.cs | 38 +++++---- .../src/angle/AngleUnit.cs | 8 -- .../src/sprite/Sprite.cs | 21 +++++ .../src/sprite/SpriteGroup.cs | 29 ++++++- .../src/sprite/SpriteLeaf.cs | 19 +++++ .../src/sprite/TextSprite.cs | 56 +++++++++++++ .../src/sprite/TextureSprite.cs | 82 ++++++++++++++++--- .../src/util/Sprites.cs | 7 +- .../SpriteCompositor.Demo/Program.cs | 64 +++++++++------ 12 files changed, 263 insertions(+), 70 deletions(-) delete mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems index 9e9b3d3..94fd3e4 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems @@ -17,7 +17,6 @@ - diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description index 8f64d68..0fed797 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description @@ -1 +1 @@ -Advanced Sprite Compositor for the Sprite API in Space Engineers \ No newline at end of file +A more advanced API for interacting with the SE's native sprite api. Core functionality is composing a new sprite by grouping a collection of sprites, allowing you to treat them as if they were one sprite. \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes index 6c25550..9d938bb 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes @@ -1,2 +1,6 @@ - 1.0.0 - Added everything \ No newline at end of file + Support Text and Image sprites. + Support translating sprites. + Support rotating sprites around an arbitrary point or another sprite. + Support scaling sprite groups as if they were one sprite, in multiple dimensions. + Support recoloring groups of sprites diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index 495b9a9..6d7bced 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -7,28 +7,20 @@ namespace IngameScript /// public struct Angle { + public static Angle Right = FromRadians(0.5 * Math.PI); + public static Angle Straight = FromRadians(Math.PI); + public static Angle Full = FromRadians(2 * Math.PI); + private readonly double radians; - public Angle(double angle, AngleUnit unit) + private Angle(double radians) { - if (unit == AngleUnit.Degrees) + // Normalize the angle to be within a single rotation + if (radians >= 2 * Math.PI || radians <= -2 * Math.PI) { - angle = angle * Math.PI / 180; + radians %= 2 * Math.PI; } - - while (angle > 2 * Math.PI || angle < -2 * Math.PI) - { - if (angle > 0) - { - angle -= 2 * Math.PI; - } - - if (angle < 0) - { - angle += 2 * Math.PI; - } - } - radians = angle; + this.radians = radians; } public double AsRadians() @@ -41,9 +33,19 @@ public double AsDegrees() return radians * 180 / Math.PI; } + public static Angle FromDegrees(double degrees) + { + return new Angle(degrees * Math.PI / 180); + } + + public static Angle FromRadians(double radians) + { + return new Angle(radians); + } + public static Angle Add(Angle a, Angle b) { - return new Angle(a.AsRadians() + b.AsRadians(), AngleUnit.Radians); + return FromRadians(a.AsRadians() + b.AsRadians()); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs deleted file mode 100644 index 58aa588..0000000 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/AngleUnit.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace IngameScript -{ - public enum AngleUnit - { - Radians, - Degrees - } -} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index da6aa38..eadd76d 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -10,9 +10,25 @@ public interface Sprite : Anchor /// /// How far the sprite will be moved and in what direction void Translate(Vector2 vector); + /// + /// Moves a sprite in 2D space. + /// + /// How far the sprite will be moved on the x-axis + /// How far the sprite will be moved on the y-axis + void Translate(float x, float y); void SetColor(Color color); void SetAlignment(TextAlignment alignment); + /// + /// Scales a sprite in 2 dimensions according to the scalar. + /// + /// How much to multiply the size of the sprite by + /// If not null, will also scale the sprite's distance from the anchor void Scale(float scalar, Anchor anchor = null); + /// + /// Scales a sprite in 2 dimensions according to the scalar. + /// + /// How much to multiply the size of the sprite by. If either x or y is 1, scales in only one dimension (except for text) + /// If not null, will also scale the sprite's distance from the anchor void Scale(Vector2 scalar, Anchor anchor = null); /// /// Rotates a sprite in clockwise direction around the given anchor @@ -33,5 +49,10 @@ public interface Sprite : Anchor /// The size of the screen the sprite(s) are to be drawn to. Moves the sprites so that 0,0 is the center of the screen. /// A collection of MySprite objects that can be drawn on a screen the size of viewport. MySprite[] AsDrawableCollection(RectangleF viewport); + /// + /// Converts the sprite to a collection of sprites that Space Engineers can actually draw + /// + /// A collection of MySprite objects. These have not been adjusted to fit in the viewport. + MySprite[] AsDrawableCollection(); } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 8bce6ab..c996a7c 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -24,6 +24,11 @@ public void Translate(Vector2 vector) children.ForEach(sprite => sprite.Translate(vector)); } + public void Translate(float x, float y) + { + Translate(new Vector2(x, y)); + } + public void SetColor(Color color) { children.ForEach(sprite => sprite.SetColor(color)); @@ -41,16 +46,33 @@ public void Scale(float scalar, Anchor anchor = null) public void Scale(Vector2 scalar, Anchor anchor = null) { + // See the rotate function for why we're doing this. if (anchor == null) { anchor = new PointAnchor(GetPosition()); } + else if (anchor is SpriteGroup) + { + anchor = new PointAnchor(anchor.GetPosition()); + } + children.ForEach(sprite => sprite.Scale(scalar, anchor)); } public void Rotate(Angle angle, Anchor anchor = null) { - if (anchor == null) anchor = this; + // it is VITALLY important to create a PointAnchor here. If we don't, + // the process of rotating sprites will adjust this groups center, and therefore it's position + // this causes sprites to spiral away from the center of rotation. + if (anchor == null) + { + anchor = new PointAnchor(GetPosition()); + } + // Safeguard if someone passes this group or a subgroup of this group as an anchor. + else if (anchor is SpriteGroup) + { + anchor = new PointAnchor(anchor.GetPosition()); + } children.ForEach(sprite => sprite.Rotate(angle, anchor)); } @@ -63,5 +85,10 @@ public MySprite[] AsDrawableCollection(RectangleF viewport) { return children.SelectMany(child => child.AsDrawableCollection(viewport)).ToArray(); } + + public MySprite[] AsDrawableCollection() + { + return children.SelectMany(child => child.AsDrawableCollection()).ToArray(); + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index ef76cb0..0080393 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -31,6 +31,11 @@ public void Translate(Vector2 vector) Sprite.Position = position; } + public void Translate(float x, float y) + { + Translate(new Vector2(x,y)); + } + public void SetColor(Color color) { Sprite.Color = color; @@ -59,5 +64,19 @@ public MySprite[] AsDrawableCollection(RectangleF viewport) Sprite.RotationOrScale); return new[] { copy }; } + + public MySprite[] AsDrawableCollection() + { + var copy = new MySprite( + Sprite.Type, + Sprite.Data, + Sprite.Position, + Sprite.Size, + Sprite.Color, + Sprite.FontId, + Sprite.Alignment, + Sprite.RotationOrScale); + return new[] { copy }; + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs index 0893bd1..de7364c 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs @@ -73,5 +73,61 @@ public override Sprite Clone() { return new TextSprite(Sprite); } + + public class Builder + { + private MySprite sprite = new MySprite(type: SpriteType.TEXT); + + public Builder Text(string text) + { + sprite.Data = text; + return this; + } + + public Builder FontId(string fontId) + { + sprite.FontId = fontId; + return this; + } + + public Builder Position(float x, float y) + { + return Position(new Vector2(x, y)); + } + + public Builder Position(Vector2 position) + { + sprite.Position = position; + return this; + } + + public Builder Scale(float scale) + { + sprite.RotationOrScale = scale; + return this; + } + + public Builder Color(Color color) + { + sprite.Color = color; + return this; + } + + public Builder Alignment(TextAlignment alignment) + { + sprite.Alignment = alignment; + return this; + } + + public TextSprite Build() + { + return new TextSprite(sprite); + } + } + + public static Builder GetBuilder() + { + return new Builder(); + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs index b3ebfb9..fdc89c1 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -44,27 +44,24 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) var anchorPos = anchor.GetPosition(); var distanceFromAnchor = this.GetPosition() - anchorPos; distanceFromAnchor *= scalar; - Sprite.Position = anchorPos + distanceFromAnchor; + Sprite.Position = anchorPos + distanceFromAnchor; } public override void Rotate(Angle angle, Anchor anchor = null) { - if (anchor == null) - { - anchor = this; - } + Sprite.RotationOrScale += (float)angle.AsRadians(); + + if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) return; - var cos = Math.Cos(-1 * angle.AsRadians()); - var sin = Math.Sin(-1 * angle.AsRadians()); + var cos = Math.Cos(-angle.AsRadians()); + var sin = Math.Sin(-angle.AsRadians()); - var anchorX = anchor.GetPosition().X; - var anchorY = anchor.GetPosition().Y; + var anchorPos = anchor.GetPosition(); var position = Sprite.Position ?? Vector2.Zero; - var posX = (float)(cos * (position.X - anchorX) + (position.Y - anchorY) * sin + anchorX); - var posY = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); + var posX = (float)(cos * (position.X - anchorPos.X) + (position.Y - anchorPos.Y) * sin + anchorPos.X); + var posY = (float)(-1 * sin * (position.X - anchorPos.X) + cos * (position.Y - anchorPos.Y) + anchorPos.Y); Sprite.Position = new Vector2(posX, posY); - Sprite.RotationOrScale += (float)angle.AsRadians(); } public override Sprite Clone() @@ -76,5 +73,66 @@ public void SetSize(Vector2 size) { Sprite.Size = size; } + + public static Builder GetBuilder() + { + return new Builder(); + } + + public class Builder + { + private MySprite sprite = new MySprite(type: SpriteType.TEXTURE); + + public Builder Texture(string path) + { + sprite.Data = path; + return this; + } + + public Builder Position(float x, float y) + { + return Position(new Vector2(x, y)); + } + + public Builder Position(Vector2 position) + { + sprite.Position = position; + return this; + } + + public Builder Rotation(Angle rotation) + { + sprite.RotationOrScale = (float) rotation.AsRadians(); + return this; + } + + public Builder Size(float width, float height) + { + return Size(new Vector2(width, height)); + } + + public Builder Size(Vector2 size) + { + sprite.Size = size; + return this; + } + + public Builder Color(Color color) + { + sprite.Color = color; + return this; + } + + public Builder Alignment(TextAlignment alignment) + { + sprite.Alignment = alignment; + return this; + } + + public TextureSprite Build() + { + return new TextureSprite(sprite); + } + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs index 6fe4eb1..f11818c 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs @@ -14,8 +14,7 @@ public abstract class Sprites /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepeat, Anchor rotationAnchor) { - double anglePerItem = 2 * Math.PI / timesToRepeat; - Angle stepSize = new Angle(anglePerItem, AngleUnit.Radians); + Angle stepSize = Angle.FromRadians(2 * Math.PI / timesToRepeat); return RepeatRotated(spriteToRepeat, timesToRepeat, rotationAnchor, stepSize); } @@ -30,10 +29,10 @@ public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepea public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepeat, Anchor rotationAnchor, Angle stepSize) { - List resultingSprites = new List { spriteToRepeat }; + List resultingSprites = new List (timesToRepeat) { spriteToRepeat }; for (var i = 1; i < timesToRepeat; i++) { - var newAngle = new Angle(stepSize.AsRadians() * i, AngleUnit.Radians); + var newAngle = Angle.FromRadians(stepSize.AsRadians() * i); var newSprite = spriteToRepeat.Clone(); newSprite.Rotate(newAngle, rotationAnchor); resultingSprites.Add(newSprite); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index 7a008f3..c82944d 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -24,6 +24,8 @@ public partial class Program : MyGridProgram { private readonly IMyTextSurface surface; private readonly Sprite sunSprite; + private readonly Sprite praiseText; + private readonly Sprite theSunText; private readonly RectangleF viewport; public Program() @@ -32,7 +34,6 @@ public Program() surface = Me.GetSurface(0); surface.ContentType = ContentType.SCRIPT; surface.Script = ""; - // This is a mystery tool that will help us later ;) viewport = new RectangleF( (surface.TextureSize - surface.SurfaceSize) / 2f, surface.SurfaceSize @@ -41,46 +42,57 @@ public Program() // Strictly speaking this should be an Update100, but for testing and/or animation purposes it's nice to use Update10. Runtime.UpdateFrequency = UpdateFrequency.Update10; - var sunRayMiddle = new TextureSprite("SquareSimple"); - sunRayMiddle.SetSize(new Vector2(20, 5)); - var sunRayCapRight = new TextureSprite("SemiCircle"); - sunRayCapRight.SetSize(new Vector2(5, 20)); - sunRayCapRight.Rotate(new Angle(90, AngleUnit.Degrees)); - sunRayCapRight.Translate(new Vector2(9, 0)); + var sunRayMiddle = TextureSprite.GetBuilder() + .Texture("SquareSimple") + .Size(20, 5) + .Build(); + var sunRayCapRight = TextureSprite.GetBuilder() + .Texture("SemiCircle") + .Size(5, 20) + .Rotation(Angle.Right) + .Position(9, 0) + .Build(); // You can copy a sprite you made earlier and apply different operations to it var sunRayCapLeft = sunRayCapRight.Clone(); // We're using the middle part of the sun ray as an anchor point for the rotation, // this allows us to flip the copied end to the left of the ray, without having to calculate how far it needs to go! - sunRayCapLeft.Rotate(new Angle(180, AngleUnit.Degrees), sunRayMiddle); + sunRayCapLeft.Rotate(Angle.Straight, sunRayMiddle); // It's also possible to group sprites and treat them as if they were one. var sunRay = new SpriteGroup(new List { sunRayCapLeft, sunRayMiddle, sunRayCapRight }); - sunRay.Translate(new Vector2(50, 0)); + sunRay.Translate(50, 0); - var sunBody = new TextureSprite("Circle"); - sunBody.SetSize(new Vector2(50, 50)); + var sunBody = TextureSprite.GetBuilder() + .Texture("Circle") + .Size(50, 50) + .Build(); // Since we don't feel like repeating the above steps for every sun ray, you can easily clone sprites in a circle! var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody); + // You can create, adjust and add sprites after a group has been made by keeping a reference to the list of the group's sprites allRays.Add(sunBody); sunSprite = new SpriteGroup(allRays); sunSprite.SetColor(Color.Yellow); - // You can create, adjust and add sprites after a group has been made by keeping a reference to the list of the group's sprites - var praiseText = new TextSprite("Praise"); - praiseText.SetFontId("White"); - praiseText.Translate(new Vector2(0, -150)); + praiseText = TextSprite.GetBuilder() + .Text("Praise") + .FontId("White") + .Position(0, -150) + .Scale(2f) + .Build(); // Text can also be rotated around an anchor point, but beware! SE does not support rotating the text itself. This will therefore not create slanted text! - praiseText.Rotate(new Angle(35, AngleUnit.Degrees), sunSprite); - var theSunText = new TextSprite("the sun"); - theSunText.SetFontId("White"); - theSunText.Translate(new Vector2(0, 125)); + praiseText.Rotate(Angle.FromDegrees(-35), sunSprite); + // You can also set an initial scale using the builder. However, here we want to scale the distance the text has to the sun, so we supply the sun as the anchor for the scale operation. + praiseText.Scale(2f, sunSprite); + theSunText = TextSprite.GetBuilder() + .Text("the sun") + .FontId("White") + .Position(0, 125) + .Build(); // Though we don't do it here, you can also use an arbitrary point in space as the anchor by creating a new PointAnchor. - theSunText.Rotate(new Angle(40, AngleUnit.Degrees), sunSprite); - - allRays.Add(praiseText); - allRays.Add(theSunText); + theSunText.Rotate(Angle.FromDegrees(-40), sunSprite); + theSunText.Scale(2f, sunSprite); // Any new operations will be applied to the newly grouped sprites as well, but previous operations will not be applied. sunSprite.Scale(2f); @@ -90,9 +102,13 @@ public Program() public void Main(string argument, UpdateType updateSource) { var frame = surface.DrawFrame(); - // To simplify use, the MySprite collection is moved so that 0,0 is the center of the viewport. + // To simplify use, the Sprite(s) move so that 0,0 is the center of the viewport. frame.AddRange(sunSprite.AsDrawableCollection(viewport)); + frame.AddRange(praiseText.AsDrawableCollection(viewport)); + frame.AddRange(theSunText.AsDrawableCollection(viewport)); frame.Dispose(); + // We can animate our sprite by applying transformations during runtime! + sunSprite.Rotate(Angle.FromDegrees(1)); } } } \ No newline at end of file From 79f861cf36c4ac3ccbc23f860b6bf6b892115f70 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Thu, 26 Mar 2026 22:22:59 +0100 Subject: [PATCH 11/28] Added operator overloads for angles and improved api further --- .../src/angle/Angle.cs | 22 +++++++++--- .../src/sprite/ClippingSprite.cs | 7 ++-- .../src/sprite/SpriteGroup.cs | 5 +++ .../src/sprite/TextSprite.cs | 20 +++++------ .../src/sprite/TextureSprite.cs | 26 +++++++------- .../SpriteCompositor.Demo/Program.cs | 34 ++++++++++--------- 6 files changed, 66 insertions(+), 48 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index 6d7bced..02a2cba 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -10,7 +10,7 @@ public struct Angle public static Angle Right = FromRadians(0.5 * Math.PI); public static Angle Straight = FromRadians(Math.PI); public static Angle Full = FromRadians(2 * Math.PI); - + private readonly double radians; private Angle(double radians) @@ -20,6 +20,7 @@ private Angle(double radians) { radians %= 2 * Math.PI; } + this.radians = radians; } @@ -42,10 +43,21 @@ public static Angle FromRadians(double radians) { return new Angle(radians); } + + public static Angle operator +(Angle left, Angle right) => new Angle(left.radians + right.radians); + + public static Angle operator +(Angle angle) => angle; + + public static Angle operator -(Angle left, Angle right) => new Angle(left.radians - right.radians); - public static Angle Add(Angle a, Angle b) - { - return FromRadians(a.AsRadians() + b.AsRadians()); - } + public static Angle operator -(Angle angle) => new Angle(-angle.radians); + + public static Angle operator /(Angle nominator, double divisor) => new Angle(nominator.radians / divisor); + + public static Angle operator *(Angle left, double right) => new Angle(left.radians * right); + + public static bool operator <(Angle left, Angle right) => left.radians < right.radians; + + public static bool operator >(Angle left, Angle right) => left.radians > right.radians; } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs index cfcc8de..36d7991 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs @@ -41,11 +41,11 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) Sprite.Position = anchorPos + distanceFromAnchor; } - public override void Rotate(Angle angle, Anchor anchor = null) + public override void Rotate(Angle angle, Anchor anchor) { - if (anchor == null) + if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) { - anchor = this; + return; } var cos = Math.Cos(-angle.AsRadians()); @@ -58,7 +58,6 @@ public override void Rotate(Angle angle, Anchor anchor = null) position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); Sprite.Position = position; - Sprite.RotationOrScale = (float)angle.AsRadians(); } public override Sprite Clone() diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index c996a7c..abd1879 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -14,6 +14,11 @@ public SpriteGroup(List children) this.children = children; } + public SpriteGroup(params Sprite[] children) + { + this.children = children.ToList(); + } + public Vector2 GetPosition() { return children.Aggregate(Vector2.Zero, (current, child) => current + child.GetPosition()) / children.Count; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs index de7364c..2aa8b28 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs @@ -74,46 +74,46 @@ public override Sprite Clone() return new TextSprite(Sprite); } - public class Builder + public class TextSpriteBuilder { private MySprite sprite = new MySprite(type: SpriteType.TEXT); - public Builder Text(string text) + public TextSpriteBuilder Text(string text) { sprite.Data = text; return this; } - public Builder FontId(string fontId) + public TextSpriteBuilder FontId(string fontId) { sprite.FontId = fontId; return this; } - public Builder Position(float x, float y) + public TextSpriteBuilder Position(float x, float y) { return Position(new Vector2(x, y)); } - public Builder Position(Vector2 position) + public TextSpriteBuilder Position(Vector2 position) { sprite.Position = position; return this; } - public Builder Scale(float scale) + public TextSpriteBuilder Scale(float scale) { sprite.RotationOrScale = scale; return this; } - public Builder Color(Color color) + public TextSpriteBuilder Color(Color color) { sprite.Color = color; return this; } - public Builder Alignment(TextAlignment alignment) + public TextSpriteBuilder Alignment(TextAlignment alignment) { sprite.Alignment = alignment; return this; @@ -125,9 +125,9 @@ public TextSprite Build() } } - public static Builder GetBuilder() + public static TextSpriteBuilder Builder() { - return new Builder(); + return new TextSpriteBuilder(); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs index fdc89c1..5b0977f 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -59,8 +59,8 @@ public override void Rotate(Angle angle, Anchor anchor = null) var anchorPos = anchor.GetPosition(); var position = Sprite.Position ?? Vector2.Zero; - var posX = (float)(cos * (position.X - anchorPos.X) + (position.Y - anchorPos.Y) * sin + anchorPos.X); - var posY = (float)(-1 * sin * (position.X - anchorPos.X) + cos * (position.Y - anchorPos.Y) + anchorPos.Y); + var posX = (float)( cos * (position.X - anchorPos.X) + sin * (position.Y - anchorPos.Y) + anchorPos.X); + var posY = (float)(-sin * (position.X - anchorPos.X) + cos * (position.Y - anchorPos.Y) + anchorPos.Y); Sprite.Position = new Vector2(posX, posY); } @@ -74,56 +74,56 @@ public void SetSize(Vector2 size) Sprite.Size = size; } - public static Builder GetBuilder() + public static TextureSpriteBuilder Builder() { - return new Builder(); + return new TextureSpriteBuilder(); } - public class Builder + public class TextureSpriteBuilder { private MySprite sprite = new MySprite(type: SpriteType.TEXTURE); - public Builder Texture(string path) + public TextureSpriteBuilder Texture(string path) { sprite.Data = path; return this; } - public Builder Position(float x, float y) + public TextureSpriteBuilder Position(float x, float y) { return Position(new Vector2(x, y)); } - public Builder Position(Vector2 position) + public TextureSpriteBuilder Position(Vector2 position) { sprite.Position = position; return this; } - public Builder Rotation(Angle rotation) + public TextureSpriteBuilder Rotation(Angle rotation) { sprite.RotationOrScale = (float) rotation.AsRadians(); return this; } - public Builder Size(float width, float height) + public TextureSpriteBuilder Size(float width, float height) { return Size(new Vector2(width, height)); } - public Builder Size(Vector2 size) + public TextureSpriteBuilder Size(Vector2 size) { sprite.Size = size; return this; } - public Builder Color(Color color) + public TextureSpriteBuilder Color(Color color) { sprite.Color = color; return this; } - public Builder Alignment(TextAlignment alignment) + public TextureSpriteBuilder Alignment(TextAlignment alignment) { sprite.Alignment = alignment; return this; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index c82944d..f4f4437 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -24,8 +24,7 @@ public partial class Program : MyGridProgram { private readonly IMyTextSurface surface; private readonly Sprite sunSprite; - private readonly Sprite praiseText; - private readonly Sprite theSunText; + private readonly Sprite textGroup; private readonly RectangleF viewport; public Program() @@ -42,13 +41,15 @@ public Program() // Strictly speaking this should be an Update100, but for testing and/or animation purposes it's nice to use Update10. Runtime.UpdateFrequency = UpdateFrequency.Update10; - var sunRayMiddle = TextureSprite.GetBuilder() + var sunRayMiddle = TextureSprite.Builder() .Texture("SquareSimple") .Size(20, 5) .Build(); - var sunRayCapRight = TextureSprite.GetBuilder() + var sunRayCapRight = TextureSprite.Builder() .Texture("SemiCircle") .Size(5, 20) + // Rotations are performed using the Angle struct. Here we're using a predefined right angle (90 degrees, or 0.5 * PI) + // You'll see how to create any arbitrary angle a little later in this demo. .Rotation(Angle.Right) .Position(9, 0) .Build(); @@ -58,11 +59,11 @@ public Program() // this allows us to flip the copied end to the left of the ray, without having to calculate how far it needs to go! sunRayCapLeft.Rotate(Angle.Straight, sunRayMiddle); - // It's also possible to group sprites and treat them as if they were one. - var sunRay = new SpriteGroup(new List { sunRayCapLeft, sunRayMiddle, sunRayCapRight }); + // It's possible to group sprites and treat them as if they were one. + var sunRay = new SpriteGroup(sunRayCapLeft, sunRayMiddle, sunRayCapRight); sunRay.Translate(50, 0); - var sunBody = TextureSprite.GetBuilder() + var sunBody = TextureSprite.Builder() .Texture("Circle") .Size(50, 50) .Build(); @@ -70,12 +71,12 @@ public Program() // Since we don't feel like repeating the above steps for every sun ray, you can easily clone sprites in a circle! var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody); - // You can create, adjust and add sprites after a group has been made by keeping a reference to the list of the group's sprites + // You can create, adjust and add sprites after a group has been made by inserting a list of the group's sprites and adding to it later allRays.Add(sunBody); sunSprite = new SpriteGroup(allRays); sunSprite.SetColor(Color.Yellow); - praiseText = TextSprite.GetBuilder() + var praiseText = TextSprite.Builder() .Text("Praise") .FontId("White") .Position(0, -150) @@ -83,17 +84,18 @@ public Program() .Build(); // Text can also be rotated around an anchor point, but beware! SE does not support rotating the text itself. This will therefore not create slanted text! praiseText.Rotate(Angle.FromDegrees(-35), sunSprite); - // You can also set an initial scale using the builder. However, here we want to scale the distance the text has to the sun, so we supply the sun as the anchor for the scale operation. - praiseText.Scale(2f, sunSprite); - theSunText = TextSprite.GetBuilder() + + var theSunText = TextSprite.Builder() .Text("the sun") .FontId("White") .Position(0, 125) .Build(); // Though we don't do it here, you can also use an arbitrary point in space as the anchor by creating a new PointAnchor. theSunText.Rotate(Angle.FromDegrees(-40), sunSprite); - theSunText.Scale(2f, sunSprite); - + textGroup = new SpriteGroup(praiseText, theSunText); + // You can also set an initial scale for text using the builder. + // However, here we want to scale the distance the text has to the sun, so we supply the sun as the anchor for the scale operation. + textGroup.Scale(2f, sunSprite); // Any new operations will be applied to the newly grouped sprites as well, but previous operations will not be applied. sunSprite.Scale(2f); // It's also possible to scale X and Y separately. You can even mirror sprites by applying a scale of -1 in one or both directions! @@ -101,11 +103,11 @@ public Program() public void Main(string argument, UpdateType updateSource) { + textGroup.SetColor(surface.ScriptForegroundColor); var frame = surface.DrawFrame(); // To simplify use, the Sprite(s) move so that 0,0 is the center of the viewport. frame.AddRange(sunSprite.AsDrawableCollection(viewport)); - frame.AddRange(praiseText.AsDrawableCollection(viewport)); - frame.AddRange(theSunText.AsDrawableCollection(viewport)); + frame.AddRange(textGroup.AsDrawableCollection(viewport)); frame.Dispose(); // We can animate our sprite by applying transformations during runtime! sunSprite.Rotate(Angle.FromDegrees(1)); From 27827bab37dceea9a3062584579a52bd7bf8c6f1 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Sat, 28 Mar 2026 17:23:05 +0100 Subject: [PATCH 12/28] Add test project --- ...lebees.MdkScriptMixin.SpriteCompositor.sln | 6 + .../src/util/Sprites.cs | 39 +++- .../SpriteCompositor.Test/.gitignore | 1 + .../SpriteCompositor.Test/README.md | 9 + .../SpriteCompositor.Test.csproj | 23 +++ .../TestUtilities/ProgramBuilder.cs | 171 ++++++++++++++++++ .../Tests/InstancingTests.cs | 77 ++++++++ 7 files changed, 325 insertions(+), 1 deletion(-) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/.gitignore create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/README.md create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/TestUtilities/ProgramBuilder.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln index 9111ff5..f63d09a 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.sln @@ -4,6 +4,8 @@ Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Lelebees.MdkScriptMixin.Spr EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpriteCompositor.Demo", "SpriteCompositor.Demo\SpriteCompositor.Demo.csproj", "{86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpriteCompositor.Test", "SpriteCompositor.Test\SpriteCompositor.Test.csproj", "{2A7DDEA6-FB3C-47A5-B856-BD0A37FC573C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x64 = Debug|x64 @@ -18,5 +20,9 @@ Global {86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}.Debug|x64.Build.0 = Debug|x64 {86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}.Release|x64.ActiveCfg = Release|x64 {86DF49B2-74C3-4A4B-8F5D-4F2FBEB0866C}.Release|x64.Build.0 = Release|x64 + {2A7DDEA6-FB3C-47A5-B856-BD0A37FC573C}.Debug|x64.ActiveCfg = Debug|x64 + {2A7DDEA6-FB3C-47A5-B856-BD0A37FC573C}.Debug|x64.Build.0 = Debug|x64 + {2A7DDEA6-FB3C-47A5-B856-BD0A37FC573C}.Release|x64.ActiveCfg = Release|x64 + {2A7DDEA6-FB3C-47A5-B856-BD0A37FC573C}.Release|x64.Build.0 = Release|x64 EndGlobalSection EndGlobal diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs index f11818c..8c9c287 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using VRageMath; namespace IngameScript { @@ -29,7 +30,7 @@ public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepea public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepeat, Anchor rotationAnchor, Angle stepSize) { - List resultingSprites = new List (timesToRepeat) { spriteToRepeat }; + List resultingSprites = new List(timesToRepeat) { spriteToRepeat }; for (var i = 1; i < timesToRepeat; i++) { var newAngle = Angle.FromRadians(stepSize.AsRadians() * i); @@ -40,5 +41,41 @@ public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepea return resultingSprites; } + + public static TextureSprite Mirror(TextureSprite sprite) + { + sprite.Scale(new Vector2(-1, -1)); + return sprite; + } + + public static SpriteGroup Mirror(SpriteGroup spriteGroup) + { + spriteGroup.Scale(new Vector2(-1, -1)); + return spriteGroup; + } + + private static TextureSprite MirrorHorizontal(TextureSprite sprite) + { + sprite.Scale(new Vector2(-1, 1)); + return sprite; + } + + private static SpriteGroup MirrorHorizontal(SpriteGroup spriteGroup) + { + spriteGroup.Scale(new Vector2(-1, 1)); + return spriteGroup; + } + + private static TextureSprite MirrorVertical(TextureSprite sprite) + { + sprite.Scale(new Vector2(1, -1)); + return sprite; + } + + private static SpriteGroup MirrorVertical(SpriteGroup spriteGroup) + { + spriteGroup.Scale(new Vector2(1, -1)); + return spriteGroup; + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/.gitignore b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/.gitignore new file mode 100644 index 0000000..5fb0452 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/.gitignore @@ -0,0 +1 @@ +mdk.local.ini \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/README.md b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/README.md new file mode 100644 index 0000000..bd75d6d --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/README.md @@ -0,0 +1,9 @@ +# Getting Started + +Before doing anything: +- Add a reference to the script project you want to test. +- Make sure your Program class is `public`. + +This test project will neither compile nor run properly if you don't do this. + +Take a look in Tests/InstancingTests.cs for some simple examples of how to write tests. \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj new file mode 100644 index 0000000..1bd41b5 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj @@ -0,0 +1,23 @@ + + + net48 + true + Release;Debug + x64 + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/TestUtilities/ProgramBuilder.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/TestUtilities/ProgramBuilder.cs new file mode 100644 index 0000000..ef082fa --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/TestUtilities/ProgramBuilder.cs @@ -0,0 +1,171 @@ +using System; +using System.Runtime.Serialization; +using FakeItEasy; +using Sandbox.ModAPI.Ingame; + +namespace SpriteCompositor.Test.TestUtilities +{ + /// + /// Provides utility methods for setting up and testing Space Engineers' programmable block scripts. + /// + public static class Gateway + { + /// + /// Sets the storage value for a given program instance. + /// + /// A type that implements . + /// The program instance. + /// The storage string to set. + public static void SetStorage(this T program, string storage) + where T : Sandbox.ModAPI.IMyGridProgram + { + program.Storage = storage; + } + + /// + /// Creates a new to construct an instance of a Space Engineers script. + /// + /// The script type, which must inherit from . + /// A instance for configuring and constructing the script. + /// + /// This method utilizes the builder pattern to allow gradual configuration of the script before instantiation. + /// The builder ensures all necessary dependencies are set up for proper execution in a test environment. + /// + /// + /// The following example demonstrates how to create an instance of a script with specific dependencies: + /// + /// var program = Gateway.CreateProgram<MyScript>() + /// .WithGridTerminalSystem(myGridSystem) + /// .WithRuntime(myRuntime) + /// .WithEcho(Console.WriteLine) + /// .Build(); + /// + /// + public static ProgramBuilder CreateProgram() + where T : MyGridProgram, new() + { + return new ProgramBuilder(null, null, null, null, null, null); + } + + /// + /// A builder for constructing instances of Space Engineers scripts with specific dependencies. + /// + /// The script type, which must inherit from . + /// + /// The builder pattern is used to allow flexible configuration of dependencies before final instantiation. + /// Each method (e.g., , ) returns a new builder instance + /// with the specified dependency, ensuring immutability. + /// + /// The `Build` method finalizes the construction, initializing the script with the provided dependencies. + /// + public readonly struct ProgramBuilder where T : MyGridProgram, new() + { + /// + /// Builds the final instance of the script with the configured dependencies. + /// + /// An initialized instance of type . + /// Thrown if the script type or instance fails to be created. + public T Build() + { + // Create an uninitialized instance (bypasses constructor) + var program = FormatterServices.GetUninitializedObject(typeof(T)); + + // Ensure a parameterless constructor exists + var constructor = typeof(T).GetConstructor(Type.EmptyTypes); + if (constructor == null) + throw new InvalidOperationException("No parameterless constructor found."); + + if (!(program is Sandbox.ModAPI.IMyGridProgram backend)) + throw new InvalidOperationException("No IMyGridProgram interface found."); + + // Assign dependencies + backend.Runtime = GetRuntime(); + backend.Echo = GetEcho(); + backend.Me = GetMe(); + backend.Storage = GetStorage(); + backend.GridTerminalSystem = GetGridTerminalSystem(); + backend.IGC_ContextGetter = GetIgcContextGetter(); + + // Run constructor + constructor.Invoke(program, null); + return (T)program; + } + + private readonly IMyIntergridCommunicationSystem _igc; + private readonly IMyGridTerminalSystem _gridTerminalSystem; + private readonly IMyGridProgramRuntimeInfo _runtime; + private readonly IMyProgrammableBlock _me; + private readonly Action _echo; + private readonly string _storage; + + /// + /// Initializes a new builder instance with optional dependencies. + /// + public ProgramBuilder(IMyIntergridCommunicationSystem igc, IMyGridTerminalSystem gridTerminalSystem, + IMyGridProgramRuntimeInfo runtime, IMyProgrammableBlock me, Action echo, string storage) + { + _igc = igc; + _gridTerminalSystem = gridTerminalSystem; + _runtime = runtime; + _me = me; + _echo = echo; + _storage = storage; + } + + /// + /// Specifies a custom Inter-Grid Communication (IGC) system. + /// + public ProgramBuilder WithIgc(IMyIntergridCommunicationSystem igc) => + new ProgramBuilder(igc, _gridTerminalSystem, _runtime, _me, _echo, _storage); + + /// + /// Specifies a custom Grid Terminal System. + /// + public ProgramBuilder WithGridTerminalSystem(IMyGridTerminalSystem gridTerminalSystem) => + new ProgramBuilder(_igc, gridTerminalSystem, _runtime, _me, _echo, _storage); + + /// + /// Specifies a custom runtime environment. + /// + public ProgramBuilder WithRuntime(IMyGridProgramRuntimeInfo runtime) => + new ProgramBuilder(_igc, _gridTerminalSystem, runtime, _me, _echo, _storage); + + /// + /// Specifies a custom programmable block reference. + /// + public ProgramBuilder WithMe(IMyProgrammableBlock me) => + new ProgramBuilder(_igc, _gridTerminalSystem, _runtime, me, _echo, _storage); + + /// + /// Specifies a custom echo function. + /// + public ProgramBuilder WithEcho(Action echo) => + new ProgramBuilder(_igc, _gridTerminalSystem, _runtime, _me, echo, _storage); + + /// + /// Specifies custom storage data. + /// + public ProgramBuilder WithStorage(string storage) => + new ProgramBuilder(_igc, _gridTerminalSystem, _runtime, _me, _echo, storage); + + private Func GetIgcContextGetter() + { + var igc = _igc ?? A.Fake(o => o.Strict()); + return () => igc; + } + + private IMyGridTerminalSystem GetGridTerminalSystem() => + _gridTerminalSystem ?? A.Fake(o => o.Strict()); + + private string GetStorage() => _storage ?? string.Empty; + + private IMyProgrammableBlock GetMe() => + _me ?? A.Fake(o => o.Strict()); + + private Action GetEcho() => _echo ?? Console.WriteLine; + + private IMyGridProgramRuntimeInfo GetRuntime() => + _runtime ?? A.Fake(o => o.Strict()); + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs new file mode 100644 index 0000000..d7e0fb3 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs @@ -0,0 +1,77 @@ +using FakeItEasy; +using IngameScript; +using NUnit.Framework; +using SpriteCompositor.Test.TestUtilities; +using Sandbox.ModAPI.Ingame; + +namespace SpriteCompositor.Test.Tests +{ + /// + /// Sample tests for the class. + /// + /// + /// You will need to add a reference to your Space Engineers script project before these tests will pass. You should + /// also make sure your Program class is public. + /// + [TestFixture] + public class InstancingTests + { + /// + /// Happy-case test for creating a new program instance. + /// + /// + /// Demonstrates the most basic way to create a new program instance. + /// You cannot simply instantiate the program class directly, as it inherits from + /// and requires specific dependencies to be set up, and a specific way to be instantiated. + /// + [Test] + public void NewProgram_WhenCalled_ShouldNotThrow() + { + // Act + var program = Gateway.CreateProgram() + .Build(); + + // Assert + Assert.That(program, Is.Not.Null); + } + + /// + /// An example test showing how to swap out the default Echo method with a custom one. + /// + [Test] + public void NewProgram_WithCustomEcho_RunsCustomEcho() + { + // Arrange + string echoMessage = null; + var program = Gateway.CreateProgram() + .WithEcho(message => echoMessage = message) + .Build(); + + // Act + program.Echo("Hello, World!"); + + // Assert + Assert.That(echoMessage, Is.EqualTo("Hello, World!")); + } + + /// + /// An example test showing how to set the storage value for a program instance. + /// + [Test] + public void NewProgram_WithCustomPbFake_HasMeInstance() + { + // Arrange + var me = A.Fake(); + A.CallTo(() => me.IsRunning).Returns(true); + A.CallTo(() => me.CustomName).Returns("Test PB"); + + // Act + var program = Gateway.CreateProgram() + .WithMe(me) + .Build(); + + // Assert + Assert.That(program.Me.IsRunning, Is.True); + } + } +} \ No newline at end of file From 88621b9ee1495ee6ccf50302bd050a4ecbdca85c Mon Sep 17 00:00:00 2001 From: Lelebees Date: Sat, 28 Mar 2026 17:23:37 +0100 Subject: [PATCH 13/28] Also the part where we dont include folders as namespaces --- ...elebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings new file mode 100644 index 0000000..31ff512 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings @@ -0,0 +1,4 @@ + + True + True + True \ No newline at end of file From 47226fec6ca12afab2e3d6e5f45a245afb981bc0 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Mon, 13 Apr 2026 12:19:01 +0200 Subject: [PATCH 14/28] start tests --- .../src/angle/Angle.cs | 12 +-- .../src/sprite/ClippingSprite.cs | 19 ----- .../src/sprite/Sprite.cs | 4 +- .../src/sprite/SpriteGroup.cs | 12 +-- .../src/sprite/SpriteLeaf.cs | 16 +++- .../src/sprite/TextSprite.cs | 19 ----- .../src/sprite/TextureSprite.cs | 16 +--- .../src/util/Sprites.cs | 26 +++---- .../SpriteCompositor.Test.csproj | 4 +- .../SpriteCompositor.Test/Tests/AngleTest.cs | 23 ++++++ .../Tests/InstancingTests.cs | 77 ------------------- 11 files changed, 66 insertions(+), 162 deletions(-) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/AngleTest.cs delete mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index 02a2cba..8313771 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -7,16 +7,16 @@ namespace IngameScript /// public struct Angle { - public static Angle Right = FromRadians(0.5 * Math.PI); - public static Angle Straight = FromRadians(Math.PI); - public static Angle Full = FromRadians(2 * Math.PI); + public static readonly Angle Right = new Angle(0.5 * Math.PI); + public static readonly Angle Straight = new Angle(Math.PI); + public static readonly Angle Full = new Angle(2 * Math.PI); private readonly double radians; private Angle(double radians) { // Normalize the angle to be within a single rotation - if (radians >= 2 * Math.PI || radians <= -2 * Math.PI) + if (radians > 2 * Math.PI || radians < -2 * Math.PI) { radians %= 2 * Math.PI; } @@ -49,7 +49,7 @@ public static Angle FromRadians(double radians) public static Angle operator +(Angle angle) => angle; public static Angle operator -(Angle left, Angle right) => new Angle(left.radians - right.radians); - + public static Angle operator -(Angle angle) => new Angle(-angle.radians); public static Angle operator /(Angle nominator, double divisor) => new Angle(nominator.radians / divisor); @@ -57,7 +57,9 @@ public static Angle FromRadians(double radians) public static Angle operator *(Angle left, double right) => new Angle(left.radians * right); public static bool operator <(Angle left, Angle right) => left.radians < right.radians; + public static bool operator <=(Angle left, Angle right) => left.radians <= right.radians; public static bool operator >(Angle left, Angle right) => left.radians > right.radians; + public static bool operator >=(Angle left, Angle right) => left.radians >= right.radians; } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs index 36d7991..c53b5b2 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs @@ -41,25 +41,6 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) Sprite.Position = anchorPos + distanceFromAnchor; } - public override void Rotate(Angle angle, Anchor anchor) - { - if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) - { - return; - } - - var cos = Math.Cos(-angle.AsRadians()); - var sin = Math.Sin(-angle.AsRadians()); - - var anchorX = anchor.GetPosition().X; - var anchorY = anchor.GetPosition().Y; - - var position = Sprite.Position ?? Vector2.Zero; - position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); - position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); - Sprite.Position = position; - } - public override Sprite Clone() { return new ClippingSprite(Sprite); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index eadd76d..b9bb52d 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -34,8 +34,8 @@ public interface Sprite : Anchor /// Rotates a sprite in clockwise direction around the given anchor /// /// The angle of rotation - /// The point in space to rotate around, if no anchor is given, the center of this sprite is used - void Rotate(Angle angle, Anchor anchor = null); + /// The point in space to rotate around, if no anchor is given, the center of this sprite is used + void Rotate(Angle angle, Anchor positionAnchor = null); /// /// Creates a copy of the sprite that can be modified separately. diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index abd1879..84d6590 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -64,21 +64,21 @@ public void Scale(Vector2 scalar, Anchor anchor = null) children.ForEach(sprite => sprite.Scale(scalar, anchor)); } - public void Rotate(Angle angle, Anchor anchor = null) + public void Rotate(Angle angle, Anchor positionAnchor = null) { // it is VITALLY important to create a PointAnchor here. If we don't, // the process of rotating sprites will adjust this groups center, and therefore it's position // this causes sprites to spiral away from the center of rotation. - if (anchor == null) + if (positionAnchor == null) { - anchor = new PointAnchor(GetPosition()); + positionAnchor = new PointAnchor(GetPosition()); } // Safeguard if someone passes this group or a subgroup of this group as an anchor. - else if (anchor is SpriteGroup) + else if (positionAnchor is SpriteGroup) { - anchor = new PointAnchor(anchor.GetPosition()); + positionAnchor = new PointAnchor(positionAnchor.GetPosition()); } - children.ForEach(sprite => sprite.Rotate(angle, anchor)); + children.ForEach(sprite => sprite.Rotate(angle, positionAnchor)); } public Sprite Clone() diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 0080393..f9cd9c5 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -1,3 +1,4 @@ +using System; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -49,7 +50,20 @@ public void SetAlignment(TextAlignment alignment) public abstract void Scale(float scalar, Anchor anchor = null); public abstract void Scale(Vector2 scalar, Anchor anchor = null); - public abstract void Rotate(Angle angle, Anchor anchor = null); + public virtual void Rotate(Angle angle, Anchor positionAnchor = null) + { + if (positionAnchor == null || positionAnchor == this || positionAnchor.GetPosition() == GetPosition()) return; + + var cos = Math.Cos(-angle.AsRadians()); + var sin = Math.Sin(-angle.AsRadians()); + + var anchor = positionAnchor.GetPosition(); + + var position = Sprite.Position ?? Vector2.Zero; + var posX = (float)( cos * (position.X - anchor.X) + sin * (position.Y - anchor.Y) + anchor.X); + var posY = (float)(-sin * (position.X - anchor.X) + cos * (position.Y - anchor.Y) + anchor.Y); + Sprite.Position = new Vector2(posX, posY); + } public abstract Sprite Clone(); public MySprite[] AsDrawableCollection(RectangleF viewport) { diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs index 2aa8b28..25c9e54 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs @@ -50,25 +50,6 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) Sprite.Position = anchorPos + distanceFromAnchor; } - public override void Rotate(Angle angle, Anchor anchor = null) - { - if (anchor == null || anchor == this) - { - return; - } - - var cos = Math.Cos(-angle.AsRadians()); - var sin = Math.Sin(-angle.AsRadians()); - - var anchorX = anchor.GetPosition().X; - var anchorY = anchor.GetPosition().Y; - - var position = Sprite.Position ?? Vector2.Zero; - position.X = (float)(cos * (position.X - anchorX) + (position.Y + anchorY) * sin + anchorX); - position.Y = (float)(-1 * sin * (position.X - anchorX) + cos * (position.Y - anchorY) + anchorY); - Sprite.Position = position; - } - public override Sprite Clone() { return new TextSprite(Sprite); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs index 5b0977f..cadd701 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs @@ -1,4 +1,3 @@ -using System; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -47,21 +46,10 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) Sprite.Position = anchorPos + distanceFromAnchor; } - public override void Rotate(Angle angle, Anchor anchor = null) + public override void Rotate(Angle angle, Anchor positionAnchor = null) { Sprite.RotationOrScale += (float)angle.AsRadians(); - - if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) return; - - var cos = Math.Cos(-angle.AsRadians()); - var sin = Math.Sin(-angle.AsRadians()); - - var anchorPos = anchor.GetPosition(); - - var position = Sprite.Position ?? Vector2.Zero; - var posX = (float)( cos * (position.X - anchorPos.X) + sin * (position.Y - anchorPos.Y) + anchorPos.X); - var posY = (float)(-sin * (position.X - anchorPos.X) + cos * (position.Y - anchorPos.Y) + anchorPos.Y); - Sprite.Position = new Vector2(posX, posY); + base.Rotate(angle, positionAnchor); } public override Sprite Clone() diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs index 8c9c287..015bb13 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using VRageMath; @@ -7,35 +6,30 @@ namespace IngameScript public abstract class Sprites { /// - /// Clones a sprite timesToRepeat times, places them in a circle and divides the space between sprites evenly. + /// Clones a sprite a given number of times, places them in a circle and divides the space between sprites evenly. /// /// The sprite to clone - /// Number of instances of the sprite there need to be + /// Number of instances of the sprite there need to be /// The center of rotation /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) - public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepeat, Anchor rotationAnchor) - { - Angle stepSize = Angle.FromRadians(2 * Math.PI / timesToRepeat); - return RepeatRotated(spriteToRepeat, timesToRepeat, rotationAnchor, stepSize); - } + public static List RepeatRotated(Sprite spriteToRepeat, int repetitions, Anchor rotationAnchor) => + RepeatRotated(spriteToRepeat, repetitions, rotationAnchor, Angle.Full / repetitions); /// - /// Clones a sprite timesToRepeat times, rotating each clone at an angle of stepSize compared to the previous clone. + /// Clones a sprite a given number of times, rotating each clone with the given angle compared to the previous clone. /// /// The sprite to clone - /// Number of instances of the sprite there need to be + /// Number of instances of the sprite there need to be /// The center of rotation /// The angle to rotate each clone compared to the previous one /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) - public static List RepeatRotated(Sprite spriteToRepeat, int timesToRepeat, Anchor rotationAnchor, - Angle stepSize) + public static List RepeatRotated(Sprite spriteToRepeat, int repetitions, Anchor rotationAnchor, Angle stepSize) { - List resultingSprites = new List(timesToRepeat) { spriteToRepeat }; - for (var i = 1; i < timesToRepeat; i++) + List resultingSprites = new List(repetitions) { spriteToRepeat }; + for (var i = 1; i < repetitions; i++) { - var newAngle = Angle.FromRadians(stepSize.AsRadians() * i); var newSprite = spriteToRepeat.Clone(); - newSprite.Rotate(newAngle, rotationAnchor); + newSprite.Rotate(Angle.FromRadians(stepSize.AsRadians() * i), rotationAnchor); resultingSprites.Add(newSprite); } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj index 1bd41b5..b0862b7 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/SpriteCompositor.Test.csproj @@ -17,7 +17,5 @@ - - - + \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/AngleTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/AngleTest.cs new file mode 100644 index 0000000..cf2904d --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/AngleTest.cs @@ -0,0 +1,23 @@ +using System; +using IngameScript; +using NUnit.Framework; + +namespace SpriteCompositor.Test.Tests +{ + [TestFixture] + public class AngleTest + { + private const double Precision = 0.000000000000000000000000001; + + [TestCase(360, 2 * Math.PI)] + [TestCase(90, 0.5 * Math.PI)] + [TestCase(180, Math.PI)] + [TestCase(270, 1.5 * Math.PI)] + [TestCase(1800, 0)] + [TestCase(0, 0)] + public void DegreesConvertProperly(double degrees, double radians) + { + Assert.That(Angle.FromDegrees(degrees).AsRadians(), Is.InRange(radians - Precision, radians + Precision)); + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs deleted file mode 100644 index d7e0fb3..0000000 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/InstancingTests.cs +++ /dev/null @@ -1,77 +0,0 @@ -using FakeItEasy; -using IngameScript; -using NUnit.Framework; -using SpriteCompositor.Test.TestUtilities; -using Sandbox.ModAPI.Ingame; - -namespace SpriteCompositor.Test.Tests -{ - /// - /// Sample tests for the class. - /// - /// - /// You will need to add a reference to your Space Engineers script project before these tests will pass. You should - /// also make sure your Program class is public. - /// - [TestFixture] - public class InstancingTests - { - /// - /// Happy-case test for creating a new program instance. - /// - /// - /// Demonstrates the most basic way to create a new program instance. - /// You cannot simply instantiate the program class directly, as it inherits from - /// and requires specific dependencies to be set up, and a specific way to be instantiated. - /// - [Test] - public void NewProgram_WhenCalled_ShouldNotThrow() - { - // Act - var program = Gateway.CreateProgram() - .Build(); - - // Assert - Assert.That(program, Is.Not.Null); - } - - /// - /// An example test showing how to swap out the default Echo method with a custom one. - /// - [Test] - public void NewProgram_WithCustomEcho_RunsCustomEcho() - { - // Arrange - string echoMessage = null; - var program = Gateway.CreateProgram() - .WithEcho(message => echoMessage = message) - .Build(); - - // Act - program.Echo("Hello, World!"); - - // Assert - Assert.That(echoMessage, Is.EqualTo("Hello, World!")); - } - - /// - /// An example test showing how to set the storage value for a program instance. - /// - [Test] - public void NewProgram_WithCustomPbFake_HasMeInstance() - { - // Arrange - var me = A.Fake(); - A.CallTo(() => me.IsRunning).Returns(true); - A.CallTo(() => me.CustomName).Returns("Test PB"); - - // Act - var program = Gateway.CreateProgram() - .WithMe(me) - .Build(); - - // Assert - Assert.That(program.Me.IsRunning, Is.True); - } - } -} \ No newline at end of file From a1ed7fd689570776116f8fb7761c0ce7dba14716 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Tue, 14 Apr 2026 01:29:31 +0200 Subject: [PATCH 15/28] Moar Tests, Moar Sugar --- ....MdkScriptMixin.SpriteCompositor.projitems | 9 +- ...tMixin.SpriteCompositor.shproj.DotSettings | 1 + .../src/sprite/ClippingSprite.cs | 49 ----------- .../src/sprite/SpriteLeaf.cs | 54 ++++++------ .../src/{util => sprite}/Sprites.cs | 28 +++++-- .../src/sprite/Textures.cs | 14 ++++ .../src/sprite/atoms/ClippingSprite.cs | 82 +++++++++++++++++++ .../src/sprite/{ => atoms}/TextSprite.cs | 17 +--- .../src/sprite/{ => atoms}/TextureSprite.cs | 15 +--- .../SpriteCompositor.Demo/Program.cs | 29 +++---- .../{Tests => src/angle}/AngleTest.cs | 2 +- .../src/sprite/SpriteLeafTest.cs | 24 ++++++ .../src/sprite/SpritesTest.cs | 25 ++++++ 13 files changed, 219 insertions(+), 130 deletions(-) delete mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs rename libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/{util => sprite}/Sprites.cs (71%) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs rename libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/{ => atoms}/TextSprite.cs (81%) rename libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/{ => atoms}/TextureSprite.cs (86%) rename libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/{Tests => src/angle}/AngleTest.cs (94%) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems index 94fd3e4..d09eb22 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems @@ -17,12 +17,13 @@ - + + + - - - + + diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings index 31ff512..d6ffd1e 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings @@ -1,4 +1,5 @@  True True + True True \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs deleted file mode 100644 index c53b5b2..0000000 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/ClippingSprite.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using VRage.Game.GUI.TextPanel; -using VRageMath; - -namespace IngameScript -{ - public class ClippingSprite : SpriteLeaf - { - private ClippingSprite(MySprite sprite) : base(sprite) - { - } - - public ClippingSprite() : base(new MySprite(type: SpriteType.CLIP_RECT)) - { - } - - public override void Scale(float scalar, Anchor anchor = null) - { - Scale(new Vector2(scalar, scalar), anchor); - } - - public override void Scale(Vector2 scalar, Anchor anchor = null) - { - if (Sprite.Size == null) - { - Sprite.Size = Vector2.One; - } - - var size = Sprite.Size.Value; - size.X *= scalar.X; - size.Y *= scalar.Y; - Sprite.Size = size; - if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) - { - return; - } - - var anchorPos = anchor.GetPosition(); - var distanceFromAnchor = this.GetPosition() - anchorPos; - distanceFromAnchor *= scalar; - Sprite.Position = anchorPos + distanceFromAnchor; - } - - public override Sprite Clone() - { - return new ClippingSprite(Sprite); - } - } -} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index f9cd9c5..69851ff 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -6,7 +6,6 @@ namespace IngameScript { public abstract class SpriteLeaf : Sprite { - protected MySprite Sprite; protected SpriteLeaf(MySprite sprite) @@ -34,7 +33,7 @@ public void Translate(Vector2 vector) public void Translate(float x, float y) { - Translate(new Vector2(x,y)); + Translate(new Vector2(x, y)); } public void SetColor(Color color) @@ -48,11 +47,21 @@ public void SetAlignment(TextAlignment alignment) } public abstract void Scale(float scalar, Anchor anchor = null); - public abstract void Scale(Vector2 scalar, Anchor anchor = null); + + public virtual void Scale(Vector2 scalar, Anchor anchor = null) + { + if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) return; + + var anchorPos = anchor.GetPosition(); + var distanceFromAnchor = this.GetPosition() - anchorPos; + distanceFromAnchor *= scalar; + Sprite.Position = anchorPos + distanceFromAnchor; + } public virtual void Rotate(Angle angle, Anchor positionAnchor = null) { - if (positionAnchor == null || positionAnchor == this || positionAnchor.GetPosition() == GetPosition()) return; + if (positionAnchor == null || positionAnchor == this || + positionAnchor.GetPosition() == GetPosition()) return; var cos = Math.Cos(-angle.AsRadians()); var sin = Math.Sin(-angle.AsRadians()); @@ -60,37 +69,32 @@ public virtual void Rotate(Angle angle, Anchor positionAnchor = null) var anchor = positionAnchor.GetPosition(); var position = Sprite.Position ?? Vector2.Zero; - var posX = (float)( cos * (position.X - anchor.X) + sin * (position.Y - anchor.Y) + anchor.X); + var posX = (float)(cos * (position.X - anchor.X) + sin * (position.Y - anchor.Y) + anchor.X); var posY = (float)(-sin * (position.X - anchor.X) + cos * (position.Y - anchor.Y) + anchor.Y); Sprite.Position = new Vector2(posX, posY); } + public abstract Sprite Clone(); + public MySprite[] AsDrawableCollection(RectangleF viewport) { - var copy = new MySprite( - Sprite.Type, - Sprite.Data, - Sprite.Position + viewport.Center, - Sprite.Size, - Sprite.Color, - Sprite.FontId, - Sprite.Alignment, - Sprite.RotationOrScale); - return new[] { copy }; + return new[] + { + new MySprite( + Sprite.Type, + Sprite.Data, + Sprite.Position + viewport.Center, + Sprite.Size, + Sprite.Color, + Sprite.FontId, + Sprite.Alignment, + Sprite.RotationOrScale) + }; } public MySprite[] AsDrawableCollection() { - var copy = new MySprite( - Sprite.Type, - Sprite.Data, - Sprite.Position, - Sprite.Size, - Sprite.Color, - Sprite.FontId, - Sprite.Alignment, - Sprite.RotationOrScale); - return new[] { copy }; + return new[] { Sprite }; } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs similarity index 71% rename from libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs rename to libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs index 015bb13..e29e95e 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/util/Sprites.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using VRage.Game.GUI.TextPanel; using VRageMath; namespace IngameScript @@ -12,8 +13,8 @@ public abstract class Sprites /// Number of instances of the sprite there need to be /// The center of rotation /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) - public static List RepeatRotated(Sprite spriteToRepeat, int repetitions, Anchor rotationAnchor) => - RepeatRotated(spriteToRepeat, repetitions, rotationAnchor, Angle.Full / repetitions); + public static List RepeatRotated(Sprite spriteToRepeat, uint repetitions, Anchor rotationAnchor = null) => + RepeatRotated(spriteToRepeat, repetitions, Angle.Full / repetitions, rotationAnchor); /// /// Clones a sprite a given number of times, rotating each clone with the given angle compared to the previous clone. @@ -23,13 +24,14 @@ public static List RepeatRotated(Sprite spriteToRepeat, int repetitions, /// The center of rotation /// The angle to rotate each clone compared to the previous one /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) - public static List RepeatRotated(Sprite spriteToRepeat, int repetitions, Anchor rotationAnchor, Angle stepSize) + public static List RepeatRotated(Sprite spriteToRepeat, uint repetitions, Angle stepSize, Anchor rotationAnchor = null) { - List resultingSprites = new List(repetitions) { spriteToRepeat }; - for (var i = 1; i < repetitions; i++) + if (repetitions == 0) return new List(); + List resultingSprites = new List((int) repetitions) { spriteToRepeat }; + for (var steps = 1; steps < repetitions; steps++) { var newSprite = spriteToRepeat.Clone(); - newSprite.Rotate(Angle.FromRadians(stepSize.AsRadians() * i), rotationAnchor); + newSprite.Rotate(stepSize * steps, rotationAnchor); resultingSprites.Add(newSprite); } @@ -71,5 +73,19 @@ private static SpriteGroup MirrorVertical(SpriteGroup spriteGroup) spriteGroup.Scale(new Vector2(1, -1)); return spriteGroup; } + public static TextureSprite.TextureSpriteBuilder WithTexture(string texture) + { + return new TextureSprite.TextureSpriteBuilder().Texture(texture); + } + + public static TextSprite.TextSpriteBuilder WithText(string text) + { + return new TextSprite.TextSpriteBuilder().Text(text); + } + + public static ClippingSprite.ClippingSpriteBuilder ClipRectangle() + { + return new ClippingSprite.ClippingSpriteBuilder(); + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs new file mode 100644 index 0000000..3c5a48f --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs @@ -0,0 +1,14 @@ +namespace IngameScript +{ + public abstract class Textures + { + public const string Circle = "Circle"; + public const string CircleHollow = "CircleHollow"; + public const string RightTriangle = "RightTriangle"; + public const string SemiCircle = "SemiCircle"; + public const string SquareHollow = "SquareHollow"; + public const string SquareSimple = "SquareSimple"; + public const string SquareTapered = "SquareTapered"; + public const string Triangle = "Triangle"; + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs new file mode 100644 index 0000000..eaffc0e --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs @@ -0,0 +1,82 @@ +using System; +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace IngameScript +{ + public class ClippingSprite : SpriteLeaf + { + private ClippingSprite(MySprite sprite) : base(sprite) + { + } + + public ClippingSprite() : base(new MySprite(type: SpriteType.CLIP_RECT)) + { + } + + public override void Scale(float scalar, Anchor anchor = null) + { + Scale(new Vector2(scalar, scalar), anchor); + } + + public override void Scale(Vector2 scalar, Anchor anchor = null) + { + if (Sprite.Size == null) Sprite.Size = Vector2.One; + + var size = Sprite.Size.Value; + size.X *= scalar.X; + size.Y *= scalar.Y; + Sprite.Size = size; + base.Scale(scalar, anchor); + } + + public override Sprite Clone() + { + return new ClippingSprite(Sprite); + } + + public class ClippingSpriteBuilder + { + private MySprite sprite = new MySprite(type: SpriteType.CLIP_RECT); + + public ClippingSpriteBuilder Position(float x, float y) + { + return Position(new Vector2(x, y)); + } + + public ClippingSpriteBuilder Position(Vector2 position) + { + sprite.Position = position; + return this; + } + + public ClippingSpriteBuilder Rotation(Angle rotation) + { + sprite.RotationOrScale = (float) rotation.AsRadians(); + return this; + } + + public ClippingSpriteBuilder Size(float width, float height) + { + return Size(new Vector2(width, height)); + } + + public ClippingSpriteBuilder Size(Vector2 size) + { + sprite.Size = size; + return this; + } + + public ClippingSpriteBuilder Alignment(TextAlignment alignment) + { + sprite.Alignment = alignment; + return this; + } + + public ClippingSprite Build() + { + return new ClippingSprite(sprite); + } + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs similarity index 81% rename from libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs rename to libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs index 25c9e54..1a61160 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs @@ -38,16 +38,8 @@ public override void Scale(float scalar, Anchor anchor = null) public override void Scale(Vector2 scalar, Anchor anchor = null) { // Text sprites don't really scale in 2 dimensions, so instead we'll take the average scale - Sprite.RotationOrScale = (scalar.X + scalar.Y) / 2; - if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) - { - return; - } - - var anchorPos = anchor.GetPosition(); - var distanceFromAnchor = this.GetPosition() - anchorPos; - distanceFromAnchor *= scalar; - Sprite.Position = anchorPos + distanceFromAnchor; + Sprite.RotationOrScale *= (scalar.X + scalar.Y) / 2; + base.Scale(scalar, anchor); } public override Sprite Clone() @@ -105,10 +97,5 @@ public TextSprite Build() return new TextSprite(sprite); } } - - public static TextSpriteBuilder Builder() - { - return new TextSpriteBuilder(); - } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs similarity index 86% rename from libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs rename to libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs index cadd701..c9b0498 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs @@ -35,15 +35,7 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) size.X *= scalar.X; size.Y *= scalar.Y; Sprite.Size = size; - if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) - { - return; - } - - var anchorPos = anchor.GetPosition(); - var distanceFromAnchor = this.GetPosition() - anchorPos; - distanceFromAnchor *= scalar; - Sprite.Position = anchorPos + distanceFromAnchor; + base.Scale(scalar, anchor); } public override void Rotate(Angle angle, Anchor positionAnchor = null) @@ -62,11 +54,6 @@ public void SetSize(Vector2 size) Sprite.Size = size; } - public static TextureSpriteBuilder Builder() - { - return new TextureSpriteBuilder(); - } - public class TextureSpriteBuilder { private MySprite sprite = new MySprite(type: SpriteType.TEXTURE); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index f4f4437..55603f5 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -38,18 +38,16 @@ public Program() surface.SurfaceSize ); - // Strictly speaking this should be an Update100, but for testing and/or animation purposes it's nice to use Update10. + // Strictly speaking we should be using Update100, but for testing and/or animation purposes it's nicer to use Update10. Runtime.UpdateFrequency = UpdateFrequency.Update10; - - var sunRayMiddle = TextureSprite.Builder() - .Texture("SquareSimple") + // You can create basic sprites using the Sprites class. The Textures class contains texture name constants for basic shapes, for your writing convenience. + var sunRayMiddle = Sprites.WithTexture(Textures.SquareSimple) .Size(20, 5) .Build(); - var sunRayCapRight = TextureSprite.Builder() - .Texture("SemiCircle") + var sunRayCapRight = Sprites.WithTexture(Textures.SemiCircle) .Size(5, 20) // Rotations are performed using the Angle struct. Here we're using a predefined right angle (90 degrees, or 0.5 * PI) - // You'll see how to create any arbitrary angle a little later in this demo. + // You'll see how to create an arbitrary angle a little later in this demo. .Rotation(Angle.Right) .Position(9, 0) .Build(); @@ -58,26 +56,26 @@ public Program() // We're using the middle part of the sun ray as an anchor point for the rotation, // this allows us to flip the copied end to the left of the ray, without having to calculate how far it needs to go! sunRayCapLeft.Rotate(Angle.Straight, sunRayMiddle); + // Alternatively, if we don't want to rotate, we can also scale the sprite by (-1,1) relative to the same anchor point. + // You'll see a Sprite.Scale() invocation later in this demo. // It's possible to group sprites and treat them as if they were one. var sunRay = new SpriteGroup(sunRayCapLeft, sunRayMiddle, sunRayCapRight); sunRay.Translate(50, 0); - var sunBody = TextureSprite.Builder() - .Texture("Circle") + TextureSprite sunBody = Sprites.WithTexture(Textures.Circle) .Size(50, 50) .Build(); - // Since we don't feel like repeating the above steps for every sun ray, you can easily clone sprites in a circle! + // Since I don't feel like repeating the above steps for every sun ray, you can easily clone sprites in a circle! var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody); // You can create, adjust and add sprites after a group has been made by inserting a list of the group's sprites and adding to it later - allRays.Add(sunBody); sunSprite = new SpriteGroup(allRays); + allRays.Add(sunBody); sunSprite.SetColor(Color.Yellow); - var praiseText = TextSprite.Builder() - .Text("Praise") + var praiseText = Sprites.WithText("Praise") .FontId("White") .Position(0, -150) .Scale(2f) @@ -85,8 +83,7 @@ public Program() // Text can also be rotated around an anchor point, but beware! SE does not support rotating the text itself. This will therefore not create slanted text! praiseText.Rotate(Angle.FromDegrees(-35), sunSprite); - var theSunText = TextSprite.Builder() - .Text("the sun") + var theSunText = Sprites.WithText("the sun") .FontId("White") .Position(0, 125) .Build(); @@ -105,7 +102,7 @@ public void Main(string argument, UpdateType updateSource) { textGroup.SetColor(surface.ScriptForegroundColor); var frame = surface.DrawFrame(); - // To simplify use, the Sprite(s) move so that 0,0 is the center of the viewport. + // To simplify use, you can move the Sprite(s) so that 0,0 is the center of the viewport. frame.AddRange(sunSprite.AsDrawableCollection(viewport)); frame.AddRange(textGroup.AsDrawableCollection(viewport)); frame.Dispose(); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/AngleTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs similarity index 94% rename from libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/AngleTest.cs rename to libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs index cf2904d..38e9634 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/Tests/AngleTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs @@ -2,7 +2,7 @@ using IngameScript; using NUnit.Framework; -namespace SpriteCompositor.Test.Tests +namespace SpriteCompositor.Test.angle { [TestFixture] public class AngleTest diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs new file mode 100644 index 0000000..41c619d --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs @@ -0,0 +1,24 @@ +using IngameScript; +using NUnit.Framework; +using VRage.Game.GUI.TextPanel; +using VRageMath; + +namespace SpriteCompositor.Test.sprite +{ + [TestFixture] + public class SpriteLeafTest + { + [Test] + public void RenderableDoesNotPropagateChanges() + { + var sprite = Sprites.WithTexture("SquareSimple").Build(); + var mySprite = sprite.AsDrawableCollection()[0]; + mySprite.Alignment = TextAlignment.RIGHT; + mySprite.Color = Color.Red; + mySprite.Data = "Circle"; + mySprite.RotationOrScale = 99f; + var newDrawable = sprite.AsDrawableCollection()[0]; + Assert.That(newDrawable, Is.Not.EqualTo(mySprite)); + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs new file mode 100644 index 0000000..e4c1a93 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs @@ -0,0 +1,25 @@ +using IngameScript; +using NUnit.Framework; + +namespace SpriteCompositor.Test.util +{ + [TestFixture] + public class SpritesTest + { + [TestCase((uint) 10)] + [TestCase((uint) 1)] + [TestCase((uint) 0)] + public void SpritesRepeatCorrectAmountOfTimes(uint repetitions) + { + Assert.That(Sprites.RepeatRotated(Sprites.WithTexture("SquareSimple").Build(), repetitions).Count, Is.EqualTo((int) repetitions)); + } + + [TestCase((uint) 10)] + [TestCase((uint) 1)] + [TestCase((uint) 0)] + public void SpritesWithRotationRepeatCorrectAmountOfTimes(uint repetitions) + { + Assert.That(Sprites.RepeatRotated(Sprites.WithTexture("SquareSimple").Build(), repetitions, Angle.Right).Count, Is.EqualTo((int) repetitions)); + } + } +} \ No newline at end of file From ee4224a6a803899a1a5ee635739c98aaf1e14c67 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Tue, 14 Apr 2026 23:29:50 +0200 Subject: [PATCH 16/28] Undo scaling changes for textsprite --- .../src/sprite/SpriteLeaf.cs | 2 +- .../src/sprite/atoms/TextSprite.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 69851ff..8e8d4fa 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -53,7 +53,7 @@ public virtual void Scale(Vector2 scalar, Anchor anchor = null) if (anchor == null || anchor == this || anchor.GetPosition() == GetPosition()) return; var anchorPos = anchor.GetPosition(); - var distanceFromAnchor = this.GetPosition() - anchorPos; + var distanceFromAnchor = GetPosition() - anchorPos; distanceFromAnchor *= scalar; Sprite.Position = anchorPos + distanceFromAnchor; } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs index 1a61160..cfb8cba 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs @@ -38,7 +38,7 @@ public override void Scale(float scalar, Anchor anchor = null) public override void Scale(Vector2 scalar, Anchor anchor = null) { // Text sprites don't really scale in 2 dimensions, so instead we'll take the average scale - Sprite.RotationOrScale *= (scalar.X + scalar.Y) / 2; + Sprite.RotationOrScale = (scalar.X + scalar.Y) / 2; base.Scale(scalar, anchor); } From 64565603165c3fe8d23f1bfced4932a3f2e4f548 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 15 Apr 2026 00:28:53 +0200 Subject: [PATCH 17/28] Start using properties instead of methods for everything --- .../src/sprite/SpriteLeaf.cs | 6 +++ .../src/sprite/atoms/TextureSprite.cs | 33 +++++++++------ .../src/sprite/atoms/TextureSpriteTest.cs | 42 +++++++++++++++++++ 3 files changed, 69 insertions(+), 12 deletions(-) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 8e8d4fa..a7f67ae 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -8,6 +8,12 @@ public abstract class SpriteLeaf : Sprite { protected MySprite Sprite; + public Vector2? Position + { + get { return Sprite.Position; } + set { Sprite.Position = value; } + } + protected SpriteLeaf(MySprite sprite) { Sprite = sprite; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs index c9b0498..39aa0ce 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs @@ -5,18 +5,32 @@ namespace IngameScript { public class TextureSprite : SpriteLeaf { - public TextureSprite(string texturePath = null) : base(new MySprite(type: SpriteType.TEXTURE, - position: Vector2.Zero, rotation: 0, data: texturePath)) + public float Rotation { + get { return Sprite.RotationOrScale; } + set { Sprite.RotationOrScale = value; } } - private TextureSprite(MySprite sprite) : base(sprite) + public Vector2? Size + { + get { return Sprite.Size; } + set { Sprite.Size = value; } + } + + public string Texture { + get { return Sprite.Data; } + set { Sprite.Data = value; } } - public void SetTexture(string texturePath) + + // public TextureSprite(string texturePath = null) : base(new MySprite(type: SpriteType.TEXTURE, + // position: Vector2.Zero, rotation: 0, data: texturePath)) + // { + // } + + private TextureSprite(MySprite sprite) : base(sprite) { - Sprite.Data = texturePath; } public override void Scale(float scalar, Anchor anchor = null) @@ -49,11 +63,6 @@ public override Sprite Clone() return new TextureSprite(Sprite); } - public void SetSize(Vector2 size) - { - Sprite.Size = size; - } - public class TextureSpriteBuilder { private MySprite sprite = new MySprite(type: SpriteType.TEXTURE); @@ -68,7 +77,7 @@ public TextureSpriteBuilder Position(float x, float y) { return Position(new Vector2(x, y)); } - + public TextureSpriteBuilder Position(Vector2 position) { sprite.Position = position; @@ -77,7 +86,7 @@ public TextureSpriteBuilder Position(Vector2 position) public TextureSpriteBuilder Rotation(Angle rotation) { - sprite.RotationOrScale = (float) rotation.AsRadians(); + sprite.RotationOrScale = (float)rotation.AsRadians(); return this; } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs new file mode 100644 index 0000000..511983e --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs @@ -0,0 +1,42 @@ +using System; +using System.Linq; +using IngameScript; +using NUnit.Framework; + +namespace SpriteCompositor.Test.sprite.atoms +{ + [TestFixture] + public class TextureSpriteTest + { + // KSH uses floats for the angles, which is why the precision is so low. + private const double Precision = 0.000001; + + [TestCase(0.5 * Math.PI)] + [TestCase(Math.PI)] + [TestCase(0.25 * Math.PI)] + [TestCase(0.75 * Math.PI)] + [TestCase(1.2 * Math.PI)] + [TestCase(0.23 * Math.PI)] + [TestCase(1.93 * Math.PI)] + [TestCase(43 * Math.PI)] + [TestCase(0)] + [TestCase(-1 * Math.PI)] + [TestCase (-1)] + [TestCase(1)] + [TestCase(1, 69, 420)] + [TestCase(0.25 * Math.PI, 0.75 * Math.PI)] + public void ArbitraryRotationsSetCorrectRotation(params double[] radians) + { + Angle[] angles = radians.Select(Angle.FromRadians).ToArray(); + TextureSprite sprite = Sprites.WithTexture(Textures.SquareSimple).Build(); + foreach (var angle in angles) + { + sprite.Rotate(angle); + } + // Note here (and this is not obvious) that unlike the angle struct, a sprite's rotation value will grow indefinitely + // This means that values above and below 2 * Math.PI are possible. The test keeps this in mind. + var totalAngle = angles.Sum(angle => angle.AsRadians()); + Assert.That(sprite.Rotation, Is.InRange( totalAngle - Precision, totalAngle + Precision)); + } + } +} \ No newline at end of file From ab68bfb96de1a3a3805c377fa7b589c3afcea390 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Thu, 16 Apr 2026 13:49:33 +0200 Subject: [PATCH 18/28] Fixed Text being stupid - Changed TextSprites to scale like other sprites (instead of setting the scale to whatever was entered) - You can now set the scale of a TextSprite through the property accessor - Changed SpriteGroup to be a generic abstract class --- ....MdkScriptMixin.SpriteCompositor.projitems | 3 +- ...tMixin.SpriteCompositor.shproj.DotSettings | 1 + .../src/sprite/SpriteGroup.cs | 37 ++++++------------- .../src/sprite/Sprites.cs | 21 ++++++++--- .../src/sprite/atoms/TextSprite.cs | 30 ++++++++------- .../src/sprite/molecules/SimpleSpriteGroup.cs | 25 +++++++++++++ .../SpriteCompositor.Demo/Program.cs | 23 +++++++----- .../src/sprite/SpritesTest.cs | 4 +- .../src/sprite/atoms/TextureSpriteTest.cs | 2 +- 9 files changed, 89 insertions(+), 57 deletions(-) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems index d09eb22..96baad2 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems @@ -20,8 +20,9 @@ - + + diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings index d6ffd1e..a208ba0 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.shproj.DotSettings @@ -2,4 +2,5 @@ True True True + True True \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 84d6590..9d7960d 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -5,28 +5,16 @@ namespace IngameScript { - public class SpriteGroup : Sprite + public abstract class SpriteGroup : Sprite { - private readonly List children; - - public SpriteGroup(List children) - { - this.children = children; - } - - public SpriteGroup(params Sprite[] children) - { - this.children = children.ToList(); - } - public Vector2 GetPosition() { - return children.Aggregate(Vector2.Zero, (current, child) => current + child.GetPosition()) / children.Count; + return GetChildren().Aggregate(Vector2.Zero, (current, child) => current + child.GetPosition()) / GetChildren().Count; } public void Translate(Vector2 vector) { - children.ForEach(sprite => sprite.Translate(vector)); + GetChildren().ForEach(sprite => sprite.Translate(vector)); } public void Translate(float x, float y) @@ -36,12 +24,12 @@ public void Translate(float x, float y) public void SetColor(Color color) { - children.ForEach(sprite => sprite.SetColor(color)); + GetChildren().ForEach(sprite => sprite.SetColor(color)); } public void SetAlignment(TextAlignment alignment) { - children.ForEach(sprite => sprite.SetAlignment(alignment)); + GetChildren().ForEach(sprite => sprite.SetAlignment(alignment)); } public void Scale(float scalar, Anchor anchor = null) @@ -61,7 +49,7 @@ public void Scale(Vector2 scalar, Anchor anchor = null) anchor = new PointAnchor(anchor.GetPosition()); } - children.ForEach(sprite => sprite.Scale(scalar, anchor)); + GetChildren().ForEach(sprite => sprite.Scale(scalar, anchor)); } public void Rotate(Angle angle, Anchor positionAnchor = null) @@ -78,22 +66,21 @@ public void Rotate(Angle angle, Anchor positionAnchor = null) { positionAnchor = new PointAnchor(positionAnchor.GetPosition()); } - children.ForEach(sprite => sprite.Rotate(angle, positionAnchor)); + GetChildren().ForEach(sprite => sprite.Rotate(angle, positionAnchor)); } - public Sprite Clone() - { - return new SpriteGroup(children.Select(sprite => sprite.Clone()).ToList()); - } + public abstract Sprite Clone(); public MySprite[] AsDrawableCollection(RectangleF viewport) { - return children.SelectMany(child => child.AsDrawableCollection(viewport)).ToArray(); + return GetChildren().SelectMany(child => child.AsDrawableCollection(viewport)).ToArray(); } public MySprite[] AsDrawableCollection() { - return children.SelectMany(child => child.AsDrawableCollection()).ToArray(); + return GetChildren().SelectMany(child => child.AsDrawableCollection()).ToArray(); } + + protected abstract List GetChildren(); } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs index e29e95e..b3595e5 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs @@ -1,4 +1,6 @@ +using System; using System.Collections.Generic; +using System.Linq; using VRage.Game.GUI.TextPanel; using VRageMath; @@ -13,7 +15,8 @@ public abstract class Sprites /// Number of instances of the sprite there need to be /// The center of rotation /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) - public static List RepeatRotated(Sprite spriteToRepeat, uint repetitions, Anchor rotationAnchor = null) => + public static Sprite[] + RepeatRotated(Sprite spriteToRepeat, uint repetitions, Anchor rotationAnchor = null) => RepeatRotated(spriteToRepeat, repetitions, Angle.Full / repetitions, rotationAnchor); /// @@ -24,15 +27,17 @@ public static List RepeatRotated(Sprite spriteToRepeat, uint repetitions /// The center of rotation /// The angle to rotate each clone compared to the previous one /// The resulting list of sprites, which includes the original sprite (though no operation has been applied to that sprite) - public static List RepeatRotated(Sprite spriteToRepeat, uint repetitions, Angle stepSize, Anchor rotationAnchor = null) + public static Sprite[] RepeatRotated(Sprite spriteToRepeat, uint repetitions, Angle stepSize, + Anchor rotationAnchor = null) { - if (repetitions == 0) return new List(); - List resultingSprites = new List((int) repetitions) { spriteToRepeat }; + if (repetitions == 0) return Array.Empty(); + Sprite[] resultingSprites = new Sprite[(int)repetitions]; + resultingSprites[0] = spriteToRepeat; for (var steps = 1; steps < repetitions; steps++) { var newSprite = spriteToRepeat.Clone(); newSprite.Rotate(stepSize * steps, rotationAnchor); - resultingSprites.Add(newSprite); + resultingSprites[steps] = newSprite; } return resultingSprites; @@ -73,6 +78,7 @@ private static SpriteGroup MirrorVertical(SpriteGroup spriteGroup) spriteGroup.Scale(new Vector2(1, -1)); return spriteGroup; } + public static TextureSprite.TextureSpriteBuilder WithTexture(string texture) { return new TextureSprite.TextureSpriteBuilder().Texture(texture); @@ -87,5 +93,10 @@ public static ClippingSprite.ClippingSpriteBuilder ClipRectangle() { return new ClippingSprite.ClippingSpriteBuilder(); } + + public static SpriteGroup Group(params Sprite[] sprites) + { + return new SimpleSpriteGroup(sprites.ToList()); + } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs index cfb8cba..5fd43ac 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs @@ -6,39 +6,43 @@ namespace IngameScript { public class TextSprite : SpriteLeaf { - public TextSprite(string text) : base(new MySprite(type: SpriteType.TEXT, data: text)) + public string Text { + get { return Sprite.Data;} + set { Sprite.Data = value; } } - - private TextSprite(MySprite sprite) : base(sprite) + public string FontId { + get { return Sprite.FontId; } + set { Sprite.FontId = value; } } - - public void SetText(string text) + public float TextScale { - Sprite.Data = text; + get { return Sprite.RotationOrScale; } + set { Sprite.RotationOrScale = value; } } - public void SetFontId(string fontId) + public TextAlignment Alignment { - Sprite.FontId = fontId; + get { return Sprite.Alignment; } + set { Sprite.Alignment = value; } } - public void SetScale(float scale) + private TextSprite(MySprite sprite) : base(sprite) { - Sprite.RotationOrScale = scale; } public override void Scale(float scalar, Anchor anchor = null) { - Scale(new Vector2(scalar, scalar), anchor); + Sprite.RotationOrScale *= scalar; + base.Scale(new Vector2(scalar, scalar), anchor); } public override void Scale(Vector2 scalar, Anchor anchor = null) { // Text sprites don't really scale in 2 dimensions, so instead we'll take the average scale - Sprite.RotationOrScale = (scalar.X + scalar.Y) / 2; + Sprite.RotationOrScale *= (scalar.X + scalar.Y) / 2; base.Scale(scalar, anchor); } @@ -49,7 +53,7 @@ public override Sprite Clone() public class TextSpriteBuilder { - private MySprite sprite = new MySprite(type: SpriteType.TEXT); + private MySprite sprite = new MySprite(type: SpriteType.TEXT, rotation: 1f); public TextSpriteBuilder Text(string text) { diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs new file mode 100644 index 0000000..95aab77 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs @@ -0,0 +1,25 @@ +using System.Collections.Generic; +using System.Linq; + +namespace IngameScript +{ + public class SimpleSpriteGroup : SpriteGroup + { + private readonly List children; + + public SimpleSpriteGroup(List children) + { + this.children = children; + } + + public override Sprite Clone() + { + return new SimpleSpriteGroup(children.Select(sprite => sprite.Clone()).ToList()); + } + + protected override List GetChildren() + { + return children; + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index 55603f5..ba53fb1 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -60,7 +60,7 @@ public Program() // You'll see a Sprite.Scale() invocation later in this demo. // It's possible to group sprites and treat them as if they were one. - var sunRay = new SpriteGroup(sunRayCapLeft, sunRayMiddle, sunRayCapRight); + var sunRay = Sprites.Group(sunRayCapLeft, sunRayMiddle, sunRayCapRight); sunRay.Translate(50, 0); TextureSprite sunBody = Sprites.WithTexture(Textures.Circle) @@ -68,31 +68,34 @@ public Program() .Build(); // Since I don't feel like repeating the above steps for every sun ray, you can easily clone sprites in a circle! - var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody); - - // You can create, adjust and add sprites after a group has been made by inserting a list of the group's sprites and adding to it later - sunSprite = new SpriteGroup(allRays); + var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody).ToList(); + // You can create, adjust and add sprites after a group has been made by keeping a reference to a list of the group's sprites + sunSprite = new SimpleSpriteGroup(allRays); + // If this simple sprite group doesn't fulfill your needs, you can create your own implementation by extending + // the SpriteGroup abstract class. If you do, you must implement two methods: Clone() and GetChildren(). + // The first method is expected to create a deep copy of the group. + // The second method expects to get a list of all sprites that make up the group. (not copies) + // This allows the parent class to apply operations such as rotations or translations without needing to know how the sprites are managed by you. allRays.Add(sunBody); sunSprite.SetColor(Color.Yellow); var praiseText = Sprites.WithText("Praise") .FontId("White") .Position(0, -150) - .Scale(2f) .Build(); // Text can also be rotated around an anchor point, but beware! SE does not support rotating the text itself. This will therefore not create slanted text! - praiseText.Rotate(Angle.FromDegrees(-35), sunSprite); + praiseText.Rotate(Angle.FromDegrees(-45), sunSprite); var theSunText = Sprites.WithText("the sun") .FontId("White") .Position(0, 125) .Build(); // Though we don't do it here, you can also use an arbitrary point in space as the anchor by creating a new PointAnchor. - theSunText.Rotate(Angle.FromDegrees(-40), sunSprite); - textGroup = new SpriteGroup(praiseText, theSunText); + theSunText.Rotate(Angle.FromDegrees(-50), sunSprite); + textGroup = Sprites.Group(praiseText, theSunText); // You can also set an initial scale for text using the builder. // However, here we want to scale the distance the text has to the sun, so we supply the sun as the anchor for the scale operation. - textGroup.Scale(2f, sunSprite); + textGroup.Scale(1.5f, sunSprite); // Any new operations will be applied to the newly grouped sprites as well, but previous operations will not be applied. sunSprite.Scale(2f); // It's also possible to scale X and Y separately. You can even mirror sprites by applying a scale of -1 in one or both directions! diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs index e4c1a93..95fbda4 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs @@ -11,7 +11,7 @@ public class SpritesTest [TestCase((uint) 0)] public void SpritesRepeatCorrectAmountOfTimes(uint repetitions) { - Assert.That(Sprites.RepeatRotated(Sprites.WithTexture("SquareSimple").Build(), repetitions).Count, Is.EqualTo((int) repetitions)); + Assert.That(Sprites.RepeatRotated(Sprites.WithTexture("SquareSimple").Build(), repetitions).Length, Is.EqualTo((int) repetitions)); } [TestCase((uint) 10)] @@ -19,7 +19,7 @@ public void SpritesRepeatCorrectAmountOfTimes(uint repetitions) [TestCase((uint) 0)] public void SpritesWithRotationRepeatCorrectAmountOfTimes(uint repetitions) { - Assert.That(Sprites.RepeatRotated(Sprites.WithTexture("SquareSimple").Build(), repetitions, Angle.Right).Count, Is.EqualTo((int) repetitions)); + Assert.That(Sprites.RepeatRotated(Sprites.WithTexture("SquareSimple").Build(), repetitions, Angle.Right).Length, Is.EqualTo((int) repetitions)); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs index 511983e..33aaae5 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs @@ -33,7 +33,7 @@ public void ArbitraryRotationsSetCorrectRotation(params double[] radians) { sprite.Rotate(angle); } - // Note here (and this is not obvious) that unlike the angle struct, a sprite's rotation value will grow indefinitely + // Note here (and this is not obvious) that unlike the angle struct, a sprite's rotation value can grow indefinitely // This means that values above and below 2 * Math.PI are possible. The test keeps this in mind. var totalAngle = angles.Sum(angle => angle.AsRadians()); Assert.That(sprite.Rotation, Is.InRange( totalAngle - Precision, totalAngle + Precision)); From 73ec7fd45a469268c3595e9da30c55ea6b8f9bf0 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Tue, 12 May 2026 22:03:01 +0200 Subject: [PATCH 19/28] Trimmed angle API and added test --- .../src/angle/Angle.cs | 6 +++--- .../src/sprite/SpriteLeaf.cs | 4 ++-- .../src/sprite/atoms/ClippingSprite.cs | 2 +- .../src/sprite/atoms/TextureSprite.cs | 4 ++-- .../SpriteCompositor.Test/src/angle/AngleTest.cs | 2 +- .../src/sprite/SpritesTest.cs | 2 +- .../src/sprite/atoms/TextureSpriteTest.cs | 16 +++++++++++++++- 7 files changed, 25 insertions(+), 11 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index 8313771..be3516c 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -24,12 +24,12 @@ private Angle(double radians) this.radians = radians; } - public double AsRadians() + public double Radians() { return radians; } - public double AsDegrees() + public double Degrees() { return radians * 180 / Math.PI; } @@ -54,7 +54,7 @@ public static Angle FromRadians(double radians) public static Angle operator /(Angle nominator, double divisor) => new Angle(nominator.radians / divisor); - public static Angle operator *(Angle left, double right) => new Angle(left.radians * right); + public static Angle operator *(Angle angle, double multiplier) => new Angle(angle.radians * multiplier); public static bool operator <(Angle left, Angle right) => left.radians < right.radians; public static bool operator <=(Angle left, Angle right) => left.radians <= right.radians; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index a7f67ae..9b56d71 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -69,8 +69,8 @@ public virtual void Rotate(Angle angle, Anchor positionAnchor = null) if (positionAnchor == null || positionAnchor == this || positionAnchor.GetPosition() == GetPosition()) return; - var cos = Math.Cos(-angle.AsRadians()); - var sin = Math.Sin(-angle.AsRadians()); + var cos = Math.Cos(-angle.Radians()); + var sin = Math.Sin(-angle.Radians()); var anchor = positionAnchor.GetPosition(); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs index eaffc0e..3236a82 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs @@ -52,7 +52,7 @@ public ClippingSpriteBuilder Position(Vector2 position) public ClippingSpriteBuilder Rotation(Angle rotation) { - sprite.RotationOrScale = (float) rotation.AsRadians(); + sprite.RotationOrScale = (float) rotation.Radians(); return this; } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs index 39aa0ce..6a920ff 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs @@ -54,7 +54,7 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) public override void Rotate(Angle angle, Anchor positionAnchor = null) { - Sprite.RotationOrScale += (float)angle.AsRadians(); + Sprite.RotationOrScale += (float)angle.Radians(); base.Rotate(angle, positionAnchor); } @@ -86,7 +86,7 @@ public TextureSpriteBuilder Position(Vector2 position) public TextureSpriteBuilder Rotation(Angle rotation) { - sprite.RotationOrScale = (float)rotation.AsRadians(); + sprite.RotationOrScale = (float)rotation.Radians(); return this; } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs index 38e9634..cff7890 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs @@ -17,7 +17,7 @@ public class AngleTest [TestCase(0, 0)] public void DegreesConvertProperly(double degrees, double radians) { - Assert.That(Angle.FromDegrees(degrees).AsRadians(), Is.InRange(radians - Precision, radians + Precision)); + Assert.That(Angle.FromDegrees(degrees).Radians(), Is.InRange(radians - Precision, radians + Precision)); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs index 95fbda4..42f4a1d 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpritesTest.cs @@ -1,7 +1,7 @@ using IngameScript; using NUnit.Framework; -namespace SpriteCompositor.Test.util +namespace SpriteCompositor.Test.sprite { [TestFixture] public class SpritesTest diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs index 33aaae5..0981664 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs @@ -2,6 +2,7 @@ using System.Linq; using IngameScript; using NUnit.Framework; +using VRageMath; namespace SpriteCompositor.Test.sprite.atoms { @@ -35,8 +36,21 @@ public void ArbitraryRotationsSetCorrectRotation(params double[] radians) } // Note here (and this is not obvious) that unlike the angle struct, a sprite's rotation value can grow indefinitely // This means that values above and below 2 * Math.PI are possible. The test keeps this in mind. - var totalAngle = angles.Sum(angle => angle.AsRadians()); + var totalAngle = angles.Sum(angle => angle.Radians()); Assert.That(sprite.Rotation, Is.InRange( totalAngle - Precision, totalAngle + Precision)); } + + [TestCase(1, 1)] + [TestCase(0,0)] + [TestCase(-1, 1)] + [TestCase(1, -1)] + [TestCase(-1,-1)] + public void CanTranslate(float x, float y) + { + Vector2 translation = new Vector2(x, y); + TextureSprite sprite = Sprites.WithTexture(Textures.SquareSimple).Build(); + sprite.Translate(translation); + Assert.That(sprite.GetPosition(), Is.EqualTo(translation)); + } } } \ No newline at end of file From 61848d2057487113d449924fe0a181d62296793f Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 13 May 2026 17:44:16 +0200 Subject: [PATCH 20/28] Moar tests! --- .../src/anchor/PointAnchor.cs | 2 + .../src/sprite/SpriteLeaf.cs | 9 +-- .../SpriteCompositor.Demo.csproj | 2 +- .../src/sprite/atoms/TextureSpriteTest.cs | 59 +++++++++++++++++-- 4 files changed, 58 insertions(+), 14 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs index f673976..6eb15cb 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs @@ -11,6 +11,8 @@ public PointAnchor(Vector2 position) this.position = position; } + public PointAnchor(float x, float y) : this(new Vector2(x, y)) {} + public Vector2 GetPosition() { return position; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 9b56d71..23a1b39 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -21,17 +21,12 @@ protected SpriteLeaf(MySprite sprite) public Vector2 GetPosition() { - return Sprite.Position ?? new Vector2(0, 0); + return Sprite.Position ?? Vector2.Zero; } public void Translate(Vector2 vector) { - if (Sprite.Position == null) - { - Sprite.Position = new Vector2(0, 0); - } - - var position = Sprite.Position.Value; + var position = GetPosition(); position.X += vector.X; position.Y += vector.Y; Sprite.Position = position; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj index 6878f27..d5606e6 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/SpriteCompositor.Demo.csproj @@ -13,7 +13,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs index 0981664..fa0ac9c 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs @@ -10,7 +10,7 @@ namespace SpriteCompositor.Test.sprite.atoms public class TextureSpriteTest { // KSH uses floats for the angles, which is why the precision is so low. - private const double Precision = 0.000001; + private const double Precision = 0.001; [TestCase(0.5 * Math.PI)] [TestCase(Math.PI)] @@ -22,7 +22,7 @@ public class TextureSpriteTest [TestCase(43 * Math.PI)] [TestCase(0)] [TestCase(-1 * Math.PI)] - [TestCase (-1)] + [TestCase(-1)] [TestCase(1)] [TestCase(1, 69, 420)] [TestCase(0.25 * Math.PI, 0.75 * Math.PI)] @@ -32,19 +32,20 @@ public void ArbitraryRotationsSetCorrectRotation(params double[] radians) TextureSprite sprite = Sprites.WithTexture(Textures.SquareSimple).Build(); foreach (var angle in angles) { - sprite.Rotate(angle); + sprite.Rotate(angle); } + // Note here (and this is not obvious) that unlike the angle struct, a sprite's rotation value can grow indefinitely // This means that values above and below 2 * Math.PI are possible. The test keeps this in mind. var totalAngle = angles.Sum(angle => angle.Radians()); - Assert.That(sprite.Rotation, Is.InRange( totalAngle - Precision, totalAngle + Precision)); + Assert.That(sprite.Rotation, Is.EqualTo(totalAngle).Within(Precision)); } [TestCase(1, 1)] - [TestCase(0,0)] + [TestCase(0, 0)] [TestCase(-1, 1)] [TestCase(1, -1)] - [TestCase(-1,-1)] + [TestCase(-1, -1)] public void CanTranslate(float x, float y) { Vector2 translation = new Vector2(x, y); @@ -52,5 +53,51 @@ public void CanTranslate(float x, float y) sprite.Translate(translation); Assert.That(sprite.GetPosition(), Is.EqualTo(translation)); } + + [TestCase(0,0,Math.PI)] + [TestCase(1, 1, 0)] + [TestCase(1, 1, Math.PI)] + [TestCase(1, 1, Math.PI / 2)] + [TestCase(1, 1, -Math.PI / 2)] + [TestCase(5, 0, Math.PI)] + [TestCase(0, 5, Math.PI / 2)] + [TestCase(-3, 4, Math.PI / 4)] + [TestCase(10, -10, Math.PI * 2)] + [TestCase(-7.5f, 2.25f, Math.PI * 1.5)] + [TestCase(0.001f, 0.001f, Math.PI / 6)] + [TestCase(1000, 1000, Math.PI / 3)] + // This Case fails. This is okay in my opinion because the size of the screen will probably never exceed 1000 pixels. (The current largest screen is 512x512), + // and if so, KSH can start using doubles. + // [TestCase(float.MaxValue / 1000, float.MaxValue / 1000, Math.PI / 8)] + public void RotationAroundAnchorMaintainsCorrectDistance(float x, float y, double radians) + { + Vector2 offset = new Vector2(x, y); + TextureSprite sprite = Sprites.WithTexture(Textures.SquareSimple).Position(offset).Build(); + sprite.Rotate(Angle.FromRadians(radians), new PointAnchor(0, 0)); + Assert.That(sprite.Position.Value.Length(), Is.EqualTo(offset.Length()).Within(Precision)); + } + + [TestCase(0, 0, 5, 5)] + [TestCase(1, 1, 2, 2)] + [TestCase(-1, -1, 2, 2)] + [TestCase(10, 20, 0.5f, 0.5f)] + [TestCase(3, 4, -1, 1)] + [TestCase(3, 4, 1, -1)] + [TestCase(3, 4, -1, -1)] + [TestCase(100, 200, 10, 10)] + [TestCase(0.001f, 0.001f, 1000, 1000)] + [TestCase(50, -25, 1.5f, 2.5f)] + [TestCase(-50, 25, 1.5f, -2.5f)] + [TestCase(5, 10, 0, 1)] + [TestCase(5, 10, 1, 0)] + [TestCase(5, 10, 0, 0)] + [TestCase(float.MaxValue / 1000, float.MaxValue / 1000, 0.5f, 0.5f)] + public void ScalingPositionsCorrectly(float x, float y, float scaleX, float scaleY) + { + TextureSprite sprite = Sprites.WithTexture(Textures.SquareSimple).Position(x,y).Build(); + sprite.Scale(new Vector2(scaleX, scaleY), new PointAnchor(0, 0)); + Assert.That(sprite.GetPosition().X, Is.EqualTo(x * scaleX).Within(Precision)); + Assert.That(sprite.GetPosition().Y, Is.EqualTo(y * scaleY).Within(Precision)); + } } } \ No newline at end of file From 36dcbac6e8238726b49a73afada36ca4abff06c9 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 13 May 2026 20:39:12 +0200 Subject: [PATCH 21/28] Add text sprite tests for existing cases --- .../src/sprite/atoms/TextureSprite.cs | 6 -- .../src/sprite/SpriteLeafTest.cs | 13 +-- .../src/sprite/atoms/TextSpriteTest.cs | 94 +++++++++++++++++++ .../src/sprite/atoms/TextureSpriteTest.cs | 22 +++++ 4 files changed, 117 insertions(+), 18 deletions(-) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs index 6a920ff..54b0ffe 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs @@ -23,12 +23,6 @@ public string Texture set { Sprite.Data = value; } } - - // public TextureSprite(string texturePath = null) : base(new MySprite(type: SpriteType.TEXTURE, - // position: Vector2.Zero, rotation: 0, data: texturePath)) - // { - // } - private TextureSprite(MySprite sprite) : base(sprite) { } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs index 41c619d..0f079a1 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs @@ -8,17 +8,6 @@ namespace SpriteCompositor.Test.sprite [TestFixture] public class SpriteLeafTest { - [Test] - public void RenderableDoesNotPropagateChanges() - { - var sprite = Sprites.WithTexture("SquareSimple").Build(); - var mySprite = sprite.AsDrawableCollection()[0]; - mySprite.Alignment = TextAlignment.RIGHT; - mySprite.Color = Color.Red; - mySprite.Data = "Circle"; - mySprite.RotationOrScale = 99f; - var newDrawable = sprite.AsDrawableCollection()[0]; - Assert.That(newDrawable, Is.Not.EqualTo(mySprite)); - } + } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs new file mode 100644 index 0000000..34963df --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs @@ -0,0 +1,94 @@ +using System; +using IngameScript; +using NUnit.Framework; +using VRage.Game.GUI.TextPanel; +using VRageMath; +namespace SpriteCompositor.Test.sprite.atoms +{ + [TestFixture] + public class TextSpriteTest + { + // KSH uses floats for the angles, which is why the precision is so low. + private const double Precision = 0.001; + + [TestCase(1, 1)] + [TestCase(0, 0)] + [TestCase(-1, 1)] + [TestCase(1, -1)] + [TestCase(-1, -1)] + public void CanTranslate(float x, float y) + { + Vector2 translation = new Vector2(x, y); + TextSprite sprite = Sprites.WithText("Test").Build(); + sprite.Translate(translation); + Assert.That(sprite.GetPosition(), Is.EqualTo(translation)); + } + + [TestCase(0,0,Math.PI)] + [TestCase(1, 1, 0)] + [TestCase(1, 1, Math.PI)] + [TestCase(1, 1, Math.PI / 2)] + [TestCase(1, 1, -Math.PI / 2)] + [TestCase(5, 0, Math.PI)] + [TestCase(0, 5, Math.PI / 2)] + [TestCase(-3, 4, Math.PI / 4)] + [TestCase(10, -10, Math.PI * 2)] + [TestCase(-7.5f, 2.25f, Math.PI * 1.5)] + [TestCase(0.001f, 0.001f, Math.PI / 6)] + [TestCase(1000, 1000, Math.PI / 3)] + // This Case fails. This is okay in my opinion because the size of the screen will probably never exceed 1000 pixels. (The current largest screen is 512x512), + // and if so, KSH can start using doubles. + // [TestCase(float.MaxValue / 1000, float.MaxValue / 1000, Math.PI / 8)] + public void RotationAroundAnchorMaintainsCorrectDistance(float x, float y, double radians) + { + Vector2 offset = new Vector2(x, y); + TextSprite sprite = Sprites.WithText("Test").Position(offset).Build(); + sprite.Rotate(Angle.FromRadians(radians), new PointAnchor(0, 0)); + Assert.That(sprite.Position.Value.Length(), Is.EqualTo(offset.Length()).Within(Precision)); + } + + [TestCase(0, 0, 5, 5)] + [TestCase(1, 1, 2, 2)] + [TestCase(-1, -1, 2, 2)] + [TestCase(10, 20, 0.5f, 0.5f)] + [TestCase(3, 4, -1, 1)] + [TestCase(3, 4, 1, -1)] + [TestCase(3, 4, -1, -1)] + [TestCase(100, 200, 10, 10)] + [TestCase(0.001f, 0.001f, 1000, 1000)] + [TestCase(50, -25, 1.5f, 2.5f)] + [TestCase(-50, 25, 1.5f, -2.5f)] + [TestCase(5, 10, 0, 1)] + [TestCase(5, 10, 1, 0)] + [TestCase(5, 10, 0, 0)] + [TestCase(float.MaxValue / 1000, float.MaxValue / 1000, 0.5f, 0.5f)] + public void ScalingPositionsCorrectly(float x, float y, float scaleX, float scaleY) + { + TextSprite sprite = Sprites.WithText("Test").Position(x,y).Build(); + sprite.Scale(new Vector2(scaleX, scaleY), new PointAnchor(0, 0)); + Assert.That(sprite.GetPosition().X, Is.EqualTo(x * scaleX).Within(Precision)); + Assert.That(sprite.GetPosition().Y, Is.EqualTo(y * scaleY).Within(Precision)); + } + + [Test] + public void ClonesCantPropagateChanges() + { + TextSprite sprite1 = Sprites.WithText("Test").Build(); + Sprite sprite2 = sprite1.Clone(); + Assert.That(sprite1, Is.Not.EqualTo(sprite2)); + } + + [Test] + public void RenderableDoesNotPropagateChanges() + { + var sprite = Sprites.WithText("Wow").Build(); + var mySprite = sprite.AsDrawableCollection()[0]; + mySprite.Alignment = TextAlignment.RIGHT; + mySprite.Color = Color.Red; + mySprite.Data = "Circle"; + mySprite.RotationOrScale = 99f; + var newDrawable = sprite.AsDrawableCollection()[0]; + Assert.That(newDrawable, Is.Not.EqualTo(mySprite)); + } + } +} \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs index fa0ac9c..fb4af23 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs @@ -2,6 +2,7 @@ using System.Linq; using IngameScript; using NUnit.Framework; +using VRage.Game.GUI.TextPanel; using VRageMath; namespace SpriteCompositor.Test.sprite.atoms @@ -99,5 +100,26 @@ public void ScalingPositionsCorrectly(float x, float y, float scaleX, float scal Assert.That(sprite.GetPosition().X, Is.EqualTo(x * scaleX).Within(Precision)); Assert.That(sprite.GetPosition().Y, Is.EqualTo(y * scaleY).Within(Precision)); } + + [Test] + public void ClonesCantPropagateChanges() + { + TextureSprite sprite1 = Sprites.WithTexture(Textures.SquareSimple).Build(); + Sprite sprite2 = sprite1.Clone(); + Assert.That(sprite1, Is.Not.EqualTo(sprite2)); + } + + [Test] + public void RenderableDoesNotPropagateChanges() + { + var sprite = Sprites.WithTexture("SquareSimple").Build(); + var mySprite = sprite.AsDrawableCollection()[0]; + mySprite.Alignment = TextAlignment.RIGHT; + mySprite.Color = Color.Red; + mySprite.Data = "Circle"; + mySprite.RotationOrScale = 99f; + var newDrawable = sprite.AsDrawableCollection()[0]; + Assert.That(newDrawable, Is.Not.EqualTo(mySprite)); + } } } \ No newline at end of file From 7f4eeceedb23bfe40122bf807f5e7c97ab34dbc7 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 13 May 2026 20:41:38 +0200 Subject: [PATCH 22/28] Remove obsolete comment --- .../SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs | 1 - .../SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs index 34963df..a95eadc 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextSpriteTest.cs @@ -8,7 +8,6 @@ namespace SpriteCompositor.Test.sprite.atoms [TestFixture] public class TextSpriteTest { - // KSH uses floats for the angles, which is why the precision is so low. private const double Precision = 0.001; [TestCase(1, 1)] diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs index fb4af23..8ac19ad 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs @@ -10,7 +10,6 @@ namespace SpriteCompositor.Test.sprite.atoms [TestFixture] public class TextureSpriteTest { - // KSH uses floats for the angles, which is why the precision is so low. private const double Precision = 0.001; [TestCase(0.5 * Math.PI)] From 4f745e6df79ce249dc3596b800e89c13ed9f9819 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Wed, 13 May 2026 21:59:55 +0200 Subject: [PATCH 23/28] More documentation Also reduced code size by defining eligible functions using arrow syntax. I wonder if this skips instruction counters? I doubt it. --- .../src/angle/Angle.cs | 38 ++++++++++--------- .../src/sprite/atoms/ClippingSprite.cs | 10 +---- .../src/sprite/atoms/TextSprite.cs | 5 +-- .../src/sprite/atoms/TextureSprite.cs | 11 ++---- .../src/sprite/molecules/SimpleSpriteGroup.cs | 10 +---- .../SpriteCompositor.Demo/Program.cs | 15 ++++---- .../src/sprite/SpriteLeafTest.cs | 13 ------- 7 files changed, 37 insertions(+), 65 deletions(-) delete mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index be3516c..dbbbd79 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -7,8 +7,17 @@ namespace IngameScript /// public struct Angle { + /// + /// A right angle, equal to 90 degrees or 1/2 * PI + /// public static readonly Angle Right = new Angle(0.5 * Math.PI); + /// + /// A straight angle, equal to 180 degrees or 1 * PI + /// public static readonly Angle Straight = new Angle(Math.PI); + /// + /// A full angle, equal to 360 degrees or 2 * PI + /// public static readonly Angle Full = new Angle(2 * Math.PI); private readonly double radians; @@ -23,26 +32,21 @@ private Angle(double radians) this.radians = radians; } + /// + /// This angle expressed in radians, positive or negative, limited to one full rotation (0 to 2 * PI) + /// + /// the angle in radians + public double Radians() => radians; - public double Radians() - { - return radians; - } + /// + /// This angle expressed in degrees, positive or negative, limited to one full rotation (0 to 360) + /// + /// the angle in degrees + public double Degrees() => radians * 180 / Math.PI; - public double Degrees() - { - return radians * 180 / Math.PI; - } + public static Angle FromDegrees(double degrees) => new Angle(degrees * Math.PI / 180); - public static Angle FromDegrees(double degrees) - { - return new Angle(degrees * Math.PI / 180); - } - - public static Angle FromRadians(double radians) - { - return new Angle(radians); - } + public static Angle FromRadians(double radians) => new Angle(radians); public static Angle operator +(Angle left, Angle right) => new Angle(left.radians + right.radians); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs index 3236a82..062843e 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs @@ -14,10 +14,7 @@ public ClippingSprite() : base(new MySprite(type: SpriteType.CLIP_RECT)) { } - public override void Scale(float scalar, Anchor anchor = null) - { - Scale(new Vector2(scalar, scalar), anchor); - } + public override void Scale(float scalar, Anchor anchor = null) => Scale(new Vector2(scalar, scalar), anchor); public override void Scale(Vector2 scalar, Anchor anchor = null) { @@ -30,10 +27,7 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) base.Scale(scalar, anchor); } - public override Sprite Clone() - { - return new ClippingSprite(Sprite); - } + public override Sprite Clone() => new ClippingSprite(Sprite); public class ClippingSpriteBuilder { diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs index 5fd43ac..b93bacf 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs @@ -46,10 +46,7 @@ public override void Scale(Vector2 scalar, Anchor anchor = null) base.Scale(scalar, anchor); } - public override Sprite Clone() - { - return new TextSprite(Sprite); - } + public override Sprite Clone() => new TextSprite(Sprite); public class TextSpriteBuilder { diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs index 54b0ffe..8b85f40 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs @@ -27,10 +27,7 @@ private TextureSprite(MySprite sprite) : base(sprite) { } - public override void Scale(float scalar, Anchor anchor = null) - { - Scale(new Vector2(scalar, scalar), anchor); - } + public override void Scale(float scalar, Anchor anchor = null) => Scale(new Vector2(scalar, scalar), anchor); public override void Scale(Vector2 scalar, Anchor anchor = null) { @@ -52,10 +49,8 @@ public override void Rotate(Angle angle, Anchor positionAnchor = null) base.Rotate(angle, positionAnchor); } - public override Sprite Clone() - { - return new TextureSprite(Sprite); - } + public override Sprite Clone() => new TextureSprite(Sprite); + public class TextureSpriteBuilder { diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs index 95aab77..1888a17 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs @@ -12,14 +12,8 @@ public SimpleSpriteGroup(List children) this.children = children; } - public override Sprite Clone() - { - return new SimpleSpriteGroup(children.Select(sprite => sprite.Clone()).ToList()); - } + public override Sprite Clone() => new SimpleSpriteGroup(children.Select(sprite => sprite.Clone()).ToList()); - protected override List GetChildren() - { - return children; - } + protected override List GetChildren() => children; } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index ba53fb1..f9579e3 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -53,8 +53,8 @@ public Program() .Build(); // You can copy a sprite you made earlier and apply different operations to it var sunRayCapLeft = sunRayCapRight.Clone(); - // We're using the middle part of the sun ray as an anchor point for the rotation, - // this allows us to flip the copied end to the left of the ray, without having to calculate how far it needs to go! + // We're using the middle part of the sun ray as an anchor point for the rotation. + // This allows us to flip the copied end to the left of the ray, without having to calculate how far it needs to go! sunRayCapLeft.Rotate(Angle.Straight, sunRayMiddle); // Alternatively, if we don't want to rotate, we can also scale the sprite by (-1,1) relative to the same anchor point. // You'll see a Sprite.Scale() invocation later in this demo. @@ -71,11 +71,12 @@ public Program() var allRays = Sprites.RepeatRotated(sunRay, 12, sunBody).ToList(); // You can create, adjust and add sprites after a group has been made by keeping a reference to a list of the group's sprites sunSprite = new SimpleSpriteGroup(allRays); - // If this simple sprite group doesn't fulfill your needs, you can create your own implementation by extending - // the SpriteGroup abstract class. If you do, you must implement two methods: Clone() and GetChildren(). - // The first method is expected to create a deep copy of the group. - // The second method expects to get a list of all sprites that make up the group. (not copies) - // This allows the parent class to apply operations such as rotations or translations without needing to know how the sprites are managed by you. + /* If this simple sprite group doesn't fulfill your needs, + you can create your own implementation by extending the SpriteGroup abstract class. + If you do, you must implement two methods: Clone() and GetChildren(). + The first method is expected to create a deep copy of the group. + The second method expects to get a list of all sprites that make up the group. (not copies) + This allows the parent class to apply operations such as rotations or translations without needing to know how the sprites are managed by you. */ allRays.Add(sunBody); sunSprite.SetColor(Color.Yellow); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs deleted file mode 100644 index 0f079a1..0000000 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/SpriteLeafTest.cs +++ /dev/null @@ -1,13 +0,0 @@ -using IngameScript; -using NUnit.Framework; -using VRage.Game.GUI.TextPanel; -using VRageMath; - -namespace SpriteCompositor.Test.sprite -{ - [TestFixture] - public class SpriteLeafTest - { - - } -} \ No newline at end of file From 1b14165079400467cd6cbbbf70c21c156ea8612a Mon Sep 17 00:00:00 2001 From: Lelebees Date: Thu, 14 May 2026 17:51:07 +0200 Subject: [PATCH 24/28] Trimmed API - Converted regular method calls to expression bodies where possible - Moved Mirror functions to SpriteGroup and TextureSprite, as they are the only ones that actually benefit from it (negative scale on a TextSprite has the same effect as positive scale) - Changed Angle's Radians() and Degrees() methods to be properties instead of functions --- .../src/angle/Angle.cs | 26 ++++----- .../src/sprite/Sprite.cs | 8 ++- .../src/sprite/SpriteGroup.cs | 56 +++++++------------ .../src/sprite/SpriteLeaf.cs | 8 +-- .../src/sprite/Sprites.cs | 56 ++----------------- .../src/sprite/atoms/ClippingSprite.cs | 17 ++---- .../src/sprite/atoms/TextSprite.cs | 11 +--- .../src/sprite/atoms/TextureSprite.cs | 32 ++++------- .../SpriteCompositor.Demo/Program.cs | 26 +++++---- .../src/angle/AngleTest.cs | 2 +- .../src/sprite/atoms/TextureSpriteTest.cs | 2 +- 11 files changed, 83 insertions(+), 161 deletions(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index dbbbd79..b6ef0f4 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -20,8 +20,6 @@ public struct Angle /// public static readonly Angle Full = new Angle(2 * Math.PI); - private readonly double radians; - private Angle(double radians) { // Normalize the angle to be within a single rotation @@ -30,40 +28,40 @@ private Angle(double radians) radians %= 2 * Math.PI; } - this.radians = radians; + Radians = radians; } /// /// This angle expressed in radians, positive or negative, limited to one full rotation (0 to 2 * PI) /// /// the angle in radians - public double Radians() => radians; + public double Radians { get; } /// /// This angle expressed in degrees, positive or negative, limited to one full rotation (0 to 360) /// /// the angle in degrees - public double Degrees() => radians * 180 / Math.PI; + public double Degrees => Radians * 180 / Math.PI; public static Angle FromDegrees(double degrees) => new Angle(degrees * Math.PI / 180); public static Angle FromRadians(double radians) => new Angle(radians); - public static Angle operator +(Angle left, Angle right) => new Angle(left.radians + right.radians); + public static Angle operator +(Angle left, Angle right) => new Angle(left.Radians + right.Radians); public static Angle operator +(Angle angle) => angle; - public static Angle operator -(Angle left, Angle right) => new Angle(left.radians - right.radians); + public static Angle operator -(Angle left, Angle right) => new Angle(left.Radians - right.Radians); - public static Angle operator -(Angle angle) => new Angle(-angle.radians); + public static Angle operator -(Angle angle) => new Angle(-angle.Radians); - public static Angle operator /(Angle nominator, double divisor) => new Angle(nominator.radians / divisor); + public static Angle operator /(Angle nominator, double divisor) => new Angle(nominator.Radians / divisor); - public static Angle operator *(Angle angle, double multiplier) => new Angle(angle.radians * multiplier); + public static Angle operator *(Angle angle, double multiplier) => new Angle(angle.Radians * multiplier); - public static bool operator <(Angle left, Angle right) => left.radians < right.radians; - public static bool operator <=(Angle left, Angle right) => left.radians <= right.radians; + public static bool operator <(Angle left, Angle right) => left.Radians < right.Radians; + public static bool operator <=(Angle left, Angle right) => left.Radians <= right.Radians; - public static bool operator >(Angle left, Angle right) => left.radians > right.radians; - public static bool operator >=(Angle left, Angle right) => left.radians >= right.radians; + public static bool operator >(Angle left, Angle right) => left.Radians > right.Radians; + public static bool operator >=(Angle left, Angle right) => left.Radians >= right.Radians; } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index b9bb52d..8c7029c 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -10,33 +10,38 @@ public interface Sprite : Anchor /// /// How far the sprite will be moved and in what direction void Translate(Vector2 vector); + /// /// Moves a sprite in 2D space. /// /// How far the sprite will be moved on the x-axis /// How far the sprite will be moved on the y-axis void Translate(float x, float y); + void SetColor(Color color); void SetAlignment(TextAlignment alignment); + /// /// Scales a sprite in 2 dimensions according to the scalar. /// /// How much to multiply the size of the sprite by /// If not null, will also scale the sprite's distance from the anchor void Scale(float scalar, Anchor anchor = null); + /// /// Scales a sprite in 2 dimensions according to the scalar. /// /// How much to multiply the size of the sprite by. If either x or y is 1, scales in only one dimension (except for text) /// If not null, will also scale the sprite's distance from the anchor void Scale(Vector2 scalar, Anchor anchor = null); + /// /// Rotates a sprite in clockwise direction around the given anchor /// /// The angle of rotation /// The point in space to rotate around, if no anchor is given, the center of this sprite is used void Rotate(Angle angle, Anchor positionAnchor = null); - + /// /// Creates a copy of the sprite that can be modified separately. /// @@ -49,6 +54,7 @@ public interface Sprite : Anchor /// The size of the screen the sprite(s) are to be drawn to. Moves the sprites so that 0,0 is the center of the screen. /// A collection of MySprite objects that can be drawn on a screen the size of viewport. MySprite[] AsDrawableCollection(RectangleF viewport); + /// /// Converts the sprite to a collection of sprites that Space Engineers can actually draw /// diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 9d7960d..85a1308 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -9,33 +9,20 @@ public abstract class SpriteGroup : Sprite { public Vector2 GetPosition() { - return GetChildren().Aggregate(Vector2.Zero, (current, child) => current + child.GetPosition()) / GetChildren().Count; + var children = GetChildren(); + return children.Aggregate(Vector2.Zero, (current, child) => current + child.GetPosition()) / children.Count; } - public void Translate(Vector2 vector) - { - GetChildren().ForEach(sprite => sprite.Translate(vector)); - } + public void Translate(Vector2 vector) => GetChildren().ForEach(sprite => sprite.Translate(vector)); - public void Translate(float x, float y) - { - Translate(new Vector2(x, y)); - } + public void Translate(float x, float y) => Translate(new Vector2(x, y)); - public void SetColor(Color color) - { - GetChildren().ForEach(sprite => sprite.SetColor(color)); - } + public void SetColor(Color color) => GetChildren().ForEach(sprite => sprite.SetColor(color)); - public void SetAlignment(TextAlignment alignment) - { + public void SetAlignment(TextAlignment alignment) => GetChildren().ForEach(sprite => sprite.SetAlignment(alignment)); - } - public void Scale(float scalar, Anchor anchor = null) - { - Scale(new Vector2(scalar, scalar), anchor); - } + public void Scale(float scalar, Anchor anchor = null) => Scale(new Vector2(scalar, scalar), anchor); public void Scale(Vector2 scalar, Anchor anchor = null) { @@ -52,34 +39,31 @@ public void Scale(Vector2 scalar, Anchor anchor = null) GetChildren().ForEach(sprite => sprite.Scale(scalar, anchor)); } + public void Mirror(Anchor anchor = null) => Scale(new Vector2(-1, -1), anchor); + + public void MirrorVertical(Anchor anchor = null) => Scale(new Vector2(1, -1), anchor); + + public void MirrorHorizontal(Anchor anchor = null) => Scale(new Vector2(-1, 1), anchor); + public void Rotate(Angle angle, Anchor positionAnchor = null) { // it is VITALLY important to create a PointAnchor here. If we don't, - // the process of rotating sprites will adjust this groups center, and therefore it's position + // the process of rotating sprites could adjust this (or another) groups center, and therefore its position // this causes sprites to spiral away from the center of rotation. - if (positionAnchor == null) - { - positionAnchor = new PointAnchor(GetPosition()); - } - // Safeguard if someone passes this group or a subgroup of this group as an anchor. - else if (positionAnchor is SpriteGroup) + if (positionAnchor is SpriteGroup) { positionAnchor = new PointAnchor(positionAnchor.GetPosition()); } - GetChildren().ForEach(sprite => sprite.Rotate(angle, positionAnchor)); + GetChildren().ForEach(sprite => sprite.Rotate(angle, positionAnchor ?? new PointAnchor(GetPosition()))); } public abstract Sprite Clone(); - public MySprite[] AsDrawableCollection(RectangleF viewport) - { - return GetChildren().SelectMany(child => child.AsDrawableCollection(viewport)).ToArray(); - } + public MySprite[] AsDrawableCollection(RectangleF viewport) => + GetChildren().SelectMany(child => child.AsDrawableCollection(viewport)).ToArray(); - public MySprite[] AsDrawableCollection() - { - return GetChildren().SelectMany(child => child.AsDrawableCollection()).ToArray(); - } + public MySprite[] AsDrawableCollection() => + GetChildren().SelectMany(child => child.AsDrawableCollection()).ToArray(); protected abstract List GetChildren(); } diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index 23a1b39..f1a3533 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -47,7 +47,7 @@ public void SetAlignment(TextAlignment alignment) Sprite.Alignment = alignment; } - public abstract void Scale(float scalar, Anchor anchor = null); + public virtual void Scale(float scalar, Anchor anchor = null) => Scale(new Vector2(scalar, scalar), anchor); public virtual void Scale(Vector2 scalar, Anchor anchor = null) { @@ -63,9 +63,9 @@ public virtual void Rotate(Angle angle, Anchor positionAnchor = null) { if (positionAnchor == null || positionAnchor == this || positionAnchor.GetPosition() == GetPosition()) return; - - var cos = Math.Cos(-angle.Radians()); - var sin = Math.Sin(-angle.Radians()); + + var cos = Math.Cos(-angle.Radians); + var sin = Math.Sin(-angle.Radians); var anchor = positionAnchor.GetPosition(); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs index b3595e5..501db77 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs @@ -43,60 +43,12 @@ public static Sprite[] RepeatRotated(Sprite spriteToRepeat, uint repetitions, An return resultingSprites; } - public static TextureSprite Mirror(TextureSprite sprite) - { - sprite.Scale(new Vector2(-1, -1)); - return sprite; - } - - public static SpriteGroup Mirror(SpriteGroup spriteGroup) - { - spriteGroup.Scale(new Vector2(-1, -1)); - return spriteGroup; - } - - private static TextureSprite MirrorHorizontal(TextureSprite sprite) - { - sprite.Scale(new Vector2(-1, 1)); - return sprite; - } - - private static SpriteGroup MirrorHorizontal(SpriteGroup spriteGroup) - { - spriteGroup.Scale(new Vector2(-1, 1)); - return spriteGroup; - } - - private static TextureSprite MirrorVertical(TextureSprite sprite) - { - sprite.Scale(new Vector2(1, -1)); - return sprite; - } + public static TextureSprite.TextureSpriteBuilder WithTexture(string texture) => new TextureSprite.TextureSpriteBuilder().Texture(texture); - private static SpriteGroup MirrorVertical(SpriteGroup spriteGroup) - { - spriteGroup.Scale(new Vector2(1, -1)); - return spriteGroup; - } + public static TextSprite.TextSpriteBuilder WithText(string text) => new TextSprite.TextSpriteBuilder().Text(text); - public static TextureSprite.TextureSpriteBuilder WithTexture(string texture) - { - return new TextureSprite.TextureSpriteBuilder().Texture(texture); - } + public static ClippingSprite.ClippingSpriteBuilder ClipRectangle() => new ClippingSprite.ClippingSpriteBuilder(); - public static TextSprite.TextSpriteBuilder WithText(string text) - { - return new TextSprite.TextSpriteBuilder().Text(text); - } - - public static ClippingSprite.ClippingSpriteBuilder ClipRectangle() - { - return new ClippingSprite.ClippingSpriteBuilder(); - } - - public static SpriteGroup Group(params Sprite[] sprites) - { - return new SimpleSpriteGroup(sprites.ToList()); - } + public static SpriteGroup Group(params Sprite[] sprites) => new SimpleSpriteGroup(sprites.ToList()); } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs index 062843e..15bc410 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs @@ -33,10 +33,7 @@ public class ClippingSpriteBuilder { private MySprite sprite = new MySprite(type: SpriteType.CLIP_RECT); - public ClippingSpriteBuilder Position(float x, float y) - { - return Position(new Vector2(x, y)); - } + public ClippingSpriteBuilder Position(float x, float y) => Position(new Vector2(x, y)); public ClippingSpriteBuilder Position(Vector2 position) { @@ -46,14 +43,11 @@ public ClippingSpriteBuilder Position(Vector2 position) public ClippingSpriteBuilder Rotation(Angle rotation) { - sprite.RotationOrScale = (float) rotation.Radians(); + sprite.RotationOrScale = (float) rotation.Radians; return this; } - public ClippingSpriteBuilder Size(float width, float height) - { - return Size(new Vector2(width, height)); - } + public ClippingSpriteBuilder Size(float width, float height) => Size(new Vector2(width, height)); public ClippingSpriteBuilder Size(Vector2 size) { @@ -67,10 +61,7 @@ public ClippingSpriteBuilder Alignment(TextAlignment alignment) return this; } - public ClippingSprite Build() - { - return new ClippingSprite(sprite); - } + public ClippingSprite Build() => new ClippingSprite(sprite); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs index b93bacf..d65e516 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs @@ -64,10 +64,8 @@ public TextSpriteBuilder FontId(string fontId) return this; } - public TextSpriteBuilder Position(float x, float y) - { - return Position(new Vector2(x, y)); - } + public TextSpriteBuilder Position(float x, float y) => Position(new Vector2(x, y)); + public TextSpriteBuilder Position(Vector2 position) { @@ -93,10 +91,7 @@ public TextSpriteBuilder Alignment(TextAlignment alignment) return this; } - public TextSprite Build() - { - return new TextSprite(sprite); - } + public TextSprite Build() => new TextSprite(sprite); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs index 8b85f40..4798257 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs @@ -31,21 +31,22 @@ private TextureSprite(MySprite sprite) : base(sprite) public override void Scale(Vector2 scalar, Anchor anchor = null) { - if (Sprite.Size == null) - { - Sprite.Size = Vector2.One; - } - - var size = Sprite.Size.Value; + var size = Sprite.Size ?? Vector2.One; size.X *= scalar.X; size.Y *= scalar.Y; Sprite.Size = size; base.Scale(scalar, anchor); } + + public void Mirror(Anchor anchor = null) => Scale(new Vector2(-1, -1), anchor); + + public void MirrorVertical(Anchor anchor = null) => Scale(new Vector2(1, -1), anchor); + + public void MirrorHorizontal(Anchor anchor = null) => Scale(new Vector2(-1, 1), anchor); public override void Rotate(Angle angle, Anchor positionAnchor = null) { - Sprite.RotationOrScale += (float)angle.Radians(); + Sprite.RotationOrScale += (float)angle.Radians; base.Rotate(angle, positionAnchor); } @@ -62,10 +63,7 @@ public TextureSpriteBuilder Texture(string path) return this; } - public TextureSpriteBuilder Position(float x, float y) - { - return Position(new Vector2(x, y)); - } + public TextureSpriteBuilder Position(float x, float y) => Position(new Vector2(x, y)); public TextureSpriteBuilder Position(Vector2 position) { @@ -75,14 +73,11 @@ public TextureSpriteBuilder Position(Vector2 position) public TextureSpriteBuilder Rotation(Angle rotation) { - sprite.RotationOrScale = (float)rotation.Radians(); + sprite.RotationOrScale = (float)rotation.Radians; return this; } - public TextureSpriteBuilder Size(float width, float height) - { - return Size(new Vector2(width, height)); - } + public TextureSpriteBuilder Size(float width, float height) => Size(new Vector2(width, height)); public TextureSpriteBuilder Size(Vector2 size) { @@ -102,10 +97,7 @@ public TextureSpriteBuilder Alignment(TextAlignment alignment) return this; } - public TextureSprite Build() - { - return new TextureSprite(sprite); - } + public TextureSprite Build() => new TextureSprite(sprite); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs index f9579e3..76873da 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Program.cs @@ -38,7 +38,6 @@ public Program() surface.SurfaceSize ); - // Strictly speaking we should be using Update100, but for testing and/or animation purposes it's nicer to use Update10. Runtime.UpdateFrequency = UpdateFrequency.Update10; // You can create basic sprites using the Sprites class. The Textures class contains texture name constants for basic shapes, for your writing convenience. var sunRayMiddle = Sprites.WithTexture(Textures.SquareSimple) @@ -52,12 +51,12 @@ public Program() .Position(9, 0) .Build(); // You can copy a sprite you made earlier and apply different operations to it - var sunRayCapLeft = sunRayCapRight.Clone(); - // We're using the middle part of the sun ray as an anchor point for the rotation. - // This allows us to flip the copied end to the left of the ray, without having to calculate how far it needs to go! - sunRayCapLeft.Rotate(Angle.Straight, sunRayMiddle); - // Alternatively, if we don't want to rotate, we can also scale the sprite by (-1,1) relative to the same anchor point. - // You'll see a Sprite.Scale() invocation later in this demo. + TextureSprite sunRayCapLeft = (TextureSprite) sunRayCapRight.Clone(); + // You can mirror texture sprites by calling the Mirror(), MirrorHorizontal() or MirrorVertical() functions on them. + // By passing an anchor, the sprite will also move to the other side of that anchor. + sunRayCapLeft.Mirror(sunRayMiddle); + // Mirroring is functionally equivalent to calling the Scale() function with -1 for the x, y or both axes. + // You'll see a Scale() invocation later in this demo // It's possible to group sprites and treat them as if they were one. var sunRay = Sprites.Group(sunRayCapLeft, sunRayMiddle, sunRayCapRight); @@ -76,7 +75,9 @@ you can create your own implementation by extending the SpriteGroup abstract cla If you do, you must implement two methods: Clone() and GetChildren(). The first method is expected to create a deep copy of the group. The second method expects to get a list of all sprites that make up the group. (not copies) - This allows the parent class to apply operations such as rotations or translations without needing to know how the sprites are managed by you. */ + This allows the parent class to apply operations such as rotations or translations without needing to know how the sprites are managed by you. + If you need even more control over the group, you should create your own class that implements the Sprite interface. + Which allows you to override the existing transformation functions, and will likely be more performant than extending the existing SpriteGroup class. */ allRays.Add(sunBody); sunSprite.SetColor(Color.Yellow); @@ -84,14 +85,17 @@ This allows the parent class to apply operations such as rotations or translatio .FontId("White") .Position(0, -150) .Build(); - // Text can also be rotated around an anchor point, but beware! SE does not support rotating the text itself. This will therefore not create slanted text! + /* Any sprite can be rotated using the following syntax. + Specifying an anchor point will rotate the sprite around that point, in addition to rotating the sprite itself. + Text can also be rotated around an anchor point, but beware! SE does not support rotating the text itself. + This will therefore not create slanted text! */ praiseText.Rotate(Angle.FromDegrees(-45), sunSprite); var theSunText = Sprites.WithText("the sun") .FontId("White") .Position(0, 125) .Build(); - // Though we don't do it here, you can also use an arbitrary point in space as the anchor by creating a new PointAnchor. + // Though we don't do it here, you can also use an arbitrary point in space as the anchor by creating a new PointAnchor(). theSunText.Rotate(Angle.FromDegrees(-50), sunSprite); textGroup = Sprites.Group(praiseText, theSunText); // You can also set an initial scale for text using the builder. @@ -99,7 +103,7 @@ This allows the parent class to apply operations such as rotations or translatio textGroup.Scale(1.5f, sunSprite); // Any new operations will be applied to the newly grouped sprites as well, but previous operations will not be applied. sunSprite.Scale(2f); - // It's also possible to scale X and Y separately. You can even mirror sprites by applying a scale of -1 in one or both directions! + // It's also possible to scale X and Y separately. } public void Main(string argument, UpdateType updateSource) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs index cff7890..529b24d 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/angle/AngleTest.cs @@ -17,7 +17,7 @@ public class AngleTest [TestCase(0, 0)] public void DegreesConvertProperly(double degrees, double radians) { - Assert.That(Angle.FromDegrees(degrees).Radians(), Is.InRange(radians - Precision, radians + Precision)); + Assert.That(Angle.FromDegrees(degrees).Radians, Is.InRange(radians - Precision, radians + Precision)); } } } \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs index 8ac19ad..ce75959 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/sprite/atoms/TextureSpriteTest.cs @@ -37,7 +37,7 @@ public void ArbitraryRotationsSetCorrectRotation(params double[] radians) // Note here (and this is not obvious) that unlike the angle struct, a sprite's rotation value can grow indefinitely // This means that values above and below 2 * Math.PI are possible. The test keeps this in mind. - var totalAngle = angles.Sum(angle => angle.Radians()); + var totalAngle = angles.Sum(angle => angle.Radians); Assert.That(sprite.Rotation, Is.EqualTo(totalAngle).Within(Precision)); } From a633cd503daf4e41c30ed94a9cb2a6ffc971b934 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Fri, 15 May 2026 16:24:36 +0200 Subject: [PATCH 25/28] Prepare for release - Add License and Copyright notices to mixin files - Updated documentation to reflect current state of the project - Add License and Copyright notice to Demo Project - Updated Mixin Library information --- .../COPYING | 621 ++++++++++++++++++ .../COPYING.LESSER | 165 +++++ ....MdkScriptMixin.SpriteCompositor.projitems | 2 + .../_description | 2 +- .../_releasenotes | 5 +- .../documentation/class-diagram.md | 49 +- .../readme.md | 90 +++ .../src/anchor/Anchor.cs | 13 + .../src/anchor/PointAnchor.cs | 13 + .../src/angle/Angle.cs | 21 +- .../src/sprite/Sprite.cs | 13 + .../src/sprite/SpriteGroup.cs | 13 + .../src/sprite/SpriteLeaf.cs | 13 + .../src/sprite/Sprites.cs | 16 +- .../src/sprite/Textures.cs | 12 + .../src/sprite/atoms/ClippingSprite.cs | 14 +- .../src/sprite/atoms/TextSprite.cs | 14 +- .../src/sprite/atoms/TextureSprite.cs | 13 + .../src/sprite/molecules/SimpleSpriteGroup.cs | 13 + .../SpriteCompositor.Demo/Instructions.readme | 7 +- .../SpriteCompositor.Demo/mdk.ini | 2 +- 21 files changed, 1068 insertions(+), 43 deletions(-) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING.LESSER diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING new file mode 100644 index 0000000..ed990f8 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING @@ -0,0 +1,621 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING.LESSER b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING.LESSER new file mode 100644 index 0000000..0a04128 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/COPYING.LESSER @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems index 96baad2..9a4f5b8 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor.projitems @@ -6,6 +6,8 @@ 8a3cdcc5-4b55-4d87-a415-698a0e1ff06f + + diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description index 0fed797..e3889b1 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_description @@ -1 +1 @@ -A more advanced API for interacting with the SE's native sprite api. Core functionality is composing a new sprite by grouping a collection of sprites, allowing you to treat them as if they were one sprite. \ No newline at end of file +API wrapper simplifying the native Space Engineers LCD Sprite API. Supports composing your own sprites out of a collection of existing sprites. \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes index 9d938bb..c1a8b81 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/_releasenotes @@ -1,6 +1,7 @@ - 1.0.0 Support Text and Image sprites. - Support translating sprites. - Support rotating sprites around an arbitrary point or another sprite. + Support translating sprites and sprite groups. + Support rotating sprites and groups around an arbitrary point or another sprite. Support scaling sprite groups as if they were one sprite, in multiple dimensions. Support recoloring groups of sprites + Experimental Clipping Sprite support diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md index 4ce46c2..8218df0 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/documentation/class-diagram.md @@ -1,35 +1,29 @@ ```mermaid classDiagram - class Display { - -bool cacheInvalidationEnabled - -bool emptySpriteRendered - -IMyTextSurface surface - +Draw(Sprite sprite) void - - } - + note "Implemented interface methods\n have been left out for brevity." class Sprite { <> - +Translate(float amount, Direction direction) Sprite - +Translate(Vector2 vector) Sprite + +Translate(float x, float y) Sprite + +Translate(Vector2 vector) void +SetColor(Color color) void +SetAlignment(TextAlignment alignment) void +GetPosition() Vector2 - +Scale(float amount) Sprite - +Rotate(Angle angle, Anchor anchor) + +Scale(float amount) void + +Rotate(Angle angle, Anchor anchor) void + +Clone() Sprite } Anchor <|-- Sprite Sprite <|-- SpriteLeaf Sprite <|--o SpriteGroup Sprite ..> Angle - Angle .. > AngleType class SpriteLeaf { <> #MySprite sprite - +Scale(float amount)* - +Rotate(Angle angle, Anchor anchor)* + +Scale(float amount)* void + +Rotate(Angle angle, Anchor anchor)* void + +Clone()* Sprite } SpriteLeaf <|-- TextSprite @@ -37,14 +31,22 @@ classDiagram SpriteLeaf <|-- ClippingSprite class TextureSprite { + +float Rotation + +Vector2? Size + +string Texture +SetTexture(string texture) void +Scale(float amount) void +Rotate(Angle angle, Anchor anchor) void + +Mirror() void + +MirrorHorizontal() void + +MirrorVertical() void } class TextSprite { - +SetText(string text) void - +SetFont(string fontId) void + +string Text + +string FontId + +float TextScale + +TextAlignment alignment +Scale(float amount) void +Rotate(Angle angle, Anchor anchor) void } @@ -56,19 +58,18 @@ classDiagram class SpriteGroup { -List~Sprite~ sprites + +Mirror() void + +MirrorHorizontal() void + +MirrorVertical() void } class Angle { -float radians - +AsRadians() float - +AsDegrees() float + +float Radians + +float Degrees } - class AngleType { - <> - DEGREES - RADIANS - } + note for Angle "Basic arithmetic and\n comparison available" class Anchor { <> diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/readme.md b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/readme.md index e69de29..1c5a648 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/readme.md +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/readme.md @@ -0,0 +1,90 @@ +# Sprite Compositing for LCD Scripts + +An API wrapper that supports composing new sprites from multiple existing ones. + +- [Source Code](./src) +- [Demo Project](../SpriteCompositor.Demo/Program.cs) +- [Tests](../SpriteCompositor.Test) + +## Usage + +You can instantiate regular sprites using the helper methods of the `Sprites` class. These return a builder (except for +`Sprites.Group()`, which returns a group directly) that can be used to further configure the initial values of the +sprite. + +All sprites and sprite groups implement the `Sprite` interface, which you can use to `Translate()`, `Rotate()`, or +`Scale()` a sprite after instantiation, among other things. Individual Sprite types may have additional properties and +methods available, like `TextureSprite`'s `Mirror()` functions. + +See the [demo project](../SpriteCompositor.Demo/Program.cs) for a detailed example. + +### Grouping Sprites + +You can group sprites by calling `Sprites.Group()` or creating a `new SimpleSpriteGroup()`. + +If this implementation does +not fit your needs, you can extend the `SpriteGroup` abstract class. If you do, you will be required to implement the +`Clone()` and `GetChildren()` methods. + +**Avoid creating a new list in `GetChildren()`**, as the function is invoked +whenever a transformation is applied to the group. I recommend using the following example as a guide: + +```csharp +public class CustomSpriteGroup : SpriteGroup +{ + private readonly List backingList; + + public Sprite UnspecifiedSprite + { + get { return backingList[0]; } + set { backingList[0] = value; } + } + + public TextureSprite SpecificSprite + { + get { return (TextureSprite) backingList[1]; } + set { backingList[1] = value; } + } + + public CustomSpriteGroup(Sprite unspecifiedSprite, TextureSprite specificSprite) + { + this.backingList = new List { unspecifiedSprite, specificSprite }; + } + + public override Sprite Clone() => new CustomSpriteGroup(backingList.Select(sprite => sprite.Clone()).ToList()); + + protected override List GetChildren() => backingList; +} +``` + +If, for some reason, the abstract `SpriteGroup` class also does not suit your needs, you can implement the `Sprite` +interface directly, though if you feel the need to do so, there may be a structural problem with your program. + +### Anchors + +Some transformation functions take an optional `Anchor` argument. When passed, the transformation will use the anchor as +the center of that transformation. For example, with `Rotate()` transformations, in addition to the regular behavior, +the respective sprite will be rotated around the anchor point, as if it was orbiting it. `Scale()` transformations with +an `Anchor` will also scale the distance to the anchor point. + +### Displaying Sprites + +In order to draw your composed sprites to an LCD screen, you'll need to call the `Sprite.AsRenderable()` method, which will +return an array of `MySprite` objects that your sprite consists of. You can draw these to the screen in one go +using the `MySpriteDrawFrame.AddRange()` method. `AsRenderable()` takes an optional `RectangleF viewport` as parameter. +Supplying this will move the sprites so that (0,0) is the center of the viewport. + +## Legal +`Copyright (c) 2026 Lelebees` + +This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . + +### License +You can find a copy of the [GNU General Public License](./COPYING) and [GNU Lesser General Public License](./COPYING.LESSER) next to this source code in COPYING and COPYING.LESSER respectively. + +### Reaching out +You can reach me as @lelebees on Discord, or through the project's [Github Repository](https://github.com/Lelebees/mdk2-packages-sprite-compositor). Please note while reaching out on Discord that I generally do not accept random friend requests. @Mention me in the [programmable block channel](https://discord.com/channels/125011928711036928/216219467959500800) of the Keen Software House Discord Server to get a hold of me. \ No newline at end of file diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs index 41c2b93..2cbe473 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/Anchor.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using VRageMath; namespace IngameScript diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs index 6eb15cb..b31b021 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/anchor/PointAnchor.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using VRageMath; namespace IngameScript diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs index b6ef0f4..d8d4d94 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/angle/Angle.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using System; namespace IngameScript @@ -8,15 +21,15 @@ namespace IngameScript public struct Angle { /// - /// A right angle, equal to 90 degrees or 1/2 * PI + /// A right angle, equal to 90 degrees or 1/2 * PI. /// public static readonly Angle Right = new Angle(0.5 * Math.PI); /// - /// A straight angle, equal to 180 degrees or 1 * PI + /// A straight angle, equal to 180 degrees or 1 * PI. /// public static readonly Angle Straight = new Angle(Math.PI); /// - /// A full angle, equal to 360 degrees or 2 * PI + /// A full angle, equal to 360 degrees or 2 * PI. /// public static readonly Angle Full = new Angle(2 * Math.PI); @@ -33,13 +46,11 @@ private Angle(double radians) /// /// This angle expressed in radians, positive or negative, limited to one full rotation (0 to 2 * PI) /// - /// the angle in radians public double Radians { get; } /// /// This angle expressed in degrees, positive or negative, limited to one full rotation (0 to 360) /// - /// the angle in degrees public double Degrees => Radians * 180 / Math.PI; public static Angle FromDegrees(double degrees) => new Angle(degrees * Math.PI / 180); diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs index 8c7029c..e093636 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprite.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using VRage.Game.GUI.TextPanel; using VRageMath; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 85a1308..8a233e3 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using System.Collections.Generic; using System.Linq; using VRage.Game.GUI.TextPanel; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs index f1a3533..d20381f 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteLeaf.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using System; using VRage.Game.GUI.TextPanel; using VRageMath; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs index 501db77..7eb6926 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Sprites.cs @@ -1,8 +1,18 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using System; -using System.Collections.Generic; using System.Linq; -using VRage.Game.GUI.TextPanel; -using VRageMath; namespace IngameScript { diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs index 3c5a48f..fe0617c 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/Textures.cs @@ -1,3 +1,15 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ namespace IngameScript { public abstract class Textures diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs index 15bc410..d0a1fdf 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/ClippingSprite.cs @@ -1,4 +1,16 @@ -using System; +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using VRage.Game.GUI.TextPanel; using VRageMath; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs index d65e516..b3a16b7 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextSprite.cs @@ -1,4 +1,16 @@ -using System; +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using VRage.Game.GUI.TextPanel; using VRageMath; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs index 4798257..4280f50 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/atoms/TextureSprite.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using VRage.Game.GUI.TextPanel; using VRageMath; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs index 1888a17..ef292d9 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/molecules/SimpleSpriteGroup.cs @@ -1,3 +1,16 @@ +/* Copyright (c) 2026 Lelebees + This file is part of Sprite Composer. + + Sprite Composer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version. + + Sprite Composer 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with Sprite Composer. + If not, see . */ + using System.Collections.Generic; using System.Linq; diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme index ed30ab7..0b5aa2b 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/Instructions.readme @@ -1,5 +1,2 @@ -R e a d m e ------------ - -In this file you can include any instructions or other comments you want to have injected onto the -top of your final script. You can safely delete this file if you do not want any such comments. +This program uses SpriteComposer, which is licensed under the GNU LGPL 3.0 or later. You can find the source code and a copy of the license at +Copies of the license are also available at diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini index be46794..bd9cf79 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Demo/mdk.ini @@ -14,7 +14,7 @@ trace=off ; stripcomments: trim + removes comments. ; lite: stripcomments + removes leading/trailing whitespace. ; full: lite + renames identifiers to shorter names. -minify=none +minify=trim ; Extra options for minification. ; none: No extra options. From 6aef2f32ed85f88dcdffbf37fe8c3ee351b5a44b Mon Sep 17 00:00:00 2001 From: Lelebees Date: Fri, 15 May 2026 16:41:11 +0200 Subject: [PATCH 26/28] Fix the spiraling issue again --- .../src/sprite/SpriteGroup.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs index 8a233e3..e4130a1 100644 --- a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/Lelebees.MdkScriptMixin.SpriteCompositor/src/sprite/SpriteGroup.cs @@ -63,11 +63,15 @@ public void Rotate(Angle angle, Anchor positionAnchor = null) // it is VITALLY important to create a PointAnchor here. If we don't, // the process of rotating sprites could adjust this (or another) groups center, and therefore its position // this causes sprites to spiral away from the center of rotation. + if (positionAnchor == null) + { + positionAnchor = new PointAnchor(GetPosition()); + } if (positionAnchor is SpriteGroup) { positionAnchor = new PointAnchor(positionAnchor.GetPosition()); } - GetChildren().ForEach(sprite => sprite.Rotate(angle, positionAnchor ?? new PointAnchor(GetPosition()))); + GetChildren().ForEach(sprite => sprite.Rotate(angle, positionAnchor)); } public abstract Sprite Clone(); From be231f3bdca4fb6dcd40461b60c2ab4cc78ff26d Mon Sep 17 00:00:00 2001 From: Lelebees Date: Fri, 15 May 2026 16:48:43 +0200 Subject: [PATCH 27/28] Add test for previous bug --- .../src/SpriteGroupTest.cs | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs new file mode 100644 index 0000000..2f72e0f --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs @@ -0,0 +1,40 @@ +using FakeItEasy; +using IngameScript; +using NUnit.Framework; + +namespace SpriteCompositor.Test +{ + [TestFixture] + public class SpriteGroupTest + { + [Test] + public void RotateShouldPassNonNullAnchorToChildren() + { + var child1 = A.Fake(); + var child2 = A.Fake(); + + Anchor capturedAnchor1 = null; + Anchor capturedAnchor2 = null; + + A.CallTo(() => child1.Rotate(A._, A._)) + .Invokes((Angle _, Anchor anchor) => capturedAnchor1 = anchor); + + A.CallTo(() => child2.Rotate(A._, A._)) + .Invokes((Angle _, Anchor anchor) => capturedAnchor2 = anchor); + + var group = Sprites.Group(child1, child2); + + + group.Rotate(Angle.Right); + + Assert.That(capturedAnchor1, Is.Not.Null); + Assert.That(capturedAnchor2, Is.Not.Null); + + A.CallTo(() => child1.Rotate(A._, A._)) + .MustHaveHappenedOnceExactly(); + + A.CallTo(() => child2.Rotate(A._, A._)) + .MustHaveHappenedOnceExactly(); + } + } +} \ No newline at end of file From da436038c712d8cc595600ada1b79a8d8600b1f1 Mon Sep 17 00:00:00 2001 From: Lelebees Date: Fri, 15 May 2026 16:48:43 +0200 Subject: [PATCH 28/28] Add tests for previous bug --- .../src/SpriteGroupTest.cs | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs diff --git a/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs new file mode 100644 index 0000000..e206985 --- /dev/null +++ b/libraries/Lelebees.MdkScriptMixin.SpriteCompositor/SpriteCompositor.Test/src/SpriteGroupTest.cs @@ -0,0 +1,70 @@ +using FakeItEasy; +using IngameScript; +using NUnit.Framework; + +namespace SpriteCompositor.Test +{ + [TestFixture] + public class SpriteGroupTest + { + [Test] + public void RotateShouldPassNonNullAnchorToChildren() + { + var child1 = A.Fake(); + var child2 = A.Fake(); + + Anchor capturedAnchor1 = null; + Anchor capturedAnchor2 = null; + + A.CallTo(() => child1.Rotate(A._, A._)) + .Invokes((Angle _, Anchor anchor) => capturedAnchor1 = anchor); + + A.CallTo(() => child2.Rotate(A._, A._)) + .Invokes((Angle _, Anchor anchor) => capturedAnchor2 = anchor); + + var group = Sprites.Group(child1, child2); + + + group.Rotate(Angle.Right); + + Assert.That(capturedAnchor1, Is.Not.Null); + Assert.That(capturedAnchor2, Is.Not.Null); + + A.CallTo(() => child1.Rotate(A._, A._)) + .MustHaveHappenedOnceExactly(); + + A.CallTo(() => child2.Rotate(A._, A._)) + .MustHaveHappenedOnceExactly(); + } + + [Test] + public void RotateShouldNotPassSelfAsAnchor() + { + var child1 = A.Fake(); + var child2 = A.Fake(); + + Anchor capturedAnchor1 = null; + Anchor capturedAnchor2 = null; + + A.CallTo(() => child1.Rotate(A._, A._)) + .Invokes((Angle _, Anchor anchor) => capturedAnchor1 = anchor); + + A.CallTo(() => child2.Rotate(A._, A._)) + .Invokes((Angle _, Anchor anchor) => capturedAnchor2 = anchor); + + var group = Sprites.Group(child1, child2); + + + group.Rotate(Angle.Right); + + Assert.That(capturedAnchor1, Is.Not.EqualTo(group)); + Assert.That(capturedAnchor2, Is.Not.EqualTo(group)); + + A.CallTo(() => child1.Rotate(A._, A._)) + .MustHaveHappenedOnceExactly(); + + A.CallTo(() => child2.Rotate(A._, A._)) + .MustHaveHappenedOnceExactly(); + } + } +} \ No newline at end of file