godot/main
Andrii Doroshenko (Xrayez) 133997654c Add custom_modules build option to compile external user modules
This patch adds ability to include external, user-defined C++ modules
to be compiled as part of Godot via `custom_modules` build option
which can be passed to `scons`.

```
scons platform=x11 tools=yes custom_modules="../project/modules"
```

Features:

- detects all available modules under `custom_modules` directory the
same way as it does for built-in modules (not recursive);
- works with both relative and absolute paths on the filesystem;
- multiple search paths can be specified as a comma-separated list.

Module custom documentation and editor icons collection and generation
process is adapted to work with absolute paths needed by such modules.
Also fixed doctool bug mixing absolute and relative paths respectively.

Implementation details:

- `env.module_list` is a dictionary now, which holds both module name as
  key and either a relative or absolute path to a module as a value.
- `methods.detect_modules` is run twice: once for built-in modules, and
  second for external modules, all combined later.
- `methods.detect_modules` was not doing what it says on the tin. It is
  split into `detect_modules` which collects a list of available modules
  and `write_modules` which generates `register_types` sources for each.
- whether a module is built-in or external is distinguished by relative
  or absolute paths respectively. `custom_modules` scons converter
  ensures that the path is absolute even if relative path is supplied,
  including expanding user paths and symbolic links.
- treats the parent directory as if it was Godot's base directory, so
  that there's no need to change include paths in cases where custom
  modules are included as dependencies in other modules.

(cherry picked from commit a96f0e98d7)
2020-05-25 17:08:38 +03:00
..
tests Fix leaks and crashes in OAHashMap 2020-05-18 14:02:49 +02:00
app_icon.png Optimize images losslessly using oxipng -o6 --strip all --zopfli 2018-06-28 19:17:41 +02:00
default_controller_mappings.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
gamecontrollerdb.txt Sync controller mappings DB with SDL2 community repo 2020-01-26 17:59:15 +01:00
godotcontrollerdb.txt Input: Readd 'Default Android Gamepad' magic binding 2020-05-11 11:22:21 +02:00
input_default.cpp Gamepad: Parse SDL_GAMECONTROLLERCONFIG env after default mappings 2020-01-08 11:43:44 +01:00
input_default.h Input: make VibrationInfo protected to allow implementors to use it 2020-05-01 10:56:58 +02:00
main.cpp Add custom_modules build option to compile external user modules 2020-05-25 17:08:38 +03:00
main.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
main_builders.py Use base Color() constructors instead of Color::html() 2019-07-08 21:17:10 +02:00
main_timer_sync.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
main_timer_sync.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
performance.cpp Items and draw calls added to IDE Monitor in '2d' section 2020-04-16 11:52:22 +01:00
performance.h Items and draw calls added to IDE Monitor in '2d' section 2020-04-16 11:52:22 +01:00
SCsub Input: Drop obsolete versions of SDL gamecontrollerdb 2020-05-01 10:56:58 +02:00
splash.png Optimize images losslessly using oxipng -o6 --strip all --zopfli 2019-10-12 23:23:33 +02:00
splash_editor.png Update AUTHORS and DONORS list 2019-12-13 13:50:33 +01:00