2018-05-03 15:40:26 +02:00
|
|
|
//===================================================//
|
|
|
|
// //
|
|
|
|
// DATA //
|
|
|
|
// //
|
|
|
|
//===================================================//
|
|
|
|
|
|
|
|
_image selection;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
STATE_INACTIVE=0,
|
|
|
|
STATE_CHOSING=1,
|
|
|
|
STATE_SELECTED=2,
|
|
|
|
STATE_MOVING=3
|
|
|
|
};
|
|
|
|
int selection_state = STATE_INACTIVE;
|
|
|
|
|
2018-04-24 17:14:08 +02:00
|
|
|
int selection_start_x = -1;
|
|
|
|
int selection_start_y = -1;
|
|
|
|
int selection_end_x = -1;
|
|
|
|
int selection_end_y = -1;
|
|
|
|
|
|
|
|
int selection_pivot_x = -1;
|
|
|
|
int selection_pivot_y = -1;
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
//===================================================//
|
|
|
|
// //
|
|
|
|
// CODE //
|
|
|
|
// //
|
|
|
|
//===================================================//
|
|
|
|
|
2018-04-24 17:14:08 +02:00
|
|
|
void SelectTool_normalizeSelection() {
|
|
|
|
int t;
|
|
|
|
|
|
|
|
// Restructuring of the selection coordinates
|
|
|
|
if (selection_end_x < selection_start_x) {
|
|
|
|
t = selection_start_x;
|
|
|
|
selection_start_x = selection_end_x;
|
|
|
|
selection_end_x = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (selection_end_y < selection_start_y) {
|
|
|
|
t = selection_end_y;
|
|
|
|
selection_end_y = selection_start_y;
|
|
|
|
selection_start_y = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_selection_moving() {
|
2018-05-03 15:40:26 +02:00
|
|
|
if (STATE_MOVING == selection_state) {
|
2018-04-24 17:14:08 +02:00
|
|
|
SelectTool_drawBuffer(selection_start_x, selection_start_y, 1);
|
|
|
|
|
|
|
|
selection_pivot_x = -1;
|
|
|
|
selection_pivot_y = -1;
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_state = STATE_SELECTED;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
|
|
|
actionsHistory.saveCurrentState();
|
|
|
|
DrawCanvas();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_selection_moving() {
|
2018-05-03 15:40:26 +02:00
|
|
|
if (STATE_MOVING == selection_state) return true;
|
|
|
|
return false;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void reset_selection() {
|
|
|
|
reset_selection_moving();
|
|
|
|
|
|
|
|
selection_start_x = -1;
|
|
|
|
selection_start_y = -1;
|
|
|
|
selection_end_x = -1;
|
|
|
|
selection_end_y = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SelectTool_activate() {
|
|
|
|
reset_selection();
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_state = STATE_INACTIVE;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SelectTool_deactivate() {
|
|
|
|
reset_selection_moving();
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_state = STATE_INACTIVE;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SelectTool_pointInSelection(int x, int y) {
|
|
|
|
if (x >= selection_start_x) && (x <= selection_end_x) && (y >= selection_start_y) && (y <= selection_end_y)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SelectTool_copyToBuffer() {
|
2018-05-03 15:40:26 +02:00
|
|
|
dword r, c;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_state = STATE_SELECTED;
|
|
|
|
selection.rows = selection_end_y - selection_start_y + 1;
|
|
|
|
selection.columns = selection_end_x - selection_start_x + 1;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
for (r = selection_start_y; r <= selection_end_y; r++) {
|
|
|
|
for (c = selection_start_x; c <= selection_end_x; c++) {
|
|
|
|
selection.set_pixel(r - selection_start_y, c - selection_start_x, image.get_pixel(r, c) );
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
2018-05-03 15:40:26 +02:00
|
|
|
}
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SelectTool_onMouseEvent(int mouseX, int mouseY, int lkm, int pkm) {
|
2018-05-03 15:40:26 +02:00
|
|
|
int dx, dy, m_x, m_y, r, c;
|
2018-04-24 17:14:08 +02:00
|
|
|
dword pixel;
|
|
|
|
|
|
|
|
m_x = TO_CANVAS_X(mouseX);
|
|
|
|
m_y = TO_CANVAS_Y(mouseY);
|
2018-05-03 15:40:26 +02:00
|
|
|
|
|
|
|
if (mouse.down)
|
|
|
|
&& (canvas.hovered())
|
|
|
|
&& ((STATE_INACTIVE == selection_state) || (STATE_CHOSING == selection_state) || (STATE_SELECTED == selection_state) || (STATE_MOVING == selection_state))
|
|
|
|
{
|
2018-04-24 17:14:08 +02:00
|
|
|
if (selection_start_x != -1) && (SelectTool_pointInSelection(m_x, m_y)) {
|
|
|
|
if (selection_pivot_x == -1) {
|
|
|
|
selection_pivot_x = m_x;
|
|
|
|
selection_pivot_y = m_y;
|
|
|
|
|
|
|
|
GetKeys();
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
if (STATE_MOVING != selection_state) && ( !(key_modifier&KEY_LSHIFT) ) {
|
2018-04-24 17:14:08 +02:00
|
|
|
for (r = selection_start_y; r <= selection_end_y; r++)
|
|
|
|
for (c = selection_start_x; c <= selection_end_x; c++) {
|
|
|
|
image.set_pixel(r, c, color2);
|
|
|
|
}
|
|
|
|
}
|
2018-05-03 15:40:26 +02:00
|
|
|
|
|
|
|
selection_state = STATE_MOVING;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
}
|
2018-05-03 15:40:26 +02:00
|
|
|
else {
|
2018-04-24 17:14:08 +02:00
|
|
|
reset_selection();
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_state = STATE_CHOSING;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (selection_pivot_x != -1) {
|
|
|
|
dx = m_x - selection_pivot_x;
|
|
|
|
dy = m_y - selection_pivot_y;
|
|
|
|
|
|
|
|
if (selection_start_x + dx < 0)
|
|
|
|
dx = selection_start_x;
|
|
|
|
|
|
|
|
if (selection_end_x + dx >= image.columns)
|
|
|
|
dx = image.columns-1 - selection_end_x;
|
|
|
|
|
|
|
|
if (selection_start_y + dy < 0)
|
|
|
|
dy = selection_start_y;
|
|
|
|
|
|
|
|
if (selection_end_y + dy >= image.rows)
|
|
|
|
dy = image.rows-1 - selection_end_y;
|
|
|
|
|
|
|
|
|
|
|
|
selection_start_x += dx;
|
|
|
|
selection_end_x += dx;
|
|
|
|
|
|
|
|
selection_start_y += dy;
|
|
|
|
selection_end_y += dy;
|
|
|
|
|
|
|
|
selection_pivot_x += dx;
|
|
|
|
selection_pivot_y += dy;
|
|
|
|
|
|
|
|
DrawCanvas();
|
|
|
|
}
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
if (STATE_CHOSING == selection_state)
|
2018-04-24 17:14:08 +02:00
|
|
|
{
|
|
|
|
if (mouseX>canvas.x+canvas.w-zoom.value) mouseX = canvas.x+canvas.w-zoom.value;
|
|
|
|
if (mouseY>canvas.y+canvas.h-zoom.value) mouseY = canvas.y+canvas.h-zoom.value;
|
|
|
|
|
|
|
|
if (mouseX<canvas.x) mouseX = canvas.x;
|
|
|
|
if (mouseY<canvas.y) mouseY = canvas.y;
|
|
|
|
|
|
|
|
if (mouse.key) {
|
|
|
|
selection_end_x = TO_CANVAS_X(mouseX);
|
|
|
|
selection_end_y = TO_CANVAS_Y(mouseY);
|
|
|
|
|
|
|
|
if ((selection_start_x < 0) || (selection_start_y < 0)) {
|
|
|
|
selection_start_x = TO_CANVAS_X(mouseX);
|
|
|
|
selection_start_y = TO_CANVAS_Y(mouseY);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DrawCanvas();
|
|
|
|
|
|
|
|
/**if ((calc(TO_CANVAS_X(mouseX)) != selection_end_x)
|
|
|
|
|| (calc(TO_CANVAS_Y(mouseY)) != selection_end_y))
|
|
|
|
{
|
|
|
|
DrawCanvas();
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mouse.up) {
|
|
|
|
SelectTool_normalizeSelection();
|
|
|
|
SelectTool_copyToBuffer();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mouse.up) {
|
|
|
|
if (selection_pivot_x != -1) {
|
|
|
|
selection_pivot_x = -1;
|
|
|
|
selection_pivot_y = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SelectTool_onCanvasDraw() {
|
|
|
|
if ((selection_start_x >= 0) && (selection_start_y >= 0) && (selection_end_x >= 0) && (selection_end_y >= 0)) {
|
2018-05-03 15:40:26 +02:00
|
|
|
DrawSelection();
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SelectTool_drawBuffer(int insert_x, int insert_y, int target) {
|
|
|
|
dword color;
|
2018-05-03 15:40:26 +02:00
|
|
|
dword r, c;
|
2018-04-24 17:14:08 +02:00
|
|
|
dword insert_to_x, insert_to_y;
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
if (STATE_INACTIVE != selection_state) {
|
|
|
|
insert_to_x = insert_x + selection.columns - 1;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
|
|
|
if (insert_to_x >= image.columns)
|
|
|
|
insert_to_x = image.columns-1;
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
insert_to_y = insert_y + selection.rows - 1;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
|
|
|
if (insert_to_y >= image.rows)
|
|
|
|
insert_to_y = image.rows-1;
|
|
|
|
|
|
|
|
for (r = insert_y; r <= insert_to_y; r++) {
|
|
|
|
for (c = insert_x; c <= insert_to_x; c++) {
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
color = selection.get_pixel(r - insert_y, c - insert_x);
|
2018-04-24 17:14:08 +02:00
|
|
|
|
|
|
|
if (TOIMAGE == target)
|
|
|
|
image.set_pixel(r, c, color);
|
|
|
|
else
|
|
|
|
DrawBar(c*zoom.value + canvas.x, r*zoom.value + canvas.y,
|
|
|
|
zoom.value, zoom.value, color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SelectTool_onKeyEvent(dword keycode) {
|
2018-05-03 15:40:26 +02:00
|
|
|
dword r, c;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
|
|
|
if (keycode == SCAN_CODE_KEY_V) {
|
2018-05-03 15:40:26 +02:00
|
|
|
if (STATE_SELECTED == selection_state) {
|
2018-04-24 17:14:08 +02:00
|
|
|
reset_selection();
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_state = STATE_MOVING;
|
2018-04-24 17:14:08 +02:00
|
|
|
selection_start_x = 0;
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_end_x = selection.columns - 1;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
|
|
|
selection_start_y = 0;
|
2018-05-03 15:40:26 +02:00
|
|
|
selection_end_y = selection.rows - 1;
|
2018-04-24 17:14:08 +02:00
|
|
|
|
|
|
|
DrawCanvas();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
void DrawSelection() {
|
2018-04-24 17:14:08 +02:00
|
|
|
#define SELECTION_COLOR 0xAAE5EF
|
|
|
|
int p1x, p1y, p2x, p2y, r, c, old_color, new_color;
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
if (selection_start_x <= selection_end_x) {
|
|
|
|
p1x = selection_start_x;
|
|
|
|
p2x = selection_end_x;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-05-03 15:40:26 +02:00
|
|
|
p1x = selection_end_x;
|
|
|
|
p2x = selection_start_x;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
if (selection_start_y <= selection_end_y) {
|
|
|
|
p2y = selection_start_y;
|
|
|
|
p1y = selection_end_y;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-05-03 15:40:26 +02:00
|
|
|
p2y = selection_end_y;
|
|
|
|
p1y = selection_start_y;
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (r = p1y; r >= p2y; r--) {
|
|
|
|
for (c = p1x; c <= p2x; c++) {
|
|
|
|
image.pixel_state.set_drawable_state(r, c, false);
|
|
|
|
|
2018-05-03 15:40:26 +02:00
|
|
|
if (STATE_MOVING == selection_state) && (SelectTool_pointInSelection(c, r)) {
|
|
|
|
old_color = selection.get_pixel(r - selection_start_y, c - selection_start_x);
|
2018-04-24 17:14:08 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
old_color = image.get_pixel(r, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_color = MixColors(old_color, SELECTION_COLOR, 64);
|
|
|
|
|
|
|
|
DrawCanvasPixel(r, c, new_color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|