pandemonium_engine_docs/usage/plugins/editor/import_plugins.md

433 lines
16 KiB
Markdown
Raw Normal View History

2023-01-12 20:49:14 +01:00
Import plugins
==============
2023-01-12 20:55:57 +01:00
Note:
This tutorial assumes you already know how to make generic plugins. If
2023-01-12 19:29:11 +01:00
in doubt, refer to the `doc_making_plugins` page. This also
2024-03-16 20:56:52 +01:00
assumes you are acquainted with Pandemonium's import system.
Introduction
------------
An import plugin is a special type of editor tool that allows custom resources
2024-03-16 20:56:52 +01:00
to be imported by Pandemonium and be treated as first-class resources. The editor
itself comes bundled with a lot of import plugins to handle the common resources
like PNG images, Collada and glTF models, Ogg Vorbis sounds, and many more.
This tutorial will show you how to create a simple import plugin to load a
custom text file as a material resource. This text file will contain three
numeric values separated by comma, which represents the three channels of a
color, and the resulting color will be used as the albedo (main color) of the
imported material. In this example it will contain the pure blue color
(zero red, zero green, and full blue):
2023-01-12 22:32:46 +01:00
```
0,0,255
2023-01-12 22:32:46 +01:00
```
Configuration
-------------
First we need a generic plugin that will handle the initialization and
2023-01-12 19:43:03 +01:00
destruction of our import plugin. Let's add the `plugin.cfg` file first:
2023-01-12 22:32:46 +01:00
```
[plugin]
name="Silly Material Importer"
description="Imports a 3D Material from an external text file."
author="Yours Truly"
version="1.0"
script="material_import.gd"
2023-01-12 22:32:46 +01:00
```
2023-01-12 19:43:03 +01:00
Then we need the `material_import.gd` file to add and remove the import plugin
when needed:
2023-01-12 22:32:46 +01:00
```
# material_import.gd
tool
extends EditorPlugin
var import_plugin
func _enter_tree():
import_plugin = preload("import_plugin.gd").new()
add_import_plugin(import_plugin)
func _exit_tree():
remove_import_plugin(import_plugin)
import_plugin = null
2023-01-12 22:32:46 +01:00
```
When this plugin is activated, it will create a new instance of the import
plugin (which we'll soon make) and add it to the editor using the
2023-01-12 19:30:47 +01:00
`add_import_plugin()` method. We store
2023-01-12 19:43:03 +01:00
a reference to it in a class member `import_plugin` so we can refer to it
later when removing it. The
2023-01-12 19:30:47 +01:00
`remove_import_plugin()` method is
called when the plugin is deactivated to clean up the memory and let the editor
know the import plugin isn't available anymore.
Note that the import plugin is a reference type, so it doesn't need to be
2023-01-12 19:43:03 +01:00
explicitly released from memory with the `free()` function. It will be
released automatically by the engine when it goes out of scope.
The EditorImportPlugin class
----------------------------
The main character of the show is the
2023-01-12 19:30:47 +01:00
`EditorImportPlugin class`. It is responsible for
2024-03-16 20:56:52 +01:00
implementing the methods that are called by Pandemonium when it needs to know how to deal
with files.
Let's begin to code our plugin, one method at time:
2023-01-12 22:32:46 +01:00
```
# import_plugin.gd
tool
extends EditorImportPlugin
func get_importer_name():
return "demos.sillymaterial"
2023-01-12 22:32:46 +01:00
```
The first method is the
2023-01-12 20:47:54 +01:00
`get_importer_name()( EditorImportPlugin_method_get_importer_name )`. This is a
2024-03-16 20:56:52 +01:00
unique name for your plugin that is used by Pandemonium to know which import was used
in a certain file. When the files needs to be reimported, the editor will know
which plugin to call.
2023-01-12 22:32:46 +01:00
```
func get_visible_name():
return "Silly Material"
2023-01-12 22:32:46 +01:00
```
2023-01-12 20:47:54 +01:00
The `get_visible_name()( EditorImportPlugin_method_get_visible_name )` method is
responsible for returning the name of the type it imports and it will be shown to the
user in the Import dock.
You should choose this name as a continuation to "Import as", e.g. *"Import as
Silly Material"*. You can name it whatever you want but we recommend a
descriptive name for your plugin.
2023-01-12 22:32:46 +01:00
```
func get_recognized_extensions():
return ["mtxt"]
2023-01-12 22:32:46 +01:00
```
2024-03-16 20:56:52 +01:00
Pandemonium's import system detects file types by their extension. In the
2023-01-12 20:47:54 +01:00
`get_recognized_extensions()( EditorImportPlugin_method_get_recognized_extensions )`
method you return an array of strings to represent each extension that this
plugin can understand. If an extension is recognized by more than one plugin,
the user can select which one to use when importing the files.
2023-01-12 21:01:51 +01:00
Tip:
Common extensions like `.json` and `.txt` might be used by many
plugins. Also, there could be files in the project that are just data
for the game and should not be imported. You have to be careful when
importing to validate the data. Never expect the file to be well-formed.
2023-01-12 22:32:46 +01:00
```
func get_save_extension():
return "material"
2023-01-12 22:32:46 +01:00
```
2023-01-12 19:43:03 +01:00
The imported files are saved in the `.import` folder at the project's root.
Their extension should match the type of resource you are importing, but since
2024-03-16 20:56:52 +01:00
Pandemonium can't tell what you'll use (because there might be multiple valid
extensions for the same resource), you need to declare what will be used in
the import.
Since we're importing a Material, we'll use the special extension for such
2023-01-12 19:43:03 +01:00
resource types. If you are importing a scene, you can use `scn`. Generic
resources can use the `res` extension. However, this is not enforced in any
way by the engine.
2023-01-12 22:32:46 +01:00
```
func get_resource_type():
return "SpatialMaterial"
2023-01-12 22:32:46 +01:00
```
The imported resource has a specific type, so the editor can know which property
slot it belongs to. This allows drag and drop from the FileSystem dock to a
property in the Inspector.
2023-01-12 19:32:38 +01:00
In our case it's a `SpatialMaterial`, which can be applied to 3D
objects.
2023-01-12 20:55:57 +01:00
Note:
If you need to import different types from the same extension, you
have to create multiple import plugins. You can abstract the import
code on another file to avoid duplication in this regard.
Options and presets
-------------------
Your plugin can provide different options to allow the user to control how the
resource will be imported. If a set of selected options is common, you can also
create different presets to make it easier for the user. The following image
shows how the options will appear in the editor:
2023-01-12 20:16:00 +01:00
![](img/import_plugin_options.png)
Since there might be many presets and they are identified with a number, it's a
good practice to use an enum so you can refer to them using names.
2023-01-12 22:32:46 +01:00
```
tool
extends EditorImportPlugin
enum Presets { DEFAULT }
...
2023-01-12 22:32:46 +01:00
```
Now that the enum is defined, let's keep looking at the methods of an import
plugin:
2023-01-12 22:32:46 +01:00
```
func get_preset_count():
return Presets.size()
2023-01-12 22:32:46 +01:00
```
2023-01-12 19:30:47 +01:00
The `get_preset_count()` method
returns the amount of presets that this plugins defines. We only have one preset
now, but we can make this method future-proof by returning the size of our
2023-01-12 19:43:03 +01:00
`Presets` enumeration.
2023-01-12 22:32:46 +01:00
```
func get_preset_name(preset):
match preset:
Presets.DEFAULT:
return "Default"
_:
return "Unknown"
2023-01-12 22:32:46 +01:00
```
Here we have the
2023-01-12 19:30:47 +01:00
`get_preset_name()` method, which
gives names to the presets as they will be presented to the user, so be sure to
use short and clear names.
2023-01-12 19:43:03 +01:00
We can use the `match` statement here to make the code more structured. This
way it's easy to add new presets in the future. We use the catch all pattern to
2024-03-16 20:56:52 +01:00
return something too. Although Pandemonium won't ask for presets beyond the preset
count you defined, it's always better to be on the safe side.
If you have only one preset you could simply return its name directly, but if
you do this you have to be careful when you add more presets.
2023-01-12 22:32:46 +01:00
```
func get_import_options(preset):
match preset:
Presets.DEFAULT:
return [{
"name": "use_red_anyway",
"default_value": false
}]
_:
return []
2023-01-12 22:32:46 +01:00
```
This is the method which defines the available options.
2023-01-12 19:30:47 +01:00
`get_import_options()` returns
an array of dictionaries, and each dictionary contains a few keys that are
checked to customize the option as its shown to the user. The following table
shows the possible keys:
+-------------------+------------+----------------------------------------------------------------------------------------------------------+
| Key | Type | Description |
+===================+============+==========================================================================================================+
2023-01-12 19:43:03 +01:00
| `name` | String | The name of the option. When showed, underscores become spaces and first letters are capitalized. |
+-------------------+------------+----------------------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `default_value` | Any | The default value of the option for this preset. |
+-------------------+------------+----------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `property_hint` | Enum value | One of the `PropertyHint <enum_@GlobalScope_PropertyHint )` values to use as hint. |
+-------------------+------------+----------------------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
| `hint_string` | String | The hint text of the property. The same as you'd add in the `export` statement in GDScript. |
+-------------------+------------+----------------------------------------------------------------------------------------------------------+
2023-01-12 20:39:50 +01:00
| `usage` | Enum value | One of the `PropertyUsageFlags <enum_@GlobalScope_PropertyUsageFlags )` values to define the usage. |
+-------------------+------------+----------------------------------------------------------------------------------------------------------+
2023-01-12 19:43:03 +01:00
The `name` and `default_value` keys are **mandatory**, the rest are optional.
2023-01-12 19:43:03 +01:00
Note that the `get_import_options` method receives the preset number, so you
can configure the options for each different preset (especially the default
2023-01-12 19:43:03 +01:00
value). In this example we use the `match` statement, but if you have lots of
options and the presets only change the value you may want to create the array
of options first and then change it based on the preset.
2023-01-12 20:55:57 +01:00
Warning:
The `get_import_options` method is called even if you don't
2023-01-12 19:43:03 +01:00
define presets (by making `get_preset_count` return zero). You
have to return an array even it's empty, otherwise you can get
errors.
2023-01-12 22:32:46 +01:00
```
func get_option_visibility(option, options):
return true
2023-01-12 22:32:46 +01:00
```
For the
2023-01-12 19:30:47 +01:00
`get_option_visibility()`
2023-01-12 19:43:03 +01:00
method, we simply return `true` because all of our options (i.e. the single
one we defined) are visible all the time.
If you need to make certain option visible only if another is set with a certain
value, you can add the logic in this method.
2023-01-12 19:43:03 +01:00
The `import` method
---------------------
The heavy part of the process, responsible for converting the files into
2023-01-12 19:30:47 +01:00
resources, is covered by the `import()`
method. Our sample code is a bit long, so let's split in a few parts:
2023-01-12 22:32:46 +01:00
```
func import(source_file, save_path, options, r_platform_variants, r_gen_files):
var file = File.new()
var err = file.open(source_file, File.READ)
if err != OK:
return err
var line = file.get_line()
file.close()
2023-01-12 22:32:46 +01:00
```
The first part of our import method opens and reads the source file. We use the
2023-01-12 19:43:03 +01:00
`File` class to do that, passing the `source_file`
parameter which is provided by the editor.
If there's an error when opening the file, we return it to let the editor know
that the import wasn't successful.
2023-01-12 22:32:46 +01:00
```
var channels = line.split(",")
if channels.size() != 3:
return ERR_PARSE_ERROR
var color
if options.use_red_anyway:
color = Color8(255, 0, 0)
else:
color = Color8(int(channels[0]), int(channels[1]), int(channels[2]))
2023-01-12 22:32:46 +01:00
```
This code takes the line of the file it read before and splits it in pieces
that are separated by a comma. If there are more or less than the three values,
it considers the file invalid and reports an error.
2023-01-12 19:30:47 +01:00
Then it creates a new `Color` variable and sets its values
2023-01-12 19:43:03 +01:00
according to the input file. If the `use_red_anyway` option is enabled, then
it sets the color as a pure red instead.
2023-01-12 22:32:46 +01:00
```
var material = SpatialMaterial.new()
material.albedo_color = color
2023-01-12 22:32:46 +01:00
```
2023-01-12 19:30:47 +01:00
This part makes a new `SpatialMaterial` that is the
imported resource. We create a new instance of it and then set its albedo color
as the value we got before.
2023-01-12 22:32:46 +01:00
```
return ResourceSaver.save("%s.%s" % [save_path, get_save_extension()], material)
2023-01-12 22:32:46 +01:00
```
This is the last part and quite an important one, because here we save the made
resource to the disk. The path of the saved file is generated and informed by
2023-01-12 19:43:03 +01:00
the editor via the `save_path` parameter. Note that this comes **without** the
2023-01-12 20:47:54 +01:00
extension, so we add it using `string formatting ( doc_gdscript_printf )`. For
2023-01-12 19:43:03 +01:00
this we call the `get_save_extension` method that we defined earlier, so we
can be sure that they won't get out of sync.
We also return the result from the
2023-01-12 19:30:47 +01:00
`ResourceSaver.save()` method, so if there's an
error in this step, the editor will know about it.
Platform variants and generated files
-------------------------------------
2023-01-12 19:43:03 +01:00
You may have noticed that our plugin ignored two arguments of the `import`
method. Those are *return arguments* (hence the `r` at the beginning of their
name), which means that the editor will read from them after calling your import
method. Both of them are arrays that you can fill with information.
2023-01-12 19:43:03 +01:00
The `r_platform_variants` argument is used if you need to import the resource
differently depending on the target platform. While it's called *platform*
2023-01-12 20:47:54 +01:00
variants, it is based on the presence of `feature tags ( doc_feature_tags )`,
so even the same platform can have multiple variants depending on the setup.
To import a platform variant, you need to save it with the feature tag before
2023-01-12 19:43:03 +01:00
the extension, and then push the tag to the `r_platform_variants` array so the
editor can know that you did.
For example, let's say we save a different material for a mobile platform. We
would need to do something like the following:
2023-01-12 22:32:46 +01:00
```
r_platform_variants.push_back("mobile")
return ResourceSaver.save("%s.%s.%s" % [save_path, "mobile", get_save_extension()], mobile_material)
2023-01-12 22:32:46 +01:00
```
2023-01-12 19:43:03 +01:00
The `r_gen_files` argument is meant for extra files that are generated during
your import process and need to be kept. The editor will look at it to
understand the dependencies and make sure the extra file is not inadvertently
deleted.
This is also an array and should be filled with full paths of the files you
save. As an example, let's create another material for the next pass and save it
in a different file:
2023-01-12 22:32:46 +01:00
```
var next_pass = SpatialMaterial.new()
next_pass.albedo_color = color.inverted()
var next_pass_path = "%s.next_pass.%s" % [save_path, get_save_extension()]
err = ResourceSaver.save(next_pass_path, next_pass)
if err != OK:
return err
r_gen_files.push_back(next_pass_path)
2023-01-12 22:32:46 +01:00
```
Trying the plugin
-----------------
This has been theoretical, but now that the import plugin is done, let's
test it. Make sure you created the sample file (with the contents described in
2023-01-12 19:43:03 +01:00
the introduction section) and save it as `test.mtxt`. Then activate the plugin
in the Project Settings.
If everything goes well, the import plugin is added to the editor and the file
system is scanned, making the custom resource appear on the FileSystem dock. If
you select it and focus the Import dock, you can see the only option to select
there.
Create a MeshInstance node in the scene, and for its Mesh property set up a new
SphereMesh. Unfold the Material section in the Inspector and then drag the file
from the FileSystem dock to the material property. The object will update in the
viewport with the blue color of the imported material.
2023-01-12 20:16:00 +01:00
![](img/import_plugin_trying.png)
Go to Import dock, enable the "Use Red Anyway" option, and click on "Reimport".
This will update the imported material and should automatically update the view
showing the red color instead.
And that's it! Your first import plugin is done! Now get creative and make
plugins for your own beloved formats. This can be quite useful to write your
2024-03-16 20:56:52 +01:00
data in a custom format and then use it in Pandemonium as if they were native
resources. This shows how the import system is powerful and extendable.