2020-01-03 16:44:53 +01:00
|
|
|
import os
|
|
|
|
|
2019-05-31 18:26:36 +02:00
|
|
|
Import('env')
|
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
module_env = env.Clone()
|
|
|
|
|
2020-04-06 22:47:03 +02:00
|
|
|
has_texture_packer = False
|
|
|
|
if os.path.isdir('../texture_packer'):
|
|
|
|
module_env.Append(CPPDEFINES=['TEXTURE_PACKER_PRESENT'])
|
|
|
|
has_texture_packer = True
|
|
|
|
|
2020-08-04 09:44:18 +02:00
|
|
|
if os.path.isdir('../thread_pool'):
|
|
|
|
module_env.Append(CPPDEFINES=['THREAD_POOL_PRESENT'])
|
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
if os.path.isdir('../mesh_data_resource'):
|
|
|
|
module_env.Append(CPPDEFINES=['MESH_DATA_RESOURCE_PRESENT'])
|
|
|
|
|
2020-04-06 22:47:03 +02:00
|
|
|
if os.path.isdir('../props'):
|
|
|
|
module_env.Append(CPPDEFINES=['PROPS_PRESENT'])
|
|
|
|
|
2020-10-20 16:29:39 +02:00
|
|
|
if os.path.isdir('../mesh_utils'):
|
|
|
|
module_env.Append(CPPDEFINES=['MESH_UTILS_PRESENT'])
|
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
sources = [
|
|
|
|
|
|
|
|
"register_types.cpp",
|
|
|
|
|
2022-02-08 12:36:37 +01:00
|
|
|
"library/voxel_library.cpp",
|
|
|
|
"library/voxel_library_simple.cpp",
|
2020-04-06 22:47:03 +02:00
|
|
|
|
2022-02-08 12:36:37 +01:00
|
|
|
"nodes/voxel_light_node.cpp",
|
2019-05-31 18:26:36 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"library/voxel_surface.cpp",
|
|
|
|
"library/voxel_surface_simple.cpp",
|
2022-02-08 22:47:06 +01:00
|
|
|
"library/voxel_material_cache.cpp",
|
2019-12-03 03:39:53 +01:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"data/voxel_light.cpp",
|
2019-11-09 17:26:16 +01:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"meshers/voxel_mesher.cpp",
|
2019-05-31 22:54:31 +02:00
|
|
|
|
2020-06-12 17:59:04 +02:00
|
|
|
"meshers/marching_cubes/marching_cubes_cell_data.cpp",
|
|
|
|
"meshers/marching_cubes/voxel_mesher_marching_cubes.cpp",
|
|
|
|
"meshers/marching_cubes/marching_cubes_tables.cpp",
|
|
|
|
|
2020-04-05 01:36:41 +02:00
|
|
|
"meshers/blocky/voxel_mesher_blocky.cpp",
|
2020-04-19 23:02:37 +02:00
|
|
|
"meshers/blocky/voxel_mesher_liquid_blocky.cpp",
|
2020-04-06 13:41:45 +02:00
|
|
|
"meshers/default/voxel_mesher_default.cpp",
|
2020-04-05 01:36:41 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"world/voxel_world.cpp",
|
|
|
|
"world/voxel_chunk.cpp",
|
|
|
|
"world/voxel_structure.cpp",
|
2020-03-19 13:08:58 +01:00
|
|
|
"world/block_voxel_structure.cpp",
|
2020-01-03 16:44:53 +01:00
|
|
|
"world/environment_data.cpp",
|
2019-05-31 22:54:31 +02:00
|
|
|
|
2020-04-06 13:41:45 +02:00
|
|
|
"world/blocky/voxel_chunk_blocky.cpp",
|
|
|
|
"world/blocky/voxel_world_blocky.cpp",
|
|
|
|
|
|
|
|
"world/default/voxel_world_default.cpp",
|
|
|
|
"world/default/voxel_chunk_default.cpp",
|
|
|
|
|
2020-06-12 18:36:00 +02:00
|
|
|
"world/marching_cubes/voxel_chunk_marching_cubes.cpp",
|
|
|
|
"world/marching_cubes/voxel_world_marching_cubes.cpp",
|
|
|
|
|
2020-06-12 19:34:47 +02:00
|
|
|
"meshers/cubic/voxel_mesher_cubic.cpp",
|
|
|
|
"meshers/cubic/voxel_cube_points.cpp",
|
2019-05-31 22:54:31 +02:00
|
|
|
|
2022-02-08 12:36:37 +01:00
|
|
|
"level_generator/voxel_level_generator.cpp",
|
|
|
|
"level_generator/voxel_level_generator_flat.cpp",
|
2019-07-19 18:39:46 +02:00
|
|
|
|
2020-06-12 19:34:47 +02:00
|
|
|
"world/cubic/voxel_chunk_cubic.cpp",
|
|
|
|
"world/cubic/voxel_world_cubic.cpp",
|
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"areas/world_area.cpp",
|
2019-09-03 13:52:32 +02:00
|
|
|
|
2020-02-27 14:27:52 +01:00
|
|
|
"world/voxel_world_editor.cpp",
|
2020-03-31 00:57:58 +02:00
|
|
|
|
2020-08-04 09:44:18 +02:00
|
|
|
"thirdparty/lz4/lz4.c",
|
|
|
|
|
2020-10-01 20:18:43 +02:00
|
|
|
"world/jobs/voxel_job.cpp",
|
2022-02-08 12:36:37 +01:00
|
|
|
"world/jobs/voxel_terrain_job.cpp",
|
2022-02-08 22:53:40 +01:00
|
|
|
"world/jobs/voxel_mesher_job_step.cpp",
|
2020-10-01 21:44:59 +02:00
|
|
|
"world/jobs/voxel_light_job.cpp",
|
2020-10-01 23:43:04 +02:00
|
|
|
"world/jobs/voxel_prop_job.cpp",
|
2020-01-03 16:44:53 +01:00
|
|
|
]
|
2019-11-09 14:07:04 +01:00
|
|
|
|
2020-04-06 22:47:03 +02:00
|
|
|
if has_texture_packer:
|
2022-02-08 12:36:37 +01:00
|
|
|
sources.append("library/voxel_library_merger.cpp")
|
2020-04-06 22:47:03 +02:00
|
|
|
sources.append("library/voxel_surface_merger.cpp")
|
2022-02-08 22:47:06 +01:00
|
|
|
sources.append("library/voxel_library_merger_pcm.cpp")
|
|
|
|
sources.append("library/voxel_material_cache_pcm.cpp")
|
2020-04-06 22:47:03 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
if ARGUMENTS.get('custom_modules_shared', 'no') == 'yes':
|
|
|
|
# Shared lib compilation
|
|
|
|
module_env.Append(CCFLAGS=['-fPIC'])
|
|
|
|
module_env['LIBS'] = []
|
|
|
|
shared_lib = module_env.SharedLibrary(target='#bin/voxelman', source=sources)
|
|
|
|
shared_lib_shim = shared_lib[0].name.rsplit('.', 1)[0]
|
|
|
|
env.Append(LIBS=[shared_lib_shim])
|
|
|
|
env.Append(LIBPATH=['#bin'])
|
|
|
|
else:
|
|
|
|
# Static compilation
|
|
|
|
module_env.add_source_files(env.modules_sources, sources)
|
2019-11-10 02:33:02 +01:00
|
|
|
|