metaforce/DataSpec/Blender/BlenderSupport.cpp

23 lines
685 B
C++
Raw Normal View History

2017-12-29 08:08:12 +00:00
#include <cstdint>
#include "hecl/Blender/Connection.hpp"
#include "BlenderSupport.hpp"
extern "C" uint8_t RETRO_MASTER_SHADER[];
extern "C" size_t RETRO_MASTER_SHADER_SZ;
2018-12-08 05:30:43 +00:00
namespace DataSpec::Blender {
2018-12-08 05:30:43 +00:00
bool BuildMasterShader(const hecl::ProjectPath& path) {
hecl::blender::Connection& conn = hecl::blender::Connection::SharedConnection();
if (!conn.createBlend(path, hecl::blender::BlendType::None))
return false;
{
hecl::blender::PyOutStream os = conn.beginPythonOut(true);
2019-10-01 07:38:03 +00:00
os << std::string_view((char*)RETRO_MASTER_SHADER, RETRO_MASTER_SHADER_SZ);
os << "make_master_shader_library()\n"sv;
2018-12-08 05:30:43 +00:00
}
return conn.saveBlend();
}
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::Blender