-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
1102 lines (770 loc) · 34 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
PLIB Change Log.
================
PLIB v1.8.5 (Oct 2006)
~~~~~~~~~~~~~~~~~~~~~~
* removed several widgets from pui/, which were declared
obsolete since a long time. Most of them are now available
in puAux/
* several fixes and improvements to puAuxList
* puInputText scrolling fixed.
* Improved DirectX loader.
* Check ownership before deleting in ssgSimpleList.
* Fixed netSocket.
* Fixed mem leak in ssgVertSplitter.
* Fixed pw window sizes on win32.
* Added pview ssg-example.
* Fix clock delta in first call.
* Made colour of listbox changable.
* Fixed text with negative coordinates
* Fixed misc bugs in puAuxLargeInput
* Allow the user to activate a widget with custom mouse button.
* Made material loading from wavefront models more robust.
* Handle linux joysticks with a lot of axes.
* Avoid specular anomalies in 3ds files.
* Added a demo for ssgaShapes.
* Fixed the diameter of ssgaSphere.
* Fixed inability to add colour to the ssgaTeapot.
* Remove scale dep in ssgaFire
PLIB v1.8.4 (Jan 2005)
~~~~~~~~~~~~~~~~~
* Added a way to get SSG intersection tests to work with
backfacing polygons.
* Added ssgaScreenDepthDump into ssgAux.
* Several fixes for FreeBSD included.
* Added exporter for OpenInventor.
* Implemented im- and exporter for ASC files.
* Optimisations.
* Various (minor) improvements to ASE, MDL, PCX and X loading and ASE saving.
* Implemented ssgAnimTransforms.
* AC loader now reads "crease" lines and creates much smaller and
cleaner scene graphs.
* Joystick code adapted to current OS versions (especially Linux).
PLIB v1.8.3 (April 8th 2004)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* NET now allows a NULL argument to netSocket::accept
* Added #include <stdio.h> to all top level header files
in order to ensure that NULL is defined.
* Added ssgaScreenDump into ssgAux.dsp
* Cleaned up some warnings from MSVC.
* Added Christos Dimitrakakis' fixes to SL to prevent
crackling in certain envelope conditions.
* Added pwAutoRepeatKey to control keyboard auto-repeat.
* Fixed a horrific bug in the sgDistToLineSegment routines.
PLIB v1.8.2 (March 26th 2004)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* PW now runs on Mac and MacOSX.
* Uppercase keystrokes now work in PW for Windows.
* Version number in ul.h now set correctly.
* Package now builds correctly under MSVC.
PLIB v1.8.1 (March 21th 2004)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* puAux library wouldn't build without GLUT being
installed...that's fixed.
* the NET library examples needed some love and
attention. They are much more useful now!
PLIB v1.8.0 (March 19th 2004)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* puAux library added to provide a place for the
more obscure PUI widgets.
* PW (PLIB Windowing) library added to provide a
built-in alternative to windowing libraries such
as GLUT and SDL. Applications that only need a
single window, mouse and keyboard (and no other
features of GLUT) can now have no dependencies
whatever outside of PLIB and OpenGL.
* PLIB is now completely independent of GLUT. You
can even build it without GLUT being installed.
Modules to allow PUI to work with GLUT, freeglut,
SDL, FLTK and our own PW windowing library are
provided.
* ssgAux now includes a relatively simple sky model
kindly donated by the SimGear project. Now you
can have sun, moon, stars and clouds with just
a handful of function calls.
* PSL - a C-like interpreted scripting language
is now bundled into PLIB. It's a byte-code
interpreter - and it has some useful properties
for games and other interactive packages in
that it allows the application much finer control
over the running of the script(s) than traditional
scripting engines.
* In the demos area, we added the 'simon' package
which provides a simple framework for PSL scripts
to be loaded - and they may in turn load 3D models,
move them around, etc. Astropong.psl (a simple 3D
'Pong' game in PSL) is provided as a demo.
And of course, many bugs have been slain and numerous
other smaller features have been added.
PLIB v1.6.0 (Sept 2nd 2002)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
It's been over a year since the last PLIB release
and we have been somewhat lax about maintaining a
list of changes.
Some highlights are:
* Significant improvements and cleanup throughout PLIB,
especially in PUI.
* ssgAux library added - includes handy classes for
more sophisticated effects layered on top of SSG.
+ Standard shapes like cubes, spheres,
cylinders and teapots.
+ Water waves.
+ Fire.
+ Particle Systems
+ Lens Flare.
* More example programs.
* P-Guide GUI builder for PUI.
* JS promoted to a full library.
PLIB v1.5.1 (July 21st 2001)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added ssgTween and ssgTweenController
* Added puFileSelector - henceforth puFilePicker is deprecated.
* Added ulList
* Added VRML loader (this one works!)
* Numerous bug fixes in other loaders.
* Added TopHat support to JS
* Added support for >3 simultaneous sounds in SL.
(You have to explicitly enable that though - it's not
the default)
* Fixed bugs in util's directory handling.
* puInput and puListBox now cope better with text that
is too big for the widget
* puListBox (and hence puFileSelector and puFilePicker)
works with both large and small font sizes.
* puDial changed to be derived from puSlider - many
consequences of that change will be visible in the
application. (eg output range is 0..1 and not 0..360)
* PUI widgets are now 'sticky' so that if you are
dragging a slider along a puSlider and your mouse
slips off the edge of it, it'll still have "focus".
* Added sgLerpAnglesVec3 to linearly interpolate
angles allowing for the nasty wrap-around-360
problem.
* Added sgLineSegment3ToLine3, sgDistSquaredToLineVec3
sgDistSquaredToLineSegmentVec3, sgDistToLineVec3 and
sgDistToLineSegmentVec3. Also sgLine3 and sgLineSegment3
structures.
* Added a 'Gallery' page to the documentation to show
potential developers the range of applications that use
PLIB - and also to promote things our developers have done.
To save download time and CVS space, the actual images
are not in the PLIB tarball.
PLIB v1.4.2 (July 21st 2001)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Changes in NET to allow compilation under RedHat 7.1
* Fixed a small bug in ssgaSphere
* Fixes a small bug in puFilePicker
PLIB v1.4.1 (June 25th 2001)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Converted MSVC project files to 'BINARY' in the CVS archive
because some versions of MSVC don't line UNIX-style line endings.
* Many improvements and bug fixes to puFileSelector and puListBox.
* Minor fix to NET to accomodate Solaris users.
* Fixed puMenuBar so it highlights as you drag the mouse across it.
* Fixed ulOpenDir so it returns NULL on error on non-MSVC systems
* Changed colour of text on buttons in documentation to make them
easier to read by colour-blind users.
PLIB v1.5.0 (June 20th 2001)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Just a 'place holder' - actually identical to 1.4.0.
PLIB v1.4.0 (June 20th 2001)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed example programs so they don't use the obsolete _SSG_TYPE
tags.
* Removed multiplie <HEAD> tags on web pages.
* Updated 'AUTHORS' file.
* Added 'demos' to the CVS repository.
PLIB v1.3.3 (June 18th 2001)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Various warnings cleaned up under MSVC.
* Fixed function prototypes for the Quaternion functions in SG
* Fixed bug in sgEulerToQuat where the angles were not being
converted from degrees to radians.
* Changed PUI to make sliders and dial widgets grab a hold
of the mouse focus and not release it until the button is
released. This is a subtle but important behavioural change.
* puDial's are now derived from puSlider's - one side-effect of
that is that they now return 0..1 rather than 0..360 and no
longer support the maximum and minimum range functions.
PLIB v1.3.2 (June 13th 2001)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* This CHANGES file has regrettably not been well maintained,
hence there a numerous changes not listed here.
* File loaders now require app to pass 'ssgLoaderOptions'
rather than other ad-hoc callback function hooks.
* Added Active Widget Implementation (pui)
* Added puFilePicker
* Added Ref Counting to ssgState
* Added puBiSlider and puTriSlider
* Added some missing 'AUTHORS' entries.
* puDial widget (was actually in 1.3.1 but got
missed in the 'CHANGES' file)
* Fixed a problem in the configure.in that prevented
ssgAux from building.
* Moved the 'name' and 'user_data' (with associated
set/get member functions) from ssgEntity down into
ssgBase so that these functions will work with ssgState
and ssgTexture objects. This is needed for PrettyPoly.
PLIB v1.3.1 (Sept 15th 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Changed License conditions to specifically permit
use of PLIB outside of LGPL for embedded applications.
* There is now a task and bug tracking system for PLIB
on Sourceforge.
* Configuration/Install tool changed to support CygWin
better than in the past.
* PLIB examples' data files consolidated into a single
'examples/data' directory.
* PLIB's documentation is now under CVS.
* Added 'SSGAUX' library - include <plib/ssgAux.h>
and link to /usr/lib/libplibssgaux.a
* Aux library has 'ssga' classes to add high level
shapes such as cylinders, cubes and spheres (two
different kinds).
* Lots of new example programs.
+ New PUI 'complex' uses multiple windows.
+ Cute 'waving flag' demo
+ Working Quaternions versus Eulers demo
+ Model viewer (this is actually a useful
program - as well as a demo).
* More const-correctness throughout library.
* OPTIONAL support for PNG image loading (you have
to compile PLIB specially to get this because it
introduces an additional dependancy).
* PLIB now checks that a valid OpenGL rendering
context exists when the various ssgInit/puInit/etc
routines are called.
* PUI hasi:
+ better support for multiple windows,
+ a new function to allow the deletion of an object
within one of it's own callbacks.
+ the ability to operate in a separate OpenGL
coordinate space.
+ puFilePicker and puListBox
+ enhancements to puSlider
* SL has a completely new audio driver for SGI's IRIX.
Unfortunately, we don't think it fixes the long-standing
timing problems for audio under IRIX.
* SSG's ssgVtxArray and ssgIndexArray now use 'short's for
indices - which is more efficient on most OpenGL's.
* Several bugs fixed in SSG - also some changes to make it
more suited to embedded use in game consoles and such.
* Many improvements to SSG's post-processing tools that are
typically applied to scene graph fragments after loading
from disk.
* SSG now permits you to disable MIPmapping for selected
textures.
* SSG's print() functions now work for more classes and
produce more useful output.
* Code for ssgVtxArray streamlined.
* Added a 'Lookat' function for SSG's camera model.
* ssgSelectors can now have more than 32 kids.
* ssgContext had incorrect defaults for the camera
orientation.
* Some loaders were not sharing ssgState's between
polygons - that's fixed.
* 3DS loader has had numerous improvements...but the
limitations of this format are becoming evident.
* All error/warning handling is now done through a
centralized handler that can be redirected (eg to
send errors to a popup window or something)
* Some bugs fixed in ASE loader. It now uses
ssgVtxArray primitives.
* Added a loader for the Quake 'MD2' format. It
seems to work amazingly well.
* Added 'UL' library. Applications MUST link to
-lplibul (/usr/lib/libplibul.a) - and should
include <plib/ul.h> and call ulInit() before
making UL calls.
If you use automake/autoconf, then it's easy
to make applications that will compile and link
under both PLIB 1.2 and 1.3/1.4, just add this:
AC_CHECK_LIB(plibul, ulInit,,,)
libplibul currently contains:
+ Fast, portable clock/timer routines.
+ Low level networking code.
+ Some directory searching routines.
* Documents and Examples are now under CVS.
* Added Tools and Auxlibs folders for future
work.
PLIB v1.3.0 (July 1st 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Unstable version of 1.2.0, no significant code
changes.
PLIB v1.2.0 (July 1st 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Stable version of 1.1.12, no significant code
changes.
PLIB v1.1.12 (June 24th 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed some compilation problems for Macintosh/Codewarrior
which treats 'xor' and 'or' as reserved words!! Yikes!
Thanks to Darrell Walisser for that piece of nasty news.
* Fixed some problems in slMODinst.cxx that were causing
compilation warnings under windoze (thanks to Bram Stolk)
* Changed SL to open audio devices with O_NONBLOCK -
thanks to Trent Gamblin for spotting this one.
* Added configure.in check for libdl to cover bug in ld.so
under Linux. Application programs under Linux need to
link to libdl.so in order to work around this.
Ben Woodhead <[email protected]> added this.
* Added Borland project files, thanks to Dave Heil for
contributing these.
* Swapped order of multiplication in sgMultMat4. Thanks to
Lucas Ackerman for spotting this one.
* Added a unique ID field to every node in the scene graph.
This helps out some picking algorithms in PPE.
* Added some more ifdefs to make PLIB Audio/JS components
to make them work under NetBSD. (They already work with
FreeBSD and OpenBSD). Many thanks to Rene Hexel!
* Fixed a ref() problem with ssgVtxTable::clone - thanks
to Will Weisser for catching that one!
* Added checks to ensure that a valid OpenGL rendering
context exists before ssgInit/puiInit/fnt-loaders are
called.
* Added Dave McClurg's ASE loader and matching writer.
If you use the new 'ssgLoad()/ssgSave()' functions,
it'll "just work" - if you prefer you can call
ssgLoadASE/ssgSaveASE analogously to all the other
loaders.
* Several fixes to the quaternion code in SG were
contributed by "Negative0" <[email protected]>
(Who was that masked man?)
PLIB v1.1.11 (Feb 9th 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed a tiny problem with double-sided polygons.
PLIB v1.1.10 (Feb 9th 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added ssgLoad and ssgSave that look at the
filename extension and call the appropriate
lower level load/save routine.
* Added a 'clone' function for all SSG classes.
* PLIB now managed under CVS at SourceForge.
http://sourceforge.net/project/?group_id=382
* Added a collection of line/plane, plane/plane
and line/line intersection routines to SG.
Thanks to Norman Vine for most of them.
* Fixed a bug in SSG file loader that would
prevent recognition of obsolete SSG file
types.
PLIB v1.1.9 (Jan 28th 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed bug that caused the ref counts of the
various vertex arrays in an ssgVtxTable to
be incorrectly set to zero when that VtxTable
is loaded from an '.ssg' format file.
This tended to crash SSG with an assertion
failure whenever you deleted an object
loaded from a '.ssg' file.
* Added the current texture map filename to
ssgSimpleState and ssgStateSelector - which
means that...
* The SSG file format finally works correctly.
Note that any SSG files you might have created
before this release won't work anymore...but
then they didn't work correctly before.
PLIB v1.1.8 (Jan 23rd 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added ssgContext. This makes it a lot easier
to write programs that need to render multiple
eyepoints in quick succession.
* Added functionality to ssgVtxTable to enable
applications to construct a vertex table and
then add the vertex arrays instead of doing
it all in one step.
PLIB v1.1.7 (Jan 20th 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Ooops! 1.1.6 accidentally went out set up to
REQUIRE the 'freeglut' library instead of the
original GLUT. That's fixed now - it'll pick
up on whichever you have installed and use
freeglut if you have both. (This only really
selects which header PLIB will use - you can
still link your application against either
GLUT)
freeglut is here:
http://freeglut.sourceforge.net
PLIB v1.1.6 (Jan 19th 2000)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Changed ssgSaveSSG and ssgSaveAC to return
TRUE on success, FALSE otherwise. Neither
function is really working well enough for
'primetime' use.
* Added an optimisation to sgInvertMat4 (thanks
to Norman Vine).
* Changed all Makefile.am's to refer to top_srcdir
rather than top_builddir - I have no idea why that
matters - but Steve Lamont <[email protected]>
says it matters - so I fixed it!
* Fixed a bug in PUI's default colour scheme picker
that caused text on dark coloured backgrounds to
be black instead of white.
PLIB v1.1.5 (Dec 20th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Optimised sgMakeNormal (thanks to Klaus Hartmann!)
* Added 'Orthographic' rendering modes to SSG...this
is a work in progress - so no documentation yet - sorry!
PLIB v1.1.4 (Dec 3rd 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Moved pre- and post-draw callbacks from ssgLeaf
to all ssgEntities.
* Changed user-data - all userdata must be derived
from ssgBase so that it can be ref-counted and
automatically deleted when no longer referenced.
* Added some specialised highlighting code for
the PPE tool.
PLIB v1.1.3 (Nov 28th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added some missing 'get' functions to SSG.
* Added a way to load the current view frustum
and modelview matrices into OpenGL.
* Removed dependancy of SSG on GLUT.
* Added ssgVtxTable - which will ultimately
replace ssgVTable. The main difference is
that ssgVtxTables don't support indexing and
add reference counted vertex data tables.
* ssgLoadAC changed to use the new ssgVtxTable.
* Added pre- and post-draw callbacks to ssgLeaf.
PLIB v1.1.2 (Nov 8th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed double declaration of sgdTransposeNegateMat4
that prevented SG from compiling under Windoze.
* Split examples and documentation off into a
separate tarball.
PLIB v1.1.1 (Nov 6th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added routines to SG to interconvert sgd and sg
data types.
* Matrix inversion routines added to SG.
* Attempt to work around possible compiler
error in ssgLoad3Ds - this shows up in some
versions of CygWin under Windoze and exhibits
itself as an out-of-memory error when loading
3DStudio models.
PLIB v1.1.0 (Oct 29th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* This is actually identical to 1.0.20 except
that it installs its headers in /usr/include/plib
and its libraries in /usr/lib. To avoid name-space
pollution in /usr/lib, the libraries are renamed
as follows:
libssg.a --> libplibssg.a
libsg.a --> libplibsg.a
libfnt.a --> libplibfnt.a
...you get the idea I'm sure.
* With this release, I'm going to the even-number-stable,
odd-number-experimental numbering scheme. Hence,
I'll be adding bug fixes only to the 1.0.xx series.
When 1.1.xx has been enhanced - and is again stable,
it'll become 1.2.0 and 1.3.0 will be the experimental
version.
PLIB v1.0.20 (Oct 29th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed problem with memory leakage in SSG, the
ref count of branch nodes was including the
parent nodes as well as the children. Revised
instructions on deleting nodes added to manual.
* Added sgDistanceSquaredVec2/3/4 to SG. (Christian
Mayer asked *so* nicely).
* Added Per Liedman's latest 3D studio file loader.
This is a truly awesomely useful thing. Thanks Per!
* This will be the last version to install in
/usr/local/plib.
PLIB v1.0.19 (Oct 16th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added bunches of missing 'const' directives to SG and
parts of SSG. Thanks to Christian Mayer for this one.
* Fixed a bug in FNT that should allow more than two
lines of text to be output with a single call to
puFont::drawString. Thanks to Sylvan Clebsch for this one.
* Added a 'saturation' limit to js.h - intended for those
joysticks that don't generate a full range of output.
Thanks again to Sylvan Clebsch!
* Keiji Kato provided a patch to SL for the Windoze
platform that fixes some kind of a slowdown problem
when playing sounds on WinNT-4 machines.
PLIB v1.0.18 (Oct 3rd 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Removed GIF files from all the Web pages. Rassin-frassin
Unisys...grumble >:-(
* Fixed a problem that caused too many joystick axes to be
reported by JS. Thanks to Paolo Leoncini - good catch!
* Added new Quaternion interpolation routines and reduced
complexity of quaternion multiplication routines. Thanks
to Sylvan Clebsch.
* ssgEntity (and hence most SSG classes) didn't make a copy
of strings passed to setName() - hence there was a tendancy
to leak name memory as objects were deleted. That's fixed
but be aware that 'name' is now copied.
* As requested by Christian Mayer, sgAddScaleVec functions
have been added into SG.
* Fixed up some compilation warnings in ssgStateSelector.cxx,
fnt.cxx and ssgSaveAC.cxx. (Thanks to Sylvan Clebsch for those)
* Fixed a potential problem in ssgModelPath/ssgTexturePath that
would blow up if you ever passed a local string variable to
them. Be sure not to call either function before ssgInit() - OK!
PLIB v1.0.17 (Aug 23rd 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added new ssgState derivitive "ssgStateSelector".
Check out SSG documents for details.
* Stopped warning about unused variable 'ww' in FNT and SSG.
* Fixed bug in puValue::setValue(char*) that prevented empty
strings from changing the current string state for the puValue.
(Thanks to Sylvan Clebsch for finding that one)
* Removed the 'test' program for PUI (it was never meant to
be in the release).
* Added error return to Font loaders (Thanks to Norman Vine).
PLIB v1.0.16 (Aug 13th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed compiler warning in slMODfile.cxx
* Fixed a bunch of compile errors in slScheduler.cxx due to
some default arguments that got left in place by mistake.
PLIB v1.0.15 (Aug 12th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Minor fix to SL to make it compile under CygWin.
Thanks to Norman Vine for that one.
* MacOS port of SL is now complete! Many thanks to
Darrell Walisser <[email protected]>
* Fixed a problem with const correctness when compiling with
gcc 2.95.
* Moved a lot of SL functions from inline to non-inline...
they had grown over time from one liners into 10 liners.
* In SM, changed 'not_working' to 'notWorking' to make it
look more like SL.
* Fixed bug that caused SL to crash if you played MOD music
without a sound card (Thanks to Daryll Strauss for finding
that one).
* Fixed bug in puButton constructor that makes menus come
out with irregular height.
* Fixed recurrent crashing problem with the PUI 'complex'
demo program.
PLIB v1.0.14 (Aug 4th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* The use of PROXY textures seems to break both nVidia and G200
Mesa ports for Linux - so I have temporarily commented out
that code. If you need it, find the code in src/ssg/ssgImageLoader.cxx
and src/fnt/fntTXF.cxx and re-instate the code that's ifdef'ed out
using #ifdef PROXY_TEXTURES_ARE_NOT_BROKEN
* Significant fixes to SL to make it work with /dev/audio under
SOLARIS. Thanks to Steve Brown for his patch.
* Somehow the FNT documentation became corrupted in 1.0.13,
it's fixed now though.
* FNT and PUI now allow '\n' characters inside strings to
signify carriage-return + line-feed. Thanks to Shane Arnott
for this one.
* Added parameters to FNT routines to allow the application
to pick which OpenGL texture filtering to apply.
* Fixed some minor name-space pollution in PUI.
* Fixed a bug in ssgBaseTransform that causes ssgGetLastTransform
to mess up on the first call.
* Fixed a bug in measuring the bounding box of text containing
space characters in the FNT component. Thanks to Alexander A.
Babichev for this one.
* Lots of minor syntax changes for MSVC,
PLIB v1.0.13 (July 8th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Included a JS patch from Karl Heinz Kremer <[email protected]> that
adds support for the latest Linux joystick driver. For those
who have the latest driver, this will increase the number of
joystick axes from 2 to 6.Beware though that the detection of
which kind of driver is present is currently done at compile
time which could be a problem for binary distributed code.
* Added a simple terrain demo (examples/ssg/majik)- originally
put together to give the good people in the Majik group
something to play with.
Check out *their* good stuff at: http://majik.netti.fi
* Improved state handling in SSG. Also added ssgForceBasicState().
* JS library should work with FreeBSD. (Thanks to Stephen Montgomery-Smith)
* Texture loaders in SSG and FNT changed to use GL_PROXY texture
tests instead of being hard-coded to crappy 256x256 limits.
* Since puiAlone is sadly outdated, I have ceased to distribute it.
If you need it, the last version is with plib-1.0.12 on the PLIB
homepage.
* Changed definition of SG_PI to be a 'float', fixed the precision
of SGD_PI to be double.
* Removed strncasecmp - because it's not universally implemented.
* Changed an ifdef in SL to allow it to compile under FreeBSD.
* Added an 'puArrowButton' call - just like a puButton - but
shaped like an arrow.
* Added an 'ssgGetVersion' call.
* Deleted ssgAnimation class (it was never completely
implemented anyway).
* Added ssgTimedSelector (which takes over the functions
I'd planned to add to ssgAnimation).
* I didn't rename the file ssgAnimation.cxx to ssgTimedSelector.cxx
because I couldn't stand to change all the MSVC project thingies.
* Numerous fixes for the Mac:
* Fixed a byte-swapping problem with the BMP
texture loader.
* Changed some arrays from local to 'new/delete' because
the Mac CodeWarrior compiler can't cope with more than
32Kb of local memory in a single function or class.
* Provided conditional compilation for Mac file naming
conventions in a couple of places. It's not enough though.
PLIB v1.0.12 (June 3rd 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added a set of MSVC project files.
* More portability issues resolved.
* Lots more actually.
* Official Acronym "IBFITNR" (It'll Be Fixed In The Next Release)
now adopted.
PLIB v1.0.11 (May 30th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Fixed a problem with LoadAC creating 2-point tstrips.
* Fixed an assert in SSG's deRef.
* The tables inside an ssgVTable are now 'protected' rather
than 'private'.
* Added new code to slScheduler to allow applications to
replay MOD files.
* Reorganized slSamplePlayer to be derived from a new
abstract base class slPlayer. Added new private class
slMODPlayer for replaying MOD files.
* Added a demo program for the new SL MOD player.
* Added ssgRangeSelector class to allow level-of-detail
management. This isn't well tested yet - but it's
really simple code - so it should be OK.
PLIB v1.0.10 (May 10th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Ooops! A fatal error in my strcasecmp code.
1.0.9 and 1.0.10 should have *died* on most
machines!
PLIB v1.0.9 (May 9th 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~
* Error in SGI version of slSample.cxx cleared up (Thanks Devrim!)
* Made some changes for MSVC.
PLIB v1.0.8 (May 3rd 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~
* A couple of warnings eliminated from SL when compiled
under CygWin.
* Added a contribution from Simon Britnell <[email protected]>
to allow programs to search the SSG scene graph by name or
path. (Thanks Simon!)
* Fixed a bug in sgIdentityQuat (Thanks Kevin!)
* Following the first release of Tux-aqfh, I was snowed under with
little fixes.
+ strcasecmp should be stricmp on some machines...but alas, not
on others. The heck with it - I'll just write my own!
+ fntFont wasn't pushing/popping GL state correctly.
+ More minor hacks to make for clean compiles under IRIX.
+ puInterface's destructor was only deleting half of it's
child node.
+ Missing contructor functions for various SG classes.
+ SSG culling functions were not testing for empty
bounding spheres.
+ Minor compilation warnings for slSample.cxx
+ example/sl/example.cxx used M_PI - which is a no-no under
Windoze.
PLIB v1.0.7 (May 3rd 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~
* Removed a bunch of redundant NOTICE, CHANGES
and REAME files. All that stuff is now maintained
in the top level directory.
* SG used to be set up so you could compile it
in double precision with the drop of an option.
However, some applications need both float and
double support - so SG now has duplicate functions
for double-precision that start 'sgd'.
* Changed the structure of the FNT library to move
font sizes from the fntFont/fntTexFont class into
the fntRenderer class. This corrects a poor design
decision because it was hard to create fonts in
multiple point sizes and slants without using
multiple identical texture maps (BAD!). RTFM.
* Added a bunch of TXF fonts into examples/fnt/data
and changed the fnt_test program to cycle through
them whenever you press a key.
* PUI can now use FNT fonts - which is good news
because now you can use TXF fonts for better
variety and speed compared to GLUT fonts.
This means that PUI programs now need to
link with -lpui -lfnt -lsg
* The PUI 'complex' example program now uses
the sorority font.
* I added a 'rendering callback' to some
PUI widgets as suggested by Eero Pajarre. The
idea is to allow you to do arbitary OpenGL
rendering onto a PUI widget...however, I'm
not convinced that this is a good idea. In
any case, you can put icons on widgets more
easily by defining custom fonts using FNT.
PLIB v1.0.6 (May 1st 1999)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added a complete new component library called
FNT that allows texturemapped fonts to be
loaded and rendered nicely.
* More small configure/compile problems fixed.
* Added Quaternions to the SG library thanks
to a fine contribution from Kevin Thompson