1
0
Fork 0
hvif-light/src/hvif-cairo.c

275 lines
8.9 KiB
C
Raw Normal View History

#include "hvif-light.h"
#include <assert.h>
#include <cairo.h>
#include <math.h>
#include <stdint.h>
#include <stdlib.h>
#define INTERNAL_DATASTRUCTURES
#include "hvif-light.c"
#undef INTERNAL_DATASTRUCTURES
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
/* TODO:
* 1. Draw the path in each shape as outline
* 2. Then do the same for the styles
* 3. Put everything together
*/
/* TODO: Gradients
* - Check the various forms
* - How is the gradient oriented in the picture
* - Apply transformation matrix
* - Color space
*/
void
cairo_matrix_init_from_matrix(
cairo_matrix_t* matrix, const hvif_matrix* hvif_matrix)
{
cairo_matrix_init(
matrix, hvif_matrix->xx, hvif_matrix->yx, hvif_matrix->xy, hvif_matrix->yy,
hvif_matrix->x0, hvif_matrix->y0);
}
void
create_path(cairo_t* cr, hvif_path* path)
{
assert(path->num_points > 0);
for (unsigned i = 0; i < path->num_points; ++i) {
hvif_point p = path->points[3 * i];
hvif_point cp1 = path->points[3 * i + 1];
hvif_point cp2 = path->points[3 * i + 2];
uint8_t command = path_command_at(path, i);
if (command == PATH_COMMAND_CURVE)
cairo_curve_to(cr, cp1.x, cp1.y, cp2.x, cp2.y, p.x, p.y);
else
cairo_line_to(cr, p.x, p.y);
}
if (path->closed) cairo_close_path(cr);
}
#define R(c) (COLOR_GET_RED(c) / 255.0)
#define G(c) (COLOR_GET_GREEN(c) / 255.0)
#define B(c) (COLOR_GET_BLUE(c) / 255.0)
#define A(c) (COLOR_GET_ALPHA(c) / 255.0)
void
create_diamond_patch(
cairo_pattern_t* pat, double s1, double s2, hvif_color c1, hvif_color c2)
{
cairo_mesh_pattern_begin_patch(pat);
cairo_mesh_pattern_move_to(pat, s1, s1);
cairo_mesh_pattern_line_to(pat, s2, s2);
cairo_mesh_pattern_line_to(pat, s2, -s2);
cairo_mesh_pattern_line_to(pat, s1, -s1);
cairo_mesh_pattern_set_corner_color_rgba(pat, 0, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_set_corner_color_rgba(pat, 1, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 2, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 3, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_end_patch(pat);
cairo_mesh_pattern_begin_patch(pat);
cairo_mesh_pattern_move_to(pat, s1, -s1);
cairo_mesh_pattern_line_to(pat, s2, -s2);
cairo_mesh_pattern_line_to(pat, -s2, -s2);
cairo_mesh_pattern_line_to(pat, -s1, -s1);
cairo_mesh_pattern_set_corner_color_rgba(pat, 0, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_set_corner_color_rgba(pat, 1, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 2, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 3, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_end_patch(pat);
cairo_mesh_pattern_begin_patch(pat);
cairo_mesh_pattern_move_to(pat, -s1, -s1);
cairo_mesh_pattern_line_to(pat, -s2, -s2);
cairo_mesh_pattern_line_to(pat, -s2, s2);
cairo_mesh_pattern_line_to(pat, -s1, s1);
cairo_mesh_pattern_set_corner_color_rgba(pat, 0, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_set_corner_color_rgba(pat, 1, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 2, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 3, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_end_patch(pat);
cairo_mesh_pattern_begin_patch(pat);
cairo_mesh_pattern_move_to(pat, -s1, s1);
cairo_mesh_pattern_line_to(pat, -s2, s2);
cairo_mesh_pattern_line_to(pat, s2, s2);
cairo_mesh_pattern_line_to(pat, s1, s1);
cairo_mesh_pattern_set_corner_color_rgba(pat, 0, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_set_corner_color_rgba(pat, 1, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 2, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 3, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_end_patch(pat);
}
void
create_conic_patch(
cairo_pattern_t* pat, double r, double angle1, double angle2, hvif_color c1,
hvif_color c2)
{
double sin1 = r * sin(angle1);
double cos1 = r * cos(angle1);
double sin2 = r * sin(angle2);
double cos2 = r * cos(angle2);
double h = 4.0 / 3.0 * tan((angle2 - angle1) / 4.0);
cairo_mesh_pattern_begin_patch(pat);
cairo_mesh_pattern_move_to(pat, 0, 0);
cairo_mesh_pattern_line_to(pat, cos1, sin1);
cairo_mesh_pattern_curve_to(
pat, cos1 - h * sin1, sin1 + h * cos1, cos2 + h * sin2, sin2 - h * cos2,
cos2, sin2);
cairo_mesh_pattern_line_to(pat, 0, 0);
cairo_mesh_pattern_set_corner_color_rgba(pat, 0, R(c1), G(c1), B(c1), A(c1));
//cairo_mesh_pattern_set_corner_color_rgb(pat, 0, 0, 0, 0);
cairo_mesh_pattern_set_corner_color_rgba(pat, 1, R(c1), G(c1), B(c1), A(c1));
cairo_mesh_pattern_set_corner_color_rgba(pat, 2, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_set_corner_color_rgba(pat, 3, R(c2), G(c2), B(c2), A(c2));
cairo_mesh_pattern_end_patch(pat);
}
void
create_style(cairo_t* cr, hvif_style* style)
{
assert(style->num_stops > 0);
cairo_pattern_t* pat;
double width = 64.0;
double height = 64.0;
cairo_matrix_t transformation;
cairo_matrix_init_from_matrix(&transformation, &style->transformation);
cairo_matrix_transform_point(&transformation, &width, &height);
double extremum = width > height ? width : height;
switch (style->gradient_type) {
case GRADIENT_LINEAR:
printf("GRADIENT_LINEAR\n");
pat = cairo_pattern_create_linear(-64, 32, 64, 32);
for (unsigned i = 0; i < style->num_stops; ++i) {
hvif_color c = style->colors[i];
cairo_pattern_add_color_stop_rgba(
pat, style->offsets[i], R(c), G(c), B(c), A(c));
}
break;
case GRADIENT_CIRCULAR:
printf("GRADIENT_CIRCULAR\n");
pat = cairo_pattern_create_radial(0, 0, 0, 0, 0, 64);
for (unsigned i = 0; i < style->num_stops; ++i) {
hvif_color c = style->colors[i];
cairo_pattern_add_color_stop_rgba(
pat, style->offsets[i], R(c), G(c), B(c), A(c));
}
break;
case GRADIENT_DIAMOND:
printf("GRADIENT_DIAMOND\n");
pat = cairo_pattern_create_mesh();
if (style->offsets[0] != 0.0) {
create_diamond_patch(
pat, 0, 64.0 * style->offsets[0], style->colors[0], style->colors[0]);
}
for (unsigned i = 0; i + 1 < style->num_stops; ++i) {
double s1 = style->offsets[i] * 64.0;
double s2 = style->offsets[i + 1] * 64.0;
hvif_color c1 = style->colors[i];
hvif_color c2 = style->colors[i + 1];
create_diamond_patch(pat, s1, s2, c1, c2);
}
unsigned i = style->num_stops - 1;
create_diamond_patch(
pat, 64.0 * style->offsets[i], extremum, style->colors[i],
style->colors[i]);
break;
case GRADIENT_CONIC:
printf("GRADIENT_CONIC\n");
pat = cairo_pattern_create_mesh();
if (style->offsets[0] != 0.0) {
create_conic_patch(
pat, extremum, 0, M_PI * style->offsets[0], style->colors[0],
style->colors[0]);
create_conic_patch(
pat, extremum, 0, -M_PI * style->offsets[0], style->colors[0],
style->colors[0]);
}
for (unsigned i = 0; i + 1 < style->num_stops; ++i) {
create_conic_patch(
pat, extremum, M_PI * style->offsets[i], M_PI * style->offsets[i + 1],
style->colors[i], style->colors[i + 1]);
create_conic_patch(
pat, extremum, -M_PI * style->offsets[i],
-M_PI * style->offsets[i + 1], style->colors[i],
style->colors[i + 1]);
}
i = style->num_stops - 1;
if (style->offsets[i] != 1.0) {
create_conic_patch(
pat, extremum, M_PI * style->offsets[i], 0, style->colors[i],
style->colors[i]);
create_conic_patch(
pat, extremum, -M_PI * style->offsets[i], 0, style->colors[i],
style->colors[i]);
}
break;
case GRADIENT_XY: printf("GRADIENT_XY not supported\n"); exit(1);
case GRADIENT_SQRT_XY: printf("GRADIENT_SQRT_XY not supported\n"); exit(1);
default: printf("unsupported gradient type\n"); exit(1);
}
if (cairo_matrix_invert(&transformation) != CAIRO_STATUS_SUCCESS) {
printf("could not invert style transformation\n");
exit(1);
}
cairo_pattern_set_matrix(pat, &transformation);
cairo_rectangle(cr, 0, 0, 64, 64);
cairo_set_source(cr, pat);
cairo_fill(cr);
cairo_pattern_destroy(pat);
}
bool
hvif_render_image(const char* filename, hvif_image* image)
{
cairo_surface_t* surface =
/* cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 254, 254); */
cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 64, 64);
cairo_t* cr = cairo_create(surface);
/* cairo_scale(cr, 4.0, 4.0); */
cairo_scale(cr, 1.0, 1.0);
cairo_set_line_width(cr, 0.2);
double r = 0;
double delta = 1.0 / image->num_shapes;
printf("styles %u\n", image->num_styles);
create_style(cr, &image->styles[0]);
/*
for (unsigned i = 0; i < image->num_shapes; ++i) {
cairo_set_source_rgb(cr, r, 0, 0);
r = r + delta;
hvif_shape s = image->shapes[i];
if (s.hinting)
printf("shape %u has hinting\n", i);
else
printf("shape %u has no hinting\n", i);
for (unsigned j = 0; j < s.num_paths; ++j) {
hvif_path* p = &image->paths[s.path_idxs[j]];
create_path(cr, p);
cairo_stroke(cr);
}
}
*/
cairo_destroy(cr);
bool result = true;
if (cairo_surface_write_to_png(surface, filename) != CAIRO_STATUS_SUCCESS)
result = false;
cairo_surface_destroy(surface);
return result;
}