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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
|
// File: CGM_Driver.cxx
// Created: Fri Sep 13 12:04:31 1996
// Author: DCB
// Copyright: MatraDatavision 1998
#define xBUG // GG 140699
// Ascendante compatibillity using OLD driver constructor
// must generates directly a file.
#define IMP020701 //GG
// Don't creates an external reference named error please ...
// Thanks to SAMTECH
#include <CGM_Driver.ixx>
#include <MFT_FontManager.hxx>
#include <PlotMgt_TextManager.hxx>
#include <PlotMgt_HListOfMFTFonts.hxx>
#include <TShort_HArray1OfShortReal.hxx>
#include <Aspect_Units.hxx>
#include <Aspect_ColorMapEntry.hxx>
#include <Aspect_TypeMapEntry.hxx>
#include <Aspect_WidthMapEntry.hxx>
#include <Aspect_GenericColorMap.hxx>
#include <Aspect_RGBPixel.hxx>
#include <Aspect_DriverError.hxx>
#include <TColStd_DataMapOfIntegerInteger.hxx>
#include <OSD_Environment.hxx>
#include <cgmlib.hxx>
#include <AlienImage.hxx>
#include <Image_Image.hxx>
static Handle(Image_Image) myImage;
/////////////////////////////////////////////////////////////////////////*/
#define TRACE 0
#define PPI (float)(72.F/(0.0254005F METER))
#define MAXPARAM 1024
#define TRANSFORMCOLOR(c) \
{ if (TypeOfCgm == CgmCharEncoding) c = (((c+1) << 2) - 1); }
#define DRAD (PI/180.)
#define DEFPLOTTER "DIRECT_CGM"
//-----------------------------------------------------------------
// Standard CGM settings.
//-----------------------------------------------------------------
#define CGMVER 1
#define INTBITS 32
#define MAXREAL 32767.0000F // Clear text
#define MINREAL -32768.0000F
#define REALBITS 15 // Character encoding
#define REALPLACES -5
#define REALDEFEXP 0
#define REALEXP 0
#define REALFORM 0 // Binary encoding
#define REALWHOLE 15
#define REALFRACTION 20
#define INDEXBITS 8
#define CLRBITS 16
#define CLRINDBITS 8
#define SCALEMOD ABSTRACT
#define SCALFACT 1
#define IMCOLRPREC 65536
#define BACKRED 255
#define BACKGREEN 255
#define BACKBLUE 255
//-----------------------------------------------------------------
// CGM states.
//-----------------------------------------------------------------
typedef enum {
CgmBinary,
CgmCharEncoding,
CgmClearText
} CgmType;
typedef enum {
mfDesc,
picDesc,
picBody,
imgDraw
} CGMstate;
static CGMstate myState;
static TColStd_DataMapOfIntegerInteger aTypeIndex;
static CgmType TypeOfCgm;
//Definition of the C handle who handles the CGM metafile
FILE* cgmo;
//Those C arrays are the parameters used by the CGM library.
long ptablong[MAXPARAM];
float ptabreal[MAXPARAM];
char ptabchar[MAXPARAM];
//Declare the array in wich WIDTHS will be put (an internal widthmap).
float* WIDTHMAP = NULL;
// Error string
#ifndef IMP020701
char error[1024];
#endif
//=============================================================
CGM_Driver::CGM_Driver (const Handle(PlotMgt_Plotter)& aPlotter,
const Standard_CString aName,
const Quantity_Length aDX,
const Quantity_Length aDY,
const Aspect_TypeOfColorSpace aTypeOfColorSpace)
: PlotMgt_PlotterDriver (aPlotter, aName)
{
BeginFile (aPlotter, aDX, aDY, aTypeOfColorSpace);
}
//=============================================================
CGM_Driver::CGM_Driver (const Standard_CString aName,
const Quantity_Length aDX,
const Quantity_Length aDY,
const Aspect_TypeOfColorSpace aTypeOfColorSpace)
: PlotMgt_PlotterDriver (aName)
{
Handle(PlotMgt_Plotter) thePlotter =
#ifdef BUG
new PlotMgt_Plotter(TCollection_AsciiString(DEFPLOTTER));
#else
new PlotMgt_Plotter(TCollection_AsciiString(DEFPLOTTER),Standard_True);
#endif
BeginFile (thePlotter, aDX, aDY, aTypeOfColorSpace);
}
//=============================================================
void CGM_Driver::BeginFile (const Handle(PlotMgt_Plotter)& aPlotter,
const Quantity_Length aDX,
const Quantity_Length aDY,
const Aspect_TypeOfColorSpace aTypeOfColorSpace)
{
SetPlotter (aPlotter);
// Initialization of buffers
memset (ptablong, 0, sizeof(ptablong));
memset (ptabreal, 0, sizeof(ptabreal));
memset (ptabchar, 0, sizeof(ptabchar));
myWidth = Standard_ShortReal(aDX - 2*myPaperMargin);
myHeight = Standard_ShortReal(aDY - 2*myPaperMargin);
myTypeOfColorSpace = aTypeOfColorSpace;
// Set the type of CGM file by reading the environment variable "CSF_CGM_Type".
OSD_Environment cgmType = OSD_Environment ( "CSF_CGM_Type" );
if (cgmType.Value().IsEmpty()) TypeOfCgm = CgmClearText;
else {
if (cgmType.Value().IsEqual("BIN")) {
TypeOfCgm = CgmBinary;
} else if (cgmType.Value().IsEqual("CAR")) {
TypeOfCgm = CgmCharEncoding;
} else if (cgmType.Value().IsEqual("TEX")) {
TypeOfCgm = CgmClearText;
} else TypeOfCgm = CgmClearText;
}
// Open the CGM metafile
cgmo = OPEN_FILE ((Standard_PCharacter)myFileName.ToCString(), TypeOfCgm + 1);
if (!cgmo) {
#ifdef IMP020701
char error[1024];
#endif
sprintf (error, "****** CGM_Driver ERROR, unable to open file '%s'\n",
myFileName.ToCString());
Aspect_DriverError::Raise(error);
}
// Write the metafile descriptor
myFileIsOpened = Standard_True;
myState = mfDesc;
InitializeDriver (myFileName.ToCString());
}
//=============================================================
void CGM_Driver::Close()
{
if (myFileIsOpened) {
// Declare the end of the CGM metafile
WriteData (ENDMF, ptablong, ptabreal, ptabchar);
// Free memory allocated for WIDTHS
if (WIDTHMAP)
delete[] WIDTHMAP;
// Close the CGM metafile
CLOSE_FILE ();
myFileIsOpened = Standard_False;
}
aTypeIndex.Clear ();
}
//=============================================================
void CGM_Driver::BeginDraw ()
{
// Create TextManager
myTextManager = new PlotMgt_TextManager(this);
//============================================
if (myCurrentPage <= 0) myCurrentPage = 1;
else myCurrentPage++;
// Write the picture descriptor in the CGM metafile
myState = picDesc;
// Declare the new image
ptablong[0] = myCurrentPage;
WriteData (BEGPIC, ptablong, ptabreal, ptabchar);
// Set the color selection mode (always index)
old.color_mode = DIRECT;
cur.color_mode = INDEXED;
WriteData (COLRMODE, ptablong, ptabreal, ptabchar);
// Set the scale mode
cur.scale_mode = SCALEMOD;
cur.scale_factor = (float)SCALFACT;
WriteData (SCALEMODE, ptablong, ptabreal, ptabchar);
// Set the method to compute line width
old.linewidth_mode = SCALED;
cur.linewidth_mode = ABS;
WriteData (LINEWIDTHMODE, ptablong, ptabreal, ptabchar);
//Set the method to compute edge width
old.edgewidth_mode = SCALED;
cur.edgewidth_mode = ABS;
WriteData (EDGEWIDTHMODE, ptablong, ptabreal, ptabchar);
// Declare the window in which the picture will be drawn
cur.vdc_extent.a.x.real = (float)0;
cur.vdc_extent.a.y.real = (float)0;
cur.vdc_extent.b.x.real = myWidth;
cur.vdc_extent.b.y.real = myHeight;
WriteData (VDCEXT, ptablong, ptabreal, ptabchar);
// set the background color
cur.back.red = BACKRED; TRANSFORMCOLOR (cur.back.red);
cur.back.green = BACKGREEN; TRANSFORMCOLOR (cur.back.green);
cur.back.blue = BACKBLUE; TRANSFORMCOLOR (cur.back.blue);
WriteData (BACKCOLR, ptablong, ptabreal, ptabchar);
// Declare the body of the picture
WriteData (BEGPICBODY, ptablong, ptabreal, ptabchar);
myState = picBody;
// Write color map in the picture body
InitializeColorMap(ColorMap ());
// Set clipping rectangle
cur.clip_rect.a.x.real = (float)0;
cur.clip_rect.a.y.real = (float)0;
cur.clip_rect.b.x.real = myWidth;
cur.clip_rect.b.y.real = myHeight;
WriteData (CLIPRECT, ptablong, ptabreal, ptabchar);
// Set clip indicator to ON
cur.clip_ind = ON;
WriteData (CLIP, ptablong, ptabreal, ptabchar);
// Reset default values for line & fill color and type of line
oldatt.line.index = -1;
oldatt.fill.index = -1;
oldatt.edge.index = -1;
oldatt.line_type = -1;
oldatt.edge_type = -1;
}
//=============================================================
void CGM_Driver::EndDraw (const Standard_Boolean )//dontFlush)
{
// Close the current picture
WriteData (ENDPIC, ptablong, ptabreal, ptabchar);
myImage.Nullify ();
}
//=============================================================
void CGM_Driver::InitializeColorMap (const Handle(Aspect_ColorMap)& aColorMap)
{
// CGM version 1 allows the COLOR MAP setting only in the body of a picture.
if (myState == picBody || myState == imgDraw) {
Standard_Real r,g,b;
Standard_Integer index,cpt,tab=2,Size = aColorMap->Size();
Aspect_ColorMapEntry entry;
Quantity_Color color;
ptablong[0] = Size;
ptablong[1] = cpt = aColorMap->Entry(1).Index();
for (Standard_Integer i=1; i<= Size; i++) {
entry = aColorMap->Entry(i);
index = entry.Index();
color = entry.Color();
color.Values(r, g, b, Quantity_TOC_RGB);
if (myTypeOfColorSpace != Aspect_TOCS_BlackAndWhite) {
ptablong[tab ] = Standard_Integer(255*r); TRANSFORMCOLOR(ptablong[tab ]);
ptablong[tab+1] = Standard_Integer(255*g); TRANSFORMCOLOR(ptablong[tab+1]);
ptablong[tab+2] = Standard_Integer(255*b); TRANSFORMCOLOR(ptablong[tab+2]);
} else {
ptablong[tab ] = 0; TRANSFORMCOLOR(ptablong[tab ]);
ptablong[tab+1] = 0; TRANSFORMCOLOR(ptablong[tab+1]);
ptablong[tab+2] = 0; TRANSFORMCOLOR(ptablong[tab+2]);
}
tab += 3;
if (cpt != index)
break;
cpt++;
}
// Put backgrount color at the end of ColorMap
ptablong[0]++;
ptablong[tab ] = BACKRED; TRANSFORMCOLOR(ptablong[tab ]);
ptablong[tab+1] = BACKGREEN; TRANSFORMCOLOR(ptablong[tab+1]);
ptablong[tab+2] = BACKBLUE; TRANSFORMCOLOR(ptablong[tab+2]);
myBKIndex = cpt;
// Write ColorMap to the CGM file
WriteData (COLRTABLE, ptablong, ptabreal, ptabchar);
if (myTypeOfColorSpace == Aspect_TOCS_BlackAndWhite)
myTypeOfColorSpace = Aspect_TOCS_RGB;
}
}
//=============================================================
void CGM_Driver::InitializeTypeMap (const Handle(Aspect_TypeMap)& aTypeMap)
{
/*
In CGM File:
LINEEDGETYPEDEF - code
LONG [0] - linetype (negative)
LING [1] - repeat length
for (i=0; i < LONG[1]; i++)
REAL [i] - line description element
it's necessary to put all line description elements as integers
*/
/*
if (CGMstates == picdes) {
Standard_Integer Size = aTypeMap->Size();
switch (TypeOfCgm) {
case (CgmBinary):
Aspect_DriverError::Raise("CGM BINARY ENCODING not implemented yet");
break;
case (CgmCharEncoding):
Aspect_DriverError::Raise("CGM CHARACTER ENCODING not implemented yet");
break;
case (CgmClearText):
for (Standard_Integer i=1; i<= Size; i++) {
fprintf(cgmo, "LINEEDGETYPEDEF");
const TColQuantity_Array1OfLength& asr = aTypeMap->Entry(i).Type().Values();
fprintf (cgmo," (%ld), ", -aTypeMap->Entry(i).Index());
fprintf (cgmo,"%ld", asr.Upper()-asr.Lower()+1);
if ( (asr.Upper()-asr.Lower()+1) > 1 ) {
fprintf(cgmo,",");
}
for (Standard_Integer j = asr.Lower(); j < asr.Upper(); j += 2) {
fprintf(cgmo, "%.*f, %.*f", 5, asr(j+1), 5, asr(j));
if (j+2 < asr.Upper()) {
fprintf(cgmo,",");
}
}
fprintf(cgmo,";\n");
}
break;
}
} else {
CGMTypeMap = aTypeMap;
}
*/
Standard_Integer Size = aTypeMap->Size(), i;
aTypeIndex.Clear();
for (i = 1; i <= Size; i++) {
Standard_Integer index = aTypeMap->Entry(i).Index();
if (aTypeMap->Entry(i).Type().Style() == Aspect_TOL_USERDEFINED)
aTypeIndex.Bind (index, 1);
else
aTypeIndex.Bind (index, aTypeMap->Entry(i).Type().Style()+1);
}
}
//=============================================================
void CGM_Driver::InitializeWidthMap (const Handle(Aspect_WidthMap)& aWidthMap)
{
Standard_Integer Size = aWidthMap->Size();
if (WIDTHMAP)
delete[] WIDTHMAP;
WIDTHMAP = new float[Size];
memset (WIDTHMAP, 0, sizeof(WIDTHMAP));
for (Standard_Integer i=1; i<= Size; i++) {
Standard_Real w = aWidthMap->Entry(i).Width();
WIDTHMAP[aWidthMap->Entry(i).Index()] = (float)w;
}
}
//=================================================================================
Standard_Boolean CGM_Driver::SizeOfImageFile (const Standard_CString anImageFile,
Standard_Integer& aWidth,
Standard_Integer& aHeight) const
{
return AlienImage::LoadImageFile (anImageFile, myImage, aWidth, aHeight);
}
//=============================================================
// Category: Methods to write attributes
//=============================================================
void CGM_Driver::PlotLineAttrib (const Standard_Integer ColorIndex,
const Standard_Integer TypeIndex,
const Standard_Integer WidthIndex)
{
// Set color of the line
if (myColorIndex != ColorIndex) {
curatt.line.index = myColorIndex = ColorIndex;
WriteData (LINECOLR, ptablong, ptabreal, ptabchar);
}
// Set type of the line
if (myTypeIndex != TypeIndex) {
curatt.line_type = myTypeIndex = TypeIndex;
WriteData (LINETYPE, ptablong, ptabreal, ptabchar);
}
// Set width of the line
if (myWidthIndex != WidthIndex) {
curatt.line_width.real = WIDTHMAP[(myWidthIndex = WidthIndex)];
WriteData (LINEWIDTH, ptablong, ptabreal, ptabchar);
}
// Set the color of the edge of polygon
if (myEdgeColor != ColorIndex) {
curatt.edge.index = myEdgeColor = ColorIndex;
WriteData (EDGECOLR, ptablong, ptabreal, ptabchar);
}
// Set the type of the edge of polygon
if (myEdgeType != TypeIndex) {
curatt.edge_type = myEdgeType = TypeIndex;
WriteData (EDGETYPE, ptablong, ptabreal, ptabchar);
}
// Set the width of the edge of polygon
if (myEdgeWidth != WidthIndex) {
curatt.edge_width.real = WIDTHMAP[(myEdgeWidth = WidthIndex)];
WriteData (EDGEWIDTH, ptablong, ptabreal, ptabchar);
}
}
//===============================================================================
void CGM_Driver::PlotPolyAttrib (const Standard_Integer ColorIndex,
const Standard_Integer TileIndex,
const Standard_Boolean DrawEdge)
{
// Set the edge visibility to the corresponding value
if (myEdgeVisibility != (DrawEdge ? ON : OFF)) {
myEdgeVisibility = curatt.edge_vis = (DrawEdge ? ON : OFF);
WriteData (EDGEVIS, ptablong, ptabreal, ptabchar);
}
// Set the interior style to fill by solid
if (myInteriorStyle != (TileIndex < 0 ? EMPTY : SOLID)) {
myInteriorStyle = curatt.int_style = (TileIndex < 0 ? EMPTY : SOLID);
WriteData (INTSTYLE, ptablong, ptabreal, ptabchar);
}
// Set the fill color for drawing
if (myFillIndex != ColorIndex) {
if (ColorIndex > 0) curatt.fill.index = myFillIndex = ColorIndex;
else curatt.fill.index = myFillIndex = myBKIndex;
WriteData (FILLCOLR, ptablong, ptabreal, ptabchar);
}
}
//=============================================================
// Category: Methods to draw primitives
//=============================================================
//=============================================================
Standard_Boolean CGM_Driver::PlotPoint (const Standard_ShortReal X,
const Standard_ShortReal Y)
{
ptablong[0] = 2;
ptabreal[0] = X; ptabreal[1] = Y;
ptabreal[2] = X + 0.1F; ptabreal[3] = Y + 0.1F;
WriteData (LINE, ptablong, ptabreal, ptabchar);
return Standard_True;
}
//=============================================================
Standard_Boolean CGM_Driver::PlotSegment (const Standard_ShortReal X1,
const Standard_ShortReal Y1,
const Standard_ShortReal X2,
const Standard_ShortReal Y2)
{
ptablong[0] = 2;
ptabreal[0] = X1; ptabreal[1] = Y1;
ptabreal[2] = X2; ptabreal[3] = Y2;
WriteData (LINE, ptablong, ptabreal, ptabchar);
return Standard_True;
}
//=============================================================
#define _XP(idx) ((float*)xArray)[(idx)]
#define _YP(idx) ((float*)yArray)[(idx)]
//=============================================================
Standard_Boolean CGM_Driver::PlotPolyline (const Standard_Address xArray,
const Standard_Address yArray,
const Standard_Address nPts,
const Standard_Integer nParts)
{
// Multipart drawing can only be used for text drawing
// (called from PlotMgt_TextManager::EndChar()
int Tab, N = 0;
for (int i = 0; i < nParts; i++) {
Tab = 0;
ptablong[0] = ((int*)nPts)[i];
for (int j = N; j < N + ptablong[0]; j++) {
ptabreal[Tab++] = _XP(j); ptabreal[Tab++] = _YP(j);
}
WriteData (LINE, ptablong, ptabreal, ptabchar);
N += ptablong[0];
}
return Standard_True;
}
//=============================================================
Standard_Boolean CGM_Driver::PlotPolygon (const Standard_Address xArray,
const Standard_Address yArray,
const Standard_Address nPts,
const Standard_Integer nParts)
{
if (nParts == 1) {
int Tab = 0;
ptablong[0] = ((int*)nPts)[0];
for (int i=0; i < ptablong[0]; i++) {
ptabreal[Tab++] = _XP(i); ptabreal[Tab++] = _YP(i);
}
WriteData (POLYGON, ptablong, ptabreal, ptabchar);
} else {
// This can only be used for text drawing
// (called from PlotMgt_TextManager::EndChar()
int Tab = 0, Vis = 1, N = 0, cpN;
ptablong[0] = 0;
for (int i = 0; i < nParts; i++) {
cpN = ((int*)nPts)[i];
for (int j = N; j < N + cpN - 1; j++) {
ptabreal[Tab++] = _XP(j); ptabreal[Tab++] = _YP(j);
ptablong[Vis++] = VIS; ptablong[0]++;
}
N += cpN;
ptabreal[Tab++] = _XP(N-1); ptabreal[Tab++] = _YP(N-1);
ptablong[Vis++] = CLOSEVIS; ptablong[0]++;
}
WriteData (POLYGONSET, ptablong, ptabreal, ptabchar);
}
return Standard_True;
}
//=============================================================
#undef _XP
#undef _YP
//=============================================================
Standard_Boolean CGM_Driver::PlotArc (const Standard_ShortReal Xpos,
const Standard_ShortReal Ypos,
const Standard_ShortReal aXradius,
const Standard_ShortReal aYradius,
const Standard_ShortReal sAngle,
const Standard_ShortReal oAngle)
{
Standard_ShortReal san = sAngle;
Standard_ShortReal fan = sAngle + oAngle;
if (oAngle >= 2*PI) {
PlotPolyAttrib (myLineColorIndex, -1, Standard_True);
if (aXradius == aYradius) {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)aXradius;
WriteData (CIRCLE, ptablong, ptabreal, ptabchar);
} else {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)(Xpos + aXradius); ptabreal[3] = (float)Ypos;
ptabreal[4] = (float)Xpos; ptabreal[5] = (float)(Ypos + aYradius);
WriteData (ELLIPSE, ptablong, ptabreal, ptabchar);
}
} else {
if (aXradius == aYradius) {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)cos(san); ptabreal[3] = (float)sin(san);
ptabreal[4] = (float)cos(fan); ptabreal[5] = (float)sin(fan);
ptabreal[6] = (float)aXradius;
WriteData (ARCCTR, ptablong, ptabreal, ptabchar);
} else {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)(Xpos + aXradius); ptabreal[3] = (float)Ypos;
ptabreal[4] = (float)Xpos; ptabreal[5] = (float)(Ypos + aYradius);
ptabreal[6] = (float)cos(san); ptabreal[7] = (float)sin(san);
ptabreal[8] = (float)cos(fan); ptabreal[9] = (float)sin(fan);
WriteData (ELLIPARC, ptablong, ptabreal, ptabchar);
}
}
return Standard_True;
}
//=============================================================
Standard_Boolean CGM_Driver::PlotPolyArc (const Standard_ShortReal Xpos,
const Standard_ShortReal Ypos,
const Standard_ShortReal aXradius,
const Standard_ShortReal aYradius,
const Standard_ShortReal sAngle,
const Standard_ShortReal oAngle)
{
Standard_ShortReal san = sAngle;
Standard_ShortReal fan = sAngle + oAngle;
if (oAngle >= 2.*PI) {
if (aXradius == aYradius) {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)aXradius;
WriteData (CIRCLE, ptablong, ptabreal, ptabchar);
} else {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)(Xpos + aXradius); ptabreal[3] = (float)aYradius;
ptabreal[4] = (float)Xpos; ptabreal[5] = (float)(Ypos + aYradius);
WriteData (ELLIPSE, ptablong, ptabreal, ptabchar);
}
} else {
if (aXradius == aYradius) {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)cos(san); ptabreal[3] = (float)sin(san);
ptabreal[4] = (float)cos(fan); ptabreal[5] = (float)sin(fan);
ptabreal[6] = (float)aXradius; ptablong[8] = 0;
WriteData (ARCCTRCLOSE, ptablong, ptabreal, ptabchar);
} else {
ptabreal[0] = (float)Xpos; ptabreal[1] = (float)Ypos;
ptabreal[2] = (float)(Xpos + aXradius); ptabreal[3] = (float)Ypos;
ptabreal[4] = (float)Xpos; ptabreal[5] = (float)(Ypos + aYradius);
ptabreal[6] = (float)cos(san); ptabreal[7] = (float)sin(san);
ptabreal[8] = (float)(aXradius*cos(fan)); ptabreal[9] = (float)(aYradius*sin(fan));
ptablong[11] = 0;
WriteData (ELLIPARCCLOSE, ptablong, ptabreal, ptabchar);
}
}
return Standard_True;
}
//=============================================================
// Private methods
//=============================================================
void CGM_Driver::InitializeDriver (const Standard_CString aName)
{
//declare the Metafile
strcpy(ptabchar,aName);
WriteData (BEGMF, ptablong, ptabreal, ptabchar);
//Set the CGM's version
ptablong[0] = CGMVER;
WriteData (MFVERSION, ptablong, ptabreal, ptabchar);
//Put in the metafile a string whose content is free
strcpy(ptabchar,"Generated with CGM_Driver from MATRA-DATAVISION");
WriteData (MFDESC, ptablong, ptabreal, ptabchar);
//Set the element list (always 'DRAWINGPLUS')
ptablong[1]=1;
WriteData (MFELEMLIST, ptablong, ptabreal, ptabchar);
//Set the type of value (integer or real)
cur.vdc_type = REAL;
WriteData (VDCTYPE, ptablong, ptabreal, ptabchar);
//Set the integer precision
cur.int_bits = INTBITS;
WriteData (INTEGERPREC, ptablong, ptabreal, ptabchar);
//Set the real precision
cur.max_real = MAXREAL; // Clear text
cur.min_real = MINREAL;
cur.real_bits = REALBITS; // Character encoding
cur.real_places = REALPLACES;
cur.real_defexp = REALDEFEXP;
cur.real_expald = REALEXP;
curbin.real_type = REALFORM; // Binary encoding
curbin.real_whole = REALWHOLE;
curbin.real_fraction = REALFRACTION;
WriteData (REALPREC, ptablong, ptabreal, ptabchar);
//Set the index precision
cur.index_bits = INDEXBITS;
WriteData (INDEXPREC, ptablong, ptabreal, ptabchar);
//Set the color precision
cur.col_bits = CLRBITS;
WriteData (COLRPREC, ptablong, ptabreal, ptabchar);
//Set the Color Index precision
cur.colind_bits = CLRINDBITS;
WriteData (COLRINDEXPREC, ptablong, ptabreal, ptabchar);
//set the max color index
cur.max_colind = 255;
WriteData (MAXCOLRINDEX, ptablong, ptabreal, ptabchar);
//Set the minimum color and the maximum color
cur.min_rgb.red = cur.min_rgb.green = cur.min_rgb.blue = 0;
cur.max_rgb.red = cur.max_rgb.green = cur.max_rgb.blue = 255;
TRANSFORMCOLOR(cur.max_rgb.red);
TRANSFORMCOLOR(cur.max_rgb.green);
TRANSFORMCOLOR(cur.max_rgb.blue);
WriteData (COLRVALUEEXT, ptablong, ptabreal, ptabchar);
//Set the internal variables
myBKIndex = 0;
myCurrentPage = 0;
myFillIndex = -9;
myEdgeColor = -9;
myEdgeType = -9;
myEdgeWidth = -9;
myInteriorStyle = -9;
myEdgeVisibility = -9;
myImage.Nullify ();
}
//=============================================================
void CGM_Driver::WriteData (const Standard_Integer aCode,
const Standard_Address pLongData,
const Standard_Address pFloatData,
const Standard_Address pCharData)
{
short code = (short) aCode;
long* aLong = (long*) pLongData;
float* aFloat = (float*)pFloatData;
char* aChar = (char*) pCharData;
if (code == LINETYPE) {
curatt.line_type = aTypeIndex.Find(curatt.line_type);
} else if (code == EDGETYPE) {
curatt.edge_type = aTypeIndex.Find(curatt.edge_type);
}
switch (TypeOfCgm) {
case (CgmBinary):
CGMObin (cgmo, code, aLong, aFloat, aChar);
break;
case (CgmCharEncoding):
CGMOchar (cgmo, code, aLong, aFloat, aChar);
break;
case (CgmClearText):
CGMOtext (cgmo, code, aLong, aFloat, aChar);
break;
}
}
//=============================================================
Standard_Boolean CGM_Driver::PlotImage (const Standard_ShortReal aX,
const Standard_ShortReal aY,
const Standard_ShortReal aWidth,
const Standard_ShortReal aHeight,
const Standard_ShortReal aScale,
const Standard_CString anImageFile,
const Standard_Address anArrayOfPixels,
const Standard_Integer aLineIndex)
{
Aspect_ColorMapEntry anEntry;
Handle(Aspect_GenericColorMap) aColorMap = new Aspect_GenericColorMap;
// We'll create new colormap here and will set it
Standard_Boolean status;
Standard_Integer idx = 0, found = 0, fidx = 0, LowX = 0, LowY = 0;
Standard_Integer width = Standard_Integer(aWidth),
height = Standard_Integer(aHeight);
Standard_Integer x, y;
Standard_Real r, g, b;
Aspect_RGBPixel* g2dp = (Aspect_RGBPixel*) anArrayOfPixels;
Quantity_Color color;
// Load image if necessary
if (anImageFile) {
status = SizeOfImageFile (anImageFile, width, height);
if (status) {
LowX = myImage -> LowerX ();
LowY = myImage -> LowerY ();
}
} else {
status = Standard_True;
}
// Put image colormap and pixels to the file
if (status) {
Standard_ShortReal wscale, hscale;
wscale = hscale = (float)(aScale * myPixelSize * PPI / 2.F);
// Put image in the file
float a2X = (float)(aX - wscale * width/2.F);
float a2Y = (float)(aY + hscale * (height/2.F - (aLineIndex == -1 ? 0:aLineIndex)));
if (aLineIndex != -1) height = 1;
int cellsSize = sizeof(long)*(width*height + 10);
Aspect_RGBPixel* pixels =
(Aspect_RGBPixel*) malloc (IMCOLRPREC*sizeof(Aspect_RGBPixel));
if (pixels == NULL) return Standard_False;
long* cells = (long*) malloc (cellsSize);
if (cells == NULL) { free (pixels); return Standard_False; }
//Initialize the array
memset (pixels, 0, IMCOLRPREC*sizeof(Aspect_RGBPixel));
int pixidx = 10; // Pixel description begins with index 10
// Put cellarray entry data
ptabreal[0] = a2X; ptabreal[1] = a2Y; // P
ptabreal[2] = a2X+(width*wscale); ptabreal[3] = a2Y-(height*hscale); // Q
ptabreal[4] = a2X+(width*wscale); ptabreal[5] = a2Y; // R
cells[0] = width*height; cells[7] = width;
cells[8] = height;
// For all pixels of an Image
for (y=0; y < height; y++) {
for (x=0; x < width; x++) {
// Get pixel of image at (x,y) position
if (anImageFile) {
color = myImage -> PixelColor (x + LowX, y + LowY);
color.Values (r, g, b, Quantity_TOC_RGB);
} else {
r = g2dp -> red;
g = g2dp -> green;
b = g2dp -> blue;
g2dp++;
}
// Try to find the pixel
for (int c = 0; c < idx; c++) {
if (pixels[c].red == r && pixels[c].green == g && pixels[c].blue == b) {
found = 1;
fidx = c;
}
if (found) break;
}
if (!found) {
// It's necessary to add new color to colormap
pixels[idx].red = (float)r;
pixels[idx].green = (float)g;
pixels[idx].blue = (float)b;
color.SetValues (r, g, b, Quantity_TOC_RGB);
anEntry = Aspect_ColorMapEntry (idx, color);
anEntry.SetIndex (idx);
aColorMap->AddEntry (anEntry);
cells[pixidx++] = idx;
idx++;
} else {
cells[pixidx++] = fidx;
}
if (idx > IMCOLRPREC) {
free (pixels);
free (cells);
return Standard_False;
}
found = 0;
} // for (x=0; x < width; x++)
} // for (y=0; y < height; y++)
free (pixels);
// Calculate image color precision
int imcolprec = 0, tmp = 1L;
while (tmp < aColorMap->Size()) { tmp <<= 1L; imcolprec++; }
cells[9] = imcolprec;
// Write image data to file (colormap and image data).
myState = imgDraw;
InitializeColorMap (aColorMap);
WriteData (CELLARRAY, cells, ptabreal, ptabchar);
// Restore old colormap
myState = picBody;
InitializeColorMap (ColorMap ());
free (cells);
return Standard_True;
} // IF STATUS
return Standard_False;
}
|