9 #include "../Numerics/recast.h"
10 #include "../Exceptions/exceptions.h"
11 #include "../MemOps/MemOps.h"
13 int IsInPolySerial(
double* in,
double* xc,
double* yc,
int numvertices,
double* x,
double* y,
int nods,
int edgevalue);
14 int ExpWrite(
int nprof,
int* profnvertices,
double** pprofx,
double** pprofy,
char* domainname);
15 int pnpoly(
int npol,
double *xp,
double *yp,
double x,
double y,
int edgevalue);
17 template <
class doubletype>
int IsInPoly(doubletype* in,
double* xc,
double* yc,
int numvertices,
double* x,
double* y,
int i0,
int i1,
int edgevalue){
28 for (i=1;i<numvertices;i++){
29 if(xc[i]<xmin) xmin=xc[i];
30 if(xc[i]>xmax) xmax=xc[i];
31 if(yc[i]<ymin) ymin=yc[i];
32 if(yc[i]>ymax) ymax=yc[i];
40 if (reCast<bool,doubletype>(value)){
47 if(x0<xmin || x0>xmax || y0<ymin || y0>ymax){
51 value=
pnpoly(numvertices,xc,yc,x0,y0,edgevalue);
57 template <
class doubletype>
int ExpRead(
int* pnprof,
int** pprofnvertices,doubletype*** ppprofx,doubletype*** ppprofy,
bool** pclosed,
char* domainname){
69 int *profnvertices = NULL;
70 doubletype **pprofx = NULL;
71 doubletype **pprofy = NULL;
81 if ((fid=fopen(domainname,
"r"))==NULL){
82 _error_(
"could not find file \"" << domainname<<
"\". Make sure that the file and path provided exist.");
89 if(fscanf(fid,
"%255s %255s\n",chardummy,chardummy)!=2)
_error_(
"Could not read " << domainname);
91 if(fscanf(fid,
"%255s %255s\n",chardummy,chardummy)!=2)
_error_(
"Could not read " << domainname<<
"(Expecting ## Icon:0 and read "<<chardummy<<
")");
93 if(fscanf(fid,
"%255s %255s %255s %255s\n",chardummy,chardummy,chardummy,chardummy)!=4)
_error_(
"Could not read " << domainname);
94 if(fscanf(fid,
"%20i %255s\n",&n,chardummy)!=2)
_error_(
"Could not read number of points in "<<domainname);
96 if(fscanf(fid,
"%255s %255s %255s %255s %255s\n",chardummy,chardummy,chardummy,chardummy,chardummy)!=5)
_error_(
"Could not read " << domainname);
98 if(fscanf(fid,
"%30lf %30lf\n",&ddummy,&ddummy)!=2){
99 _error_(
"Could not read coordinate of vertex "<< i <<
" of "<<domainname);
108 profnvertices = xNew<int>(nprof);
109 pprofx = xNew<doubletype*>(nprof);
110 pprofy = xNew<doubletype*>(nprof);
111 for (i=0;i<nprof;i++){
115 closed=xNew<bool>(nprof);
118 fseek(fid,0,SEEK_SET);
121 for(counter=0;counter<nprof;counter++){
125 if(fscanf(fid,
"%255s %255s\n",chardummy,chardummy)!=2)
_error_(
"Could not read " << domainname);
127 if(fscanf(fid,
"%255s %255s\n",chardummy,chardummy)!=2)
_error_(
"Could not read " << domainname);
129 if(fscanf(fid,
"%255s %255s %255s %255s\n",chardummy,chardummy,chardummy,chardummy)!=4)
_error_(
"Could not read " << domainname);
132 if(fscanf(fid,
"%20i %255s\n",&n,chardummy)!=2)
_error_(
"Could not read number of points in "<<domainname);
136 if(fscanf(fid,
"%255s %255s %255s %255s %255s\n",chardummy,chardummy,chardummy,chardummy,chardummy)!=5)
_error_(
"Could not read " << domainname);
139 x=xNew<doubletype>(n);
140 y=xNew<doubletype>(n);
144 if(fscanf(fid,
"%30lf %30lf\n",&x[i],&y[i])!=2){
145 _error_(
"Could not read coordinate of vertex "<<i<<
" of "<<domainname);
151 if((x[0]==x[n-1]) && (y[0]==y[n-1])){
156 profnvertices[counter]=n;
167 *pprofnvertices=profnvertices;
170 if(pclosed) *pclosed=closed;
171 else xDelete<bool>(closed);