2017-05-29 00:46:48 +00:00
|
|
|
/*************************************************************************/
|
2017-09-01 14:07:55 +00:00
|
|
|
/* image_loader_hdr.cpp */
|
2017-05-29 00:46:48 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2017-05-29 00:46:48 +00:00
|
|
|
/*************************************************************************/
|
2020-01-01 10:16:22 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2017-05-29 00:46:48 +00:00
|
|
|
/* */
|
|
|
|
/* 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-04 23:50:27 +00:00
|
|
|
|
2017-05-29 00:46:48 +00:00
|
|
|
#include "image_loader_hdr.h"
|
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/os.h"
|
|
|
|
#include "core/print_string.h"
|
2017-05-29 00:46:48 +00:00
|
|
|
|
2017-08-19 02:21:24 +00:00
|
|
|
Error ImageLoaderHDR::load_image(Ref<Image> p_image, FileAccess *f, bool p_force_linear, float p_scale) {
|
2017-05-29 00:46:48 +00:00
|
|
|
|
|
|
|
String header = f->get_token();
|
|
|
|
|
2019-08-17 11:04:33 +00:00
|
|
|
ERR_FAIL_COND_V_MSG(header != "#?RADIANCE" && header != "#?RGBE", ERR_FILE_UNRECOGNIZED, "Unsupported header information in HDR: " + header + ".");
|
2017-05-30 01:11:33 +00:00
|
|
|
|
|
|
|
while (true) {
|
2018-03-11 18:21:09 +00:00
|
|
|
String line = f->get_line();
|
2017-05-30 01:11:33 +00:00
|
|
|
ERR_FAIL_COND_V(f->eof_reached(), ERR_FILE_UNRECOGNIZED);
|
2018-03-11 18:21:09 +00:00
|
|
|
if (line == "") // empty line indicates end of header
|
2017-05-30 01:11:33 +00:00
|
|
|
break;
|
2018-03-11 18:21:09 +00:00
|
|
|
if (line.begins_with("FORMAT=")) { // leave option to implement other commands
|
2019-08-17 11:04:33 +00:00
|
|
|
ERR_FAIL_COND_V_MSG(line != "FORMAT=32-bit_rle_rgbe", ERR_FILE_UNRECOGNIZED, "Only 32-bit_rle_rgbe is supported for HDR files.");
|
2018-03-11 18:21:09 +00:00
|
|
|
} else if (!line.begins_with("#")) { // not comment
|
2019-11-07 08:44:15 +00:00
|
|
|
WARN_PRINT("Ignoring unsupported header information in HDR: " + line + ".");
|
2018-03-11 18:21:09 +00:00
|
|
|
}
|
2017-05-30 01:11:33 +00:00
|
|
|
}
|
2017-05-29 00:46:48 +00:00
|
|
|
|
|
|
|
String token = f->get_token();
|
|
|
|
|
|
|
|
ERR_FAIL_COND_V(token != "-Y", ERR_FILE_CORRUPT);
|
|
|
|
|
|
|
|
int height = f->get_token().to_int();
|
|
|
|
|
|
|
|
token = f->get_token();
|
|
|
|
|
|
|
|
ERR_FAIL_COND_V(token != "+X", ERR_FILE_CORRUPT);
|
|
|
|
|
|
|
|
int width = f->get_line().to_int();
|
|
|
|
|
|
|
|
PoolVector<uint8_t> imgdata;
|
|
|
|
|
|
|
|
imgdata.resize(height * width * sizeof(uint32_t));
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
PoolVector<uint8_t>::Write w = imgdata.write();
|
|
|
|
|
|
|
|
uint8_t *ptr = (uint8_t *)w.ptr();
|
|
|
|
|
|
|
|
if (width < 8 || width >= 32768) {
|
|
|
|
// Read flat data
|
|
|
|
|
|
|
|
f->get_buffer(ptr, width * height * 4);
|
|
|
|
} else {
|
|
|
|
// Read RLE-encoded data
|
|
|
|
|
|
|
|
for (int j = 0; j < height; ++j) {
|
|
|
|
int c1 = f->get_8();
|
|
|
|
int c2 = f->get_8();
|
|
|
|
int len = f->get_8();
|
|
|
|
if (c1 != 2 || c2 != 2 || (len & 0x80)) {
|
|
|
|
// not run-length encoded, so we have to actually use THIS data as a decoded
|
|
|
|
// pixel (note this can't be a valid pixel--one of RGB must be >= 128)
|
|
|
|
|
|
|
|
ptr[(j * width) * 4 + 0] = uint8_t(c1);
|
|
|
|
ptr[(j * width) * 4 + 1] = uint8_t(c2);
|
|
|
|
ptr[(j * width) * 4 + 2] = uint8_t(len);
|
|
|
|
ptr[(j * width) * 4 + 3] = f->get_8();
|
|
|
|
|
|
|
|
f->get_buffer(&ptr[(j * width + 1) * 4], (width - 1) * 4);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
len <<= 8;
|
|
|
|
len |= f->get_8();
|
|
|
|
|
2019-08-11 08:49:53 +00:00
|
|
|
ERR_FAIL_COND_V_MSG(len != width, ERR_FILE_CORRUPT, "Invalid decoded scanline length, corrupt HDR.");
|
2017-05-29 00:46:48 +00:00
|
|
|
|
|
|
|
for (int k = 0; k < 4; ++k) {
|
|
|
|
int i = 0;
|
|
|
|
while (i < width) {
|
|
|
|
int count = f->get_8();
|
|
|
|
if (count > 128) {
|
|
|
|
// Run
|
|
|
|
int value = f->get_8();
|
|
|
|
count -= 128;
|
|
|
|
for (int z = 0; z < count; ++z)
|
|
|
|
ptr[(j * width + i++) * 4 + k] = uint8_t(value);
|
|
|
|
} else {
|
|
|
|
// Dump
|
|
|
|
for (int z = 0; z < count; ++z)
|
|
|
|
ptr[(j * width + i++) * 4 + k] = f->get_8();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//convert
|
|
|
|
for (int i = 0; i < width * height; i++) {
|
|
|
|
|
2017-05-29 19:26:57 +00:00
|
|
|
float exp = pow(2.0f, ptr[3] - 128.0f);
|
2017-05-29 00:46:48 +00:00
|
|
|
|
|
|
|
Color c(
|
|
|
|
ptr[0] * exp / 255.0,
|
|
|
|
ptr[1] * exp / 255.0,
|
|
|
|
ptr[2] * exp / 255.0);
|
|
|
|
|
2017-05-30 01:11:33 +00:00
|
|
|
if (p_force_linear) {
|
|
|
|
c = c.to_linear();
|
|
|
|
}
|
|
|
|
|
2017-05-29 00:46:48 +00:00
|
|
|
*(uint32_t *)ptr = c.to_rgbe9995();
|
|
|
|
ptr += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p_image->create(width, height, false, Image::FORMAT_RGBE9995, imgdata);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageLoaderHDR::get_recognized_extensions(List<String> *p_extensions) const {
|
|
|
|
|
|
|
|
p_extensions->push_back("hdr");
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageLoaderHDR::ImageLoaderHDR() {
|
|
|
|
}
|