Merge pull request #158 from BastiaanOlij/new_docs
New documentation based on nativescript 1.1pull/162/head
commit
915bc295bd
147
README.md
147
README.md
|
@ -1,62 +1,91 @@
|
||||||
# godot-cpp
|
# godot-cpp
|
||||||
C++ bindings for the Godot script API
|
C++ bindings for the Godot script API
|
||||||
|
|
||||||
# Creating a GDNative library (Linux)
|
Note that the master branch in this repository is for use with Godot build from its latest master.
|
||||||
Create a directory named `SimpleLibrary` with subdirectories `lib, src`
|
If you need to support older versions of Godot use the relevant branch for that version in this repository.
|
||||||
|
|
||||||
|
The instructions below feature the new NativeScript 1.1 class structure and will only work for modules created for Godot 3.1 and later.
|
||||||
|
|
||||||
|
- [**Getting Started**](#getting-started)
|
||||||
|
- [**Creating a simple class**](#creating-a-simple-class)
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
| **Build latest version of Godot** | [**GitHub**](https://github.com/godotengine/godot) | [**Docs**](https://godot.readthedocs.io/en/latest/development/compiling/index.html) |
|
||||||
|
| --- | --- | --- |
|
||||||
|
|
||||||
|
### Setting up a new project
|
||||||
|
|
||||||
|
We recommend using git for managing your project and the instructions below assume so. Alternatively you can download the source code directly from GitHub in which case you need to download both [godot-cpp](https://github.com/GodotNativeTools/godot-cpp) and [godot_headers](https://github.com/GodotNativeTools/godot_headers).
|
||||||
|
|
||||||
Getting latest `godot-cpp` and `godot_headers`
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/GodotNativeTools/godot-cpp
|
$ mkdir SimpleLibrary
|
||||||
$ git clone https://github.com/GodotNativeTools/godot_headers
|
$ cd SimpleLibrary
|
||||||
```
|
$ mkdir bin
|
||||||
right now our directory structure should look like this:
|
$ mkdir src
|
||||||
```
|
$ git clone --recursive https://github.com/GodotNativeTools/godot-cpp
|
||||||
godot-cpp
|
|
||||||
godot_headers
|
|
||||||
SimpleLibrary
|
|
||||||
├── lib/
|
|
||||||
└── src/
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Now to generate cpp bindings
|
Note that if you wish to use a specific branch, add the -b option to the clone command:
|
||||||
|
```
|
||||||
|
$ git clone --recursive https://github.com/GodotNativeTools/godot-cpp -b 3.0
|
||||||
|
```
|
||||||
|
|
||||||
|
Right now our directory structure should look like this:
|
||||||
|
```
|
||||||
|
SimpleLibrary/
|
||||||
|
├─godot-cpp/
|
||||||
|
| └─godot_headers/
|
||||||
|
├─bin/
|
||||||
|
└─src/
|
||||||
|
```
|
||||||
|
|
||||||
|
### Updating the api.json
|
||||||
|
Our api.json file contains meta data of all the classes that are part of the Godot core and are needed to generate the C++ binding classes for use in GDNative modules.
|
||||||
|
|
||||||
|
A file is supplied in our repository for your convinience but if you are running a custom build of Godot and need access to classes that have recent changes a new api.json file must be generated. You do this by starting your Godot executable with the following parameters:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ godot --gdnative-generate-json-api api.json
|
||||||
|
```
|
||||||
|
|
||||||
|
Now copy the api.json file into your folder structure so its easy to access.
|
||||||
|
|
||||||
|
### Compiling the cpp bindings library
|
||||||
|
The final step is to compile our cpp bindings library:
|
||||||
```
|
```
|
||||||
$ cd godot-cpp
|
$ cd godot-cpp
|
||||||
$ scons godotbinpath="../godot_fork/bin/godot_binary" p=linux
|
$ scons platform=<your platform> generate_bindings=yes
|
||||||
$ cd ..
|
$ cd ..
|
||||||
```
|
```
|
||||||
resulting libraries will be placed under `bin/` and the generated headers will be placed under `include/*`
|
|
||||||
|
|
||||||
**Note:**
|
> Replace `<your platform>` with either `windows`, `linux` or `osx`.
|
||||||
> `generate_bindings=yes` is used to force regenerating C++ bindings (`godot_api.json` - Godot API)
|
|
||||||
|
|
||||||
> Include `use_llvm=yes` for using clang++
|
> Include `use_llvm=yes` for using clang++
|
||||||
|
|
||||||
> You may need to specify `headers=../godot_headers` if you have compilation issues related to missing include files
|
> Include `target=runtime` to build a runtime build (windows only at the moment)
|
||||||
|
|
||||||
And our directory structure will be
|
> The resulting library will be created in `godot-cpp/bin/`, take note of its name as it will be different depending on platform.
|
||||||
```
|
|
||||||
godot-cpp
|
|
||||||
└── bin/libgodot-cpp.a
|
|
||||||
godot_headers
|
|
||||||
SimpleLibrary
|
|
||||||
├── lib/
|
|
||||||
└── src/
|
|
||||||
```
|
|
||||||
|
|
||||||
# Creating simple class
|
> If you want to use an alternative api.json file add `use_custom_api_file=yes custom_api_file=../api.json`, be sure to specify the correct location of where you placed your file.
|
||||||
|
|
||||||
|
## Creating a simple class
|
||||||
|
|
||||||
Create `init.cpp` under `SimpleLibrary/src/` and add the following code
|
Create `init.cpp` under `SimpleLibrary/src/` and add the following code
|
||||||
```cpp
|
```cpp
|
||||||
#include <core/Godot.hpp>
|
#include <Godot.hpp>
|
||||||
#include <Reference.hpp>
|
#include <Reference.hpp>
|
||||||
|
|
||||||
using namespace godot;
|
using namespace godot;
|
||||||
|
|
||||||
class SimpleClass : public GodotScript<Reference> {
|
class SimpleClass : public Reference {
|
||||||
GODOT_CLASS(SimpleClass);
|
GODOT_CLASS(SimpleClass, Reference);
|
||||||
public:
|
public:
|
||||||
SimpleClass() { }
|
SimpleClass() { }
|
||||||
|
|
||||||
|
/* _init must exist as it is called by Godot */
|
||||||
|
void _init() { }
|
||||||
|
|
||||||
void test_void_method() {
|
void test_void_method() {
|
||||||
Godot::print("This is test");
|
Godot::print("This is test");
|
||||||
}
|
}
|
||||||
|
@ -75,7 +104,10 @@ public:
|
||||||
* How to register exports like gdscript
|
* How to register exports like gdscript
|
||||||
* export var _name = "SimpleClass"
|
* export var _name = "SimpleClass"
|
||||||
**/
|
**/
|
||||||
register_property((char *)"base/name", &SimpleClass::_name, String("SimpleClass"));
|
register_property<SimpleClass, String>("base/name", &SimpleClass::_name, String("SimpleClass"));
|
||||||
|
|
||||||
|
/* or alternatively with getter and setter methods */
|
||||||
|
register_property<SimpleClass, int>("base/value", &SimpleClass::set_value, &SimpleClass::get_value, 0);
|
||||||
|
|
||||||
/** For registering signal **/
|
/** For registering signal **/
|
||||||
// register_signal<SimpleClass>("signal_name");
|
// register_signal<SimpleClass>("signal_name");
|
||||||
|
@ -83,41 +115,66 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
String _name;
|
String _name;
|
||||||
|
int _value;
|
||||||
|
|
||||||
|
void set_value(int p_value) {
|
||||||
|
_value = p_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
int get_value() const {
|
||||||
|
return _value;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/** GDNative Initialize **/
|
/** GDNative Initialize **/
|
||||||
extern "C" void GDN_EXPORT godot_gdnative_init(godot_gdnative_init_options *o)
|
extern "C" void GDN_EXPORT godot_gdnative_init(godot_gdnative_init_options *o) {
|
||||||
{
|
|
||||||
godot::Godot::gdnative_init(o);
|
godot::Godot::gdnative_init(o);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** GDNative Terminate **/
|
/** GDNative Terminate **/
|
||||||
extern "C" void GDN_EXPORT godot_gdnative_terminate(godot_gdnative_terminate_options *o)
|
extern "C" void GDN_EXPORT godot_gdnative_terminate(godot_gdnative_terminate_options *o) {
|
||||||
{
|
|
||||||
godot::Godot::gdnative_terminate(o);
|
godot::Godot::gdnative_terminate(o);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** NativeScript Initialize **/
|
/** NativeScript Initialize **/
|
||||||
extern "C" void GDN_EXPORT godot_nativescript_init(void *handle)
|
extern "C" void GDN_EXPORT godot_nativescript_init(void *handle) {
|
||||||
{
|
|
||||||
godot::Godot::nativescript_init(handle);
|
godot::Godot::nativescript_init(handle);
|
||||||
|
|
||||||
godot::register_class<SimpleClass>();
|
godot::register_class<SimpleClass>();
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
# Compiling
|
### Compiling
|
||||||
|
|
||||||
|
*Linux*
|
||||||
```
|
```
|
||||||
$ cd SimpleLibrary
|
$ cd SimpleLibrary
|
||||||
$ clang -fPIC -o src/init.os -c src/init.cpp -g -O3 -std=c++14 -I../godot-cpp/include -Igodot_headers
|
$ clang -fPIC -o src/init.os -c src/init.cpp -g -O3 -std=c++14 -Igodot-cpp/include -Igodot-cpp/include/core -Igodot-cpp/include/gen -Igodot-cpp/godot_headers
|
||||||
$ clang -o lib/libtest.so -shared src/init.os -L../godot-cpp/lib -lgodot-cpp
|
$ clang -o bin/libtest.so -shared src/init.os -Lgodot-cpp/bin -l<name of the godot-cpp>
|
||||||
```
|
```
|
||||||
This creates the file `libtest.so` in your `SimpleLibrary/lib` directory. For windows you need to find out what compiler flags need to be used.
|
> This creates the file `libtest.so` in your `SimpleLibrary/bin` directory.
|
||||||
|
|
||||||
# Creating `.gdns` file
|
> You will need to replace `<name of the godot-cpp>` with the file that was created in [**Compiling the cpp bindings library**](#compiling-the-cpp-bindings-library)
|
||||||
|
|
||||||
|
*Windows*
|
||||||
|
```
|
||||||
|
$ cd SimpleLibrary
|
||||||
|
$ cl /Fosrc/init.obj /c src/init.cpp /nologo -EHsc -DNDEBUG /MDd /Igodot-cpp\include /Igodot-cpp\include\core /Igodot-cpp\include\gen /Igodot-cpp\godot_headers
|
||||||
|
$ link /nologo /dll /out:bin\libtest.dll /implib:bin\libsimple.lib src\init.obj godot-cpp\bin\<name of the godot-cpp>
|
||||||
|
```
|
||||||
|
> This creates the file `libtest.dll` in your `SimpleLibrary/bin` directory.
|
||||||
|
|
||||||
|
> You will need to replace `<name of the godot-cpp>` with the file that was created in [**Compiling the cpp bindings library**](#compiling-the-cpp-bindings-library)
|
||||||
|
|
||||||
|
> Finally replace `/MDd` with `/MD` if you're generated a runtime build.
|
||||||
|
|
||||||
|
*macOS*
|
||||||
|
For OSX you need to find out what compiler flags need to be used.
|
||||||
|
|
||||||
|
### Creating `.gdnlib` and `.gdns` files
|
||||||
follow [godot_header/README.md](https://github.com/GodotNativeTools/godot_headers/blob/master/README.md#how-do-i-use-native-scripts-from-the-editor) to create the `.gdns`
|
follow [godot_header/README.md](https://github.com/GodotNativeTools/godot_headers/blob/master/README.md#how-do-i-use-native-scripts-from-the-editor) to create the `.gdns`
|
||||||
|
|
||||||
# Implementing with gdscript
|
### Implementing with gdscript
|
||||||
```gdscript
|
```gdscript
|
||||||
var simpleclass = load("res://simpleclass.gdns").new();
|
var simpleclass = load("res://simpleclass.gdns").new();
|
||||||
simpleclass.method("Test argument");
|
simpleclass.method("Test argument");
|
||||||
|
|
Loading…
Reference in New Issue