-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog
1766 lines (960 loc) · 55.5 KB
/
ChangeLog
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
Generating full history
----------
2010-07-21 Rodrigo Rodrigues da Silva <[email protected]>
[r] Initial R2010 support
*common.h: added R_2010 do version enum
*common.c: added R2010 version string
2010-07-21 Rodrigo Rodrigues da Silva <[email protected]>
[r] Fixing error in file structure decoding
* src/decode.c: checking if links are present (now code complies to spec)
2010-07-07 acardoso <[email protected]>
added compiling flag for enable write support (--enable-write), uncommented write functions and added a dwg_encoder_header_variables function
2010-06-07 Thien-Thi Nguyen <[email protected]>
[admin] Fix Git portability bug: Use ‘--pretty=format:STR’.
* build-aux/create-changelog: Use ‘--pretty-format:STR’
instead of ‘--format=STR’, which is not yet widely supported.
2010-06-05 Till Heuschmann <[email protected]>
[admin] updating copyright notices
2010-04-28 Rodrigo Rodrigues da Silva <[email protected]>
[admin] updating file headers and copyright notices
2010-04-28 Rodrigo Rodrigues da Silva <[email protected]>
[admin] adding *~ pattern to .gitignore
2010-04-28 Rodrigo Rodrigues da Silva <[email protected]>
[admin] Update AUTHORS file
2010-03-15 Thien-Thi Nguyen <[email protected]>
[admin] Mention Texinfo in HACKING.
* HACKING (other tools): New section.
2010-03-14 Till Heuschmann <[email protected]>
[r] decode DICTIONARYWDLFT and PLACEHOLDER * src/decode.c: call decoding functions according to dxf class name * src/dwg.h: complete structs (Dwg_Object_DICTIONARYWDLFT, Dwg_Object_PLACEHOLDE) * src/dwg.spec: add decoding functions
2010-03-14 Till Heuschmann <[email protected]>
[r] decode Xrecord * src/decode.c: add function dwg_decode_xdata to decode arbitrary data streams * src/dwg.h: add the struct Dwg_Resbuf which represents a result buffer
2010-03-03 Till Heuschmann <[email protected]>
[r] read objects with fixed types
* src/decode.c: decode LWPLINE, HATCH, XRECORD, LAYOUT when stored with fixed type
* src/dwg.h: added values to Dwg_Object_Type
* src/dwg.spec: fixed LAYOUT decoding (2004 only), fixed LWPLINE decoding
* src/encode.c: added FIELD_2DD_VECTOR macro
* src/print.c: added FIELD_2DD_VECTOR macro
2010-02-23 Till Heuschmann <[email protected]>
[r] fix Tolerance, View and Ucs decoding
* src/dwg.h: new field origin (Dwg_Object_UCS)
change type of text_string to BITCODE_TV (Dwg_Entity_TOLERANCE)
* src/dwg.spec: fixed decoding
2010-02-23 Thien-Thi Nguyen <[email protected]>
[dist] Arrange to also distribute file README-alpha.
* README-alpha: New file.
* Makefile.am (EXTRA_DIST): Add README-alpha.
* README: Remove version, which is btw incorrect, from first line.
2010-02-23 Thien-Thi Nguyen <[email protected]>
[build] Arrange for automake to *not* AC_DEFINE `VERSION'.
* configure.in (AM_INIT_AUTOMAKE): Specify `no-define'.
* src/common.h (VERSION): No longer #undef this.
2010-02-23 Thien-Thi Nguyen <[email protected]>
[build] In configure.in, use one-arg AM_INIT_AUTOMAKE form.
* configure.in (AM_INIT_AUTOMAKE): Use one-arg form.
2010-02-23 Thien-Thi Nguyen <[email protected]>
[dist] Update Makefile.am EXTRA_DIST vars.
* examples/Makefile.am (EXTRA_DIST): Add example.dwg, suffix.c, $(TESTS).
* src/Makefile.am (EXTRA_DIST): Add dwg.spec, logging.h; remove example.dwg.
2010-02-23 Thien-Thi Nguyen <[email protected]>
[test] Avoid segfault in testSVG.
* examples/testSVG.c (output_BLOCK_HEADER):
If `ref->obj->tio.object' is NULL, say so
to stderr and skip the "<g>..</g>" output.
2010-02-23 Thien-Thi Nguyen <[email protected]>
[build doc] Add texinfo for LibreWDG manual plus infrastructure.
* doc/LibreDWG.texi: New file.
* doc/fdl.texi: New file.
* doc/Makefile.am: New file.
* configure.in (AC_CONFIG_FILES): Add doc/Makefile.
* Makefile.am (SUBDIRS): Add doc.
2010-02-23 Rodrigo Rodrigues da Silva <[email protected]>
[admin] updating TODO file; nfc
*TODO: remove tasks already done, added new tasks and updated others
2010-02-23 Felipe Correa da Silva Sanches <[email protected]>
[r] fix 3dsolid decoding
* src/dwg.h: new field for 3dsolid (ACIS_empty_bit)
* src/dwg.spec: fixed decoding of fields
2010-02-22 Felipe Correa da Silva Sanches <[email protected]>
[r] deobfuscate SAT data from 3dsolid objects
* src/dwg.spec: de-obfuscation routine
* src/dwg.h: a new unsigned char* field for storing the raw SAT data
2010-02-23 Thien-Thi Nguyen <[email protected]>
[test] Add "make check" support plus aliveness test.
* examples/Makefile.am (TESTS_ENVIRONMENT, TESTS): New vars.
* examples/alive.test: New file.
* README (Building and installing the library): Mention "make check".
* .gitignore: Update ignorance; nfc.
2010-02-23 Thien-Thi Nguyen <[email protected]>
[test] Don't hardcode input/output file names; require `argv[1]'.
* examples/suffix.c: New file.
* examples/dwg_ps.c: #include "suffix.c".
(INPUT_FILE, OUTPUT_FILE): Delete #define:s.
(main): Use `REQUIRE_INPUT_FILE_ARG', `suffix'.
* examples/get_bmp.c: #include "suffix.c".
(INPUT_FILE, OUTPUT_FILE): Delete #define:s.
(get_bmp): Use `suffix'.
(main): Use `REQUIRE_INPUT_FILE_ARG'.
* examples/load_dwg.c: #include "suffix.c".
(INPUT_FILE): Delete #define.
(main): Use `REQUIRE_INPUT_FILE_ARG'.
* examples/test.c: #include "suffix.c".
(main): Use `REQUIRE_INPUT_FILE_ARG'.
(FILENAME): Delete #define.
(test_dwg_c): Don't bother with NULL `filename'.
* examples/testSVG.c: #include "suffix.c".
(main): Use `REQUIRE_INPUT_FILE_ARG'.
(FILENAME): Delete #define.
(test_SVG): Don't bother with NULL `filename'.
2010-02-23 Thien-Thi Nguyen <[email protected]>
[C test] Make sure `main' returns 0 or 1.
* examples/dwg_ps.c (main): Specify type of return value.
On failure to read dwg file, return 1.
* examples/test.c (test_dwg_c): Clamp return value to 0 or 1.
* examples/testSVG.c (test_SVG): Likewise.
2010-02-22 Thien-Thi Nguyen <[email protected]>
[test build] Check for pslib; build examples/dwg_ps only if present.
* configure.in: Add checks for function `PS_open_file'
in libps, and header file "libps/pslib.h".
(HAVE_LIBPS): New AM_CONDITIONAL.
* examples/Makefile.am (check_PROGRAMS): Remove `dwg_ps'.
[HAVE_LIBPS] Add `dwg_ps' to `check_PROGRAMS'.
[HAVE_LIBPS] (dwg_ps_SOURCES, dwg_ps_LDADD):
Move these variables inside this conditional block.
* README: Mention pslib non-critical requirement.
2010-02-22 Felipe Correa da Silva Sanches <[email protected]>
[r] fix 3dsolid parsing segfault
* src/dwg.h: block_size is now a vector
* src/dwg.spec: store the values of block_size for each sat_data block
2010-02-22 Thien-Thi Nguyen <[email protected]>
[test build] Factor common LDFLAGS for examples/.
* examples/Makefile.am (AM_LDFLAGS): New var.
(test_LDADD, load_dwg_LDADD, get_bmp_LDADD): Delete vars.
(testSVG_LDADD, dwg_ps_LDADD): From these vars, remove `-lredwg'.
2010-02-22 Thien-Thi Nguyen <[email protected]>
[test build] Enable builddir!=srcdir operation in examples/.
* examples/Makefile.am (AM_CFLAGS): Use $(top_srcdir), not "..".
2010-02-22 Thien-Thi Nguyen <[email protected]>
[build w] Add runtime tracing support for write (encode) path.
* src/encode.c: #include <stdbool.h>.
(loglevel): Change type to `unsigned int'.
[USE_TRACING] (DWG_LOGLEVEL): New #define.
[USE_TRACING] (env_var_checked_p): New static var.
(dwg_encode_chains) [USE_TRACING]: Before starting,
set the logging level, but only do so once.
2010-02-22 Thien-Thi Nguyen <[email protected]>
[build r] Add runtime tracing support for read (decode) path.
* src/decode.c: #include <stdbool.h>.
(loglevel): Change type to `unsigned int'.
[USE_TRACING] (DWG_LOGLEVEL): Move this into conditional
block; change definition to be the variable `loglevel'.
[USE_TRACING] (env_var_checked_p): New static var.
(dwg_decode_data) [USE_TRACING]: Before starting,
set the logging level, but only do so once.
2010-02-22 Thien-Thi Nguyen <[email protected]>
[build] Add preliminary "configure --enable-trace" support.
* configure.in (trace): New AC_ARG_ENABLE. If specified
on the configure command-line, do AC_DEFINE([USE_TRACING]).
2010-02-22 Thien-Thi Nguyen <[email protected]>
[build] Make every .c file #include "config.h".
* src/common.h (VERSION): #undef it prior to re-#define.
* src/bits.c: #include "config.h".
* src/common.c: Likewise.
* src/decode.c: Likewise.
* src/dwg.c: Likewise.
* src/encode.c: Likewise.
* src/print.c: Likewise.
2010-02-22 Thien-Thi Nguyen <[email protected]>
[build] Move config.h into src/.
* configure.in (AM_CONFIG_HEADER): Move to src/config.h; m4-quote.
* .gitignore: Update ignorance.
2010-02-22 Thien-Thi Nguyen <[email protected]>
[admin] Rename directory build/ to build-aux/.
* configure.in (AC_CONFIG_AUX_DIR): Change to `build-aux'; m4-quote.
* HACKING: Update; nfc.
* .gitignore: Update; nfc.
2010-02-22 Thien-Thi Nguyen <[email protected]>
[admin] Make create-changelog handle command-line args GNUishly.
* build/create-changelog (version): Bump to "1.1";
use `defconst'; keep brief history in docstring.
<options parsing>: Mention package affiliation in --version output;
accept -s to mean --since;
throw error on missing arg for --since;
no longer accept unadorned arg as output FILENAME;
instead recognize --output (-o) FILENAME.
Suggested by Rodrigo Rodrigues da Silva.
2010-02-21 Thien-Thi Nguyen <[email protected]>
[admin] Rename create-changelog.el to create-changelog.
* build/create-changelog: Rename from build/create-changelog.el.
Update help text to be implementation-agnostic.
* HACKING: Update.
2010-02-20 Thien-Thi Nguyen <[email protected]>
[admin] Add script to create ChangeLog from "git log" output.
* build/create-changelog.el: New file.
* HACKING (change log maintenance): Update.
2010-02-19 Thien-Thi Nguyen <[email protected]>
[admin] Add a program to create/publish pre-regenerated tarballs.
* build/snap.GNUmakefile: New file.
* build/.placeholder: Delete file -- no longer necessary.
* .gitignore: Update ignorance.
2010-02-18 Thien-Thi Nguyen <[email protected]>
[build] Add ACLOCAL_AMFLAGS to top-level Makefile.
* Makefile.am (ACLOCAL_AMFLAGS): New var.
2010-02-18 Thien-Thi Nguyen <[email protected]>
[build] Remove spurious AC_SUBST.
* configure.in (VERSION): Delete AC_SUBST.
2010-02-18 Thien-Thi Nguyen <[email protected]>
[build] Add autogen.sh; delete generated files.
* autogen.sh: New file.
* build/.placeholder: Likewise.
* m4/.placeholder: Likewise.
* INSTALL: Delete file.
* Makefile.in: Likewise.
* acinclude.m4: Likewise.
* aclocal.m4: Likewise.
* build/config.guess: Likewise.
* build/config.sub: Likewise.
* build/depcomp: Likewise.
* build/install-sh: Likewise.
* build/ltmain.sh: Likewise.
* build/missing: Likewise.
* config.h.in: Likewise.
* configure: Likewise.
* examples/Makefile.in: Likewise.
* src/Makefile.in: Likewise.
2010-02-15 Felipe Correa da Silva Sanches <[email protected]>
fixing version detection for iterator methods
2010-02-11 Felipe Correa da Silva Sanches <[email protected]>
changing my email address on file headers
2010-02-11 Felipe Correa da Silva Sanches <[email protected]>
implement version dependant iterator for owned obects of a BLOCK_HEADER
2010-02-11 Felipe Correa da Silva Sanches <[email protected]>
resolve object references after parsing r2004 and r2007 files
2010-02-11 Felipe Correa da Silva Sanches <[email protected]>
check if some pointers are not null
2010-02-10 Felipe Correa da Silva Sanches <[email protected]>
fix bugs in description of two objects of the spec: SORTENTSTABLE and LEADER were wrongly described
2010-02-06 Till Heuschmann <[email protected]>
Fixed confusions in DIMSTYLE decoding
2010-02-01 unknown <tiu@.(none)>
Improved R2004 header parsing. Read variables, handles, objects
2010-01-29 Rodrigo Rodrigues da Silva <[email protected]>
Partially fixed bug #28681, common entity handle data parsed correctly
2010-01-29 Rodrigo Rodrigues da Silva <[email protected]>
Added macro created print functions, made some functions private, increased logging trying to fix objectrefs
2010-01-27 Rodrigo Rodrigues da Silva <[email protected]>
Logging test
2010-01-27 Rodrigo Rodrigues da Silva <[email protected]>
Refactoring log messages: encode.c
2010-01-27 Rodrigo Rodrigues da Silva <[email protected]>
Refactoring log messages: dwg.c
2010-01-27 Rodrigo Rodrigues da Silva <[email protected]>
Refactoring log messages: bits.c and decode.c
2010-01-20 Rodrigo Rodrigues da Silva <[email protected]>
New logging infrastructure. printf's still need to be refactored
Signed-off-by: Rodrigo Rodrigues da Silva <[email protected]>
2010-01-19 Rodrigo Rodrigues da Silva <[email protected]>
Integrating slightly modified patch #7057, file #19482, by James Michael DuPont <[email protected]>: reviewed typecasting to conform with C++ compiler's strict typechecking
2010-01-12 Rodrigo Rodrigues da Silva <[email protected]>
Updating TODO
2009-12-25 Rodrigo Rodrigues da Silva <[email protected]>
Created a TODO file, updated README
2009-12-25 Rodrigo Rodrigues da Silva <[email protected]>
Created a TODO file
2009-12-24 Rodrigo Rodrigues da Silva <[email protected]>
renaming_variables_to_meet_GNU_coding_standards (NoCamelCaps\!)
2009-12-24 Rodrigo Rodrigues da Silva <[email protected]>
Improved R2004 header parsing by Till Heuschmann <[email protected]> (patch #7046) + Juca's fixes
2009-12-24 Rodrigo Rodrigues da Silva <[email protected]>
More API work. Fixed obvious bug in dwg_get_entities, but it still won't work.
2009-12-22 Rodrigo Rodrigues da Silva <[email protected]>
Keep track of number of entities processed. More API work: dwg_get_entities, dwg_get_entity_count, dwg_get_entity_layer
2009-12-21 Rodrigo Rodrigues da Silva <[email protected]>
Fixing dwg_get_layers bug found by Juca
2009-12-21 Rodrigo Rodrigues da Silva <[email protected]>
New API function, returns LAYER list
2009-12-21 Felipe Correa da Silva Sanches <[email protected]>
adding NEWS file - required for GNU packages. We must always update this file prior to releases.
2009-12-21 Rodrigo Rodrigues da Silva <[email protected]>
Fixing unchecked (loglevel) fprintf's (a few fprintf's left though) Keeping track of layers - initial support (new API function)
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
yes, I know it is a bit wrong, but it is just a test. I am still trying to figure out how to return a class instance from load_file
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
beginning to write a (still very simple) python binding for LibreDWG
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
Implement Encoder routine for VERTEX (2D) (10) description.
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
Partial implementation of SPATIAL_INDEX description.
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
changing name of macro from GET_FIELD to FIELD_VALUE (which makes more sense!)
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
Encoder and Decoder routines can be the same in IMAGE description.
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
REPEAT macro refactoring in IMAGE description -- by Rafael Moretti
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
REPEAT macro refactoring in LTYPE(57)
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
third and last iteration of REPEAT macro refactoring on MLINE(47) description. Thanks for support received from Rafael Moretti!
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
second iteration of REPEAT macro refactoring in MLINE(47) description
2009-12-19 Felipe Correa da Silva Sanches <[email protected]>
first iteration of REPEAT macro refactoring in MLINE (47) description
2009-12-15 Felipe Correa da Silva Sanches <[email protected]>
INSERT encoder
2009-12-15 Felipe Correa da Silva Sanches <[email protected]>
dataflags handling are a responsibility of the user (client application)
2009-11-28 Felipe Correa da Silva Sanches <[email protected]>
fix bug in SPLINE description
2009-11-28 Felipe Correa da Silva Sanches <[email protected]>
using macros in SPLINE description
2009-11-28 Felipe Correa da Silva Sanches <[email protected]>
using BITCODEs in header file
2009-11-27 Felipe Correa da Silva Sanches <[email protected]>
_3dface encoder
2009-11-27 Felipe Correa da Silva Sanches <[email protected]>
boilerplate with TODOs for unimplemented encoders
2009-11-27 Felipe Correa da Silva Sanches <[email protected]>
LINE encoder
2009-11-26 Felipe Correa da Silva Sanches <[email protected]>
now it compiles
2009-11-26 Felipe Correa da Silva Sanches <[email protected]>
broken revision. unfinished refactoring towards write support
2009-11-25 Felipe Correa da Silva Sanches <[email protected]>
starting to move dwg structures description to a dwg.spec file that can be used by both decode.c and encode.c (to avoid code replication)
2009-11-04 Rodrigo Rodrigues da Silva <[email protected]>
Becoming a GNU package.
2009-11-04 Felipe Correa da Silva Sanches <[email protected]>
updating my email to [email protected]
2009-11-04 Rodrigo Rodrigues da Silva <[email protected]>
Adding (C) notices to remaining files
2009-11-04 Rodrigo Rodrigues da Silva <[email protected]>
Trying do debug XRECORD
2009-10-07 Rodrigo Rodrigues da Silva <[email protected]>
[fixed] bug in bit_read_BS which lead to misinterpretation of raw unsigned chars
2009-09-26 Felipe Corrêa da Silva Sanches <[email protected]>
updating README. Now in English.
2009-09-26 Rodrigo Rodrigues da Silva <[email protected]>
Updating my e-mail in AUTHORS
2009-09-26 Rodrigo Rodrigues da Silva <[email protected]>
updating ChangeLog and removing useless files
2009-09-24 Felipe Corrêa da Silva Sanches <[email protected]>
completed TABLE decoder. Needs testing.
2009-09-23 Felipe Corrêa da Silva Sanches <[email protected]>
another chunk of TABLE decoder
2009-09-23 Felipe Corrêa da Silva Sanches <[email protected]>
one more chunk of TABLE entity decoder
2009-09-23 Felipe Corrêa da Silva Sanches <[email protected]>
another chunk of TABLE decoder
2009-09-22 Felipe Corrêa da Silva Sanches <[email protected]>
another chunk of TABLE entity decoder
2009-09-22 Rodrigo Rodrigues da Silva <[email protected]>
[new] Decoding of XRECORD object
2009-09-22 Felipe Corrêa da Silva Sanches <[email protected]>
initial parsing of TABLE entity. Incomplete.
2009-09-22 Rodrigo Rodrigues da Silva <[email protected]>
Adding missing handles
2009-09-22 Rodrigo Rodrigues da Silva <[email protected]>
* [new] adding log call to debug EED parsing * [fixed] adding 3D entities to object type switch
2009-09-22 Rodrigo Rodrigues da Silva <[email protected]>
Reverting mistaken change from last revision.
2009-09-22 Rodrigo Rodrigues da Silva <[email protected]>
Refactoring some entities
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
fix a bug in the DICTIONARYVAR decoder that was due to a typo in the spec, I think.
field str should be TV instead of BS
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
now dwg_decode_object and dwg_decode_entity functions return an error code so that we can avoid decoders when these functions fail but we can try to load the rest of the file.
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
a list of websites that contain dwg files we are using to test our dwg parser
2009-09-21 Rodrigo Rodrigues da Silva <[email protected]>
Removing deprecated print.{c,h}
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
implementing a bit more of HATCH decoder. not everything yet.
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
a couple fixes for R14 based on parsing of this test file: ftp://geodetic.ncdenr.org/maps/yancey14.zip
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
decode SPATIAL_FILTER
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
decode SORTENTSTABLE
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
decode RASTERVARIABLES
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
partial implementation of PROXY decoder
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
decode IDBUFFER
2009-09-21 Felipe Corrêa da Silva Sanches <[email protected]>
a bit more of HATCH decoding. We need to implement a better REPEAT macro so that complex nested REPEAT structures are easier to decode
2009-09-20 Felipe Corrêa da Silva Sanches <[email protected]>
partial implementation of decoder for HATCH
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
decode GROUP(72)
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
decode VIEWPORT_ENTITY_HEADER_CONTROL
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
decode DIMSTYLE(69)
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
decode DIMSTYLE_CONTROL(68) and DIMSTYLE(69)
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
decode APPID(67) and APPID_CONTROL(66)
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
* decoding of VPORT(65) * implemented an extra (auxiliar) bitcode: BITCODE_4BITS
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
* decode VPORT_CONTROL * added case entries for some objects (where their respective decoders are invoked)
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
decoding of REGION/3DSOLID/BODY
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
* update DWG_OBJECT and DWG_ENTITY macros so that they now include the function prototype declaration * I have sorted object/entity declarations inthe same order they appear in the spec and I also added comments stating object number or page number (where it is described in the spec) * Added boilerplate for the ones we did not implement yet.
2009-09-19 Felipe Corrêa da Silva Sanches <[email protected]>
some adjustments in handling of model/page coordinates I am still not sure how does that work.
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
decode LAYER_INDEX
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
decode IMAGEDEFREACTOR
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
decode IMAGEDEF
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
remove a redundant printf
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
removing dwg_var_map(...) function which is not used anymore
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
* removed old header variables parser * replaced it by a call to the new one
2009-09-18 Rodrigo Rodrigues da Silva <[email protected]>
Refactoring entities ELLIPSE, SHAPE, TRACE, SOLID
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
bring back FIELD_T
2009-09-18 Rodrigo Rodrigues da Silva <[email protected]>
Refactoring entities POINT, 3D_FACE, POLYLINE({PFACE,MESH})
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
implementation of a better header variables parser
2009-09-18 Rodrigo Rodrigues da Silva <[email protected]>
* Refactoring DIMENSION entities. * [fixed] issue #8
2009-09-18 Rodrigo Rodrigues da Silva <[email protected]>
Changed bit_write_CMC to take a Dwg_Color* argument
2009-09-18 Felipe Corrêa da Silva Sanches <[email protected]>
refactoring MTEXT(44)
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
suppress warning on FIELD_3DPOINT_VECTOR macro
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
"absolute_ref" instead of "handle"
2009-09-17 Rodrigo Rodrigues da Silva <[email protected]>
* Entities MLINETYPE and VP_ENT_HDR * Correct handleref.value parsing, now considering offset codes
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
fix BLOCK_HEADER parsing bug due to lack of curly braces around HANDLE_VECTOR macro
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
fixing bug in FIELD_VECTOR_N macro
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
* bringging back some more lines of code that were mistakenly removed some revisions ago * use fprintf instead of sprintf
2009-09-17 Rodrigo Rodrigues da Silva <[email protected]>
Translating: skt -> dwg and CKR -> CRC Fixing some mistakes made in header on previous commit due to tranlation (bitdouble and bitshort)
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
* decoding UCS and UCS_CONTROL * bringing back code that pitanga mistakenly removed in his prior commit
2009-09-17 Rodrigo Rodrigues da Silva <[email protected]>
Major translation effort. Seems to have been the last one.
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
decode VIEW and VIEW_CONTROL
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
decode LTYPE and LTYPE_CONTROL
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
decode SHAPEFILE and SHAPEFILE_CONTROL
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
decode LAYER_CONTROL
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
decode LAYER
2009-09-17 Felipe Corrêa da Silva Sanches <[email protected]>
huge refactoring in SVG generator. Now symbols are stored in <defs> (we are using the BLOCK_HEADER handles)
But I am still not sure about the correct procedure to select the entities that must be put inside a <g>.
I tried to get all objects from first_entity until last_entity as they appear in the file, but that does not seem to be
correct. What is the correct way to iterate over entities?
R_2004+ provides a vector of handles pointing to everything that must go inside a <g>, but prior versions only tell us the
1st and last entities.
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
fixing the issue described on previous commit.
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
refactoring our code that handles handles. I have noticed that we are probably having leak issues here. But I still didnt detect exactly what is wrong. Handles are correctly parsed, but their values are corrupted before they are used by client code. Something is messing with our object_ref vector.
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
correct decoding of BLOCK_CONTROL.
Now it will be possible to create <defs> section in SVG because BLOCK_CONTROL keeps handles of all BLOCK_HEADERS in the
file and so we can loop these and read their BLOCKS and output one <g> for each simbol
This commit totally ROCKS!!!
hmmm! And we are in svn revision 256!!!! HAPPY HACKING! :-D
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
* fix issue in R_2004 where xdicobjhandle might not be present in DICTIONARY * created a new macro XDICOBJHANDLE(code) * moved version macros to common.h
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
DICTIONARYVAR decoder
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
LINE
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
CIRCLE
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
ARC
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
POLYLINE 3D
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
2D_POLYLINE
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
VERTEX_PFACE_PFACE
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
macros in VERTEX_*
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
* disabling print module at all. Our macros are providing a much more consistent way of printing debbuging info. * refactoring VERTEX_2D
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
fix bugs in INSERT and MINSERT due to typos in the spec
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
more refactoring on INSERT and MINSERT
2009-09-16 Felipe Corrêa da Silva Sanches <[email protected]>
* refactoring attdef * boilerplate for dwg_encode_common_entity_handle_data and dwg_encode_handleref
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
refactored TEXT and ATTRIB
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
LAYOUT decoding done
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
using DWG_OBJECT/DWG_ENTITY in the rest of the objects in decode.c
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
REFACTOR... REFACTOR... REFACTOR... !!!
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
* fix FIELD_HANDLE macro. * a bit more refactoring
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
more macro-based refactoring
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
decoding macros now allow printing of values in verboso mode (loglevel>=2)
2009-09-15 Felipe Corrêa da Silva Sanches <[email protected]>
using suffix TV instead of T to denote "text value bitcode"
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
INSERT/MINSERT refactoring using macros
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
using version macros
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
more macro usage on decoder
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
using MACROS on dwg_decode_MLINE. This suggests the need of a LOOP macro...
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
fix wrong escape code \N due to a typo
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
* refactoring... * update on AUTHORS list
2009-09-14 Rodrigo Rodrigues da Silva <[email protected]>
Refactoring to meet GNU code style (thanks to Eclipse's SHIFT+CTRL+F)
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
using DWG_OBJECT/DWG_ENTITY macros on more objects/entities
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
HANDLE_VECTOR macro REACTORS macro
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
fixing segfault from my recent commits
2009-09-14 Rodrigo Rodrigues da Silva <[email protected]>
Adding binaries and Makefiles to svn:ignore
2009-09-14 Rodrigo Rodrigues da Silva <[email protected]>
Adding binaries and Makefiles to svn:ignore
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
HANDLE macro
2009-09-14 Rodrigo Rodrigues da Silva <[email protected]>
Adding binaries and Makefiles to svn:ignore
2009-09-14 Rodrigo Rodrigues da Silva <[email protected]>
Some translation
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
testing some experimental MACROS on decode_DICTIONARY
2009-09-14 Rodrigo Rodrigues da Silva <[email protected]>
Handle parsing for missing entities (from 0 to 33)
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
using macro for entity UNUSED
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
now using the macro I introduced in previous commit
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
macro for entity decoder init
2009-09-14 Felipe Corrêa da Silva Sanches <[email protected]>
adding macro to ease handle (Dwg_Object_Ref*) parsing
2009-09-13 Felipe Corrêa da Silva Sanches <[email protected]>
adding an auxiliar funtion to check valid handle codes. Now we should use dwg_decode_handleref_with_code whenever possible instead of dwg_decode_handleref.
2009-09-13 Felipe Corrêa da Silva Sanches <[email protected]>
fix parsing of INSERT
2009-09-13 Felipe Corrêa da Silva Sanches <[email protected]>
cones placement is broken. I am not sure what is the correct order of applying translate, scale and rotate transforms
2009-09-13 Felipe Corrêa da Silva Sanches <[email protected]>
clones are partially working, but are misplaced and apparently not transformed yet
2009-09-13 Felipe Corrêa da Silva Sanches <[email protected]>
fix common entity data parsing
2009-09-13 Felipe Corrêa da Silva Sanches <[email protected]>