Make some style corrections

Co-Authored-By: Rangi <remy.oukaour+rangi42@gmail.com>
This commit is contained in:
ISSOtm
2022-03-14 21:31:46 +01:00
committed by Eldred Habert
parent e49fb457ea
commit 6ed220b4c1
5 changed files with 39 additions and 43 deletions

View File

@@ -208,10 +208,12 @@ public:
png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType, &interlaceType, nullptr, png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType, &interlaceType, nullptr,
nullptr); nullptr);
if (width % 8 != 0) if (width % 8 != 0) {
fatal("Image width (%" PRIu32 " pixels) is not a multiple of 8!", width); fatal("Image width (%" PRIu32 " pixels) is not a multiple of 8!", width);
if (height % 8 != 0) }
if (height % 8 != 0) {
fatal("Image height (%" PRIu32 " pixels) is not a multiple of 8!", height); fatal("Image height (%" PRIu32 " pixels) is not a multiple of 8!", height);
}
pixels.resize(static_cast<size_t>(width) * static_cast<size_t>(height)); pixels.resize(static_cast<size_t>(width) * static_cast<size_t>(height));
@@ -277,18 +279,20 @@ public:
break; break;
} }
// If we read a tRNS chunk, convert it to alpha if (png_get_valid(png, info, PNG_INFO_tRNS)) {
if (png_get_valid(png, info, PNG_INFO_tRNS)) // If we read a tRNS chunk, convert it to alpha
png_set_tRNS_to_alpha(png); png_set_tRNS_to_alpha(png);
// Otherwise, if we lack an alpha channel, default to full opacity } else if (!(colorType & PNG_COLOR_MASK_ALPHA)) {
else if (!(colorType & PNG_COLOR_MASK_ALPHA)) // Otherwise, if we lack an alpha channel, default to full opacity
png_set_add_alpha(png, 0xFFFF, PNG_FILLER_AFTER); png_set_add_alpha(png, 0xFFFF, PNG_FILLER_AFTER);
}
// Scale 16bpp back to 8 (we don't need all of that precision anyway) // Scale 16bpp back to 8 (we don't need all of that precision anyway)
if (bitDepth == 16) if (bitDepth == 16) {
png_set_scale_16(png); png_set_scale_16(png);
else if (bitDepth < 8) } else if (bitDepth < 8) {
png_set_packing(png); png_set_packing(png);
}
// Set interlace handling (MUST be done before `png_read_update_info`) // Set interlace handling (MUST be done before `png_read_update_info`)
int nbPasses = png_set_interlace_handling(png); int nbPasses = png_set_interlace_handling(png);
@@ -312,7 +316,6 @@ public:
for (png_uint_32 x = 0; x < width; ++x) { for (png_uint_32 x = 0; x < width; ++x) {
Rgba rgba(row[x * 4], row[x * 4 + 1], row[x * 4 + 2], row[x * 4 + 3]); Rgba rgba(row[x * 4], row[x * 4 + 1], row[x * 4 + 2], row[x * 4 + 3]);
colors.registerColor(rgba); colors.registerColor(rgba);
pixel(x, y) = rgba; pixel(x, y) = rgba;
} }
@@ -330,11 +333,10 @@ public:
for (png_uint_32 y = PNG_PASS_START_ROW(pass); y < height; y += yStep) { for (png_uint_32 y = PNG_PASS_START_ROW(pass); y < height; y += yStep) {
png_bytep ptr = row.data(); png_bytep ptr = row.data();
png_read_row(png, ptr, nullptr); png_read_row(png, ptr, nullptr);
for (png_uint_32 x = PNG_PASS_START_COL(pass); x < width; x += xStep) { for (png_uint_32 x = PNG_PASS_START_COL(pass); x < width; x += xStep) {
Rgba rgba(ptr[0], ptr[1], ptr[2], ptr[3]); Rgba rgba(ptr[0], ptr[1], ptr[2], ptr[3]);
colors.registerColor(rgba); colors.registerColor(rgba);
pixel(x, y) = rgba; pixel(x, y) = rgba;
ptr += 4; ptr += 4;
@@ -377,7 +379,6 @@ public:
uint32_t const limit; uint32_t const limit;
uint32_t x, y; uint32_t x, y;
public:
std::pair<uint32_t, uint32_t> coords() const { return {x, y}; } std::pair<uint32_t, uint32_t> coords() const { return {x, y}; }
Tile operator*() const { return {parent._png, x, y}; } Tile operator*() const { return {parent._png, x, y}; }
@@ -388,7 +389,6 @@ public:
minor += 8; minor += 8;
major = 0; major = 0;
} }
return *this; return *this;
} }
@@ -411,7 +411,6 @@ public:
}; };
class RawTiles { class RawTiles {
public:
/** /**
* A tile which only contains indices into the image's global palette * A tile which only contains indices into the image's global palette
*/ */
@@ -565,19 +564,20 @@ public:
// of altering the element's hash, but the tile ID is not part of it. // of altering the element's hash, but the tile ID is not part of it.
mutable uint16_t tileID; mutable uint16_t tileID;
static uint16_t rowBitplanes(Png::TilesVisitor::Tile const & tile, Palette const &palette, uint32_t y) { static uint16_t rowBitplanes(Png::TilesVisitor::Tile const &tile, Palette const &palette,
uint16_t row = 0; uint32_t y) {
for (uint32_t x = 0; x < 8; ++x) { uint16_t row = 0;
row <<= 1; for (uint32_t x = 0; x < 8; ++x) {
uint8_t index = palette.indexOf(tile.pixel(x, y).cgbColor()); row <<= 1;
if (index & 1) { uint8_t index = palette.indexOf(tile.pixel(x, y).cgbColor());
row |= 1; if (index & 1) {
} row |= 1;
if (index & 2) {
row |= 0x100;
}
} }
return row; if (index & 2) {
row |= 0x100;
}
}
return row;
} }
TileData(Png::TilesVisitor::Tile const &tile, Palette const &palette) : _hash(0) { TileData(Png::TilesVisitor::Tile const &tile, Palette const &palette) : _hash(0) {
@@ -856,8 +856,7 @@ void process() {
if (!slot.has_value()) { if (!slot.has_value()) {
continue; continue;
} }
fprintf(stderr, "#%02x%02x%02x%02x%s", slot->red, slot->green, slot->blue, slot->alpha, fprintf(stderr, "#%08x%s", slot->toCSS(), i != colors.size() - 1 ? ", " : "");
i != colors.size() - 1 ? ", " : "");
++i; ++i;
} }
fputs("]\n", stderr); fputs("]\n", stderr);
@@ -888,9 +887,9 @@ void process() {
// Remove any other proto-palettes that we encompass // Remove any other proto-palettes that we encompass
// (Example [(0, 1), (0, 2)], inserting (0, 1, 2)) // (Example [(0, 1), (0, 2)], inserting (0, 1, 2))
/* The following code does its job, except that references to the removed /* The following code does its job, except that references to the removed
proto-palettes are not updated, causing issues. * proto-palettes are not updated, causing issues.
TODO: overlap might not be detrimental to the packing algorithm. * TODO: overlap might not be detrimental to the packing algorithm.
Investigation is necessary, especially if pathological cases are found. * Investigation is necessary, especially if pathological cases are found.
for (size_t i = protoPalettes.size(); --i != n;) { for (size_t i = protoPalettes.size(); --i != n;) {
if (tileColors.compare(protoPalettes[i]) == ProtoPalette::WE_BIGGER) { if (tileColors.compare(protoPalettes[i]) == ProtoPalette::WE_BIGGER) {

View File

@@ -211,14 +211,14 @@ public:
// NOTE: this function must not call `uniqueColors`, or one of its callers will break! // NOTE: this function must not call `uniqueColors`, or one of its callers will break!
double relSize = 0.; double relSize = 0.;
for (uint16_t color : protoPal) { for (uint16_t color : protoPal) {
auto n = std::count_if(begin(), end(), [this, &color](ProtoPalAttrs const &attrs) {
ProtoPalette const &pal = (*_protoPals)[attrs.protoPalIndex];
return std::find(pal.begin(), pal.end(), color) != pal.end();
});
// NOTE: The paper and the associated code disagree on this: the code has // NOTE: The paper and the associated code disagree on this: the code has
// this `1 +`, whereas the paper does not; its lack causes a division by 0 // this `1 +`, whereas the paper does not; its lack causes a division by 0
// if the symbol is not found anywhere, so I'm assuming the paper is wrong. // if the symbol is not found anywhere, so I'm assuming the paper is wrong.
relSize += relSize += 1. / (1 + n);
1. / (1 + std::count_if(begin(), end(), [this, &color](ProtoPalAttrs const &attrs) {
ProtoPalette const &pal = (*_protoPals)[attrs.protoPalIndex];
return std::find(pal.begin(), pal.end(), color) != pal.end();
}));
} }
return relSize; return relSize;
} }

View File

@@ -10,8 +10,6 @@
#include "gfx/convert.hpp" #include "gfx/convert.hpp"
#include "gfx/main.hpp" #include "gfx/main.hpp"
using std::swap;
namespace sorting { namespace sorting {
void indexed(std::vector<Palette> &palettes, int palSize, png_color const *palRGB, void indexed(std::vector<Palette> &palettes, int palSize, png_color const *palRGB,

View File

@@ -22,7 +22,7 @@ bool ProtoPalette::add(uint16_t color) {
while (_colorIndices[i] < color) { while (_colorIndices[i] < color) {
++i; ++i;
if (i == _colorIndices.size()) if (i == _colorIndices.size())
return false; // EOF return false;
} }
// If we found ourselves, great! // If we found ourselves, great!
if (_colorIndices[i] == color) if (_colorIndices[i] == color)
@@ -51,7 +51,7 @@ ProtoPalette::ComparisonResult ProtoPalette::compare(ProtoPalette const &other)
} else if (*ours < *theirs) { } else if (*ours < *theirs) {
++ours; ++ours;
theyBigger = false; theyBigger = false;
} else { } else { // *ours > *theirs
++theirs; ++theirs;
weBigger = false; weBigger = false;
} }

View File

@@ -1,4 +1,3 @@
#include "gfx/rgba.hpp" #include "gfx/rgba.hpp"
#include <assert.h> #include <assert.h>
@@ -19,8 +18,8 @@ static std::array<uint8_t, 256> reverse_curve{
10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, // from 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, // from
12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, // reflowing 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, // reflowing
13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, // these 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, // these
14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // 16 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // sixteen
16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, // 16-iterm 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, // 16-item
17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, // lines, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, // lines,
18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, // which, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, // which,
19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, // in 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, // in