mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
80 lines
2.4 KiB
GDScript3
80 lines
2.4 KiB
GDScript3
|
extends VoxelMesherCubic
|
||
|
class_name GDCubicVoxelMesher
|
||
|
|
||
|
# Copyright Péter Magyar relintai@gmail.com
|
||
|
# MIT License, might be merged into the Voxelman engine module
|
||
|
|
||
|
var count : int = 0
|
||
|
|
||
|
func _add_chunk(buffer : VoxelChunk) -> void:
|
||
|
buffer.generate_ao();
|
||
|
|
||
|
var x_size : int = buffer.get_size_x() - 1
|
||
|
var y_size : int = buffer.get_size_y() - 1
|
||
|
var z_size : int = buffer.get_size_z() - 1
|
||
|
|
||
|
var voxel_size : float = lod_size
|
||
|
|
||
|
var cube_points : VoxelCubePoints = VoxelCubePoints.new()
|
||
|
|
||
|
var tile_uv_size : float = 1/4.0
|
||
|
var base_light : Color = Color(0.4, 0.4, 0.4)
|
||
|
|
||
|
for y in range(lod_size, y_size - lod_size, lod_size):
|
||
|
for z in range(lod_size, z_size - lod_size, lod_size):
|
||
|
for x in range(lod_size, x_size - lod_size, lod_size):
|
||
|
|
||
|
cube_points.setup(buffer, x, y, z, lod_size)
|
||
|
|
||
|
if not cube_points.has_points():
|
||
|
continue
|
||
|
|
||
|
for face in range(VoxelCubePoints.VOXEL_FACE_COUNT):
|
||
|
if not cube_points.is_face_visible(face):
|
||
|
continue
|
||
|
|
||
|
add_indices(get_vertex_count() + 2)
|
||
|
add_indices(get_vertex_count() + 1)
|
||
|
add_indices(get_vertex_count() + 0)
|
||
|
add_indices(get_vertex_count() + 3)
|
||
|
add_indices(get_vertex_count() + 2)
|
||
|
add_indices(get_vertex_count() + 0)
|
||
|
|
||
|
var vertices : Array = [
|
||
|
cube_points.get_point_for_face(face, 0),
|
||
|
cube_points.get_point_for_face(face, 1),
|
||
|
cube_points.get_point_for_face(face, 2),
|
||
|
cube_points.get_point_for_face(face, 3)
|
||
|
]
|
||
|
|
||
|
var normals : Array = [
|
||
|
(vertices[3] - vertices[0]).cross(vertices[1] - vertices[0]),
|
||
|
(vertices[0] - vertices[1]).cross(vertices[2] - vertices[1]),
|
||
|
(vertices[1] - vertices[2]).cross(vertices[3] - vertices[2]),
|
||
|
(vertices[2] - vertices[3]).cross(vertices[0] - vertices[3])
|
||
|
]
|
||
|
|
||
|
var face_light_direction : Vector3 = cube_points.get_face_light_direction(face)
|
||
|
|
||
|
for i in range(4):
|
||
|
|
||
|
var light : Color = cube_points.get_face_point_light_color(face, i)
|
||
|
light += base_light
|
||
|
|
||
|
var NdotL : float = clamp(normals[i].dot(face_light_direction), 0, 1.0)
|
||
|
|
||
|
light *= NdotL
|
||
|
|
||
|
light -= cube_points.get_face_point_ao_color(face, i) * ao_strength
|
||
|
add_color(light)
|
||
|
|
||
|
light.r = clamp(light.r, 0, 1.0)
|
||
|
light.g = clamp(light.g, 0, 1.0)
|
||
|
light.b = clamp(light.b, 0, 1.0)
|
||
|
|
||
|
add_uv((cube_points.get_point_uv_direction(face, i) + Vector2(0.5, 0.5)) * Vector2(tile_uv_size, tile_uv_size))
|
||
|
|
||
|
add_vertex((vertices[i] * voxel_size + Vector3(x, y, z)) * voxel_scale)
|
||
|
|
||
|
|