148 lines
5.6 KiB
C
148 lines
5.6 KiB
C
static inline
|
|
float texed_map_value(float v, float min, float max);
|
|
|
|
void texed_process_ops(void) {
|
|
for (int i = 0; i < zpl_array_count(ctx.ops); i += 1) {
|
|
td_op *op = &ctx.ops[i];
|
|
if (op->is_hidden) continue;
|
|
zpl_printf("processing op: %s ... \n", op->name);
|
|
|
|
switch (op->kind) {
|
|
case TOP_NEW_IMAGE: {
|
|
UnloadImage(ctx.img);
|
|
ctx.img = GenImageColor(op->params[0].i32, op->params[1].i32, op->params[2].color);
|
|
}break;
|
|
case TOP_DRAW_RECT: {
|
|
ImageDrawRectangle(&ctx.img,
|
|
op->params[0].i32,
|
|
op->params[1].i32,
|
|
op->params[2].i32,
|
|
op->params[3].i32,
|
|
op->params[4].color);
|
|
}break;
|
|
case TOP_DRAW_LINE: {
|
|
ImageDrawLine(&ctx.img,
|
|
op->params[0].i32,
|
|
op->params[1].i32,
|
|
op->params[2].i32,
|
|
op->params[3].i32,
|
|
op->params[4].color);
|
|
}break;
|
|
case TOP_DITHER: {
|
|
ImageDither(&ctx.img,
|
|
op->params[0].i32,
|
|
op->params[1].i32,
|
|
op->params[2].i32,
|
|
op->params[3].i32);
|
|
}break;
|
|
case TOP_DRAW_IMAGE: {
|
|
char const *str = zpl_bprintf("art/%s", op->params[0].str);
|
|
if (FileExists(str)) {
|
|
Image img = LoadImage(str);
|
|
int x = op->params[1].i32;
|
|
int y = op->params[2].i32;
|
|
int w = op->params[3].i32;
|
|
int h = op->params[4].i32;
|
|
int flip = op->params[5].i32;
|
|
int rotate = op->params[6].i32;
|
|
|
|
if (w != -1 || h != -1) {
|
|
ImageResize(&img, w != -1 ? w : img.width, h != -1 ? h : img.height);
|
|
}
|
|
|
|
if (flip == 1) {
|
|
ImageFlipVertical(&img);
|
|
} else if (flip == 2) {
|
|
ImageFlipHorizontal(&img);
|
|
}
|
|
|
|
if (rotate == 1) {
|
|
ImageRotateCW(&img);
|
|
} else if (rotate == 2) {
|
|
ImageRotateCCW(&img);
|
|
}
|
|
|
|
ImageDraw(&ctx.img, img,
|
|
(Rectangle){0.0f, 0.0f, img.width, img.height},
|
|
(Rectangle){x, y, img.width, img.height},
|
|
op->params[5].color);
|
|
|
|
UnloadImage(img);
|
|
} else {
|
|
zpl_printf("TOP_LOAD_IMAGE: src %s not found!\n", str);
|
|
}
|
|
}break;
|
|
case TOP_DRAW_TEXT: {
|
|
char const *str = op->params[0].str;
|
|
int x = op->params[1].i32;
|
|
int y = op->params[2].i32;
|
|
int size = op->params[3].i32;
|
|
Color color = op->params[4].color;
|
|
ImageDrawText(&ctx.img, str, x, y, size, color);
|
|
}break;
|
|
case TOP_RESIZE_IMAGE: {
|
|
if (ctx.img.width == 0) break;
|
|
int w = op->params[0].i32;
|
|
int h = op->params[1].i32;
|
|
int mode = op->params[2].i32;
|
|
if (mode) {
|
|
ImageResize(&ctx.img, w, h);
|
|
} else {
|
|
ImageResizeNN(&ctx.img, w, h);
|
|
}
|
|
}break;
|
|
case TOP_COLOR_TWEAKS: {
|
|
ImageColorContrast(&ctx.img, texed_map_value(op->params[0].flt, -100.0f, 100.0f));
|
|
ImageColorBrightness(&ctx.img, (int)texed_map_value(op->params[1].flt, -255.0f, 255.0f));
|
|
ImageColorTint(&ctx.img, op->params[2].color);
|
|
|
|
if (op->params[3].i32) {
|
|
ImageColorInvert(&ctx.img);
|
|
}
|
|
if (op->params[4].i32) {
|
|
ImageColorGrayscale(&ctx.img);
|
|
}
|
|
}break;
|
|
default: {
|
|
zpl_printf("%s\n", "unsupported op!");
|
|
}break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void texed_process_params(void) {
|
|
for (int i = 0; i < zpl_array_count(ctx.ops); i += 1) {
|
|
td_op *op = &ctx.ops[i];
|
|
|
|
for (int j = 0; j < op->num_params; j += 1) {
|
|
td_param *p = &op->params[j];
|
|
|
|
switch (p->kind) {
|
|
case TPARAM_SLIDER:
|
|
case TPARAM_FLOAT: {
|
|
p->flt = (float)zpl_str_to_f64(p->str, NULL);
|
|
}break;
|
|
case TPARAM_INT:
|
|
case TPARAM_COORD: {
|
|
p->i32 = (int32_t)zpl_str_to_i64(p->str, NULL, 10);
|
|
}break;
|
|
case TPARAM_COLOR: {
|
|
uint32_t color = (uint32_t)zpl_str_to_u64(p->str, NULL, 16);
|
|
p->color = GetColor(color);
|
|
}break;
|
|
case TPARAM_STRING: {
|
|
// NOTE(zaklaus): no-op
|
|
}break;
|
|
default: {
|
|
zpl_printf("%s\n", "unsupported param!");
|
|
}break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static inline
|
|
float texed_map_value(float v, float min, float max) {
|
|
float slope = max-min;
|
|
return min + zpl_round(slope * v);
|
|
} |