godot/modules/mono/editor/GodotTools
Ignacio Etcheverry e2afe700f6 Add C# source generator for a new ScriptPath attribute
This source generator adds a newly introduced attribute,
`ScriptPath` to all classes that:

- Are top-level classes (not inner/nested).
- Have the `partial` modifier.
- Inherit `Godot.Object`.
- The class name matches the file name.

A build error is thrown if the generator finds a class that meets these
conditions but is not declared `partial`, unless the class is annotated
with the `DisableGodotGenerators` attribute.

We also generate an `AssemblyHasScripts` assembly attribute which Godot
uses to get all the script classes in the assembly, eliminating the need
for Godot to search them. We can also avoid searching in assemblies that
don't have this attribute. This will be good for performance in the
future once we support multiple assemblies with Godot script classes.

This is an example of what the generated code looks like:

```
using Godot;
namespace Foo {
	[ScriptPathAttribute("res://Player.cs")]
	// Multiple partial declarations are allowed
	[ScriptPathAttribute("res://Foo/Player.cs")]
	partial class Player {}
}

[assembly:AssemblyHasScripts(new System.Type[] { typeof(Foo.Player) })]
```

The new attributes replace script metadata which we were generating by
determining the namespace of script classes with a very simple parser.
This fixes several issues with the old approach related to parser
errors and conditional compilation.
It also makes the task part of the MSBuild project build, rather than
a separate step executed by the Godot editor.
2021-03-06 21:50:32 +01:00
..
GodotTools Add C# source generator for a new ScriptPath attribute 2021-03-06 21:50:32 +01:00
GodotTools.BuildLogger C#: Re-work solution build output panel 2020-10-23 07:49:39 +02:00
GodotTools.Core C#: Fix csproj not synced on file move/removal from FS dock 2020-09-13 03:46:27 +02:00
GodotTools.IdeMessaging Rename the ".mono" folder to ".godot/mono" 2020-09-23 15:42:29 -04:00
GodotTools.IdeMessaging.CLI Commit other files changed by file_format.sh 2020-07-13 14:14:11 -04:00
GodotTools.OpenVisualStudio Commit other files changed by file_format.sh 2020-07-13 14:14:11 -04:00
GodotTools.ProjectEditor Add C# source generator for a new ScriptPath attribute 2021-03-06 21:50:32 +01:00
GodotTools.Shared Add C# source generator for a new ScriptPath attribute 2021-03-06 21:50:32 +01:00
.gitignore Re-write mono module editor code in C# 2019-07-05 09:38:23 +02:00
GodotTools.sln C#: Make editor create NuGet fallback folder for Godot packages 2020-10-23 10:54:49 +02:00