1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
*
* crosshair: display edit points of the objects that are under the cursor
* pcb-rnd Copyright (C) 2020 Tibor 'Igor2' Palinkas
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Contact:
* Project page: http://repo.hu/projects/pcb-rnd
* lead developer: http://repo.hu/projects/pcb-rnd/contact.html
* mailing list: pcb-rnd (at) list.repo.hu (send "subscribe")
*/
/* Draw the editpoints of objects which are under the crosshair */
#include "config.h"
#include <stdio.h>
#include <genvector/vtp0.h>
#include <librnd/core/plugins.h>
#include <librnd/hid/tool.h>
#include <librnd/poly/rtree.h>
#include <librnd/hid/hid_menu.h>
#include <librnd/core/rnd_conf.h>
#include <librnd/core/hidlib.h>
#include <librnd/core/conf_multi.h>
#include "board.h"
#include "conf_core.h"
#include "crosshair.h"
#include "data.h"
#include "draw.h"
#include "event.h"
#include "obj_pstk.h"
#include "polygon.h"
#include "search.h"
#include "tool_logic.h"
#include "../src_plugins/ch_editpoint/ch_editpoint_conf.h"
#include "../src_plugins/ch_editpoint/conf_internal.c"
#include "../src_plugins/ch_editpoint/menu_internal.c"
conf_ch_editpoint_t conf_ch_editpoint;
static const char pcb_ch_editpoint_cookie[] = "ch_editpoint plugin";
static vtp0_t editpoint_raw[2];
static vtp0_t *editpoint_objs = &editpoint_raw[0], *old_editpoint_objs = &editpoint_raw[1];
static rnd_rtree_dir_t editpoint_callback(void *cl, void *obj_, const rnd_rtree_box_t *box)
{
pcb_crosshair_t *crosshair = cl;
pcb_any_obj_t *obj = (pcb_any_obj_t *)obj_;
switch(obj->type) {
case PCB_OBJ_LINE: if (!pcb_is_point_on_line(crosshair->X, crosshair->Y, PCB_SLOP * rnd_pixel_slop, (pcb_line_t *)obj)) return rnd_RTREE_DIR_FOUND_CONT; break;
case PCB_OBJ_ARC: if (!pcb_is_point_on_arc(crosshair->X, crosshair->Y, PCB_SLOP * rnd_pixel_slop, (pcb_arc_t *)obj)) return rnd_RTREE_DIR_FOUND_CONT; break;
case PCB_OBJ_POLY: if (!pcb_poly_is_point_in_p(crosshair->X, crosshair->Y, PCB_SLOP * rnd_pixel_slop, (pcb_poly_t *)obj)) return rnd_RTREE_DIR_FOUND_CONT; break;
case PCB_OBJ_PSTK: if (!pcb_is_point_in_pstk(crosshair->X, crosshair->Y, PCB_SLOP * rnd_pixel_slop, (pcb_pstk_t *)obj, NULL)) return rnd_RTREE_DIR_FOUND_CONT; break;
default: break;
}
vtp0_append(editpoint_objs, obj);
obj->ind_editpoint = 1;
return rnd_RTREE_DIR_FOUND_CONT;
}
static void *editpoint_find(vtp0_t *vect, pcb_any_obj_t *obj_ptr)
{
int n;
for(n = 0; n < vect->used; n++) {
pcb_any_obj_t *op = vect->array[n];
if (op == obj_ptr)
return op;
}
return NULL;
}
/* Undraw the old objects; returns whether anything is removed */
static int editpoint_undraw(void)
{
int n, removed = 0;
for(n = 0; n < old_editpoint_objs->used; n++) {
pcb_any_obj_t *op = old_editpoint_objs->array[n];
/* only remove and redraw those which aren't in the new list */
if (editpoint_find(editpoint_objs, op) != NULL)
continue;
op->ind_editpoint = 0;
pcb_draw_obj(op);
removed = 1;
}
return removed;
}
/* swap old and new endpoint list */
static void endpoint_swap(void)
{
vtp0_t *tmp = editpoint_objs;
editpoint_objs = old_editpoint_objs;
old_editpoint_objs = tmp;
}
/* Searches for lines/arcs which have points that are exactly at the given coords
and adds them to the object list along with their respective type. */
static void editpoint_work(pcb_crosshair_t *crosshair, rnd_coord_t X, rnd_coord_t Y)
{
rnd_box_t SearchBox = rnd_point_box(X, Y);
int n;
rnd_bool redraw = rnd_false;
/* swap old and new */
endpoint_swap();
/* Do not truncate to 0 because that may free the array */
vtp0_truncate(editpoint_objs, 1);
editpoint_objs->used = 0;
for(n = 0; n < pcb_max_layer(PCB); n++) {
pcb_layer_t *layer = &PCB->Data->Layer[n];
/* Only find points of arcs and lines on currently visible layers. */
if (!layer->meta.real.vis)
continue;
rnd_rtree_search_any(layer->line_tree, (rnd_rtree_box_t *)&SearchBox, NULL, editpoint_callback, crosshair, NULL);
rnd_rtree_search_any(layer->arc_tree, (rnd_rtree_box_t *)&SearchBox, NULL, editpoint_callback, crosshair, NULL);
rnd_rtree_search_any(layer->polygon_tree, (rnd_rtree_box_t *)&SearchBox, NULL, editpoint_callback, crosshair, NULL);
}
rnd_rtree_search_any(PCB->Data->padstack_tree, (rnd_rtree_box_t *)&SearchBox, NULL, editpoint_callback, crosshair, NULL);
/* Undraw the old objects */
redraw = editpoint_undraw();
/* draw the new objects */
for(n = 0; n < editpoint_objs->used; n++) {
pcb_any_obj_t *op = editpoint_objs->array[n];
/* only draw those which aren't in the old list */
if (editpoint_find(old_editpoint_objs, op) != NULL)
continue;
pcb_draw_obj(op);
redraw = rnd_true;
}
if (redraw)
rnd_hid_redraw(&PCB->hidlib);
}
static void pcb_editpoint_flush(rnd_design_t *hidlib, void *user_data, int argc, rnd_event_arg_t argv[])
{
/* clear all editpoint lists because the old list may hold objects just
deleted; the edit will trigger a redraw anyway */
editpoint_raw[0].used = editpoint_raw[1].used = 0;
}
static void pcb_ch_editpoint(rnd_design_t *hidlib, void *user_data, int argc, rnd_event_arg_t argv[])
{
pcb_crosshair_t *ch = argv[1].d.p;
if (conf_ch_editpoint.plugins.ch_editpoint.enable) {
const rnd_tool_t *tool = rnd_tool_get(rnd_conf.editor.mode);
if ((tool != NULL) && (tool->user_flags & PCB_TLF_EDIT)) {
editpoint_work(ch, ch->X, ch->Y);
}
else if (editpoint_objs->used != 0) {
/* schedule endpoints for removal from render */
endpoint_swap();
editpoint_undraw();
pcb_editpoint_flush(hidlib, user_data, argc, argv);
}
}
}
int pplg_check_ver_ch_editpoint(int ver_needed) { return 0; }
void pplg_uninit_ch_editpoint(void)
{
rnd_event_unbind_allcookie(pcb_ch_editpoint_cookie);
vtp0_uninit(editpoint_objs);
vtp0_uninit(old_editpoint_objs);
rnd_conf_plug_unreg("plugins/ch_editpoint/", ch_editpoint_conf_internal, pcb_ch_editpoint_cookie);
rnd_hid_menu_unload(rnd_gui, pcb_ch_editpoint_cookie);
}
int pplg_init_ch_editpoint(void)
{
RND_API_CHK_VER;
rnd_conf_plug_reg(conf_ch_editpoint, ch_editpoint_conf_internal, pcb_ch_editpoint_cookie);
#define conf_reg(field,isarray,type_name,cpath,cname,desc,flags) \
rnd_conf_reg_field(conf_ch_editpoint, field,isarray,type_name,cpath,cname,desc,flags);
#include "ch_editpoint_conf_fields.h"
rnd_event_bind(PCB_EVENT_CROSSHAIR_NEW_POS, pcb_ch_editpoint, NULL, pcb_ch_editpoint_cookie);
rnd_event_bind(PCB_EVENT_BOARD_EDITED, pcb_editpoint_flush, NULL, pcb_ch_editpoint_cookie);
rnd_hid_menu_load(rnd_gui, NULL, pcb_ch_editpoint_cookie, 100, NULL, 0, ch_editpoint_menu, "plugin: ch_editpoint");
return 0;
}
|