eco2d/code/game/source/editors/texed_ops.c

129 lines
4.9 KiB
C
Raw Normal View History

2021-05-16 14:11:29 +00:00
static inline
float texed_map_value(float v, float min, float max);
2021-05-15 15:19:50 +00:00
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) {
2021-05-15 17:17:47 +00:00
case TOP_NEW_IMAGE: {
UnloadImage(ctx.img);
ctx.img = GenImageColor(op->params[0].i32, op->params[1].i32, op->params[2].color);
2021-05-15 15:19:50 +00:00
}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;
2021-05-16 13:38:30 +00:00
case TOP_DRAW_IMAGE: {
2021-05-15 20:09:25 +00:00
char const *str = zpl_bprintf("art/%s", op->params[0].str);
if (FileExists(str)) {
Image img = LoadImage(str);
2021-05-15 15:19:50 +00:00
int x = op->params[1].i32;
int y = op->params[2].i32;
int w = op->params[3].i32;
int h = op->params[4].i32;
if (w != -1 || h != -1) {
ImageResize(&img, w != -1 ? w : img.width, h != -1 ? h : img.height);
}
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 {
2021-05-15 20:09:25 +00:00
zpl_printf("TOP_LOAD_IMAGE: src %s not found!\n", str);
2021-05-15 15:19:50 +00:00
}
}break;
2021-05-15 16:41:30 +00:00
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;
2021-05-15 17:40:27 +00:00
case TOP_RESIZE_IMAGE: {
2021-05-15 20:09:25 +00:00
if (ctx.img.width == 0) break;
2021-05-15 17:40:27 +00:00
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;
2021-05-16 14:22:28 +00:00
case TOP_COLOR_TWEAKS: {
2021-05-16 14:11:29 +00:00
ImageColorContrast(&ctx.img, texed_map_value(op->params[0].flt, -100.0f, 100.0f));
2021-05-16 14:22:28 +00:00
ImageColorBrightness(&ctx.img, (int)texed_map_value(op->params[1].flt, -255.0f, 255.0f));
ImageColorTint(&ctx.img, op->params[2].color);
2021-05-16 14:11:29 +00:00
}break;
2021-05-15 15:19:50 +00:00
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) {
2021-05-16 14:11:29 +00:00
case TPARAM_SLIDER:
2021-05-15 15:19:50 +00:00
case TPARAM_FLOAT: {
p->flt = (float)zpl_str_to_f64(p->str, NULL);
}break;
case TPARAM_INT: {
2021-05-15 16:41:30 +00:00
p->u32 = (uint32_t)zpl_str_to_i64(p->str, NULL, 10);
}break;
case TPARAM_COORD: {
p->i32 = (int32_t)zpl_str_to_i64(p->str, NULL, 10);
2021-05-15 15:19:50 +00:00
}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;
}
}
}
}
2021-05-16 14:11:29 +00:00
static inline
float texed_map_value(float v, float min, float max) {
float slope = max-min;
return min + zpl_round(slope * v);
}