2023-01-10 15:26:54 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* baked_lightmap.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2022-07-25 12:33:41 +02:00
|
|
|
#ifndef BAKED_LIGHTMAP_H
|
|
|
|
#define BAKED_LIGHTMAP_H
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
#include "core/local_vector.h"
|
2017-12-14 12:59:46 +01:00
|
|
|
#include "multimesh_instance.h"
|
|
|
|
#include "scene/3d/light.h"
|
2020-12-19 18:17:22 +01:00
|
|
|
#include "scene/3d/lightmapper.h"
|
2017-12-14 12:59:46 +01:00
|
|
|
#include "scene/3d/visual_instance.h"
|
|
|
|
|
|
|
|
class BakedLightmapData : public Resource {
|
|
|
|
GDCLASS(BakedLightmapData, Resource);
|
2020-12-19 18:17:22 +01:00
|
|
|
RES_BASE_EXTENSION("lmbake")
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
RID baked_light;
|
|
|
|
AABB bounds;
|
|
|
|
float energy;
|
2021-03-11 13:34:57 +01:00
|
|
|
bool interior;
|
2017-12-14 12:59:46 +01:00
|
|
|
int cell_subdiv;
|
|
|
|
Transform cell_space_xform;
|
|
|
|
|
|
|
|
struct User {
|
|
|
|
NodePath path;
|
2020-12-19 18:17:22 +01:00
|
|
|
struct {
|
|
|
|
Ref<Texture> single;
|
|
|
|
Ref<TextureLayered> layered;
|
|
|
|
} lightmap;
|
|
|
|
int lightmap_slice;
|
|
|
|
Rect2 lightmap_uv_rect;
|
2017-12-18 04:34:48 +01:00
|
|
|
int instance_index;
|
2017-12-14 12:59:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Vector<User> users;
|
|
|
|
|
|
|
|
void _set_user_data(const Array &p_data);
|
|
|
|
Array _get_user_data() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void set_bounds(const AABB &p_bounds);
|
|
|
|
AABB get_bounds() const;
|
|
|
|
|
|
|
|
void set_octree(const PoolVector<uint8_t> &p_octree);
|
|
|
|
PoolVector<uint8_t> get_octree() const;
|
|
|
|
|
|
|
|
void set_cell_space_transform(const Transform &p_xform);
|
|
|
|
Transform get_cell_space_transform() const;
|
|
|
|
|
|
|
|
void set_cell_subdiv(int p_cell_subdiv);
|
|
|
|
int get_cell_subdiv() const;
|
|
|
|
|
|
|
|
void set_energy(float p_energy);
|
|
|
|
float get_energy() const;
|
|
|
|
|
2021-03-11 13:34:57 +01:00
|
|
|
void set_interior(bool p_interior);
|
|
|
|
bool is_interior() const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void add_user(const NodePath &p_path, const Ref<Resource> &p_lightmap, int p_lightmap_slice, const Rect2 &p_lightmap_uv_rect, int p_instance);
|
2017-12-14 12:59:46 +01:00
|
|
|
int get_user_count() const;
|
|
|
|
NodePath get_user_path(int p_user) const;
|
2020-12-19 18:17:22 +01:00
|
|
|
Ref<Resource> get_user_lightmap(int p_user) const;
|
|
|
|
int get_user_lightmap_slice(int p_user) const;
|
|
|
|
Rect2 get_user_lightmap_uv_rect(int p_user) const;
|
2017-12-18 04:34:48 +01:00
|
|
|
int get_user_instance(int p_user) const;
|
2017-12-14 12:59:46 +01:00
|
|
|
void clear_users();
|
2021-02-05 19:12:54 +01:00
|
|
|
void clear_data();
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
virtual RID get_rid() const;
|
|
|
|
BakedLightmapData();
|
|
|
|
~BakedLightmapData();
|
|
|
|
};
|
|
|
|
|
|
|
|
class BakedLightmap : public VisualInstance {
|
|
|
|
GDCLASS(BakedLightmap, VisualInstance);
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum BakeQuality {
|
|
|
|
BAKE_QUALITY_LOW,
|
|
|
|
BAKE_QUALITY_MEDIUM,
|
2020-12-19 18:17:22 +01:00
|
|
|
BAKE_QUALITY_HIGH,
|
|
|
|
BAKE_QUALITY_ULTRA
|
2017-12-14 12:59:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum BakeError {
|
|
|
|
BAKE_ERROR_OK,
|
|
|
|
BAKE_ERROR_NO_SAVE_PATH,
|
|
|
|
BAKE_ERROR_NO_MESHES,
|
|
|
|
BAKE_ERROR_CANT_CREATE_IMAGE,
|
2020-12-19 18:17:22 +01:00
|
|
|
BAKE_ERROR_LIGHTMAP_SIZE,
|
|
|
|
BAKE_ERROR_INVALID_MESH,
|
|
|
|
BAKE_ERROR_USER_ABORTED,
|
2021-10-21 02:29:28 +02:00
|
|
|
BAKE_ERROR_NO_LIGHTMAPPER,
|
|
|
|
BAKE_ERROR_NO_ROOT,
|
2017-12-14 12:59:46 +01:00
|
|
|
};
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
enum EnvironmentMode {
|
|
|
|
ENVIRONMENT_MODE_DISABLED,
|
|
|
|
ENVIRONMENT_MODE_SCENE,
|
|
|
|
ENVIRONMENT_MODE_CUSTOM_SKY,
|
|
|
|
ENVIRONMENT_MODE_CUSTOM_COLOR
|
|
|
|
};
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
struct BakeStepUD {
|
|
|
|
Lightmapper::BakeStepFunc func;
|
|
|
|
void *ud;
|
|
|
|
float from_percent;
|
|
|
|
float to_percent;
|
|
|
|
};
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
struct LightsFound {
|
|
|
|
Transform xform;
|
|
|
|
Light *light;
|
|
|
|
};
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
struct MeshesFound {
|
|
|
|
Transform xform;
|
|
|
|
NodePath node_path;
|
|
|
|
int32_t subindex;
|
2017-12-14 12:59:46 +01:00
|
|
|
Ref<Mesh> mesh;
|
2020-12-19 18:17:22 +01:00
|
|
|
int32_t lightmap_scale;
|
2021-05-04 14:20:36 +02:00
|
|
|
Vector<Ref<Material>> overrides;
|
2020-12-19 18:17:22 +01:00
|
|
|
bool cast_shadows;
|
|
|
|
bool generate_lightmap;
|
2017-12-14 12:59:46 +01:00
|
|
|
};
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
private:
|
|
|
|
Vector3 extents;
|
|
|
|
float default_texels_per_unit;
|
|
|
|
float bias;
|
|
|
|
BakeQuality bake_quality;
|
|
|
|
bool generate_atlas;
|
|
|
|
int max_atlas_size;
|
|
|
|
bool capture_enabled;
|
|
|
|
int bounces;
|
2021-07-25 02:55:36 +02:00
|
|
|
float bounce_indirect_energy;
|
2020-12-19 18:17:22 +01:00
|
|
|
bool use_denoiser;
|
2021-02-15 12:32:31 +01:00
|
|
|
bool use_hdr;
|
|
|
|
bool use_color;
|
2020-12-19 18:17:22 +01:00
|
|
|
|
|
|
|
EnvironmentMode environment_mode;
|
|
|
|
Ref<Sky> environment_custom_sky;
|
|
|
|
Vector3 environment_custom_sky_rotation_degrees;
|
|
|
|
Color environment_custom_color;
|
|
|
|
float environment_custom_energy;
|
2021-03-11 13:34:57 +01:00
|
|
|
Color environment_min_light;
|
2020-12-19 18:17:22 +01:00
|
|
|
|
|
|
|
BakeQuality capture_quality;
|
|
|
|
float capture_propagation;
|
|
|
|
float capture_cell_size;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
String image_path; // (Deprecated property)
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
Ref<BakedLightmapData> light_data;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
void _assign_lightmaps();
|
|
|
|
void _clear_lightmaps();
|
|
|
|
|
2021-05-04 14:20:36 +02:00
|
|
|
void _get_material_images(const MeshesFound &p_found_mesh, Lightmapper::MeshData &r_mesh_data, Vector<Ref<Texture>> &r_albedo_textures, Vector<Ref<Texture>> &r_emission_textures);
|
2021-04-22 15:01:25 +02:00
|
|
|
Ref<Image> _get_irradiance_from_sky(Ref<Sky> p_sky, float p_energy, Vector2i p_size);
|
2020-12-19 18:17:22 +01:00
|
|
|
Ref<Image> _get_irradiance_map(Ref<Environment> p_env, Vector2i p_size);
|
|
|
|
void _find_meshes_and_lights(Node *p_at_node, Vector<MeshesFound> &meshes, Vector<LightsFound> &lights);
|
|
|
|
Vector2i _compute_lightmap_size(const MeshesFound &p_mesh);
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
static bool _lightmap_bake_step_function(float p_completion, const String &p_text, void *ud, bool p_refresh);
|
2021-02-15 12:32:31 +01:00
|
|
|
void _save_image(String &r_base_path, Ref<Image> p_img, bool p_use_srgb);
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2020-12-19 18:17:22 +01:00
|
|
|
void _validate_property(PropertyInfo &property) const;
|
2017-12-14 12:59:46 +01:00
|
|
|
void _notification(int p_what);
|
|
|
|
|
|
|
|
public:
|
2020-12-19 18:17:22 +01:00
|
|
|
static Lightmapper::BakeStepFunc bake_step_function;
|
|
|
|
static Lightmapper::BakeStepFunc bake_substep_function;
|
2021-09-11 20:41:32 +02:00
|
|
|
static Lightmapper::BakeEndFunc bake_end_function;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
void set_light_data(const Ref<BakedLightmapData> &p_data);
|
|
|
|
Ref<BakedLightmapData> get_light_data() const;
|
|
|
|
|
2017-12-21 15:03:17 +01:00
|
|
|
void set_capture_cell_size(float p_cell_size);
|
|
|
|
float get_capture_cell_size() const;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
void set_extents(const Vector3 &p_extents);
|
|
|
|
Vector3 get_extents() const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_default_texels_per_unit(const float &p_extents);
|
|
|
|
float get_default_texels_per_unit() const;
|
2019-06-22 17:27:09 +02:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_capture_propagation(float p_propagation);
|
|
|
|
float get_capture_propagation() const;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_capture_quality(BakeQuality p_quality);
|
|
|
|
BakeQuality get_capture_quality() const;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
void set_bake_quality(BakeQuality p_quality);
|
|
|
|
BakeQuality get_bake_quality() const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_generate_atlas(bool p_enabled);
|
|
|
|
bool is_generate_atlas_enabled() const;
|
|
|
|
|
|
|
|
void set_max_atlas_size(int p_size);
|
|
|
|
int get_max_atlas_size() const;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_capture_enabled(bool p_enable);
|
|
|
|
bool get_capture_enabled() const;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
void set_image_path(const String &p_path);
|
|
|
|
String get_image_path() const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_environment_mode(EnvironmentMode p_mode);
|
|
|
|
EnvironmentMode get_environment_mode() const;
|
|
|
|
|
|
|
|
void set_environment_custom_sky(const Ref<Sky> &p_sky);
|
|
|
|
Ref<Sky> get_environment_custom_sky() const;
|
|
|
|
|
|
|
|
void set_environment_custom_sky_rotation_degrees(const Vector3 &p_rotation);
|
|
|
|
Vector3 get_environment_custom_sky_rotation_degrees() const;
|
|
|
|
|
|
|
|
void set_environment_custom_color(const Color &p_color);
|
|
|
|
Color get_environment_custom_color() const;
|
|
|
|
|
|
|
|
void set_environment_custom_energy(float p_energy);
|
|
|
|
float get_environment_custom_energy() const;
|
|
|
|
|
2021-03-11 13:34:57 +01:00
|
|
|
void set_environment_min_light(Color p_min_light);
|
|
|
|
Color get_environment_min_light() const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_use_denoiser(bool p_enable);
|
|
|
|
bool is_using_denoiser() const;
|
|
|
|
|
2021-02-15 12:32:31 +01:00
|
|
|
void set_use_hdr(bool p_enable);
|
|
|
|
bool is_using_hdr() const;
|
|
|
|
|
|
|
|
void set_use_color(bool p_enable);
|
|
|
|
bool is_using_color() const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_bounces(int p_bounces);
|
|
|
|
int get_bounces() const;
|
|
|
|
|
2021-07-25 02:55:36 +02:00
|
|
|
void set_bounce_indirect_energy(float p_indirect_energy);
|
|
|
|
float get_bounce_indirect_energy() const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
void set_bias(float p_bias);
|
|
|
|
float get_bias() const;
|
|
|
|
|
2017-12-14 12:59:46 +01:00
|
|
|
AABB get_aabb() const;
|
|
|
|
PoolVector<Face3> get_faces(uint32_t p_usage_flags) const;
|
|
|
|
|
2020-12-19 18:17:22 +01:00
|
|
|
BakeError bake(Node *p_from_node, String p_data_save_path = "");
|
2017-12-14 12:59:46 +01:00
|
|
|
BakedLightmap();
|
|
|
|
};
|
|
|
|
|
|
|
|
VARIANT_ENUM_CAST(BakedLightmap::BakeQuality);
|
|
|
|
VARIANT_ENUM_CAST(BakedLightmap::BakeError);
|
2020-12-19 18:17:22 +01:00
|
|
|
VARIANT_ENUM_CAST(BakedLightmap::EnvironmentMode);
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2022-07-25 12:33:41 +02:00
|
|
|
#endif // BAKED_LIGHTMAP_H
|