pandemonium_engine/modules/props_2d
2022-03-19 13:52:08 +01:00
..
clutter Clang format all files. 2022-03-18 19:00:13 +01:00
doc_classes Run godot's formatting script. 2022-03-16 09:02:48 +01:00
editor Finished cleaning up includes for the classes under the editor folder. I skipped removing a few that needed more changes to the headers / cpp files for now. 2022-03-19 04:08:34 +01:00
jobs Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
lights Clang format all files. 2022-03-18 19:00:13 +01:00
material_cache Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
props Fixed lots of crashes found by godot's regression test tool throwing improper parameters at methods. 2022-03-19 13:52:08 +01:00
singleton Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
tiled_wall Clang format all files. 2022-03-18 19:00:13 +01:00
.gitignore Run godot's formatting script. 2022-03-16 09:02:48 +01:00
config.py Run godot's formatting script. 2022-03-16 09:02:48 +01:00
LICENSE Run godot's formatting script. 2022-03-16 09:02:48 +01:00
prop_2d_ess_entity.cpp Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
prop_2d_ess_entity.h Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_instance_job.cpp Run godot's formatting script. 2022-03-16 09:02:48 +01:00
prop_2d_instance_job.h Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_instance_merger.cpp Clang format all files. 2022-03-18 19:00:13 +01:00
prop_2d_instance_merger.h Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_instance_prop_job.cpp Fixed lots of crashes found by godot's regression test tool throwing improper parameters at methods. 2022-03-19 13:52:08 +01:00
prop_2d_instance_prop_job.h Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_instance.cpp Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_instance.h Removed now unnecessary version.h includes. 2022-03-18 03:56:41 +01:00
prop_2d_mesher.cpp Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_mesher.h Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_scene_instance.cpp Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
prop_2d_scene_instance.h Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
README.md Run godot's formatting script. 2022-03-16 09:02:48 +01:00
register_types.cpp Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
register_types.h Cleaned up props_2d's version checks. 2022-03-18 02:55:27 +01:00
SCsub Run godot's formatting script. 2022-03-16 09:02:48 +01:00

Prop2Ds Module

This is a c++ engine module for the Godot Engine.

It gives you props, and editor utilities to convert scenes to props.

It supports both godot 3.2 and 4.0 (master last tested commit). Note that since 4.0 is still in very early stages I only check whether it works from time to time.

Pre-built binaries

You can grab a pre-built editor binary from the Broken Seals repo, should you want to. It contains all my modules.

Optional Dependencies

Mesh Data Resource: Support for merged meshes, even in gles2.
Texture Packer: Prop2D Instance will use this to merge textures.
Thread Pool: Prop2D Instance will use this for multithreaded generation.

Prop2DData

Prop2Ds are basicly 3D scenes in a simple format, so other things can easily process them without instancing.

For example if you create a building from MeshDataInstances, and then convert that scene to a prop, Voxelman can spawn it, merge it's meshes, and create lods without any scene instancing.

Prop2DData is the main class you'll use, it's main purpose it to store a list of Prop2DDataEntries.

Prop2DDataEntries

These are the classes that actually store data.

They contain 4 methods for scene->prop conversion, namely:

//Whether or not this Prop2DDataEntry can process the given Node.
virtual bool _processor_handles(Node *node);

//Save the given Node into the given prop_data any way you like, at tranform.
virtual void _processor_process(Ref<Prop2DData> prop_data, Node *node, const Transform &transform);

//Turn Prop2DDataEntry back into a Node
virtual Node *_processor_get_node_for(const Transform &transform);

//Whether the system should skip evaluating the children of a processes Node or not. See Prop2DDataScene, or Prop2DDataProp2D.
virtual bool _processor_evaluate_children();

Prop2DInstances

Prop2DInstances are not yet finished.

They will be able to merge meshes, texture etc from a Prop2D, and also generate lods for it.

Essentially they will be a more advanced MeshInstance.

Voxelman implements all of this, just haven't finished porting it yet.

Prop2DUtils Singleton

The Prop2DUtils singleton helps with scene->prop conversion.

You can register new Prop2DDataEntries as processors, should you need to.

Scene conversion

You can either click the new "To Prop2D" button on the menubar of the 3D scene for a quick conversion, or look into Project->Tools.

Building

  1. Get the source code for the engine.

If you want Godot 3.2: git clone -b 3.2 https://github.com/godotengine/godot.git godot

If you want Godot 4.0: git clone https://github.com/godotengine/godot.git godot

  1. Go into Godot's modules directory.
cd ./godot/modules/
  1. Clone this repository
git clone https://github.com/Relintai/props props
  1. Build Godot. Tutorial