From 73db3e57dc356543a3686ba02fd3a2981a38b0eb Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Thu, 13 Mar 2025 03:08:35 +0300 Subject: [PATCH] various small tweaks --- apps/demos/scenery/scenes/ingame.c | 2 +- apps/tools/twndel/tool.c | 99 +++++++++++++++--------------- 2 files changed, 51 insertions(+), 50 deletions(-) diff --git a/apps/demos/scenery/scenes/ingame.c b/apps/demos/scenery/scenes/ingame.c index 9e743f6..6967f99 100644 --- a/apps/demos/scenery/scenes/ingame.c +++ b/apps/demos/scenery/scenes/ingame.c @@ -235,7 +235,7 @@ static void process_vehicle(SceneIngame *scn) { /* front arms are rotated to be perpendicular to center of turning, */ /* which then are used to dissipate forces, thus providing control */ Vec3 const rear_bar = vec3_sub(vbp[0], vbp[3]); - Vec3 const rear_center = vec3_add(vbp[3], vec3_scale(rear_bar, 0.5)); + Vec3 const rear_center = vec3_scale(vec3_add(vbp[0], vbp[3]), 0.5); Vec3 a, b, r; if (i == 1) { a = vec3_sub(vbp[3], vbp[2]); diff --git a/apps/tools/twndel/tool.c b/apps/tools/twndel/tool.c index 5564cc6..ee6e31a 100644 --- a/apps/tools/twndel/tool.c +++ b/apps/tools/twndel/tool.c @@ -108,13 +108,10 @@ static inline Vec3 point_to_vec3(uint8_t object, uint16_t point) { static inline Vec2 project_texture_coordinate(Vec2 origin, Vec3 plane, Vec3 point, float scale) { - /* TODO: should be a better way */ - Vec3 right = vec3_norm(vec3_cross(plane, (Vec3){0,1,0})); - if (isnanf(right.x)) right = vec3_norm(vec3_cross(plane, (Vec3){1,0,0})); - Vec3 up = vec3_norm(vec3_cross(plane, right)); - Vec3 proj_origin = vec3_add(vec3_scale(right, origin.x), vec3_scale(up, origin.y)); - Vec3 local = vec3_sub(proj_origin, point); - return (Vec2){ vec3_dot(local, right) * scale, vec3_dot(local, up) * scale }; + Vec3 right = vec3_norm(vec3_cross(plane, fabsf(0.0f - plane.y) < 1e-9f ? (Vec3){0,1,0} : (Vec3){1,0,0})); + Vec3 up = vec3_norm(vec3_cross(right, plane)); + Vec2 pp = { vec3_dot(point, right), vec3_dot(point, up) }; + return vec2_scale(vec2_sub(origin, pp), scale); } @@ -127,53 +124,48 @@ static void render_object(uint8_t object) { for (uint16_t fi = 0; fi < o->faces_sz; ++fi) { Face *f = &o->faces[fi]; - /* quads */ - if (f->p[3] != INVALID_POINT) { + if (f->p[2] != INVALID_POINT) { Vec3 p0 = point_to_vec3(object, f->p[0]); Vec3 p1 = point_to_vec3(object, f->p[1]); Vec3 p2 = point_to_vec3(object, f->p[2]); - Vec3 p3 = point_to_vec3(object, f->p[3]); if (state.solid_display_mode) { Vec3 n = vec3_norm(vec3_cross(vec3_sub(p1, p0), vec3_sub(p2, p0))); Vec2 to = { f->tex_x / (float)POINTS_PER_METER, f->tex_y / (float)POINTS_PER_METER, }; + Vec2 tul = project_texture_coordinate(to, n, p0, (float)f->tex_scale); + Vec2 tdl = project_texture_coordinate(to, n, p1, (float)f->tex_scale); Vec2 tdr = project_texture_coordinate(to, n, p2, (float)f->tex_scale); - draw_quad(o->textures[f->texture], - p0, p1, p2, p3, - (Rect){tul.x, tdr.x, tdr.x - tul.x, tdr.y - tul.y}, - (Color){255,255,255,255} ); - } - else { - draw_line_3d(p0, p1, 1, (Color){255,255,255,255}); - draw_line_3d(p1, p2, 1, (Color){255,255,255,255}); - draw_line_3d(p2, p3, 1, (Color){255,255,255,255}); - draw_line_3d(p3, p0, 1, (Color){255,255,255,255}); - } - - } else if (f->p[2] != INVALID_POINT) { - Vec3 p0 = point_to_vec3(object, f->p[0]); - Vec3 p1 = point_to_vec3(object, f->p[1]); - Vec3 p2 = point_to_vec3(object, f->p[2]); - - Vec3 n = vec3_norm(vec3_cross(vec3_sub(p1, p0), vec3_sub(p2, p0))); - Vec2 to = { f->tex_x / (float)POINTS_PER_METER, f->tex_y / (float)POINTS_PER_METER, }; - Vec2 tul = project_texture_coordinate(to, n, p0, (float)f->tex_scale); - Vec2 tdl = project_texture_coordinate(to, n, p1, (float)f->tex_scale); - Vec2 tdr = project_texture_coordinate(to, n, p2, (float)f->tex_scale); - - if (state.solid_display_mode) draw_triangle(o->textures[f->texture], p0, p1, p2, tul, tdl, tdr, (Color){255,255,255,255}, (Color){255,255,255,255}, (Color){255,255,255,255}); - else { + + if (f->p[3] != INVALID_POINT) { + Vec3 p3 = point_to_vec3(object, f->p[3]); + Vec2 tur = project_texture_coordinate(to, n, p3, (float)f->tex_scale); + draw_triangle(o->textures[f->texture], + p2, p3, p0, + tdr, tur, tul, + (Color){255,255,255,255}, + (Color){255,255,255,255}, + (Color){255,255,255,255}); + } + + } else { draw_line_3d(p0, p1, 1, (Color){255,255,255,255}); draw_line_3d(p1, p2, 1, (Color){255,255,255,255}); - draw_line_3d(p2, p0, 1, (Color){255,255,255,255}); + + if (f->p[3] == INVALID_POINT) + draw_line_3d(p2, p0, 1, (Color){255,255,255,255}); + else { + Vec3 p3 = point_to_vec3(object, f->p[3]); + draw_line_3d(p2, p3, 1, (Color){255,255,255,255}); + draw_line_3d(p3, p0, 1, (Color){255,255,255,255}); + } } } else @@ -256,7 +248,7 @@ static void process_camera_translation(void) { draw_billboard("/data/camera.png", vec3_add(state.camera_position, vec3_scale(state.camera_direction, vec3_length(state.camera_position))), (Vec2){0.2f,0.2f}, - (Rect){0,0,16,16}, + (Rect){0}, (Color){255,255,255,255}, false); @@ -264,7 +256,7 @@ static void process_camera_translation(void) { draw_billboard("/data/center.png", (Vec3){0}, (Vec2){0.1f,0.1f}, - (Rect){0,0,16,16}, + (Rect){0}, (Color){255,255,255,255}, false); @@ -386,7 +378,7 @@ static bool find_closest_face(uint8_t* object_result, uint16_t *face_result) { Vec3 n = vec3_norm(vec3_cross(vec3_sub(p1, p0), vec3_sub(p2, p0))); /* culling */ - if (vec3_dot(state.camera_direction, n) > 0) continue; + if (vec3_dot(state.camera_direction, n) >= 0) continue; Vec3 i; if (!vector_plane_intersection(cam.position, cam.direction, p0, n, &i)) @@ -397,24 +389,24 @@ static bool find_closest_face(uint8_t* object_result, uint16_t *face_result) { /* left normals are used to determine whether point lies to the left for all forming lines */ Vec3 ln0 = vec3_norm(vec3_cross(n, vec3_sub(p1, p0))); - if (vec3_dot(ln0, vec3_sub(p0, i)) > 0) continue; + if (vec3_dot(ln0, vec3_sub(p0, i)) >= 0) continue; Vec3 ln1 = vec3_norm(vec3_cross(n, vec3_sub(p2, p1))); - if (vec3_dot(ln1, vec3_sub(p1, i)) > 0) continue; + if (vec3_dot(ln1, vec3_sub(p1, i)) >= 0) continue; if (f->p[3] == INVALID_POINT) { /* triangle */ Vec3 ln2 = vec3_norm(vec3_cross(n, vec3_sub(p0, p2))); - if (vec3_dot(ln2, vec3_sub(p2, i)) > 0) continue; + if (vec3_dot(ln2, vec3_sub(p2, i)) >= 0) continue; } else { /* quad */ Vec3 p3 = point_to_vec3(oi, f->p[3]); Vec3 ln2 = vec3_norm(vec3_cross(n, vec3_sub(p3, p2))); - if (vec3_dot(ln2, vec3_sub(p2, i)) > 0) continue; + if (vec3_dot(ln2, vec3_sub(p2, i)) >= 0) continue; Vec3 ln3 = vec3_norm(vec3_cross(n, vec3_sub(p0, p3))); - if (vec3_dot(ln3, vec3_sub(p3, i)) > 0) continue; + if (vec3_dot(ln3, vec3_sub(p3, i)) >= 0) continue; } closest_distance = dist; @@ -483,7 +475,7 @@ static bool process_operation_move_point(Operation *op) { draw_billboard("/data/grab.png", point_to_vec3(op->data.move_point.object, op->data.move_point.point), (Vec2){size, size}, - (Rect){0,0,16,16}, + (Rect){0}, (Color){255,255,255,255}, false); @@ -652,7 +644,7 @@ static void process_operations(void) { draw_billboard("/data/point.png", point_to_vec3(obj_select, point_select), (Vec2){0.05f, 0.05f}, - (Rect){0,0,16,16}, + (Rect){0}, (Color){255,255,255,255}, false); @@ -670,7 +662,15 @@ static void process_operations(void) { state.current_hovered_face = face_select; state.current_hovered_obj = obj_select; - if (input_action_pressed("select")) { + if (input_action_just_pressed("rotate")) { + Face *f = &state.objects[obj_select].faces[face_select]; + int16_t tex_x = f->tex_x; + int16_t tex_y = f->tex_y; + f->tex_x = -tex_y; + f->tex_y = tex_x; + } + + if (input_action_pressed("select") && state.current_texture) { uint8_t new_tex = push_texture(obj_select, state.current_texture); uint8_t cur_tex = state.objects[obj_select].faces[face_select].texture; @@ -754,7 +754,7 @@ static void draw_hovered_face_border(void) { Vec3 p1 = point_to_vec3(state.current_hovered_obj, f->p[1]); Vec3 p2 = point_to_vec3(state.current_hovered_obj, f->p[2]); Vec3 p3 = point_to_vec3(state.current_hovered_obj, f->p[3]); - Vec3 center = vec3_add(p0, vec3_scale(vec3_sub(p2, p0), 0.5)); + Vec3 center = vec3_scale(vec3_add(p2, p0), 0.5); float size = sinf(ctx.frame_number / 10) * 0.05f + 0.1f; Vec3 c0 = vec3_add(p0, vec3_scale(vec3_sub(p0, center), size)); Vec3 c1 = vec3_add(p1, vec3_scale(vec3_sub(p1, center), size)); @@ -832,13 +832,14 @@ void game_tick(void) { state.current_hovered_obj = INVALID_OBJECT; input_action("toggle_display_mode", "Q"); - input_action("toggle_projection", "E"); + input_action("toggle_projection", "TAB"); input_action("toggle_x_axis", "Z"); input_action("toggle_y_axis", "X"); input_action("toggle_z_axis", "C"); input_action("select", "LCLICK"); + input_action("rotate", "R"); input_action("undo", "F"); if (input_action_just_pressed("toggle_display_mode")) {