-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a filter to mirror voxels (#396)
* Add a filter to mirror voxels * Make the name more conventional * Styling fix
- Loading branch information
1 parent
e875881
commit 638384a
Showing
1 changed file
with
161 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
/* Goxel 3D voxels editor | ||
* | ||
* copyright (c) 2024-present Guillaume Chereau <guillaume@noctua-software.com> | ||
* | ||
* Goxel is free software: you can redistribute it and/or modify it under the | ||
* terms of the GNU General Public License as published by the Free Software | ||
* Foundation, either version 3 of the License, or (at your option) any later | ||
* version. | ||
* Goxel is distributed in the hope that it will be useful, but WITHOUT ANY | ||
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
* details. | ||
* You should have received a copy of the GNU General Public License along with | ||
* goxel. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "goxel.h" | ||
#include "gui.h" | ||
|
||
typedef struct { | ||
filter_t filter; | ||
bool current_only; | ||
} filter_mirror_t; | ||
|
||
static void volume_mirror(volume_t *volume, int axis, const int aabb[2][3]) | ||
{ | ||
int pos[3]; | ||
int buffer_pos[3]; | ||
int volume_pos[3]; | ||
int size[3]; | ||
uint8_t *buffer; | ||
int i; | ||
size_t buffer_offset; | ||
|
||
if (aabb[1][axis] - aabb[0][axis] == 1) { | ||
return; | ||
} | ||
|
||
size[0] = aabb[1][0] - aabb[0][0]; | ||
size[1] = aabb[1][1] - aabb[0][1]; | ||
size[2] = aabb[1][2] - aabb[0][2]; | ||
|
||
buffer = malloc(4 * size[0] * size[1] * size[2]); | ||
|
||
for (pos[0] = 0; pos[0] < size[0]; pos[0]++) { | ||
for (pos[1] = 0; pos[1] < size[1]; pos[1]++) { | ||
for (pos[2] = 0; pos[2] < size[2]; pos[2]++) { | ||
memcpy(buffer_pos, pos, sizeof(pos)); | ||
memcpy(volume_pos, pos, sizeof(pos)); | ||
|
||
for (i = 0; i < 3; i++) { | ||
volume_pos[i] += aabb[0][i]; | ||
} | ||
|
||
buffer_pos[axis] = size[axis] - buffer_pos[axis] - 1; | ||
|
||
buffer_offset = 4 * ( | ||
buffer_pos[2] * size[0] * size[1] + | ||
buffer_pos[1] * size[0] + buffer_pos[0] | ||
); | ||
|
||
volume_get_at(volume, NULL, volume_pos, &buffer[buffer_offset]); | ||
} | ||
} | ||
} | ||
|
||
for (pos[0] = 0; pos[0] < size[0]; pos[0]++) { | ||
for (pos[1] = 0; pos[1] < size[1]; pos[1]++) { | ||
for (pos[2] = 0; pos[2] < size[2]; pos[2]++) { | ||
memcpy(volume_pos, pos, sizeof(pos)); | ||
|
||
for (i = 0; i < 3; i++) { | ||
volume_pos[i] += aabb[0][i]; | ||
} | ||
|
||
buffer_offset = 4 * ( | ||
pos[2] * size[0] * size[1] + | ||
pos[1] * size[0] + pos[0] | ||
); | ||
|
||
volume_set_at(volume, NULL, volume_pos, &buffer[buffer_offset]); | ||
} | ||
} | ||
} | ||
|
||
free(buffer); | ||
} | ||
|
||
static int axis_selection_box() | ||
{ | ||
char buf[32]; | ||
static const char* AXIS_NAMES[] = {"X", "Y", "Z"}; | ||
int axis; | ||
int selected_axis = -1; | ||
|
||
for (axis = 0; axis < 3; axis++) { | ||
snprintf(buf, sizeof(buf), "Mirror %s", AXIS_NAMES[axis]); | ||
|
||
if (gui_button(buf, 1.0, 0)) { | ||
selected_axis = axis; | ||
} | ||
} | ||
|
||
return selected_axis; | ||
} | ||
|
||
static int gui(filter_t *filter) | ||
{ | ||
filter_mirror_t *mirror_props = (filter_mirror_t*) filter; | ||
int axis; | ||
float box[4][4] = {}; | ||
int aabb[2][3]; | ||
layer_t *layer; | ||
|
||
memcpy(box, goxel.image->selection_box, sizeof(box)); | ||
|
||
if (box_is_null(box)) | ||
memcpy(box, goxel.image->active_layer->box, sizeof(box)); | ||
|
||
if (box_is_null(box)) | ||
memcpy(box, goxel.image->box, sizeof(box)); | ||
|
||
gui_group_begin(NULL); | ||
axis = axis_selection_box(); | ||
gui_checkbox( | ||
"Current layer only", | ||
&mirror_props->current_only, | ||
"If checked, only voxels on the current layer will be mirrored.\n" | ||
"If unchecked, voxels on all layers will be mirrored." | ||
); | ||
gui_group_end(); | ||
|
||
if (axis != -1) { | ||
if (box_is_null(box)) | ||
return 0; | ||
|
||
if (mirror_props->current_only && !goxel.image->active_layer->visible) | ||
return 0; | ||
|
||
bbox_to_aabb(box, aabb); | ||
|
||
DL_FOREACH(goxel.image->layers, layer) { | ||
if (mirror_props->current_only && | ||
layer != goxel.image->active_layer) | ||
continue; | ||
|
||
volume_mirror(layer->volume, axis, aabb); | ||
} | ||
|
||
image_history_push(goxel.image); | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
FILTER_REGISTER(mirror, filter_mirror_t, | ||
.name = "Mirror", | ||
.gui_fn = gui, | ||
) |