SimpleMarkerSymbol.cpp
17.2 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
#include "SimpleMarkerSymbol.h"
#include "clsUtil.h"
#include "clsCrSurf.h"
#include "clsXML.h"
#include "DataCollection.h"
#include "clsJson.h"
#include "clsPtree.h"
#define _USE_MATH_DEFINES
#include <math.h>
namespace DmapCore_30
{
SimpleMarkerSymbol::SimpleMarkerSymbol()
{
m_iAntialiasing = CAIRO_ANTIALIAS_BEST;
m_bBoundary = true;
m_iColor = clsUtil::RandomColor();
clsUtil::ToCairoColor(m_iColor, r, g, b, a);
m_iType = 0;
m_iOutline = 0xff000000;
clsUtil::ToCairoColor(m_iOutline, r1, g1, b1, a1);
m_sPNG = "";
m_dWidth = 1;
m_dSize = 5;
m_sXML = "";
m_simpleRenderer = false;
}
SimpleMarkerSymbol::~SimpleMarkerSymbol()
{
if (surfImage)
{
cairo_surface_destroy(surfImage);
surfImage = nullptr;
}
}
SimpleMarkerSymbol* SimpleMarkerSymbol::CreateNew()
{
SimpleMarkerSymbol * dest = new SimpleMarkerSymbol();
return dest;
}
int SimpleMarkerSymbol::RendererType()
{
return dmapSimpleMarkerSymbol;
}
bool SimpleMarkerSymbol::Parse(boost::property_tree::ptree &pt, AppendBuffer *f)
{
clsXML clsX(f, "SIMPLEMARKERSYMBOL");
clsXML::ParseEnum("antialiasing", pt, f, &m_iAntialiasing, "antialias_default", "antialias_none", "antialias_gray", "antialias_subpixel", "antialias_fase", "antialias_good", "antialias_best", "true", "false");
clsXML::XMLAttrParse(pt, f, &m_sPNG, "png");
clsXML::ParseEnum("type", pt, f, &m_iType, "circle", "triangle", "square", "cross", "star", "icon");
clsXML::XMLAttrParseColor(pt, f, &m_iColor, "color", "transparency");
clsXML::XMLAttrParse(pt, f, &m_bBoundary, "boundary");
clsXML::XMLAttrParseColor(pt, f, &m_iOutline, "outline", "outlinetransparency");
clsXML::XMLAttrParse(pt, f, &m_dWidth, "width");
clsXML::XMLAttrParse(pt, f, &m_dSize, "size");
//if (node)
{
clsUtil::ToCairoColor(m_iColor, r, g, b, a);
clsUtil::ToCairoColor(m_iOutline, r1, g1, b1, a1);
if (m_sPNG != "")
{
m_sPNG = GetFilePath(m_sPNG);
if (FILE *file = fopen(m_sPNG.c_str(), "r")) {
fclose(file);
surfImage = cairo_image_surface_create_from_png(m_sPNG.c_str());
}
else {
m_sPNG = "";
}
}
}
return true;
}
bool SimpleMarkerSymbol::ParsePtree( boost::property_tree::ptree &pt)
{
boost::property_tree::ptree ptRenderer;
string png = this->m_sPNG;
if(png != "" && png.find("symbollib") != png.npos)
{
int pos = png.find("symbollib");
png = "../" + png.substr(pos,png.length() - pos);
}
clsPtree::PtreeAttrParse("png", ptRenderer, png);
clsPtree::ParseEnum("type", ptRenderer, m_iType, "circle", "triangle", "square", "cross", "star", "icon");
clsPtree::PtreeAttrParseColor("color", "transparency", ptRenderer, m_iColor);
clsPtree::PtreeAttrParse("boundary", ptRenderer, m_bBoundary);
clsPtree::PtreeAttrParseColor("outline", "outlinetransparency", ptRenderer, m_iOutline);
clsPtree::PtreeAttrParse("width", ptRenderer, m_dWidth);
clsPtree::PtreeAttrParse("size", ptRenderer, m_dSize);
pt.add_child("SIMPLEMARKERSYMBOL",ptRenderer);
return true;
}
void SimpleMarkerSymbol::ToJson(AppendBuffer* ab)
{
char buff[300] = {0};
char resultbuff[5000] = {0};
sprintf(resultbuff, R"("SIMPLEMARKERSYMBOL":{"antialiasing":"antialias_default",)");
string png = this->m_sPNG;
if(png != "" && png.find("symbollib") != png.npos)
{
int pos = png.find("symbollib");
png = "../" + png.substr(pos,png.length() - pos);
}
clsJson::JsonAttrParse("png", resultbuff, buff, png);
clsJson::ParseEnum("type", resultbuff, buff, m_iType, "circle", "triangle", "square", "cross", "star", "icon");
clsJson::JsonAttrParseColor("color", "transparency", resultbuff, buff, m_iColor);
clsJson::JsonAttrParse("boundary", resultbuff, buff, m_bBoundary);
clsJson::JsonAttrParseColor("outline", "outlinetransparency", resultbuff, buff, m_iOutline);
clsJson::JsonAttrParse("width", resultbuff, buff, m_dWidth);
clsJson::JsonAttrParse("size", resultbuff, buff, m_dSize);
clsJson::JsonAttrEnd(resultbuff);
ab->AppendString(resultbuff);
}
int SimpleMarkerSymbol::GetAntialiasing()
{
return m_iAntialiasing;
}
bool SimpleMarkerSymbol::SetAntialiasing(int iAntialiasing)
{
m_iAntialiasing = iAntialiasing;
return true;
}
unsigned int SimpleMarkerSymbol::GetColor()
{
return m_iColor;
}
bool SimpleMarkerSymbol::SetColor(unsigned int color)
{
clsUtil::ToCairoColor(color, r, g, b, a);
m_iColor = color;
return true;
}
int SimpleMarkerSymbol::GetType()
{
return m_iType;
}
bool SimpleMarkerSymbol::SetType(int type)
{
if (type<0 || type >6) return false;
m_iType = type;
return true;
}
bool SimpleMarkerSymbol::GetBoundary()
{
return m_bBoundary;
}
bool SimpleMarkerSymbol::SetBoundary(bool boundary)
{
m_bBoundary = boundary;
return true;
}
unsigned int SimpleMarkerSymbol::GetOutline()
{
return m_iOutline;
}
bool SimpleMarkerSymbol::SetOutline(unsigned int outline)
{
clsUtil::ToCairoColor(outline, r1, g1, b1, a1);
m_iOutline = outline;
return true;
}
const char* SimpleMarkerSymbol::GetPNG()
{
return m_sPNG.c_str();
}
bool SimpleMarkerSymbol::SetPNG(const char* png)
{
surfImage = nullptr;
if (png == 0)m_sPNG = "";
else m_sPNG = png;
if (m_sPNG.size() > 0)
{
surfImage = cairo_image_surface_create_from_png(png);
}
return true;
}
double SimpleMarkerSymbol::GetWidth()
{
return m_dWidth;
}
bool SimpleMarkerSymbol::SetWidth(double width)
{
if (width < 0)return false;
m_dWidth = width;
return true;
}
double SimpleMarkerSymbol::GetSize()
{
return m_dSize;
}
bool SimpleMarkerSymbol::SetSize(double Size)
{
if (Size < 0)return false;
m_dSize = Size;
return true;
}
bool SimpleMarkerSymbol::DrawPOINT(clsCrSurf* clsCS, clsStruct::POINT*p)
{
double x = p->x;
double y = p->y;
cairo_t* cr = clsCS->m_pCr;
double width = 0.5 * m_dSize;
if (m_sPNG != "")
{
//这样做实现不了边框!!!
// 是否该用 png 平铺一样的实现,提供边框
cairo_surface_t* image = surfImage;// m_pImage->m_pSurf;
if (image == 0)return false;
double w = cairo_image_surface_get_width(image);
double h = cairo_image_surface_get_height(image);
cairo_set_source_surface(cr, image, x - 0.5*w, y - 0.5*h);
cairo_paint(cr);
}
else
{
switch (m_iType)
{
case dmapPointTypeCross:
{
cairo_move_to(cr, x - width, y);
cairo_line_to(cr, x + width, y);
cairo_move_to(cr, x, y - width);
cairo_line_to(cr, x, y + width);
cairo_set_source_rgba(cr, r, g, b, a);
cairo_set_line_width(cr, 1);
cairo_stroke(cr);
break;
}
case dmapPointTypeCircle:
{
cairo_new_path(cr);
cairo_arc(cr, x, y, width, 0, 2 * M_PI);
cairo_set_source_rgba(cr, r, g, b, a);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
//cairo_fill(cr); //不留边框填充
break;
}
case dmapPointTypeTriangle:
{
cairo_new_sub_path(cr);
cairo_move_to(cr, x - width, y + width * 0.57735026918962576450914878050196);
cairo_line_to(cr, x + width, y + width * 0.57735026918962576450914878050196);
cairo_line_to(cr, x, y - width * 1.154700538379251529018297561004);
cairo_close_path(cr);
cairo_set_source_rgba(cr, r, g, b, a);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
break;
}
case dmapPointTypeSquare:
{
cairo_new_sub_path(cr);
cairo_move_to(cr, x - width, y - width);
cairo_line_to(cr, x - width, y + width);
cairo_line_to(cr, x + width, y + width);
cairo_line_to(cr, x + width, y - width);
cairo_close_path(cr);
cairo_set_source_rgb(cr, r, g, b);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
break;
}
case dmapPointTypeStar:
{
double radx[5] = { -7.0534, 7.0534, 11.4127, 0.0000, -11.4127 };
double rady[5] = { -9.7082, -9.7082, 3.7082, 12.0000, 3.7082 };
double Radx[5] = { -38.0423, -0.0000, 38.0423, 23.5114, -23.5114 };
double Rady[5] = { -12.3607, -40.0000, -12.3607, 32.3607, 32.3607 };
cairo_new_sub_path(cr);
double rat = width / 40;
for (int i = 0; i < 5; i++)
{
if (i == 0)
{
cairo_move_to(cr, x + Radx[i] * rat, y + Rady[i] * rat);
cairo_line_to(cr, x + radx[i] * rat, y + rady[i] * rat);
}
else
{
cairo_line_to(cr, x + Radx[i] * rat, y + Rady[i] * rat);
cairo_line_to(cr, x + radx[i] * rat, y + rady[i] * rat);
}
}
cairo_close_path(cr);
cairo_set_source_rgba(cr, r, g, b, a);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
break;
}
default:
break;
}
}
return true;
}
bool SimpleMarkerSymbol::DrawMPOINT(clsCrSurf* pClsCS, clsStruct::LINE* pLine)
{
int nPoint = pLine->nPoint;
clsStruct::POINT* pPoint = pLine->p;
for (int i = 0; i < nPoint; i++)
this->DrawPOINT(pClsCS, pPoint + i);
return true;
}
bool SimpleMarkerSymbol::DrawData(clsCrSurf* clsCS, DataCollection* data, bool drawSimpleData, char* pFlag)
{
int structType = data->m_iStructType;
int iPartCount = data->m_iPartCount;
clsUtil::DoSetAntialias(m_iAntialiasing, clsCS->m_pCr);
switch (structType)
{
case clsStruct::Struct_Point:
{
clsStruct::POINT* pPoint = (clsStruct::POINT*)data->m_pData;
for (int i = 0; i < iPartCount; i++)
{
this->DrawPOINT(clsCS, pPoint + i);
}
break;
}
case clsStruct::Struct_Line:
{
for (int i = 0; i < iPartCount; i++)
{
clsStruct::LINE* pMPoint = (clsStruct::LINE*)data->m_pData;
this->DrawMPOINT(clsCS, pMPoint + i);
}
break;
}
default:
break;
}
return true;
}
bool SimpleMarkerSymbol::DrawData(clsCrSurf* clsCS, DataCollection* data, int dataIndex, char* pFlag)
{
int structType = data->m_iStructType;
int iPartCount = data->m_iPartCount;
clsUtil::DoSetAntialias(m_iAntialiasing, clsCS->m_pCr);
switch (structType)
{
case clsStruct::Struct_Point:
{
clsStruct::POINT* pPoint = (clsStruct::POINT*)data->m_pData;
this->DrawPOINT(clsCS, pPoint + dataIndex);
break;
}
case clsStruct::Struct_Line:
{
clsStruct::LINE* pMPoint = (clsStruct::LINE*)data->m_pData;
this->DrawMPOINT(clsCS, pMPoint + dataIndex);
break;
}
default:
break;
}
return true;
}
bool SimpleMarkerSymbol::DrawLegend(clsCrSurf* pClsCS, shared_ptr<legendParamater> pLegendParamater,int layerType, char* pFlag)
{
if(layerType != 0)
return false;
pLegendParamater->next(pFlag);
cairo_t* cr = pClsCS->m_pCr;
if(pFlag)
{
cairo_set_source_rgb(cr, 0, 0, 0); //设置画笔颜色,也就是红,绿,蓝,这里设置成绿色。
cairo_select_font_face(cr, pLegendParamater->font.c_str(),
CAIRO_FONT_SLANT_NORMAL,
pLegendParamater->isbold? CAIRO_FONT_WEIGHT_BOLD:CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size(cr, pLegendParamater->fontSize);
cairo_move_to(cr, pLegendParamater->pixXIndex + pLegendParamater->size_x + 10,
pLegendParamater->pixYIndex + pLegendParamater->size_y -3);
cairo_show_text(cr, pFlag);
}
double x = pLegendParamater->pixXIndex + pLegendParamater->size_x/2;
double y = pLegendParamater->pixYIndex + pLegendParamater->size_y/2 - 1 ;
double width = 0.5 * m_dSize;
if (m_sPNG != "")
{
//这样做实现不了边框!!!
// 是否该用 png 平铺一样的实现,提供边框
cairo_surface_t* image = surfImage;// m_pImage->m_pSurf;
if (image == 0)return false;
double w = cairo_image_surface_get_width(image);
double h = cairo_image_surface_get_height(image);
cairo_set_source_surface(cr, image, x - 0.5*w, y - 0.5*h);
cairo_paint(cr);
}
else
{
switch (m_iType)
{
case dmapPointTypeCross:
{
cairo_move_to(cr, x - width, y);
cairo_line_to(cr, x + width, y);
cairo_move_to(cr, x, y - width);
cairo_line_to(cr, x, y + width);
cairo_set_source_rgba(cr, r, g, b, a);
cairo_set_line_width(cr, 1);
cairo_stroke(cr);
break;
}
case dmapPointTypeCircle:
{
cairo_new_path(cr);
cairo_arc(cr, x, y, width, 0, 2 * M_PI);
cairo_set_source_rgba(cr, r, g, b, a);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
//cairo_fill(cr); //不留边框填充
break;
}
case dmapPointTypeTriangle:
{
cairo_new_sub_path(cr);
cairo_move_to(cr, x - width, y + width * 0.57735026918962576450914878050196);
cairo_line_to(cr, x + width, y + width * 0.57735026918962576450914878050196);
cairo_line_to(cr, x, y - width * 1.154700538379251529018297561004);
cairo_close_path(cr);
cairo_set_source_rgba(cr, r, g, b, a);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
break;
}
case dmapPointTypeSquare:
{
cairo_new_sub_path(cr);
cairo_move_to(cr, x - width, y - width);
cairo_line_to(cr, x - width, y + width);
cairo_line_to(cr, x + width, y + width);
cairo_line_to(cr, x + width, y - width);
cairo_close_path(cr);
cairo_set_source_rgb(cr, r, g, b);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
break;
}
case dmapPointTypeStar:
{
double radx[5] = { -7.0534, 7.0534, 11.4127, 0.0000, -11.4127 };
double rady[5] = { -9.7082, -9.7082, 3.7082, 12.0000, 3.7082 };
double Radx[5] = { -38.0423, -0.0000, 38.0423, 23.5114, -23.5114 };
double Rady[5] = { -12.3607, -40.0000, -12.3607, 32.3607, 32.3607 };
cairo_new_sub_path(cr);
double rat = width / 40;
for (int i = 0; i < 5; i++)
{
if (i == 0)
{
cairo_move_to(cr, x + Radx[i] * rat, y + Rady[i] * rat);
cairo_line_to(cr, x + radx[i] * rat, y + rady[i] * rat);
}
else
{
cairo_line_to(cr, x + Radx[i] * rat, y + Rady[i] * rat);
cairo_line_to(cr, x + radx[i] * rat, y + rady[i] * rat);
}
}
cairo_close_path(cr);
cairo_set_source_rgba(cr, r, g, b, a);
if (m_bBoundary)
{
cairo_fill_preserve(cr);//留边框填充
/* 接下来是画边框 */
cairo_set_line_width(cr, m_dWidth);
cairo_set_source_rgba(cr, r1, g1, b1, a1);
cairo_stroke(cr);
}
else
{
cairo_fill(cr); //不留边框填充
}
break;
}
default:
break;
}
}
return true;
}
}