summaryrefslogtreecommitdiff
path: root/inc/InterfaceGraphic_Graphic3d.hxx
blob: 1fe3f754b81a55d46c0440106f265d1f84e170f0 (plain)
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
/*
 * modified 27/08/97 ; PCT : ajout texture mapping
 * modified 08/04/98 ; FGU : ajout parametres d emission (CALL_DEF_MATERIAL)
 * modified 30/11/98 ; FMN : ajout parametres pour les textes visibles
 * modified 24/01/00 ; EUG : G003 add DegenerationMode flag and SkipRatio value in
 *                         CALL_DEF_STRUCTURE.
 * modified 22/03/04 ; SAN : OCC4895 High-level interface for controlling polygon offsets
 *
 */


#ifndef InterfaceGraphic_Graphic3dHeader
#define InterfaceGraphic_Graphic3dHeader

#include <InterfaceGraphic_PrimitiveArray.hxx>

#define G003    /*EUG 26-01-00 Degeneration management
*/

#define OCC1174 /*SAV 08/01/03 CONTEXTFILLAREA extended with back face interior color*/

#define OCC2934 /* SAN 22/01/04 Texture mapped fonts on WNT */

#ifdef THIS
        #undef THIS
#endif
/* 
  
                     Copyright (C) 1991,1992,1993 by
  
                      MATRA DATAVISION, FRANCE
  
This software is furnished in accordance with the terms and conditions
of the contract and with the inclusion of the above copyright notice.
This software or any other copy thereof may not be provided or otherwise
be made available to any other person. No title to an ownership of the
software is hereby transferred.
  
At the termination of the contract, the software and all copies of this
software must be deleted.
  
Facility : CAS-CADE V1
  
*/ 

#define CALL_DEF_STRUCTHIGHLIGHTED      1
#define CALL_DEF_STRUCTPICKABLE         2
#define CALL_DEF_STRUCTVISIBLE          3

#define CALL_DEF_STRUCTNOHIGHLIGHTED    11
#define CALL_DEF_STRUCTNOPICKABLE       12
#define CALL_DEF_STRUCTNOVISIBLE        13

/* LISTE D'ENTIERS */

typedef struct {

        int NbIntegers;

        int *Integers;

} CALL_DEF_LISTINTEGERS;


/* LISTE DE REELS */

typedef struct {

        int NbReals;

        float *Reals;

} CALL_DEF_LISTREALS;


/* COULEUR */

typedef struct {

        float r, g, b;

} CALL_DEF_COLOR;


/* ARETE */

typedef struct {

        int Index1, Index2;

        int Type;

} CALL_DEF_EDGE;


/* LISTE D'ARETES */

typedef struct {

        int NbEdges;

        CALL_DEF_EDGE *Edges;

} CALL_DEF_LISTEDGES;


/* NORMALE */

typedef struct {

        float dx, dy, dz;

} CALL_DEF_NORMAL;


/* TEXTURE COORD */

typedef struct {

        float tx, ty;

} CALL_DEF_TEXTURE_COORD;


/* POINT */

typedef struct {

        float x, y, z;

} CALL_DEF_POINT;


/* POINTC */

typedef struct {

        CALL_DEF_POINT Point;

        CALL_DEF_COLOR Color;

} CALL_DEF_POINTC;


/* POINTN */

typedef struct {

        CALL_DEF_POINT Point;

        CALL_DEF_NORMAL Normal;

} CALL_DEF_POINTN;


/* POINTNT */

typedef struct {

        CALL_DEF_POINT Point;

        CALL_DEF_NORMAL Normal;

        CALL_DEF_TEXTURE_COORD TextureCoord;

} CALL_DEF_POINTNT;


/* POINTNC */

typedef struct {

        CALL_DEF_POINT Point;

        CALL_DEF_NORMAL Normal;

        CALL_DEF_COLOR Color;

} CALL_DEF_POINTNC;


/* BOITE ENGLOBANTE */

typedef struct {

        CALL_DEF_COLOR Color;

        CALL_DEF_POINT Pmin;

        CALL_DEF_POINT Pmax;

} CALL_DEF_BOUNDBOX;


/* LISTE DE POINTS */

typedef union {

        CALL_DEF_POINT *Points;

        CALL_DEF_POINTN *PointsN;

        CALL_DEF_POINTC *PointsC;

        CALL_DEF_POINTNC *PointsNC;

        CALL_DEF_POINTNT *PointsNT;

} CALL_DEF_UPOINTS;


/* LISTE DE POINTS */

typedef struct {

        int NbPoints;

        int TypePoints;

        CALL_DEF_UPOINTS UPoints;

} CALL_DEF_LISTPOINTS;


/* MARKER */

typedef struct {

        float x, y, z;

} CALL_DEF_MARKER;


/* LISTE DE MARKERS */

typedef struct {

        int NbMarkers;

        CALL_DEF_MARKER *Markers;

} CALL_DEF_LISTMARKERS;


/* TEXTE */

typedef struct {

        unsigned short *string;

        CALL_DEF_POINT Position;

        float Height;

        float Angle;

        int Path;

        int HAlign;

        int VAlign;
	
        bool Zoomable;

} CALL_DEF_TEXT;


/* FACETTE */

typedef struct {

        int NormalIsDefined;

        CALL_DEF_NORMAL Normal;

        int ColorIsDefined;

        CALL_DEF_COLOR Color;

        int TypeFacet;

        int NbPoints;

        int TypePoints;

        CALL_DEF_UPOINTS UPoints;

} CALL_DEF_FACET;


/* LISTE DE FACETTES */

typedef struct {

        int NbFacets;

        CALL_DEF_FACET *LFacets;

} CALL_DEF_LISTFACETS;


/* QUADRILATERE */

typedef struct {

        int NbPoints;

        int TypePoints;

        int SizeRow;
        int SizeCol;

        CALL_DEF_UPOINTS UPoints;

} CALL_DEF_QUAD;


/* TRIANGLE */

typedef struct {

        int NbPoints;

        int TypePoints;

        CALL_DEF_UPOINTS UPoints;

} CALL_DEF_TRIKE;


/* PICK IDENTIFICATEUR */

typedef struct {

        int IsDef;

        int IsSet;

        int Value;

} CALL_DEF_PICKID;


/* CONTEXTE LIGNE */

typedef struct {

        int IsDef;

        int IsSet;

        CALL_DEF_COLOR Color;

        int LineType;

        float Width;

} CALL_DEF_CONTEXTLINE;


/* MATERIAL */

typedef struct {

        float Ambient;
        int IsAmbient;

        float Diffuse;
        int IsDiffuse;

        float Specular;
        int IsSpecular;

        float Emission;
        int IsEmission;

        float Transparency;
        float Shininess;

        float EnvReflexion;
        
        int IsPhysic;

        /* Attribut couleur eclairage */
        CALL_DEF_COLOR ColorAmb, ColorDif, ColorSpec, ColorEms, Color; 
        

} CALL_DEF_MATERIAL;


/* TEXTURE */

typedef struct
{
  int doModulate;
  int doRepeat;
  int Mode;
  int doLinear;
  float sx, sy;
  float tx, ty;
  float angle;

  float sparams[4];
  float tparams[4];

} CALL_DEF_INIT_TEXTURE;


typedef struct
{
  int TexId;
  int doTextureMap;

} CALL_DEF_TEXTURE;



/* CONTEXTE POLYGONE */

typedef struct {

        int IsDef;

        int IsSet;

        int Style;

        CALL_DEF_COLOR IntColor;

#ifdef OCC1174
        CALL_DEF_COLOR BackIntColor;
#endif

        CALL_DEF_COLOR EdgeColor;

        int LineType;

        float Width;

        int Hatch;

        int Distinguish;
        int BackFace;

        int Edge;

        CALL_DEF_MATERIAL Front;
        CALL_DEF_MATERIAL Back;

        CALL_DEF_TEXTURE Texture;

#ifdef G003
        int   DegenerationMode;
        float SkipRatio;
#endif
        /* OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets */
        int   PolygonOffsetMode;
        float PolygonOffsetFactor;
        float PolygonOffsetUnits;
        /* OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets */

} CALL_DEF_CONTEXTFILLAREA;


/* CONTEXTE MARKER */

typedef struct {

        int IsDef;

        int IsSet;

        CALL_DEF_COLOR Color;

        int MarkerType;

        float Scale;

} CALL_DEF_CONTEXTMARKER;


/* CONTEXTE TEXT */

typedef struct {

        int IsDef;

        int IsSet;

        char*  Font;

        float Space;

        float Expan;

        CALL_DEF_COLOR Color;
        
        int Style;
        
        int DisplayType;

        CALL_DEF_COLOR ColorSubTitle;

	int TextZoomable;
	
	float TextAngle;

	int TextFontAspect;
	
	
} CALL_DEF_CONTEXTTEXT;

/* Transform persistence struct */
typedef struct
{
        int            IsSet;
	int            IsDef;
	int	       Flag;
        CALL_DEF_POINT Point;
} CALL_DEF_TRANSFORM_PERSISTENCE;

/* STRUCTURE */

typedef struct {

        int Id;
        void *ptrStructure;

        int Priority;
        int PreviousPriority;
        int GroupBegin;
        int GroupEnd;

        CALL_DEF_CONTEXTLINE ContextLine;
        CALL_DEF_CONTEXTFILLAREA ContextFillArea;
        CALL_DEF_CONTEXTMARKER ContextMarker;
        CALL_DEF_CONTEXTTEXT ContextText;

        CALL_DEF_BOUNDBOX BoundBox;

        float Transformation[4][4];
        int Composition;

        int ContainsFacet;

        unsigned IsDeleted      :1;
        unsigned IsOpen         :1;
        unsigned IsInfinite     :1;
        unsigned stick          :1;
        unsigned highlight      :1;
        unsigned visible        :1;
        unsigned pick           :1;
        unsigned HLRValidation  :1;
        /* ABD 29/10/04  Transform Persistence of Presentation( pan, zoom, rotate ) */
	/*int	       TransformPersistenceFlag;
        CALL_DEF_POINT TransformPersistencePoint;
	*/
        CALL_DEF_TRANSFORM_PERSISTENCE TransformPersistence;
	/* ABD 29/10/04  Transform Persistence of Presentation( pan, zoom, rotate ) */
} CALL_DEF_STRUCTURE;


/* GROUPE */

typedef struct {

        int LabelBegin;
        int LabelEnd;
        void *ptrGroup;

        int StructureEnd;

        CALL_DEF_CONTEXTLINE ContextLine;
        CALL_DEF_CONTEXTFILLAREA ContextFillArea;
        CALL_DEF_CONTEXTMARKER ContextMarker;
        CALL_DEF_CONTEXTTEXT ContextText;

        CALL_DEF_STRUCTURE *Struct;

        CALL_DEF_PICKID PickId;

        unsigned IsDeleted      :1;
        unsigned IsOpen         :1;
        /*int	 TransformPersistenceFlag;*/

} CALL_DEF_GROUP;

/* BOUNDING BOX */

typedef struct {

        float XMin;
        float YMin;
        float ZMin;
    
        float XMax;
        float YMax;
        float ZMax;

} CALL_DEF_BOUNDS;

/* USERDRAW DATA */

typedef struct {

        void            *Data;
        CALL_DEF_BOUNDS *Bounds;

} CALL_DEF_USERDRAW;

#endif /* InterfaceGraphic_Graphic3dHeader */