Arch.System.SourceGenerator
1.0.0
See the version list below for details.
dotnet add package Arch.System.SourceGenerator --version 1.0.0
NuGet\Install-Package Arch.System.SourceGenerator -Version 1.0.0
<PackageReference Include="Arch.System.SourceGenerator" Version="1.0.0" />
paket add Arch.System.SourceGenerator --version 1.0.0
#r "nuget: Arch.System.SourceGenerator, 1.0.0"
// Install Arch.System.SourceGenerator as a Cake Addin #addin nuget:?package=Arch.System.SourceGenerator&version=1.0.0 // Install Arch.System.SourceGenerator as a Cake Tool #tool nuget:?package=Arch.System.SourceGenerator&version=1.0.0
Arch.Extended
Extensions for Arch with some useful features like Systems, Source Generator and Utils.
- 🛠️ Productive > Adds some useful tools and features to the main repository!
- ☕️ SIMPLE > Works easily, reliably and understandably!
- 💪 MAINTAINED > It's actively being worked on, maintained, and supported!
- 🚢 SUPPORT > Supports .NetStandard 2.1, .Net Core 6 and 7 and therefore you may use it with Unity or Godot!
Features & Tools
- ⚙️ Systems > By means of systems, it is now easy to organize, reuse and arrange queries.
- ✍️ Source Generator > Declarative syntax using attributes and source generator, let your queries write themselves!
Systems Code sample
The Arch.System package provides a number of useful classes to organize and structure queries. These are organized into "systems" and can also be grouped.
The example below demonstrates a slightly larger code sample
// Components ( ignore the formatting, this saves space )
public struct Position{ float X, Y };
public struct Velocity{ float Dx, Dy };
// BaseSystem provides several usefull methods for interacting and structuring systems
public class MovementSystem : BaseSystem<World, float>{
private QueryDescription _desc = new QueryDescription().WithAll<Position, Velocity>();
public MovementSystem(World world) : base(world) {}
// Can be called once per frame
public override void Update(in float deltaTime)
{
// Run query, can also run multiple queries inside the update
World.Query(in _desc, (ref Position pos, ref Velocity vel) => {
pos.X += vel.X;
pos.Y += vel.Y;
});
}
}
public class Game
{
public static void Main(string[] args)
{
var deltaTime = 0.05f; // This is mostly given by engines, frameworks
// Create a world and a group of systems which will be controlled
var world = World.Create();
var _systems = new Group<float>(
new MovementSystem(world), // Run in order
new MyOtherSystem(...),
...
);
_systems.Initialize(); // Inits all registered systems
_systems.BeforeUpdate(in deltaTime); // Calls .BeforeUpdate on all systems ( can be overriden )
_systems.Update(in deltaTime); // Calls .Update on all systems ( can be overriden )
_systems.AfterUpdate(in deltaTime); // Calls .AfterUpdate on all System ( can be overriden )
_systems.Dispose(); // Calls .Dispose on all systems ( can be overriden )
}
}
Systems source generator
The Arch.System.SourceGenerator provides some code generation utils. With them, queries within systems can be written virtually by themselves and it saves some boilerplate code.
The only thing you have to pay attention to is that the system class is partial and inherits from BaseSystem. The attributes can be used to meaningfully describe what query to generate, and the query will always call the annotated method.
// Components ( ignore the formatting, this saves space )
public struct Position{ float X, Y };
public struct Velocity{ float Dx, Dy };
// BaseSystem provides several usefull methods for interacting and structuring systems
public partial class MovementSystem : BaseSystem<World, float>{
public MovementSystem(World world) : base(world) {}
// Generates a query and calls this annotated method for all entities with position and velocity components.
[Update]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void MoveEntity(ref Position pos, ref Velocity vel)
{
pos.X += vel.X;
pos.Y += vel.Y;
}
/// Generates a query and calls this method for all entities with position, velocity, player, mob, particle, either moving or idle and no dead component.
/// All, Any, None are seperate attributes and do not require each other.
[Update]
[All<Player, Mob, Particle>, Any<Moving, Idle>, None<Dead>]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void MoveEntityWithConstraints(ref Position pos, ref Velocity vel)
{
pos.X += vel.X;
pos.Y += vel.Y;
}
}
If you use the source generator and its attributes in a class that does not override BaseSystem.Update
, this method is implemented by the source generator itself.
If the method is already implemented by the user, only "query" methods are generated, which you can call yourself.
public partial class MovementSystem : BaseSystem<World, GameTime>
{
private readonly QueryDescription _customQuery = new QueryDescription().WithAll<Position, Velocity>();
public DebugSystem(World world) : base(world) { }
public override void Update(in GameTime t)
{
World.Query(in _customQuery, (in Entity entity) => Console.WriteLine($"Custom : {entity}")); // Manual query
MoveEntityQuery(); // Call source generated query, which calls the MoveEntity method
}
[Update]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void MoveEntity(ref Position pos, ref Velocity vel)
{
pos.X += vel.X;
pos.Y += vel.Y;
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Arch.System.SourceGenerator:
Repository | Stars |
---|---|
Doraku/Ecs.CSharp.Benchmark
Benchmarks of some C# ECS frameworks.
|
Version | Downloads | Last updated |
---|---|---|
1.2.1 | 4,175 | 4/29/2024 |
1.2.0 | 113 | 4/29/2024 |
1.1.4 | 1,821 | 2/15/2024 |
1.1.2 | 567 | 9/21/2023 |
1.1.0 | 633 | 4/15/2023 |
1.0.9 | 258 | 3/13/2023 |
1.0.8 | 225 | 3/13/2023 |
1.0.7 | 314 | 1/29/2023 |
1.0.6 | 339 | 1/19/2023 |
1.0.5 | 305 | 1/18/2023 |
1.0.4 | 312 | 1/12/2023 |
1.0.3 | 282 | 1/12/2023 |
1.0.2 | 299 | 1/12/2023 |
1.0.1 | 317 | 1/8/2023 |
1.0.0 | 328 | 1/8/2023 |
Release.