summaryrefslogtreecommitdiff
path: root/graphics/asymptote/prc/PRCTools/describePRC.cc
blob: 1efedecb72fc3c6900b420a61fd675e15f469bad (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
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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
/************
*
*   This file is part of a tool for reading 3D content in the PRC format.
*   Copyright (C) 2008 Orest Shardt <shardtor (at) gmail dot com>
*
*   This program is free software: you can redistribute it and/or modify
*   it under the terms of the GNU Lesser General Public License as published by
*   the Free Software Foundation, either version 3 of the License, or
*   (at your option) any later version.
*
*   This program is distributed in the hope that it will be useful,
*   but WITHOUT ANY WARRANTY; without even the implied warranty of
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*   GNU Lesser General Public License for more details.
*
*   You should have received a copy of the GNU Lesser General Public License
*   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*
*************/

#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <sstream>

#include "../PRC.h"
#include "describePRC.h"

using std::ostringstream; using std::cout; using std::endl;
using std::hex; using std::dec; using std::string; using std::setw;
using std::setfill;

// describe sections

void describeGlobals(BitByBitData &mData)
{
  mData.tellPosition();
  cout << getIndent() << "--Globals--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_FileStructureGlobals))
    return;
  indent();

  describeContentPRCBase(mData,false);
  unsigned int numberOfReferencedFileStructures = mData.readUnsignedInt();
  cout << getIndent() << "numberOfReferencedFileStructures "
      << numberOfReferencedFileStructures << endl;
  indent();
  for(unsigned int i = 0; i < numberOfReferencedFileStructures; ++i)
  {
    describeCompressedUniqueID(mData);
  }
  dedent();

  double tessellation_chord_height_ratio = mData.readDouble();
  cout << getIndent() << "tessellation_chord_height_ratio "
      << tessellation_chord_height_ratio << endl;

  double tessellation_angle_degree = mData.readDouble();
  cout << getIndent() << "tessellation_angle_degree "
      << tessellation_angle_degree << endl;

  string default_font_family_name = mData.readString();
  cout << getIndent() << "default_font_family_name \""
      << default_font_family_name << '\"' << endl;

  unsigned int number_of_fonts = mData.readUnsignedInt();
  cout << getIndent() << "number_of_fonts " << number_of_fonts << endl;

  indent();
  for(unsigned int q = 0; q < number_of_fonts; ++q)
  {
    string font_name = mData.readString();
    cout << getIndent() << "font_name \"" << font_name << '\"' << endl;
    unsigned int char_set = mData.readUnsignedInt();
    cout << getIndent() << "char_set " << char_set << endl;
    unsigned int number_of_font_keys = mData.readUnsignedInt();
    cout << getIndent() << "number_of_font_keys " << number_of_font_keys
        << endl;
    indent();
    for(unsigned int i = 0; i < number_of_font_keys; i++)
    {
      unsigned int font_size = mData.readUnsignedInt() - 1;
      cout << getIndent() << "font_size " << font_size << endl;
      unsigned char attributes = mData.readChar();
      cout << getIndent() << "attributes "
          << static_cast<unsigned int>(attributes) << endl;
    }
    dedent();
  }
  dedent();

  unsigned int number_of_colours = mData.readUnsignedInt();
  cout << getIndent() << "number_of_colours " << number_of_colours << endl;
  indent();
  for(unsigned int i = 0; i < number_of_colours; ++i)
    describeRGBColour(mData);
  dedent();

  unsigned int number_of_pictures = mData.readUnsignedInt();
  cout << getIndent() << "number_of_pictures " << number_of_pictures << endl;
  indent();
  for(unsigned int i=0;i<number_of_pictures;i++)
    describePicture(mData);
  dedent();

  unsigned int number_of_texture_definitions = mData.readUnsignedInt();
  cout << getIndent() << "number_of_texture_definitions "
      << number_of_texture_definitions << endl;
  indent();
  for(unsigned int i=0;i<number_of_texture_definitions;i++)
    describeTextureDefinition(mData);
  dedent();


  unsigned int number_of_materials = mData.readUnsignedInt();
  cout << getIndent() << "number_of_materials " << number_of_materials << endl;
  indent();
  for(unsigned int i=0;i<number_of_materials;i++)
    describeMaterial(mData);
  dedent();

  unsigned int number_of_line_patterns = mData.readUnsignedInt();
  cout << getIndent() << "number_of_line_patterns "
      << number_of_line_patterns << endl;
  indent();
  for(unsigned int i=0;i<number_of_line_patterns;i++)
    describeLinePattern(mData);
  dedent();

  unsigned int number_of_styles = mData.readUnsignedInt();
  cout << getIndent() << "number_of_styles " << number_of_styles << endl;
  indent();
  for(unsigned int i=0;i<number_of_styles;i++)
    describeCategory1LineStyle(mData);
  dedent();

  unsigned int number_of_fill_patterns = mData.readUnsignedInt();
  cout << getIndent() << "number_of_fill_patterns "
      << number_of_fill_patterns << endl;
  indent();
  for(unsigned int i=0;i<number_of_fill_patterns;i++)
    describeFillPattern(mData);
  dedent();

  unsigned int number_of_reference_coordinate_systems = mData.readUnsignedInt();
  cout << getIndent() << "number_of_reference_coordinate_systems "
      << number_of_reference_coordinate_systems << endl;
  indent();
  for(unsigned int i=0;i<number_of_reference_coordinate_systems;i++)
    //NOTE: must be PRC_TYPE_RI_CoordinateSystem
    describeRepresentationItem(mData);
  dedent();

  describeUserData(mData);
  dedent();
  mData.tellPosition();
}

void describeTree(BitByBitData &mData)
{
  mData.tellPosition();
  cout << getIndent() << "--Tree--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_FileStructureTree))
    return;
  indent();
  describeContentPRCBase(mData,false);

  unsigned int number_of_part_definitions = mData.readUnsignedInt();
  cout << getIndent() << "number_of_part_definitions "
      << number_of_part_definitions << endl;
  indent();
  for(unsigned int i = 0; i < number_of_part_definitions; ++i)
  {
    describePartDefinition(mData);
  }
  dedent();

  unsigned int number_of_product_occurrences = mData.readUnsignedInt();
  cout << getIndent() << "number_of_product_occurrences "
      << number_of_product_occurrences << endl;
  indent();
  for(unsigned int i = 0; i < number_of_product_occurrences; ++i)
  {
    describeProductOccurrence(mData);
  }
  dedent();

  describeFileStructureInternalData(mData);

  describeUserData(mData);
  dedent();
  mData.tellPosition();
}

void describeTessellation(BitByBitData &mData)
{
  mData.tellPosition();
  cout << getIndent() << "--Tessellation--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_FileStructureTessellation))
    return;
  indent();

  describeContentPRCBase(mData,false);

  unsigned int number_of_tessellations = mData.readUnsignedInt();
  cout << getIndent() << "number_of_tessellations "
      << number_of_tessellations << endl;
  indent();
  for(unsigned int i = 0; i < number_of_tessellations; ++i)
  {
    unsigned int type = mData.readUnsignedInt();
    cout << getIndent() << "tessellation type " << type << endl;
    switch(type)
    {
      case PRC_TYPE_TESS_3D:
        describe3DTess(mData);
        break;
      case PRC_TYPE_TESS_3D_Wire:
        describe3DWireTess(mData);
        break;
      case PRC_TYPE_TESS_Markup:
        describe3DMarkupTess(mData);
        break;
      case PRC_TYPE_TESS_3D_Compressed:
        describeHighlyCompressed3DTess(mData);
        break;
      default:
        cout << getIndent() << "Unrecognized tessellation data type "
            << type << endl;
        break;
    }
  }
  dedent();

  describeUserData(mData);

  dedent();
  mData.tellPosition();
}

void describeGeometry(BitByBitData &mData)
{
  mData.tellPosition();
  cout << getIndent() << "--Geometry--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_FileStructureGeometry))
    return;
  indent();

  describeContentPRCBase(mData,false);

  unsigned int number_of_topological_contexts = mData.readUnsignedInt();
  cout << getIndent() << "number_of_topological_contexts "
      << number_of_topological_contexts << endl;
  indent();
  for(unsigned int i = 0; i < number_of_topological_contexts; ++i)
  {
    describeTopoContext(mData);
    unsigned int number_of_bodies = mData.readUnsignedInt();
    cout << getIndent() << "number_of_bodies " << number_of_bodies << endl;
    for(unsigned int i = 0; i < number_of_bodies; ++i)
    {
      describeBody(mData);
    }
  }
  dedent();

  describeUserData(mData);
  dedent();
  mData.tellPosition();
}

void describeExtraGeometry(BitByBitData &mData)
{
  mData.tellPosition();
  cout << getIndent() << "--Extra Geometry--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_FileStructureExtraGeometry))
    return;
  indent();

  describeContentPRCBase(mData,false);

  unsigned int number_of_contexts = mData.readUnsignedInt();
  cout << getIndent() << "number_of_contexts " << number_of_contexts << endl;
  indent();
  for(unsigned int i = 0; i < number_of_contexts; ++i)
  {
    // geometry summary
    unsigned int number_of_bodies = mData.readUnsignedInt();
    cout << getIndent() << "number_of_bodies " << number_of_bodies << endl;
    indent();
    for(unsigned int j = 0; j < number_of_bodies; ++j)
    {
      unsigned int serial_type = mData.readUnsignedInt();
      cout << getIndent() << "serial_type " << serial_type << endl;
      indent();
      if(isCompressedSerialType(serial_type))
        cout << getIndent() << "serialTolerance " << mData.readDouble();
      dedent();
    }
    dedent();
    // context graphics
    resetCurrentGraphics();
    unsigned int number_of_treat_types = mData.readUnsignedInt();
    cout << getIndent() << "number_of_treat_types "
        << number_of_treat_types << endl;
    indent();
    for(unsigned int i = 0; i < number_of_treat_types; ++i)
    {
      cout << getIndent() << "element_type " << mData.readUnsignedInt() << endl;
      unsigned int number_of_elements = mData.readUnsignedInt();
      cout << getIndent() << "number_of_elements "
          << number_of_elements << endl;
      indent();
      for(unsigned int j = 0; j < number_of_elements; ++j)
      {
        if(mData.readBit())
        {
          describeGraphics(mData);
        }
        else
        {
          cout << getIndent() << "Element has no graphics" << endl;
        }
      }
      dedent();
    }
    dedent();
  }
  dedent();

  describeUserData(mData);
  dedent();
  mData.tellPosition();
}


void describeModelFileData(BitByBitData &mData,
                           unsigned int numberOfFileStructures)
{
  mData.tellPosition();
  cout << getIndent() << "--Model File--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_ModelFile))
    return;
  indent();

  describeContentPRCBase(mData,false);

  describeUnit(mData);
  unsigned int numberOfProductOccurrences = mData.readUnsignedInt();
  cout << getIndent() << "Number of Product Occurrences "
      << numberOfProductOccurrences << endl;
  indent();
  for(unsigned int i = 0; i < numberOfProductOccurrences; ++i)
  {
    describeCompressedUniqueID(mData);
    cout << getIndent() << "index_position + 1 = "
        << mData.readUnsignedInt() << endl;
    cout << getIndent() << "active? " << (mData.readBit()?"yes":"no")
        << endl << endl;
  }
  dedent();
  for(unsigned int i = 0; i < numberOfFileStructures; ++i)
  {
    cout << getIndent() << "File Structure Index in Model File "
        << mData.readUnsignedInt() << endl;
  }

  describeUserData(mData);
  dedent();
  mData.tellPosition();
}

// subsections
// void describe(BitByBitData &mData)
// {
//   
// }

void describeLight(BitByBitData &mData)
{
  unsigned int ID = mData.readUnsignedInt();
  if(ID == PRC_TYPE_GRAPH_AmbientLight)
    cout << getIndent() << "--Ambient Light--" << endl;
  else
    return;

  indent();

  describeContentPRCBase(mData,true);

  cout << getIndent() << "ambient colour index: " << mData.readUnsignedInt()-1 << endl
      << getIndent() << "diffuse colour index: " << mData.readUnsignedInt()-1 << endl
      << getIndent() << "specular colour index: " << mData.readUnsignedInt()-1 << endl;

  describeUserData(mData);
  describeUserData(mData); // why?
  dedent();
}

void describeCamera(BitByBitData &mData)
{
  cout << getIndent() << "--Camera--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_GRAPH_Camera))
    return;
  indent();

  describeContentPRCBase(mData,true);

  cout << getIndent() << (mData.readBit()?"orthographic":"perspective") << endl;
  cout << getIndent() << "Camera Position" << endl;
  describeVector3d(mData);
  cout << getIndent() << "Look At Point" << endl;
  describeVector3d(mData);
  cout << getIndent() << "Up" << endl;
  describeVector3d(mData);
  cout << getIndent() << "X field of view angle (perspective) || X scale (orthographic) "
      << mData.readDouble() << endl;
  cout << getIndent() << "Y field of view angle (perspective) || Y scale (orthographic) "
      << mData.readDouble() << endl;
  cout << getIndent() << "aspect ratio x/y " << mData.readDouble() << endl;
  cout << getIndent() << "near z clipping plane distance from viewer " << mData.readDouble() << endl;
  cout << getIndent() << "far z clipping plane distance from viewer " << mData.readDouble() << endl;
  cout << getIndent() << "zoom factor " << mData.readDouble() << endl;
  dedent();
}

bool describeContentCurve(BitByBitData &mData)
{
  describeBaseGeometry(mData);
  cout << getIndent() << "extend_info " << mData.readUnsignedInt() << endl;
  bool is_3d = mData.readBit();
  cout << getIndent() << "is_3d " << (is_3d?"yes":"no") << endl;
  return is_3d;
}

void describeParameterization(BitByBitData &mData)
{
  cout << getIndent() << "--Parameterization--" << endl;
  indent();
  describeExtent1d(mData);
  cout << getIndent() << "parameterization_coeff_a " << mData.readDouble()
      << endl;
  cout << getIndent() << "parameterization_coeff_b " << mData.readDouble()
      << endl;
  dedent();
}

void describeCurvCircle(BitByBitData &mData)
{
  cout << getIndent() << "--Circle--" << endl;
  indent();

  if(describeContentCurve(mData))
    describeTransformation3d(mData);
  else
    describeTransformation2d(mData);

  describeParameterization(mData);

  cout << getIndent() << "radius " << mData.readDouble() << endl;

  dedent();
}

void describeCurvLine(BitByBitData &mData)
{
  cout << getIndent() << "--Line--" << endl;
  indent();

  if(describeContentCurve(mData))
    describeTransformation3d(mData);
  else
    describeTransformation2d(mData);

  describeParameterization(mData);

  dedent();
}

void describeContentWireEdge(BitByBitData &mData)
{
  cout << getIndent() << "--WireEdge--" << endl;
  indent();

  describeBaseTopology(mData);

  describeObject(mData); //3d_curve

  bool curve_trim_interval = mData.readBit();
  cout << getIndent() << "curve_trim_interval "
      << (curve_trim_interval?"yes":"no") << endl;
  if(curve_trim_interval)
  {
    describeExtent1d(mData);
  }

  dedent();
}

void describeUVParametrization(BitByBitData &mData)
{
  cout << getIndent() << "--UV Parameterization--" << endl;
  indent();

  cout << getIndent() << "swap_uv " << (mData.readBit()?"yes":"no") << endl;
  cout << getIndent() << "Domain" << endl;
  indent(); describeExtent2d(mData); dedent();
  cout << getIndent() << "parameterization_on_u_coeff_a "
      << mData.readDouble() << endl;
  cout << getIndent() << "parameterization_on_v_coeff_a "
      << mData.readDouble() << endl;
  cout << getIndent() << "parameterization_on_u_coeff_b "
      << mData.readDouble() << endl;
  cout << getIndent() << "parameterization_on_v_coeff_b "
      << mData.readDouble() << endl;

  dedent();
}

bool isCompressedSerialType(unsigned int type)
{
  return false; // TODO: actually check the type!!!
}

void describeSurfNURBS(BitByBitData &mData)
{
  cout << getIndent() << "--NURBS surface--" << endl;
  indent();

  describeContentSurface(mData);

  bool is_rational = mData.readBit();
  cout << getIndent() << "is_rational " << (is_rational?"yes":"no") << endl;

  unsigned int degree_in_u = mData.readUnsignedInt();
  cout << getIndent() << "degree_in_u " << degree_in_u << endl;
  unsigned int degree_in_v = mData.readUnsignedInt();
  cout << getIndent() << "degree_in_v " << degree_in_v << endl;

  unsigned int number_of_control_points_in_u = mData.readUnsignedInt()+1;
  cout << getIndent() << "number_of_control_points_in_u "
      << number_of_control_points_in_u << endl;
  unsigned int number_of_control_points_in_v = mData.readUnsignedInt()+1;
  cout << getIndent() << "number_of_control_points_in_v "
      << number_of_control_points_in_v << endl;

  unsigned int number_of_knots_in_u = mData.readUnsignedInt()+1;
  cout << getIndent() << "number_of_knots_in_u "
      << number_of_knots_in_u << endl;
  unsigned int number_of_knots_in_v = mData.readUnsignedInt()+1;
  cout << getIndent() << "number_of_knots_in_v "
      << number_of_knots_in_v << endl;

  indent();
  for(unsigned int i = 0; i < number_of_control_points_in_u; ++i)
  {
    for(unsigned int j = 0; j < number_of_control_points_in_v; ++j)
    {
      double x = mData.readDouble();
      double y = mData.readDouble();
      double z = mData.readDouble();
      cout << getIndent() << "control point " << i << ' ' << j << ": ("
          << x << ',' << y << ',' << z;

      if(is_rational)
        cout << ',' << mData.readDouble();

      cout << ')' << endl;
    }
  }
  dedent();

  cout << getIndent() << "knots in u" << endl;
  indent();
  for(unsigned int i = 0; i < number_of_knots_in_u; ++i)
    cout << getIndent() << mData.readDouble() << endl;
  dedent();

  cout << getIndent() << "knots in v" << endl;
  indent();
  for(unsigned int i = 0; i < number_of_knots_in_v; ++i)
    cout << getIndent() << mData.readDouble() << endl;
  dedent();

  cout << getIndent() << "knot_type " << mData.readUnsignedInt() << endl;
  cout << getIndent() << "surface_form " << mData.readUnsignedInt() << endl;

  dedent();
}

void describeCurvNURBS(BitByBitData &mData)
{
  cout << getIndent() << "--NURBS curve--" << endl;
  indent();
  describeContentCurve(mData);

  bool is_rational = mData.readBit();
  cout << getIndent() << "is_rational " << (is_rational?"yes":"no") << endl;

  unsigned int degree = mData.readUnsignedInt();
  cout << getIndent() << "degree " << degree << endl;

  unsigned int number_of_control_points = mData.readUnsignedInt()+1;
  cout << getIndent() << "number_of_control_points "
      << number_of_control_points << endl;

  unsigned int number_of_knots = mData.readUnsignedInt()+1;
  cout << getIndent() << "number_of_knots " << number_of_knots << endl;

  indent();
  for(unsigned int i = 0; i < number_of_control_points; ++i)
  {
    double x = mData.readDouble();
    double y = mData.readDouble();
    double z = mData.readDouble();
    cout << getIndent() << "control point " << i << ": ("
        << x << ',' << y << ',' << z;

    if(is_rational)
      cout << ',' << mData.readDouble();

    cout << ')' << endl;
  }
  dedent();

  cout << getIndent() << "knots" << endl;
  indent();
  for(unsigned int i = 0; i < number_of_knots; ++i)
    cout << getIndent() << mData.readDouble() << endl;
  dedent();

  cout << getIndent() << "knot_type " << mData.readUnsignedInt() << endl;
  cout << getIndent() << "surface_form " << mData.readUnsignedInt() << endl;

  dedent();
}

void describeCurvPolyLine(BitByBitData &mData)
{
  cout << getIndent() << "--PolyLine--" << endl;
  indent();
  describeContentCurve(mData);
  describeTransformation3d(mData);
  describeParameterization(mData);

  unsigned int number_of_points = mData.readUnsignedInt();
  cout << getIndent() << "number_of_points " << number_of_points << endl;
  
  indent();
  for(unsigned int i = 0; i < number_of_points; ++i)
  {
    describeVector3d(mData);
  }
  dedent();

  dedent();
}

void describeSurfCylinder(BitByBitData &mData)
{
  cout << getIndent() << "--Cylinder surface--" << endl;
  indent();

  describeContentSurface(mData);
  describeTransformation3d(mData);
  describeUVParametrization(mData);
  cout << getIndent() << "radius " << mData.readDouble() << endl;

  dedent();
}

void describeSurfPlane(BitByBitData &mData)
{
  cout << getIndent() << "--Plane surface--" << endl;
  indent();
  mData.setShowBits(true);
  describeContentSurface(mData);
  mData.tellPosition();
  //TODO: something is wrong, very wrong!!!
  // For now, all this does is search until the end of the data block,
  // assuming that the default parameterization [-inf,inf]x[-inf,inf] was used
  BitPosition bp = mData.getPosition();
  double nInf1 = mData.readDouble();
  double nInf2 = mData.readDouble();
  double inf1 = mData.readDouble();
  double inf2 = mData.readDouble();
  double one1 = mData.readDouble();
  double one2 = mData.readDouble();
  double zero1 = mData.readDouble();
  double zero2 = mData.readDouble();
  while(!(nInf1 == -12345.0 && nInf2 == -12345.0 && inf1 == 12345.0
          && inf2 == 12345.0 && one1 == 1.0 && one2 == 1.0 && zero1 == 0.0
          && zero2 == 0.0))
  {
    mData.setPosition(bp);
    cout << mData.readBit();
    bp = mData.getPosition();

    nInf1 = mData.readDouble();
    nInf2 = mData.readDouble();
    inf1 = mData.readDouble();
    inf2 = mData.readDouble();
    one1 = mData.readDouble();
    one2 = mData.readDouble();
    zero1 = mData.readDouble();
    zero2 = mData.readDouble();
  }
  cout << endl;
  if(bp.bitIndex == 0)
  {
    bp.bitIndex = 7;
    --bp.byteIndex;
  }
  else
  {
    --bp.bitIndex;
  }
  mData.setPosition(bp);

/*
  // this is what the 8137 docs say it should be
  describeTransformation3d(mData);
  cout << getIndent() << "UV domain" << endl;
  indent();
  cout << getIndent() << "Min: " << endl;
  describeVector2d(mData);
  cout << getIndent() << "Max: " << endl;
  describeVector2d(mData);
  dedent();

  cout << getIndent() << "u coef. a = " << mData.readDouble() << endl;
  cout << getIndent() << "v coef. a = " << mData.readDouble() << endl;
  cout << getIndent() << "u coef. b = " << mData.readDouble() << endl;
  cout << getIndent() << "v coef. b = " << mData.readDouble() << endl;
*/
  mData.setShowBits(false);
  dedent();
}

void describeTopoFace(BitByBitData &mData)
{
  cout << getIndent() << "--Face--" << endl;
  indent();

  describeBaseTopology(mData);

  cout << getIndent() << "base_surface" << endl;
  indent();
  describeObject(mData);
  dedent();

  bool surface_trim_domain = mData.readBit();
  cout << getIndent() << "surface_trim_domain "
      << (surface_trim_domain?"yes":"no") << endl;
  if(surface_trim_domain)
  {
    indent();
    describeExtent2d(mData);
    dedent();
  }

  bool have_tolerance = mData.readBit();
  cout << getIndent() << "have_tolerance "
      << (have_tolerance?"yes":"no") << endl;
  if(have_tolerance)
    cout << getIndent() << "tolerance " << mData.readDouble() << endl;

  unsigned int number_of_loops = mData.readUnsignedInt();
  cout << getIndent() << "number_of_loops " << number_of_loops << endl;
  cout << getIndent() << "outer_loop_index " << mData.readInt() << endl;
  indent();
  for(unsigned int i = 0; i < number_of_loops; ++i)
  {
    describeObject(mData);
  }
  dedent();

  dedent();
}

void describeTopoLoop(BitByBitData &mData)
{
  cout << getIndent() << "--Loop--" << endl;
  indent();

  describeBaseTopology(mData);
  
  cout << getIndent() << "orientation_with_surface "
      << static_cast<unsigned int>(mData.readChar()) << endl;
  unsigned int number_of_coedge = mData.readUnsignedInt();
  cout << getIndent() << "number_of_coedge " << number_of_coedge << endl;
  indent();
  for(unsigned int i = 0; i < number_of_coedge; ++i)
  {
    describeObject(mData);
    cout << getIndent() << "neigh_serial_index "
        << mData.readUnsignedInt() << endl;
  }
  dedent();

  dedent();
}

void describeTopoCoEdge(BitByBitData &mData)
{
  cout << getIndent() << "--CoEdge--" << endl;
  indent();

  describeBaseTopology(mData);

  describeObject(mData); // edge
  describeObject(mData); // uv_curve
  cout << getIndent() << "orientation_with_loop "
      << static_cast<unsigned int>(mData.readChar()) << endl;
  cout << getIndent() << "orientation_uv_with_loop "
      << static_cast<unsigned int>(mData.readChar()) << endl;
  dedent();
}

void describeTopoEdge(BitByBitData &mData)
{
  cout << getIndent() << "--Edge--" << endl;
  indent();

  describeContentWireEdge(mData);

  describeObject(mData); // vertex_start
  describeObject(mData); // vertex_end

  bool have_tolerance = mData.readBit();
  cout << getIndent() << "have_tolerance "
      << (have_tolerance?"yes":"no") << endl;
  if(have_tolerance)
    cout << getIndent() << "tolerance " << mData.readDouble() << endl;
  dedent();
}

void describeTopoUniqueVertex(BitByBitData &mData)
{
  cout << getIndent() << "--Unique Vertex--" << endl;
  indent();

  describeBaseTopology(mData);
  describeVector3d(mData);

  bool have_tolerance = mData.readBit();
  cout << getIndent() << "have_tolerance "
      << (have_tolerance?"yes":"no") << endl;
  if(have_tolerance)
    cout << getIndent() << "tolerance " << mData.readDouble() << endl;

  dedent();
}

void describeTopoConnex(BitByBitData &mData)
{
  cout << getIndent() << "--Connex--" << endl;
  indent();
  describeBaseTopology(mData);
  unsigned int number_of_shells = mData.readUnsignedInt();
  cout << getIndent() << "number_of_shells "
      << number_of_shells << endl;
  indent();
  for(unsigned int i = 0; i < number_of_shells; ++i)
  {
    // NOTE: this does not check if the objects are actually shells!
    describeObject(mData);
  }
  dedent();

  dedent();
}

void describeTopoShell(BitByBitData &mData)
{
  cout << getIndent() << "--Shell--" << endl;
  indent();

  describeBaseTopology(mData);

  cout << getIndent() << "shell_is_closed "
      << (mData.readBit()?"yes":"no") << endl;

  unsigned int number_of_faces = mData.readUnsignedInt();
  cout << getIndent() << "number_of_faces " << number_of_faces << endl;
  for(unsigned int i = 0; i < number_of_faces; ++i)
  {
    // NOTE: this does not check if the objects are actually faces!
    describeObject(mData);
    unsigned char orientation = mData.readChar();
    cout << getIndent() << "orientation_surface_with_shell "
        << static_cast<unsigned int>(orientation) << endl;
  }

  dedent();
}

void describeObject(BitByBitData &mData)
{
  cout << getIndent() << "--Object--" << endl;
  bool already_stored = mData.readBit();
  cout << getIndent() << "already_stored "
      << (already_stored?"yes":"no") << endl;
  if(already_stored) // reverse of documentation?
  {
    cout << getIndent() << "index of stored item "
        << mData.readUnsignedInt() << endl;
  }
  else
  {
    unsigned int type = mData.readUnsignedInt();
    switch(type)
    {
      case PRC_TYPE_ROOT:
        cout << getIndent() << "NULL Object" << endl;
        break;
      // topological items
      case PRC_TYPE_TOPO_Connex:
        describeTopoConnex(mData);
        break;
      case PRC_TYPE_TOPO_Shell:
        describeTopoShell(mData);
        break;
      case PRC_TYPE_TOPO_Face:
        describeTopoFace(mData);
        break;
      case PRC_TYPE_TOPO_Loop:
        describeTopoLoop(mData);
        break;
      case PRC_TYPE_TOPO_CoEdge:
        describeTopoCoEdge(mData);
        break;
      case PRC_TYPE_TOPO_Edge:
        describeTopoEdge(mData);
        break;
      case PRC_TYPE_TOPO_UniqueVertex:
        describeTopoUniqueVertex(mData);
        break;
      case PRC_TYPE_TOPO_WireEdge:
        describeContentWireEdge(mData);
        break;

      // curves
      case PRC_TYPE_CRV_Circle:
        describeCurvCircle(mData);
        break;
      case PRC_TYPE_CRV_NURBS:
        describeCurvNURBS(mData);
        break;
      case PRC_TYPE_CRV_PolyLine:
        describeCurvPolyLine(mData);
        break;
      case PRC_TYPE_CRV_Line:
        describeCurvLine(mData);
        break;
      // surfaces
      case PRC_TYPE_SURF_NURBS:
        describeSurfNURBS(mData);
        break;
      case PRC_TYPE_SURF_Cylinder:
        describeSurfCylinder(mData);
        break;
      case PRC_TYPE_SURF_Plane:
        describeSurfPlane(mData);
        break;

      // topological items
      case PRC_TYPE_TOPO_Item:
      case PRC_TYPE_TOPO_MultipleVertex:


      // curves
      case PRC_TYPE_CRV_Base:
      case PRC_TYPE_CRV_Blend02Boundary:
      case PRC_TYPE_CRV_Composite:
      case PRC_TYPE_CRV_OnSurf:
      case PRC_TYPE_CRV_Ellipse:
      case PRC_TYPE_CRV_Equation:
      case PRC_TYPE_CRV_Helix:
      case PRC_TYPE_CRV_Hyperbola:
      case PRC_TYPE_CRV_Intersection:
      case PRC_TYPE_CRV_Offset:
      case PRC_TYPE_CRV_Parabola:
      case PRC_TYPE_CRV_Transform:

      // surfaces
      case PRC_TYPE_SURF_Base:
      case PRC_TYPE_SURF_Blend01:
      case PRC_TYPE_SURF_Blend02:
      case PRC_TYPE_SURF_Blend03:
      case PRC_TYPE_SURF_Cone:
      case PRC_TYPE_SURF_Cylindrical:
      case PRC_TYPE_SURF_Offset:
      case PRC_TYPE_SURF_Pipe:
      case PRC_TYPE_SURF_Ruled:
      case PRC_TYPE_SURF_Sphere:
      case PRC_TYPE_SURF_Revolution:
      case PRC_TYPE_SURF_Extrusion:
      case PRC_TYPE_SURF_FromCurves:
      case PRC_TYPE_SURF_Torus:
      case PRC_TYPE_SURF_Transform:
      case PRC_TYPE_SURF_Blend04:
        cout << getIndent() << "TODO: Unhandled object of type "
            << type << endl;
        break;
      default:
        cout << getIndent() << "Invalid object of type " << type << endl;
        break;
    }
  }
}

void describeBaseTopology(BitByBitData &mData)
{
  bool base_information = mData.readBit();
  cout << getIndent() << "base_information " <<
      (base_information?"yes":"no") << endl;
  if(base_information)
  {
    describeAttributes(mData);
    describeName(mData);
    cout << getIndent() << "identifier " << mData.readUnsignedInt() << endl;
  }
}

void describeBaseGeometry(BitByBitData &mData)
{
  bool base_information = mData.readBit();
  cout << getIndent() << "base_information " <<
      (base_information?"yes":"no") << endl;
  if(base_information)
  {
    describeAttributes(mData);
    describeName(mData);
    cout << getIndent() << "identifier " << mData.readUnsignedInt() << endl;
  }
}

unsigned int describeContentBody(BitByBitData &mData)
{
  describeBaseTopology(mData);
  unsigned int behaviour = static_cast<unsigned int>(mData.readChar());
  cout << getIndent() << "behaviour " << behaviour << endl;
  return behaviour;
}

void describeContentSurface(BitByBitData &mData)
{
  describeBaseGeometry(mData);
  cout << getIndent() << "extend_info " << mData.readUnsignedInt() << endl;
}

void describeBody(BitByBitData &mData)
{
  cout << getIndent() << "--Body--" << endl;
  unsigned int type = mData.readUnsignedInt();
  switch(type)
  {
    case PRC_TYPE_TOPO_BrepData:
    {
      cout << getIndent() << "--PRC_TYPE_TOPO_BrepData--" << endl;
      unsigned int behaviour = describeContentBody(mData);

      unsigned int number_of_connex = mData.readUnsignedInt();
      cout << getIndent() << "number_of_connex " << number_of_connex << endl;
      indent();
      for(unsigned int i = 0; i < number_of_connex; ++i)
      {
        describeObject(mData);
      }
      dedent();
      if(behaviour != 0)
      {
        cout << getIndent() << "bbox " << endl;
        indent();
        describeExtent3d(mData);
        dedent();
      }
      break;
    }
    case PRC_TYPE_TOPO_SingleWireBody:
    {
      cout << getIndent() << "--PRC_TYPE_TOPO_SingleWireBody--" << endl;
      // unsigned int behaviour = describeContentBody(mData);
      // TODO: is behaviour needed to get data about how to describe?
      describeContentBody(mData);

      describeObject(mData); // curve

      break;
    } 
    case PRC_TYPE_TOPO_BrepDataCompress:
    case PRC_TYPE_TOPO_SingleWireBodyCompress:
      cout << getIndent() << "TODO: Unhandled body type " << type << endl;
      break;
    default:
      cout << getIndent() << "Invalid body type " << type << endl;
      break;
  }
}

void describeTopoContext(BitByBitData &mData)
{
  cout << getIndent() << "--Topological Context--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_TOPO_Context))
    return;
  indent();

  describeContentPRCBase(mData,false);

  cout << getIndent() << "behaviour "
      << static_cast<unsigned int>(mData.readChar()) << endl;
  cout << getIndent() << "granularity " << mData.readDouble() << endl;
  cout << getIndent() << "tolerance " << mData.readDouble() << endl;

  bool have_smallest_face_thickness = mData.readBit();
  cout << getIndent() << "have_smallest_face_thickness "
      << (have_smallest_face_thickness?"yes":"no") << endl;
  if(have_smallest_face_thickness)
    cout << getIndent() << "smallest_thickness " << mData.readDouble() << endl;

  bool have_scale = mData.readBit();
  cout << getIndent() << "have_scale " << (have_scale?"yes":"no") << endl;
  if(have_scale)
    cout << getIndent() << "scale " << mData.readDouble() << endl;

  dedent();
}

void describeLineAttr(BitByBitData& mData)
{
  cout << getIndent() << "index_of_line_style "
      << mData.readUnsignedInt()-1 << endl;
}

void describeArrayRGBA(BitByBitData& mData, int number_of_colours,
                       int number_by_vector)
{
  // bool new_colour = true; // not currently used
  for(int i = 0; i < number_by_vector; ++i)
  {
    cout << getIndent() << static_cast<unsigned int>(mData.readChar()) << ' ';
    cout << static_cast<unsigned int>(mData.readChar()) << ' ';
    cout << static_cast<unsigned int>(mData.readChar()) << endl;
    //TODO: finish this
  }
}

void describeContentBaseTessData(BitByBitData &mData)
{
  cout << getIndent() << "is_calculated "
      << (mData.readBit()?"yes":"no") << endl;
  unsigned int number_of_coordinates = mData.readUnsignedInt();
  cout << getIndent() << "number_of_coordinates "
      << number_of_coordinates << endl;
  indent();
  for(unsigned int i = 0; i < number_of_coordinates; ++i)
  {
    cout << getIndent() << mData.readDouble() << endl;
  }
  dedent();
}

void describeTessFace(BitByBitData &mData)
{
  cout << getIndent() << "--Tessellation Face--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_TESS_Face))
    return;
  indent();

  unsigned int size_of_line_attributes = mData.readUnsignedInt();
  cout << getIndent() << "size_of_line_attributes "
      << size_of_line_attributes << endl;
  indent();
  for(unsigned int i = 0; i < size_of_line_attributes; ++i)
  {
    describeLineAttr(mData);
  }
  dedent();

  unsigned int start_wire = mData.readUnsignedInt();
  cout << getIndent() << "start_wire " << start_wire << endl;
  unsigned int size_of_sizes_wire = mData.readUnsignedInt();
  cout << getIndent() << "size_of_sizes_wire " << size_of_sizes_wire << endl;
  indent();
  for(unsigned int i = 0; i < size_of_sizes_wire; ++i)
  {
    cout << getIndent() << mData.readUnsignedInt() << endl;
  }
  dedent();


  unsigned int used_entities_flag = mData.readUnsignedInt();
  cout << getIndent() << "used_entities_flag " << used_entities_flag << endl;

  unsigned int start_triangulated = mData.readUnsignedInt();
  cout << getIndent() << "start_triangulated " << start_triangulated << endl;
  unsigned int size_of_sizes_triangulated = mData.readUnsignedInt();
  cout << getIndent() << "size_of_sizes_triangulated "
      << size_of_sizes_triangulated << endl;
  indent();
  for(unsigned int i = 0; i < size_of_sizes_triangulated; ++i)
  {
    cout << getIndent() << mData.readUnsignedInt() << endl;
  }
  dedent();

  cout << getIndent() << "number_of_texture_coordinate_indexes "
      << mData.readUnsignedInt() << endl;

  bool has_vertex_colors = mData.readBit();
  cout << getIndent() << "has_vertex_colors "
      << (has_vertex_colors?"yes":"no") << endl;
  indent();
  if(has_vertex_colors)
  {
    bool is_rgba = mData.readBit();
    cout << getIndent() << "is_rgba " << (is_rgba?"yes":"no") << endl;

    bool b_optimised = mData.readBit();
    cout << getIndent() << "b_optimised " << (b_optimised?"yes":"no") << endl;
    if(!b_optimised)
    {
      indent();
      //TODO: compute size of Array and pass it instead of 0
      describeArrayRGBA(mData,0,(is_rgba ? 4 : 3));
      dedent();
    }
    else
    {
      // not described
      // what does this mean? that this should not happen?
      // or is omitted from the docs?
    }
  }
  dedent();

  if(size_of_line_attributes)
  {
    cout << getIndent() << "behaviour " << mData.readUnsignedInt() << endl;
  }

  dedent();
}

void describe3DTess(BitByBitData &mData)
{
  cout << getIndent() << "--3D Tessellation--" << endl;
  indent();

  describeContentBaseTessData(mData);

  cout << getIndent() << "has_faces " << (mData.readBit()?"yes":"no") << endl;
  cout << getIndent() << "has_loops " << (mData.readBit()?"yes":"no") << endl;

  bool must_recalculate_normals = mData.readBit();
  cout << getIndent() << "must_recalculate_normals "
      << (must_recalculate_normals?"yes":"no") << endl;
  indent();
  if(must_recalculate_normals)
  {
    cout << getIndent()
        << "Docs were wrong: must_recalculate_normals is true." << endl;
    cout << getIndent() << "normals_recalculation_flags "
        << static_cast<unsigned int>(mData.readChar()) << endl;
    cout << getIndent() << "crease_angle " << mData.readDouble() << endl;
  }
  dedent();

  unsigned int number_of_normal_coordinates = mData.readUnsignedInt();
  cout << getIndent() << "number_of_normal_coordinates "
      << number_of_normal_coordinates << endl;
  indent();
  for(unsigned int i = 0; i < number_of_normal_coordinates; ++i)
  {
    cout << getIndent() << mData.readDouble() << endl;
  }
  dedent();

  unsigned int number_of_wire_indices = mData.readUnsignedInt();
  cout << getIndent() << "number_of_wire_indices "
      << number_of_wire_indices << endl;
  indent();
  for(unsigned int i = 0; i < number_of_wire_indices; ++i)
  {
    cout << getIndent() << mData.readUnsignedInt() << endl;
  }
  dedent();

  unsigned int number_of_triangulated_indices = mData.readUnsignedInt();
  cout << getIndent() << "number_of_triangulated_indices "
      << number_of_triangulated_indices << endl;
  indent();
  for(unsigned int i = 0; i < number_of_triangulated_indices; ++i)
  {
    cout << getIndent() << mData.readUnsignedInt() << endl;
  }
  dedent();

  unsigned int number_of_face_tessellation = mData.readUnsignedInt();
  cout << getIndent() << "number_of_face_tessellation "
      << number_of_face_tessellation << endl;
  indent();
  for(unsigned int i = 0; i < number_of_face_tessellation; ++i)
  {
    describeTessFace(mData);
  }
  dedent();

  unsigned int number_of_texture_coordinates = mData.readUnsignedInt();
  cout << getIndent() << "number_of_texture_coordinates "
      << number_of_texture_coordinates << endl;
  indent();
  for(unsigned int i = 0; i < number_of_texture_coordinates; ++i)
  {
    cout << getIndent() << mData.readDouble() << endl;
  }
  dedent();

  dedent();
}

void describe3DWireTess(BitByBitData &mData)
{
  //TODO
}

void describe3DMarkupTess(BitByBitData &mData)
{
  //TODO
}

void describeHighlyCompressed3DTess(BitByBitData &mData)
{
  //TODO
}

void describeSceneDisplayParameters(BitByBitData &mData)
{
  cout << getIndent() << "--Scene Display Parameters--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_GRAPH_SceneDisplayParameters))
    return;
  indent();
  describeContentPRCBase(mData,true);

  cout << getIndent() << "is active? " << (mData.readBit()?"yes":"no") << endl;

  unsigned int number_of_lights = mData.readUnsignedInt();
  cout << getIndent() << "number of lights " << number_of_lights << endl;
  indent();
  for(unsigned int i = 0; i < number_of_lights; ++i)
  {
    describeLight(mData);
  }
  dedent();

  bool camera = mData.readBit();
  cout << getIndent() << "camera? " << (camera?"yes":"no") << endl;
  if(camera)
    describeCamera(mData);

  bool rotation_centre = mData.readBit();
  cout << getIndent() << "rotation centre? " << (rotation_centre?"yes":"no") << endl;
  if(rotation_centre)
    describeVector3d(mData);

  unsigned int number_of_clipping_planes = mData.readUnsignedInt();
  cout << getIndent() << "number of clipping planes " << number_of_clipping_planes << endl;
  indent();
  for(unsigned int i = 0; i < number_of_clipping_planes; ++i)
  {
    cout << "Can't describe planes!!!" << endl;
    //describePlane(mData);
  }
  dedent();

  cout << getIndent() << "Background line style index: " << mData.readUnsignedInt()-1 << endl;
  cout << getIndent() << "Default line style index: " << mData.readUnsignedInt()-1 << endl;

  unsigned int number_of_default_styles_per_type = mData.readUnsignedInt();
  cout << getIndent() << "number_of_default_styles_per_type " << number_of_default_styles_per_type << endl;
  indent();
  for(unsigned int i = 0; i < number_of_default_styles_per_type; ++i)
  {
    cout << getIndent() << "type " << mData.readUnsignedInt() << endl;
    cout << getIndent() << "line style index: " << mData.readUnsignedInt()-1 << endl;
  }
  dedent();

  dedent();
}

void describeCartesionTransformation3d(BitByBitData& mData)
{
  cout << getIndent() << "--3d Cartesian Transformation--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_MISC_CartesianTransformation))
    return;
  indent();
  unsigned char behaviour = mData.readChar();
  cout << getIndent() << "behaviour "
      << static_cast<unsigned int>(behaviour) << endl;
  if((behaviour & PRC_TRANSFORMATION_Translate) != 0)
  {
    cout << getIndent() << "Translation" << endl;
    describeVector3d(mData);
  }

  if((behaviour & PRC_TRANSFORMATION_NonOrtho) != 0)
  {
    cout << getIndent() << "Non orthogonal transformation" << endl;
    cout << getIndent() << "X" << endl; describeVector3d(mData);
    cout << getIndent() << "Y" << endl; describeVector3d(mData);
    cout << getIndent() << "Z" << endl; describeVector3d(mData);
  }
  else if((behaviour & PRC_TRANSFORMATION_Rotate) != 0)
  {
    cout << getIndent() << "Rotation" << endl;
    cout << getIndent() << "X" << endl; describeVector3d(mData);
    cout << getIndent() << "Y" << endl; describeVector3d(mData);
  }

  // this is different from the docs!!! but it works...
  if ((behaviour & PRC_TRANSFORMATION_NonUniformScale) != 0)
  {
    cout << getIndent() << "Non-uniform scale by " << endl;
    describeVector3d(mData);
  }

  // this is different from the docs!!! but it works...
  if((behaviour & PRC_TRANSFORMATION_Scale) != 0)
  {
    cout << getIndent() << "Uniform Scale by " << mData.readDouble() << endl;
  }

  if((behaviour & PRC_TRANSFORMATION_Homogeneous) != 0)
  {
    cout << getIndent() << "transformation has homogenous values" << endl;
    cout << getIndent() << "x = " << mData.readDouble() << endl;
    cout << getIndent() << "y = " << mData.readDouble() << endl;
    cout << getIndent() << "z = " << mData.readDouble() << endl;
    cout << getIndent() << "w = " << mData.readDouble() << endl;
  }
  dedent();
}

void describeTransformation3d(BitByBitData& mData)
{
  cout << getIndent() << "--3d Transformation--" << endl;
  indent();
  bool has_transformation = mData.readBit();
  cout << getIndent() << "has_transformation "
      << (has_transformation?"yes":"no") << endl;
  if(has_transformation)
  {
    unsigned char behaviour = mData.readChar();
    cout << getIndent() << "behaviour "
        << static_cast<unsigned int>(behaviour) << endl;
    if((behaviour & PRC_TRANSFORMATION_Translate) != 0)
    {
      cout << getIndent() << "Translation" << endl;
      describeVector3d(mData);
    }
    if((behaviour & PRC_TRANSFORMATION_Rotate) != 0)
    {
      cout << getIndent() << "Rotation" << endl;
      cout << getIndent() << "X" << endl; describeVector3d(mData);
      cout << getIndent() << "Y" << endl; describeVector3d(mData);
    }

    if((behaviour & PRC_TRANSFORMATION_Scale) != 0)
    {
      cout << getIndent() << "Uniform Scale by " << mData.readDouble() << endl;
    }
  }
  dedent();
}

void describeTransformation2d(BitByBitData& mData)
{
  cout << getIndent() << "--2d Transformation--" << endl;
  indent();
  bool has_transformation = mData.readBit();
  cout << "has_transformation " << (has_transformation?"yes":"no") << endl;
  if(has_transformation)
  {
    unsigned char behaviour = mData.readChar();
    cout << getIndent() << "behaviour "
        << static_cast<unsigned int>(behaviour) << endl;
    if((behaviour & PRC_TRANSFORMATION_Translate) != 0)
    {
      cout << getIndent() << "Translation" << endl;
      describeVector2d(mData);
    }
    if((behaviour & PRC_TRANSFORMATION_Rotate) != 0)
    {
      cout << getIndent() << "Rotation" << endl;
      cout << getIndent() << "X" << endl; describeVector2d(mData);
      cout << getIndent() << "Y" << endl; describeVector2d(mData);
    }

    if((behaviour & PRC_TRANSFORMATION_Scale) != 0)
    {
      cout << getIndent() << "Uniform Scale by " << mData.readDouble() << endl;
    }
  }
  dedent();
}

void describeFileStructureInternalData(BitByBitData &mData)
{
  cout << getIndent() << "--File Structure Internal Data--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_FileStructure))
    return;
  indent();
  describeContentPRCBase(mData,false);
  cout << getIndent() << "next_available_index "
      << mData.readUnsignedInt() << endl;
  cout << getIndent() << "index_product_occurence "
      << mData.readUnsignedInt() << endl;
  dedent();
}

void describeProductOccurrence(BitByBitData &mData)
{
  cout << getIndent() << "--Product Occurrence--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_ProductOccurence))
    return;
  indent();

  describeContentPRCBaseWithGraphics(mData,true);

  cout << getIndent() << "index_part "
      << static_cast<int>(mData.readUnsignedInt()-1) << endl;
  unsigned int index_prototype = mData.readUnsignedInt()-1;
  cout << getIndent() << "index_prototype "
      << static_cast<int>(index_prototype) << endl;
  if(index_prototype+1 != 0)
  {
    bool prototype_in_same_file_structure = mData.readBit();
    cout << getIndent() << "prototype_in_same_file_structure "
        << (prototype_in_same_file_structure?"yes":"no") << endl;
    if(!prototype_in_same_file_structure)
      describeCompressedUniqueID(mData);
  }

  unsigned int index_external_data = mData.readUnsignedInt()-1;
  cout << getIndent() << "index_external_data "
      << static_cast<int>(index_external_data) << endl;
  if(index_external_data+1 != 0)
  {
    bool external_data_in_same_file_structure = mData.readBit();
    cout << getIndent() << "external_data_in_same_file_structure "
        << (external_data_in_same_file_structure?"yes":"no") << endl;
    if(!external_data_in_same_file_structure)
      describeCompressedUniqueID(mData);
  }

  unsigned int number_of_son_product_occurences = mData.readUnsignedInt();
  cout << getIndent() << "number_of_son_product_occurences "
      << number_of_son_product_occurences << endl;
  indent();
  for(unsigned int i = 0; i < number_of_son_product_occurences; ++i)
    cout << getIndent() << mData.readUnsignedInt() << endl;
  dedent();

  cout << getIndent() << "product_behaviour "
      << static_cast<unsigned int>(mData.readChar()) << endl;

  describeUnit(mData);
  cout << getIndent() << "Product information flags "
      << static_cast<unsigned int>(mData.readChar()) << endl;
  cout << getIndent() << "product_load_status "
      << mData.readUnsignedInt() << endl;

  bool has_location = mData.readBit();
  cout << getIndent() << "has_location " << has_location << endl;
  if(has_location)
  {
    describeCartesionTransformation3d(mData);
  }

  unsigned int number_of_references = mData.readUnsignedInt();
  cout << getIndent() << "number_of_references "
      << number_of_references << endl;
  indent();
  for(unsigned int i = 0; i < number_of_references; ++i)
  {
    //TODO: describeReferenceToPRCBase(mData);
  }
  dedent();

  describeMarkups(mData);

  unsigned int number_of_views = mData.readUnsignedInt();
  cout << getIndent() << "number_of_views " << number_of_views << endl;
  indent();
  for(unsigned int i = 0; i < number_of_views; ++i)
  {
    describeAnnotationView(mData);
  }
  dedent();

  bool has_entity_filter = mData.readBit();
  cout << getIndent() << "has_entity_filter "
      << (has_entity_filter?"yes":"no") << endl;
  if(has_entity_filter)
  {
    //TODO: describeEntityFilter(mData);
  }

  unsigned int number_of_display_filters = mData.readUnsignedInt();
  cout << getIndent() << "number_of_display_filters "
      << number_of_display_filters << endl;
  indent();
  for(unsigned int i = 0; i < number_of_display_filters; ++i)
  {
    //TODO: describeFilter(mData);
  }
  dedent();

  unsigned int number_of_scene_display_parameters = mData.readUnsignedInt();
  cout << getIndent() << "number_of_scene_display_parameters "
      << number_of_scene_display_parameters << endl;
  indent();
  for(unsigned int i = 0; i < number_of_scene_display_parameters; ++i)
  {
    describeSceneDisplayParameters(mData);
  }
  dedent();

  describeUserData(mData);
  dedent();
}

void describeGraphics(BitByBitData &mData)
{
  bool sameGraphicsAsCurrent = mData.readBit();
  cout << getIndent() << "Same graphics as current graphics? "
      << (sameGraphicsAsCurrent?"yes":"no") << endl;
  if(!sameGraphicsAsCurrent)
  {
    layer_index = mData.readUnsignedInt()-1;
    cout << getIndent() << "layer_index " << layer_index << endl;
    index_of_line_style = mData.readUnsignedInt()-1;
    cout << getIndent() << "index_of_line_style "
        << index_of_line_style << endl;
    unsigned char c1 = mData.readChar();
    unsigned char c2 = mData.readChar();
    behaviour_bit_field = c1 | (static_cast<unsigned short>(c2) << 8);
    cout << getIndent() << "behaviour_bit_field "
        << behaviour_bit_field << endl;
  }
}

void describeContentPRCBaseWithGraphics(BitByBitData &mData, bool efr)
{
  describeContentPRCBase(mData,efr);
  describeGraphics(mData);
}

void describePartDefinition(BitByBitData &mData)
{
  cout << getIndent() << "--Part Definition--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_ASM_PartDefinition))
    return;
  indent();

  describeContentPRCBaseWithGraphics(mData,true);
  describeExtent3d(mData);

  unsigned int number_of_representation_items = mData.readUnsignedInt();
  cout << getIndent() << "number_of_representation_items "
      << number_of_representation_items << endl;
  indent();
  for(unsigned int i = 0; i < number_of_representation_items; ++i)
  {
    describeRepresentationItem(mData);
  }
  dedent();

  describeMarkups(mData);

  unsigned int number_of_views = mData.readUnsignedInt();
  cout << getIndent() << "number_of_views " << number_of_views << endl;
  indent();
  for(unsigned int i = 0; i < number_of_views; ++i)
  {
    describeAnnotationView(mData);
  }
  dedent();

  describeUserData(mData);
  dedent();
}

void describeMarkups(BitByBitData& mData)
{
  cout << getIndent() << "--Markups--" << endl;
  indent();

  unsigned int number_of_linked_items = mData.readUnsignedInt();
  cout << getIndent() << "number_of_linked_items "
      << number_of_linked_items << endl;
  for(unsigned int i = 0; i < number_of_linked_items; ++i)
  {
    cout << "describe linked item!" << endl;
  }

  unsigned int number_of_leaders = mData.readUnsignedInt();
  cout << getIndent() << "number_of_leaders " << number_of_leaders << endl;
  for(unsigned int i = 0; i < number_of_leaders; ++i)
  {
    cout << "describe leader!" << endl;
  }

  unsigned int number_of_markups = mData.readUnsignedInt();
  cout << getIndent() << "number_of_markups " << number_of_markups << endl;
  for(unsigned int i=0; i < number_of_markups; ++i)
  {
    cout << "describe markup!" << endl;
  }

  unsigned int number_of_annotation_entities = mData.readUnsignedInt();
  cout << getIndent() << "number_of_annotation_entities "
      << number_of_annotation_entities << endl;
  for(unsigned int i=0; i < number_of_annotation_entities; ++i)
  {
    cout << "describe annotation entity!" << endl;
  }

  dedent();
}

void describeAnnotationView(BitByBitData &mData)
{
  cout << getIndent() << "--Annotation View--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_MKP_View))
    return;
  indent();
  describeContentPRCBaseWithGraphics(mData,true);
  unsigned int number_of_annotations = mData.readUnsignedInt();
  for(unsigned int i = 0; i < number_of_annotations; ++i)
  {
    //TODO: describeReferenceUniqueIdentifier(mData);
  }
  //TODO: describePlane(mData);
  bool scene_display_parameters = mData.readBit();
  if(scene_display_parameters)
  {
    describeSceneDisplayParameters(mData);
  }
  describeUserData(mData);
  dedent();
}

void describeExtent3d(BitByBitData &mData)
{ // I suspect the order of min/max should be flipped
  cout << getIndent() << "Minimum" << endl;
  indent(); describeVector3d(mData); dedent();
  cout << getIndent() << "Maximum" << endl;
  indent(); describeVector3d(mData); dedent();
}

void describeExtent1d(BitByBitData &mData)
{
  cout << getIndent() << "Minimum " << mData.readDouble() << endl;
  cout << getIndent() << "Maximum " << mData.readDouble() << endl;
}

void describeExtent2d(BitByBitData &mData)
{
  cout << getIndent() << "Minimum" << endl;
  indent(); describeVector2d(mData); dedent();
  cout << getIndent() << "Maximum" << endl;
  indent(); describeVector2d(mData); dedent();
}

void describeVector3d(BitByBitData &mData)
{
  double x = mData.readDouble();
  double y = mData.readDouble();
  double z = mData.readDouble();
  cout << getIndent() << '(' << x << ',' << y << ',' << z << ')' << endl;
}

void describeVector2d(BitByBitData &mData)
{
  double x = mData.readDouble();
  double y = mData.readDouble();
  cout << getIndent() << '(' << x << ',' << y << ')' << endl;
}

void describePicture(BitByBitData &mData)
{
  cout << getIndent() << "--Picture--" << endl;
  unsigned int sectionCode = mData.readUnsignedInt();
  if(sectionCode != PRC_TYPE_GRAPH_Picture)
  {
    cout << getIndent() << "Invalid section code." << endl;
  }

  describeContentPRCBase(mData,false);

  int format = mData.readInt();
  switch(format)
  {
    case KEPRCPicture_PNG:
      cout << getIndent() << "PNG format" << endl;
      break;
    case KEPRCPicture_JPG:
      cout << getIndent() << "JPG format" << endl;
      break;
    case KEPRCPicture_BITMAP_RGB_BYTE:
      cout << getIndent() << "gzipped pixel data (see PRC base compression). Each element is a RGB triple. (3 components)" << endl;
      break;
    case KEPRCPicture_BITMAP_RGBA_BYTE:
      cout << getIndent() << "gzipped pixel data (see PRC base compression). Each element is a complete RGBA element. (4 components)" << endl;
      break;
    case KEPRCPicture_BITMAP_GREY_BYTE:
      cout << getIndent() << "gzipped pixel data (see PRC base compression). Each element is a single luminance value. (1 components)" << endl;
      break;
    case KEPRCPicture_BITMAP_GREYA_BYTE:
      cout << getIndent() << "gzipped pixel data (see PRC base compression). Each element is a luminance/alpha pair. (2 components)" << endl;
      break;
    default:
      cout << getIndent() << "Invalid picture format." << endl;
      break;
  }
  cout << getIndent() << "uncompressed_file_index "
      << mData.readUnsignedInt()-1 << endl;
  cout << getIndent() << "pixel width " << mData.readUnsignedInt() << endl;
  cout << getIndent() << "pixel height " << mData.readUnsignedInt() << endl;
}

void describeTextureDefinition(BitByBitData &mData)
{
  cout << getIndent() << "--Texture Definition--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_GRAPH_TextureDefinition))
    return;
  
  cout << getIndent() << "TODO: Can't describe textures yet." << endl;
}

void describeMaterial(BitByBitData &mData)
{
  cout << getIndent() << "--Material--" << endl;
  unsigned int code = mData.readUnsignedInt();
  if(code == PRC_TYPE_GRAPH_Material)
  {
    describeContentPRCBase(mData,true);
    cout << getIndent() << "index of ambient color "
        << mData.readUnsignedInt() - 1 << endl;
    cout << getIndent() << "index of diffuse color "
        << mData.readUnsignedInt() - 1 << endl;
    cout << getIndent() << "index of emissive color "
        << mData.readUnsignedInt() - 1 << endl;
    cout << getIndent() << "index of specular color "
        << mData.readUnsignedInt() - 1 << endl;
    cout << getIndent() << "shininess " << mData.readDouble() << endl;
    cout << getIndent() << "ambient_alpha " << mData.readDouble() << endl;
    cout << getIndent() << "diffuse_alpha " << mData.readDouble() << endl;
    cout << getIndent() << "emissive_alpha " << mData.readDouble() << endl;
    cout << getIndent() << "specular_alpha " << mData.readDouble() << endl;
  }
  else if(code == PRC_TYPE_GRAPH_TextureApplication)
  {
    describeContentPRCBase(mData,true);
    cout << getIndent() << "material_generic_index "
        << mData.readUnsignedInt() - 1 << endl;
    cout << getIndent() << "texture_definition_index "
        << mData.readUnsignedInt() - 1 << endl;
    cout << getIndent() << "next_texture_index "
        << mData.readUnsignedInt() - 1 << endl;
    cout << getIndent() << "UV_coordinates_index "
        << mData.readUnsignedInt() - 1 << endl;
  }
  else
  {
    cout << getIndent() << "Invalid section code in material definition."
        << endl;
  }
}

void describeLinePattern(BitByBitData &mData)
{
  cout << getIndent() << "--Line Pattern--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_GRAPH_LinePattern))
    return;
  indent();

  describeContentPRCBase(mData,true);
  unsigned int size_lengths = mData.readUnsignedInt();
  cout << getIndent() << "size_lengths " << size_lengths << endl;
  indent();
  for(unsigned int i=0;i<size_lengths;i++)
  {
    cout << getIndent() << "length " << mData.readDouble() << endl;
  }
  dedent();
  cout << getIndent() << "phase " << mData.readDouble() << endl;
  cout << getIndent() << "is real length "
      << (mData.readBit()?"yes":"no") << endl;

  dedent();
}

void describeCategory1LineStyle(BitByBitData &mData)
{
  cout << getIndent() << "--Category 1 Line Style--" << endl;
  if(!checkSectionCode(mData,PRC_TYPE_GRAPH_Style))
    return;
  indent();

  // This was missing from the docs!!!!! argh!
  describeContentPRCBase(mData,true); 


  cout << getIndent() << "line_width " << mData.readDouble() << " mm" << endl;

  cout << getIndent() << "is_vpicture " << (mData.readBit()?"yes":"no") << endl;

  cout << getIndent() << "line_pattern_index/vpicture_index "
      << static_cast<int>(mData.readUnsignedInt()-1) << endl;
  cout << getIndent() << "is_material " << (mData.readBit()?"yes":"no") << endl;
  cout << getIndent() << "color_index / material_index "
      << static_cast<int>(mData.readUnsignedInt()-1) << endl;

  bool is_transparency_defined = mData.readBit();
  cout << getIndent() << "is_transparency_defined "
      << (is_transparency_defined?"yes":"no") << endl;
  if(is_transparency_defined)
  {
    indent();
    cout << getIndent() << "transparency "
        << static_cast<unsigned int>(mData.readChar()) << endl;
    dedent();
  }

  bool is_additional_1_defined = mData.readBit();
  cout << getIndent() << "is_additional_1_defined "
      << (is_additional_1_defined?"yes":"no") << endl;
  if(is_additional_1_defined)
  {
    indent();
    cout << getIndent() << "additional_1 "
        << static_cast<unsigned int>(mData.readChar()) << endl;
    dedent();
  }

  bool is_additional_2_defined = mData.readBit();
  cout << getIndent() << "is_additional_2_defined "
      << (is_additional_2_defined?"yes":"no") << endl;
  if(is_additional_2_defined)
  {
    indent();
    cout << getIndent() << "additional_2 "
        << static_cast<unsigned int>(mData.readChar()) << endl;
    dedent();
  }

  bool is_additional_3_defined = mData.readBit();
  cout << getIndent() << "is_additional_3_defined "
      << (is_additional_3_defined?"yes":"no") << endl;
  if(is_additional_3_defined)
  {
    indent();
    cout << getIndent() << "additional_3 "
        << static_cast<unsigned int>(mData.readChar()) << endl;
    dedent();
  }
  dedent();
}

void describeFillPattern(BitByBitData &mData)
{
  cout << getIndent() << "--Fill Pattern--" << endl;
  unsigned int type = mData.readUnsignedInt();
  cout << getIndent() << "type " << type << endl;
  switch(type)
  {
    //TODO: actually describe fill patterns
    default:
      cout << getIndent() << "Invalid fill pattern type " << type << endl;
  }
}

void describeRepresentationItemContent(BitByBitData &mData)
{
  describeContentPRCBaseWithGraphics(mData,true);
  unsigned int index_local_coordinate_system = mData.readUnsignedInt()-1;
  unsigned int index_tessellation = mData.readUnsignedInt()-1;
  //cast to int will not be right for big indices
  cout << getIndent() << "index_local_coordinate_system "
      << static_cast<int>(index_local_coordinate_system) << endl;
  cout << getIndent() << "index_tessellation "
      << static_cast<int>(index_tessellation) << endl;
}

void describeRepresentationItem(BitByBitData &mData)
{
  cout << getIndent() << "--Representation Item--" << endl;
  unsigned int type = mData.readUnsignedInt();
  switch(type)
  {
    case PRC_TYPE_RI_Curve:
    {
      cout << getIndent() << "--PRC_TYPE_RI_Curve--" << endl;
      describeRepresentationItemContent(mData);
      bool has_wire_body = mData.readBit();
      if(has_wire_body)
      {
        cout << getIndent() << "context_id " << mData.readUnsignedInt() << endl;
        cout << getIndent() << "body_id " << mData.readUnsignedInt() << endl;
      }
      describeUserData(mData);
      break;
    }
    case PRC_TYPE_RI_PolyBrepModel:
    {
      cout << getIndent() << "--PRC_TYPE_RI_PolyBrepModel--" << endl;
      describeRepresentationItemContent(mData);
      cout << getIndent() << "is_closed "
          << (mData.readBit()?"yes":"no") << endl;
      describeUserData(mData);
      break;
    }
    case PRC_TYPE_RI_BrepModel:
    {
      cout << getIndent() << "--PRC_TYPE_RI_BrepModel--" << endl;
      describeRepresentationItemContent(mData);
      bool has_brep_data = mData.readBit();
      cout << getIndent() << "has_brep_data "
          << (has_brep_data?"yes":"no") << endl;
      if(has_brep_data)
      {
        cout << getIndent() << "context_id " << mData.readUnsignedInt() << endl;
        cout << getIndent() << "object_id " << mData.readUnsignedInt() << endl;
      }
      cout << getIndent() << "is_closed "
          << (mData.readBit()?"yes":"no") << endl;
      describeUserData(mData);
      break;
    }
    case PRC_TYPE_RI_Direction:

    case PRC_TYPE_RI_Plane:
    case PRC_TYPE_RI_CoordinateSystem:
    case PRC_TYPE_RI_PointSet:
    case PRC_TYPE_RI_Set:
    case PRC_TYPE_RI_PolyWire:
      cout << getIndent() << "TODO: Unhandled representation item "
          << type << endl;
      break;
    default:
      cout << getIndent() << "Invalid representation item type "
          << type << endl;
      break;
  }
}

void describeRGBColour(BitByBitData &mData)
{
  cout << getIndent() << "R: " << mData.readDouble();
  cout << " G: " << mData.readDouble();
  cout << " B: " << mData.readDouble() << endl;
}

void describeSchema(BitByBitData &mData)
{
  cout << getIndent() << "--Schema--" << endl;
  indent();
  unsigned int numSchemas = mData.readUnsignedInt();
  cout << getIndent() << "Number of Schemas " << numSchemas << endl;
  if(numSchemas != 0)
  {
    cout << "Error: Don't know how to handle multiple schemas." << endl;
  }
  dedent();
}

string currentName;
int layer_index;
int index_of_line_style;
unsigned short behaviour_bit_field;

void resetCurrentGraphics()
{
  layer_index = -1;
  index_of_line_style = -1;
  behaviour_bit_field = 1;
}

void unFlushSerialization()
{
  currentName = "";

  resetCurrentGraphics();
}

void describeName(BitByBitData &mData)
{
  bool sameNameAsCurrent = mData.readBit();
  cout << getIndent() << "Same name as current name? "
      << (sameNameAsCurrent?"yes":"no") << endl;
  if(!sameNameAsCurrent)
    currentName = mData.readString();
  cout << getIndent() << "Name \"" << currentName << '\"' << endl;
}

void describeUnit(BitByBitData &mData)
{
  cout << getIndent() << "Unit is from CAD file? "
      << (mData.readBit()?"yes":"no") << endl;
  cout << getIndent() << "Unit is " << mData.readDouble() << " mm" << endl;
}

void describeAttributes(BitByBitData &mData)
{
  cout << getIndent() << "--Attributes--" << endl;
  indent();

  unsigned int numAttribs = mData.readUnsignedInt();
  cout << getIndent() << "Number of Attributes " << numAttribs << endl;
  indent();
  for(unsigned int i = 0; i < numAttribs; ++i)
  {
    cout << getIndent() << "PRC_TYPE_MISC_Attribute "
        << mData.readUnsignedInt() << endl;
    bool titleIsInt = mData.readBit();
    cout << getIndent() << "Title is integer? "
        << (titleIsInt?"yes":"no") << endl;
    indent();
    if(titleIsInt)
    {
      cout << getIndent() << "Title " << mData.readUnsignedInt() << endl;
    }
    else
    {
      cout << getIndent() << "Title \"" << mData.readString() << '\"' << endl;
    }
    unsigned int sizeOfAttributeKeys = mData.readUnsignedInt();
    cout << getIndent() << "Size of Attribute Keys "
        << sizeOfAttributeKeys << endl;
    for(unsigned int a = 0; a < sizeOfAttributeKeys; ++a)
    {
      bool titleIsInt = mData.readBit();
      cout << getIndent() << "Title is integer? "
          << (titleIsInt?"yes":"no") << endl;
      indent();
      if(titleIsInt)
      {
        cout << getIndent() << "Title " << mData.readUnsignedInt() << endl;
      }
      else
      {
        cout << getIndent() << "Title \"" << mData.readString() << '\"' << endl;
      }
      dedent();
      unsigned int attributeType = mData.readUnsignedInt();
      cout << getIndent() << "Attribute Type " << attributeType << endl;
      switch(attributeType)
      {
        case KEPRCModellerAttributeTypeInt:
          cout << getIndent() << "Attribute Value (int) "
              << mData.readInt() << endl;
          break;
        case KEPRCModellerAttributeTypeReal:
          cout << getIndent() << "Attribute Value (double) "
              << mData.readDouble() << endl;
          break;
        case KEPRCModellerAttributeTypeTime:
          cout << getIndent() << "Attribute Value (time_t) "
              << mData.readUnsignedInt() << endl;
          break;
        case KEPRCModellerAttributeTypeString:
          cout << getIndent() << "Attribute Value (string) \""
              << mData.readString() << '\"' << endl;
          break;
        default:
          break;
      }
    }
    dedent();

    cout << endl;
  }
  dedent();


  dedent();
}

void describeContentPRCBase(BitByBitData &mData, bool typeEligibleForReference)
{
  cout << getIndent() << "--ContentPRCBase--" << endl;
  indent();
  describeAttributes(mData);
  describeName(mData);
  if(typeEligibleForReference)
  {
    cout << getIndent() << "CAD_identifier "
        << mData.readUnsignedInt() << endl;
    cout << getIndent() << "CAD_persistent_identifier "
        << mData.readUnsignedInt() << endl;
    cout << getIndent() << "PRC_unique_identifier "
        << mData.readUnsignedInt() << endl;
  }
  dedent();
}

void describeCompressedUniqueID(BitByBitData &mData)
{
  cout << getIndent() << "UUID: " << hex << setfill('0');
  for(int i = 0; i < 4; ++i)
    cout << setw(8) << mData.readUnsignedInt() << ' ';
  cout << dec << setfill(' ') << endl;
}

void describeUserData(BitByBitData &mData)
{
  unsigned int bits = mData.readUnsignedInt();
  cout << getIndent() << bits << " bits of user data" << endl;
  indent();
  for(unsigned int i = 0; i < bits; ++i)
  {
    if(i%64 == 0)
      cout << getIndent();
    cout << mData.readBit();
    if(i%64 == 63)
      cout << endl;
  }
  if(bits%64 != 0)
    cout << endl;
  dedent();
}

bool checkSectionCode(BitByBitData &mData, unsigned int code)
{
  unsigned int num = mData.readUnsignedInt();
  if(code != num)
  {
    cout << getIndent() << "Invalid section code " << num <<
        ". Expected " << code << " at "; mData.tellPosition();
    return false;
  }
  else
  {
    cout << getIndent() << "Section code " << code << endl;
    return true;
  }
}

unsigned int currentIndent = 0;

string getIndent()
{
  ostringstream out;
  for(unsigned int i = 0; i < currentIndent; ++i)
    out << "  ";
  return out.str();
}

void indent()
{
  ++currentIndent;
}

void dedent()
{
  --currentIndent;
}