/* $Id: rtree.h,v 1.6 2006/03/22 23:17:21 danmc Exp $ */ /* * COPYRIGHT * * PCB, interactive printed circuit board design * Copyright (C) 1994,1995,1996 Thomas Nau * Copyright (C) 1998,1999,2000,2001 harry eaton * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. * * Contact addresses for paper mail and Email: * harry eaton, 6697 Buttonhole Ct, Columbia, MD 21044 USA * haceaton@aplcomm.jhuapl.edu * */ /* this file, rtree.h, was written and is * Copyright (c) 2004 harry eaton, it's based on C. Scott's kdtree.h template */ /* prototypes for r-tree routines. */ #ifndef __RTREE_INCLUDED__ #define __RTREE_INCLUDED__ #include "global.h" /* create an rtree from the list of boxes. if 'manage' is true, then * the tree will take ownership of 'boxlist' and free it when the tree * is destroyed. */ rtree_t *r_create_tree (const BoxType * boxlist[], int N, int manage); /* destroy an rtree */ void r_destroy_tree (rtree_t ** rtree); Boolean r_delete_entry (rtree_t * rtree, const BoxType * which); void r_insert_entry (rtree_t * rtree, const BoxType * which, int manage); void r_substitute (rtree_t * rtree, const BoxType * before, const BoxType * after); /* generic search routine */ /* region_in_search should return true if "what you're looking for" is * within the specified region; regions, like rectangles, are closed on * top and left and open on bottom and right. * rectangle_in_region should return true if the given rectangle is * "what you're looking for". * The search will find all rectangles matching the criteria given * by region_in_search and rectangle_in_region and return a count of * how many things rectangle_in_region returned true for. closure is * used to abort the search if desired from within rectangel_in_region * Look at the implementation of r_region_is_empty for how to * abort the search if that is the desired behavior. */ int r_search (rtree_t * rtree, const BoxType * starting_region, int (*region_in_search) (const BoxType * region, void *cl), int (*rectangle_in_region) (const BoxType * box, void *cl), void *closure); /* -- special-purpose searches build upon r_search -- */ /* return 0 if there are any rectangles in the given region. */ int r_region_is_empty (rtree_t * rtree, const BoxType * region); void __r_dump_tree (struct rtree_node *, int); #endif