armory/blender/make_world.py

302 lines
11 KiB
Python
Raw Normal View History

2016-02-08 14:58:55 +01:00
import bpy
from bpy.types import NodeTree, Node, NodeSocket
from bpy.props import *
import os
import json
2016-06-07 09:38:49 +02:00
import write_probes
2016-07-19 19:42:46 +02:00
import assets
2016-10-27 01:11:11 +02:00
import armutils
2016-10-19 13:28:06 +02:00
import nodes
2017-01-04 00:13:52 +01:00
import log
2016-02-08 14:58:55 +01:00
2016-10-19 13:28:06 +02:00
def build_node_trees(active_worlds):
s = bpy.data.filepath.split(os.path.sep)
s.pop()
fp = os.path.sep.join(s)
os.chdir(fp)
# Make sure Assets dir exists
if not os.path.exists('build/compiled/Assets/materials'):
os.makedirs('build/compiled/Assets/materials')
# Export world nodes
world_outputs = []
for world in active_worlds:
2016-10-19 13:28:06 +02:00
output = build_node_tree(world)
world_outputs.append(output)
return world_outputs
2016-02-08 14:58:55 +01:00
2016-10-19 13:28:06 +02:00
def build_node_tree(world):
output = {}
dat = {}
output['material_datas'] = [dat]
2016-10-27 01:11:11 +02:00
dat['name'] = armutils.safe_filename(world.name) + '_material'
context = {}
dat['contexts'] = [context]
2016-10-17 00:02:51 +02:00
context['name'] = 'world'
context['bind_constants'] = []
context['bind_textures'] = []
bpy.data.worlds['Arm'].world_defs = ''
# Traverse world node tree
2016-10-19 13:28:06 +02:00
output_node = nodes.get_node_by_type(world.node_tree, 'OUTPUT_WORLD')
if output_node != None:
parse_world_output(world, output_node, context)
# Clear to color if no texture or sky is provided
wrd = bpy.data.worlds['Arm']
if '_EnvSky' not in wrd.world_defs and '_EnvTex' not in wrd.world_defs:
2016-11-03 19:07:16 +01:00
if '_EnvImg' not in wrd.world_defs:
wrd.world_defs += '_EnvCol'
# Irradiance json file name
2016-10-02 19:52:40 +02:00
world.world_envtex_name = world.name
world.world_envtex_irr_name = world.name
write_probes.write_color_irradiance(world.name, world.world_envtex_color)
# Clouds enabled
if wrd.generate_clouds:
wrd.world_defs += '_EnvClouds'
# Percentage closer soft shadows
2016-12-01 18:28:07 +01:00
if wrd.generate_pcss_state == 'On':
wrd.world_defs += '_PCSS'
2016-10-27 01:11:11 +02:00
sdk_path = armutils.get_sdk_path()
assets.add(sdk_path + 'armory/Assets/noise64.png')
2016-09-29 22:49:22 +02:00
assets.add_embedded_data('noise64.png')
2017-01-17 14:48:47 +01:00
# Screen-space ray-traced shadows
if wrd.generate_ssrs:
wrd.world_defs += '_SSRS'
2016-10-09 16:06:18 +02:00
# Alternative models
2016-12-02 00:13:09 +01:00
if wrd.diffuse_model == 'Oren Nayar':
wrd.world_defs += '_OrenNayar'
2016-10-09 16:06:18 +02:00
if wrd.voxelgi:
wrd.world_defs += '_VoxelGI'
wrd.world_defs += '_Rad' # Always do radiance for voxels
2017-01-23 20:41:45 +01:00
wrd.world_defs += '_Irr'
2016-10-09 16:06:18 +02:00
# Enable probes
for cam in bpy.data.cameras:
if cam.is_probe:
wrd.world_defs += '_Probes'
2017-01-23 00:48:59 +01:00
if cam.rp_shadowmap == 'None':
wrd.world_defs += '_NoShadows'
2016-11-08 15:14:56 +01:00
# Area lamps
for lamp in bpy.data.lamps:
if lamp.type == 'AREA':
wrd.world_defs += '_PolyLight'
break
# Data will be written after render path has been processed to gather all defines
return output
def write_output(output):
# Add datas to khafile
2016-10-17 00:02:51 +02:00
dir_name = 'world'
# Append world defs
wrd = bpy.data.worlds['Arm']
2017-01-14 12:44:43 +01:00
data_name = 'world' + wrd.world_defs + wrd.rp_defs
# Reference correct shader context
dat = output['material_datas'][0]
dat['shader'] = data_name + '/' + data_name
2016-10-17 00:02:51 +02:00
assets.add_shader2(dir_name, data_name)
# Write material json
path = 'build/compiled/Assets/materials/'
asset_path = path + dat['name'] + '.arm'
2016-10-27 01:11:11 +02:00
armutils.write_arm(asset_path, output)
assets.add(asset_path)
2016-06-30 13:22:05 +02:00
def parse_world_output(world, node, context):
if node.inputs[0].is_linked:
2016-10-19 13:28:06 +02:00
surface_node = nodes.find_node_by_link(world.node_tree, node, node.inputs[0])
parse_surface(world, surface_node, context)
def parse_surface(world, node, context):
# Extract environment strength
if node.type == 'BACKGROUND':
# Strength
envmap_strength_const = {}
envmap_strength_const['name'] = 'envmapStrength'
envmap_strength_const['float'] = node.inputs[1].default_value
# Always append for now, even though envmapStrength is not always needed
context['bind_constants'].append(envmap_strength_const)
if node.inputs[0].is_linked:
2016-10-19 13:28:06 +02:00
color_node = nodes.find_node_by_link(world.node_tree, node, node.inputs[0])
parse_color(world, color_node, context, envmap_strength_const)
# Cache results
world.world_envtex_color = node.inputs[0].default_value
world.world_envtex_strength = envmap_strength_const['float']
def parse_color(world, node, context, envmap_strength_const):
2016-11-05 20:57:04 +01:00
wrd = bpy.data.worlds['Arm']
2017-01-23 20:41:45 +01:00
# Append irradiance define
if wrd.generate_irradiance:
bpy.data.worlds['Arm'].world_defs += '_Irr'
# Env map included
2016-11-24 23:24:55 +01:00
if node.type == 'TEX_ENVIRONMENT' and node.image != None:
2017-01-04 00:13:52 +01:00
image = node.image
filepath = image.filepath
2017-01-07 13:50:55 +01:00
if image.packed_file == None and not os.path.isfile(armutils.safe_assetpath(filepath)):
2017-01-04 00:13:52 +01:00
log.warn(world.name + ' - unable to open ' + image.filepath)
return
tex = {}
context['bind_textures'].append(tex)
tex['name'] = 'envmap'
2016-11-09 15:36:32 +01:00
tex['u_addressing'] = 'clamp'
tex['v_addressing'] = 'clamp'
# Reference image name
2017-01-12 22:20:14 +01:00
tex['file'] = armutils.extract_filename(armutils.safe_assetpath(image.filepath))
tex['file'] = armutils.safe_filename(tex['file'])
base = tex['file'].rsplit('.', 1)
ext = base[1].lower()
if ext == 'hdr':
target_format = 'HDR'
else:
target_format = 'JPEG'
do_convert = ext != 'hdr' and ext != 'jpg'
if do_convert:
if ext == 'exr':
tex['file'] = base[0] + '.hdr'
target_format = 'HDR'
else:
tex['file'] = base[0] + '.jpg'
target_format = 'JPEG'
if image.packed_file != None:
# Extract packed data
unpack_path = armutils.get_fp() + '/build/compiled/Assets/unpacked'
if not os.path.exists(unpack_path):
os.makedirs(unpack_path)
unpack_filepath = unpack_path + '/' + tex['file']
filepath = unpack_filepath
if do_convert:
if not os.path.isfile(unpack_filepath):
armutils.write_image(image, unpack_filepath, file_format=target_format)
elif os.path.isfile(unpack_filepath) == False or os.path.getsize(unpack_filepath) != image.packed_file.size:
with open(unpack_filepath, 'wb') as f:
f.write(image.packed_file.data)
assets.add(unpack_filepath)
else:
if do_convert:
converted_path = armutils.get_fp() + '/build/compiled/Assets/unpacked/' + tex['file']
filepath = converted_path
# TODO: delete cache when file changes
if not os.path.isfile(converted_path):
armutils.write_image(image, converted_path, file_format=target_format)
assets.add(converted_path)
else:
# Link image path to assets
assets.add(armutils.safe_assetpath(image.filepath))
# Generate prefiltered envmaps
world.world_envtex_name = tex['file']
world.world_envtex_irr_name = tex['file'].rsplit('.', 1)[0]
disable_hdr = target_format == 'JPEG'
mip_count = world.world_envtex_num_mips
2017-01-23 20:41:45 +01:00
mip_count = write_probes.write_probes(filepath, disable_hdr, mip_count, generate_radiance=wrd.generate_radiance)
world.world_envtex_num_mips = mip_count
# Append envtex define
bpy.data.worlds['Arm'].world_defs += '_EnvTex'
# Append LDR define
if disable_hdr:
bpy.data.worlds['Arm'].world_defs += '_EnvLDR'
# Append radiance define
2017-01-23 20:41:45 +01:00
if wrd.generate_irradiance and wrd.generate_radiance:
bpy.data.worlds['Arm'].world_defs += '_Rad'
2016-11-03 19:07:16 +01:00
# Static image background
elif node.type == 'TEX_IMAGE':
bpy.data.worlds['Arm'].world_defs += '_EnvImg'
tex = {}
context['bind_textures'].append(tex)
tex['name'] = 'envmap'
2016-11-03 19:07:16 +01:00
# No repeat for now
tex['u_addressing'] = 'clamp'
tex['v_addressing'] = 'clamp'
2016-11-03 19:07:16 +01:00
image = node.image
filepath = image.filepath
if image.packed_file != None:
# Extract packed data
filepath = '/build/compiled/Assets/unpacked'
unpack_path = armutils.get_fp() + filepath
if not os.path.exists(unpack_path):
os.makedirs(unpack_path)
unpack_filepath = unpack_path + '/' + image.name
if os.path.isfile(unpack_filepath) == False or os.path.getsize(unpack_filepath) != image.packed_file.size:
with open(unpack_filepath, 'wb') as f:
f.write(image.packed_file.data)
assets.add(unpack_filepath)
else:
# Link image path to assets
assets.add(armutils.safe_assetpath(image.filepath))
# Reference image name
tex['file'] = armutils.extract_filename(image.filepath)
tex['file'] = armutils.safe_filename(tex['file'])
2016-11-03 19:07:16 +01:00
# Append sky define
elif node.type == 'TEX_SKY':
2016-12-21 00:51:04 +01:00
# Match to cycles
envmap_strength_const['float'] *= 0.1
2016-10-12 17:52:27 +02:00
bpy.data.worlds['Arm'].world_defs += '_EnvSky'
# Append sky properties to material
const = {}
const['name'] = 'sunDirection'
sun_direction = [node.sun_direction[0], node.sun_direction[1], node.sun_direction[2]]
sun_direction[1] *= -1 # Fix Y orientation
const['vec3'] = list(sun_direction)
context['bind_constants'].append(const)
world.world_envtex_sun_direction = sun_direction
world.world_envtex_turbidity = node.turbidity
world.world_envtex_ground_albedo = node.ground_albedo
# Irradiance json file name
2016-10-02 19:52:40 +02:00
world.world_envtex_irr_name = world.name
write_probes.write_sky_irradiance(world.name)
# Radiance
2017-01-23 20:41:45 +01:00
if wrd.generate_radiance_sky and wrd.generate_radiance and wrd.generate_irradiance:
bpy.data.worlds['Arm'].world_defs += '_Rad'
2016-11-05 20:57:04 +01:00
if wrd.generate_radiance_sky_type == 'Hosek':
hosek_path = 'armory/Assets/hosek/'
else:
hosek_path = 'armory/Assets/hosek_fake/'
2016-10-27 01:11:11 +02:00
sdk_path = armutils.get_sdk_path()
2016-10-12 17:52:27 +02:00
# Use fake maps for now
2016-11-05 20:57:04 +01:00
assets.add(sdk_path + hosek_path + 'hosek_radiance.hdr')
for i in range(0, 8):
2016-11-05 20:57:04 +01:00
assets.add(sdk_path + hosek_path + 'hosek_radiance_' + str(i) + '.hdr')
2016-10-02 19:52:40 +02:00
world.world_envtex_name = 'hosek'
world.world_envtex_num_mips = 8