2014-02-10 02:10:30 +01:00
/**************************************************************************/
2020-03-28 13:19:05 +01:00
/* rendering_server.cpp */
2014-02-10 02:10:30 +01:00
/**************************************************************************/
/* 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
2020-03-27 19:21:27 +01:00
# include "rendering_server.h"
2017-08-27 21:07:15 +02:00
2020-11-07 23:33:38 +01:00
# include "core/config/project_settings.h"
2023-02-13 19:45:06 +01:00
# include "core/object/worker_thread_pool.h"
2022-08-05 20:35:08 +02:00
# include "core/variant/typed_array.h"
2021-07-01 04:17:47 +02:00
# include "servers/rendering/rendering_server_globals.h"
2022-01-10 19:46:41 +01:00
# include "servers/rendering/shader_language.h"
2023-02-19 15:35:05 +01:00
# include "servers/rendering/shader_warnings.h"
2021-09-25 20:40:26 +02:00
2020-04-02 01:20:12 +02:00
RenderingServer * RenderingServer : : singleton = nullptr ;
RenderingServer * ( * RenderingServer : : create_func ) ( ) = nullptr ;
2014-02-10 02:10:30 +01:00
2020-03-27 19:21:27 +01:00
RenderingServer * RenderingServer : : get_singleton ( ) {
2014-02-10 02:10:30 +01:00
return singleton ;
}
2020-03-27 19:21:27 +01:00
RenderingServer * RenderingServer : : create ( ) {
2020-04-02 01:20:12 +02:00
ERR_FAIL_COND_V ( singleton , nullptr ) ;
2016-03-09 00:00:52 +01:00
2020-05-14 16:41:43 +02:00
if ( create_func ) {
2014-02-10 02:10:30 +01:00
return create_func ( ) ;
2020-05-14 16:41:43 +02:00
}
2016-03-09 00:00:52 +01:00
2020-04-02 01:20:12 +02:00
return nullptr ;
2014-02-10 02:10:30 +01:00
}
2020-03-27 19:21:27 +01:00
Array RenderingServer : : _texture_debug_usage_bind ( ) {
2017-10-20 00:24:49 +02:00
List < TextureInfo > list ;
texture_debug_usage ( & list ) ;
Array arr ;
2021-07-16 05:45:57 +02:00
for ( const TextureInfo & E : list ) {
2017-10-20 00:24:49 +02:00
Dictionary dict ;
2021-07-16 05:45:57 +02:00
dict [ " texture " ] = E . texture ;
dict [ " width " ] = E . width ;
dict [ " height " ] = E . height ;
dict [ " depth " ] = E . depth ;
dict [ " format " ] = E . format ;
dict [ " bytes " ] = E . bytes ;
dict [ " path " ] = E . path ;
2017-10-20 00:24:49 +02:00
arr . push_back ( dict ) ;
}
return arr ;
}
2022-08-08 00:52:20 +02:00
static PackedInt64Array to_int_array ( const Vector < ObjectID > & ids ) {
PackedInt64Array a ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
a . resize ( ids . size ( ) ) ;
for ( int i = 0 ; i < ids . size ( ) ; + + i ) {
2022-08-08 00:52:20 +02:00
a . write [ i ] = ids [ i ] ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
}
return a ;
}
2022-08-08 00:52:20 +02:00
PackedInt64Array RenderingServer : : _instances_cull_aabb_bind ( const AABB & p_aabb , RID p_scenario ) const {
2021-07-01 04:17:47 +02:00
if ( RSG : : threaded ) {
WARN_PRINT_ONCE ( " Using this function with a threaded renderer hurts performance, as it causes a server stall. " ) ;
}
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
Vector < ObjectID > ids = instances_cull_aabb ( p_aabb , p_scenario ) ;
2022-08-08 00:52:20 +02:00
return to_int_array ( ids ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
}
2022-08-08 00:52:20 +02:00
PackedInt64Array RenderingServer : : _instances_cull_ray_bind ( const Vector3 & p_from , const Vector3 & p_to , RID p_scenario ) const {
2021-07-01 04:17:47 +02:00
if ( RSG : : threaded ) {
WARN_PRINT_ONCE ( " Using this function with a threaded renderer hurts performance, as it causes a server stall. " ) ;
}
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
Vector < ObjectID > ids = instances_cull_ray ( p_from , p_to , p_scenario ) ;
2022-08-08 00:52:20 +02:00
return to_int_array ( ids ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
}
2022-08-31 19:24:04 +02:00
PackedInt64Array RenderingServer : : _instances_cull_convex_bind ( const TypedArray < Plane > & p_convex , RID p_scenario ) const {
2021-07-01 04:17:47 +02:00
if ( RSG : : threaded ) {
WARN_PRINT_ONCE ( " Using this function with a threaded renderer hurts performance, as it causes a server stall. " ) ;
}
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
Vector < Plane > planes ;
for ( int i = 0 ; i < p_convex . size ( ) ; + + i ) {
Variant v = p_convex [ i ] ;
2022-08-08 00:52:20 +02:00
ERR_FAIL_COND_V ( v . get_type ( ) ! = Variant : : PLANE , PackedInt64Array ( ) ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
planes . push_back ( v ) ;
}
Vector < ObjectID > ids = instances_cull_convex ( planes , p_scenario ) ;
2022-08-08 00:52:20 +02:00
return to_int_array ( ids ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
}
2020-03-27 19:21:27 +01:00
RID RenderingServer : : get_test_texture ( ) {
2016-10-03 21:33:42 +02:00
if ( test_texture . is_valid ( ) ) {
2014-02-10 02:10:30 +01:00
return test_texture ;
} ;
# define TEST_TEXTURE_SIZE 256
2020-02-17 22:06:54 +01:00
Vector < uint8_t > test_data ;
2016-10-03 21:33:42 +02:00
test_data . resize ( TEST_TEXTURE_SIZE * TEST_TEXTURE_SIZE * 3 ) ;
2014-02-10 02:10:30 +01:00
2016-10-03 21:33:42 +02:00
{
2020-02-17 22:06:54 +01:00
uint8_t * w = test_data . ptrw ( ) ;
2014-02-10 02:10:30 +01:00
2016-10-03 21:33:42 +02:00
for ( int x = 0 ; x < TEST_TEXTURE_SIZE ; x + + ) {
for ( int y = 0 ; y < TEST_TEXTURE_SIZE ; y + + ) {
Color c ;
int r = 255 - ( x + y ) / 2 ;
2014-02-10 02:10:30 +01:00
2016-10-03 21:33:42 +02:00
if ( ( x % ( TEST_TEXTURE_SIZE / 8 ) ) < 2 | | ( y % ( TEST_TEXTURE_SIZE / 8 ) ) < 2 ) {
c . r = y ;
c . g = r ;
c . b = x ;
2014-02-10 02:10:30 +01:00
2016-10-03 21:33:42 +02:00
} else {
c . r = r ;
c . g = x ;
c . b = y ;
}
2014-02-10 02:10:30 +01:00
2023-04-04 02:30:05 +02:00
w [ ( y * TEST_TEXTURE_SIZE + x ) * 3 + 0 ] = uint8_t ( CLAMP ( c . r , 0 , 255 ) ) ;
w [ ( y * TEST_TEXTURE_SIZE + x ) * 3 + 1 ] = uint8_t ( CLAMP ( c . g , 0 , 255 ) ) ;
w [ ( y * TEST_TEXTURE_SIZE + x ) * 3 + 2 ] = uint8_t ( CLAMP ( c . b , 0 , 255 ) ) ;
2016-10-03 21:33:42 +02:00
}
2014-02-10 02:10:30 +01:00
}
}
2017-05-17 12:36:47 +02:00
Ref < Image > data = memnew ( Image ( TEST_TEXTURE_SIZE , TEST_TEXTURE_SIZE , false , Image : : FORMAT_RGB8 , test_data ) ) ;
2016-10-03 21:33:42 +02:00
2019-06-11 20:43:37 +02:00
test_texture = texture_2d_create ( data ) ;
2014-02-10 02:10:30 +01:00
return test_texture ;
2017-05-17 12:36:47 +02:00
}
2014-02-10 02:10:30 +01:00
2020-03-27 19:21:27 +01:00
void RenderingServer : : _free_internal_rids ( ) {
2020-05-14 16:41:43 +02:00
if ( test_texture . is_valid ( ) ) {
2015-04-21 00:38:02 +02:00
free ( test_texture ) ;
2020-05-14 16:41:43 +02:00
}
if ( white_texture . is_valid ( ) ) {
2015-04-21 00:38:02 +02:00
free ( white_texture ) ;
2020-05-14 16:41:43 +02:00
}
if ( test_material . is_valid ( ) ) {
2015-04-21 00:38:02 +02:00
free ( test_material ) ;
2020-05-14 16:41:43 +02:00
}
2015-04-21 00:38:02 +02:00
}
2020-03-27 19:21:27 +01:00
RID RenderingServer : : _make_test_cube ( ) {
2020-02-17 22:06:54 +01:00
Vector < Vector3 > vertices ;
Vector < Vector3 > normals ;
Vector < float > tangents ;
Vector < Vector3 > uvs ;
2016-03-09 00:00:52 +01:00
2018-03-26 01:36:34 +02:00
# define ADD_VTX(m_idx) \
vertices . push_back ( face_points [ m_idx ] ) ; \
normals . push_back ( normal_points [ m_idx ] ) ; \
tangents . push_back ( normal_points [ m_idx ] [ 1 ] ) ; \
tangents . push_back ( normal_points [ m_idx ] [ 2 ] ) ; \
tangents . push_back ( normal_points [ m_idx ] [ 0 ] ) ; \
tangents . push_back ( 1.0 ) ; \
uvs . push_back ( Vector3 ( uv_points [ m_idx * 2 + 0 ] , uv_points [ m_idx * 2 + 1 ] , 0 ) ) ;
2014-02-10 02:10:30 +01:00
for ( int i = 0 ; i < 6 ; i + + ) {
Vector3 face_points [ 4 ] ;
Vector3 normal_points [ 4 ] ;
float uv_points [ 8 ] = { 0 , 0 , 0 , 1 , 1 , 1 , 1 , 0 } ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
for ( int j = 0 ; j < 4 ; j + + ) {
float v [ 3 ] ;
v [ 0 ] = 1.0 ;
v [ 1 ] = 1 - 2 * ( ( j > > 1 ) & 1 ) ;
v [ 2 ] = v [ 1 ] * ( 1 - 2 * ( j & 1 ) ) ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
for ( int k = 0 ; k < 3 ; k + + ) {
2020-05-14 16:41:43 +02:00
if ( i < 3 ) {
2018-04-21 16:35:23 +02:00
face_points [ j ] [ ( i + k ) % 3 ] = v [ k ] ;
2020-05-14 16:41:43 +02:00
} else {
2018-04-21 16:35:23 +02:00
face_points [ 3 - j ] [ ( i + k ) % 3 ] = - v [ k ] ;
2020-05-14 16:41:43 +02:00
}
2014-02-10 02:10:30 +01:00
}
normal_points [ j ] = Vector3 ( ) ;
normal_points [ j ] [ i % 3 ] = ( i > = 3 ? - 1 : 1 ) ;
}
2021-11-28 01:12:10 +01:00
// Tri 1
2014-02-10 02:10:30 +01:00
ADD_VTX ( 0 ) ;
ADD_VTX ( 1 ) ;
ADD_VTX ( 2 ) ;
2021-11-28 01:12:10 +01:00
// Tri 2
2014-02-10 02:10:30 +01:00
ADD_VTX ( 2 ) ;
ADD_VTX ( 3 ) ;
ADD_VTX ( 0 ) ;
}
RID test_cube = mesh_create ( ) ;
Array d ;
2020-03-27 19:21:27 +01:00
d . resize ( RS : : ARRAY_MAX ) ;
d [ RenderingServer : : ARRAY_NORMAL ] = normals ;
d [ RenderingServer : : ARRAY_TANGENT ] = tangents ;
d [ RenderingServer : : ARRAY_TEX_UV ] = uvs ;
d [ RenderingServer : : ARRAY_VERTEX ] = vertices ;
2014-02-10 02:10:30 +01:00
2020-02-17 22:06:54 +01:00
Vector < int > indices ;
2014-02-10 02:10:30 +01:00
indices . resize ( vertices . size ( ) ) ;
2020-05-14 16:41:43 +02:00
for ( int i = 0 ; i < vertices . size ( ) ; i + + ) {
2014-02-10 02:10:30 +01:00
indices . set ( i , i ) ;
2020-05-14 16:41:43 +02:00
}
2020-03-27 19:21:27 +01:00
d [ RenderingServer : : ARRAY_INDEX ] = indices ;
2014-02-10 02:10:30 +01:00
2016-10-03 21:33:42 +02:00
mesh_add_surface_from_arrays ( test_cube , PRIMITIVE_TRIANGLES , d ) ;
2015-04-21 00:38:02 +02:00
2016-10-03 21:33:42 +02:00
/*
2015-04-21 00:38:02 +02:00
test_material = fixed_material_create ( ) ;
2014-02-10 02:10:30 +01:00
//material_set_flag(material, MATERIAL_FLAG_BILLBOARD_TOGGLE,true);
2015-04-21 00:38:02 +02:00
fixed_material_set_texture ( test_material , FIXED_MATERIAL_PARAM_DIFFUSE , get_test_texture ( ) ) ;
fixed_material_set_param ( test_material , FIXED_MATERIAL_PARAM_SPECULAR_EXP , 70 ) ;
fixed_material_set_param ( test_material , FIXED_MATERIAL_PARAM_EMISSION , Color ( 0.2 , 0.2 , 0.2 ) ) ;
2014-02-10 02:10:30 +01:00
2015-04-21 00:38:02 +02:00
fixed_material_set_param ( test_material , FIXED_MATERIAL_PARAM_DIFFUSE , Color ( 1 , 1 , 1 ) ) ;
fixed_material_set_param ( test_material , FIXED_MATERIAL_PARAM_SPECULAR , Color ( 1 , 1 , 1 ) ) ;
2016-10-03 21:33:42 +02:00
*/
2015-04-21 00:38:02 +02:00
mesh_surface_set_material ( test_cube , 0 , test_material ) ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
return test_cube ;
}
2021-08-10 00:15:17 +02:00
RID RenderingServer : : make_sphere_mesh ( int p_lats , int p_lons , real_t p_radius ) {
2020-02-17 22:06:54 +01:00
Vector < Vector3 > vertices ;
Vector < Vector3 > normals ;
2020-04-03 11:50:40 +02:00
const double lat_step = Math_TAU / p_lats ;
const double lon_step = Math_TAU / p_lons ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
for ( int i = 1 ; i < = p_lats ; i + + ) {
2020-04-03 11:50:40 +02:00
double lat0 = lat_step * ( i - 1 ) - Math_TAU / 4 ;
2014-02-10 02:10:30 +01:00
double z0 = Math : : sin ( lat0 ) ;
double zr0 = Math : : cos ( lat0 ) ;
2016-03-09 00:00:52 +01:00
2020-04-03 11:50:40 +02:00
double lat1 = lat_step * i - Math_TAU / 4 ;
2014-02-10 02:10:30 +01:00
double z1 = Math : : sin ( lat1 ) ;
double zr1 = Math : : cos ( lat1 ) ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
for ( int j = p_lons ; j > = 1 ; j - - ) {
2020-04-03 11:50:40 +02:00
double lng0 = lon_step * ( j - 1 ) ;
2014-02-10 02:10:30 +01:00
double x0 = Math : : cos ( lng0 ) ;
double y0 = Math : : sin ( lng0 ) ;
2016-03-09 00:00:52 +01:00
2020-04-03 11:50:40 +02:00
double lng1 = lon_step * j ;
2016-03-09 00:00:52 +01:00
double x1 = Math : : cos ( lng1 ) ;
2014-02-10 02:10:30 +01:00
double y1 = Math : : sin ( lng1 ) ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
Vector3 v [ 4 ] = {
Vector3 ( x1 * zr0 , z0 , y1 * zr0 ) ,
Vector3 ( x1 * zr1 , z1 , y1 * zr1 ) ,
Vector3 ( x0 * zr1 , z1 , y0 * zr1 ) ,
Vector3 ( x0 * zr0 , z0 , y0 * zr0 )
} ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
# define ADD_POINT(m_idx) \
normals . push_back ( v [ m_idx ] ) ; \
vertices . push_back ( v [ m_idx ] * p_radius ) ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
ADD_POINT ( 0 ) ;
ADD_POINT ( 1 ) ;
ADD_POINT ( 2 ) ;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
ADD_POINT ( 2 ) ;
ADD_POINT ( 3 ) ;
ADD_POINT ( 0 ) ;
}
}
RID mesh = mesh_create ( ) ;
Array d ;
2020-03-27 19:21:27 +01:00
d . resize ( RS : : ARRAY_MAX ) ;
2014-02-10 02:10:30 +01:00
d [ ARRAY_VERTEX ] = vertices ;
d [ ARRAY_NORMAL ] = normals ;
2016-10-03 21:33:42 +02:00
mesh_add_surface_from_arrays ( mesh , PRIMITIVE_TRIANGLES , d ) ;
2014-02-10 02:10:30 +01:00
return mesh ;
}
2020-03-27 19:21:27 +01:00
RID RenderingServer : : get_white_texture ( ) {
2020-05-14 16:41:43 +02:00
if ( white_texture . is_valid ( ) ) {
2014-05-29 15:56:39 +02:00
return white_texture ;
2020-05-14 16:41:43 +02:00
}
2014-05-29 15:56:39 +02:00
2020-02-17 22:06:54 +01:00
Vector < uint8_t > wt ;
2014-05-29 15:56:39 +02:00
wt . resize ( 16 * 3 ) ;
{
2020-02-17 22:06:54 +01:00
uint8_t * w = wt . ptrw ( ) ;
2020-05-14 16:41:43 +02:00
for ( int i = 0 ; i < 16 * 3 ; i + + ) {
2014-05-29 15:56:39 +02:00
w [ i ] = 255 ;
2020-05-14 16:41:43 +02:00
}
2014-05-29 15:56:39 +02:00
}
2017-05-17 12:36:47 +02:00
Ref < Image > white = memnew ( Image ( 4 , 4 , 0 , Image : : FORMAT_RGB8 , wt ) ) ;
2019-06-11 20:43:37 +02:00
white_texture = texture_2d_create ( white ) ;
2014-05-29 15:56:39 +02:00
return white_texture ;
}
2023-08-29 21:04:32 +02:00
void _get_axis_angle ( const Vector3 & p_normal , const Vector4 & p_tangent , float & r_angle , Vector3 & r_axis ) {
2023-10-14 05:59:56 +02:00
Vector3 normal = p_normal . normalized ( ) ;
Vector3 tangent = Vector3 ( p_tangent . x , p_tangent . y , p_tangent . z ) . normalized ( ) ;
2023-08-29 21:04:32 +02:00
float d = p_tangent . w ;
2023-10-14 05:59:56 +02:00
Vector3 binormal = normal . cross ( tangent ) . normalized ( ) ;
real_t angle ;
2023-08-29 21:04:32 +02:00
2023-10-14 05:59:56 +02:00
Basis tbn = Basis ( ) ;
tbn . rows [ 0 ] = tangent ;
tbn . rows [ 1 ] = binormal ;
tbn . rows [ 2 ] = normal ;
tbn . get_axis_angle ( r_axis , angle ) ;
r_angle = float ( angle ) ;
2023-08-29 21:04:32 +02:00
if ( d < 0.0 ) {
r_angle = CLAMP ( ( 1.0 - r_angle / Math_PI ) * 0.5 , 0.0 , 0.49999 ) ;
} else {
r_angle = ( r_angle / Math_PI ) * 0.5 + 0.5 ;
}
}
// The inputs to this function should match the outputs of _get_axis_angle. I.e. p_axis is a normalized vector
// and p_angle includes the binormal direction.
void _get_tbn_from_axis_angle ( const Vector3 & p_axis , float p_angle , Vector3 & r_normal , Vector4 & r_tangent ) {
float binormal_sign = p_angle > 0.5 ? 1.0 : - 1.0 ;
float angle = Math : : abs ( p_angle * 2.0 - 1.0 ) * Math_PI ;
2023-10-14 05:59:56 +02:00
Basis tbn = Basis ( p_axis , angle ) ;
Vector3 tan = tbn . rows [ 0 ] ;
2023-08-29 21:04:32 +02:00
r_tangent = Vector4 ( tan . x , tan . y , tan . z , binormal_sign ) ;
2023-10-14 05:59:56 +02:00
r_normal = tbn . rows [ 2 ] ;
2023-08-29 21:04:32 +02:00
}
Error RenderingServer : : _surface_set_data ( Array p_arrays , uint64_t p_format , uint32_t * p_offsets , uint32_t p_vertex_stride , uint32_t p_normal_stride , uint32_t p_attrib_stride , uint32_t p_skin_stride , Vector < uint8_t > & r_vertex_array , Vector < uint8_t > & r_attrib_array , Vector < uint8_t > & r_skin_array , int p_vertex_array_len , Vector < uint8_t > & r_index_array , int p_index_array_len , AABB & r_aabb , Vector < AABB > & r_bone_aabb , Vector4 & r_uv_scale ) {
2020-02-17 22:06:54 +01:00
uint8_t * vw = r_vertex_array . ptrw ( ) ;
2020-12-02 02:40:47 +01:00
uint8_t * aw = r_attrib_array . ptrw ( ) ;
uint8_t * sw = r_skin_array . ptrw ( ) ;
2016-10-19 16:14:41 +02:00
2020-04-02 01:20:12 +02:00
uint8_t * iw = nullptr ;
2016-10-19 16:14:41 +02:00
if ( r_index_array . size ( ) ) {
2020-02-17 22:06:54 +01:00
iw = r_index_array . ptrw ( ) ;
2016-10-19 16:14:41 +02:00
}
int max_bone = 0 ;
2023-08-29 21:04:32 +02:00
// Preprocess UVs if compression is enabled
if ( p_format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES & & ( ( p_format & RS : : ARRAY_FORMAT_TEX_UV ) | | ( p_format & RS : : ARRAY_FORMAT_TEX_UV2 ) ) ) {
const Vector2 * uv_src = nullptr ;
if ( p_format & RS : : ARRAY_FORMAT_TEX_UV ) {
Vector < Vector2 > array = p_arrays [ RS : : ARRAY_TEX_UV ] ;
uv_src = array . ptr ( ) ;
}
const Vector2 * uv2_src = nullptr ;
if ( p_format & RS : : ARRAY_FORMAT_TEX_UV2 ) {
Vector < Vector2 > array = p_arrays [ RS : : ARRAY_TEX_UV2 ] ;
uv2_src = array . ptr ( ) ;
}
Vector2 max_val = Vector2 ( 0.0 , 0.0 ) ;
Vector2 min_val = Vector2 ( 0.0 , 0.0 ) ;
Vector2 max_val2 = Vector2 ( 0.0 , 0.0 ) ;
Vector2 min_val2 = Vector2 ( 0.0 , 0.0 ) ;
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
if ( p_format & RS : : ARRAY_FORMAT_TEX_UV ) {
max_val = max_val . max ( uv_src [ i ] ) ;
min_val = min_val . min ( uv_src [ i ] ) ;
}
if ( p_format & RS : : ARRAY_FORMAT_TEX_UV2 ) {
max_val2 = max_val2 . max ( uv2_src [ i ] ) ;
min_val2 = min_val2 . min ( uv2_src [ i ] ) ;
}
}
max_val = max_val . abs ( ) . max ( min_val . abs ( ) ) ;
max_val2 = max_val2 . abs ( ) . max ( min_val2 . abs ( ) ) ;
2023-10-29 18:18:18 +01:00
if ( min_val . x > = 0.0 & & min_val2 . x > = 0.0 & & max_val . x < = 1.0 & & max_val2 . x < = 1.0 & &
min_val . y > = 0.0 & & min_val2 . y > = 0.0 & & max_val . y < = 1.0 & & max_val2 . y < = 1.0 ) {
// When all channels are in the 0-1 range, we will compress to 16-bit without scaling to
// preserve the bits as best as possible.
r_uv_scale = Vector4 ( 0.0 , 0.0 , 0.0 , 0.0 ) ;
} else {
r_uv_scale = Vector4 ( max_val . x , max_val . y , max_val2 . x , max_val2 . y ) * Vector4 ( 2.0 , 2.0 , 2.0 , 2.0 ) ;
}
2023-08-29 21:04:32 +02:00
}
2020-03-27 19:21:27 +01:00
for ( int ai = 0 ; ai < RS : : ARRAY_MAX ; ai + + ) {
2023-08-29 21:04:32 +02:00
if ( ! ( p_format & ( 1ULL < < ai ) ) ) { // No array
2016-10-19 16:14:41 +02:00
continue ;
2020-05-14 16:41:43 +02:00
}
2016-10-19 16:14:41 +02:00
switch ( ai ) {
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_VERTEX : {
if ( p_format & RS : : ARRAY_FLAG_USE_2D_VERTICES ) {
2020-02-17 22:06:54 +01:00
Vector < Vector2 > array = p_arrays [ ai ] ;
2016-10-19 16:14:41 +02:00
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
2020-02-17 22:06:54 +01:00
const Vector2 * src = array . ptr ( ) ;
2016-10-19 16:14:41 +02:00
2021-11-28 01:12:10 +01:00
// Setting vertices means regenerating the AABB.
2016-10-19 16:14:41 +02:00
Rect2 aabb ;
2019-08-19 00:40:52 +02:00
{
2016-10-19 16:14:41 +02:00
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2021-07-19 07:21:22 +02:00
float vector [ 2 ] = { ( float ) src [ i ] . x , ( float ) src [ i ] . y } ;
2016-10-19 16:14:41 +02:00
2021-04-27 16:19:21 +02:00
memcpy ( & vw [ p_offsets [ ai ] + i * p_vertex_stride ] , vector , sizeof ( float ) * 2 ) ;
2016-10-19 16:14:41 +02:00
if ( i = = 0 ) {
2021-11-28 01:12:10 +01:00
aabb = Rect2 ( src [ i ] , SMALL_VEC2 ) ; // Must have a bit of size.
2016-10-19 16:14:41 +02:00
} else {
aabb . expand_to ( src [ i ] ) ;
}
}
}
2017-11-17 03:09:00 +01:00
r_aabb = AABB ( Vector3 ( aabb . position . x , aabb . position . y , 0 ) , Vector3 ( aabb . size . x , aabb . size . y , 0 ) ) ;
2016-10-19 16:14:41 +02:00
} else {
2020-02-17 22:06:54 +01:00
Vector < Vector3 > array = p_arrays [ ai ] ;
2016-10-19 16:14:41 +02:00
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
2020-02-17 22:06:54 +01:00
const Vector3 * src = array . ptr ( ) ;
2016-10-19 16:14:41 +02:00
2023-10-23 14:09:18 +02:00
r_aabb = AABB ( ) ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
if ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) {
// First we need to generate the AABB for the entire surface.
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
if ( i = = 0 ) {
2023-10-23 14:09:18 +02:00
r_aabb = AABB ( src [ i ] , SMALL_VEC3 ) ;
2023-08-29 21:04:32 +02:00
} else {
2023-10-23 14:09:18 +02:00
r_aabb . expand_to ( src [ i ] ) ;
2023-08-29 21:04:32 +02:00
}
}
2023-10-31 15:51:07 +01:00
if ( ! ( p_format & RS : : ARRAY_FORMAT_NORMAL ) ) {
2023-08-29 21:04:32 +02:00
// Early out if we are only setting vertex positions.
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2023-10-23 14:09:18 +02:00
Vector3 pos = ( src [ i ] - r_aabb . position ) / r_aabb . size ;
2023-08-29 21:04:32 +02:00
uint16_t vector [ 4 ] = {
( uint16_t ) CLAMP ( pos . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . y * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . z * 65535 , 0 , 65535 ) ,
( uint16_t ) 0
} ;
memcpy ( & vw [ p_offsets [ ai ] + i * p_vertex_stride ] , vector , sizeof ( uint16_t ) * 4 ) ;
}
continue ;
}
// Validate normal and tangent arrays.
ERR_FAIL_COND_V ( p_arrays [ RS : : ARRAY_NORMAL ] . get_type ( ) ! = Variant : : PACKED_VECTOR3_ARRAY , ERR_INVALID_PARAMETER ) ;
Vector < Vector3 > normal_array = p_arrays [ RS : : ARRAY_NORMAL ] ;
ERR_FAIL_COND_V ( normal_array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
const Vector3 * normal_src = normal_array . ptr ( ) ;
2023-10-31 15:51:07 +01:00
Variant : : Type tangent_type = p_arrays [ RS : : ARRAY_TANGENT ] . get_type ( ) ;
ERR_FAIL_COND_V ( tangent_type ! = Variant : : PACKED_FLOAT32_ARRAY & & tangent_type ! = Variant : : PACKED_FLOAT64_ARRAY & & tangent_type ! = Variant : : NIL , ERR_INVALID_PARAMETER ) ;
2023-08-29 21:04:32 +02:00
// We need a different version if using double precision tangents.
if ( tangent_type = = Variant : : PACKED_FLOAT32_ARRAY ) {
Vector < float > tangent_array = p_arrays [ RS : : ARRAY_TANGENT ] ;
ERR_FAIL_COND_V ( tangent_array . size ( ) ! = p_vertex_array_len * 4 , ERR_INVALID_PARAMETER ) ;
const float * tangent_src = tangent_array . ptr ( ) ;
// Set data for vertex, normal, and tangent.
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
float angle = 0.0 ;
Vector3 axis ;
Vector4 tangent = Vector4 ( tangent_src [ i * 4 + 0 ] , tangent_src [ i * 4 + 1 ] , tangent_src [ i * 4 + 2 ] , tangent_src [ i * 4 + 3 ] ) ;
_get_axis_angle ( normal_src [ i ] , tangent , angle , axis ) ;
// Store axis.
{
Vector2 res = axis . octahedron_encode ( ) ;
uint16_t vector [ 2 ] = {
( uint16_t ) CLAMP ( res . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( res . y * 65535 , 0 , 65535 ) ,
} ;
memcpy ( & vw [ p_offsets [ RS : : ARRAY_NORMAL ] + i * p_normal_stride ] , vector , 4 ) ;
}
// Store vertex position + angle.
{
2023-10-23 14:09:18 +02:00
Vector3 pos = ( src [ i ] - r_aabb . position ) / r_aabb . size ;
2023-08-29 21:04:32 +02:00
uint16_t vector [ 4 ] = {
( uint16_t ) CLAMP ( pos . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . y * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . z * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( angle * 65535 , 0 , 65535 )
} ;
memcpy ( & vw [ p_offsets [ ai ] + i * p_vertex_stride ] , vector , sizeof ( uint16_t ) * 4 ) ;
}
}
2023-10-31 15:51:07 +01:00
} else if ( tangent_type = = Variant : : PACKED_FLOAT64_ARRAY ) {
2023-08-29 21:04:32 +02:00
Vector < double > tangent_array = p_arrays [ RS : : ARRAY_TANGENT ] ;
ERR_FAIL_COND_V ( tangent_array . size ( ) ! = p_vertex_array_len * 4 , ERR_INVALID_PARAMETER ) ;
const double * tangent_src = tangent_array . ptr ( ) ;
// Set data for vertex, normal, and tangent.
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
float angle ;
Vector3 axis ;
Vector4 tangent = Vector4 ( tangent_src [ i * 4 + 0 ] , tangent_src [ i * 4 + 1 ] , tangent_src [ i * 4 + 2 ] , tangent_src [ i * 4 + 3 ] ) ;
_get_axis_angle ( normal_src [ i ] , tangent , angle , axis ) ;
// Store axis.
{
Vector2 res = axis . octahedron_encode ( ) ;
uint16_t vector [ 2 ] = {
( uint16_t ) CLAMP ( res . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( res . y * 65535 , 0 , 65535 ) ,
} ;
memcpy ( & vw [ p_offsets [ RS : : ARRAY_NORMAL ] + i * p_normal_stride ] , vector , 4 ) ;
}
2023-10-31 15:51:07 +01:00
// Store vertex position + angle.
{
Vector3 pos = ( src [ i ] - r_aabb . position ) / r_aabb . size ;
uint16_t vector [ 4 ] = {
( uint16_t ) CLAMP ( pos . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . y * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . z * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( angle * 65535 , 0 , 65535 )
} ;
memcpy ( & vw [ p_offsets [ ai ] + i * p_vertex_stride ] , vector , sizeof ( uint16_t ) * 4 ) ;
}
}
} else { // No tangent array.
// Set data for vertex, normal, and tangent.
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
float angle ;
Vector3 axis ;
// Generate an arbitrary vector that is tangential to normal.
Vector3 tan = Vector3 ( 0.0 , 1.0 , 0.0 ) . cross ( normal_src [ i ] . normalized ( ) ) ;
Vector4 tangent = Vector4 ( tan . x , tan . y , tan . z , 1.0 ) ;
_get_axis_angle ( normal_src [ i ] , tangent , angle , axis ) ;
// Store axis.
{
Vector2 res = axis . octahedron_encode ( ) ;
uint16_t vector [ 2 ] = {
( uint16_t ) CLAMP ( res . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( res . y * 65535 , 0 , 65535 ) ,
} ;
memcpy ( & vw [ p_offsets [ RS : : ARRAY_NORMAL ] + i * p_normal_stride ] , vector , 4 ) ;
}
2023-08-29 21:04:32 +02:00
// Store vertex position + angle.
{
2023-10-23 14:09:18 +02:00
Vector3 pos = ( src [ i ] - r_aabb . position ) / r_aabb . size ;
2023-08-29 21:04:32 +02:00
uint16_t vector [ 4 ] = {
( uint16_t ) CLAMP ( pos . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . y * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( pos . z * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( angle * 65535 , 0 , 65535 )
} ;
memcpy ( & vw [ p_offsets [ ai ] + i * p_vertex_stride ] , vector , sizeof ( uint16_t ) * 4 ) ;
}
}
}
} else {
2016-10-19 16:14:41 +02:00
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2021-07-19 07:21:22 +02:00
float vector [ 3 ] = { ( float ) src [ i ] . x , ( float ) src [ i ] . y , ( float ) src [ i ] . z } ;
2016-10-19 16:14:41 +02:00
2021-04-27 16:19:21 +02:00
memcpy ( & vw [ p_offsets [ ai ] + i * p_vertex_stride ] , vector , sizeof ( float ) * 3 ) ;
2016-10-19 16:14:41 +02:00
if ( i = = 0 ) {
2023-10-23 14:09:18 +02:00
r_aabb = AABB ( src [ i ] , SMALL_VEC3 ) ;
2016-10-19 16:14:41 +02:00
} else {
2023-10-23 14:09:18 +02:00
r_aabb . expand_to ( src [ i ] ) ;
2016-10-19 16:14:41 +02:00
}
}
}
}
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_NORMAL : {
2023-08-29 21:04:32 +02:00
// If using compression we store normal while storing vertices.
if ( ! ( p_format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ) {
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_VECTOR3_ARRAY , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
Vector < Vector3 > array = p_arrays [ ai ] ;
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
const Vector3 * src = array . ptr ( ) ;
2021-06-20 08:30:31 +02:00
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2023-08-29 21:04:32 +02:00
Vector2 res = src [ i ] . octahedron_encode ( ) ;
2023-06-30 14:17:37 +02:00
uint16_t vector [ 2 ] = {
( uint16_t ) CLAMP ( res . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( res . y * 65535 , 0 , 65535 ) ,
2022-02-23 00:10:09 +01:00
} ;
2023-08-29 21:04:32 +02:00
memcpy ( & vw [ p_offsets [ ai ] + i * p_normal_stride ] , vector , 4 ) ;
2021-06-11 17:35:31 +02:00
}
2023-08-29 21:04:32 +02:00
}
} break ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
case RS : : ARRAY_TANGENT : {
// If using compression we store tangent while storing vertices.
if ( ! ( p_format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ) {
Variant : : Type type = p_arrays [ ai ] . get_type ( ) ;
2023-11-07 14:24:23 +01:00
ERR_FAIL_COND_V ( type ! = Variant : : PACKED_FLOAT32_ARRAY & & type ! = Variant : : PACKED_FLOAT64_ARRAY & & type ! = Variant : : NIL , ERR_INVALID_PARAMETER ) ;
2023-08-29 21:04:32 +02:00
if ( type = = Variant : : PACKED_FLOAT32_ARRAY ) {
Vector < float > array = p_arrays [ ai ] ;
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len * 4 , ERR_INVALID_PARAMETER ) ;
const float * src_ptr = array . ptr ( ) ;
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
const Vector3 src ( src_ptr [ i * 4 + 0 ] , src_ptr [ i * 4 + 1 ] , src_ptr [ i * 4 + 2 ] ) ;
Vector2 res = src . octahedron_tangent_encode ( src_ptr [ i * 4 + 3 ] ) ;
uint16_t vector [ 2 ] = {
( uint16_t ) CLAMP ( res . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( res . y * 65535 , 0 , 65535 ) ,
} ;
2023-10-12 05:34:52 +02:00
if ( vector [ 0 ] = = 0 & & vector [ 1 ] = = 65535 ) {
// (1, 1) and (0, 1) decode to the same value, but (0, 1) messes with our compression detection.
// So we sanitize here.
vector [ 0 ] = 65535 ;
}
2023-08-29 21:04:32 +02:00
memcpy ( & vw [ p_offsets [ ai ] + i * p_normal_stride ] , vector , 4 ) ;
}
2023-11-07 14:24:23 +01:00
} else if ( type = = Variant : : PACKED_FLOAT64_ARRAY ) {
2023-08-29 21:04:32 +02:00
Vector < double > array = p_arrays [ ai ] ;
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len * 4 , ERR_INVALID_PARAMETER ) ;
const double * src_ptr = array . ptr ( ) ;
2022-02-23 00:10:09 +01:00
2023-08-29 21:04:32 +02:00
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
const Vector3 src ( src_ptr [ i * 4 + 0 ] , src_ptr [ i * 4 + 1 ] , src_ptr [ i * 4 + 2 ] ) ;
Vector2 res = src . octahedron_tangent_encode ( src_ptr [ i * 4 + 3 ] ) ;
uint16_t vector [ 2 ] = {
( uint16_t ) CLAMP ( res . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( res . y * 65535 , 0 , 65535 ) ,
} ;
2023-10-12 05:34:52 +02:00
if ( vector [ 0 ] = = 0 & & vector [ 1 ] = = 65535 ) {
// (1, 1) and (0, 1) decode to the same value, but (0, 1) messes with our compression detection.
// So we sanitize here.
vector [ 0 ] = 65535 ;
}
2023-11-07 14:24:23 +01:00
memcpy ( & vw [ p_offsets [ ai ] + i * p_normal_stride ] , vector , 4 ) ;
}
} else { // No tangent array.
ERR_FAIL_COND_V ( p_arrays [ RS : : ARRAY_NORMAL ] . get_type ( ) ! = Variant : : PACKED_VECTOR3_ARRAY , ERR_INVALID_PARAMETER ) ;
Vector < Vector3 > normal_array = p_arrays [ RS : : ARRAY_NORMAL ] ;
ERR_FAIL_COND_V ( normal_array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
const Vector3 * normal_src = normal_array . ptr ( ) ;
// Set data for tangent.
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
// Generate an arbitrary vector that is tangential to normal.
Vector3 tan = Vector3 ( 0.0 , 1.0 , 0.0 ) . cross ( normal_src [ i ] . normalized ( ) ) ;
Vector2 res = tan . octahedron_tangent_encode ( 1.0 ) ;
uint16_t vector [ 2 ] = {
( uint16_t ) CLAMP ( res . x * 65535 , 0 , 65535 ) ,
( uint16_t ) CLAMP ( res . y * 65535 , 0 , 65535 ) ,
} ;
if ( vector [ 0 ] = = 0 & & vector [ 1 ] = = 65535 ) {
// (1, 1) and (0, 1) decode to the same value, but (0, 1) messes with our compression detection.
// So we sanitize here.
vector [ 0 ] = 65535 ;
}
2023-08-29 21:04:32 +02:00
memcpy ( & vw [ p_offsets [ ai ] + i * p_normal_stride ] , vector , 4 ) ;
}
2021-06-20 08:30:31 +02:00
}
2016-10-19 16:14:41 +02:00
}
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_COLOR : {
2020-02-17 22:06:54 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_COLOR_ARRAY , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
Vector < Color > array = p_arrays [ ai ] ;
2016-10-19 16:14:41 +02:00
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
2020-02-17 22:06:54 +01:00
const Color * src = array . ptr ( ) ;
2020-12-02 02:40:47 +01:00
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2021-06-30 22:03:33 +02:00
uint8_t color8 [ 4 ] = {
uint8_t ( CLAMP ( src [ i ] . r * 255.0 , 0.0 , 255.0 ) ) ,
uint8_t ( CLAMP ( src [ i ] . g * 255.0 , 0.0 , 255.0 ) ) ,
uint8_t ( CLAMP ( src [ i ] . b * 255.0 , 0.0 , 255.0 ) ) ,
uint8_t ( CLAMP ( src [ i ] . a * 255.0 , 0.0 , 255.0 ) )
} ;
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , color8 , 4 ) ;
2016-10-19 16:14:41 +02:00
}
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TEX_UV : {
2020-02-17 22:06:54 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_VECTOR3_ARRAY & & p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_VECTOR2_ARRAY , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
Vector < Vector2 > array = p_arrays [ ai ] ;
2016-10-19 16:14:41 +02:00
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
2020-02-17 22:06:54 +01:00
const Vector2 * src = array . ptr ( ) ;
2023-08-29 21:04:32 +02:00
if ( p_format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES ) {
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
Vector2 vec = src [ i ] ;
2023-10-29 18:18:18 +01:00
if ( ! r_uv_scale . is_zero_approx ( ) ) {
// Normalize into 0-1 from possible range -uv_scale - uv_scale.
vec = vec / ( Vector2 ( r_uv_scale . x , r_uv_scale . y ) ) + Vector2 ( 0.5 , 0.5 ) ;
}
2023-08-29 21:04:32 +02:00
uint16_t uv [ 2 ] = { ( uint16_t ) CLAMP ( vec . x * 65535 , 0 , 65535 ) , ( uint16_t ) CLAMP ( vec . y * 65535 , 0 , 65535 ) } ;
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , uv , 4 ) ;
}
} else {
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
float uv [ 2 ] = { ( float ) src [ i ] . x , ( float ) src [ i ] . y } ;
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , uv , 2 * 4 ) ;
}
2016-10-19 16:14:41 +02:00
}
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TEX_UV2 : {
2020-02-17 22:06:54 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_VECTOR3_ARRAY & & p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_VECTOR2_ARRAY , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
Vector < Vector2 > array = p_arrays [ ai ] ;
2016-10-19 16:14:41 +02:00
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len , ERR_INVALID_PARAMETER ) ;
2020-02-17 22:06:54 +01:00
const Vector2 * src = array . ptr ( ) ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
if ( p_format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES ) {
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
Vector2 vec = src [ i ] ;
2023-10-29 18:18:18 +01:00
if ( ! r_uv_scale . is_zero_approx ( ) ) {
// Normalize into 0-1 from possible range -uv_scale - uv_scale.
vec = vec / ( Vector2 ( r_uv_scale . z , r_uv_scale . w ) ) + Vector2 ( 0.5 , 0.5 ) ;
}
2023-08-29 21:04:32 +02:00
uint16_t uv [ 2 ] = { ( uint16_t ) CLAMP ( vec . x * 65535 , 0 , 65535 ) , ( uint16_t ) CLAMP ( vec . y * 65535 , 0 , 65535 ) } ;
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , uv , 4 ) ;
}
} else {
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
float uv [ 2 ] = { ( float ) src [ i ] . x , ( float ) src [ i ] . y } ;
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , uv , 2 * 4 ) ;
}
2020-12-02 02:40:47 +01:00
}
} break ;
case RS : : ARRAY_CUSTOM0 :
case RS : : ARRAY_CUSTOM1 :
case RS : : ARRAY_CUSTOM2 :
case RS : : ARRAY_CUSTOM3 : {
2021-09-09 06:29:14 +02:00
uint32_t type = ( p_format > > ( ARRAY_FORMAT_CUSTOM_BASE + ARRAY_FORMAT_CUSTOM_BITS * ( ai - RS : : ARRAY_CUSTOM0 ) ) ) & ARRAY_FORMAT_CUSTOM_MASK ;
2020-12-02 02:40:47 +01:00
switch ( type ) {
case ARRAY_CUSTOM_RGBA8_UNORM :
case ARRAY_CUSTOM_RGBA8_SNORM :
case ARRAY_CUSTOM_RG_HALF : {
2021-11-28 01:12:10 +01:00
// Size 4
2020-12-02 02:40:47 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_BYTE_ARRAY , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
Vector < uint8_t > array = p_arrays [ ai ] ;
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len * 4 , ERR_INVALID_PARAMETER ) ;
const uint8_t * src = array . ptr ( ) ;
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2021-04-27 16:19:21 +02:00
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , & src [ i * 4 ] , 4 ) ;
2020-12-02 02:40:47 +01:00
}
} break ;
case ARRAY_CUSTOM_RGBA_HALF : {
2021-11-28 01:12:10 +01:00
// Size 8
2020-12-02 02:40:47 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_BYTE_ARRAY , ERR_INVALID_PARAMETER ) ;
Vector < uint8_t > array = p_arrays [ ai ] ;
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len * 8 , ERR_INVALID_PARAMETER ) ;
const uint8_t * src = array . ptr ( ) ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2021-04-27 16:19:21 +02:00
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , & src [ i * 8 ] , 8 ) ;
2020-12-02 02:40:47 +01:00
}
} break ;
case ARRAY_CUSTOM_R_FLOAT :
case ARRAY_CUSTOM_RG_FLOAT :
case ARRAY_CUSTOM_RGB_FLOAT :
case ARRAY_CUSTOM_RGBA_FLOAT : {
2021-11-28 01:12:10 +01:00
// RF
2020-12-02 02:40:47 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_FLOAT32_ARRAY , ERR_INVALID_PARAMETER ) ;
Vector < float > array = p_arrays [ ai ] ;
2021-09-09 06:29:14 +02:00
int32_t s = type - ARRAY_CUSTOM_R_FLOAT + 1 ;
2020-12-02 02:40:47 +01:00
ERR_FAIL_COND_V ( array . size ( ) ! = p_vertex_array_len * s , ERR_INVALID_PARAMETER ) ;
const float * src = array . ptr ( ) ;
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2021-09-09 06:29:14 +02:00
memcpy ( & aw [ p_offsets [ ai ] + i * p_attrib_stride ] , & src [ i * s ] , sizeof ( float ) * s ) ;
2020-12-02 02:40:47 +01:00
}
} break ;
default : {
2016-10-19 16:14:41 +02:00
}
}
2020-12-02 02:40:47 +01:00
2016-10-19 16:14:41 +02:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_WEIGHTS : {
2021-06-20 08:30:31 +02:00
Variant : : Type type = p_arrays [ ai ] . get_type ( ) ;
ERR_FAIL_COND_V ( type ! = Variant : : PACKED_FLOAT32_ARRAY & & type ! = Variant : : PACKED_FLOAT64_ARRAY , ERR_INVALID_PARAMETER ) ;
2020-12-02 02:40:47 +01:00
uint32_t bone_count = ( p_format & ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ? 8 : 4 ;
2021-06-20 08:30:31 +02:00
if ( type = = Variant : : PACKED_FLOAT32_ARRAY ) {
Vector < float > array = p_arrays [ ai ] ;
ERR_FAIL_COND_V ( array . size ( ) ! = ( int32_t ) ( p_vertex_array_len * bone_count ) , ERR_INVALID_PARAMETER ) ;
const float * src = array . ptr ( ) ;
{
uint16_t data [ 8 ] ;
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
for ( uint32_t j = 0 ; j < bone_count ; j + + ) {
data [ j ] = CLAMP ( src [ i * bone_count + j ] * 65535 , 0 , 65535 ) ;
}
2020-12-02 02:40:47 +01:00
2021-06-20 08:30:31 +02:00
memcpy ( & sw [ p_offsets [ ai ] + i * p_skin_stride ] , data , 2 * bone_count ) ;
2016-10-19 16:14:41 +02:00
}
2021-06-20 08:30:31 +02:00
}
2022-02-16 13:56:32 +01:00
} else { // PACKED_FLOAT64_ARRAY
2021-06-20 08:30:31 +02:00
Vector < double > array = p_arrays [ ai ] ;
ERR_FAIL_COND_V ( array . size ( ) ! = ( int32_t ) ( p_vertex_array_len * bone_count ) , ERR_INVALID_PARAMETER ) ;
const double * src = array . ptr ( ) ;
{
uint16_t data [ 8 ] ;
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
for ( uint32_t j = 0 ; j < bone_count ; j + + ) {
data [ j ] = CLAMP ( src [ i * bone_count + j ] * 65535 , 0 , 65535 ) ;
}
2016-10-19 16:14:41 +02:00
2021-06-20 08:30:31 +02:00
memcpy ( & sw [ p_offsets [ ai ] + i * p_skin_stride ] , data , 2 * bone_count ) ;
}
2016-10-19 16:14:41 +02:00
}
}
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_BONES : {
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_INT32_ARRAY & & p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_FLOAT32_ARRAY , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
Vector < int > array = p_arrays [ ai ] ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
uint32_t bone_count = ( p_format & ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ? 8 : 4 ;
ERR_FAIL_COND_V ( array . size ( ) ! = ( int32_t ) ( p_vertex_array_len * bone_count ) , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
const int * src = array . ptr ( ) ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
uint16_t data [ 8 ] ;
2019-08-19 00:40:52 +02:00
for ( int i = 0 ; i < p_vertex_array_len ; i + + ) {
2020-12-02 02:40:47 +01:00
for ( uint32_t j = 0 ; j < bone_count ; j + + ) {
data [ j ] = src [ i * bone_count + j ] ;
2019-08-19 00:40:52 +02:00
max_bone = MAX ( data [ j ] , max_bone ) ;
2016-10-19 16:14:41 +02:00
}
2021-04-27 16:19:21 +02:00
memcpy ( & sw [ p_offsets [ ai ] + i * p_skin_stride ] , data , 2 * bone_count ) ;
2016-10-19 16:14:41 +02:00
}
} break ;
2020-12-02 02:40:47 +01:00
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_INDEX : {
Fix some -Wmaybe-uninitialized warnings
Namely:
```
modules/basis_universal/register_types.cpp: In function 'Ref<Image> basis_universal_unpacker(const Vector<unsigned char>&)':
modules/basis_universal/register_types.cpp:266:15: warning: 'imgfmt' may be used uninitialized in this function [-Wmaybe-uninitialized]
266 | image->create(info.m_width, info.m_height, info.m_total_levels > 1, imgfmt, gpudata);
| ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
modules/basis_universal/register_types.cpp:255:39: warning: 'format' may be used uninitialized in this function [-Wmaybe-uninitialized]
255 | bool ret = tr.transcode_image_level(ptr, size, 0, i, dst + ofs, level.m_total_blocks - i, format);
| ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
```
servers/visual_server.cpp: In member function 'Error VisualServer::_surface_set_data(Array, uint32_t, uint32_t*, uint32_t, Vector<unsigned char>&, int, Vector<unsigned char>&, int, AABB&, Vector<AABB>&)':
servers/visual_server.cpp:636:15: warning: 'iw' may be used uninitialized in this function [-Wmaybe-uninitialized]
636 | copymem(&iw[i * 2], &v, 2);
| ^
```
```
core/image.cpp: In member function 'Error Image::generate_mipmap_roughness(Image::RoughnessChannel, const Ref<Image>&)':
core/image.cpp:1683:11: warning: 'roughness' may be used uninitialized in this function [-Wmaybe-uninitialized]
1683 | float roughness;
| ^~~~~~~~~
```
2020-03-27 12:36:59 +01:00
ERR_FAIL_NULL_V ( iw , ERR_INVALID_DATA ) ;
2016-10-19 16:14:41 +02:00
ERR_FAIL_COND_V ( p_index_array_len < = 0 , ERR_INVALID_DATA ) ;
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
ERR_FAIL_COND_V ( p_arrays [ ai ] . get_type ( ) ! = Variant : : PACKED_INT32_ARRAY , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
Vector < int > indices = p_arrays [ ai ] ;
2016-10-19 16:14:41 +02:00
ERR_FAIL_COND_V ( indices . size ( ) = = 0 , ERR_INVALID_PARAMETER ) ;
ERR_FAIL_COND_V ( indices . size ( ) ! = p_index_array_len , ERR_INVALID_PARAMETER ) ;
2018-01-18 21:37:17 +01:00
/* determine whether using 16 or 32 bits indices */
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
const int * src = indices . ptr ( ) ;
2016-10-19 16:14:41 +02:00
for ( int i = 0 ; i < p_index_array_len ; i + + ) {
2022-11-21 16:09:48 +01:00
if ( p_vertex_array_len < = ( 1 < < 16 ) & & p_vertex_array_len > 0 ) {
2016-10-19 16:14:41 +02:00
uint16_t v = src [ i ] ;
2021-04-27 16:19:21 +02:00
memcpy ( & iw [ i * 2 ] , & v , 2 ) ;
2016-10-19 16:14:41 +02:00
} else {
uint32_t v = src [ i ] ;
2021-04-27 16:19:21 +02:00
memcpy ( & iw [ i * 4 ] , & v , 4 ) ;
2016-10-19 16:14:41 +02:00
}
}
} break ;
default : {
ERR_FAIL_V ( ERR_INVALID_DATA ) ;
}
}
}
2020-03-27 19:21:27 +01:00
if ( p_format & RS : : ARRAY_FORMAT_BONES ) {
2021-11-28 01:12:10 +01:00
// Create AABBs for each detected bone.
2016-10-19 16:14:41 +02:00
int total_bones = max_bone + 1 ;
bool first = r_bone_aabb . size ( ) = = 0 ;
r_bone_aabb . resize ( total_bones ) ;
2020-12-16 15:07:08 +01:00
int weight_count = ( p_format & ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ? 8 : 4 ;
2016-10-19 16:14:41 +02:00
if ( first ) {
for ( int i = 0 ; i < total_bones ; i + + ) {
2021-11-28 01:12:10 +01:00
r_bone_aabb . write [ i ] . size = Vector3 ( - 1 , - 1 , - 1 ) ; // Negative means unused.
2016-10-19 16:14:41 +02:00
}
}
2020-03-27 19:21:27 +01:00
Vector < Vector3 > vertices = p_arrays [ RS : : ARRAY_VERTEX ] ;
Vector < int > bones = p_arrays [ RS : : ARRAY_BONES ] ;
Vector < float > weights = p_arrays [ RS : : ARRAY_WEIGHTS ] ;
2016-10-19 16:14:41 +02:00
bool any_valid = false ;
2020-12-16 15:07:08 +01:00
if ( vertices . size ( ) & & bones . size ( ) = = vertices . size ( ) * weight_count & & weights . size ( ) = = bones . size ( ) ) {
2016-10-19 16:14:41 +02:00
int vs = vertices . size ( ) ;
2020-02-17 22:06:54 +01:00
const Vector3 * rv = vertices . ptr ( ) ;
const int * rb = bones . ptr ( ) ;
const float * rw = weights . ptr ( ) ;
2016-10-19 16:14:41 +02:00
2017-11-25 04:07:54 +01:00
AABB * bptr = r_bone_aabb . ptrw ( ) ;
2016-10-19 16:14:41 +02:00
for ( int i = 0 ; i < vs ; i + + ) {
Vector3 v = rv [ i ] ;
2020-12-16 15:07:08 +01:00
for ( int j = 0 ; j < weight_count ; j + + ) {
int idx = rb [ i * weight_count + j ] ;
float w = rw [ i * weight_count + j ] ;
2020-05-14 16:41:43 +02:00
if ( w = = 0 ) {
2016-10-19 16:14:41 +02:00
continue ; //break;
2020-05-14 16:41:43 +02:00
}
2016-10-19 16:14:41 +02:00
ERR_FAIL_INDEX_V ( idx , total_bones , ERR_INVALID_DATA ) ;
2019-03-14 05:35:19 +01:00
if ( bptr [ idx ] . size . x < 0 ) {
2021-11-28 01:12:10 +01:00
// First
2017-11-17 03:09:00 +01:00
bptr [ idx ] = AABB ( v , SMALL_VEC3 ) ;
2016-10-19 16:14:41 +02:00
any_valid = true ;
} else {
bptr [ idx ] . expand_to ( v ) ;
}
}
}
}
if ( ! any_valid & & first ) {
r_bone_aabb . clear ( ) ;
}
}
return OK ;
}
2023-01-07 20:37:21 +01:00
uint32_t RenderingServer : : mesh_surface_get_format_offset ( BitField < ArrayFormat > p_format , int p_vertex_len , int p_array_index ) const {
2022-10-05 07:07:10 +02:00
ERR_FAIL_INDEX_V ( p_array_index , ARRAY_MAX , 0 ) ;
2023-10-12 22:01:41 +02:00
p_format = uint64_t ( p_format ) & ~ ARRAY_FORMAT_INDEX ;
2017-11-21 01:36:32 +01:00
uint32_t offsets [ ARRAY_MAX ] ;
2020-12-02 02:40:47 +01:00
uint32_t vstr ;
2023-08-29 21:04:32 +02:00
uint32_t ntstr ;
2020-12-02 02:40:47 +01:00
uint32_t astr ;
uint32_t sstr ;
2023-08-29 21:04:32 +02:00
mesh_surface_make_offsets_from_format ( p_format , p_vertex_len , 0 , offsets , vstr , ntstr , astr , sstr ) ;
2017-11-21 01:36:32 +01:00
return offsets [ p_array_index ] ;
}
2023-01-07 20:37:21 +01:00
uint32_t RenderingServer : : mesh_surface_get_format_vertex_stride ( BitField < ArrayFormat > p_format , int p_vertex_len ) const {
2023-10-12 22:01:41 +02:00
p_format = uint64_t ( p_format ) & ~ ARRAY_FORMAT_INDEX ;
2017-11-21 01:36:32 +01:00
uint32_t offsets [ ARRAY_MAX ] ;
2020-12-02 02:40:47 +01:00
uint32_t vstr ;
2023-08-29 21:04:32 +02:00
uint32_t ntstr ;
2020-12-02 02:40:47 +01:00
uint32_t astr ;
uint32_t sstr ;
2023-08-29 21:04:32 +02:00
mesh_surface_make_offsets_from_format ( p_format , p_vertex_len , 0 , offsets , vstr , ntstr , astr , sstr ) ;
2020-12-02 02:40:47 +01:00
return vstr ;
2017-11-21 01:36:32 +01:00
}
2023-08-29 21:04:32 +02:00
uint32_t RenderingServer : : mesh_surface_get_format_normal_tangent_stride ( BitField < ArrayFormat > p_format , int p_vertex_len ) const {
2023-10-12 22:01:41 +02:00
p_format = uint64_t ( p_format ) & ~ ARRAY_FORMAT_INDEX ;
2023-08-29 21:04:32 +02:00
uint32_t offsets [ ARRAY_MAX ] ;
uint32_t vstr ;
uint32_t ntstr ;
uint32_t astr ;
uint32_t sstr ;
mesh_surface_make_offsets_from_format ( p_format , p_vertex_len , 0 , offsets , vstr , ntstr , astr , sstr ) ;
2023-10-12 22:01:41 +02:00
return ntstr ;
2023-08-29 21:04:32 +02:00
}
2023-01-07 20:37:21 +01:00
uint32_t RenderingServer : : mesh_surface_get_format_attribute_stride ( BitField < ArrayFormat > p_format , int p_vertex_len ) const {
2023-10-12 22:01:41 +02:00
p_format = uint64_t ( p_format ) & ~ ARRAY_FORMAT_INDEX ;
2020-12-02 02:40:47 +01:00
uint32_t offsets [ ARRAY_MAX ] ;
uint32_t vstr ;
2023-08-29 21:04:32 +02:00
uint32_t ntstr ;
2020-12-02 02:40:47 +01:00
uint32_t astr ;
uint32_t sstr ;
2023-08-29 21:04:32 +02:00
mesh_surface_make_offsets_from_format ( p_format , p_vertex_len , 0 , offsets , vstr , ntstr , astr , sstr ) ;
2020-12-02 02:40:47 +01:00
return astr ;
}
2023-01-07 20:37:21 +01:00
uint32_t RenderingServer : : mesh_surface_get_format_skin_stride ( BitField < ArrayFormat > p_format , int p_vertex_len ) const {
2023-10-12 22:01:41 +02:00
p_format = uint64_t ( p_format ) & ~ ARRAY_FORMAT_INDEX ;
2020-12-02 02:40:47 +01:00
uint32_t offsets [ ARRAY_MAX ] ;
uint32_t vstr ;
2023-08-29 21:04:32 +02:00
uint32_t ntstr ;
2020-12-02 02:40:47 +01:00
uint32_t astr ;
uint32_t sstr ;
2023-08-29 21:04:32 +02:00
mesh_surface_make_offsets_from_format ( p_format , p_vertex_len , 0 , offsets , vstr , ntstr , astr , sstr ) ;
2020-12-02 02:40:47 +01:00
return sstr ;
}
2023-08-29 21:04:32 +02:00
void RenderingServer : : mesh_surface_make_offsets_from_format ( uint64_t p_format , int p_vertex_len , int p_index_len , uint32_t * r_offsets , uint32_t & r_vertex_element_size , uint32_t & r_normal_element_size , uint32_t & r_attrib_element_size , uint32_t & r_skin_element_size ) const {
2020-12-02 02:40:47 +01:00
r_vertex_element_size = 0 ;
2023-08-29 21:04:32 +02:00
r_normal_element_size = 0 ;
2020-12-02 02:40:47 +01:00
r_attrib_element_size = 0 ;
r_skin_element_size = 0 ;
2017-11-21 01:36:32 +01:00
2022-09-22 09:25:47 +02:00
uint32_t * size_accum = nullptr ;
2017-11-21 01:36:32 +01:00
2020-03-27 19:21:27 +01:00
for ( int i = 0 ; i < RS : : ARRAY_MAX ; i + + ) {
2021-11-28 01:12:10 +01:00
r_offsets [ i ] = 0 ; // Reset
2017-11-21 01:36:32 +01:00
2020-12-02 02:40:47 +01:00
if ( i = = RS : : ARRAY_VERTEX ) {
size_accum = & r_vertex_element_size ;
2023-08-29 21:04:32 +02:00
} else if ( i = = RS : : ARRAY_NORMAL ) {
size_accum = & r_normal_element_size ;
2020-12-02 02:40:47 +01:00
} else if ( i = = RS : : ARRAY_COLOR ) {
size_accum = & r_attrib_element_size ;
} else if ( i = = RS : : ARRAY_BONES ) {
size_accum = & r_skin_element_size ;
}
2023-08-29 21:04:32 +02:00
if ( ! ( p_format & ( 1ULL < < i ) ) ) { // No array
2017-11-21 01:36:32 +01:00
continue ;
2020-05-14 16:41:43 +02:00
}
2017-11-21 01:36:32 +01:00
int elem_size = 0 ;
switch ( i ) {
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_VERTEX : {
2017-11-21 01:36:32 +01:00
if ( p_format & ARRAY_FLAG_USE_2D_VERTICES ) {
elem_size = 2 ;
} else {
2023-08-29 21:04:32 +02:00
elem_size = ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ? 2 : 3 ;
2017-11-21 01:36:32 +01:00
}
2021-03-01 15:03:40 +01:00
elem_size * = sizeof ( float ) ;
2017-11-21 01:36:32 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_NORMAL : {
2020-12-02 02:40:47 +01:00
elem_size = 4 ;
2017-11-21 01:36:32 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TANGENT : {
2023-08-29 21:04:32 +02:00
elem_size = ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ? 0 : 4 ;
2017-11-21 01:36:32 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_COLOR : {
2021-06-30 22:03:33 +02:00
elem_size = 4 ;
2017-11-21 01:36:32 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TEX_UV : {
2023-08-29 21:04:32 +02:00
elem_size = ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ? 4 : 8 ;
2017-11-21 01:36:32 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TEX_UV2 : {
2023-08-29 21:04:32 +02:00
elem_size = ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ? 4 : 8 ;
2017-11-21 01:36:32 +01:00
} break ;
2020-12-02 02:40:47 +01:00
case RS : : ARRAY_CUSTOM0 :
case RS : : ARRAY_CUSTOM1 :
case RS : : ARRAY_CUSTOM2 :
case RS : : ARRAY_CUSTOM3 : {
2023-08-29 21:04:32 +02:00
uint64_t format = ( p_format > > ( ARRAY_FORMAT_CUSTOM_BASE + ( ARRAY_FORMAT_CUSTOM_BITS * ( i - ARRAY_CUSTOM0 ) ) ) ) & ARRAY_FORMAT_CUSTOM_MASK ;
2020-12-02 02:40:47 +01:00
switch ( format ) {
case ARRAY_CUSTOM_RGBA8_UNORM : {
elem_size = 4 ;
} break ;
case ARRAY_CUSTOM_RGBA8_SNORM : {
elem_size = 4 ;
} break ;
case ARRAY_CUSTOM_RG_HALF : {
elem_size = 4 ;
} break ;
case ARRAY_CUSTOM_RGBA_HALF : {
elem_size = 8 ;
} break ;
case ARRAY_CUSTOM_R_FLOAT : {
elem_size = 4 ;
} break ;
case ARRAY_CUSTOM_RG_FLOAT : {
elem_size = 8 ;
} break ;
case ARRAY_CUSTOM_RGB_FLOAT : {
elem_size = 12 ;
} break ;
case ARRAY_CUSTOM_RGBA_FLOAT : {
elem_size = 16 ;
} break ;
}
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_WEIGHTS : {
2020-12-02 02:40:47 +01:00
uint32_t bone_count = ( p_format & ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ? 8 : 4 ;
elem_size = sizeof ( uint16_t ) * bone_count ;
2017-11-21 01:36:32 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_BONES : {
2020-12-02 02:40:47 +01:00
uint32_t bone_count = ( p_format & ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ? 8 : 4 ;
elem_size = sizeof ( uint16_t ) * bone_count ;
2017-11-21 01:36:32 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_INDEX : {
2017-11-21 01:36:32 +01:00
if ( p_index_len < = 0 ) {
ERR_PRINT ( " index_array_len==NO_INDEX_ARRAY " ) ;
break ;
}
/* determine whether using 16 or 32 bits indices */
2022-11-21 16:09:48 +01:00
if ( p_vertex_len < = ( 1 < < 16 ) & & p_vertex_len > 0 ) {
2017-11-21 01:36:32 +01:00
elem_size = 2 ;
2022-11-21 16:09:48 +01:00
} else {
elem_size = 4 ;
2017-11-21 01:36:32 +01:00
}
r_offsets [ i ] = elem_size ;
continue ;
2019-06-26 15:08:25 +02:00
}
2017-11-21 01:36:32 +01:00
default : {
2020-12-02 02:40:47 +01:00
ERR_FAIL ( ) ;
2017-11-21 01:36:32 +01:00
}
}
2022-09-22 09:25:47 +02:00
if ( size_accum ! = nullptr ) {
r_offsets [ i ] = ( * size_accum ) ;
2023-08-29 21:04:32 +02:00
if ( i = = RS : : ARRAY_NORMAL | | i = = RS : : ARRAY_TANGENT ) {
r_offsets [ i ] + = r_vertex_element_size * p_vertex_len ;
}
2022-09-22 09:25:47 +02:00
( * size_accum ) + = elem_size ;
} else {
r_offsets [ i ] = 0 ;
}
2017-11-21 01:36:32 +01:00
}
}
2023-08-29 21:04:32 +02:00
Error RenderingServer : : mesh_create_surface_data_from_arrays ( SurfaceData * r_surface_data , PrimitiveType p_primitive , const Array & p_arrays , const Array & p_blend_shapes , const Dictionary & p_lods , uint64_t p_compress_format ) {
2020-03-27 19:21:27 +01:00
ERR_FAIL_INDEX_V ( p_primitive , RS : : PRIMITIVE_MAX , ERR_INVALID_PARAMETER ) ;
ERR_FAIL_COND_V ( p_arrays . size ( ) ! = RS : : ARRAY_MAX , ERR_INVALID_PARAMETER ) ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
uint64_t format = 0 ;
2016-10-19 16:14:41 +02:00
2021-11-28 01:12:10 +01:00
// Validation
2016-10-19 16:14:41 +02:00
int index_array_len = 0 ;
int array_len = 0 ;
for ( int i = 0 ; i < p_arrays . size ( ) ; i + + ) {
2020-05-14 16:41:43 +02:00
if ( p_arrays [ i ] . get_type ( ) = = Variant : : NIL ) {
2016-10-19 16:14:41 +02:00
continue ;
2020-05-14 16:41:43 +02:00
}
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
format | = ( 1ULL < < i ) ;
2016-10-19 16:14:41 +02:00
2020-03-27 19:21:27 +01:00
if ( i = = RS : : ARRAY_VERTEX ) {
2020-12-02 02:40:47 +01:00
switch ( p_arrays [ i ] . get_type ( ) ) {
2020-02-17 22:06:54 +01:00
case Variant : : PACKED_VECTOR2_ARRAY : {
2020-12-02 02:40:47 +01:00
Vector < Vector2 > v2 = p_arrays [ i ] ;
array_len = v2 . size ( ) ;
2021-05-10 18:12:44 +02:00
format | = ARRAY_FLAG_USE_2D_VERTICES ;
2016-10-19 16:14:41 +02:00
} break ;
2020-02-17 22:06:54 +01:00
case Variant : : PACKED_VECTOR3_ARRAY : {
2021-05-10 18:12:44 +02:00
ERR_FAIL_COND_V ( p_compress_format & ARRAY_FLAG_USE_2D_VERTICES , ERR_INVALID_PARAMETER ) ;
2020-12-02 02:40:47 +01:00
Vector < Vector3 > v3 = p_arrays [ i ] ;
array_len = v3 . size ( ) ;
2016-10-19 16:14:41 +02:00
} break ;
default : {
2023-12-02 07:44:59 +01:00
ERR_FAIL_V_MSG ( ERR_INVALID_DATA , " Vertex array must be a PackedVector2Array or PackedVector3Array. " ) ;
2016-10-19 16:14:41 +02:00
} break ;
}
2019-08-19 00:40:52 +02:00
ERR_FAIL_COND_V ( array_len = = 0 , ERR_INVALID_DATA ) ;
2023-11-07 14:24:23 +01:00
} else if ( i = = RS : : ARRAY_NORMAL ) {
if ( p_arrays [ RS : : ARRAY_TANGENT ] . get_type ( ) = = Variant : : NIL ) {
// We must use tangents if using normals.
format | = ( 1ULL < < RS : : ARRAY_TANGENT ) ;
}
2020-12-28 20:51:48 +01:00
} else if ( i = = RS : : ARRAY_BONES ) {
switch ( p_arrays [ i ] . get_type ( ) ) {
case Variant : : PACKED_INT32_ARRAY : {
2021-05-20 12:07:26 +02:00
Vector < Vector3 > vertices = p_arrays [ RS : : ARRAY_VERTEX ] ;
2020-12-28 20:51:48 +01:00
Vector < int32_t > bones = p_arrays [ i ] ;
int32_t bone_8_group_count = bones . size ( ) / ( ARRAY_WEIGHTS_SIZE * 2 ) ;
2021-05-20 12:07:26 +02:00
int32_t vertex_count = vertices . size ( ) ;
2020-12-28 20:51:48 +01:00
if ( vertex_count = = bone_8_group_count ) {
format | = RS : : ARRAY_FLAG_USE_8_BONE_WEIGHTS ;
}
} break ;
default : {
2023-12-02 07:44:59 +01:00
ERR_FAIL_V_MSG ( ERR_INVALID_DATA , " Bones array must be a PackedInt32Array. " ) ;
2020-12-28 20:51:48 +01:00
} break ;
}
2020-03-27 19:21:27 +01:00
} else if ( i = = RS : : ARRAY_INDEX ) {
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
index_array_len = PackedInt32Array ( p_arrays [ i ] ) . size ( ) ;
2016-10-19 16:14:41 +02:00
}
}
if ( p_blend_shapes . size ( ) ) {
2021-11-28 01:12:10 +01:00
// Validate format for morphs.
2016-10-19 16:14:41 +02:00
for ( int i = 0 ; i < p_blend_shapes . size ( ) ; i + + ) {
uint32_t bsformat = 0 ;
Array arr = p_blend_shapes [ i ] ;
for ( int j = 0 ; j < arr . size ( ) ; j + + ) {
2020-05-14 16:41:43 +02:00
if ( arr [ j ] . get_type ( ) ! = Variant : : NIL ) {
2016-10-19 16:14:41 +02:00
bsformat | = ( 1 < < j ) ;
2020-05-14 16:41:43 +02:00
}
2016-10-19 16:14:41 +02:00
}
2022-02-08 13:38:19 +01:00
ERR_FAIL_COND_V_MSG ( bsformat ! = ( format & RS : : ARRAY_FORMAT_BLEND_SHAPE_MASK ) , ERR_INVALID_PARAMETER , " Blend shape format must match the main array format for Vertex, Normal and Tangent arrays. " ) ;
2016-10-19 16:14:41 +02:00
}
}
2021-09-09 06:29:14 +02:00
for ( uint32_t i = 0 ; i < RS : : ARRAY_CUSTOM_COUNT ; + + i ) {
2021-11-28 01:12:10 +01:00
// Include custom array format type.
2023-08-29 21:04:32 +02:00
if ( format & ( 1ULL < < ( ARRAY_CUSTOM0 + i ) ) ) {
2021-09-09 06:29:14 +02:00
format | = ( RS : : ARRAY_FORMAT_CUSTOM_MASK < < ( RS : : ARRAY_FORMAT_CUSTOM_BASE + i * RS : : ARRAY_FORMAT_CUSTOM_BITS ) ) & p_compress_format ;
}
}
2020-03-27 19:21:27 +01:00
uint32_t offsets [ RS : : ARRAY_MAX ] ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
uint32_t vertex_element_size ;
2023-08-29 21:04:32 +02:00
uint32_t normal_element_size ;
2020-12-02 02:40:47 +01:00
uint32_t attrib_element_size ;
uint32_t skin_element_size ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
uint64_t mask = ( 1ULL < < ARRAY_MAX ) - 1ULL ;
2021-11-28 01:12:10 +01:00
format | = ( ~ mask ) & p_compress_format ; // Make the full format.
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
// Force version to the current version as this function will always return a surface with the current version.
format & = ~ ( ARRAY_FLAG_FORMAT_VERSION_MASK < < ARRAY_FLAG_FORMAT_VERSION_SHIFT ) ;
format | = ARRAY_FLAG_FORMAT_CURRENT_VERSION & ( ARRAY_FLAG_FORMAT_VERSION_MASK < < ARRAY_FLAG_FORMAT_VERSION_SHIFT ) ;
mesh_surface_make_offsets_from_format ( format , array_len , index_array_len , offsets , vertex_element_size , normal_element_size , attrib_element_size , skin_element_size ) ;
2022-06-24 20:22:26 +02:00
if ( ( format & RS : : ARRAY_FORMAT_VERTEX ) = = 0 & & ! ( format & RS : : ARRAY_FLAG_USES_EMPTY_VERTEX_ARRAY ) ) {
ERR_PRINT ( " Mesh created without vertex array. This mesh will not be visible with the default shader. If using an empty vertex array is intentional, create the mesh with the ARRAY_FLAG_USES_EMPTY_VERTEX_ARRAY flag to silence this error. " ) ;
// Set the flag here after warning to suppress errors down the pipeline.
format | = RS : : ARRAY_FLAG_USES_EMPTY_VERTEX_ARRAY ;
}
2023-10-14 05:59:56 +02:00
if ( ( format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES ) & & ( ( format & RS : : ARRAY_FORMAT_NORMAL ) | | ( format & RS : : ARRAY_FORMAT_TANGENT ) ) ) {
2023-08-29 21:04:32 +02:00
// If using normals or tangents, then we need all three.
ERR_FAIL_COND_V_MSG ( ! ( format & RS : : ARRAY_FORMAT_VERTEX ) , ERR_INVALID_PARAMETER , " Can't use compression flag 'ARRAY_FLAG_COMPRESS_ATTRIBUTES' while using normals or tangents without vertex array. " ) ;
ERR_FAIL_COND_V_MSG ( ! ( format & RS : : ARRAY_FORMAT_NORMAL ) , ERR_INVALID_PARAMETER , " Can't use compression flag 'ARRAY_FLAG_COMPRESS_ATTRIBUTES' while using tangents without normal array. " ) ;
2023-10-31 15:51:07 +01:00
}
2023-08-29 21:04:32 +02:00
int vertex_array_size = ( vertex_element_size + normal_element_size ) * array_len ;
2020-12-02 02:40:47 +01:00
int attrib_array_size = attrib_element_size * array_len ;
int skin_array_size = skin_element_size * array_len ;
int index_array_size = offsets [ RS : : ARRAY_INDEX ] * index_array_len ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
Vector < uint8_t > vertex_array ;
2020-12-02 02:40:47 +01:00
vertex_array . resize ( vertex_array_size ) ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
Vector < uint8_t > attrib_array ;
attrib_array . resize ( attrib_array_size ) ;
Vector < uint8_t > skin_array ;
skin_array . resize ( skin_array_size ) ;
2016-10-19 16:14:41 +02:00
2020-02-17 22:06:54 +01:00
Vector < uint8_t > index_array ;
2016-10-19 16:14:41 +02:00
index_array . resize ( index_array_size ) ;
2017-11-17 03:09:00 +01:00
AABB aabb ;
Vector < AABB > bone_aabb ;
2016-10-19 16:14:41 +02:00
2023-08-29 21:04:32 +02:00
Vector4 uv_scale = Vector4 ( 0.0 , 0.0 , 0.0 , 0.0 ) ;
Error err = _surface_set_data ( p_arrays , format , offsets , vertex_element_size , normal_element_size , attrib_element_size , skin_element_size , vertex_array , attrib_array , skin_array , array_len , index_array , index_array_len , aabb , bone_aabb , uv_scale ) ;
2019-08-19 00:40:52 +02:00
ERR_FAIL_COND_V_MSG ( err ! = OK , ERR_INVALID_DATA , " Invalid array format for surface. " ) ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
Vector < uint8_t > blend_shape_data ;
2016-10-19 16:14:41 +02:00
2020-12-02 02:40:47 +01:00
if ( p_blend_shapes . size ( ) ) {
uint32_t bs_format = format & RS : : ARRAY_FORMAT_BLEND_SHAPE_MASK ;
for ( int i = 0 ; i < p_blend_shapes . size ( ) ; i + + ) {
Vector < uint8_t > vertex_array_shape ;
vertex_array_shape . resize ( vertex_array_size ) ;
Vector < uint8_t > noindex ;
Vector < uint8_t > noattrib ;
Vector < uint8_t > noskin ;
AABB laabb ;
2023-08-29 21:04:32 +02:00
Vector4 bone_uv_scale ; // Not used.
Error err2 = _surface_set_data ( p_blend_shapes [ i ] , bs_format , offsets , vertex_element_size , normal_element_size , 0 , 0 , vertex_array_shape , noattrib , noskin , array_len , noindex , 0 , laabb , bone_aabb , bone_uv_scale ) ;
2020-12-02 02:40:47 +01:00
aabb . merge_with ( laabb ) ;
ERR_FAIL_COND_V_MSG ( err2 ! = OK , ERR_INVALID_DATA , " Invalid blend shape array format for surface. " ) ;
blend_shape_data . append_array ( vertex_array_shape ) ;
}
2016-10-19 16:14:41 +02:00
}
2019-08-19 00:40:52 +02:00
Vector < SurfaceData : : LOD > lods ;
if ( index_array_len ) {
List < Variant > keys ;
p_lods . get_key_list ( & keys ) ;
2023-01-17 12:48:10 +01:00
keys . sort ( ) ; // otherwise lod levels may get skipped
2021-07-24 15:46:25 +02:00
for ( const Variant & E : keys ) {
2021-07-16 05:45:57 +02:00
float distance = E ;
2019-08-19 00:40:52 +02:00
ERR_CONTINUE ( distance < = 0.0 ) ;
2021-07-16 05:45:57 +02:00
Vector < int > indices = p_lods [ E ] ;
2019-08-19 00:40:52 +02:00
ERR_CONTINUE ( indices . size ( ) = = 0 ) ;
uint32_t index_count = indices . size ( ) ;
2021-11-28 01:12:10 +01:00
ERR_CONTINUE ( index_count > = ( uint32_t ) index_array_len ) ; // Should be smaller..
2019-08-19 00:40:52 +02:00
2020-02-17 22:06:54 +01:00
const int * r = indices . ptr ( ) ;
2019-08-19 00:40:52 +02:00
2020-02-17 22:06:54 +01:00
Vector < uint8_t > data ;
2019-08-19 00:40:52 +02:00
if ( array_len < = 65536 ) {
2021-11-28 01:12:10 +01:00
// 16 bits indices
2019-08-19 00:40:52 +02:00
data . resize ( indices . size ( ) * 2 ) ;
2020-02-17 22:06:54 +01:00
uint8_t * w = data . ptrw ( ) ;
uint16_t * index_ptr = ( uint16_t * ) w ;
2019-08-19 00:40:52 +02:00
for ( uint32_t i = 0 ; i < index_count ; i + + ) {
index_ptr [ i ] = r [ i ] ;
}
} else {
2021-11-28 01:12:10 +01:00
// 32 bits indices
2019-08-19 00:40:52 +02:00
data . resize ( indices . size ( ) * 4 ) ;
2020-02-17 22:06:54 +01:00
uint8_t * w = data . ptrw ( ) ;
uint32_t * index_ptr = ( uint32_t * ) w ;
2019-08-19 00:40:52 +02:00
for ( uint32_t i = 0 ; i < index_count ; i + + ) {
index_ptr [ i ] = r [ i ] ;
}
}
SurfaceData : : LOD lod ;
lod . edge_length = distance ;
lod . index_data = data ;
lods . push_back ( lod ) ;
}
}
SurfaceData & surface_data = * r_surface_data ;
surface_data . format = format ;
surface_data . primitive = p_primitive ;
surface_data . aabb = aabb ;
surface_data . vertex_data = vertex_array ;
2020-12-02 02:40:47 +01:00
surface_data . attribute_data = attrib_array ;
surface_data . skin_data = skin_array ;
2019-08-19 00:40:52 +02:00
surface_data . vertex_count = array_len ;
surface_data . index_data = index_array ;
surface_data . index_count = index_array_len ;
2020-12-02 02:40:47 +01:00
surface_data . blend_shape_data = blend_shape_data ;
2019-08-19 00:40:52 +02:00
surface_data . bone_aabbs = bone_aabb ;
surface_data . lods = lods ;
2023-08-29 21:04:32 +02:00
surface_data . uv_scale = uv_scale ;
2016-10-19 16:14:41 +02:00
2019-08-19 00:40:52 +02:00
return OK ;
}
2023-01-07 20:37:21 +01:00
void RenderingServer : : mesh_add_surface_from_arrays ( RID p_mesh , PrimitiveType p_primitive , const Array & p_arrays , const Array & p_blend_shapes , const Dictionary & p_lods , BitField < ArrayFormat > p_compress_format ) {
2019-08-19 00:40:52 +02:00
SurfaceData sd ;
Error err = mesh_create_surface_data_from_arrays ( & sd , p_primitive , p_arrays , p_blend_shapes , p_lods , p_compress_format ) ;
if ( err ! = OK ) {
return ;
}
mesh_add_surface ( p_mesh , sd ) ;
2016-10-03 21:33:42 +02:00
}
2023-10-29 18:18:18 +01:00
Array RenderingServer : : _get_array_from_surface ( uint64_t p_format , Vector < uint8_t > p_vertex_data , Vector < uint8_t > p_attrib_data , Vector < uint8_t > p_skin_data , int p_vertex_len , Vector < uint8_t > p_index_data , int p_index_len , const AABB & p_aabb , const Vector4 & p_uv_scale ) const {
2020-12-02 02:40:47 +01:00
uint32_t offsets [ RS : : ARRAY_MAX ] ;
2016-11-10 03:55:06 +01:00
2020-12-02 02:40:47 +01:00
uint32_t vertex_elem_size ;
2023-08-29 21:04:32 +02:00
uint32_t normal_elem_size ;
2020-12-02 02:40:47 +01:00
uint32_t attrib_elem_size ;
uint32_t skin_elem_size ;
2023-08-29 21:04:32 +02:00
mesh_surface_make_offsets_from_format ( p_format , p_vertex_len , p_index_len , offsets , vertex_elem_size , normal_elem_size , attrib_elem_size , skin_elem_size ) ;
2016-11-10 03:55:06 +01:00
Array ret ;
2020-03-27 19:21:27 +01:00
ret . resize ( RS : : ARRAY_MAX ) ;
2016-11-10 03:55:06 +01:00
2020-02-17 22:06:54 +01:00
const uint8_t * r = p_vertex_data . ptr ( ) ;
2020-12-02 02:40:47 +01:00
const uint8_t * ar = p_attrib_data . ptr ( ) ;
const uint8_t * sr = p_skin_data . ptr ( ) ;
2016-11-10 03:55:06 +01:00
2020-03-27 19:21:27 +01:00
for ( int i = 0 ; i < RS : : ARRAY_MAX ; i + + ) {
2023-08-29 21:04:32 +02:00
if ( ! ( p_format & ( 1ULL < < i ) ) ) {
2016-11-10 03:55:06 +01:00
continue ;
2020-05-14 16:41:43 +02:00
}
2016-11-10 03:55:06 +01:00
switch ( i ) {
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_VERTEX : {
2016-11-10 03:55:06 +01:00
if ( p_format & ARRAY_FLAG_USE_2D_VERTICES ) {
2020-02-17 22:06:54 +01:00
Vector < Vector2 > arr_2d ;
2016-11-10 03:55:06 +01:00
arr_2d . resize ( p_vertex_len ) ;
2019-08-19 00:40:52 +02:00
{
2020-02-17 22:06:54 +01:00
Vector2 * w = arr_2d . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
2022-04-07 12:23:40 +02:00
const float * v = reinterpret_cast < const float * > ( & r [ j * vertex_elem_size + offsets [ i ] ] ) ;
2016-11-10 03:55:06 +01:00
w [ j ] = Vector2 ( v [ 0 ] , v [ 1 ] ) ;
}
}
ret [ i ] = arr_2d ;
} else {
2020-02-17 22:06:54 +01:00
Vector < Vector3 > arr_3d ;
2016-11-10 03:55:06 +01:00
arr_3d . resize ( p_vertex_len ) ;
2019-08-19 00:40:52 +02:00
{
2020-02-17 22:06:54 +01:00
Vector3 * w = arr_3d . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
if ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) {
// We only have vertices to read, so just read them and skip everything else.
2023-10-31 15:51:07 +01:00
if ( ! ( p_format & RS : : ARRAY_FORMAT_NORMAL ) ) {
2023-08-29 21:04:32 +02:00
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const uint16_t * v = reinterpret_cast < const uint16_t * > ( & r [ j * vertex_elem_size + offsets [ i ] ] ) ;
Vector3 vec = Vector3 ( float ( v [ 0 ] ) / 65535.0 , float ( v [ 1 ] ) / 65535.0 , float ( v [ 2 ] ) / 65535.0 ) ;
w [ j ] = ( vec * p_aabb . size ) + p_aabb . position ;
}
continue ;
}
Vector < Vector3 > normals ;
normals . resize ( p_vertex_len ) ;
Vector3 * normalsw = normals . ptrw ( ) ;
Vector < float > tangents ;
tangents . resize ( p_vertex_len * 4 ) ;
float * tangentsw = tangents . ptrw ( ) ;
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const uint32_t n = * ( const uint32_t * ) & r [ j * normal_elem_size + offsets [ RS : : ARRAY_NORMAL ] ] ;
Vector3 axis = Vector3 : : octahedron_decode ( Vector2 ( ( n & 0xFFFF ) / 65535.0 , ( ( n > > 16 ) & 0xFFFF ) / 65535.0 ) ) ;
const uint16_t * v = reinterpret_cast < const uint16_t * > ( & r [ j * vertex_elem_size + offsets [ i ] ] ) ;
Vector3 vec = Vector3 ( float ( v [ 0 ] ) / 65535.0 , float ( v [ 1 ] ) / 65535.0 , float ( v [ 2 ] ) / 65535.0 ) ;
float angle = float ( v [ 3 ] ) / 65535.0 ;
w [ j ] = ( vec * p_aabb . size ) + p_aabb . position ;
Vector3 normal ;
Vector4 tan ;
_get_tbn_from_axis_angle ( axis , angle , normal , tan ) ;
normalsw [ j ] = normal ;
tangentsw [ j * 4 + 0 ] = tan . x ;
tangentsw [ j * 4 + 1 ] = tan . y ;
tangentsw [ j * 4 + 2 ] = tan . z ;
tangentsw [ j * 4 + 3 ] = tan . w ;
}
ret [ RS : : ARRAY_NORMAL ] = normals ;
2023-10-14 05:59:56 +02:00
ret [ RS : : ARRAY_TANGENT ] = tangents ;
2023-08-29 21:04:32 +02:00
} else {
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const float * v = reinterpret_cast < const float * > ( & r [ j * vertex_elem_size + offsets [ i ] ] ) ;
w [ j ] = Vector3 ( v [ 0 ] , v [ 1 ] , v [ 2 ] ) ;
}
2016-11-10 03:55:06 +01:00
}
}
ret [ i ] = arr_3d ;
}
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_NORMAL : {
2023-08-29 21:04:32 +02:00
if ( ! ( p_format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ) {
Vector < Vector3 > arr ;
arr . resize ( p_vertex_len ) ;
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
Vector3 * w = arr . ptrw ( ) ;
2022-09-15 00:48:03 +02:00
2023-08-29 21:04:32 +02:00
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const uint32_t v = * ( const uint32_t * ) & r [ j * normal_elem_size + offsets [ i ] ] ;
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
w [ j ] = Vector3 : : octahedron_decode ( Vector2 ( ( v & 0xFFFF ) / 65535.0 , ( ( v > > 16 ) & 0xFFFF ) / 65535.0 ) ) ;
}
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
ret [ i ] = arr ;
}
2016-11-10 03:55:06 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TANGENT : {
2023-08-29 21:04:32 +02:00
if ( ! ( p_format & RS : : ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ) {
Vector < float > arr ;
arr . resize ( p_vertex_len * 4 ) ;
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
float * w = arr . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const uint32_t v = * ( const uint32_t * ) & r [ j * normal_elem_size + offsets [ i ] ] ;
float tangent_sign ;
Vector3 res = Vector3 : : octahedron_tangent_decode ( Vector2 ( ( v & 0xFFFF ) / 65535.0 , ( ( v > > 16 ) & 0xFFFF ) / 65535.0 ) , & tangent_sign ) ;
w [ j * 4 + 0 ] = res . x ;
w [ j * 4 + 1 ] = res . y ;
w [ j * 4 + 2 ] = res . z ;
w [ j * 4 + 3 ] = tangent_sign ;
}
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
ret [ i ] = arr ;
}
2016-11-10 03:55:06 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_COLOR : {
2020-02-17 22:06:54 +01:00
Vector < Color > arr ;
2016-11-10 03:55:06 +01:00
arr . resize ( p_vertex_len ) ;
2020-12-02 02:40:47 +01:00
Color * w = arr . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
2020-12-02 02:40:47 +01:00
for ( int32_t j = 0 ; j < p_vertex_len ; j + + ) {
2022-04-07 12:23:40 +02:00
const uint8_t * v = reinterpret_cast < const uint8_t * > ( & ar [ j * attrib_elem_size + offsets [ i ] ] ) ;
2021-06-30 22:03:33 +02:00
w [ j ] = Color ( v [ 0 ] / 255.0 , v [ 1 ] / 255.0 , v [ 2 ] / 255.0 , v [ 3 ] / 255.0 ) ;
2016-11-10 03:55:06 +01:00
}
ret [ i ] = arr ;
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TEX_UV : {
2020-02-17 22:06:54 +01:00
Vector < Vector2 > arr ;
2016-11-10 03:55:06 +01:00
arr . resize ( p_vertex_len ) ;
2020-12-02 02:40:47 +01:00
Vector2 * w = arr . ptrw ( ) ;
2023-08-29 21:04:32 +02:00
if ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) {
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const uint16_t * v = reinterpret_cast < const uint16_t * > ( & ar [ j * attrib_elem_size + offsets [ i ] ] ) ;
2023-10-29 18:18:18 +01:00
Vector2 vec = Vector2 ( float ( v [ 0 ] ) / 65535.0 , float ( v [ 1 ] ) / 65535.0 ) ;
if ( ! p_uv_scale . is_zero_approx ( ) ) {
vec = ( vec - Vector2 ( 0.5 , 0.5 ) ) * Vector2 ( p_uv_scale . x , p_uv_scale . y ) ;
}
w [ j ] = vec ;
2023-08-29 21:04:32 +02:00
}
} else {
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const float * v = reinterpret_cast < const float * > ( & ar [ j * attrib_elem_size + offsets [ i ] ] ) ;
w [ j ] = Vector2 ( v [ 0 ] , v [ 1 ] ) ;
}
2016-11-10 03:55:06 +01:00
}
ret [ i ] = arr ;
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_TEX_UV2 : {
2020-02-17 22:06:54 +01:00
Vector < Vector2 > arr ;
2016-11-10 03:55:06 +01:00
arr . resize ( p_vertex_len ) ;
2020-12-02 02:40:47 +01:00
Vector2 * w = arr . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
2023-08-29 21:04:32 +02:00
if ( p_format & ARRAY_FLAG_COMPRESS_ATTRIBUTES ) {
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const uint16_t * v = reinterpret_cast < const uint16_t * > ( & ar [ j * attrib_elem_size + offsets [ i ] ] ) ;
2023-10-29 18:18:18 +01:00
Vector2 vec = Vector2 ( float ( v [ 0 ] ) / 65535.0 , float ( v [ 1 ] ) / 65535.0 ) ;
if ( ! p_uv_scale . is_zero_approx ( ) ) {
vec = ( vec - Vector2 ( 0.5 , 0.5 ) ) * Vector2 ( p_uv_scale . z , p_uv_scale . w ) ;
}
w [ j ] = vec ;
2023-08-29 21:04:32 +02:00
}
} else {
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
const float * v = reinterpret_cast < const float * > ( & ar [ j * attrib_elem_size + offsets [ i ] ] ) ;
w [ j ] = Vector2 ( v [ 0 ] , v [ 1 ] ) ;
}
2016-11-10 03:55:06 +01:00
}
ret [ i ] = arr ;
2020-12-02 02:40:47 +01:00
} break ;
case RS : : ARRAY_CUSTOM0 :
case RS : : ARRAY_CUSTOM1 :
case RS : : ARRAY_CUSTOM2 :
case RS : : ARRAY_CUSTOM3 : {
2021-09-09 06:29:14 +02:00
uint32_t type = ( p_format > > ( ARRAY_FORMAT_CUSTOM_BASE + ARRAY_FORMAT_CUSTOM_BITS * ( i - RS : : ARRAY_CUSTOM0 ) ) ) & ARRAY_FORMAT_CUSTOM_MASK ;
2020-12-02 02:40:47 +01:00
switch ( type ) {
case ARRAY_CUSTOM_RGBA8_UNORM :
case ARRAY_CUSTOM_RGBA8_SNORM :
case ARRAY_CUSTOM_RG_HALF :
case ARRAY_CUSTOM_RGBA_HALF : {
2021-11-28 01:12:10 +01:00
// Size 4
2020-12-02 02:40:47 +01:00
int s = type = = ARRAY_CUSTOM_RGBA_HALF ? 8 : 4 ;
Vector < uint8_t > arr ;
arr . resize ( p_vertex_len * s ) ;
uint8_t * w = arr . ptrw ( ) ;
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
2022-04-07 12:23:40 +02:00
const uint8_t * v = reinterpret_cast < const uint8_t * > ( & ar [ j * attrib_elem_size + offsets [ i ] ] ) ;
2021-04-27 16:19:21 +02:00
memcpy ( & w [ j * s ] , v , s ) ;
2020-12-02 02:40:47 +01:00
}
ret [ i ] = arr ;
} break ;
case ARRAY_CUSTOM_R_FLOAT :
case ARRAY_CUSTOM_RG_FLOAT :
case ARRAY_CUSTOM_RGB_FLOAT :
case ARRAY_CUSTOM_RGBA_FLOAT : {
uint32_t s = type - ARRAY_CUSTOM_R_FLOAT + 1 ;
Vector < float > arr ;
2021-09-09 06:29:14 +02:00
arr . resize ( s * p_vertex_len ) ;
2020-12-02 02:40:47 +01:00
float * w = arr . ptrw ( ) ;
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
2022-04-07 12:23:40 +02:00
const float * v = reinterpret_cast < const float * > ( & ar [ j * attrib_elem_size + offsets [ i ] ] ) ;
2021-04-27 16:19:21 +02:00
memcpy ( & w [ j * s ] , v , s * sizeof ( float ) ) ;
2020-12-02 02:40:47 +01:00
}
ret [ i ] = arr ;
} break ;
default : {
}
}
2016-11-10 03:55:06 +01:00
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_WEIGHTS : {
2020-12-02 02:40:47 +01:00
uint32_t bone_count = ( p_format & ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ? 8 : 4 ;
2020-02-17 22:06:54 +01:00
Vector < float > arr ;
2020-12-02 02:40:47 +01:00
arr . resize ( p_vertex_len * bone_count ) ;
2019-08-19 00:40:52 +02:00
{
2020-02-17 22:06:54 +01:00
float * w = arr . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
2020-12-02 02:40:47 +01:00
const uint16_t * v = ( const uint16_t * ) & sr [ j * skin_elem_size + offsets [ i ] ] ;
for ( uint32_t k = 0 ; k < bone_count ; k + + ) {
w [ j * bone_count + k ] = float ( v [ k ] / 65535.0 ) ;
2016-11-10 03:55:06 +01:00
}
}
}
ret [ i ] = arr ;
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_BONES : {
2020-12-02 02:40:47 +01:00
uint32_t bone_count = ( p_format & ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ? 8 : 4 ;
2020-02-17 22:06:54 +01:00
Vector < int > arr ;
2020-12-02 02:40:47 +01:00
arr . resize ( p_vertex_len * bone_count ) ;
2016-11-10 03:55:06 +01:00
2020-02-17 22:06:54 +01:00
int * w = arr . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
2019-08-19 00:40:52 +02:00
for ( int j = 0 ; j < p_vertex_len ; j + + ) {
2020-12-02 02:40:47 +01:00
const uint16_t * v = ( const uint16_t * ) & sr [ j * skin_elem_size + offsets [ i ] ] ;
for ( uint32_t k = 0 ; k < bone_count ; k + + ) {
w [ j * bone_count + k ] = v [ k ] ;
2016-11-10 03:55:06 +01:00
}
}
ret [ i ] = arr ;
} break ;
2020-03-27 19:21:27 +01:00
case RS : : ARRAY_INDEX : {
2018-01-18 21:37:17 +01:00
/* determine whether using 16 or 32 bits indices */
2016-11-10 03:55:06 +01:00
2020-02-17 22:06:54 +01:00
const uint8_t * ir = p_index_data . ptr ( ) ;
2016-11-10 03:55:06 +01:00
2020-02-17 22:06:54 +01:00
Vector < int > arr ;
2016-11-10 03:55:06 +01:00
arr . resize ( p_index_len ) ;
2022-11-21 16:09:48 +01:00
if ( p_vertex_len < = ( 1 < < 16 ) ) {
2020-02-17 22:06:54 +01:00
int * w = arr . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
for ( int j = 0 ; j < p_index_len ; j + + ) {
const uint16_t * v = ( const uint16_t * ) & ir [ j * 2 ] ;
w [ j ] = * v ;
}
} else {
2020-02-17 22:06:54 +01:00
int * w = arr . ptrw ( ) ;
2016-11-10 03:55:06 +01:00
for ( int j = 0 ; j < p_index_len ; j + + ) {
const int * v = ( const int * ) & ir [ j * 4 ] ;
w [ j ] = * v ;
}
}
ret [ i ] = arr ;
} break ;
default : {
ERR_FAIL_V ( ret ) ;
}
}
}
return ret ;
}
2020-03-27 19:21:27 +01:00
Array RenderingServer : : mesh_surface_get_arrays ( RID p_mesh , int p_surface ) const {
2019-08-19 00:40:52 +02:00
SurfaceData sd = mesh_get_surface ( p_mesh , p_surface ) ;
return mesh_create_arrays_from_surface_data ( sd ) ;
}
2016-11-10 03:55:06 +01:00
2020-03-27 19:21:27 +01:00
Dictionary RenderingServer : : mesh_surface_get_lods ( RID p_mesh , int p_surface ) const {
2019-08-19 00:40:52 +02:00
SurfaceData sd = mesh_get_surface ( p_mesh , p_surface ) ;
ERR_FAIL_COND_V ( sd . vertex_count = = 0 , Dictionary ( ) ) ;
2016-11-10 03:55:06 +01:00
2019-08-19 00:40:52 +02:00
Dictionary ret ;
for ( int i = 0 ; i < sd . lods . size ( ) ; i + + ) {
2020-02-17 22:06:54 +01:00
Vector < int > lods ;
2019-08-19 00:40:52 +02:00
if ( sd . vertex_count < = 65536 ) {
uint32_t lc = sd . lods [ i ] . index_data . size ( ) / 2 ;
lods . resize ( lc ) ;
2020-02-17 22:06:54 +01:00
const uint8_t * r = sd . lods [ i ] . index_data . ptr ( ) ;
const uint16_t * rptr = ( const uint16_t * ) r ;
int * w = lods . ptrw ( ) ;
2019-08-19 00:40:52 +02:00
for ( uint32_t j = 0 ; j < lc ; j + + ) {
w [ j ] = rptr [ i ] ;
}
} else {
uint32_t lc = sd . lods [ i ] . index_data . size ( ) / 4 ;
lods . resize ( lc ) ;
2020-02-17 22:06:54 +01:00
const uint8_t * r = sd . lods [ i ] . index_data . ptr ( ) ;
const uint32_t * rptr = ( const uint32_t * ) r ;
int * w = lods . ptrw ( ) ;
2019-08-19 00:40:52 +02:00
for ( uint32_t j = 0 ; j < lc ; j + + ) {
w [ j ] = rptr [ i ] ;
}
}
ret [ sd . lods [ i ] . edge_length ] = lods ;
}
return ret ;
2016-11-10 03:55:06 +01:00
}
2022-08-05 20:35:08 +02:00
TypedArray < Array > RenderingServer : : mesh_surface_get_blend_shape_arrays ( RID p_mesh , int p_surface ) const {
2019-08-19 00:40:52 +02:00
SurfaceData sd = mesh_get_surface ( p_mesh , p_surface ) ;
ERR_FAIL_COND_V ( sd . vertex_count = = 0 , Array ( ) ) ;
2020-12-02 02:40:47 +01:00
Vector < uint8_t > blend_shape_data = sd . blend_shape_data ;
2019-08-19 00:40:52 +02:00
2017-09-10 12:10:28 +02:00
if ( blend_shape_data . size ( ) > 0 ) {
2020-12-02 02:40:47 +01:00
uint32_t bs_offsets [ RS : : ARRAY_MAX ] ;
uint32_t bs_format = ( sd . format & RS : : ARRAY_FORMAT_BLEND_SHAPE_MASK ) ;
uint32_t vertex_elem_size ;
2023-08-29 21:04:32 +02:00
uint32_t normal_elem_size ;
2020-12-02 02:40:47 +01:00
uint32_t attrib_elem_size ;
uint32_t skin_elem_size ;
2023-10-12 22:01:41 +02:00
2023-08-29 21:04:32 +02:00
mesh_surface_make_offsets_from_format ( bs_format , sd . vertex_count , 0 , bs_offsets , vertex_elem_size , normal_elem_size , attrib_elem_size , skin_elem_size ) ;
2020-12-02 02:40:47 +01:00
2023-08-29 21:04:32 +02:00
int divisor = ( vertex_elem_size + normal_elem_size ) * sd . vertex_count ;
2020-12-02 02:40:47 +01:00
ERR_FAIL_COND_V ( ( blend_shape_data . size ( ) % divisor ) ! = 0 , Array ( ) ) ;
2017-09-10 12:10:28 +02:00
2020-12-02 02:40:47 +01:00
uint32_t blend_shape_count = blend_shape_data . size ( ) / divisor ;
2020-12-16 15:07:08 +01:00
ERR_FAIL_COND_V ( blend_shape_count ! = ( uint32_t ) mesh_get_blend_shape_count ( p_mesh ) , Array ( ) ) ;
2017-09-10 12:10:28 +02:00
2022-08-05 20:35:08 +02:00
TypedArray < Array > blend_shape_array ;
2020-12-16 15:07:08 +01:00
blend_shape_array . resize ( mesh_get_blend_shape_count ( p_mesh ) ) ;
2020-12-02 02:40:47 +01:00
for ( uint32_t i = 0 ; i < blend_shape_count ; i + + ) {
2021-11-27 02:18:26 +01:00
Vector < uint8_t > bs_data = blend_shape_data . slice ( i * divisor , ( i + 1 ) * divisor ) ;
2020-12-02 02:40:47 +01:00
Vector < uint8_t > unused ;
2023-10-29 18:18:18 +01:00
blend_shape_array . set ( i , _get_array_from_surface ( bs_format , bs_data , unused , unused , sd . vertex_count , unused , 0 , sd . aabb , sd . uv_scale ) ) ;
2017-09-10 12:10:28 +02:00
}
return blend_shape_array ;
} else {
2022-08-05 20:35:08 +02:00
return TypedArray < Array > ( ) ;
2017-09-10 12:10:28 +02:00
}
}
2020-03-27 19:21:27 +01:00
Array RenderingServer : : mesh_create_arrays_from_surface_data ( const SurfaceData & p_data ) const {
2020-02-17 22:06:54 +01:00
Vector < uint8_t > vertex_data = p_data . vertex_data ;
2020-12-02 02:40:47 +01:00
Vector < uint8_t > attrib_data = p_data . attribute_data ;
Vector < uint8_t > skin_data = p_data . skin_data ;
2019-08-19 00:40:52 +02:00
2022-06-24 20:22:26 +02:00
ERR_FAIL_COND_V ( vertex_data . size ( ) = = 0 & & ( p_data . format & RS : : ARRAY_FORMAT_VERTEX ) , Array ( ) ) ;
2019-08-19 00:40:52 +02:00
int vertex_len = p_data . vertex_count ;
2020-02-17 22:06:54 +01:00
Vector < uint8_t > index_data = p_data . index_data ;
2019-08-19 00:40:52 +02:00
int index_len = p_data . index_count ;
2023-08-29 21:04:32 +02:00
uint64_t format = p_data . format ;
2019-08-19 00:40:52 +02:00
2023-10-29 18:18:18 +01:00
return _get_array_from_surface ( format , vertex_data , attrib_data , skin_data , vertex_len , index_data , index_len , p_data . aabb , p_data . uv_scale ) ;
2019-08-19 00:40:52 +02:00
}
#if 0
2020-03-27 19:21:27 +01:00
Array RenderingServer : : _mesh_surface_get_skeleton_aabb_bind ( RID p_mesh , int p_surface ) const {
Vector < AABB > vec = RS : : get_singleton ( ) - > mesh_surface_get_skeleton_aabb ( p_mesh , p_surface ) ;
2017-10-20 00:24:49 +02:00
Array arr ;
for ( int i = 0 ; i < vec . size ( ) ; i + + ) {
arr [ i ] = vec [ i ] ;
}
return arr ;
}
2019-08-19 00:40:52 +02:00
# endif
2020-04-17 04:52:00 +02:00
2023-11-04 15:09:33 +01:00
Rect2 RenderingServer : : debug_canvas_item_get_rect ( RID p_item ) {
# ifdef TOOLS_ENABLED
return _debug_canvas_item_get_rect ( p_item ) ;
# else
return Rect2 ( ) ;
# endif
}
2022-08-27 11:22:43 +02:00
int RenderingServer : : global_shader_uniform_type_get_shader_datatype ( GlobalShaderParameterType p_type ) {
2020-04-17 04:52:00 +02:00
switch ( p_type ) {
2020-05-10 13:00:47 +02:00
case RS : : GLOBAL_VAR_TYPE_BOOL :
return ShaderLanguage : : TYPE_BOOL ;
case RS : : GLOBAL_VAR_TYPE_BVEC2 :
return ShaderLanguage : : TYPE_BVEC2 ;
case RS : : GLOBAL_VAR_TYPE_BVEC3 :
return ShaderLanguage : : TYPE_BVEC3 ;
case RS : : GLOBAL_VAR_TYPE_BVEC4 :
return ShaderLanguage : : TYPE_BVEC4 ;
case RS : : GLOBAL_VAR_TYPE_INT :
return ShaderLanguage : : TYPE_INT ;
case RS : : GLOBAL_VAR_TYPE_IVEC2 :
return ShaderLanguage : : TYPE_IVEC2 ;
case RS : : GLOBAL_VAR_TYPE_IVEC3 :
return ShaderLanguage : : TYPE_IVEC3 ;
case RS : : GLOBAL_VAR_TYPE_IVEC4 :
return ShaderLanguage : : TYPE_IVEC4 ;
case RS : : GLOBAL_VAR_TYPE_RECT2I :
return ShaderLanguage : : TYPE_IVEC4 ;
case RS : : GLOBAL_VAR_TYPE_UINT :
return ShaderLanguage : : TYPE_UINT ;
case RS : : GLOBAL_VAR_TYPE_UVEC2 :
return ShaderLanguage : : TYPE_UVEC2 ;
case RS : : GLOBAL_VAR_TYPE_UVEC3 :
return ShaderLanguage : : TYPE_UVEC3 ;
case RS : : GLOBAL_VAR_TYPE_UVEC4 :
return ShaderLanguage : : TYPE_UVEC4 ;
case RS : : GLOBAL_VAR_TYPE_FLOAT :
return ShaderLanguage : : TYPE_FLOAT ;
case RS : : GLOBAL_VAR_TYPE_VEC2 :
return ShaderLanguage : : TYPE_VEC2 ;
case RS : : GLOBAL_VAR_TYPE_VEC3 :
return ShaderLanguage : : TYPE_VEC3 ;
case RS : : GLOBAL_VAR_TYPE_VEC4 :
return ShaderLanguage : : TYPE_VEC4 ;
case RS : : GLOBAL_VAR_TYPE_COLOR :
return ShaderLanguage : : TYPE_VEC4 ;
case RS : : GLOBAL_VAR_TYPE_RECT2 :
return ShaderLanguage : : TYPE_VEC4 ;
case RS : : GLOBAL_VAR_TYPE_MAT2 :
return ShaderLanguage : : TYPE_MAT2 ;
case RS : : GLOBAL_VAR_TYPE_MAT3 :
return ShaderLanguage : : TYPE_MAT3 ;
case RS : : GLOBAL_VAR_TYPE_MAT4 :
return ShaderLanguage : : TYPE_MAT4 ;
case RS : : GLOBAL_VAR_TYPE_TRANSFORM_2D :
return ShaderLanguage : : TYPE_MAT3 ;
case RS : : GLOBAL_VAR_TYPE_TRANSFORM :
return ShaderLanguage : : TYPE_MAT4 ;
case RS : : GLOBAL_VAR_TYPE_SAMPLER2D :
return ShaderLanguage : : TYPE_SAMPLER2D ;
case RS : : GLOBAL_VAR_TYPE_SAMPLER2DARRAY :
return ShaderLanguage : : TYPE_SAMPLER2DARRAY ;
case RS : : GLOBAL_VAR_TYPE_SAMPLER3D :
return ShaderLanguage : : TYPE_SAMPLER3D ;
case RS : : GLOBAL_VAR_TYPE_SAMPLERCUBE :
return ShaderLanguage : : TYPE_SAMPLERCUBE ;
default :
2021-11-28 01:12:10 +01:00
return ShaderLanguage : : TYPE_MAX ; // Invalid or not found.
2020-04-17 04:52:00 +02:00
}
}
2021-08-29 04:52:19 +02:00
RenderingDevice * RenderingServer : : get_rendering_device ( ) const {
2021-11-28 01:12:10 +01:00
// Return the rendering device we're using globally.
2021-08-29 04:52:19 +02:00
return RenderingDevice : : get_singleton ( ) ;
}
2020-09-17 06:11:39 +02:00
RenderingDevice * RenderingServer : : create_local_rendering_device ( ) const {
2022-11-19 12:22:27 +01:00
RenderingDevice * device = RenderingDevice : : get_singleton ( ) ;
if ( ! device ) {
return nullptr ;
}
return device - > create_local_device ( ) ;
2020-09-17 06:11:39 +02:00
}
2021-07-01 04:17:47 +02:00
static Vector < Ref < Image > > _get_imgvec ( const TypedArray < Image > & p_layers ) {
Vector < Ref < Image > > images ;
images . resize ( p_layers . size ( ) ) ;
for ( int i = 0 ; i < p_layers . size ( ) ; i + + ) {
images . write [ i ] = p_layers [ i ] ;
}
return images ;
}
RID RenderingServer : : _texture_2d_layered_create ( const TypedArray < Image > & p_layers , TextureLayeredType p_layered_type ) {
return texture_2d_layered_create ( _get_imgvec ( p_layers ) , p_layered_type ) ;
}
RID RenderingServer : : _texture_3d_create ( Image : : Format p_format , int p_width , int p_height , int p_depth , bool p_mipmaps , const TypedArray < Image > & p_data ) {
return texture_3d_create ( p_format , p_width , p_height , p_depth , p_mipmaps , _get_imgvec ( p_data ) ) ;
}
void RenderingServer : : _texture_3d_update ( RID p_texture , const TypedArray < Image > & p_data ) {
texture_3d_update ( p_texture , _get_imgvec ( p_data ) ) ;
}
TypedArray < Image > RenderingServer : : _texture_3d_get ( RID p_texture ) const {
Vector < Ref < Image > > images = texture_3d_get ( p_texture ) ;
TypedArray < Image > ret ;
ret . resize ( images . size ( ) ) ;
for ( int i = 0 ; i < images . size ( ) ; i + + ) {
ret [ i ] = images [ i ] ;
}
return ret ;
}
2022-08-27 11:22:43 +02:00
TypedArray < Dictionary > RenderingServer : : _shader_get_shader_parameter_list ( RID p_shader ) const {
2021-07-01 04:17:47 +02:00
List < PropertyInfo > l ;
2022-08-27 11:22:43 +02:00
get_shader_parameter_list ( p_shader , & l ) ;
2021-07-01 04:17:47 +02:00
return convert_property_list ( & l ) ;
}
static RS : : SurfaceData _dict_to_surf ( const Dictionary & p_dictionary ) {
ERR_FAIL_COND_V ( ! p_dictionary . has ( " primitive " ) , RS : : SurfaceData ( ) ) ;
ERR_FAIL_COND_V ( ! p_dictionary . has ( " format " ) , RS : : SurfaceData ( ) ) ;
ERR_FAIL_COND_V ( ! p_dictionary . has ( " vertex_data " ) , RS : : SurfaceData ( ) ) ;
ERR_FAIL_COND_V ( ! p_dictionary . has ( " vertex_count " ) , RS : : SurfaceData ( ) ) ;
ERR_FAIL_COND_V ( ! p_dictionary . has ( " aabb " ) , RS : : SurfaceData ( ) ) ;
RS : : SurfaceData sd ;
sd . primitive = RS : : PrimitiveType ( int ( p_dictionary [ " primitive " ] ) ) ;
2023-10-09 18:28:59 +02:00
sd . format = p_dictionary [ " format " ] ;
2021-07-01 04:17:47 +02:00
sd . vertex_data = p_dictionary [ " vertex_data " ] ;
if ( p_dictionary . has ( " attribute_data " ) ) {
sd . attribute_data = p_dictionary [ " attribute_data " ] ;
}
if ( p_dictionary . has ( " skin_data " ) ) {
sd . skin_data = p_dictionary [ " skin_data " ] ;
}
sd . vertex_count = p_dictionary [ " vertex_count " ] ;
if ( p_dictionary . has ( " index_data " ) ) {
sd . index_data = p_dictionary [ " index_data " ] ;
ERR_FAIL_COND_V ( ! p_dictionary . has ( " index_count " ) , RS : : SurfaceData ( ) ) ;
sd . index_count = p_dictionary [ " index_count " ] ;
}
sd . aabb = p_dictionary [ " aabb " ] ;
2023-10-09 18:28:59 +02:00
if ( p_dictionary . has ( " uv_scale " ) ) {
sd . uv_scale = p_dictionary [ " uv_scale " ] ;
}
2021-07-01 04:17:47 +02:00
if ( p_dictionary . has ( " lods " ) ) {
Array lods = p_dictionary [ " lods " ] ;
for ( int i = 0 ; i < lods . size ( ) ; i + + ) {
Dictionary lod = lods [ i ] ;
ERR_CONTINUE ( ! lod . has ( " edge_length " ) ) ;
ERR_CONTINUE ( ! lod . has ( " index_data " ) ) ;
RS : : SurfaceData : : LOD l ;
l . edge_length = lod [ " edge_length " ] ;
l . index_data = lod [ " index_data " ] ;
sd . lods . push_back ( l ) ;
}
}
if ( p_dictionary . has ( " bone_aabbs " ) ) {
Array aabbs = p_dictionary [ " bone_aabbs " ] ;
for ( int i = 0 ; i < aabbs . size ( ) ; i + + ) {
AABB aabb = aabbs [ i ] ;
sd . bone_aabbs . push_back ( aabb ) ;
}
}
if ( p_dictionary . has ( " blend_shape_data " ) ) {
sd . blend_shape_data = p_dictionary [ " blend_shape_data " ] ;
}
if ( p_dictionary . has ( " material " ) ) {
sd . material = p_dictionary [ " material " ] ;
}
return sd ;
}
RID RenderingServer : : _mesh_create_from_surfaces ( const TypedArray < Dictionary > & p_surfaces , int p_blend_shape_count ) {
Vector < RS : : SurfaceData > surfaces ;
for ( int i = 0 ; i < p_surfaces . size ( ) ; i + + ) {
surfaces . push_back ( _dict_to_surf ( p_surfaces [ i ] ) ) ;
}
return mesh_create_from_surfaces ( surfaces ) ;
}
void RenderingServer : : _mesh_add_surface ( RID p_mesh , const Dictionary & p_surface ) {
mesh_add_surface ( p_mesh , _dict_to_surf ( p_surface ) ) ;
}
Dictionary RenderingServer : : _mesh_get_surface ( RID p_mesh , int p_idx ) {
RS : : SurfaceData sd = mesh_get_surface ( p_mesh , p_idx ) ;
Dictionary d ;
d [ " primitive " ] = sd . primitive ;
d [ " format " ] = sd . format ;
d [ " vertex_data " ] = sd . vertex_data ;
if ( sd . attribute_data . size ( ) ) {
d [ " attribute_data " ] = sd . attribute_data ;
}
if ( sd . skin_data . size ( ) ) {
d [ " skin_data " ] = sd . skin_data ;
}
d [ " vertex_count " ] = sd . vertex_count ;
if ( sd . index_count ) {
d [ " index_data " ] = sd . index_data ;
d [ " index_count " ] = sd . index_count ;
}
d [ " aabb " ] = sd . aabb ;
2023-08-29 21:04:32 +02:00
d [ " uv_scale " ] = sd . uv_scale ;
2021-07-01 04:17:47 +02:00
if ( sd . lods . size ( ) ) {
Array lods ;
for ( int i = 0 ; i < sd . lods . size ( ) ; i + + ) {
Dictionary ld ;
ld [ " edge_length " ] = sd . lods [ i ] . edge_length ;
ld [ " index_data " ] = sd . lods [ i ] . index_data ;
lods . push_back ( lods ) ;
}
d [ " lods " ] = lods ;
}
if ( sd . bone_aabbs . size ( ) ) {
Array aabbs ;
for ( int i = 0 ; i < sd . bone_aabbs . size ( ) ; i + + ) {
aabbs . push_back ( sd . bone_aabbs [ i ] ) ;
}
d [ " bone_aabbs " ] = aabbs ;
}
if ( sd . blend_shape_data . size ( ) ) {
d [ " blend_shape_data " ] = sd . blend_shape_data ;
}
if ( sd . material . is_valid ( ) ) {
d [ " material " ] = sd . material ;
}
return d ;
}
2022-08-27 11:22:43 +02:00
TypedArray < Dictionary > RenderingServer : : _instance_geometry_get_shader_parameter_list ( RID p_instance ) const {
2021-07-01 04:17:47 +02:00
List < PropertyInfo > params ;
2022-08-27 11:22:43 +02:00
instance_geometry_get_shader_parameter_list ( p_instance , & params ) ;
2021-07-01 04:17:47 +02:00
return convert_property_list ( & params ) ;
}
TypedArray < Image > RenderingServer : : _bake_render_uv2 ( RID p_base , const TypedArray < RID > & p_material_overrides , const Size2i & p_image_size ) {
2022-08-31 19:24:04 +02:00
TypedArray < RID > mat_overrides ;
2021-07-01 04:17:47 +02:00
for ( int i = 0 ; i < p_material_overrides . size ( ) ; i + + ) {
mat_overrides . push_back ( p_material_overrides [ i ] ) ;
}
return bake_render_uv2 ( p_base , mat_overrides , p_image_size ) ;
}
void RenderingServer : : _particles_set_trail_bind_poses ( RID p_particles , const TypedArray < Transform3D > & p_bind_poses ) {
Vector < Transform3D > tbposes ;
tbposes . resize ( p_bind_poses . size ( ) ) ;
for ( int i = 0 ; i < p_bind_poses . size ( ) ; i + + ) {
tbposes . write [ i ] = p_bind_poses [ i ] ;
}
particles_set_trail_bind_poses ( p_particles , tbposes ) ;
}
2023-08-29 21:04:32 +02:00
Vector < uint8_t > _convert_surface_version_1_to_surface_version_2 ( uint64_t p_format , Vector < uint8_t > p_vertex_data , uint32_t p_vertex_count , uint32_t p_old_stride , uint32_t p_vertex_size , uint32_t p_normal_size , uint32_t p_position_stride , uint32_t p_normal_tangent_stride ) {
Vector < uint8_t > new_vertex_data ;
new_vertex_data . resize ( p_vertex_data . size ( ) ) ;
uint8_t * dst_vertex_ptr = new_vertex_data . ptrw ( ) ;
const uint8_t * src_vertex_ptr = p_vertex_data . ptr ( ) ;
uint32_t position_size = p_position_stride * p_vertex_count ;
for ( uint32_t j = 0 ; j < RS : : ARRAY_COLOR ; j + + ) {
if ( ! ( p_format & ( 1ULL < < j ) ) ) {
continue ;
}
switch ( j ) {
case RS : : ARRAY_VERTEX : {
if ( p_format & RS : : ARRAY_FLAG_USE_2D_VERTICES ) {
for ( uint32_t i = 0 ; i < p_vertex_count ; i + + ) {
const float * src = ( const float * ) & src_vertex_ptr [ i * p_old_stride ] ;
float * dst = ( float * ) & dst_vertex_ptr [ i * p_position_stride ] ;
dst [ 0 ] = src [ 0 ] ;
dst [ 1 ] = src [ 1 ] ;
}
} else {
for ( uint32_t i = 0 ; i < p_vertex_count ; i + + ) {
const float * src = ( const float * ) & src_vertex_ptr [ i * p_old_stride ] ;
float * dst = ( float * ) & dst_vertex_ptr [ i * p_position_stride ] ;
dst [ 0 ] = src [ 0 ] ;
dst [ 1 ] = src [ 1 ] ;
dst [ 2 ] = src [ 2 ] ;
}
}
} break ;
case RS : : ARRAY_NORMAL : {
for ( uint32_t i = 0 ; i < p_vertex_count ; i + + ) {
const uint16_t * src = ( const uint16_t * ) & src_vertex_ptr [ i * p_old_stride + p_vertex_size ] ;
uint16_t * dst = ( uint16_t * ) & dst_vertex_ptr [ i * p_normal_tangent_stride + position_size ] ;
dst [ 0 ] = src [ 0 ] ;
dst [ 1 ] = src [ 1 ] ;
}
} break ;
case RS : : ARRAY_TANGENT : {
for ( uint32_t i = 0 ; i < p_vertex_count ; i + + ) {
const uint16_t * src = ( const uint16_t * ) & src_vertex_ptr [ i * p_old_stride + p_vertex_size + p_normal_size ] ;
uint16_t * dst = ( uint16_t * ) & dst_vertex_ptr [ i * p_normal_tangent_stride + position_size + p_normal_size ] ;
dst [ 0 ] = src [ 0 ] ;
dst [ 1 ] = src [ 1 ] ;
}
} break ;
}
}
return new_vertex_data ;
}
2023-10-19 13:31:26 +02:00
# ifdef TOOLS_ENABLED
void RenderingServer : : set_surface_upgrade_callback ( SurfaceUpgradeCallback p_callback ) {
surface_upgrade_callback = p_callback ;
}
void RenderingServer : : set_warn_on_surface_upgrade ( bool p_warn ) {
warn_on_surface_upgrade = p_warn ;
}
# endif
2023-08-29 21:04:32 +02:00
# ifndef DISABLE_DEPRECATED
2023-10-19 13:31:26 +02:00
void RenderingServer : : fix_surface_compatibility ( SurfaceData & p_surface , const String & p_path ) {
2023-08-29 21:04:32 +02:00
uint64_t surface_version = p_surface . format & ( ARRAY_FLAG_FORMAT_VERSION_MASK < < ARRAY_FLAG_FORMAT_VERSION_SHIFT ) ;
ERR_FAIL_COND_MSG ( surface_version > ARRAY_FLAG_FORMAT_CURRENT_VERSION , " Cannot convert surface with version provided ( " + itos ( ( surface_version > > RS : : ARRAY_FLAG_FORMAT_VERSION_SHIFT ) & RS : : ARRAY_FLAG_FORMAT_VERSION_MASK ) + " ) to current version ( " + itos ( ( RS : : ARRAY_FLAG_FORMAT_CURRENT_VERSION > > RS : : ARRAY_FLAG_FORMAT_VERSION_SHIFT ) & RS : : ARRAY_FLAG_FORMAT_VERSION_MASK ) + " ) " ) ;
2023-10-19 13:31:26 +02:00
# ifdef TOOLS_ENABLED
// Editor callback to ask user about re-saving all meshes.
if ( surface_upgrade_callback & & warn_on_surface_upgrade ) {
surface_upgrade_callback ( ) ;
}
if ( warn_on_surface_upgrade ) {
2023-10-30 15:34:18 +01:00
WARN_PRINT_ONCE_ED ( " At least one surface uses an old surface format and needs to be upgraded. The upgrade happens automatically at load time every time until the mesh is saved again or re-imported. Once saved (or re-imported), this mesh will be incompatible with earlier versions of Godot. " ) ;
if ( ! p_path . is_empty ( ) ) {
WARN_PRINT ( " A surface of " + p_path + " uses an old surface format and needs to be upgraded. " ) ;
2023-10-19 13:31:26 +02:00
}
}
# endif
2023-08-29 21:04:32 +02:00
if ( surface_version = = ARRAY_FLAG_FORMAT_VERSION_1 ) {
// The only difference for now is that Version 1 uses interleaved vertex positions while version 2 does not.
// I.e. PNTPNTPNT -> PPPNTNTNT.
2023-11-20 16:22:58 +01:00
if ( p_surface . vertex_data . size ( ) > 0 & & p_surface . vertex_count > 0 ) {
int vertex_size = 0 ;
int normal_size = 0 ;
int tangent_size = 0 ;
if ( p_surface . format & ARRAY_FORMAT_VERTEX ) {
if ( p_surface . format & ARRAY_FLAG_USE_2D_VERTICES ) {
vertex_size = sizeof ( float ) * 2 ;
} else {
vertex_size = sizeof ( float ) * 3 ;
}
2023-08-29 21:04:32 +02:00
}
2023-11-20 16:22:58 +01:00
if ( p_surface . format & ARRAY_FORMAT_NORMAL ) {
normal_size + = sizeof ( uint16_t ) * 2 ;
}
if ( p_surface . format & ARRAY_FORMAT_TANGENT ) {
tangent_size = sizeof ( uint16_t ) * 2 ;
}
int stride = p_surface . vertex_data . size ( ) / p_surface . vertex_count ;
int position_stride = vertex_size ;
int normal_tangent_stride = normal_size + tangent_size ;
2023-08-29 21:04:32 +02:00
2023-11-20 16:22:58 +01:00
p_surface . vertex_data = _convert_surface_version_1_to_surface_version_2 ( p_surface . format , p_surface . vertex_data , p_surface . vertex_count , stride , vertex_size , normal_size , position_stride , normal_tangent_stride ) ;
2023-08-29 21:04:32 +02:00
2023-11-20 16:22:58 +01:00
if ( p_surface . blend_shape_data . size ( ) > 0 ) {
// The size of one blend shape.
int divisor = ( vertex_size + normal_size + tangent_size ) * p_surface . vertex_count ;
ERR_FAIL_COND ( ( p_surface . blend_shape_data . size ( ) % divisor ) ! = 0 ) ;
2023-08-29 21:04:32 +02:00
2023-11-20 16:22:58 +01:00
uint32_t blend_shape_count = p_surface . blend_shape_data . size ( ) / divisor ;
2023-08-29 21:04:32 +02:00
2023-11-20 16:22:58 +01:00
Vector < uint8_t > new_blend_shape_data ;
for ( uint32_t i = 0 ; i < blend_shape_count ; i + + ) {
Vector < uint8_t > bs_data = p_surface . blend_shape_data . slice ( i * divisor , ( i + 1 ) * divisor ) ;
Vector < uint8_t > blend_shape = _convert_surface_version_1_to_surface_version_2 ( p_surface . format , bs_data , p_surface . vertex_count , stride , vertex_size , normal_size , position_stride , normal_tangent_stride ) ;
new_blend_shape_data . append_array ( blend_shape ) ;
}
2023-08-29 21:04:32 +02:00
2023-11-20 16:22:58 +01:00
ERR_FAIL_COND ( p_surface . blend_shape_data . size ( ) ! = new_blend_shape_data . size ( ) ) ;
2023-08-29 21:04:32 +02:00
2023-11-20 16:22:58 +01:00
p_surface . blend_shape_data = new_blend_shape_data ;
}
2023-08-29 21:04:32 +02:00
}
}
p_surface . format & = ~ ( ARRAY_FLAG_FORMAT_VERSION_MASK < < ARRAY_FLAG_FORMAT_VERSION_SHIFT ) ;
p_surface . format | = ARRAY_FLAG_FORMAT_CURRENT_VERSION & ( ARRAY_FLAG_FORMAT_VERSION_MASK < < ARRAY_FLAG_FORMAT_VERSION_SHIFT ) ;
}
# endif
2020-03-27 19:21:27 +01:00
void RenderingServer : : _bind_methods ( ) {
2021-07-01 04:17:47 +02:00
BIND_CONSTANT ( NO_INDEX_ARRAY ) ;
BIND_CONSTANT ( ARRAY_WEIGHTS_SIZE ) ;
BIND_CONSTANT ( CANVAS_ITEM_Z_MIN ) ;
BIND_CONSTANT ( CANVAS_ITEM_Z_MAX ) ;
BIND_CONSTANT ( MAX_GLOW_LEVELS ) ;
BIND_CONSTANT ( MAX_CURSORS ) ;
BIND_CONSTANT ( MAX_2D_DIRECTIONAL_LIGHTS ) ;
2017-10-20 00:24:49 +02:00
2021-07-01 04:17:47 +02:00
/* TEXTURE */
2019-06-11 20:43:37 +02:00
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " texture_2d_create " , " image " ) , & RenderingServer : : texture_2d_create ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " texture_2d_layered_create " , " layers " , " layered_type " ) , & RenderingServer : : _texture_2d_layered_create ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_3d_create " , " format " , " width " , " height " , " depth " , " mipmaps " , " data " ) , & RenderingServer : : _texture_3d_create ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_proxy_create " , " base " ) , & RenderingServer : : texture_proxy_create ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_2d_update " , " texture " , " image " , " layer " ) , & RenderingServer : : texture_2d_update ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_3d_update " , " texture " , " data " ) , & RenderingServer : : _texture_3d_update ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_proxy_update " , " texture " , " proxy_to " ) , & RenderingServer : : texture_proxy_update ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_2d_placeholder_create " ) , & RenderingServer : : texture_2d_placeholder_create ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_2d_layered_placeholder_create " , " layered_type " ) , & RenderingServer : : texture_2d_layered_placeholder_create ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_3d_placeholder_create " ) , & RenderingServer : : texture_3d_placeholder_create ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " texture_2d_get " , " texture " ) , & RenderingServer : : texture_2d_get ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " texture_2d_layer_get " , " texture " , " layer " ) , & RenderingServer : : texture_2d_layer_get ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_3d_get " , " texture " ) , & RenderingServer : : _texture_3d_get ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_replace " , " texture " , " by_texture " ) , & RenderingServer : : texture_replace ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_set_size_override " , " texture " , " width " , " height " ) , & RenderingServer : : texture_set_size_override ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_set_path " , " texture " , " path " ) , & RenderingServer : : texture_set_path ) ;
ClassDB : : bind_method ( D_METHOD ( " texture_get_path " , " texture " ) , & RenderingServer : : texture_get_path ) ;
2023-07-10 14:31:27 +02:00
ClassDB : : bind_method ( D_METHOD ( " texture_get_format " , " texture " ) , & RenderingServer : : texture_get_format ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " texture_set_force_redraw_if_visible " , " texture " , " enable " ) , & RenderingServer : : texture_set_force_redraw_if_visible ) ;
2023-07-10 14:31:27 +02:00
ClassDB : : bind_method ( D_METHOD ( " texture_rd_create " , " rd_texture " , " layer_type " ) , & RenderingServer : : texture_rd_create , DEFVAL ( RenderingServer : : TEXTURE_LAYERED_2D_ARRAY ) ) ;
2023-03-10 10:41:55 +01:00
ClassDB : : bind_method ( D_METHOD ( " texture_get_rd_texture " , " texture " , " srgb " ) , & RenderingServer : : texture_get_rd_texture , DEFVAL ( false ) ) ;
2023-03-10 11:24:25 +01:00
ClassDB : : bind_method ( D_METHOD ( " texture_get_native_handle " , " texture " , " srgb " ) , & RenderingServer : : texture_get_native_handle , DEFVAL ( false ) ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( TEXTURE_LAYERED_2D_ARRAY ) ;
BIND_ENUM_CONSTANT ( TEXTURE_LAYERED_CUBEMAP ) ;
BIND_ENUM_CONSTANT ( TEXTURE_LAYERED_CUBEMAP_ARRAY ) ;
BIND_ENUM_CONSTANT ( CUBEMAP_LAYER_LEFT ) ;
BIND_ENUM_CONSTANT ( CUBEMAP_LAYER_RIGHT ) ;
BIND_ENUM_CONSTANT ( CUBEMAP_LAYER_BOTTOM ) ;
BIND_ENUM_CONSTANT ( CUBEMAP_LAYER_TOP ) ;
BIND_ENUM_CONSTANT ( CUBEMAP_LAYER_FRONT ) ;
BIND_ENUM_CONSTANT ( CUBEMAP_LAYER_BACK ) ;
/* SHADER */
2019-06-26 00:49:52 +02:00
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " shader_create " ) , & RenderingServer : : shader_create ) ;
2022-06-29 11:31:18 +02:00
ClassDB : : bind_method ( D_METHOD ( " shader_set_code " , " shader " , " code " ) , & RenderingServer : : shader_set_code ) ;
ClassDB : : bind_method ( D_METHOD ( " shader_set_path_hint " , " shader " , " path " ) , & RenderingServer : : shader_set_path_hint ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " shader_get_code " , " shader " ) , & RenderingServer : : shader_get_code ) ;
2022-08-27 11:22:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " get_shader_parameter_list " , " shader " ) , & RenderingServer : : _shader_get_shader_parameter_list ) ;
ClassDB : : bind_method ( D_METHOD ( " shader_get_parameter_default " , " shader " , " name " ) , & RenderingServer : : shader_get_parameter_default ) ;
2021-07-01 04:17:47 +02:00
2022-08-27 11:22:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " shader_set_default_texture_parameter " , " shader " , " name " , " texture " , " index " ) , & RenderingServer : : shader_set_default_texture_parameter , DEFVAL ( 0 ) ) ;
ClassDB : : bind_method ( D_METHOD ( " shader_get_default_texture_parameter " , " shader " , " name " , " index " ) , & RenderingServer : : shader_get_default_texture_parameter , DEFVAL ( 0 ) ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( SHADER_SPATIAL ) ;
BIND_ENUM_CONSTANT ( SHADER_CANVAS_ITEM ) ;
BIND_ENUM_CONSTANT ( SHADER_PARTICLES ) ;
BIND_ENUM_CONSTANT ( SHADER_SKY ) ;
2021-10-03 13:28:55 +02:00
BIND_ENUM_CONSTANT ( SHADER_FOG ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( SHADER_MAX ) ;
/* MATERIAL */
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " material_create " ) , & RenderingServer : : material_create ) ;
ClassDB : : bind_method ( D_METHOD ( " material_set_shader " , " shader_material " , " shader " ) , & RenderingServer : : material_set_shader ) ;
ClassDB : : bind_method ( D_METHOD ( " material_set_param " , " material " , " parameter " , " value " ) , & RenderingServer : : material_set_param ) ;
ClassDB : : bind_method ( D_METHOD ( " material_get_param " , " material " , " parameter " ) , & RenderingServer : : material_get_param ) ;
ClassDB : : bind_method ( D_METHOD ( " material_set_render_priority " , " material " , " priority " ) , & RenderingServer : : material_set_render_priority ) ;
ClassDB : : bind_method ( D_METHOD ( " material_set_next_pass " , " material " , " next_material " ) , & RenderingServer : : material_set_next_pass ) ;
2021-07-01 04:17:47 +02:00
BIND_CONSTANT ( MATERIAL_RENDER_PRIORITY_MIN ) ;
BIND_CONSTANT ( MATERIAL_RENDER_PRIORITY_MAX ) ;
/* MESH API */
ClassDB : : bind_method ( D_METHOD ( " mesh_create_from_surfaces " , " surfaces " , " blend_shape_count " ) , & RenderingServer : : _mesh_create_from_surfaces , DEFVAL ( 0 ) ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " mesh_create " ) , & RenderingServer : : mesh_create ) ;
2020-12-02 02:40:47 +01:00
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_format_offset " , " format " , " vertex_count " , " array_index " ) , & RenderingServer : : mesh_surface_get_format_offset ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_format_vertex_stride " , " format " , " vertex_count " ) , & RenderingServer : : mesh_surface_get_format_vertex_stride ) ;
2023-08-29 21:04:32 +02:00
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_format_normal_tangent_stride " , " format " , " vertex_count " ) , & RenderingServer : : mesh_surface_get_format_normal_tangent_stride ) ;
2020-12-02 02:40:47 +01:00
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_format_attribute_stride " , " format " , " vertex_count " ) , & RenderingServer : : mesh_surface_get_format_attribute_stride ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_format_skin_stride " , " format " , " vertex_count " ) , & RenderingServer : : mesh_surface_get_format_skin_stride ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " mesh_add_surface " , " mesh " , " surface " ) , & RenderingServer : : _mesh_add_surface ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_add_surface_from_arrays " , " mesh " , " primitive " , " arrays " , " blend_shapes " , " lods " , " compress_format " ) , & RenderingServer : : mesh_add_surface_from_arrays , DEFVAL ( Array ( ) ) , DEFVAL ( Dictionary ( ) ) , DEFVAL ( 0 ) ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " mesh_get_blend_shape_count " , " mesh " ) , & RenderingServer : : mesh_get_blend_shape_count ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_set_blend_shape_mode " , " mesh " , " mode " ) , & RenderingServer : : mesh_set_blend_shape_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_get_blend_shape_mode " , " mesh " ) , & RenderingServer : : mesh_get_blend_shape_mode ) ;
2021-06-30 03:55:11 +02:00
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_set_material " , " mesh " , " surface " , " material " ) , & RenderingServer : : mesh_surface_set_material ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_material " , " mesh " , " surface " ) , & RenderingServer : : mesh_surface_get_material ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " mesh_get_surface " , " mesh " , " surface " ) , & RenderingServer : : _mesh_get_surface ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_arrays " , " mesh " , " surface " ) , & RenderingServer : : mesh_surface_get_arrays ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_get_blend_shape_arrays " , " mesh " , " surface " ) , & RenderingServer : : mesh_surface_get_blend_shape_arrays ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_get_surface_count " , " mesh " ) , & RenderingServer : : mesh_get_surface_count ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_set_custom_aabb " , " mesh " , " aabb " ) , & RenderingServer : : mesh_set_custom_aabb ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_get_custom_aabb " , " mesh " ) , & RenderingServer : : mesh_get_custom_aabb ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_clear " , " mesh " ) , & RenderingServer : : mesh_clear ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_update_vertex_region " , " mesh " , " surface " , " offset " , " data " ) , & RenderingServer : : mesh_surface_update_vertex_region ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_update_attribute_region " , " mesh " , " surface " , " offset " , " data " ) , & RenderingServer : : mesh_surface_update_attribute_region ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_surface_update_skin_region " , " mesh " , " surface " , " offset " , " data " ) , & RenderingServer : : mesh_surface_update_skin_region ) ;
ClassDB : : bind_method ( D_METHOD ( " mesh_set_shadow_mesh " , " mesh " , " shadow_mesh " ) , & RenderingServer : : mesh_set_shadow_mesh ) ;
BIND_ENUM_CONSTANT ( ARRAY_VERTEX ) ;
BIND_ENUM_CONSTANT ( ARRAY_NORMAL ) ;
BIND_ENUM_CONSTANT ( ARRAY_TANGENT ) ;
BIND_ENUM_CONSTANT ( ARRAY_COLOR ) ;
BIND_ENUM_CONSTANT ( ARRAY_TEX_UV ) ;
BIND_ENUM_CONSTANT ( ARRAY_TEX_UV2 ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM0 ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM1 ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM2 ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM3 ) ;
BIND_ENUM_CONSTANT ( ARRAY_BONES ) ;
BIND_ENUM_CONSTANT ( ARRAY_WEIGHTS ) ;
BIND_ENUM_CONSTANT ( ARRAY_INDEX ) ;
BIND_ENUM_CONSTANT ( ARRAY_MAX ) ;
BIND_CONSTANT ( ARRAY_CUSTOM_COUNT ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_RGBA8_UNORM ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_RGBA8_SNORM ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_RG_HALF ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_RGBA_HALF ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_R_FLOAT ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_RG_FLOAT ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_RGB_FLOAT ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_RGBA_FLOAT ) ;
BIND_ENUM_CONSTANT ( ARRAY_CUSTOM_MAX ) ;
2023-01-07 20:37:21 +01:00
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_VERTEX ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_NORMAL ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_TANGENT ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_COLOR ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_TEX_UV ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_TEX_UV2 ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM0 ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM1 ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM2 ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM3 ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_BONES ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_WEIGHTS ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_INDEX ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_BLEND_SHAPE_MASK ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM_BASE ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM_BITS ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM0_SHIFT ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM1_SHIFT ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM2_SHIFT ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM3_SHIFT ) ;
BIND_BITFIELD_FLAG ( ARRAY_FORMAT_CUSTOM_MASK ) ;
BIND_BITFIELD_FLAG ( ARRAY_COMPRESS_FLAGS_BASE ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_USE_2D_VERTICES ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_USE_DYNAMIC_UPDATE ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_USE_8_BONE_WEIGHTS ) ;
2023-01-17 12:48:10 +01:00
BIND_BITFIELD_FLAG ( ARRAY_FLAG_USES_EMPTY_VERTEX_ARRAY ) ;
2021-07-01 04:17:47 +02:00
2023-08-29 21:04:32 +02:00
BIND_BITFIELD_FLAG ( ARRAY_FLAG_COMPRESS_ATTRIBUTES ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_FORMAT_VERSION_BASE ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_FORMAT_VERSION_SHIFT ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_FORMAT_VERSION_1 ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_FORMAT_VERSION_2 ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_FORMAT_CURRENT_VERSION ) ;
BIND_BITFIELD_FLAG ( ARRAY_FLAG_FORMAT_VERSION_MASK ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( PRIMITIVE_POINTS ) ;
BIND_ENUM_CONSTANT ( PRIMITIVE_LINES ) ;
BIND_ENUM_CONSTANT ( PRIMITIVE_LINE_STRIP ) ;
BIND_ENUM_CONSTANT ( PRIMITIVE_TRIANGLES ) ;
BIND_ENUM_CONSTANT ( PRIMITIVE_TRIANGLE_STRIP ) ;
BIND_ENUM_CONSTANT ( PRIMITIVE_MAX ) ;
BIND_ENUM_CONSTANT ( BLEND_SHAPE_MODE_NORMALIZED ) ;
BIND_ENUM_CONSTANT ( BLEND_SHAPE_MODE_RELATIVE ) ;
/* MULTIMESH API */
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " multimesh_create " ) , & RenderingServer : : multimesh_create ) ;
2021-02-09 17:19:03 +01:00
ClassDB : : bind_method ( D_METHOD ( " multimesh_allocate_data " , " multimesh " , " instances " , " transform_format " , " color_format " , " custom_data_format " ) , & RenderingServer : : multimesh_allocate_data , DEFVAL ( false ) , DEFVAL ( false ) ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " multimesh_get_instance_count " , " multimesh " ) , & RenderingServer : : multimesh_get_instance_count ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_set_mesh " , " multimesh " , " mesh " ) , & RenderingServer : : multimesh_set_mesh ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_set_transform " , " multimesh " , " index " , " transform " ) , & RenderingServer : : multimesh_instance_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_set_transform_2d " , " multimesh " , " index " , " transform " ) , & RenderingServer : : multimesh_instance_set_transform_2d ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_set_color " , " multimesh " , " index " , " color " ) , & RenderingServer : : multimesh_instance_set_color ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_set_custom_data " , " multimesh " , " index " , " custom_data " ) , & RenderingServer : : multimesh_instance_set_custom_data ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_get_mesh " , " multimesh " ) , & RenderingServer : : multimesh_get_mesh ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_get_aabb " , " multimesh " ) , & RenderingServer : : multimesh_get_aabb ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_get_transform " , " multimesh " , " index " ) , & RenderingServer : : multimesh_instance_get_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_get_transform_2d " , " multimesh " , " index " ) , & RenderingServer : : multimesh_instance_get_transform_2d ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_get_color " , " multimesh " , " index " ) , & RenderingServer : : multimesh_instance_get_color ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_instance_get_custom_data " , " multimesh " , " index " ) , & RenderingServer : : multimesh_instance_get_custom_data ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_set_visible_instances " , " multimesh " , " visible " ) , & RenderingServer : : multimesh_set_visible_instances ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_get_visible_instances " , " multimesh " ) , & RenderingServer : : multimesh_get_visible_instances ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_set_buffer " , " multimesh " , " buffer " ) , & RenderingServer : : multimesh_set_buffer ) ;
ClassDB : : bind_method ( D_METHOD ( " multimesh_get_buffer " , " multimesh " ) , & RenderingServer : : multimesh_get_buffer ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( MULTIMESH_TRANSFORM_2D ) ;
BIND_ENUM_CONSTANT ( MULTIMESH_TRANSFORM_3D ) ;
/* SKELETON API */
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " skeleton_create " ) , & RenderingServer : : skeleton_create ) ;
2021-02-09 17:19:03 +01:00
ClassDB : : bind_method ( D_METHOD ( " skeleton_allocate_data " , " skeleton " , " bones " , " is_2d_skeleton " ) , & RenderingServer : : skeleton_allocate_data , DEFVAL ( false ) ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " skeleton_get_bone_count " , " skeleton " ) , & RenderingServer : : skeleton_get_bone_count ) ;
ClassDB : : bind_method ( D_METHOD ( " skeleton_bone_set_transform " , " skeleton " , " bone " , " transform " ) , & RenderingServer : : skeleton_bone_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " skeleton_bone_get_transform " , " skeleton " , " bone " ) , & RenderingServer : : skeleton_bone_get_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " skeleton_bone_set_transform_2d " , " skeleton " , " bone " , " transform " ) , & RenderingServer : : skeleton_bone_set_transform_2d ) ;
ClassDB : : bind_method ( D_METHOD ( " skeleton_bone_get_transform_2d " , " skeleton " , " bone " ) , & RenderingServer : : skeleton_bone_get_transform_2d ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " skeleton_set_base_transform_2d " , " skeleton " , " base_transform " ) , & RenderingServer : : skeleton_set_base_transform_2d ) ;
/* Light API */
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " directional_light_create " ) , & RenderingServer : : directional_light_create ) ;
ClassDB : : bind_method ( D_METHOD ( " omni_light_create " ) , & RenderingServer : : omni_light_create ) ;
ClassDB : : bind_method ( D_METHOD ( " spot_light_create " ) , & RenderingServer : : spot_light_create ) ;
ClassDB : : bind_method ( D_METHOD ( " light_set_color " , " light " , " color " ) , & RenderingServer : : light_set_color ) ;
ClassDB : : bind_method ( D_METHOD ( " light_set_param " , " light " , " param " , " value " ) , & RenderingServer : : light_set_param ) ;
ClassDB : : bind_method ( D_METHOD ( " light_set_shadow " , " light " , " enabled " ) , & RenderingServer : : light_set_shadow ) ;
ClassDB : : bind_method ( D_METHOD ( " light_set_projector " , " light " , " texture " ) , & RenderingServer : : light_set_projector ) ;
ClassDB : : bind_method ( D_METHOD ( " light_set_negative " , " light " , " enable " ) , & RenderingServer : : light_set_negative ) ;
ClassDB : : bind_method ( D_METHOD ( " light_set_cull_mask " , " light " , " mask " ) , & RenderingServer : : light_set_cull_mask ) ;
2022-02-24 22:55:14 +01:00
ClassDB : : bind_method ( D_METHOD ( " light_set_distance_fade " , " decal " , " enabled " , " begin " , " shadow " , " length " ) , & RenderingServer : : light_set_distance_fade ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " light_set_reverse_cull_face_mode " , " light " , " enabled " ) , & RenderingServer : : light_set_reverse_cull_face_mode ) ;
2020-06-25 15:33:28 +02:00
ClassDB : : bind_method ( D_METHOD ( " light_set_bake_mode " , " light " , " bake_mode " ) , & RenderingServer : : light_set_bake_mode ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " light_set_max_sdfgi_cascade " , " light " , " cascade " ) , & RenderingServer : : light_set_max_sdfgi_cascade ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " light_omni_set_shadow_mode " , " light " , " mode " ) , & RenderingServer : : light_omni_set_shadow_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " light_directional_set_shadow_mode " , " light " , " mode " ) , & RenderingServer : : light_directional_set_shadow_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " light_directional_set_blend_splits " , " light " , " enable " ) , & RenderingServer : : light_directional_set_blend_splits ) ;
2021-10-20 00:40:46 +02:00
ClassDB : : bind_method ( D_METHOD ( " light_directional_set_sky_mode " , " light " , " mode " ) , & RenderingServer : : light_directional_set_sky_mode ) ;
2020-03-27 19:21:27 +01:00
2021-07-19 21:41:55 +02:00
ClassDB : : bind_method ( D_METHOD ( " light_projectors_set_filter " , " filter " ) , & RenderingServer : : light_projectors_set_filter ) ;
BIND_ENUM_CONSTANT ( LIGHT_PROJECTOR_FILTER_NEAREST ) ;
BIND_ENUM_CONSTANT ( LIGHT_PROJECTOR_FILTER_LINEAR ) ;
2021-08-12 00:44:24 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS ) ;
2021-07-19 21:41:55 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS ) ;
2021-08-12 00:44:24 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS_ANISOTROPIC ) ;
2021-07-19 21:41:55 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS_ANISOTROPIC ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( LIGHT_DIRECTIONAL ) ;
BIND_ENUM_CONSTANT ( LIGHT_OMNI ) ;
BIND_ENUM_CONSTANT ( LIGHT_SPOT ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_ENERGY ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_INDIRECT_ENERGY ) ;
2021-07-09 10:28:33 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PARAM_VOLUMETRIC_FOG_ENERGY ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SPECULAR ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_RANGE ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SIZE ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_ATTENUATION ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SPOT_ANGLE ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SPOT_ATTENUATION ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_MAX_DISTANCE ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_SPLIT_1_OFFSET ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_SPLIT_2_OFFSET ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_SPLIT_3_OFFSET ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_FADE_START ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_NORMAL_BIAS ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_BIAS ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_PANCAKE_SIZE ) ;
2022-06-10 12:47:06 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_OPACITY ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PARAM_SHADOW_BLUR ) ;
BIND_ENUM_CONSTANT ( LIGHT_PARAM_TRANSMITTANCE_BIAS ) ;
2023-06-22 18:26:00 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PARAM_INTENSITY ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( LIGHT_PARAM_MAX ) ;
BIND_ENUM_CONSTANT ( LIGHT_BAKE_DISABLED ) ;
BIND_ENUM_CONSTANT ( LIGHT_BAKE_STATIC ) ;
2021-11-26 17:47:37 +01:00
BIND_ENUM_CONSTANT ( LIGHT_BAKE_DYNAMIC ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( LIGHT_OMNI_SHADOW_DUAL_PARABOLOID ) ;
BIND_ENUM_CONSTANT ( LIGHT_OMNI_SHADOW_CUBE ) ;
BIND_ENUM_CONSTANT ( LIGHT_DIRECTIONAL_SHADOW_ORTHOGONAL ) ;
BIND_ENUM_CONSTANT ( LIGHT_DIRECTIONAL_SHADOW_PARALLEL_2_SPLITS ) ;
BIND_ENUM_CONSTANT ( LIGHT_DIRECTIONAL_SHADOW_PARALLEL_4_SPLITS ) ;
2021-10-20 00:40:46 +02:00
BIND_ENUM_CONSTANT ( LIGHT_DIRECTIONAL_SKY_MODE_LIGHT_AND_SKY ) ;
BIND_ENUM_CONSTANT ( LIGHT_DIRECTIONAL_SKY_MODE_LIGHT_ONLY ) ;
BIND_ENUM_CONSTANT ( LIGHT_DIRECTIONAL_SKY_MODE_SKY_ONLY ) ;
2022-05-01 01:40:30 +02:00
ClassDB : : bind_method ( D_METHOD ( " positional_soft_shadow_filter_set_quality " , " quality " ) , & RenderingServer : : positional_soft_shadow_filter_set_quality ) ;
ClassDB : : bind_method ( D_METHOD ( " directional_soft_shadow_filter_set_quality " , " quality " ) , & RenderingServer : : directional_soft_shadow_filter_set_quality ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " directional_shadow_atlas_set_size " , " size " , " is_16bits " ) , & RenderingServer : : directional_shadow_atlas_set_size ) ;
BIND_ENUM_CONSTANT ( SHADOW_QUALITY_HARD ) ;
2021-10-19 16:52:57 +02:00
BIND_ENUM_CONSTANT ( SHADOW_QUALITY_SOFT_VERY_LOW ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( SHADOW_QUALITY_SOFT_LOW ) ;
BIND_ENUM_CONSTANT ( SHADOW_QUALITY_SOFT_MEDIUM ) ;
BIND_ENUM_CONSTANT ( SHADOW_QUALITY_SOFT_HIGH ) ;
BIND_ENUM_CONSTANT ( SHADOW_QUALITY_SOFT_ULTRA ) ;
BIND_ENUM_CONSTANT ( SHADOW_QUALITY_MAX ) ;
/* REFLECTION PROBE */
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_create " ) , & RenderingServer : : reflection_probe_create ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_update_mode " , " probe " , " mode " ) , & RenderingServer : : reflection_probe_set_update_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_intensity " , " probe " , " intensity " ) , & RenderingServer : : reflection_probe_set_intensity ) ;
2020-06-25 15:33:28 +02:00
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_ambient_mode " , " probe " , " mode " ) , & RenderingServer : : reflection_probe_set_ambient_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_ambient_color " , " probe " , " color " ) , & RenderingServer : : reflection_probe_set_ambient_color ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_ambient_energy " , " probe " , " energy " ) , & RenderingServer : : reflection_probe_set_ambient_energy ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_max_distance " , " probe " , " distance " ) , & RenderingServer : : reflection_probe_set_max_distance ) ;
2022-07-12 09:43:01 +02:00
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_size " , " probe " , " size " ) , & RenderingServer : : reflection_probe_set_size ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_origin_offset " , " probe " , " offset " ) , & RenderingServer : : reflection_probe_set_origin_offset ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_as_interior " , " probe " , " enable " ) , & RenderingServer : : reflection_probe_set_as_interior ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_enable_box_projection " , " probe " , " enable " ) , & RenderingServer : : reflection_probe_set_enable_box_projection ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_enable_shadows " , " probe " , " enable " ) , & RenderingServer : : reflection_probe_set_enable_shadows ) ;
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_cull_mask " , " probe " , " layers " ) , & RenderingServer : : reflection_probe_set_cull_mask ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_resolution " , " probe " , " resolution " ) , & RenderingServer : : reflection_probe_set_resolution ) ;
2021-12-29 00:10:41 +01:00
ClassDB : : bind_method ( D_METHOD ( " reflection_probe_set_mesh_lod_threshold " , " probe " , " pixels " ) , & RenderingServer : : reflection_probe_set_mesh_lod_threshold ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( REFLECTION_PROBE_UPDATE_ONCE ) ;
BIND_ENUM_CONSTANT ( REFLECTION_PROBE_UPDATE_ALWAYS ) ;
2021-04-20 18:40:24 +02:00
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( REFLECTION_PROBE_AMBIENT_DISABLED ) ;
BIND_ENUM_CONSTANT ( REFLECTION_PROBE_AMBIENT_ENVIRONMENT ) ;
BIND_ENUM_CONSTANT ( REFLECTION_PROBE_AMBIENT_COLOR ) ;
/* DECAL */
ClassDB : : bind_method ( D_METHOD ( " decal_create " ) , & RenderingServer : : decal_create ) ;
2022-07-12 09:43:01 +02:00
ClassDB : : bind_method ( D_METHOD ( " decal_set_size " , " decal " , " size " ) , & RenderingServer : : decal_set_size ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " decal_set_texture " , " decal " , " type " , " texture " ) , & RenderingServer : : decal_set_texture ) ;
ClassDB : : bind_method ( D_METHOD ( " decal_set_emission_energy " , " decal " , " energy " ) , & RenderingServer : : decal_set_emission_energy ) ;
ClassDB : : bind_method ( D_METHOD ( " decal_set_albedo_mix " , " decal " , " albedo_mix " ) , & RenderingServer : : decal_set_albedo_mix ) ;
ClassDB : : bind_method ( D_METHOD ( " decal_set_modulate " , " decal " , " color " ) , & RenderingServer : : decal_set_modulate ) ;
ClassDB : : bind_method ( D_METHOD ( " decal_set_cull_mask " , " decal " , " mask " ) , & RenderingServer : : decal_set_cull_mask ) ;
ClassDB : : bind_method ( D_METHOD ( " decal_set_distance_fade " , " decal " , " enabled " , " begin " , " length " ) , & RenderingServer : : decal_set_distance_fade ) ;
ClassDB : : bind_method ( D_METHOD ( " decal_set_fade " , " decal " , " above " , " below " ) , & RenderingServer : : decal_set_fade ) ;
ClassDB : : bind_method ( D_METHOD ( " decal_set_normal_fade " , " decal " , " fade " ) , & RenderingServer : : decal_set_normal_fade ) ;
2021-07-19 21:41:55 +02:00
ClassDB : : bind_method ( D_METHOD ( " decals_set_filter " , " filter " ) , & RenderingServer : : decals_set_filter ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( DECAL_TEXTURE_ALBEDO ) ;
BIND_ENUM_CONSTANT ( DECAL_TEXTURE_NORMAL ) ;
BIND_ENUM_CONSTANT ( DECAL_TEXTURE_ORM ) ;
BIND_ENUM_CONSTANT ( DECAL_TEXTURE_EMISSION ) ;
BIND_ENUM_CONSTANT ( DECAL_TEXTURE_MAX ) ;
2021-07-19 21:41:55 +02:00
BIND_ENUM_CONSTANT ( DECAL_FILTER_NEAREST ) ;
BIND_ENUM_CONSTANT ( DECAL_FILTER_LINEAR ) ;
2021-08-12 00:44:24 +02:00
BIND_ENUM_CONSTANT ( DECAL_FILTER_NEAREST_MIPMAPS ) ;
2021-07-19 21:41:55 +02:00
BIND_ENUM_CONSTANT ( DECAL_FILTER_LINEAR_MIPMAPS ) ;
2021-08-12 00:44:24 +02:00
BIND_ENUM_CONSTANT ( DECAL_FILTER_NEAREST_MIPMAPS_ANISOTROPIC ) ;
2021-07-19 21:41:55 +02:00
BIND_ENUM_CONSTANT ( DECAL_FILTER_LINEAR_MIPMAPS_ANISOTROPIC ) ;
2021-12-22 19:38:48 +01:00
/* GI API (affects VoxelGI and SDFGI) */
ClassDB : : bind_method ( D_METHOD ( " gi_set_use_half_resolution " , " half_resolution " ) , & RenderingServer : : gi_set_use_half_resolution ) ;
2021-07-01 04:17:47 +02:00
/* VOXEL GI API */
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_create " ) , & RenderingServer : : voxel_gi_create ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_allocate_data " , " voxel_gi " , " to_cell_xform " , " aabb " , " octree_size " , " octree_cells " , " data_cells " , " distance_field " , " level_counts " ) , & RenderingServer : : voxel_gi_allocate_data ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_get_octree_size " , " voxel_gi " ) , & RenderingServer : : voxel_gi_get_octree_size ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_get_octree_cells " , " voxel_gi " ) , & RenderingServer : : voxel_gi_get_octree_cells ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_get_data_cells " , " voxel_gi " ) , & RenderingServer : : voxel_gi_get_data_cells ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_get_distance_field " , " voxel_gi " ) , & RenderingServer : : voxel_gi_get_distance_field ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_get_level_counts " , " voxel_gi " ) , & RenderingServer : : voxel_gi_get_level_counts ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_get_to_cell_xform " , " voxel_gi " ) , & RenderingServer : : voxel_gi_get_to_cell_xform ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_dynamic_range " , " voxel_gi " , " range " ) , & RenderingServer : : voxel_gi_set_dynamic_range ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_propagation " , " voxel_gi " , " amount " ) , & RenderingServer : : voxel_gi_set_propagation ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_energy " , " voxel_gi " , " energy " ) , & RenderingServer : : voxel_gi_set_energy ) ;
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_baked_exposure_normalization " , " voxel_gi " , " baked_exposure " ) , & RenderingServer : : voxel_gi_set_baked_exposure_normalization ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_bias " , " voxel_gi " , " bias " ) , & RenderingServer : : voxel_gi_set_bias ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_normal_bias " , " voxel_gi " , " bias " ) , & RenderingServer : : voxel_gi_set_normal_bias ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_interior " , " voxel_gi " , " enable " ) , & RenderingServer : : voxel_gi_set_interior ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_use_two_bounces " , " voxel_gi " , " enable " ) , & RenderingServer : : voxel_gi_set_use_two_bounces ) ;
ClassDB : : bind_method ( D_METHOD ( " voxel_gi_set_quality " , " quality " ) , & RenderingServer : : voxel_gi_set_quality ) ;
BIND_ENUM_CONSTANT ( VOXEL_GI_QUALITY_LOW ) ;
BIND_ENUM_CONSTANT ( VOXEL_GI_QUALITY_HIGH ) ;
/* LIGHTMAP */
ClassDB : : bind_method ( D_METHOD ( " lightmap_create " ) , & RenderingServer : : lightmap_create ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_set_textures " , " lightmap " , " light " , " uses_sh " ) , & RenderingServer : : lightmap_set_textures ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_set_probe_bounds " , " lightmap " , " bounds " ) , & RenderingServer : : lightmap_set_probe_bounds ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_set_probe_interior " , " lightmap " , " interior " ) , & RenderingServer : : lightmap_set_probe_interior ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_set_probe_capture_data " , " lightmap " , " points " , " point_sh " , " tetrahedra " , " bsp_tree " ) , & RenderingServer : : lightmap_set_probe_capture_data ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_get_probe_capture_points " , " lightmap " ) , & RenderingServer : : lightmap_get_probe_capture_points ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_get_probe_capture_sh " , " lightmap " ) , & RenderingServer : : lightmap_get_probe_capture_sh ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_get_probe_capture_tetrahedra " , " lightmap " ) , & RenderingServer : : lightmap_get_probe_capture_tetrahedra ) ;
ClassDB : : bind_method ( D_METHOD ( " lightmap_get_probe_capture_bsp_tree " , " lightmap " ) , & RenderingServer : : lightmap_get_probe_capture_bsp_tree ) ;
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " lightmap_set_baked_exposure_normalization " , " lightmap " , " baked_exposure " ) , & RenderingServer : : lightmap_set_baked_exposure_normalization ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " lightmap_set_probe_capture_update_speed " , " speed " ) , & RenderingServer : : lightmap_set_probe_capture_update_speed ) ;
/* PARTICLES API */
2021-04-20 18:40:24 +02:00
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " particles_create " ) , & RenderingServer : : particles_create ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_mode " , " particles " , " mode " ) , & RenderingServer : : particles_set_mode ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_emitting " , " particles " , " emitting " ) , & RenderingServer : : particles_set_emitting ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_get_emitting " , " particles " ) , & RenderingServer : : particles_get_emitting ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_amount " , " particles " , " amount " ) , & RenderingServer : : particles_set_amount ) ;
2023-08-13 13:08:52 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_amount_ratio " , " particles " , " ratio " ) , & RenderingServer : : particles_set_amount_ratio ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_lifetime " , " particles " , " lifetime " ) , & RenderingServer : : particles_set_lifetime ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_one_shot " , " particles " , " one_shot " ) , & RenderingServer : : particles_set_one_shot ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_pre_process_time " , " particles " , " time " ) , & RenderingServer : : particles_set_pre_process_time ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_explosiveness_ratio " , " particles " , " ratio " ) , & RenderingServer : : particles_set_explosiveness_ratio ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_randomness_ratio " , " particles " , " ratio " ) , & RenderingServer : : particles_set_randomness_ratio ) ;
2023-08-13 13:08:52 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_interp_to_end " , " particles " , " factor " ) , & RenderingServer : : particles_set_interp_to_end ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_emitter_velocity " , " particles " , " velocity " ) , & RenderingServer : : particles_set_emitter_velocity ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_custom_aabb " , " particles " , " aabb " ) , & RenderingServer : : particles_set_custom_aabb ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_speed_scale " , " particles " , " scale " ) , & RenderingServer : : particles_set_speed_scale ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_use_local_coordinates " , " particles " , " enable " ) , & RenderingServer : : particles_set_use_local_coordinates ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_process_material " , " particles " , " material " ) , & RenderingServer : : particles_set_process_material ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_fixed_fps " , " particles " , " fps " ) , & RenderingServer : : particles_set_fixed_fps ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_interpolate " , " particles " , " enable " ) , & RenderingServer : : particles_set_interpolate ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_fractional_delta " , " particles " , " enable " ) , & RenderingServer : : particles_set_fractional_delta ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_collision_base_size " , " particles " , " size " ) , & RenderingServer : : particles_set_collision_base_size ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_transform_align " , " particles " , " align " ) , & RenderingServer : : particles_set_transform_align ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_trails " , " particles " , " enable " , " length_sec " ) , & RenderingServer : : particles_set_trails ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_trail_bind_poses " , " particles " , " bind_poses " ) , & RenderingServer : : _particles_set_trail_bind_poses ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " particles_is_inactive " , " particles " ) , & RenderingServer : : particles_is_inactive ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_request_process " , " particles " ) , & RenderingServer : : particles_request_process ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_restart " , " particles " ) , & RenderingServer : : particles_restart ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_subemitter " , " particles " , " subemitter_particles " ) , & RenderingServer : : particles_set_subemitter ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_emit " , " particles " , " transform " , " velocity " , " color " , " custom " , " emit_flags " ) , & RenderingServer : : particles_emit ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " particles_set_draw_order " , " particles " , " order " ) , & RenderingServer : : particles_set_draw_order ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_draw_passes " , " particles " , " count " ) , & RenderingServer : : particles_set_draw_passes ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_draw_pass_mesh " , " particles " , " pass " , " mesh " ) , & RenderingServer : : particles_set_draw_pass_mesh ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_get_current_aabb " , " particles " ) , & RenderingServer : : particles_get_current_aabb ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_set_emission_transform " , " particles " , " transform " ) , & RenderingServer : : particles_set_emission_transform ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( PARTICLES_MODE_2D ) ;
BIND_ENUM_CONSTANT ( PARTICLES_MODE_3D ) ;
BIND_ENUM_CONSTANT ( PARTICLES_TRANSFORM_ALIGN_DISABLED ) ;
BIND_ENUM_CONSTANT ( PARTICLES_TRANSFORM_ALIGN_Z_BILLBOARD ) ;
BIND_ENUM_CONSTANT ( PARTICLES_TRANSFORM_ALIGN_Y_TO_VELOCITY ) ;
BIND_ENUM_CONSTANT ( PARTICLES_TRANSFORM_ALIGN_Z_BILLBOARD_Y_TO_VELOCITY ) ;
BIND_CONSTANT ( PARTICLES_EMIT_FLAG_POSITION ) ;
BIND_CONSTANT ( PARTICLES_EMIT_FLAG_ROTATION_SCALE ) ;
BIND_CONSTANT ( PARTICLES_EMIT_FLAG_VELOCITY ) ;
BIND_CONSTANT ( PARTICLES_EMIT_FLAG_COLOR ) ;
BIND_CONSTANT ( PARTICLES_EMIT_FLAG_CUSTOM ) ;
BIND_ENUM_CONSTANT ( PARTICLES_DRAW_ORDER_INDEX ) ;
BIND_ENUM_CONSTANT ( PARTICLES_DRAW_ORDER_LIFETIME ) ;
BIND_ENUM_CONSTANT ( PARTICLES_DRAW_ORDER_REVERSE_LIFETIME ) ;
BIND_ENUM_CONSTANT ( PARTICLES_DRAW_ORDER_VIEW_DEPTH ) ;
/* PARTICLES COLLISION */
ClassDB : : bind_method ( D_METHOD ( " particles_collision_create " ) , & RenderingServer : : particles_collision_create ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_collision_type " , " particles_collision " , " type " ) , & RenderingServer : : particles_collision_set_collision_type ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_cull_mask " , " particles_collision " , " mask " ) , & RenderingServer : : particles_collision_set_cull_mask ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_sphere_radius " , " particles_collision " , " radius " ) , & RenderingServer : : particles_collision_set_sphere_radius ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_box_extents " , " particles_collision " , " extents " ) , & RenderingServer : : particles_collision_set_box_extents ) ;
2023-04-13 03:09:11 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_attractor_strength " , " particles_collision " , " strength " ) , & RenderingServer : : particles_collision_set_attractor_strength ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_attractor_directionality " , " particles_collision " , " amount " ) , & RenderingServer : : particles_collision_set_attractor_directionality ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_attractor_attenuation " , " particles_collision " , " curve " ) , & RenderingServer : : particles_collision_set_attractor_attenuation ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_field_texture " , " particles_collision " , " texture " ) , & RenderingServer : : particles_collision_set_field_texture ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_height_field_update " , " particles_collision " ) , & RenderingServer : : particles_collision_height_field_update ) ;
ClassDB : : bind_method ( D_METHOD ( " particles_collision_set_height_field_resolution " , " particles_collision " , " resolution " ) , & RenderingServer : : particles_collision_set_height_field_resolution ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_TYPE_SPHERE_ATTRACT ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_TYPE_BOX_ATTRACT ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_TYPE_VECTOR_FIELD_ATTRACT ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_TYPE_SPHERE_COLLIDE ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_TYPE_BOX_COLLIDE ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_TYPE_SDF_COLLIDE ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_TYPE_HEIGHTFIELD_COLLIDE ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_256 ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_512 ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_1024 ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_2048 ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_4096 ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_8192 ) ;
BIND_ENUM_CONSTANT ( PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_MAX ) ;
2021-10-03 13:28:55 +02:00
/* FOG VOLUMES */
ClassDB : : bind_method ( D_METHOD ( " fog_volume_create " ) , & RenderingServer : : fog_volume_create ) ;
ClassDB : : bind_method ( D_METHOD ( " fog_volume_set_shape " , " fog_volume " , " shape " ) , & RenderingServer : : fog_volume_set_shape ) ;
2022-07-12 09:43:01 +02:00
ClassDB : : bind_method ( D_METHOD ( " fog_volume_set_size " , " fog_volume " , " size " ) , & RenderingServer : : fog_volume_set_size ) ;
2021-10-03 13:28:55 +02:00
ClassDB : : bind_method ( D_METHOD ( " fog_volume_set_material " , " fog_volume " , " material " ) , & RenderingServer : : fog_volume_set_material ) ;
BIND_ENUM_CONSTANT ( FOG_VOLUME_SHAPE_ELLIPSOID ) ;
2022-05-21 12:17:49 +02:00
BIND_ENUM_CONSTANT ( FOG_VOLUME_SHAPE_CONE ) ;
BIND_ENUM_CONSTANT ( FOG_VOLUME_SHAPE_CYLINDER ) ;
2021-10-03 13:28:55 +02:00
BIND_ENUM_CONSTANT ( FOG_VOLUME_SHAPE_BOX ) ;
BIND_ENUM_CONSTANT ( FOG_VOLUME_SHAPE_WORLD ) ;
2022-05-21 12:17:49 +02:00
BIND_ENUM_CONSTANT ( FOG_VOLUME_SHAPE_MAX ) ;
2021-10-03 13:28:55 +02:00
2021-07-01 04:17:47 +02:00
/* VISIBILITY NOTIFIER */
ClassDB : : bind_method ( D_METHOD ( " visibility_notifier_create " ) , & RenderingServer : : visibility_notifier_create ) ;
ClassDB : : bind_method ( D_METHOD ( " visibility_notifier_set_aabb " , " notifier " , " aabb " ) , & RenderingServer : : visibility_notifier_set_aabb ) ;
ClassDB : : bind_method ( D_METHOD ( " visibility_notifier_set_callbacks " , " notifier " , " enter_callable " , " exit_callable " ) , & RenderingServer : : visibility_notifier_set_callbacks ) ;
/* OCCLUDER */
ClassDB : : bind_method ( D_METHOD ( " occluder_create " ) , & RenderingServer : : occluder_create ) ;
ClassDB : : bind_method ( D_METHOD ( " occluder_set_mesh " , " occluder " , " vertices " , " indices " ) , & RenderingServer : : occluder_set_mesh ) ;
/* CAMERA */
ClassDB : : bind_method ( D_METHOD ( " camera_create " ) , & RenderingServer : : camera_create ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_set_perspective " , " camera " , " fovy_degrees " , " z_near " , " z_far " ) , & RenderingServer : : camera_set_perspective ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_set_orthogonal " , " camera " , " size " , " z_near " , " z_far " ) , & RenderingServer : : camera_set_orthogonal ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_set_frustum " , " camera " , " size " , " offset " , " z_near " , " z_far " ) , & RenderingServer : : camera_set_frustum ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_set_transform " , " camera " , " transform " ) , & RenderingServer : : camera_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_set_cull_mask " , " camera " , " layers " ) , & RenderingServer : : camera_set_cull_mask ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " camera_set_environment " , " camera " , " env " ) , & RenderingServer : : camera_set_environment ) ;
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " camera_set_camera_attributes " , " camera " , " effects " ) , & RenderingServer : : camera_set_camera_attributes ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " camera_set_use_vertical_aspect " , " camera " , " enable " ) , & RenderingServer : : camera_set_use_vertical_aspect ) ;
2021-07-01 04:17:47 +02:00
/* VIEWPORT */
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_create " ) , & RenderingServer : : viewport_create ) ;
2020-04-08 16:47:36 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_use_xr " , " viewport " , " use_xr " ) , & RenderingServer : : viewport_set_use_xr ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_size " , " viewport " , " width " , " height " ) , & RenderingServer : : viewport_set_size ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_active " , " viewport " , " active " ) , & RenderingServer : : viewport_set_active ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_parent_viewport " , " viewport " , " parent_viewport " ) , & RenderingServer : : viewport_set_parent_viewport ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_attach_to_screen " , " viewport " , " rect " , " screen " ) , & RenderingServer : : viewport_attach_to_screen , DEFVAL ( Rect2 ( ) ) , DEFVAL ( DisplayServer : : MAIN_WINDOW_ID ) ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_render_direct_to_screen " , " viewport " , " enabled " ) , & RenderingServer : : viewport_set_render_direct_to_screen ) ;
2021-09-02 20:07:04 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_canvas_cull_mask " , " viewport " , " canvas_cull_mask " ) , & RenderingServer : : viewport_set_canvas_cull_mask ) ;
2020-03-27 19:21:27 +01:00
2021-11-23 22:16:03 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_scaling_3d_mode " , " viewport " , " scaling_3d_mode " ) , & RenderingServer : : viewport_set_scaling_3d_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_scaling_3d_scale " , " viewport " , " scale " ) , & RenderingServer : : viewport_set_scaling_3d_scale ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_fsr_sharpness " , " viewport " , " sharpness " ) , & RenderingServer : : viewport_set_fsr_sharpness ) ;
2022-06-12 01:49:59 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_texture_mipmap_bias " , " viewport " , " mipmap_bias " ) , & RenderingServer : : viewport_set_texture_mipmap_bias ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_update_mode " , " viewport " , " update_mode " ) , & RenderingServer : : viewport_set_update_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_clear_mode " , " viewport " , " clear_mode " ) , & RenderingServer : : viewport_set_clear_mode ) ;
2023-03-31 02:28:53 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_get_render_target " , " viewport " ) , & RenderingServer : : viewport_get_render_target ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_get_texture " , " viewport " ) , & RenderingServer : : viewport_get_texture ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_disable_3d " , " viewport " , " disable " ) , & RenderingServer : : viewport_set_disable_3d ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_disable_2d " , " viewport " , " disable " ) , & RenderingServer : : viewport_set_disable_2d ) ;
2023-01-30 01:04:39 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_environment_mode " , " viewport " , " mode " ) , & RenderingServer : : viewport_set_environment_mode ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_attach_camera " , " viewport " , " camera " ) , & RenderingServer : : viewport_attach_camera ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_scenario " , " viewport " , " scenario " ) , & RenderingServer : : viewport_set_scenario ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_attach_canvas " , " viewport " , " canvas " ) , & RenderingServer : : viewport_attach_canvas ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_remove_canvas " , " viewport " , " canvas " ) , & RenderingServer : : viewport_remove_canvas ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_snap_2d_transforms_to_pixel " , " viewport " , " enabled " ) , & RenderingServer : : viewport_set_snap_2d_transforms_to_pixel ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_snap_2d_vertices_to_pixel " , " viewport " , " enabled " ) , & RenderingServer : : viewport_set_snap_2d_vertices_to_pixel ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_default_canvas_item_texture_filter " , " viewport " , " filter " ) , & RenderingServer : : viewport_set_default_canvas_item_texture_filter ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_default_canvas_item_texture_repeat " , " viewport " , " repeat " ) , & RenderingServer : : viewport_set_default_canvas_item_texture_repeat ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_canvas_transform " , " viewport " , " canvas " , " offset " ) , & RenderingServer : : viewport_set_canvas_transform ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_canvas_stacking " , " viewport " , " canvas " , " layer " , " sublayer " ) , & RenderingServer : : viewport_set_canvas_stacking ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_transparent_background " , " viewport " , " enabled " ) , & RenderingServer : : viewport_set_transparent_background ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_global_canvas_transform " , " viewport " , " transform " ) , & RenderingServer : : viewport_set_global_canvas_transform ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_sdf_oversize_and_scale " , " viewport " , " oversize " , " scale " ) , & RenderingServer : : viewport_set_sdf_oversize_and_scale ) ;
2022-05-01 01:40:30 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_positional_shadow_atlas_size " , " viewport " , " size " , " use_16_bits " ) , & RenderingServer : : viewport_set_positional_shadow_atlas_size , DEFVAL ( false ) ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_positional_shadow_atlas_quadrant_subdivision " , " viewport " , " quadrant " , " subdivision " ) , & RenderingServer : : viewport_set_positional_shadow_atlas_quadrant_subdivision ) ;
2022-08-13 01:02:32 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_msaa_3d " , " viewport " , " msaa " ) , & RenderingServer : : viewport_set_msaa_3d ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_msaa_2d " , " viewport " , " msaa " ) , & RenderingServer : : viewport_set_msaa_2d ) ;
2023-08-03 14:10:01 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_use_hdr_2d " , " viewport " , " enabled " ) , & RenderingServer : : viewport_set_use_hdr_2d ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_screen_space_aa " , " viewport " , " mode " ) , & RenderingServer : : viewport_set_screen_space_aa ) ;
2022-04-04 16:10:22 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_use_taa " , " viewport " , " enable " ) , & RenderingServer : : viewport_set_use_taa ) ;
2020-10-19 22:23:36 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_use_debanding " , " viewport " , " enable " ) , & RenderingServer : : viewport_set_use_debanding ) ;
2021-04-20 18:40:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_use_occlusion_culling " , " viewport " , " enable " ) , & RenderingServer : : viewport_set_use_occlusion_culling ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_occlusion_rays_per_thread " , " rays_per_thread " ) , & RenderingServer : : viewport_set_occlusion_rays_per_thread ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_occlusion_culling_build_quality " , " quality " ) , & RenderingServer : : viewport_set_occlusion_culling_build_quality ) ;
2020-04-20 23:34:47 +02:00
2021-07-03 01:14:19 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_get_render_info " , " viewport " , " type " , " info " ) , & RenderingServer : : viewport_get_render_info ) ;
2020-03-27 19:21:27 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_debug_draw " , " viewport " , " draw " ) , & RenderingServer : : viewport_set_debug_draw ) ;
2020-12-24 00:40:19 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_measure_render_time " , " viewport " , " enable " ) , & RenderingServer : : viewport_set_measure_render_time ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_get_measured_render_time_cpu " , " viewport " ) , & RenderingServer : : viewport_get_measured_render_time_cpu ) ;
2019-06-11 20:43:37 +02:00
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " viewport_get_measured_render_time_gpu " , " viewport " ) , & RenderingServer : : viewport_get_measured_render_time_gpu ) ;
2020-02-12 09:59:06 +01:00
2022-02-11 12:33:54 +01:00
ClassDB : : bind_method ( D_METHOD ( " viewport_set_vrs_mode " , " viewport " , " mode " ) , & RenderingServer : : viewport_set_vrs_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " viewport_set_vrs_texture " , " viewport " , " texture " ) , & RenderingServer : : viewport_set_vrs_texture ) ;
2021-11-23 22:16:03 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_SCALING_3D_MODE_BILINEAR ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SCALING_3D_MODE_FSR ) ;
2023-09-22 23:38:02 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_SCALING_3D_MODE_FSR2 ) ;
2021-11-23 22:16:03 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_SCALING_3D_MODE_MAX ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_UPDATE_DISABLED ) ;
2021-11-28 01:12:10 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_UPDATE_ONCE ) ; // Then goes to disabled); must be manually updated.
BIND_ENUM_CONSTANT ( VIEWPORT_UPDATE_WHEN_VISIBLE ) ; // Default
2020-03-14 17:06:39 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_UPDATE_WHEN_PARENT_VISIBLE ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_UPDATE_ALWAYS ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_CLEAR_ALWAYS ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_CLEAR_NEVER ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_CLEAR_ONLY_NEXT_FRAME ) ;
2023-01-30 01:04:39 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_ENVIRONMENT_DISABLED ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_ENVIRONMENT_ENABLED ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_ENVIRONMENT_INHERIT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_ENVIRONMENT_MAX ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_OVERSIZE_100_PERCENT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_OVERSIZE_120_PERCENT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_OVERSIZE_150_PERCENT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_OVERSIZE_200_PERCENT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_OVERSIZE_MAX ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_SCALE_100_PERCENT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_SCALE_50_PERCENT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_SCALE_25_PERCENT ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SDF_SCALE_MAX ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_MSAA_DISABLED ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_MSAA_2X ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_MSAA_4X ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_MSAA_8X ) ;
2020-04-20 11:48:00 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_MSAA_MAX ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SCREEN_SPACE_AA_DISABLED ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SCREEN_SPACE_AA_FXAA ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_SCREEN_SPACE_AA_MAX ) ;
2017-10-20 00:24:49 +02:00
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_OCCLUSION_BUILD_QUALITY_LOW ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_OCCLUSION_BUILD_QUALITY_MEDIUM ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_OCCLUSION_BUILD_QUALITY_HIGH ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME ) ;
2021-07-03 01:14:19 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_PRIMITIVES_IN_FRAME ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_MAX ) ;
2021-07-03 01:14:19 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_TYPE_VISIBLE ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_TYPE_SHADOW ) ;
2023-12-06 00:48:01 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_TYPE_CANVAS ) ;
2021-07-03 01:14:19 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_RENDER_INFO_TYPE_MAX ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_DISABLED ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_UNSHADED ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_LIGHTING ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_OVERDRAW ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_WIREFRAME ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_NORMAL_BUFFER ) ;
2021-06-05 00:47:26 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_VOXEL_GI_ALBEDO ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_VOXEL_GI_LIGHTING ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_VOXEL_GI_EMISSION ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_SHADOW_ATLAS ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_DIRECTIONAL_SHADOW_ATLAS ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_SCENE_LUMINANCE ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_SSAO ) ;
2021-08-03 09:07:32 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_SSIL ) ;
2020-04-08 03:51:52 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_PSSM_SPLITS ) ;
2020-04-20 11:48:00 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_DECAL_ATLAS ) ;
2020-06-25 15:33:28 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_SDFGI ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_SDFGI_PROBES ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_GI_BUFFER ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_DISABLE_LOD ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_CLUSTER_OMNI_LIGHTS ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_CLUSTER_SPOT_LIGHTS ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_CLUSTER_DECALS ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_CLUSTER_REFLECTION_PROBES ) ;
2021-04-20 18:40:24 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_OCCLUDERS ) ;
2022-04-04 16:10:22 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_MOTION_VECTORS ) ;
2023-09-22 23:38:02 +02:00
BIND_ENUM_CONSTANT ( VIEWPORT_DEBUG_DRAW_INTERNAL_BUFFER ) ;
2020-02-12 09:59:06 +01:00
2022-02-11 12:33:54 +01:00
BIND_ENUM_CONSTANT ( VIEWPORT_VRS_DISABLED ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_VRS_TEXTURE ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_VRS_XR ) ;
BIND_ENUM_CONSTANT ( VIEWPORT_VRS_MAX ) ;
2021-07-01 04:17:47 +02:00
/* SKY API */
ClassDB : : bind_method ( D_METHOD ( " sky_create " ) , & RenderingServer : : sky_create ) ;
ClassDB : : bind_method ( D_METHOD ( " sky_set_radiance_size " , " sky " , " radiance_size " ) , & RenderingServer : : sky_set_radiance_size ) ;
ClassDB : : bind_method ( D_METHOD ( " sky_set_mode " , " sky " , " mode " ) , & RenderingServer : : sky_set_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " sky_set_material " , " sky " , " material " ) , & RenderingServer : : sky_set_material ) ;
ClassDB : : bind_method ( D_METHOD ( " sky_bake_panorama " , " sky " , " energy " , " bake_irradiance " , " size " ) , & RenderingServer : : sky_bake_panorama ) ;
BIND_ENUM_CONSTANT ( SKY_MODE_AUTOMATIC ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( SKY_MODE_QUALITY ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( SKY_MODE_INCREMENTAL ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( SKY_MODE_REALTIME ) ;
2021-07-01 04:17:47 +02:00
/* ENVIRONMENT */
ClassDB : : bind_method ( D_METHOD ( " environment_create " ) , & RenderingServer : : environment_create ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_background " , " env " , " bg " ) , & RenderingServer : : environment_set_background ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_sky " , " env " , " sky " ) , & RenderingServer : : environment_set_sky ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_sky_custom_fov " , " env " , " scale " ) , & RenderingServer : : environment_set_sky_custom_fov ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_sky_orientation " , " env " , " orientation " ) , & RenderingServer : : environment_set_sky_orientation ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_bg_color " , " env " , " color " ) , & RenderingServer : : environment_set_bg_color ) ;
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_bg_energy " , " env " , " multiplier " , " exposure_value " ) , & RenderingServer : : environment_set_bg_energy ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_canvas_max_layer " , " env " , " max_layer " ) , & RenderingServer : : environment_set_canvas_max_layer ) ;
2021-10-07 15:01:14 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_ambient_light " , " env " , " color " , " ambient " , " energy " , " sky_contibution " , " reflection_source " ) , & RenderingServer : : environment_set_ambient_light , DEFVAL ( RS : : ENV_AMBIENT_SOURCE_BG ) , DEFVAL ( 1.0 ) , DEFVAL ( 0.0 ) , DEFVAL ( RS : : ENV_REFLECTION_SOURCE_BG ) ) ;
2022-01-20 16:47:25 +01:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_glow " , " env " , " enable " , " levels " , " intensity " , " strength " , " mix " , " bloom_threshold " , " blend_mode " , " hdr_bleed_threshold " , " hdr_bleed_scale " , " hdr_luminance_cap " , " glow_map_strength " , " glow_map " ) , & RenderingServer : : environment_set_glow ) ;
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_tonemap " , " env " , " tone_mapper " , " exposure " , " white " ) , & RenderingServer : : environment_set_tonemap ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_adjustment " , " env " , " enable " , " brightness " , " contrast " , " saturation " , " use_1d_color_correction " , " color_correction " ) , & RenderingServer : : environment_set_adjustment ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_ssr " , " env " , " enable " , " max_steps " , " fade_in " , " fade_out " , " depth_tolerance " ) , & RenderingServer : : environment_set_ssr ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_ssao " , " env " , " enable " , " radius " , " intensity " , " power " , " detail " , " horizon " , " sharpness " , " light_affect " , " ao_channel_affect " ) , & RenderingServer : : environment_set_ssao ) ;
2022-02-23 23:54:06 +01:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_fog " , " env " , " enable " , " light_color " , " light_energy " , " sun_scatter " , " density " , " height " , " height_density " , " aerial_perspective " , " sky_affect " ) , & RenderingServer : : environment_set_fog ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_sdfgi " , " env " , " enable " , " cascades " , " min_cell_size " , " y_scale " , " use_occlusion " , " bounce_feedback " , " read_sky " , " energy " , " normal_bias " , " probe_bias " ) , & RenderingServer : : environment_set_sdfgi ) ;
2022-02-23 23:54:06 +01:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_volumetric_fog " , " env " , " enable " , " density " , " albedo " , " emission " , " emission_energy " , " anisotropy " , " length " , " p_detail_spread " , " gi_inject " , " temporal_reprojection " , " temporal_reprojection_amount " , " ambient_inject " , " sky_affect " ) , & RenderingServer : : environment_set_volumetric_fog ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_glow_set_use_bicubic_upscale " , " enable " ) , & RenderingServer : : environment_glow_set_use_bicubic_upscale ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_ssr_roughness_quality " , " quality " ) , & RenderingServer : : environment_set_ssr_roughness_quality ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_ssao_quality " , " quality " , " half_size " , " adaptive_target " , " blur_passes " , " fadeout_from " , " fadeout_to " ) , & RenderingServer : : environment_set_ssao_quality ) ;
2022-01-06 02:35:49 +01:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_ssil_quality " , " quality " , " half_size " , " adaptive_target " , " blur_passes " , " fadeout_from " , " fadeout_to " ) , & RenderingServer : : environment_set_ssil_quality ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " environment_set_sdfgi_ray_count " , " ray_count " ) , & RenderingServer : : environment_set_sdfgi_ray_count ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_sdfgi_frames_to_converge " , " frames " ) , & RenderingServer : : environment_set_sdfgi_frames_to_converge ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_sdfgi_frames_to_update_light " , " frames " ) , & RenderingServer : : environment_set_sdfgi_frames_to_update_light ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_volumetric_fog_volume_size " , " size " , " depth " ) , & RenderingServer : : environment_set_volumetric_fog_volume_size ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_set_volumetric_fog_filter_active " , " active " ) , & RenderingServer : : environment_set_volumetric_fog_filter_active ) ;
ClassDB : : bind_method ( D_METHOD ( " environment_bake_panorama " , " environment " , " bake_irradiance " , " size " ) , & RenderingServer : : environment_bake_panorama ) ;
ClassDB : : bind_method ( D_METHOD ( " screen_space_roughness_limiter_set_active " , " enable " , " amount " , " limit " ) , & RenderingServer : : screen_space_roughness_limiter_set_active ) ;
ClassDB : : bind_method ( D_METHOD ( " sub_surface_scattering_set_quality " , " quality " ) , & RenderingServer : : sub_surface_scattering_set_quality ) ;
ClassDB : : bind_method ( D_METHOD ( " sub_surface_scattering_set_scale " , " scale " , " depth_scale " ) , & RenderingServer : : sub_surface_scattering_set_scale ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( ENV_BG_CLEAR_COLOR ) ;
BIND_ENUM_CONSTANT ( ENV_BG_COLOR ) ;
BIND_ENUM_CONSTANT ( ENV_BG_SKY ) ;
BIND_ENUM_CONSTANT ( ENV_BG_CANVAS ) ;
BIND_ENUM_CONSTANT ( ENV_BG_KEEP ) ;
BIND_ENUM_CONSTANT ( ENV_BG_CAMERA_FEED ) ;
BIND_ENUM_CONSTANT ( ENV_BG_MAX ) ;
BIND_ENUM_CONSTANT ( ENV_AMBIENT_SOURCE_BG ) ;
BIND_ENUM_CONSTANT ( ENV_AMBIENT_SOURCE_DISABLED ) ;
BIND_ENUM_CONSTANT ( ENV_AMBIENT_SOURCE_COLOR ) ;
BIND_ENUM_CONSTANT ( ENV_AMBIENT_SOURCE_SKY ) ;
BIND_ENUM_CONSTANT ( ENV_REFLECTION_SOURCE_BG ) ;
BIND_ENUM_CONSTANT ( ENV_REFLECTION_SOURCE_DISABLED ) ;
BIND_ENUM_CONSTANT ( ENV_REFLECTION_SOURCE_SKY ) ;
BIND_ENUM_CONSTANT ( ENV_GLOW_BLEND_MODE_ADDITIVE ) ;
BIND_ENUM_CONSTANT ( ENV_GLOW_BLEND_MODE_SCREEN ) ;
BIND_ENUM_CONSTANT ( ENV_GLOW_BLEND_MODE_SOFTLIGHT ) ;
BIND_ENUM_CONSTANT ( ENV_GLOW_BLEND_MODE_REPLACE ) ;
BIND_ENUM_CONSTANT ( ENV_GLOW_BLEND_MODE_MIX ) ;
BIND_ENUM_CONSTANT ( ENV_TONE_MAPPER_LINEAR ) ;
BIND_ENUM_CONSTANT ( ENV_TONE_MAPPER_REINHARD ) ;
BIND_ENUM_CONSTANT ( ENV_TONE_MAPPER_FILMIC ) ;
BIND_ENUM_CONSTANT ( ENV_TONE_MAPPER_ACES ) ;
2022-02-28 01:06:26 +01:00
BIND_ENUM_CONSTANT ( ENV_SSR_ROUGHNESS_QUALITY_DISABLED ) ;
BIND_ENUM_CONSTANT ( ENV_SSR_ROUGHNESS_QUALITY_LOW ) ;
BIND_ENUM_CONSTANT ( ENV_SSR_ROUGHNESS_QUALITY_MEDIUM ) ;
BIND_ENUM_CONSTANT ( ENV_SSR_ROUGHNESS_QUALITY_HIGH ) ;
2020-04-20 11:48:00 +02:00
2020-12-08 06:37:09 +01:00
BIND_ENUM_CONSTANT ( ENV_SSAO_QUALITY_VERY_LOW ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( ENV_SSAO_QUALITY_LOW ) ;
BIND_ENUM_CONSTANT ( ENV_SSAO_QUALITY_MEDIUM ) ;
BIND_ENUM_CONSTANT ( ENV_SSAO_QUALITY_HIGH ) ;
BIND_ENUM_CONSTANT ( ENV_SSAO_QUALITY_ULTRA ) ;
2022-01-06 02:35:49 +01:00
BIND_ENUM_CONSTANT ( ENV_SSIL_QUALITY_VERY_LOW ) ;
BIND_ENUM_CONSTANT ( ENV_SSIL_QUALITY_LOW ) ;
BIND_ENUM_CONSTANT ( ENV_SSIL_QUALITY_MEDIUM ) ;
BIND_ENUM_CONSTANT ( ENV_SSIL_QUALITY_HIGH ) ;
BIND_ENUM_CONSTANT ( ENV_SSIL_QUALITY_ULTRA ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( ENV_SDFGI_Y_SCALE_50_PERCENT ) ;
2021-05-23 19:10:26 +02:00
BIND_ENUM_CONSTANT ( ENV_SDFGI_Y_SCALE_75_PERCENT ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_Y_SCALE_100_PERCENT ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_4 ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_8 ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_16 ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_32 ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_64 ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_96 ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_128 ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_RAY_COUNT_MAX ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_CONVERGE_IN_5_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_CONVERGE_IN_10_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_CONVERGE_IN_15_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_CONVERGE_IN_20_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_CONVERGE_IN_25_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_CONVERGE_IN_30_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_CONVERGE_MAX ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_UPDATE_LIGHT_IN_1_FRAME ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_UPDATE_LIGHT_IN_2_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_UPDATE_LIGHT_IN_4_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_UPDATE_LIGHT_IN_8_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_UPDATE_LIGHT_IN_16_FRAMES ) ;
BIND_ENUM_CONSTANT ( ENV_SDFGI_UPDATE_LIGHT_MAX ) ;
2020-04-20 11:48:00 +02:00
BIND_ENUM_CONSTANT ( SUB_SURFACE_SCATTERING_QUALITY_DISABLED ) ;
BIND_ENUM_CONSTANT ( SUB_SURFACE_SCATTERING_QUALITY_LOW ) ;
BIND_ENUM_CONSTANT ( SUB_SURFACE_SCATTERING_QUALITY_MEDIUM ) ;
BIND_ENUM_CONSTANT ( SUB_SURFACE_SCATTERING_QUALITY_HIGH ) ;
2021-07-01 04:17:47 +02:00
/* CAMERA EFFECTS */
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " camera_attributes_create " ) , & RenderingServer : : camera_attributes_create ) ;
2021-07-01 04:17:47 +02:00
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " camera_attributes_set_dof_blur_quality " , " quality " , " use_jitter " ) , & RenderingServer : : camera_attributes_set_dof_blur_quality ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_attributes_set_dof_blur_bokeh_shape " , " shape " ) , & RenderingServer : : camera_attributes_set_dof_blur_bokeh_shape ) ;
2021-07-01 04:17:47 +02:00
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " camera_attributes_set_dof_blur " , " camera_attributes " , " far_enable " , " far_distance " , " far_transition " , " near_enable " , " near_distance " , " near_transition " , " amount " ) , & RenderingServer : : camera_attributes_set_dof_blur ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_attributes_set_exposure " , " camera_attributes " , " multiplier " , " normalization " ) , & RenderingServer : : camera_attributes_set_exposure ) ;
ClassDB : : bind_method ( D_METHOD ( " camera_attributes_set_auto_exposure " , " camera_attributes " , " enable " , " min_sensitivity " , " max_sensitivity " , " speed " , " scale " ) , & RenderingServer : : camera_attributes_set_auto_exposure ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( DOF_BOKEH_BOX ) ;
BIND_ENUM_CONSTANT ( DOF_BOKEH_HEXAGON ) ;
BIND_ENUM_CONSTANT ( DOF_BOKEH_CIRCLE ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( DOF_BLUR_QUALITY_VERY_LOW ) ;
BIND_ENUM_CONSTANT ( DOF_BLUR_QUALITY_LOW ) ;
BIND_ENUM_CONSTANT ( DOF_BLUR_QUALITY_MEDIUM ) ;
BIND_ENUM_CONSTANT ( DOF_BLUR_QUALITY_HIGH ) ;
2021-07-01 04:17:47 +02:00
/* SCENARIO */
2017-10-20 00:24:49 +02:00
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " scenario_create " ) , & RenderingServer : : scenario_create ) ;
ClassDB : : bind_method ( D_METHOD ( " scenario_set_environment " , " scenario " , " environment " ) , & RenderingServer : : scenario_set_environment ) ;
ClassDB : : bind_method ( D_METHOD ( " scenario_set_fallback_environment " , " scenario " , " environment " ) , & RenderingServer : : scenario_set_fallback_environment ) ;
2022-08-01 01:20:24 +02:00
ClassDB : : bind_method ( D_METHOD ( " scenario_set_camera_attributes " , " scenario " , " effects " ) , & RenderingServer : : scenario_set_camera_attributes ) ;
2020-04-20 11:48:00 +02:00
2021-07-01 04:17:47 +02:00
/* INSTANCE */
2017-10-20 00:24:49 +02:00
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_create2 " , " base " , " scenario " ) , & RenderingServer : : instance_create2 ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_create " ) , & RenderingServer : : instance_create ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_base " , " instance " , " base " ) , & RenderingServer : : instance_set_base ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_scenario " , " instance " , " scenario " ) , & RenderingServer : : instance_set_scenario ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_layer_mask " , " instance " , " mask " ) , & RenderingServer : : instance_set_layer_mask ) ;
2022-12-13 05:13:16 +01:00
ClassDB : : bind_method ( D_METHOD ( " instance_set_pivot_data " , " instance " , " sorting_offset " , " use_aabb_center " ) , & RenderingServer : : instance_set_pivot_data ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_set_transform " , " instance " , " transform " ) , & RenderingServer : : instance_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_attach_object_instance_id " , " instance " , " id " ) , & RenderingServer : : instance_attach_object_instance_id ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_blend_shape_weight " , " instance " , " shape " , " weight " ) , & RenderingServer : : instance_set_blend_shape_weight ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_surface_override_material " , " instance " , " surface " , " material " ) , & RenderingServer : : instance_set_surface_override_material ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_visible " , " instance " , " visible " ) , & RenderingServer : : instance_set_visible ) ;
2021-07-20 20:17:34 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_transparency " , " instance " , " transparency " ) , & RenderingServer : : instance_geometry_set_transparency ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_set_custom_aabb " , " instance " , " aabb " ) , & RenderingServer : : instance_set_custom_aabb ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_attach_skeleton " , " instance " , " skeleton " ) , & RenderingServer : : instance_attach_skeleton ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_extra_visibility_margin " , " instance " , " margin " ) , & RenderingServer : : instance_set_extra_visibility_margin ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_set_visibility_parent " , " instance " , " parent " ) , & RenderingServer : : instance_set_visibility_parent ) ;
2021-10-03 13:28:55 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_set_ignore_culling " , " instance " , " enabled " ) , & RenderingServer : : instance_set_ignore_culling ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_flag " , " instance " , " flag " , " enabled " ) , & RenderingServer : : instance_geometry_set_flag ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_cast_shadows_setting " , " instance " , " shadow_casting_setting " ) , & RenderingServer : : instance_geometry_set_cast_shadows_setting ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_material_override " , " instance " , " material " ) , & RenderingServer : : instance_geometry_set_material_override ) ;
2021-09-25 20:40:26 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_material_overlay " , " instance " , " material " ) , & RenderingServer : : instance_geometry_set_material_overlay ) ;
2021-07-20 20:17:34 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_visibility_range " , " instance " , " min " , " max " , " min_margin " , " max_margin " , " fade_mode " ) , & RenderingServer : : instance_geometry_set_visibility_range ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_lightmap " , " instance " , " lightmap " , " lightmap_uv_scale " , " lightmap_slice " ) , & RenderingServer : : instance_geometry_set_lightmap ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_lod_bias " , " instance " , " lod_bias " ) , & RenderingServer : : instance_geometry_set_lod_bias ) ;
2022-08-27 11:22:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_set_shader_parameter " , " instance " , " parameter " , " value " ) , & RenderingServer : : instance_geometry_set_shader_parameter ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_get_shader_parameter " , " instance " , " parameter " ) , & RenderingServer : : instance_geometry_get_shader_parameter ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_get_shader_parameter_default_value " , " instance " , " parameter " ) , & RenderingServer : : instance_geometry_get_shader_parameter_default_value ) ;
ClassDB : : bind_method ( D_METHOD ( " instance_geometry_get_shader_parameter_list " , " instance " ) , & RenderingServer : : _instance_geometry_get_shader_parameter_list ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " instances_cull_aabb " , " aabb " , " scenario " ) , & RenderingServer : : _instances_cull_aabb_bind , DEFVAL ( RID ( ) ) ) ;
ClassDB : : bind_method ( D_METHOD ( " instances_cull_ray " , " from " , " to " , " scenario " ) , & RenderingServer : : _instances_cull_ray_bind , DEFVAL ( RID ( ) ) ) ;
ClassDB : : bind_method ( D_METHOD ( " instances_cull_convex " , " convex " , " scenario " ) , & RenderingServer : : _instances_cull_convex_bind , DEFVAL ( RID ( ) ) ) ;
2021-04-20 18:40:24 +02:00
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_NONE ) ;
BIND_ENUM_CONSTANT ( INSTANCE_MESH ) ;
BIND_ENUM_CONSTANT ( INSTANCE_MULTIMESH ) ;
BIND_ENUM_CONSTANT ( INSTANCE_PARTICLES ) ;
2020-10-12 10:57:54 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_PARTICLES_COLLISION ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_LIGHT ) ;
BIND_ENUM_CONSTANT ( INSTANCE_REFLECTION_PROBE ) ;
2020-04-20 11:48:00 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_DECAL ) ;
2021-06-05 00:47:26 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_VOXEL_GI ) ;
2020-05-01 14:34:23 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_LIGHTMAP ) ;
2021-04-20 18:40:24 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_OCCLUDER ) ;
2021-07-01 04:17:47 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_VISIBLITY_NOTIFIER ) ;
2021-10-03 13:28:55 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_FOG_VOLUME ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_MAX ) ;
2021-07-01 04:17:47 +02:00
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_GEOMETRY_MASK ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
BIND_ENUM_CONSTANT ( INSTANCE_FLAG_USE_BAKED_LIGHT ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( INSTANCE_FLAG_USE_DYNAMIC_GI ) ;
2018-07-27 13:58:56 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_FLAG_DRAW_NEXT_FRAME_IF_VISIBLE ) ;
2021-04-20 18:40:24 +02:00
BIND_ENUM_CONSTANT ( INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING ) ;
Added all missing VisualServer bindings
- Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance
- Removed draw and sync, were duplicates of force_* equivalents
- Bumped binders max arguments from 11 to 13
- Wrote some wrappers as not all methods were variant-friendly
2018-01-20 16:18:51 +01:00
BIND_ENUM_CONSTANT ( INSTANCE_FLAG_MAX ) ;
BIND_ENUM_CONSTANT ( SHADOW_CASTING_SETTING_OFF ) ;
BIND_ENUM_CONSTANT ( SHADOW_CASTING_SETTING_ON ) ;
BIND_ENUM_CONSTANT ( SHADOW_CASTING_SETTING_DOUBLE_SIDED ) ;
BIND_ENUM_CONSTANT ( SHADOW_CASTING_SETTING_SHADOWS_ONLY ) ;
2021-07-20 20:17:34 +02:00
BIND_ENUM_CONSTANT ( VISIBILITY_RANGE_FADE_DISABLED ) ;
BIND_ENUM_CONSTANT ( VISIBILITY_RANGE_FADE_SELF ) ;
BIND_ENUM_CONSTANT ( VISIBILITY_RANGE_FADE_DEPENDENCIES ) ;
2021-07-01 04:17:47 +02:00
/* Bake 3D Object */
ClassDB : : bind_method ( D_METHOD ( " bake_render_uv2 " , " base " , " material_overrides " , " image_size " ) , & RenderingServer : : bake_render_uv2 ) ;
BIND_ENUM_CONSTANT ( BAKE_CHANNEL_ALBEDO_ALPHA ) ;
BIND_ENUM_CONSTANT ( BAKE_CHANNEL_NORMAL ) ;
BIND_ENUM_CONSTANT ( BAKE_CHANNEL_ORM ) ;
BIND_ENUM_CONSTANT ( BAKE_CHANNEL_EMISSION ) ;
/* CANVAS (2D) */
ClassDB : : bind_method ( D_METHOD ( " canvas_create " ) , & RenderingServer : : canvas_create ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_set_item_mirroring " , " canvas " , " item " , " mirroring " ) , & RenderingServer : : canvas_set_item_mirroring ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_set_modulate " , " canvas " , " color " ) , & RenderingServer : : canvas_set_modulate ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_set_disable_scale " , " disable " ) , & RenderingServer : : canvas_set_disable_scale ) ;
/* CANVAS TEXTURE */
ClassDB : : bind_method ( D_METHOD ( " canvas_texture_create " ) , & RenderingServer : : canvas_texture_create ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_texture_set_channel " , " canvas_texture " , " channel " , " texture " ) , & RenderingServer : : canvas_texture_set_channel ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_texture_set_shading_parameters " , " canvas_texture " , " base_color " , " shininess " ) , & RenderingServer : : canvas_texture_set_shading_parameters ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_texture_set_texture_filter " , " canvas_texture " , " filter " ) , & RenderingServer : : canvas_texture_set_texture_filter ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_texture_set_texture_repeat " , " canvas_texture " , " repeat " ) , & RenderingServer : : canvas_texture_set_texture_repeat ) ;
BIND_ENUM_CONSTANT ( CANVAS_TEXTURE_CHANNEL_DIFFUSE ) ;
BIND_ENUM_CONSTANT ( CANVAS_TEXTURE_CHANNEL_NORMAL ) ;
BIND_ENUM_CONSTANT ( CANVAS_TEXTURE_CHANNEL_SPECULAR ) ;
/* CANVAS ITEM */
ClassDB : : bind_method ( D_METHOD ( " canvas_item_create " ) , & RenderingServer : : canvas_item_create ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_parent " , " item " , " parent " ) , & RenderingServer : : canvas_item_set_parent ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_default_texture_filter " , " item " , " filter " ) , & RenderingServer : : canvas_item_set_default_texture_filter ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_default_texture_repeat " , " item " , " repeat " ) , & RenderingServer : : canvas_item_set_default_texture_repeat ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_visible " , " item " , " visible " ) , & RenderingServer : : canvas_item_set_visible ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_light_mask " , " item " , " mask " ) , & RenderingServer : : canvas_item_set_light_mask ) ;
2021-09-02 20:07:04 +02:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_visibility_layer " , " item " , " visibility_layer " ) , & RenderingServer : : canvas_item_set_visibility_layer ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_transform " , " item " , " transform " ) , & RenderingServer : : canvas_item_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_clip " , " item " , " clip " ) , & RenderingServer : : canvas_item_set_clip ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_distance_field_mode " , " item " , " enabled " ) , & RenderingServer : : canvas_item_set_distance_field_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_custom_rect " , " item " , " use_custom_rect " , " rect " ) , & RenderingServer : : canvas_item_set_custom_rect , DEFVAL ( Rect2 ( ) ) ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_modulate " , " item " , " color " ) , & RenderingServer : : canvas_item_set_modulate ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_self_modulate " , " item " , " color " ) , & RenderingServer : : canvas_item_set_self_modulate ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_draw_behind_parent " , " item " , " enabled " ) , & RenderingServer : : canvas_item_set_draw_behind_parent ) ;
2021-11-28 01:12:10 +01:00
/* Primitives */
2021-07-01 04:17:47 +02:00
2023-01-14 06:28:55 +01:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_line " , " item " , " from " , " to " , " color " , " width " , " antialiased " ) , & RenderingServer : : canvas_item_add_line , DEFVAL ( - 1.0 ) , DEFVAL ( false ) ) ;
2023-01-19 13:38:15 +01:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_polyline " , " item " , " points " , " colors " , " width " , " antialiased " ) , & RenderingServer : : canvas_item_add_polyline , DEFVAL ( - 1.0 ) , DEFVAL ( false ) ) ;
2023-03-13 22:09:55 +01:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_multiline " , " item " , " points " , " colors " , " width " ) , & RenderingServer : : canvas_item_add_multiline , DEFVAL ( - 1.0 ) ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_rect " , " item " , " rect " , " color " ) , & RenderingServer : : canvas_item_add_rect ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_circle " , " item " , " pos " , " radius " , " color " ) , & RenderingServer : : canvas_item_add_circle ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_texture_rect " , " item " , " rect " , " texture " , " tile " , " modulate " , " transpose " ) , & RenderingServer : : canvas_item_add_texture_rect , DEFVAL ( false ) , DEFVAL ( Color ( 1 , 1 , 1 ) ) , DEFVAL ( false ) ) ;
2022-12-17 21:47:33 +01:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_msdf_texture_rect_region " , " item " , " rect " , " texture " , " src_rect " , " modulate " , " outline_size " , " px_range " , " scale " ) , & RenderingServer : : canvas_item_add_msdf_texture_rect_region , DEFVAL ( Color ( 1 , 1 , 1 ) ) , DEFVAL ( 0 ) , DEFVAL ( 1.0 ) , DEFVAL ( 1.0 ) ) ;
2022-08-12 13:03:28 +02:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_lcd_texture_rect_region " , " item " , " rect " , " texture " , " src_rect " , " modulate " ) , & RenderingServer : : canvas_item_add_lcd_texture_rect_region ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_texture_rect_region " , " item " , " rect " , " texture " , " src_rect " , " modulate " , " transpose " , " clip_uv " ) , & RenderingServer : : canvas_item_add_texture_rect_region , DEFVAL ( Color ( 1 , 1 , 1 ) ) , DEFVAL ( false ) , DEFVAL ( true ) ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_nine_patch " , " item " , " rect " , " source " , " texture " , " topleft " , " bottomright " , " x_axis_mode " , " y_axis_mode " , " draw_center " , " modulate " ) , & RenderingServer : : canvas_item_add_nine_patch , DEFVAL ( NINE_PATCH_STRETCH ) , DEFVAL ( NINE_PATCH_STRETCH ) , DEFVAL ( true ) , DEFVAL ( Color ( 1 , 1 , 1 ) ) ) ;
2023-01-14 06:28:55 +01:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_primitive " , " item " , " points " , " colors " , " uvs " , " texture " ) , & RenderingServer : : canvas_item_add_primitive ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_polygon " , " item " , " points " , " colors " , " uvs " , " texture " ) , & RenderingServer : : canvas_item_add_polygon , DEFVAL ( Vector < Point2 > ( ) ) , DEFVAL ( RID ( ) ) ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_triangle_array " , " item " , " indices " , " points " , " colors " , " uvs " , " bones " , " weights " , " texture " , " count " ) , & RenderingServer : : canvas_item_add_triangle_array , DEFVAL ( Vector < Point2 > ( ) ) , DEFVAL ( Vector < int > ( ) ) , DEFVAL ( Vector < float > ( ) ) , DEFVAL ( RID ( ) ) , DEFVAL ( - 1 ) ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_mesh " , " item " , " mesh " , " transform " , " modulate " , " texture " ) , & RenderingServer : : canvas_item_add_mesh , DEFVAL ( Transform2D ( ) ) , DEFVAL ( Color ( 1 , 1 , 1 ) ) , DEFVAL ( RID ( ) ) ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_multimesh " , " item " , " mesh " , " texture " ) , & RenderingServer : : canvas_item_add_multimesh , DEFVAL ( RID ( ) ) ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_particles " , " item " , " particles " , " texture " ) , & RenderingServer : : canvas_item_add_particles ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_set_transform " , " item " , " transform " ) , & RenderingServer : : canvas_item_add_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_clip_ignore " , " item " , " ignore " ) , & RenderingServer : : canvas_item_add_clip_ignore ) ;
2022-03-13 14:25:20 +01:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_add_animation_slice " , " item " , " animation_length " , " slice_begin " , " slice_end " , " offset " ) , & RenderingServer : : canvas_item_add_animation_slice , DEFVAL ( 0.0 ) ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_sort_children_by_y " , " item " , " enabled " ) , & RenderingServer : : canvas_item_set_sort_children_by_y ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_z_index " , " item " , " z_index " ) , & RenderingServer : : canvas_item_set_z_index ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_z_as_relative_to_parent " , " item " , " enabled " ) , & RenderingServer : : canvas_item_set_z_as_relative_to_parent ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_copy_to_backbuffer " , " item " , " enabled " , " rect " ) , & RenderingServer : : canvas_item_set_copy_to_backbuffer ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_clear " , " item " ) , & RenderingServer : : canvas_item_clear ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_draw_index " , " item " , " index " ) , & RenderingServer : : canvas_item_set_draw_index ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_material " , " item " , " material " ) , & RenderingServer : : canvas_item_set_material ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_use_parent_material " , " item " , " enabled " ) , & RenderingServer : : canvas_item_set_use_parent_material ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_visibility_notifier " , " item " , " enable " , " area " , " enter_callable " , " exit_callable " ) , & RenderingServer : : canvas_item_set_visibility_notifier ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_item_set_canvas_group_mode " , " item " , " mode " , " clear_margin " , " fit_empty " , " fit_margin " , " blur_mipmaps " ) , & RenderingServer : : canvas_item_set_canvas_group_mode , DEFVAL ( 5.0 ) , DEFVAL ( false ) , DEFVAL ( 0.0 ) , DEFVAL ( false ) ) ;
2023-11-04 15:09:33 +01:00
ClassDB : : bind_method ( D_METHOD ( " debug_canvas_item_get_rect " , " item " ) , & RenderingServer : : debug_canvas_item_get_rect ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( NINE_PATCH_STRETCH ) ;
BIND_ENUM_CONSTANT ( NINE_PATCH_TILE ) ;
BIND_ENUM_CONSTANT ( NINE_PATCH_TILE_FIT ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_DEFAULT ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_NEAREST ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_LINEAR ) ;
2020-02-20 00:31:43 +01:00
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS ) ;
2020-02-20 00:31:43 +01:00
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_FILTER_MAX ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_REPEAT_DEFAULT ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_REPEAT_DISABLED ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_REPEAT_ENABLED ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_REPEAT_MIRROR ) ;
BIND_ENUM_CONSTANT ( CANVAS_ITEM_TEXTURE_REPEAT_MAX ) ;
2020-11-04 15:38:26 +01:00
BIND_ENUM_CONSTANT ( CANVAS_GROUP_MODE_DISABLED ) ;
2022-10-12 21:45:47 +02:00
BIND_ENUM_CONSTANT ( CANVAS_GROUP_MODE_CLIP_ONLY ) ;
BIND_ENUM_CONSTANT ( CANVAS_GROUP_MODE_CLIP_AND_DRAW ) ;
2020-11-04 15:38:26 +01:00
BIND_ENUM_CONSTANT ( CANVAS_GROUP_MODE_TRANSPARENT ) ;
2021-07-01 04:17:47 +02:00
/* CANVAS LIGHT */
ClassDB : : bind_method ( D_METHOD ( " canvas_light_create " ) , & RenderingServer : : canvas_light_create ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_attach_to_canvas " , " light " , " canvas " ) , & RenderingServer : : canvas_light_attach_to_canvas ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_enabled " , " light " , " enabled " ) , & RenderingServer : : canvas_light_set_enabled ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_texture_scale " , " light " , " scale " ) , & RenderingServer : : canvas_light_set_texture_scale ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_transform " , " light " , " transform " ) , & RenderingServer : : canvas_light_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_texture " , " light " , " texture " ) , & RenderingServer : : canvas_light_set_texture ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_texture_offset " , " light " , " offset " ) , & RenderingServer : : canvas_light_set_texture_offset ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_color " , " light " , " color " ) , & RenderingServer : : canvas_light_set_color ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_height " , " light " , " height " ) , & RenderingServer : : canvas_light_set_height ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_energy " , " light " , " energy " ) , & RenderingServer : : canvas_light_set_energy ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_z_range " , " light " , " min_z " , " max_z " ) , & RenderingServer : : canvas_light_set_z_range ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_layer_range " , " light " , " min_layer " , " max_layer " ) , & RenderingServer : : canvas_light_set_layer_range ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_item_cull_mask " , " light " , " mask " ) , & RenderingServer : : canvas_light_set_item_cull_mask ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_item_shadow_cull_mask " , " light " , " mask " ) , & RenderingServer : : canvas_light_set_item_shadow_cull_mask ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_mode " , " light " , " mode " ) , & RenderingServer : : canvas_light_set_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_shadow_enabled " , " light " , " enabled " ) , & RenderingServer : : canvas_light_set_shadow_enabled ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_shadow_filter " , " light " , " filter " ) , & RenderingServer : : canvas_light_set_shadow_filter ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_shadow_color " , " light " , " color " ) , & RenderingServer : : canvas_light_set_shadow_color ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_shadow_smooth " , " light " , " smooth " ) , & RenderingServer : : canvas_light_set_shadow_smooth ) ;
2023-02-03 02:22:24 +01:00
ClassDB : : bind_method ( D_METHOD ( " canvas_light_set_blend_mode " , " light " , " mode " ) , & RenderingServer : : canvas_light_set_blend_mode ) ;
2021-07-01 04:17:47 +02:00
2020-11-04 15:38:26 +01:00
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_MODE_POINT ) ;
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_MODE_DIRECTIONAL ) ;
2020-11-03 20:51:53 +01:00
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_BLEND_MODE_ADD ) ;
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_BLEND_MODE_SUB ) ;
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_BLEND_MODE_MIX ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_FILTER_NONE ) ;
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_FILTER_PCF5 ) ;
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_FILTER_PCF13 ) ;
2020-02-12 09:59:06 +01:00
BIND_ENUM_CONSTANT ( CANVAS_LIGHT_FILTER_MAX ) ;
2017-10-20 00:24:49 +02:00
2021-07-01 04:17:47 +02:00
/* CANVAS OCCLUDER */
ClassDB : : bind_method ( D_METHOD ( " canvas_light_occluder_create " ) , & RenderingServer : : canvas_light_occluder_create ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_occluder_attach_to_canvas " , " occluder " , " canvas " ) , & RenderingServer : : canvas_light_occluder_attach_to_canvas ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_occluder_set_enabled " , " occluder " , " enabled " ) , & RenderingServer : : canvas_light_occluder_set_enabled ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_occluder_set_polygon " , " occluder " , " polygon " ) , & RenderingServer : : canvas_light_occluder_set_polygon ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_occluder_set_as_sdf_collision " , " occluder " , " enable " ) , & RenderingServer : : canvas_light_occluder_set_as_sdf_collision ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_occluder_set_transform " , " occluder " , " transform " ) , & RenderingServer : : canvas_light_occluder_set_transform ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_light_occluder_set_light_mask " , " occluder " , " mask " ) , & RenderingServer : : canvas_light_occluder_set_light_mask ) ;
/* CANVAS LIGHT OCCLUDER POLYGON */
ClassDB : : bind_method ( D_METHOD ( " canvas_occluder_polygon_create " ) , & RenderingServer : : canvas_occluder_polygon_create ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_occluder_polygon_set_shape " , " occluder_polygon " , " shape " , " closed " ) , & RenderingServer : : canvas_occluder_polygon_set_shape ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_occluder_polygon_set_cull_mode " , " occluder_polygon " , " mode " ) , & RenderingServer : : canvas_occluder_polygon_set_cull_mode ) ;
ClassDB : : bind_method ( D_METHOD ( " canvas_set_shadow_texture_size " , " size " ) , & RenderingServer : : canvas_set_shadow_texture_size ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( CANVAS_OCCLUDER_POLYGON_CULL_DISABLED ) ;
BIND_ENUM_CONSTANT ( CANVAS_OCCLUDER_POLYGON_CULL_CLOCKWISE ) ;
BIND_ENUM_CONSTANT ( CANVAS_OCCLUDER_POLYGON_CULL_COUNTER_CLOCKWISE ) ;
2022-04-03 18:56:43 +02:00
/* GLOBAL SHADER UNIFORMS */
2021-07-01 04:17:47 +02:00
2022-08-27 11:22:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " global_shader_parameter_add " , " name " , " type " , " default_value " ) , & RenderingServer : : global_shader_parameter_add ) ;
ClassDB : : bind_method ( D_METHOD ( " global_shader_parameter_remove " , " name " ) , & RenderingServer : : global_shader_parameter_remove ) ;
2023-04-25 00:21:32 +02:00
ClassDB : : bind_method ( D_METHOD ( " global_shader_parameter_get_list " ) , & RenderingServer : : _global_shader_parameter_get_list ) ;
2022-08-27 11:22:43 +02:00
ClassDB : : bind_method ( D_METHOD ( " global_shader_parameter_set " , " name " , " value " ) , & RenderingServer : : global_shader_parameter_set ) ;
ClassDB : : bind_method ( D_METHOD ( " global_shader_parameter_set_override " , " name " , " value " ) , & RenderingServer : : global_shader_parameter_set_override ) ;
ClassDB : : bind_method ( D_METHOD ( " global_shader_parameter_get " , " name " ) , & RenderingServer : : global_shader_parameter_get ) ;
ClassDB : : bind_method ( D_METHOD ( " global_shader_parameter_get_type " , " name " ) , & RenderingServer : : global_shader_parameter_get_type ) ;
2021-07-01 04:17:47 +02:00
2020-04-17 04:52:00 +02:00
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_BOOL ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_BVEC2 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_BVEC3 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_BVEC4 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_INT ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_IVEC2 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_IVEC3 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_IVEC4 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_RECT2I ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_UINT ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_UVEC2 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_UVEC3 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_UVEC4 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_FLOAT ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_VEC2 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_VEC3 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_VEC4 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_COLOR ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_RECT2 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_MAT2 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_MAT3 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_MAT4 ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_TRANSFORM_2D ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_TRANSFORM ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_SAMPLER2D ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_SAMPLER2DARRAY ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_SAMPLER3D ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_SAMPLERCUBE ) ;
BIND_ENUM_CONSTANT ( GLOBAL_VAR_TYPE_MAX ) ;
2021-07-01 04:17:47 +02:00
/* Free */
2021-11-28 01:12:10 +01:00
ClassDB : : bind_method ( D_METHOD ( " free_rid " , " rid " ) , & RenderingServer : : free ) ; // Shouldn't conflict with Object::free().
2021-07-01 04:17:47 +02:00
/* Misc */
2021-11-05 06:59:38 +01:00
ClassDB : : bind_method ( D_METHOD ( " request_frame_drawn_callback " , " callable " ) , & RenderingServer : : request_frame_drawn_callback ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " has_changed " ) , & RenderingServer : : has_changed ) ;
2021-07-03 01:14:19 +02:00
ClassDB : : bind_method ( D_METHOD ( " get_rendering_info " , " info " ) , & RenderingServer : : get_rendering_info ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " get_video_adapter_name " ) , & RenderingServer : : get_video_adapter_name ) ;
ClassDB : : bind_method ( D_METHOD ( " get_video_adapter_vendor " ) , & RenderingServer : : get_video_adapter_vendor ) ;
2021-12-10 17:01:51 +01:00
ClassDB : : bind_method ( D_METHOD ( " get_video_adapter_type " ) , & RenderingServer : : get_video_adapter_type ) ;
2021-07-31 15:39:46 +02:00
ClassDB : : bind_method ( D_METHOD ( " get_video_adapter_api_version " ) , & RenderingServer : : get_video_adapter_api_version ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " make_sphere_mesh " , " latitudes " , " longitudes " , " radius " ) , & RenderingServer : : make_sphere_mesh ) ;
ClassDB : : bind_method ( D_METHOD ( " get_test_cube " ) , & RenderingServer : : get_test_cube ) ;
ClassDB : : bind_method ( D_METHOD ( " get_test_texture " ) , & RenderingServer : : get_test_texture ) ;
ClassDB : : bind_method ( D_METHOD ( " get_white_texture " ) , & RenderingServer : : get_white_texture ) ;
2022-01-19 16:09:52 +01:00
ClassDB : : bind_method ( D_METHOD ( " set_boot_image " , " image " , " color " , " scale " , " use_filter " ) , & RenderingServer : : set_boot_image , DEFVAL ( true ) ) ;
2023-01-11 19:14:43 +01:00
ClassDB : : bind_method ( D_METHOD ( " get_default_clear_color " ) , & RenderingServer : : get_default_clear_color ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_default_clear_color " , " color " ) , & RenderingServer : : set_default_clear_color ) ;
ClassDB : : bind_method ( D_METHOD ( " has_feature " , " feature " ) , & RenderingServer : : has_feature ) ;
ClassDB : : bind_method ( D_METHOD ( " has_os_feature " , " feature " ) , & RenderingServer : : has_os_feature ) ;
ClassDB : : bind_method ( D_METHOD ( " set_debug_generate_wireframes " , " generate " ) , & RenderingServer : : set_debug_generate_wireframes ) ;
ClassDB : : bind_method ( D_METHOD ( " is_render_loop_enabled " ) , & RenderingServer : : is_render_loop_enabled ) ;
ClassDB : : bind_method ( D_METHOD ( " set_render_loop_enabled " , " enabled " ) , & RenderingServer : : set_render_loop_enabled ) ;
ClassDB : : bind_method ( D_METHOD ( " get_frame_setup_time_cpu " ) , & RenderingServer : : get_frame_setup_time_cpu ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " render_loop_enabled " ) , " set_render_loop_enabled " , " is_render_loop_enabled " ) ;
2021-07-03 01:14:19 +02:00
BIND_ENUM_CONSTANT ( RENDERING_INFO_TOTAL_OBJECTS_IN_FRAME ) ;
BIND_ENUM_CONSTANT ( RENDERING_INFO_TOTAL_PRIMITIVES_IN_FRAME ) ;
BIND_ENUM_CONSTANT ( RENDERING_INFO_TOTAL_DRAW_CALLS_IN_FRAME ) ;
BIND_ENUM_CONSTANT ( RENDERING_INFO_TEXTURE_MEM_USED ) ;
BIND_ENUM_CONSTANT ( RENDERING_INFO_BUFFER_MEM_USED ) ;
BIND_ENUM_CONSTANT ( RENDERING_INFO_VIDEO_MEM_USED ) ;
2017-10-20 00:24:49 +02:00
BIND_ENUM_CONSTANT ( FEATURE_SHADERS ) ;
BIND_ENUM_CONSTANT ( FEATURE_MULTITHREADED ) ;
2017-11-14 21:25:42 +01:00
2018-07-07 01:21:13 +02:00
ADD_SIGNAL ( MethodInfo ( " frame_pre_draw " ) ) ;
ADD_SIGNAL ( MethodInfo ( " frame_post_draw " ) ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " force_sync " ) , & RenderingServer : : sync ) ;
ClassDB : : bind_method ( D_METHOD ( " force_draw " , " swap_buffers " , " frame_step " ) , & RenderingServer : : draw , DEFVAL ( true ) , DEFVAL ( 0.0 ) ) ;
2021-08-29 04:52:19 +02:00
ClassDB : : bind_method ( D_METHOD ( " get_rendering_device " ) , & RenderingServer : : get_rendering_device ) ;
2021-07-01 04:17:47 +02:00
ClassDB : : bind_method ( D_METHOD ( " create_local_rendering_device " ) , & RenderingServer : : create_local_rendering_device ) ;
2023-07-20 11:49:59 +02:00
ClassDB : : bind_method ( D_METHOD ( " call_on_render_thread " , " callable " ) , & RenderingServer : : call_on_render_thread ) ;
2014-02-10 02:10:30 +01:00
}
2020-05-25 19:20:45 +02:00
void RenderingServer : : mesh_add_surface_from_mesh_data ( RID p_mesh , const Geometry3D : : MeshData & p_mesh_data ) {
2020-02-17 22:06:54 +01:00
Vector < Vector3 > vertices ;
Vector < Vector3 > normals ;
2016-03-09 00:00:52 +01:00
2022-12-29 01:24:45 +01:00
for ( const Geometry3D : : MeshData : : Face & f : p_mesh_data . faces ) {
2022-09-23 12:37:40 +02:00
for ( uint32_t j = 2 ; j < f . indices . size ( ) ; j + + ) {
2021-08-09 19:28:08 +02:00
vertices . push_back ( p_mesh_data . vertices [ f . indices [ 0 ] ] ) ;
normals . push_back ( f . plane . normal ) ;
2016-03-09 00:00:52 +01:00
2021-08-09 19:28:08 +02:00
vertices . push_back ( p_mesh_data . vertices [ f . indices [ j - 1 ] ] ) ;
normals . push_back ( f . plane . normal ) ;
vertices . push_back ( p_mesh_data . vertices [ f . indices [ j ] ] ) ;
normals . push_back ( f . plane . normal ) ;
2016-03-09 00:00:52 +01:00
}
2014-02-10 02:10:30 +01:00
}
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
Array d ;
2020-03-27 19:21:27 +01:00
d . resize ( RS : : ARRAY_MAX ) ;
2014-02-10 02:10:30 +01:00
d [ ARRAY_VERTEX ] = vertices ;
d [ ARRAY_NORMAL ] = normals ;
2016-10-03 21:33:42 +02:00
mesh_add_surface_from_arrays ( p_mesh , PRIMITIVE_TRIANGLES , d ) ;
2014-02-10 02:10:30 +01:00
}
2020-03-27 19:21:27 +01:00
void RenderingServer : : mesh_add_surface_from_planes ( RID p_mesh , const Vector < Plane > & p_planes ) {
2020-05-25 19:20:45 +02:00
Geometry3D : : MeshData mdata = Geometry3D : : build_convex_mesh ( p_planes ) ;
2014-02-10 02:10:30 +01:00
mesh_add_surface_from_mesh_data ( p_mesh , mdata ) ;
}
2020-03-27 19:21:27 +01:00
RID RenderingServer : : instance_create2 ( RID p_base , RID p_scenario ) {
2014-02-10 02:10:30 +01:00
RID instance = instance_create ( ) ;
instance_set_base ( instance , p_base ) ;
instance_set_scenario ( instance , p_scenario ) ;
return instance ;
}
2020-06-14 19:06:48 +02:00
bool RenderingServer : : is_render_loop_enabled ( ) const {
return render_loop_enabled ;
}
void RenderingServer : : set_render_loop_enabled ( bool p_enabled ) {
render_loop_enabled = p_enabled ;
}
2020-03-27 19:21:27 +01:00
RenderingServer : : RenderingServer ( ) {
2017-01-14 12:26:56 +01:00
//ERR_FAIL_COND(singleton);
2021-01-04 21:00:44 +01:00
2014-02-10 02:10:30 +01:00
singleton = this ;
2022-05-28 13:09:23 +02:00
}
2017-12-16 21:09:25 +01:00
2023-04-25 00:21:32 +02:00
TypedArray < StringName > RenderingServer : : _global_shader_parameter_get_list ( ) const {
TypedArray < StringName > gsp ;
Vector < StringName > gsp_sn = global_shader_parameter_get_list ( ) ;
gsp . resize ( gsp_sn . size ( ) ) ;
for ( int i = 0 ; i < gsp_sn . size ( ) ; i + + ) {
gsp [ i ] = gsp_sn [ i ] ;
}
return gsp ;
}
2022-05-28 13:09:23 +02:00
void RenderingServer : : init ( ) {
2023-06-12 18:44:40 +02:00
// These are overrides, even if they are false Godot will still
// import the texture formats that the host platform needs.
// See `const bool can_s3tc_bptc` in the resource importer.
GLOBAL_DEF_RST ( " rendering/textures/vram_compression/import_s3tc_bptc " , false ) ;
2023-05-15 18:04:49 +02:00
GLOBAL_DEF_RST ( " rendering/textures/vram_compression/import_etc2_astc " , false ) ;
2017-07-18 02:05:38 +02:00
2021-04-12 18:56:50 +02:00
GLOBAL_DEF ( " rendering/textures/lossless_compression/force_png " , false ) ;
2022-10-31 14:25:04 +01:00
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/textures/webp_compression/compression_method " , PROPERTY_HINT_RANGE , " 0,6,1 " ) , 2 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/textures/webp_compression/lossless_compression_factor " , PROPERTY_HINT_RANGE , " 0,100,1 " ) , 25 ) ;
2022-10-31 14:25:04 +01:00
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/limits/time/time_rollover_secs " , PROPERTY_HINT_RANGE , " 0,10000,1,or_greater " ) , 3600 ) ;
2020-04-29 22:34:09 +02:00
2022-08-01 01:20:24 +02:00
GLOBAL_DEF_RST ( " rendering/lights_and_shadows/use_physical_light_units " , false ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/lights_and_shadows/directional_shadow/size " , PROPERTY_HINT_RANGE , " 256,16384 " ) , 4096 ) ;
2022-08-01 01:20:24 +02:00
GLOBAL_DEF ( " rendering/lights_and_shadows/directional_shadow/size.mobile " , 2048 ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality " , PROPERTY_HINT_ENUM , " Hard (Fastest),Soft Very Low (Faster),Soft Low (Fast),Soft Medium (Average),Soft High (Slow),Soft Ultra (Slowest) " ) , 2 ) ;
2022-08-01 01:20:24 +02:00
GLOBAL_DEF ( " rendering/lights_and_shadows/directional_shadow/soft_shadow_filter_quality.mobile " , 0 ) ;
GLOBAL_DEF ( " rendering/lights_and_shadows/directional_shadow/16_bits " , true ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality " , PROPERTY_HINT_ENUM , " Hard (Fastest),Soft Very Low (Faster),Soft Low (Fast),Soft Medium (Average),Soft High (Slow),Soft Ultra (Slowest) " ) , 2 ) ;
2022-08-01 01:20:24 +02:00
GLOBAL_DEF ( " rendering/lights_and_shadows/positional_shadow/soft_shadow_filter_quality.mobile " , 0 ) ;
2021-02-17 17:44:49 +01:00
2023-10-22 00:24:03 +02:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/2d/shadow_atlas/size " , PROPERTY_HINT_RANGE , " 128,16384 " ) , 2048 ) ;
2021-02-17 17:44:49 +01:00
2022-06-21 06:56:26 +02:00
// Number of commands that can be drawn per frame.
2023-01-29 05:36:17 +01:00
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/gl_compatibility/item_buffer_size " , PROPERTY_HINT_RANGE , " 128,1048576,1 " ) , 16384 ) ;
2022-06-21 06:56:26 +02:00
2021-05-25 02:25:11 +02:00
GLOBAL_DEF ( " rendering/shader_compiler/shader_cache/enabled " , true ) ;
GLOBAL_DEF ( " rendering/shader_compiler/shader_cache/compress " , true ) ;
GLOBAL_DEF ( " rendering/shader_compiler/shader_cache/use_zstd_compression " , true ) ;
GLOBAL_DEF ( " rendering/shader_compiler/shader_cache/strip_debug " , false ) ;
GLOBAL_DEF ( " rendering/shader_compiler/shader_cache/strip_debug.release " , true ) ;
2022-02-16 09:54:08 +01:00
GLOBAL_DEF_RST ( " rendering/reflections/sky_reflections/roughness_layers " , 8 ) ; // Assumes a 256x256 cubemap
2021-10-03 13:28:55 +02:00
GLOBAL_DEF_RST ( " rendering/reflections/sky_reflections/texture_array_reflections " , true ) ;
2021-02-17 17:44:49 +01:00
GLOBAL_DEF ( " rendering/reflections/sky_reflections/texture_array_reflections.mobile " , false ) ;
2022-02-16 09:54:08 +01:00
GLOBAL_DEF_RST ( " rendering/reflections/sky_reflections/ggx_samples " , 32 ) ;
GLOBAL_DEF ( " rendering/reflections/sky_reflections/ggx_samples.mobile " , 16 ) ;
2021-02-17 17:44:49 +01:00
GLOBAL_DEF ( " rendering/reflections/sky_reflections/fast_filter_high_quality " , false ) ;
GLOBAL_DEF ( " rendering/reflections/reflection_atlas/reflection_size " , 256 ) ;
GLOBAL_DEF ( " rendering/reflections/reflection_atlas/reflection_size.mobile " , 128 ) ;
GLOBAL_DEF ( " rendering/reflections/reflection_atlas/reflection_count " , 64 ) ;
GLOBAL_DEF ( " rendering/global_illumination/gi/use_half_resolution " , false ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/global_illumination/voxel_gi/quality " , PROPERTY_HINT_ENUM , " Low (4 Cones - Fast),High (6 Cones - Slow) " ) , 0 ) ;
2021-02-17 17:44:49 +01:00
GLOBAL_DEF ( " rendering/shading/overrides/force_vertex_shading " , false ) ;
GLOBAL_DEF ( " rendering/shading/overrides/force_vertex_shading.mobile " , true ) ;
GLOBAL_DEF ( " rendering/shading/overrides/force_lambert_over_burley " , false ) ;
GLOBAL_DEF ( " rendering/shading/overrides/force_lambert_over_burley.mobile " , true ) ;
2023-10-15 07:18:13 +02:00
GLOBAL_DEF_RST ( " rendering/driver/depth_prepass/enable " , true ) ;
GLOBAL_DEF_RST ( " rendering/driver/depth_prepass/disable_for_vendors " , " PowerVR,Mali,Adreno,Apple " ) ;
2021-02-17 17:44:49 +01:00
2021-08-12 01:57:33 +02:00
GLOBAL_DEF_RST ( " rendering/textures/default_filters/use_nearest_mipmap_filter " , false ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/textures/default_filters/anisotropic_filtering_level " , PROPERTY_HINT_ENUM , String : : utf8 ( " Disabled (Fastest),2× (Faster),4× (Fast),8× (Average),16× (Slow) " ) ) , 2 ) ;
2021-02-17 17:44:49 +01:00
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/camera/depth_of_field/depth_of_field_bokeh_shape " , PROPERTY_HINT_ENUM , " Box (Fast),Hexagon (Average),Circle (Slowest) " ) , 1 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/camera/depth_of_field/depth_of_field_bokeh_quality " , PROPERTY_HINT_ENUM , " Very Low (Fastest),Low (Fast),Medium (Average),High (Slow) " ) , 1 ) ;
2021-02-17 17:44:49 +01:00
GLOBAL_DEF ( " rendering/camera/depth_of_field/depth_of_field_use_jitter " , false ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/ssao/quality " , PROPERTY_HINT_ENUM , " Very Low (Fast),Low (Fast),Medium (Average),High (Slow),Ultra (Custom) " ) , 2 ) ;
2021-06-19 11:51:51 +02:00
GLOBAL_DEF ( " rendering/environment/ssao/half_size " , true ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/ssao/adaptive_target " , PROPERTY_HINT_RANGE , " 0.0,1.0,0.01 " ) , 0.5 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/ssao/blur_passes " , PROPERTY_HINT_RANGE , " 0,6 " ) , 2 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/ssao/fadeout_from " , PROPERTY_HINT_RANGE , " 0.0,512,0.1,or_greater " ) , 50.0 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/ssao/fadeout_to " , PROPERTY_HINT_RANGE , " 64,65536,0.1,or_greater " ) , 300.0 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/ssil/quality " , PROPERTY_HINT_ENUM , " Very Low (Fast),Low (Fast),Medium (Average),High (Slow),Ultra (Custom) " ) , 2 ) ;
2021-08-03 09:07:32 +02:00
GLOBAL_DEF ( " rendering/environment/ssil/half_size " , true ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/ssil/adaptive_target " , PROPERTY_HINT_RANGE , " 0.0,1.0,0.01 " ) , 0.5 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/ssil/blur_passes " , PROPERTY_HINT_RANGE , " 0,6 " ) , 4 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/ssil/fadeout_from " , PROPERTY_HINT_RANGE , " 0.0,512,0.1,or_greater " ) , 50.0 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/ssil/fadeout_to " , PROPERTY_HINT_RANGE , " 64,65536,0.1,or_greater " ) , 300.0 ) ;
2021-08-03 09:07:32 +02:00
2021-02-17 17:44:49 +01:00
GLOBAL_DEF ( " rendering/anti_aliasing/screen_space_roughness_limiter/enabled " , true ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/anti_aliasing/screen_space_roughness_limiter/amount " , PROPERTY_HINT_RANGE , " 0.01,4.0,0.01 " ) , 0.25 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/anti_aliasing/screen_space_roughness_limiter/limit " , PROPERTY_HINT_RANGE , " 0.01,1.0,0.01 " ) , 0.18 ) ;
2023-09-22 23:38:02 +02:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/scaling_3d/mode " , PROPERTY_HINT_ENUM , " Bilinear (Fastest),FSR 1.0 (Fast),FSR 2.2 (Slow) " ) , 0 ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/scaling_3d/scale " , PROPERTY_HINT_RANGE , " 0.25,2.0,0.01 " ) , 1.0 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/scaling_3d/fsr_sharpness " , PROPERTY_HINT_RANGE , " 0,2,0.1 " ) , 0.2f ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/textures/default_filters/texture_mipmap_bias " , PROPERTY_HINT_RANGE , " -2,2,0.001 " ) , 0.0f ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/textures/decals/filter " , PROPERTY_HINT_ENUM , " Nearest (Fast),Linear (Fast),Nearest Mipmap (Fast),Linear Mipmap (Fast),Nearest Mipmap Anisotropic (Average),Linear Mipmap Anisotropic (Average) " ) , DECAL_FILTER_LINEAR_MIPMAPS ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/textures/light_projectors/filter " , PROPERTY_HINT_ENUM , " Nearest (Fast),Linear (Fast),Nearest Mipmap (Fast),Linear Mipmap (Fast),Nearest Mipmap Anisotropic (Average),Linear Mipmap Anisotropic (Average) " ) , LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS ) ;
2021-07-19 21:41:55 +02:00
2021-04-20 18:40:24 +02:00
GLOBAL_DEF_RST ( " rendering/occlusion_culling/occlusion_rays_per_thread " , 512 ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/glow/upscale_mode " , PROPERTY_HINT_ENUM , " Linear (Fast),Bicubic (Slow) " ) , 1 ) ;
2021-02-17 17:44:49 +01:00
GLOBAL_DEF ( " rendering/environment/glow/upscale_mode.mobile " , 0 ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/screen_space_reflection/roughness_quality " , PROPERTY_HINT_ENUM , " Disabled (Fastest),Low (Fast),Medium (Average),High (Slow) " ) , 1 ) ;
2021-02-17 17:44:49 +01:00
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/subsurface_scattering/subsurface_scattering_quality " , PROPERTY_HINT_ENUM , " Disabled (Fastest),Low (Fast),Medium (Average),High (Slow) " ) , 1 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/subsurface_scattering/subsurface_scattering_scale " , PROPERTY_HINT_RANGE , " 0.001,1,0.001 " ) , 0.05 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/environment/subsurface_scattering/subsurface_scattering_depth_scale " , PROPERTY_HINT_RANGE , " 0.001,1,0.001 " ) , 0.01 ) ;
2021-02-17 17:44:49 +01:00
GLOBAL_DEF ( " rendering/limits/global_shader_variables/buffer_size " , 65536 ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/lightmapping/probe_capture/update_speed " , PROPERTY_HINT_RANGE , " 0.001,256,0.001 " ) , 15 ) ;
2023-09-29 11:15:04 +02:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/lightmapping/primitive_meshes/texel_size " , PROPERTY_HINT_RANGE , " 0.001,100,0.001 " ) , 0.2 ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/global_illumination/sdfgi/probe_ray_count " , PROPERTY_HINT_ENUM , " 8 (Fastest),16,32,64,96,128 (Slowest) " ) , 1 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/global_illumination/sdfgi/frames_to_converge " , PROPERTY_HINT_ENUM , " 5 (Less Latency but Lower Quality),10,15,20,25,30 (More Latency but Higher Quality) " ) , 5 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/global_illumination/sdfgi/frames_to_update_lights " , PROPERTY_HINT_ENUM , " 1 (Slower),2,4,8,16 (Faster) " ) , 2 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/volumetric_fog/volume_size " , PROPERTY_HINT_RANGE , " 16,512,1 " ) , 64 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/volumetric_fog/volume_depth " , PROPERTY_HINT_RANGE , " 16,512,1 " ) , 64 ) ;
GLOBAL_DEF ( PropertyInfo ( Variant : : INT , " rendering/environment/volumetric_fog/use_filter " , PROPERTY_HINT_ENUM , " No (Faster),Yes (Higher Quality) " ) , 1 ) ;
2023-01-20 00:13:31 +01:00
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/limits/spatial_indexer/update_iterations_per_frame " , PROPERTY_HINT_RANGE , " 0,1024,1 " ) , 10 ) ;
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/limits/spatial_indexer/threaded_cull_minimum_instances " , PROPERTY_HINT_RANGE , " 32,65536,1 " ) , 1000 ) ;
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/limits/forward_renderer/threaded_render_minimum_instances " , PROPERTY_HINT_RANGE , " 32,65536,1 " ) , 500 ) ;
2022-11-08 19:53:22 +01:00
GLOBAL_DEF ( PropertyInfo ( Variant : : FLOAT , " rendering/limits/cluster_builder/max_clustered_elements " , PROPERTY_HINT_RANGE , " 32,8192,1 " ) , 512 ) ;
2021-05-07 15:19:04 +02:00
2022-05-10 19:02:44 +02:00
// OpenGL limits
2022-11-08 19:53:22 +01:00
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/limits/opengl/max_renderable_elements " , PROPERTY_HINT_RANGE , " 1024,65536,1 " ) , 65536 ) ;
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/limits/opengl/max_renderable_lights " , PROPERTY_HINT_RANGE , " 2,256,1 " ) , 32 ) ;
GLOBAL_DEF_RST ( PropertyInfo ( Variant : : INT , " rendering/limits/opengl/max_lights_per_object " , PROPERTY_HINT_RANGE , " 2,1024,1 " ) , 8 ) ;
2021-10-26 17:18:39 +02:00
2022-05-10 19:02:44 +02:00
GLOBAL_DEF_RST_BASIC ( " xr/shaders/enabled " , false ) ;
2023-02-19 15:35:05 +01:00
GLOBAL_DEF ( " debug/shader_language/warnings/enable " , true ) ;
GLOBAL_DEF ( " debug/shader_language/warnings/treat_warnings_as_errors " , false ) ;
# ifdef DEBUG_ENABLED
for ( int i = 0 ; i < ( int ) ShaderWarning : : WARNING_MAX ; i + + ) {
GLOBAL_DEF ( " debug/shader_language/warnings/ " + ShaderWarning : : get_name_from_code ( ( ShaderWarning : : Code ) i ) . to_lower ( ) , true ) ;
}
# endif
2014-02-10 02:10:30 +01:00
}
2020-03-27 19:21:27 +01:00
RenderingServer : : ~ RenderingServer ( ) {
2020-04-02 01:20:12 +02:00
singleton = nullptr ;
2014-02-10 02:10:30 +01:00
}