ReleaseNotes 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938
  1. ------------------------ RELEASE 1.6.2 ------------------------
  2. This is mainly a bugfix release. Also fixes some bugs that
  3. were accidentally introduced in 1.6.1.
  4. * Fixed a static-init issue in ptloader on Windows
  5. * Fixed texture scaling issue when using buffers
  6. * x2egg is no longer broken
  7. * Threading in OSX build fixed
  8. * Fixed issue with flickering colors in Shader Generator
  9. * Eggcacher now uses less RAM
  10. * Missing 'models' dirs in packpanda games fixed
  11. * Eggcacher step in Panda3D installer is now optional
  12. * Fixes broken shortcut links in Start Menu on Windows
  13. * Shader Generator now supports clip planes
  14. * Bug with combine modes in Shader Generator fixed
  15. * Fixed bug with Texture::make_copy()
  16. * Bug with Actor LOD fixed
  17. * Fixed bug with missing geometry in Collada converter
  18. * OdeUtil.collide instability fixed
  19. * OdeBody setData/getData methods exposed to Python
  20. ------------------------ RELEASE 1.6.1 ------------------------
  21. This release fixes some bugs found in 1.6.0, and adds some
  22. minor features as well.
  23. * Threading layer is now enabled by default
  24. * cTrav.showCollisions fixed
  25. * Fixed broken MovieTexture
  26. * OpenAL is now stable on Linux, too
  27. * OpenAL now supports dynamic playrate changing
  28. * MayaPandaTool now handles NURBS correctly
  29. * Fixed particle panel and directtools bugs
  30. * Fix crash with collada exporter on Windows
  31. * ARToolkit jittering fixed
  32. * Now possible to override shader vertex/fragment profiles
  33. * Maya exporter fixed on OSX
  34. * Fixed depth texture crash for padded textures
  35. * Fixed bug that made OdeUtil.collide return empty geoms
  36. * Fixed crash with render.flattenStrong() when using trackball
  37. * Several improvements to the ODE layer
  38. * Performance improvements to GeoMipTerrain
  39. * GeoMipTerrain.setBorderStitching to fix seams between terrains
  40. * installpanda.py for installing Panda on Linux without deb/rpm
  41. * Several other minor bugfixes
  42. ------------------------ RELEASE 1.6.0 ------------------------
  43. This release introduces several major new features and
  44. significant bugfixes. It is likely to be buggy, like most
  45. x.x.0 releases.
  46. * Lightweight threading framework without runtime overhead
  47. * Makepanda now fully supports OSX
  48. * DDS textures are now supported
  49. * COLLADA->egg converter added
  50. * New C++-based Task system, which includes async threading support
  51. * Support for asynchronous on-demand loading of textures and/or animations
  52. * New software-based renderer "tinydisplay"
  53. * More pythonic features: iterable methods, implicit parameter casting
  54. * Packpanda now also supports Linux
  55. * Added libsquish support for DXT compression
  56. * New MeshDrawer class for realtime mesh manipulation
  57. * Infamous FBO bug fixed
  58. * Preliminary support for Volumetric Lighting
  59. * Shader k-parameters can now contain underscores
  60. * Fixed OpenCVTexture and ARToolKit on Linux
  61. * GeoMipTerrain now supports multi-channel heightmaps
  62. * GeoMipTerrain features new near/far LOD system
  63. * GeoMipTerrain performance improved
  64. * CallbackNode added to support low-level drawing callbacks from Python
  65. * Fixed some minor but annoying OpenAL/FFMpeg issues
  66. * Fixed bug with lcontrol and rcontrol on Linux
  67. * Fixed bug regarding icon filenames
  68. * Multisampling fixed on Linux and OSX
  69. * Left and right scrolling events now available
  70. * Several improvements to API reference
  71. * ShaderGenerator now supports several more blend modes and color scale
  72. * .x converter now supports AnimTicksPerSecond
  73. * vfs-mount-url can load models directly off the web
  74. * Smoother transitions in FadeLodNode
  75. * Dynamically-generated outline on fonts: loader.loadFont(outlineWidth = xxx)
  76. * Texture.getRamImageAs()
  77. * base.toggleTexMem()
  78. * Text generation performance optimization
  79. * Various performance optimizations
  80. * Several more minor bugs fixed
  81. ------------------------ RELEASE 1.5.4 ------------------------
  82. This is a bugfix release, fixing the problems found in 1.5.3.
  83. * Fixes packpanda crash
  84. * Linux build accidentally got configured for OpenAL
  85. * EggTexture now writes wrap modes and types correctly.
  86. * Fixes an occasional crash in TextureAttrib
  87. * DirectEntry no longer crashes when moving cursor in a full box
  88. * Several bugs in RigidBodyCombiner fixed
  89. * Normals generated by GeoMipTerrain are now correct
  90. * Bugs fixed in DirectGrid
  91. * Linux users can now use WindowProperties.setParentWindow
  92. * Fmod now compiles on 64-bits
  93. * Fixed several bugs in the API reference generator
  94. * EggNurbsSurface is now exposed to Python
  95. * Fixes a bug in PGButton
  96. * GeoMipTerrain set_heightfield fixed
  97. * Several bugs in the Max exporter:
  98. - Now generates binormals and tangents
  99. - Pview output fixed
  100. - Overwrite confirmation fixed
  101. - Export type 'Both' now works correctly
  102. * Several other bugs not listed above.
  103. ------------------------ RELEASE 1.5.3 ------------------------
  104. This release fixes most of the remaining bugs, but it adds
  105. some new features as well.
  106. * License changed to BSD
  107. * Fixes x-file parser for real, this time.
  108. * Fixes serious bug in shader generator
  109. * Adds MSVCR71 and MSVCP71 back to the distro (for python)
  110. * Fixed a bug in GeoMipTerrain
  111. * Adds support for .egg.pz to packpanda --bam
  112. * Turns on libpandaode support
  113. * Mayapandatool fixed
  114. * Added support for 3dsmax 2009
  115. * Max exporter overhauled
  116. * Improved support for 64-bits, gcc 4.3 and OSX
  117. ------------------------ RELEASE 1.5.2 ------------------------
  118. This fixes just one serious bug: release 1.5.1 accidentally
  119. reversed the TextureStage sort order.
  120. ------------------------ RELEASE 1.5.1 ------------------------
  121. Mostly a bugfix release, but adds some minor features too.
  122. - The x-file parser now is back to being case-insensitive, as it should be.
  123. - Panda plugins now use an explicit plugin-path.
  124. - Better DLL-hell protection under windows.
  125. - Added GeoMipTerrain (but no docs yet)
  126. - Using python -E in the start menu - really, this time.
  127. - Linmath classes now initialized when using python.
  128. - ConfigVariableSearch
  129. - Implicit sort order for texture attribs.
  130. - OpenAL audio manager now gives control over streaming vs preloaded sounds.
  131. - Preliminary support for 64-bit linux (but thirdparty libs missing).
  132. - Fixes a dozen or so assorted bugs.
  133. ------------------------ RELEASE 1.5.0 ------------------------
  134. * Shader Generator means advanced rendering without
  135. having to manually write shaders. Includes:
  136. - Per-Pixel Lighting
  137. - Normal Maps
  138. - Gloss Maps
  139. - Glow (Self-Illumination) Maps
  140. - HDR tone mapping
  141. - Cartoon shading
  142. * Class 'CommonFilters' makes it easy to do image postprocessing:
  143. - Bloom Filter
  144. - Cartoon Inking
  145. - More coming soon.
  146. * Maya exporter now supports normal maps, gloss maps, glow maps.
  147. * Now compiled for Python 2.5
  148. * Adds support for Maya 2008 export.
  149. * Lots of small tweaks, bugfixes, performance improvements, etc.
  150. ------------------------ RELEASE 1.4.2 ------------------------
  151. * Added code for mouse-trail logging.
  152. * Fixed a minor bug in the new OpenAL code.
  153. * The installer now uses less memory.
  154. * Now easier to compile with recent versions of SSL.
  155. * Minor bugfix in exposeJoint
  156. * Added config variable: basic-shaders-only
  157. * graphicsEngine.removeWindow() and graphicsOutput.setOneShot() fixed.
  158. * Roaming ralph sample now uses collision detection correctly.
  159. ------------------------ RELEASE 1.4.1 ------------------------
  160. This release:
  161. * fixes a couple of small bugs
  162. * adds support for the new OpenAL/FFMpeg unified sound/video system.
  163. * renames the sample programs in a more sensible way
  164. ------------------------ RELEASE 1.4.0 ------------------------
  165. This release incorporates lots of small, incremental
  166. improvements.
  167. * Model-cache enabled by default in prepackaged release.
  168. * Now compiling with visual studio 2005.
  169. * Plugin installation now slightly harder --- see instructions in plugins dir.
  170. * Improved OSX support: mouselook, fmod fixes, icon filename.
  171. * Better memory usage tracking from pstats.
  172. * Removed dependencies on NSPR.
  173. * New default-model-extension prc variable (instead of old implicit-extension behavior)
  174. * New arc emitter in particle system.
  175. * Multiple different Actors can be flattened into one node.
  176. * Texture compression in DX8, DX9.
  177. * New features to support low-memory platforms.
  178. * ParametricCurveDrawer etc. officially deprecated in favor of RopeNode.
  179. * DynamicTextFont::RenderMode allows generating geometric fonts (instead of always using texture-based fonts).
  180. * Some integrated support for ODE (not yet polished and ready)
  181. * New RigidBodyCombiner unifies independently moving bodies into a single Geom as a rendering optimization.
  182. * Support for depth-stencil textures.
  183. * Better support for fullscreen mode on Linux.
  184. * Panda GL/DX windows can be subordinate to other windows (Win32 only).
  185. * Better multithreaded protection.
  186. * Interrogate correctly handles "const" vs. non-const objects.
  187. * PlaneNode::set_clip_effect allows user-defined cull planes (in addition to clip planes).
  188. * Several low-level rendering optimizations.
  189. * Simple occlusion culling with PipeOcclusionCullTraverser.
  190. * Optional bounding boxes (instead of spheres): "bounds-type box", "bounds-type best"
  191. * Addition of eggcacher utility to preload model-cache.
  192. * In source tree, added 'skel' directory to make it easier for newcomers to extend panda.
  193. * The obsolete config variable framebuffer-mode has been removed.
  194. I have no doubt that there will be a few significant bugs in this release, like all X.X.0 releases. - Josh
  195. ------------------------ RELEASE 1.3.2 ------------------------
  196. Bugfix release. This fixes a few problems in 1.3.1
  197. * Sound system won't initialize properly under linux: Fixed.
  198. * Panda DLL names now all start with "libp3" or "libpanda"
  199. * Normals reversed in heightfield tesselator: fixed.
  200. ------------------------ RELEASE 1.3.1 ------------------------
  201. Bugfix release. This fixes a few problems in 1.3.0
  202. * Sound system won't initialize properly under linux: Fixed.(Update: Not fixed)
  203. * Panda not compatible with SElinux: mostly fixed, except fmod.
  204. * Max exporter and importer broken: Fixed.
  205. * Minor problem involving gsg handling in showbase: Fixed.
  206. ------------------------ RELEASE 1.3.0 ------------------------
  207. This release contains several new features, and as such, it might be
  208. buggy. However, we've been testing it internally for a couple weeks,
  209. and it seems to be okay. It contains the following new features:
  210. * Stencil buffers and stencil operations now supported.
  211. * Sound API now supports DSP and better support for large MP3s.
  212. * Video uses FFMPEG instead of DirectShow - no more codec issues.
  213. * Heightfield terrain.
  214. * Support for intra-frame animation interpolation.
  215. * Use of 'import *' now only imports correct symbols.
  216. * Various minor improvements to the particle system.
  217. * Scene editor at least partially operational (alpha level)
  218. * Removed most of the 65,536 vertex-per-mesh limits.
  219. * Various low-level optimizations.
  220. * Support for threaded model loads (only in CVS, not in distro).
  221. * Support for 'model-cache-dir', which caches a BAM each time you load an EGG.
  222. * OnscreenText/DirectLabel can contain embedded 3D models inside the text.
  223. ------------------------ RELEASE 1.2.3 ------------------------
  224. The last release was a disaster:
  225. * I failed to fix packpanda.
  226. * I broke the tcl/tk stuff.
  227. * I added ppythonw, and it wasn't reliable.
  228. So basically, this release fixes packpanda and tcl/tk. It doesn't
  229. fix ppythonw yet (I don't know what's wrong), but it does disable
  230. it temporarily. It keeps the few things from 1.2.2 that were worth
  231. keeping.
  232. ------------------------ RELEASE 1.2.2 ------------------------
  233. This is a minor bugfix release.
  234. * Adds 'ppythonw', a version of ppython that doesn't
  235. open a console window.
  236. * If you have a bad fmod DLL in your windows folder,
  237. this version compensates.
  238. * Fixes a small bug in the VRML-to-egg converter.
  239. * Small stylistic improvements in some sample programs.
  240. ------------------------ RELEASE 1.2.1 ------------------------
  241. This release is likely to be much more stable than its predecessors.
  242. It contains many new features:
  243. * lots of performance optimizations
  244. * a preliminary OSX port
  245. * new modes for animation blending
  246. * easier partial-body animations
  247. * more powerful shader-to-engine interface
  248. * better support for rotating bodies in physics engine
  249. * support for compressed model files
  250. * multiple render targets (ie, glDrawBuffers)
  251. * support for stereo rendering
  252. * more complete API reference manual
  253. * ability to control mipmaps explicitly
  254. * better tools for debugging offscreen buffers
  255. * new sample programs
  256. * a number of packpanda repairs
  257. ------------------------ RELEASE 1.1.0 ------------------------
  258. This is a BETA release. It's pretty reliable, but there are still a
  259. few quirks here and there. Over the summer, Panda3D was overhauled
  260. top to bottom. The new code is dramatically improved, but it needs a
  261. little bit of testing. The new features are:
  262. * Much faster rendering of high-poly models.
  263. * Dramatically improved vertex and pixel shader support.
  264. * New demo programs using shaders and render-to-texture.
  265. * Play movies by using an AVI as a texture (windows only).
  266. * Python scripting uses much faster python to C++ interface.
  267. * Support for procedurally-created geometry (eg, fractals, etc).
  268. * Cleaner, simpler internal data structures.
  269. * Comes with Python 2.4 support built-in.
  270. * A lot more.
  271. The new demo programs are:
  272. * Render to Texture Demo
  273. * Cartoon Shader Demo
  274. * Motion Trails Demo
  275. * Procedural Geometry (Fractals) Demo
  276. * Normal Mapping Demo
  277. However, a caution: this is a BETA release: reasonably stable, but
  278. not quite perfect. Please send us your bug reports.
  279. ------------------------ RELEASE 1.0.5 ------------------------
  280. UPDATE: this release broke support for visual studio. Use
  281. panda3d 1.0.4 if you wish to compile panda from scratch using
  282. visual studio.
  283. This release consists mainly of compatibility improvements.
  284. * Now compiles under MS Visual Toolkit (makefile changes)
  285. * Now compiles under Mandrake 10.1 (a fix in the makefile)
  286. * Now compiles under Debian Sarge (a fix in the VRML lexer)
  287. * Now compiles under Ubuntu HH (same as DEBIAN SARGE)
  288. * Add code for building debian 'deb' archives.
  289. * Fix scene editor and particle panel so they work on linux.
  290. * Add support for --no-python to makepanda.
  291. * Tidied up makepanda a bit.
  292. ------------------------ RELEASE 1.0.4 ------------------------
  293. * This version includes the new Max exporter and the new Maya
  294. export panel.
  295. * We have added the --genman option to makepanda (to
  296. regenerate the API reference manual). This uses the epydoc
  297. documentation-generation system.
  298. * Several bugs in the new tutorials have been repaired.
  299. * A bug in fmod positional audio has been fixed.
  300. * Makepanda now puts the maya and max plugins in a
  301. separate 'plugins' directory, for convenience.
  302. * The 'libpandaegg' library has been exported to python.
  303. ------------------------ RELEASE 1.0.3 ------------------------
  304. * The binary release contains a brand new collection of
  305. sample programs. The new sample programs are much better.
  306. * If you install the windows binary release, the
  307. sample programs can now be run from the start menu.
  308. * Lighting under DirectX was broken. This has been repaired.
  309. * The binary release has been compiled with support for pstats.
  310. (Previously, it was compiled with pstats disabled).
  311. * Various changes to make panda3d more compatible with
  312. the 'epydoc' documentation-generation system.
  313. ------------------------ RELEASE 1.0.2 ------------------------
  314. This is a bugfix release.
  315. * makepanda contained a bug: it was compiling maya2egg6
  316. against the Maya 5.0 libraries, making it largely useless.
  317. This is fixed.
  318. * Maya2egg65 has been added, for Maya 6.5 users.
  319. * The configuration combo "want-tk=false, want-directtools=true"
  320. used to confuse panda, because directtools uses Tk. Now
  321. it's smart enough to do the right thing.
  322. * When you ask controlJoint to create a control node for
  323. you, it initializes the control node to the joint's initial
  324. position.
  325. * The scene editor supposedly works now. We'll see.
  326. * The models directory was missing the animation 'panda-walk4',
  327. which is necessary for the tutorial.
  328. * A new directory 'win-extras' has been added to the
  329. thirdparty tree. This contains some miscellaneous python
  330. libraries needed at the Entertainment Technology Center.
  331. The script that builds the windows installer will include
  332. these libraries in the distribution.
  333. ------------------------ RELEASE 1.0.1 ------------------------
  334. This is a bugfix release.
  335. * In the previous binary release, Config.prc did not contain a
  336. load-display line. This confuses pview. Pview is being fixed,
  337. but until then, the load-display line has been restored.
  338. * The Max and Maya plugins were inadvertently omitted from the
  339. previous binary release. This has been corrected.
  340. * An error in the distributed object networking layer has
  341. been fixed. The error only affected those who were trying to
  342. write LAN games using the CMU LAN server and p2p messages.
  343. * An error in the physics code has been corrected.
  344. * Python Megawidgets (pmw), which is required for "directtools",
  345. was not supplied in the previous release. We are now including
  346. pmw. In the Linux RPMs, to avoid overwriting any
  347. distribution-supplied pmw package, we put this package
  348. into /usr/share/panda3d.
  349. * To be consistent, we moved all the other python code into
  350. /usr/share/panda3d as well. This requires a file 'panda.pth'
  351. in the python lib directory.
  352. * In the binary RPMs, the file permissions of the python
  353. source files have been changed to 555, so that even if root
  354. runs panda, the '.pyc' files will not be modified or regenerated.
  355. ------------------------ RELEASE 1.0.0 ------------------------
  356. Configuration, installation, and execution environments:
  357. * This is the introduction of the new Panda version numbering
  358. system. The Panda version will be represented with three
  359. dot-separated numbers. The first number, the major version, will
  360. change only very rarely. The second number, the minor version,
  361. will increment frequently, with each new feature release. The
  362. third number will increment as needed to indicate bugfix releases
  363. on the minor version.
  364. * Use PandaSystem::get_version_string() (or
  365. PandaSystem.getVersionString() in Python) to return the version
  366. number of the currently-running Panda.
  367. * New runtime config system allows for dynamic loading of prc files
  368. and supports querying of available variable names. Use
  369. ConfigVariableString, ConfigVariableBool, etc. to get a value from
  370. the prc file(s); use the ConfigVariableManager and
  371. ConfigPageManager classes (or the cvMgr and cpMgr global objects
  372. in Python) to make general queries.
  373. * The ppremake build system now properly detects intra-tree
  374. dependencies, but only if each tree is fully built and installed
  375. before ppremake is run within the next dependent tree. Requires
  376. using ppremake version 1.18 or higher.
  377. Miscellaneous:
  378. * New support for encrypted streams, including encrypted subfiles
  379. within a multifile, using the OpenSSL encryption library. Adds
  380. pencrypt and pdecrypt programs.
  381. * The default port for PStats is now 5185, to avoid a conflict with
  382. Instant Messenger.
  383. * New "smooth" checkbox on PStats graphs provides a better sense of
  384. overall trends when graphs are noisy.
  385. * The meaning of the three components of HPR angles has been
  386. officially changed, in particular the meaning of the R component.
  387. This change was introduced to make the three components more
  388. consistent with each other, and to make P and R work together in a
  389. more sensible way. Existing code which used hard-coded HPR angles
  390. may be invalidated by this change. To convert existing code, you
  391. should use the global function old_to_new_hpr() to determine what
  392. new HPR triple that corresponds to an old HPR triple. As a
  393. temporary stopgap, you may define temp-hpr-fix 0 in your prc file.
  394. * Add support for weak reference counts using the WeakPointerTo
  395. class.
  396. * Add optional support for STL's semistandard hashing containers,
  397. e.g. hash_map and hash_set.
  398. * Panda no longer requires any registry keys or environment
  399. variables. This means it is now possible to run panda directly
  400. from a CD, install multiple copies of panda on a single machine,
  401. or install panda by copying the tree from another computer.
  402. Note that the installer does add the panda 'bin' directory to
  403. your PATH, and it does store an uninstall key in the registry,
  404. but neither of these is needed for panda to function.
  405. * The 'makepanda' build system is now capable of building
  406. prepackaged games for Windows. These prepackaged games are simply
  407. copies of panda with the game code included, some of the
  408. unnecessary stuff stripped out, and some changes to the start
  409. menu. See "Airblade - Installer" on the panda downloads page
  410. for an example.
  411. * This is the first release to include not just a binary installer
  412. for windows, but also binary RPMs for fedora 2, fedora 3, and
  413. redhat 9.
  414. * All of the sample programs have been tested. The ones that didn't
  415. work have been removed, the ones that do work have been (lightly)
  416. documented.
  417. * In the Win32 binary release, the 'config.prc' file has been moved
  418. to the 'etc' directory. This is to make it consistent with the
  419. Linux version.
  420. Rendering system:
  421. * Multitexture support is now part of Panda. This introduces the
  422. TextureStage and TexCoordName classes, as well as new interfaces
  423. like NodePath::add_texture(). As of the present release,
  424. multitexture is only supported when using the OpenGL renderer.
  425. * Support for programmable shaders is now possible using the Cg
  426. shader language. Assign a CgShaderAttrib to a node to apply a
  427. programmable shader.
  428. * New support for the Helix library allows playing of a streaming
  429. movie in a Panda texture. Presently only supported on Windows.
  430. * Deprecated the old "win-origin-x" and "win-origin-y" prc variables
  431. in favor of "win-origin", which takes two numbers separated by a
  432. space. Similarly with "win-width" and "win-height", in favor of
  433. "win-size".
  434. * Deprecated the old Camera::set_scene() interface; now a Camera
  435. implicitly renders whatever scene graph it is parented to.
  436. * Removed the old GraphicsLayer and GraphicsChannel classes.
  437. Instead of using these interfaces, you can now create any number
  438. of DisplayRegions directly on the window.
  439. * Offscreen render-to-a-texture will now be properly oriented under
  440. DirectX (previously, it would render the texture image upside-down
  441. and backward).
  442. * Support for automatic keystone correction caused by an off-axis
  443. physical projector using Lens::set_keystone().
  444. * New framebuffer-mode prc variable allows explicit control over the
  445. default framebuffer properties requested by Panda, including
  446. whether software or hardware rendering is required.
  447. * Added "multisample" transparency mode (alpha keyword "ms" in an
  448. egg file), which allows good-quality transparency (especially for
  449. alpha cutouts) without requiring back-to-front sorting, and
  450. without artifacts from improper sorting. This does require
  451. special multisample hardware capabilities, however. Presently
  452. supported in OpenGL mode only. Automatic fallback to "binary"
  453. transparency mode if multisample is not supported on a given
  454. platform.
  455. * New cursor-filename and icon-filename config variables replace the
  456. old win32-mono-cursor and win32-window-icon variables. Also,
  457. runtime control over these properties is now provided by the
  458. WindowProperties class.
  459. * Better management of potential memory leaks due to cyclic
  460. reference counts in the RenderState and TransformState caches.
  461. Now cycles are automatically detected and broken.
  462. Scene graph:
  463. * GeomNodes now have a CollideMask, just like CollisionNodes, which
  464. deprecates the old set_collide_geom() interface to detect
  465. collisions with visible geometry. There is a new NodePath
  466. interface for querying and setting the collide masks for single
  467. nodes or for entire subgraphs.
  468. * New NodePath interfaces to control lighting eliminate the need to
  469. create an explicit LightAttrib. The new lighting interfaces are
  470. designed to be similar to the new multitexture interfaces.
  471. * New NodePath interfaces to control the texture matrix, including a
  472. new project_texture() method to enable hardware-assisted
  473. projective texturing.
  474. * New NodePath::flatten_multitex() interface to bake in certain
  475. kinds of multitexture effects into a single texture, generated
  476. on-the-fly.
  477. * New options for ColorBlendAttrib and RenderModeAttrib.
  478. * NodePath::set_transparancy() now accepts a
  479. TransparencyAttrib::Mode parameter to specify exactly what kind of
  480. transparency you'd like.
  481. * New NodePath::set_render_mode() interface accepts a
  482. RenderModeAttrib::Mode parameter, deprecating
  483. set_render_mode_filled() and set_render_mode_wireframe().
  484. * LerpQuatInterval can be used as a drop-in replacement for
  485. LerpHprInterval; it performs spherical lerps in quaternion space,
  486. rather than lerping each component of a HPR individually.
  487. LerpHprInterval is not deprecated; it remains useful within its
  488. limitations.
  489. * New DirectSliderBar gui object implements a standard slider bar
  490. with a thumb (like a window scroll bar).
  491. * Lighting normals are now automatically counterscaled properly when
  492. lighting is enabled in the presence of a scale, uniform or
  493. nonuniform, in the scene graph. You can also use
  494. RescaleNormalAttrib for explicit control over this behavior.
  495. * Improvements to RopeNode for rendering splines in various
  496. representations.
  497. Collisions and physics systems:
  498. * New CollisionSegment and CollisionInvSphere collision solids.
  499. * The collision system now reports normals for intersections
  500. detected from collision rays, segments, and lines.
  501. * Several improvements to the physics system.
  502. Model converters:
  503. * x2egg and egg2x added to converters, as well as to inline
  504. conversion supported via ptloader. This adds support for
  505. DirectX's native so-called "retained-mode" file format. This file
  506. format supports animation and joint hierarchies as well as basic
  507. polygonal models.
  508. * vrml2egg added to converters, as well as to inline conversion
  509. supported via ptloader. This adds support for VRML 2.0 model
  510. files only.
  511. * Added -noabs option to many model converters, to help detect
  512. problems with unintended absolute path references.
  513. * Added egg2bam -flatten and -combine-geoms.
  514. * We now have working exporters for Max5, Max6, Max7, Maya5, Maya6.
  515. (Update: these were accidentally omitted from the binary release)
  516. * The Max exporter is dramatically improved: it now includes support
  517. for character studio, and the polygon winding bug has been fixed.
  518. ------------------------ RELEASE 2004-07-27 ------------------------
  519. Configuration, installation, and execution environments:
  520. * We have moved to a new, more explicit naming convention for our
  521. import statements. Rather than installing all Python files into
  522. one big flat namespace, we now import them from their appropriate
  523. directories, e.g. "from direct.actor import Actor".
  524. * "from ShowBaseGlobal import *" is replaced with "import
  525. direct.directbase.DirectStart" and/or "from pandac.PandaModules
  526. import *".
  527. * The old "generatePythonCode" script has been replaced with a new
  528. "genPyCode" script that automates the Python wrapper generation
  529. process without requiring any special parameters.
  530. * The old dependencies on environment variables have been removed.
  531. There are no longer requirements for any environment variables to
  532. be set in either the build process or the runtime environment
  533. (although a few optional environment variables remain to allow
  534. custom configuration).
  535. * INSTALL document greatly enhanced for clarity.
  536. * An automatic build script is now provided to further simplify
  537. building Panda3D for Unix and Cygwin users.
  538. * The old "Configrc" filename to identify runtime configuration
  539. files is deprecated; configuration files should now be named
  540. Config.prc, or in general, *.prc. The system-default
  541. configuration files are auto-generated as 20_panda.prc,
  542. 30_pandatool.prc, and 40_direct.prc (the numeric prefixes control
  543. the order in which these are loaded at runtime).
  544. Rendering system:
  545. * Some deprecated methods of CollisionEntry have been flagged to
  546. raise an exception now; these are replaced with the newer
  547. interfaces that can return a collision point in an arbitrary
  548. coordinate system.
  549. * Camera::set_cull_center() can be used for debugging culling by
  550. setting the effective point of visibility culling different from
  551. the actual point. From Python, use base.oobeCull() to examine
  552. this effect.
  553. * Alt-Enter in pview toggles between fullscreen and windowed modes.
  554. * Added experimental support for GL display lists.
  555. Scene graph:
  556. * Exposed methods to directly retrieve and set the individual
  557. vertices of a GeomNode from Python code.
  558. * The new PortalNode defines the interface for Panda's new
  559. cell-portal visibility system; each PortalNode is a window into
  560. another zone, or a separate subgraph; the PortalNode can hide or
  561. show the subset of its zone's geometry visible through its
  562. "portal".
  563. * The new PolylightNode applies a simple lighting-like effect
  564. without actually using lighting; objects will brighten or darken
  565. as a whole according to their proximity to the light. Use
  566. PolylightEffect to enable this effect.
  567. * The new FadeLODNode works like ordinary LODNode, but the switches
  568. are alpha-blended in over a short period of time rather than
  569. popping immediately.
  570. Text display:
  571. * Text now supports embedded mode changes--special characters to
  572. switch fonts, colors, scale, etc. within a line or within a
  573. paragraph.
  574. * Windows IME is better supported by Panda/Direct widgets
  575. (e.g. PGEntry and/or DirectEntry) in fullscreen mode as well as in
  576. windowed mode.
  577. Model converters:
  578. * dxf2egg and egg2dxf added to converters, as well as to inline
  579. conversion supported via ptloader.
  580. ------------------------ RELEASE 2004-03-29 ------------------------
  581. Miscellaneous:
  582. * We once again support the Microsoft VC6 compiler.
  583. * The "pstats" program is now provided in the Windows environment as
  584. part of pandatool. It is similar to "gtk-stats" on a Unix
  585. environment, and can be used to view a real-time graph of
  586. performance timing in a running Panda process. See
  587. panda/src/doc/howto.use_pstats.
  588. * New session recording and playback support allows capturing user
  589. and network input to a disk file, for replaying later, offline.
  590. Use "record-session filename.boo" and "playback-session
  591. filename.boo" in your Configrc file.
  592. * The genPyCode script now uses PythonWare's SqueezeTool to
  593. "squeeze" the large number of generated .py files into a single
  594. shared library, for substantially improved startup times on
  595. Windows.
  596. * The Task system now has substantially reduced overhead when many
  597. doLater's are waiting in the system.
  598. * The png image file type is now supported.
  599. Rendering system:
  600. * Introducing native DirectX9 graphics support, although we do not
  601. yet support any features specific to DirectX9, such as
  602. programmable shaders.
  603. * DirectX7 and DirectX8 modules are now somewhat more robust.
  604. * New support for offscreen rendering and render-to-a-texture, which
  605. will become part of a general multipass-rendering interface.
  606. Presently supported in OpenGL, with limited DirectX support. Use
  607. GraphicsWindow::make_texture_buffer() to make a buffer you can
  608. render into and apply the result as a texture map to objects in
  609. your scene. The NonlinearImager in the distort directory is a
  610. complex example of using this interface.
  611. * Explicit support for the Mesa 3D library's software-based
  612. offscreen rendering, allowing a Panda program to generate
  613. offscreen images as a background process, independently of any
  614. graphics card or desktop environment.
  615. * GraphicsLayer and GraphicsWindow render order can now be easily
  616. adjusted dynamically with set_sort() methods.
  617. * Built-in frame rate meter can be activated by setting
  618. "show-frame-rate-meter 1" in your Configrc file.
  619. Scene graph:
  620. * New tag system on PandaNodes allows storing of arbitrary string
  621. data on nodes, keyed by a string dictionary. The
  622. NodePath::get_net_tag() interface retrieves the data value for a
  623. particular tag on a node or the nearest ancestor of the node.
  624. NodePath::find() can search for a node in the scene graph with a
  625. given tag or tag/value pair.
  626. * Explicit shear transforms are now supported on nodes, as well as
  627. in character animation tables.
  628. * Characters now have an interface to control joint and slider
  629. values dynamically, instead of strictly from an animation file.
  630. Use Actor.exposeJoint() and/or Actor.controlJoint().
  631. * Nurbs surfaces and curves can now be rendered directly by Panda,
  632. which will tesselate them on the fly at some CPU cost. This is a
  633. modeling convenience only; it is not intended to be used for
  634. production code. Triangle strips are still the fastest way to
  635. render complex surfaces.
  636. * However, Rope.py is now provided as a high-level wrapper around
  637. Panda's runtime NURBS curve evaluator; it can render dynamic
  638. curves in a variety of ways.
  639. * The egg library is now published to Python, allowing construction
  640. of geometry on-the-fly by show code for convenience. This is also
  641. intended as a developer's convenience more than a production
  642. feature.
  643. Text display:
  644. * The special character \3 (ASCII 0x03) embedded in a text string
  645. indicates the position of a soft hyphen when wordwrap mode is in
  646. effect. The character \4 (ASCII 0x04) serves as a hyphenless
  647. invisible break point.
  648. * A default font is compiled in even if the FreeType library is not
  649. available.
  650. * pnmtext library added for rendering text directly into an image.
  651. * New egg-mkfont utility uses FreeType to generate static font
  652. models that Panda clients without FreeType can use to render text.
  653. Collision and physics system:
  654. * More robust collision interface, supporting NodePaths properly so
  655. that collisions detected into (and from) particular instances of
  656. nodes can be differentiated. CollisionEntry has a much simpler
  657. mechanism for getting the intersection point and normal in an
  658. arbitrary coordinate space defined by a NodePath, instead of the
  659. user having to convert the coordinate space by hand.
  660. * New CollisionVisualizer object to visually show collisions as they
  661. are tested and detected, useful for optimizing collision
  662. performance. Activate this with
  663. base.cTrav.showCollisions(render).
  664. * Implicit velocity system is now integrated with scene graph; the
  665. relative velocity of moving nodes is automatically considered when
  666. testing for most kinds of collisions. Use
  667. NodePath::set_fluid_pos() to indicate that a node is moving
  668. fluidly to its new position and should test for collisions along
  669. the way (as opposed to the more traditional NodePath::set_pos(),
  670. which unconditionally sets the node to its new position).
  671. * Introduction of "tube" collision shapes, sometimes called
  672. "capsules" in other libraries. It is a cylinder capped with
  673. hemispheres.
  674. * CollisionSolid::set_effective_normal() provides a way to define a
  675. sloping surface with an apparently vertical normal, to prevent
  676. characters standing on the surface from sliding down.
  677. * Collision polygons now respect clipping planes.
  678. * Many changes to physics system.
  679. HTTPClient and net systems:
  680. * More verbose error reporting.
  681. * Better support for proxy servers, including SOCKS5 proxies.
  682. Model converters:
  683. * maya2egg converter now supports skeleton/morph animation files
  684. fully, including soft-skinning, hard-skinning, and morphs (blend
  685. shapes). NURBS and polygon meshes are both supported.
  686. * A new Maya plugin called libmayapview allows opening a Panda
  687. window from within Maya to view how the scene will look once it
  688. has been converted to Panda.
  689. * New soft2egg converter supports models and animation stored in
  690. SoftImage 4.3 files. (Newer versions of SoftImage are not
  691. supported.)
  692. * New egg2flt program more or less reverses flt2egg.
  693. * The ptloader Panda loader allows direct loading into Panda of most
  694. model file types defined within pandatool: Maya, flt, and lwo.
  695. Specify load-file-type ptloader in your Configrc file.
  696. * New egg-optchar preprocessor improves character animation runtime
  697. performance by eliminating unneeded joints. It can also
  698. reorganize a skeleton and/or expose joints for the show code's
  699. convenience.
  700. * New egg-qtess utility converts NURBS egg files to polygon egg
  701. files with either a trivial interface for quick conversions or a
  702. sophisticated parameter file for more precise control. It
  703. preserves soft-skinning and animation information.
  704. * New visibility flag in egg format allows model files to define
  705. invisible subtrees which will be initially stashed when loaded.
  706. * The egg library now allows implicit forward references to vertex
  707. pools, making it much easier to generate a valid egg file from a
  708. third-party model format.