-
Notifications
You must be signed in to change notification settings - Fork 0
/
DgBoundedIDGG.cpp
198 lines (155 loc) · 5.35 KB
/
DgBoundedIDGG.cpp
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
////////////////////////////////////////////////////////////////////////////////
//
// DgBoundedIDGG.cpp: DgBoundedIDGG class implementation
//
// Version 6.1 - Kevin Sahr, 5/23/13
//
////////////////////////////////////////////////////////////////////////////////
#include <cstdint>
#include "DgBoundedIDGG.h"
#include "DgBoundedRF2D.h"
#include "DgBoundedHexC2RF2D.h"
#include "DgIDGG.h"
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
DgBoundedIDGG::DgBoundedIDGG (const DgIDGG& IDGGin)
: DgBoundedRF<DgQ2DICoord, DgGeoCoord, long double> (IDGGin, IDGGin.firstAdd(),
IDGGin.lastAdd(), IDGGin.undefAddress(), false), IDGG_ (IDGGin),
bnd2D_ (0)
{
// create the surrogate boundedRF2D
if (idgg().gridTopo() == "HEXAGON" && !idgg().isClassI())
{
bnd2D_ = new DgBoundedHexC2RF2D(idgg().grid2D(), DgIVec2D(0, 0),
DgIVec2D(idgg().maxI(), idgg().maxJ()));
}
else
{
bnd2D_ = new DgBoundedRF2D(idgg().grid2D(), DgIVec2D(0, 0),
DgIVec2D(idgg().maxI(), idgg().maxJ()));
}
// calculate the offsetPerQuad
if (idgg().gridTopo() == "TRIANGLE")
{
offsetPerQuad_ = idgg().mag() * (idgg().maxJ() + 1);
}
else if (idgg().gridTopo() == "HEXAGON" && idgg().aperture() == 3)
{
if (!idgg().isClassI())
offsetPerQuad_ = (idgg().mag() / 3) * idgg().mag();
else
offsetPerQuad_ = idgg().mag() * idgg().mag();
}
else
{
offsetPerQuad_ = idgg().mag() * idgg().mag();
}
// calculate the total size
size_ = 10 * offsetPerQuad();
if (firstAdd().quadNum() == 0) size_ += 2;
// validate the size
std::uint64_t tmpSize = size();
if (firstAdd().quadNum() == 0) tmpSize -= 2;
/*
cout << "mag: " << idgg().mag() << ", /3: " << idgg().mag() / 3 << ", size: " << size() << ", tmpSize: " << tmpSize << ", tmpSize / 10: " << tmpSize/10 << endl;
cout << "quadNum: " << firstAdd().quadNum() << ", offsetPerQuad: " << offsetPerQuad() << endl;
*/
if ((tmpSize / 10) != offsetPerQuad())
{
report("DgBoundedIDGG::DgBoundedIDGG() invalid size setting due to "
"possible overflow", DgBase::Warning);
validSize_ = false;
}
else validSize_ = true;
} // DgBoundedIDGG::DgBoundedIDGG
////////////////////////////////////////////////////////////////////////////////
bool
DgBoundedIDGG::validAddress (const DgQ2DICoord& add) const
{
if (add == invalidAdd()) return false;
if (add.quadNum() == 0 || add.quadNum() == 11)
{
if (firstAdd().quadNum() == 0)
{
if (add.coord() == DgIVec2D(0, 0)) return true;
else return false;
}
else
return false;
}
else
{
return add.coord().i() >= 0 && add.coord().i() <= idgg().maxI() &&
add.coord().j() >= 0 && add.coord().j() <= idgg().maxJ();
}
} // DgBoundedIDGG::validAddress
////////////////////////////////////////////////////////////////////////////////
DgQ2DICoord&
DgBoundedIDGG::incrementAddress (DgQ2DICoord& add) const
{
if (!validAddress(add)) return add = invalidAdd();
else if (add == lastAdd() || add == endAdd()) return add = endAdd();
if (add.quadNum() == 0) return add = DgQ2DICoord(1, DgIVec2D(0, 0));
if (add.coord() == bnd2D().lastAdd())
return add = DgQ2DICoord(add.quadNum() + 1, DgIVec2D(0, 0));
else
{
DgIVec2D tmpCoord(add.coord());
bnd2D().incrementAddress(tmpCoord);
add.setCoord(tmpCoord);
}
return add;
} // DgQ2DICoord& DgBoundedIDGG::incrementAddress
////////////////////////////////////////////////////////////////////////////////
DgQ2DICoord&
DgBoundedIDGG::decrementAddress (DgQ2DICoord& add) const
{
if (!validAddress(add) || add == firstAdd()) return add = invalidAdd();
if (add.coord() == DgIVec2D(0, 0))
{
if (add.quadNum() == 1)
return add = DgQ2DICoord(0, DgIVec2D(0, 0));
return add = DgQ2DICoord(add.quadNum() - 1,
DgIVec2D(idgg().maxI(), idgg().maxJ()));
}
DgIVec2D tmpCoord(add.coord());
bnd2D().decrementAddress(tmpCoord);
add.setCoord(tmpCoord);
return add;
} // DgQ2DICoord& DgBoundedIDGG::decrementAddress
////////////////////////////////////////////////////////////////////////////////
std::uint64_t
DgBoundedIDGG::seqNumAddress (const DgQ2DICoord& add) const
{
std::uint64_t offset = 0;
int q = add.quadNum();
// get the quad offset
if (q > 0)
{
if (firstAdd().quadNum() == 0) offset++;
offset += (q - 1) * offsetPerQuad();
}
// now account for seqNum within the quad
std::uint64_t sNum = offset + bnd2D().seqNumAddress(add.coord());
if (!zeroBased())
sNum++;
return sNum;
}
////////////////////////////////////////////////////////////////////////////////
DgQ2DICoord
DgBoundedIDGG::addFromSeqNum (std::uint64_t sNum) const
{
if (!zeroBased())
sNum--;
if (sNum >= size())
return invalidAdd();
if (sNum == 0)
return firstAdd();
// adjust for quad 0 if applicable
if (firstAdd().quadNum() == 0)
sNum--;
// determine quad and adjust accordingly
std::uint64_t q = sNum / offsetPerQuad() + 1; // note int division
sNum -= (q - 1) * offsetPerQuad();
return DgQ2DICoord((int) q, bnd2D().addFromSeqNum(sNum));
}