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
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* Copyright (C) 1994,1995,1996 Thomas Nau
* Copyright (C) 1997, 1998, 1999, 2000, 2001 Harry Eaton
* Copyright (C) 2017,2019 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 St, 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")
*
*
* Old contact info:
* Harry Eaton, 6697 Buttonhole Ct, Columbia, MD 21044, USA
* haceaton@aplcomm.jhuapl.edu
*
*/
#include "config.h"
#include "board.h"
#include "change.h"
#include "data.h"
#include <librnd/core/actions.h>
#include <librnd/core/error.h>
#include "obj_pstk.h"
#include "search.h"
#include "thermal.h"
#include <librnd/core/tool.h>
void pcb_tool_thermal_on_obj(pcb_any_obj_t *obj, unsigned long lid)
{
unsigned char *th, newth = 0;
unsigned char cycle[] = {
PCB_THERMAL_ON | PCB_THERMAL_ROUND | PCB_THERMAL_DIAGONAL, /* default start shape */
PCB_THERMAL_ON | PCB_THERMAL_ROUND,
PCB_THERMAL_ON | PCB_THERMAL_SHARP | PCB_THERMAL_DIAGONAL,
PCB_THERMAL_ON | PCB_THERMAL_SHARP,
PCB_THERMAL_ON | PCB_THERMAL_SOLID,
PCB_THERMAL_ON | PCB_THERMAL_NOSHAPE
};
int cycles = sizeof(cycle) / sizeof(cycle[0]);
th = pcb_obj_common_get_thermal(obj, lid, 1);
if (rnd_gui->shift_is_pressed(rnd_gui)) {
int n, curr = -1;
/* cycle through the variants to find the current one */
for(n = 0; n < cycles; n++) {
if (*th == cycle[n]) {
curr = n;
break;
}
}
/* bump current pattern to the next or set it up */
if (curr >= 0) {
curr++;
if (curr >= cycles)
curr = 0;
}
else
curr = 0;
newth = cycle[curr];
}
else {
if ((th != NULL) && (*th != 0))
newth = *th ^ PCB_THERMAL_ON; /* existing thermal, toggle */
else
newth = cycle[0]; /* new thermal, use default */
}
pcb_chg_obj_thermal(obj->type, obj, obj, obj, newth, lid);
}
void pcb_tool_thermal_notify_mode(rnd_hidlib_t *hl)
{
void *ptr1, *ptr2, *ptr3;
int type, locked = 0;
if (((type = pcb_search_screen_maybe_selector(hl->tool_x, hl->tool_y, PCB_OBJ_PSTK | PCB_OBJ_SUBC_PART, &ptr1, &ptr2, &ptr3)) != PCB_OBJ_VOID)
&& !PCB_FLAG_TEST(PCB_FLAG_HOLE, (pcb_any_obj_t *) ptr3)) {
if (type == PCB_OBJ_PSTK) {
if (!PCB_FLAG_TEST(PCB_FLAG_LOCK, (pcb_any_obj_t *)ptr2)) {
pcb_tool_thermal_on_obj(ptr2, PCB_CURRLID(pcb));
return;
}
else
locked = 1;
}
}
if (((type = pcb_search_screen_maybe_selector(hl->tool_x, hl->tool_y, PCB_OBJ_CLASS_REAL & ~PCB_OBJ_PSTK, &ptr1, &ptr2, &ptr3)) != PCB_OBJ_VOID)
&& !PCB_FLAG_TEST(PCB_FLAG_HOLE, (pcb_any_obj_t *) ptr3)) {
if (!PCB_FLAG_TEST(PCB_FLAG_LOCK, (pcb_any_obj_t *)ptr2)) {
pcb_tool_thermal_on_obj(ptr2, PCB_CURRLID(pcb));
return;
}
else
locked = 1;
}
if (locked)
rnd_message(RND_MSG_ERROR, "The only available target object is locked %d\n", PCB_FLAG_TEST(PCB_FLAG_LOCK, (pcb_any_obj_t *)ptr2));
}
/* XPM */
static const char *thrm_icon[] = {
/* columns rows colors chars-per-pixel */
"21 21 3 1",
" c #000000",
". c #6EA5D7",
"o c None",
/* pixels */
"ooooooooooooooooooooo",
"oooo ooooooooo oooooo",
"ooooo ooooooo ooooooo",
"oooooo o...o oooooooo",
"ooooooo ooo ooooooooo",
"oooooo.ooooo.oooooooo",
"oooooo.ooooo.oooooooo",
"oooooo.ooooo.oooooooo",
"ooooooo ooo ooooooooo",
"oooooo o...o oooooooo",
"ooooo ooooooo ooooooo",
"oooo ooooooooo oooooo",
"ooooooooooooooooooooo",
" o oo o oo ooo ",
"oo ooo oo o oo o o ",
"oo ooo oo o oo o o o ",
"oo ooo oo o oo o o ",
"oo ooo o o oo ooo ",
"oo ooo oo o oo o ooo ",
"oo ooo oo o oo o ooo ",
"oo ooo oo o oo o ooo "
};
rnd_tool_t pcb_tool_thermal = {
"thermal", NULL, NULL, 100, thrm_icon, RND_TOOL_CURSOR_NAMED("iron_cross"), 0,
NULL,
NULL,
pcb_tool_thermal_notify_mode,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL, /* escape */
0
};
|