ReleaseNotes 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380
  1. ------------------------ RELEASE 1.9.3 ------------------------
  2. This issue fixes several bugs that were still found in 1.9.2.
  3. * Fix crash when running in Steam on Linux when using OpenAL
  4. * Fix crash using wx/tkinter on Mac as long as want-wx/tk is set
  5. * Fix loading models from 'models' package with models/ prefix
  6. * Fix random crashes in task system
  7. * Fix various race conditions causing threading issues
  8. * Fix memory leaks in BulletTriangleMesh
  9. * Fix loading old models with MovingPart<LMatrix4f>
  10. * Improve performance of CPU vertex animation somewhat
  11. * Show framebuffer properties when fbprop request fails
  12. * Show error instead of crash on use of object before __init__
  13. * Fix hang on exit when using Python task on threaded task chain
  14. * Fix inability to get RGBA renderbuffer in certain cases
  15. * Work around GLSL issue with #pragma and certain Intel drivers
  16. * Improve performance of texture load and store operations
  17. * Fix crashes with pbuffers on Intel cards on Windows
  18. * Support for Autodesk Maya 2016.5
  19. * Add shadow-depth-bits config var to control shadow map depth
  20. * Fix cull issue when rendering cube map (or any multi-lens setup)
  21. * Fix crash rendering with the same camera to different contexts
  22. * Fix compile error when making static build with DX9 renderer
  23. * Fix assertion when using aux render targets in DX9
  24. * Work around Cg bug generating invalid ASM for saturated tex loads
  25. * Fix issues with certain Cg shader inputs in DX9
  26. * Support uint8 index buffers in DX9
  27. * Fix occasional frame lag when loading a big model asynchronously
  28. * Fix interrogate parsing issue with "const static"
  29. * Add back missing libp3pystub.a to Mac OS X SDK
  30. * Fix RAM caching of 2D texture arrays
  31. * Fix Ctrl+C interrupt propagation to runtime applications
  32. * Support for InvSphere, Box and Tube solids in bam2egg
  33. * Add normalized() method to vectors
  34. * asyncFlattenStrong with inPlace=True caused node to disappear
  35. * Fix asyncFlattenStrong called on nodes without parent
  36. * Fix is_playing() check when playing an animation backwards
  37. * Windows installer no longer clears %PATH% if longer than 1024 chars
  38. * Fix inoperative -tbn/-tbnall/-tbnauto options in egg-optchar
  39. * Fix tinydisplay texture errors on shutdown
  40. * Fix mipmap filtering issues in tinydisplay renderer
  41. * Fix exception when creating intervals before ShowBase is started
  42. ------------------------ RELEASE 1.9.2 ------------------------
  43. This is a minor bugfix release, fixing a few minor issues that
  44. remained in the 1.9.1 release, including:
  45. * Fix compile errors with more recent versions of ffmpeg
  46. * Include .lib files for pyd modules in Windows SDK
  47. * packp3d now recognizes default egg-object-type definitions
  48. * Fix issues with sphere-into-box and box-into-sphere collisions
  49. * Texture VRAM usage is now correctly reported by pstats
  50. * Support for reading BMP files with alpha channel
  51. * Fix OpenGL crashes in very ancient OpenGL versions
  52. * Fix rare compile issues and crashes with esoteric Python set-ups
  53. * Fix crash when extracting texture that's not a multiple of 4 bytes
  54. * Work around buggy NVIDIA driver that reports _main_* shader inputs
  55. * Add version of transform_vertices that accepts a SparseArray
  56. * Clamp shininess to 0 to avoid GL error when shininess < 0
  57. * Fix various bugs in RopeNode and NurbsCurveEvaluator
  58. * Fix clock-mode Config.prc settings
  59. * NodePath render_mode setters no longer reset wireframe color
  60. * Fix constant reloading of texture when gl-ignore-mipmaps is set
  61. * BamReader now releases the GIL (so it can be used threaded)
  62. * Fix AttributeError in direct.stdpy.threading module
  63. ------------------------ RELEASE 1.9.1 ------------------------
  64. This minor release fixes some important regressions and bugs found
  65. in 1.9.0, but also introduces a few minor features.
  66. It also reintroduces the deployment tools that were absent from
  67. the previous release.
  68. The following issues were fixed:
  69. * SDK now properly installs in Mac OS X 10.11 "El Capitan"
  70. * Windows 8.1+ no longer applies DPI virtualization to Panda window
  71. * Fix ffmpeg library load issue on Mac OS X
  72. * Fix issues running maya2egg on Mac OS X
  73. * Fix compiler errors on different platforms
  74. * Fix various rare crashes
  75. * Fix crashes on shutdown in threaded pipeline
  76. * Fix low-level threading crash on ARM machines
  77. * More reliably and robustly handle failures opening OpenAL device
  78. * Textures were not being scaled to power-of-2 in some cases
  79. * Correct scaling of normal vectors with flatten operation
  80. * Correct positioning of viewing axis when showing lens frustum
  81. * Add dpi-window-resize option to auto-resize window on DPI change
  82. * Fix assertions when alpha-file-channel references unknown channel
  83. * Use OpenGL-style vertex colors by default on non-Windows systems
  84. * Default vertex column alignment is now 4 bytes
  85. * Add PNMImage premultiply/unpremultiply methods.
  86. * Fix incorrect parsing of numbers with exponents in Config.prc
  87. * Fix for reading URLs mounted via the virtual file system
  88. * Fix shader generator memory leaks and runtime performance
  89. * Fix shader generator scaling of binormals and tangents
  90. * Expose _NET_WM_PID to window managers in X11
  91. * Fix a range of bugs in tinydisplay renderer.
  92. * Don't error when setting lens far distance to infinity
  93. * Allow passing custom lens to saveCubeMap/saveSphereMap
  94. * Fix errors in saveCubeMap/saveSphereMap in threaded pipeline
  95. * Fix DynamicTextFont.makeCopy()
  96. * Make Texture memory size estimation more accurate
  97. * Fix various window resizing issues
  98. * Fix PandaSystem.getCompiler() value for clang (it reported gcc)
  99. * x2egg no longer replaces face normals with vertex normals
  100. * Include Eigen headers in Mac and Windows SDK
  101. * Added geomipterrain-incorrect-normals setting, default=true
  102. * DisplayInformation resolution list was missing on Windows
  103. * Upgrade FMOD and Bullet versions on Windows and Mac OS X
  104. * Various performance optimizations
  105. * Fixed various other bugs not listed here.
  106. Fixes and improvements for the runtime:
  107. * Fix splash screen freezing in the X11 web plug-in
  108. * pdeploy will now handle extracted files (eg. .ico and .cur)
  109. * Added more options for customizing splash screen
  110. * Fix missing xml and ast modules from morepy package
  111. * Certificate dialog is now localized to various languages
  112. * Fix packp3d error when Python file is not in a package
  113. * Pass on failing exit status from packaged application
  114. * Remove annoying ":Packager(warning): No such file" warning
  115. * Fix issue installing pdeploy-generated .pkg on OS X 10.11
  116. Fixes for the Python API:
  117. * Fix mysterious and rare crash in tp_traverse
  118. * Bullet step function accidentally defaulted to step size of 0
  119. * Fix overflow of file offsets (eg. when seeking in huge files)
  120. * Fix regression with memoryviews
  121. * Fix hasattr/getattr of vector classes for invalid attributes
  122. * Allow passing a long to methods accepting an int
  123. * Fix crash when passing None to Filename constructor
  124. * MouseWatcherGroup was erroneously not exposed in 1.9.0
  125. * ShowBase no longer unmounts VFS when shutting down
  126. * No longer requires setting PATH to import panda3d.*
  127. * DirectDialog default geom is once again respected
  128. * DirectDialog no longer overrides custom frameSize
  129. * Fix WebcamVideo/MicrophoneAudio.getOptions() methods
  130. Changes relating to the OpenGL renderer:
  131. * Various performance improvements
  132. * Fix point/line thickness setting
  133. * Improve GLSL error reporting
  134. * Fix Intel driver issues, particularly with geometry shaders
  135. * Add more error checking for parameter types
  136. * Integer shader inputs were not being converted to float properly
  137. * Fix crash passing an undersized array to a GLSL shader input
  138. * p3d_ColorScale et al may now be declared as vec3
  139. * Fix flickering when using trans_model_to_apiview in Cg
  140. * Support wireframe and point rendering modes in OpenGL ES
  141. * Fix issue with model disappearing in rare cases with GLSL
  142. * Fix ColorWriteAttrib not working as it should
  143. * Allow deactivating PStats collectors for GPU timers
  144. * Memory residency of graphics buffers now tracked by PStats
  145. * Allow changing OpenGL coordinate system with gl-coordinate-system
  146. Fixes for libRocket integration:
  147. * libRocket did not work on Mac OS X in 1.9.0
  148. * Fix inconsistent behavior with non-power-of-2 textures in rocket
  149. * Use model-path for finding libRocket assets
  150. * Add missing keys to libRocket keymap
  151. * libRocket elements showed up white in tinydisplay
  152. New features:
  153. * Add -L (lighting) and -P (graphics pipe) pview options
  154. * Add M_confined mouse mode that keeps cursor in window
  155. * Add sample program demonstrating mouse modes
  156. * bam2egg supports collision sphere and plane solids
  157. * p3d_TransformTable GLSL input backported from 1.10 branch
  158. * Add openal-device setting for selecting OpenAL audio output
  159. * Add limited modification timestamp tracking for Ramdisk mounts
  160. * Support for Autodesk Maya 2016
  161. ------------------------ RELEASE 1.9.0 ------------------------
  162. This is a major release with many exciting new features!
  163. Beware of bugs.
  164. The list below contains a subset of the changes introduced:
  165. * We now offer 64-bit Windows and Mac OS X builds.
  166. * Switch to MSVC 2010; no more assembly manifests.
  167. * Cocoa port for better Mac OS X support, esp. newer versions.
  168. * We now compile the Python modules into panda3d/*.pyd modules;
  169. no more imp.load_dynamic hackery needed.
  170. * Support for GPU profiling in OpenGL, see pstats-gpu-timing
  171. * sRGB framebuffers, see framebuffer-srgb
  172. * sRGB texture support, see Texture::F_srgb et al.
  173. * Integer vector support, including passing to shaders
  174. * Native .ogg vorbis and .wav loader (does not require ffmpeg)
  175. * FFmpeg support is a separate plug-in module now, libp3ffmpeg.
  176. * Sample programs are now part of the source code repository
  177. * Can be built with Python 3 (highly experimental)
  178. * Improvements to Windows installer
  179. * M_filled_wireframe rendering mode
  180. * Support specifying sampler state separate from textures
  181. * Support for bindless texture clearing
  182. * Texture LOD bias and min/max LOD settings
  183. * Framebuffer properties allows separate red/green/blue bits
  184. * Explicit float color and float depth specification in fbprops
  185. * Coverage samples settable via FrameBufferProperties
  186. * Stereo buffer implementation in OpenGL via FBOs
  187. * Support enumeration of pixel formats in WebcamVideo
  188. * Frame rate meter can be configured to show milliseconds
  189. * Changes to improve font crispness with default settings
  190. * Fix assertion error when using more than one GraphicsEngine
  191. * raw-w, raw-a, etc. keyboard events for layout-independent input
  192. * Allow querying active keyboard layout via win.get_keyboard_map()
  193. * Distinguish between lmeta and rmeta keys on Mac OS X
  194. * Floating-point image manipulation API, support float tiffs
  195. * Various new 16-bit and 32-bit and int texture formats
  196. * Man pages are now available for the majority of utilities
  197. Pipeline:
  198. * Fix bugs with <Collide> group transformations in .egg
  199. * Don't create unnecessary intermediate node when loading .egg
  200. * bam2egg supports materials, and correctly converts animations
  201. * dae2egg has some skeletal animation support
  202. * Support Maya versions up to 2015
  203. OpenGL renderer changes:
  204. * Error checking is now OFF by default for performance reasons,
  205. set gl-check-errors or gl-debug to true to enable.
  206. * GL 4.2 shader_image_load_store support (incl. multi-bind)
  207. * Layered render-to-texture (using geometry shaders)
  208. * Seamless cube maps (on by default), see gl-cube-map-seamless
  209. * Added gl-debug for improved debug output support
  210. * Added GL object labels when gl-debug is enabled
  211. * gl-dump-compiled-shaders can be used to dump program binaries
  212. * Direct3D-style NT_packed_dabc vertex arrays now directly supported
  213. * Native rendering of line strips, using primitive restart
  214. * Immutable texture storage support (disabled by default)
  215. * Bindless texture support (disabled by default)
  216. * Specular component is now computed separately in FFP
  217. Shader system:
  218. * Support for tessellation shaders
  219. * Support for compute shaders via ComputeNode
  220. * GLSL preprocessor with "#pragma include" support
  221. * Much better coverage of shader inputs in GLSL
  222. * GLSL error messages now show source filename
  223. * Fixes apiclip_of_x shader inputs
  224. * Matrices can be passed directly to setShaderInput
  225. * Support binding images to shaders
  226. * Viewport array support
  227. Optimizations and performance improvements:
  228. * Use of C++11 move semantics to reduce refcounting overhead
  229. * Build with Eigen by default for faster linear math
  230. * Dramatic overhead reduction of generated bindings
  231. * Streamline culling process
  232. * Tighter bounding volume generation
  233. * Take advantage of CPU features for bit operations
  234. * Circumvent bounding volume generation when not required
  235. * Optimizations for interned strings
  236. * Use of GCC atomics should improve 64-bit Linux performance
  237. API features:
  238. * Buffer protocol support for textures and arrays
  239. * Interrogate supports various C++11 features
  240. * Expose TextGlyph interfaces for making custom text renderers
  241. * Better handling of default arguments for many functions
  242. * Cyclic references can sometimes be tracked through tasks
  243. * ShowBase clean teardown possible
  244. * API documentation is more accurate
  245. * Improve interfaces for interop with other applications
  246. Deprecated features:
  247. * Use of pandac.PandaModules is discouraged; use panda3d.core
  248. * Deprecate DirectStart and global run() function; use ShowBase
  249. * Remove old decal system
  250. * Remove Direct3D 8 renderer
  251. * Remove M_light_vector tex gen mode and FFP-based bump mapping
  252. Bug fixes:
  253. * Various point rendering issues are fixed now
  254. * Fix pview issue with 1-frame and/or multiple animations
  255. * Fixes for multisampling in FBOs
  256. * Fix aspect ratio of frame rate meter
  257. * Support NaN and infinity values in Config.prc variables
  258. * Fixes for webcams on Linux that do not output Huffman tables
  259. * Better support for non-basic Cg shaders on non-NVIDIA cards
  260. * Many others
  261. ------------------------ RELEASE 1.8.1 ------------------------
  262. This is a bugfix release, fixing many issues in 1.8.0.
  263. However, there may still be some (minor) bugs.
  264. * Fix a host of issues related to GLSL shaders
  265. * Fix incorrect registry entry for Python in Windows installer
  266. * pdeploy generated binaries with wrong architecture on Linux
  267. * Fix runtime error in pdeploy when building for Windows
  268. * Support for Maya 2013
  269. * ARToolKit now also works on Mac OS X
  270. * WM_CLASS can be set using x-wm-class and x-wm-class-name
  271. * No longer crashes when Xrandr is not supported
  272. * Aux normals are now also normalized when no lights are applied
  273. * Fix hidden cursor when switching fullscreen on Mac OS X
  274. * PackageInstaller didn't add packages to system paths
  275. * Allow disabling custom cursor on Windows
  276. * Fix incorrect panning of 3D audio
  277. * Fix omission of textures of non-standard format in ShaderGenerator
  278. * Fix compile issue with newer gcc versions
  279. * Fix circular reference held by ActorNode
  280. * Window is now correctly centered on Windows
  281. * Fix confusion with depth range of Lens::project()
  282. * Now successfully compiles against recent SSL versions on Windows
  283. * Fix incorrect Cg TEXUNIT0 binding during the first frame
  284. * TextNode::set_text_scale now correctly scales spaces as well
  285. * Expose AudioLoadRequest to Python (for async audio loading)
  286. * Support for the libRocket debugger
  287. * Fix newline entry in libRocket
  288. ------------------------ RELEASE 1.8.0 ------------------------
  289. This is a major release, with several big new features. As such,
  290. it is likely to contain bugs.
  291. * True threading support now enabled in the default build
  292. * Pipelined rendering: app, cull, and draw can run in parallel, each
  293. in their own thread
  294. * Web plugin is more robust, and better supports Safari and Chrome
  295. * Plugin runs properly when the username contains non-ASCII characters on Windows
  296. * Added appRunner.p3dFilename and appRunner.p3dUrl to provide p3d
  297. location
  298. * Multifiles (and p3d files) now make a distinction between binary and
  299. text files
  300. * OccluderNode added for explicit occlusion culling
  301. * Ambient occlusion generation for terrain
  302. * Fixed bug where Windows installer wipes %PATH% when it's too long
  303. * Added fog support to the shader generator
  304. * Added normal_gloss texture mode
  305. * Added a custom color option to the cartoon filter
  306. * Support for texture arrays in shaders
  307. * Better shader support in pandadx9
  308. * Fix some issues with cube map buffers
  309. * Can be compiled to use double-precision floats throughout, instead
  310. of the default of single-precision floats. (Graphics drivers still
  311. use single-precision floats, of course.)
  312. * Can be compiled with the optional Eigen library to provide SSE2 support
  313. * Can be compiled with SpeedTree support
  314. * Can be compiled on MSVS2010, and/or Win64. (These builds not
  315. provided by default.)
  316. * Support for the Bullet physics engine
  317. * Support for the libRocket GUI library
  318. * Support for stereo/multiview textures
  319. * Substantial performance improvements to movie textures
  320. * TGA files with alpha channel now load correctly
  321. * New "Ramdisk" mount type available for the VFS
  322. * The VFS is now writable for ramdisk files and true on-disk files
  323. * pdeploy -i generates a custom icon for the installed game
  324. * wx and tk work better on OSX
  325. * Panda windows can be embedded within wxPython windows on all
  326. platforms (including OSX) with the new WxPandaWindow class
  327. * Added base.pixel2d for pixel-based 2-D coordinates
  328. * Python-based swizzling of Panda vectors, e.g. vec2.xyxy
  329. * Python programmers can now optionally use the original unmangled C++
  330. name for methods and classes, e.g. model.set_pos(LPoint3f(1, 2, 3)).
  331. * Command-line filename globbing now supported on Win32, e.g. egg-texture-cards *.png
  332. * DirectGui works with nonstandard coordinate-system in effect
  333. * Egg loader handles double-sided polygons a little differently by
  334. default now, for better render performance but more memory usage
  335. (use "egg-emulate-bface 0" to restore the old behavior if needed).
  336. ------------------------ RELEASE 1.7.2 ------------------------
  337. This release fixes several bugs that were found in 1.7.1.
  338. * Fix crash on GLX implementations that have no FBConfig support
  339. * Fix trouble with buffers on Mac OS X
  340. * Un-break shadow samplers in Cg shaders
  341. * Fixes for relative mouse mode on OSX
  342. * Pdeployed apps on Windows no longer show a console window
  343. * Fix relative file paths for license files in pdeploy
  344. * Ppatcher no longer writes out faulty checksums
  345. * Fix plugin failure to read from cache
  346. * Include missing X11 extension libs in runtime distribution
  347. * Fix disappearing windows with CEGUI's OpenGL renderer
  348. * Fixes for makepanda on FreeBSD
  349. * Fix LightRampAttrib crash
  350. * Fix bug with two-parameter Lens::set_fov
  351. ------------------------ RELEASE 1.7.1 ------------------------
  352. This release introduces several significant bugfixes,
  353. but also introduces various minor new features. Although
  354. it is a minor release, it may also introduce new bugs.
  355. * Many improvements and bugfixes to pdeploy
  356. * Vectors now support swizzle/write masks (e.g vec.xz)
  357. * Fixes for depth buffer instabilities on Windows
  358. * Better webcam support on Linux using Video4Linux
  359. * Custom cursor support in X11
  360. * Static functions that return a list are now properly wrapped
  361. * ODE objects now have getId() exposed to Python
  362. * NodePath.findMaterial now works properly
  363. * Remove unnecessary dependency on GLU
  364. * Arithmetic operators to PNMImage
  365. * Various OpenGL ES-related bugfixes
  366. * Support for EGL and OpenGL ES in makepanda
  367. * Fix a crash with the Maya converters
  368. * Include missing p3d tools on Windows
  369. * Include tinyxml as part of the source
  370. * Updates to PandAI
  371. * Compile issues with latest OpenSSL fixed
  372. * Fix static-init ordering issues with OpenSSL
  373. * Several other bugfixes and features not listed here
  374. ------------------------ RELEASE 1.7.0 ------------------------
  375. This major release introduces tons of cool new features. As it
  376. is highly experimental, it is not recommended for production use.
  377. * Support for running Panda3D apps in a browser via web plugin
  378. * Fully automatic shadow mapping
  379. * Easy to use distribution and packaging framework
  380. * Integrated support for NVIDIA PhysX
  381. * Support for GLSL shaders
  382. * Geometry shaders, both in Cg and GLSL
  383. * Improved Cg support
  384. * Hardware geometry instancing support
  385. * Runtime fullscreen toggle
  386. * Unix/X11 resolution querying/switching support
  387. * Experimental Unix/X11 support for relative mouse mode (via xf86dga)
  388. * New, cleaner import conventions, replacing PandaModules
  389. * Parallax mapping
  390. * Support for OpenGL ES 1 and 2
  391. * Experimental Screen Space Ambient Occlusion
  392. * New collision solid: box
  393. * Working FreeBSD support
  394. * Blur / Sharpen postprocessing filter
  395. * Many improvements to the Shader Generator
  396. * Fixes and improvements to DistributedObject network system
  397. * New AI libraries
  398. * Added MeshDrawer2D
  399. * Most Panda objects now work with the pickle/cPickle and copy modules.
  400. * Windows build now compiled for Python 2.6
  401. * Tons of new features and bugfixes
  402. ------------------------ RELEASE 1.6.2 ------------------------
  403. This is mainly a bugfix release. Also fixes some bugs that
  404. were accidentally introduced in 1.6.1.
  405. * Fixed a static-init issue in ptloader on Windows
  406. * Fixed texture scaling issue when using buffers
  407. * x2egg is no longer broken
  408. * Threading in OSX build fixed
  409. * Fixed issue with flickering colors in Shader Generator
  410. * Eggcacher now uses less RAM
  411. * Missing 'models' dirs in packpanda games fixed
  412. * Eggcacher step in Panda3D installer is now optional
  413. * Fixes broken shortcut links in Start Menu on Windows
  414. * Shader Generator now supports clip planes
  415. * Bug with combine modes in Shader Generator fixed
  416. * Fixed bug with Texture::make_copy()
  417. * Bug with Actor LOD fixed
  418. * Fixed bug with missing geometry in Collada converter
  419. * OdeUtil.collide instability fixed
  420. * OdeBody setData/getData methods exposed to Python
  421. ------------------------ RELEASE 1.6.1 ------------------------
  422. This release fixes some bugs found in 1.6.0, and adds some
  423. minor features as well.
  424. * Threading layer is now enabled by default
  425. * cTrav.showCollisions fixed
  426. * Fixed broken MovieTexture
  427. * OpenAL is now stable on Linux, too
  428. * OpenAL now supports dynamic playrate changing
  429. * MayaPandaTool now handles NURBS correctly
  430. * Fixed particle panel and directtools bugs
  431. * Fix crash with collada exporter on Windows
  432. * ARToolkit jittering fixed
  433. * Now possible to override shader vertex/fragment profiles
  434. * Maya exporter fixed on OSX
  435. * Fixed depth texture crash for padded textures
  436. * Fixed bug that made OdeUtil.collide return empty geoms
  437. * Fixed crash with render.flattenStrong() when using trackball
  438. * Several improvements to the ODE layer
  439. * Performance improvements to GeoMipTerrain
  440. * GeoMipTerrain.setBorderStitching to fix seams between terrains
  441. * installpanda.py for installing Panda on Linux without deb/rpm
  442. * Several other minor bugfixes
  443. ------------------------ RELEASE 1.6.0 ------------------------
  444. This release introduces several major new features and
  445. significant bugfixes. It is likely to be buggy, like most
  446. x.x.0 releases.
  447. * Lightweight threading framework without runtime overhead
  448. * Makepanda now fully supports OSX
  449. * DDS textures are now supported
  450. * COLLADA->egg converter added
  451. * New C++-based Task system, which includes async threading support
  452. * Support for asynchronous on-demand loading of textures and/or animations
  453. * New software-based renderer "tinydisplay"
  454. * More pythonic features: iterable methods, implicit parameter casting
  455. * Packpanda now also supports Linux
  456. * Added libsquish support for DXT compression
  457. * New MeshDrawer class for realtime mesh manipulation
  458. * Infamous FBO bug fixed
  459. * Preliminary support for Volumetric Lighting
  460. * Shader k-parameters can now contain underscores
  461. * Fixed OpenCVTexture and ARToolKit on Linux
  462. * GeoMipTerrain now supports multi-channel heightmaps
  463. * GeoMipTerrain features new near/far LOD system
  464. * GeoMipTerrain performance improved
  465. * CallbackNode added to support low-level drawing callbacks from Python
  466. * Fixed some minor but annoying OpenAL/FFMpeg issues
  467. * Fixed bug with lcontrol and rcontrol on Linux
  468. * Fixed bug regarding icon filenames
  469. * Multisampling fixed on Linux and OSX
  470. * Left and right scrolling events now available
  471. * Several improvements to API reference
  472. * ShaderGenerator now supports several more blend modes and color scale
  473. * .x converter now supports AnimTicksPerSecond
  474. * vfs-mount-url can load models directly off the web
  475. * Smoother transitions in FadeLodNode
  476. * Dynamically-generated outline on fonts: loader.loadFont(outlineWidth = xxx)
  477. * Texture.getRamImageAs()
  478. * base.toggleTexMem()
  479. * Text generation performance optimization
  480. * Various performance optimizations
  481. * Several more minor bugs fixed
  482. ------------------------ RELEASE 1.5.4 ------------------------
  483. This is a bugfix release, fixing the problems found in 1.5.3.
  484. * Fixes packpanda crash
  485. * Linux build accidentally got configured for OpenAL
  486. * EggTexture now writes wrap modes and types correctly.
  487. * Fixes an occasional crash in TextureAttrib
  488. * DirectEntry no longer crashes when moving cursor in a full box
  489. * Several bugs in RigidBodyCombiner fixed
  490. * Normals generated by GeoMipTerrain are now correct
  491. * Bugs fixed in DirectGrid
  492. * Linux users can now use WindowProperties.setParentWindow
  493. * Fmod now compiles on 64-bits
  494. * Fixed several bugs in the API reference generator
  495. * EggNurbsSurface is now exposed to Python
  496. * Fixes a bug in PGButton
  497. * GeoMipTerrain set_heightfield fixed
  498. * Several bugs in the Max exporter:
  499. - Now generates binormals and tangents
  500. - Pview output fixed
  501. - Overwrite confirmation fixed
  502. - Export type 'Both' now works correctly
  503. * Several other bugs not listed above.
  504. ------------------------ RELEASE 1.5.3 ------------------------
  505. This release fixes most of the remaining bugs, but it adds
  506. some new features as well.
  507. * License changed to BSD
  508. * Fixes x-file parser for real, this time.
  509. * Fixes serious bug in shader generator
  510. * Adds MSVCR71 and MSVCP71 back to the distro (for python)
  511. * Fixed a bug in GeoMipTerrain
  512. * Adds support for .egg.pz to packpanda --bam
  513. * Turns on libpandaode support
  514. * Mayapandatool fixed
  515. * Added support for 3dsmax 2009
  516. * Max exporter overhauled
  517. * Improved support for 64-bits, gcc 4.3 and OSX
  518. ------------------------ RELEASE 1.5.2 ------------------------
  519. This fixes just one serious bug: release 1.5.1 accidentally
  520. reversed the TextureStage sort order.
  521. ------------------------ RELEASE 1.5.1 ------------------------
  522. Mostly a bugfix release, but adds some minor features too.
  523. - The x-file parser now is back to being case-insensitive, as it should be.
  524. - Panda plugins now use an explicit plugin-path.
  525. - Better DLL-hell protection under windows.
  526. - Added GeoMipTerrain (but no docs yet)
  527. - Using python -E in the start menu - really, this time.
  528. - Linmath classes now initialized when using python.
  529. - ConfigVariableSearch
  530. - Implicit sort order for texture attribs.
  531. - OpenAL audio manager now gives control over streaming vs preloaded sounds.
  532. - Preliminary support for 64-bit linux (but thirdparty libs missing).
  533. - Fixes a dozen or so assorted bugs.
  534. ------------------------ RELEASE 1.5.0 ------------------------
  535. * Shader Generator means advanced rendering without
  536. having to manually write shaders. Includes:
  537. - Per-Pixel Lighting
  538. - Normal Maps
  539. - Gloss Maps
  540. - Glow (Self-Illumination) Maps
  541. - HDR tone mapping
  542. - Cartoon shading
  543. * Class 'CommonFilters' makes it easy to do image postprocessing:
  544. - Bloom Filter
  545. - Cartoon Inking
  546. - More coming soon.
  547. * Maya exporter now supports normal maps, gloss maps, glow maps.
  548. * Now compiled for Python 2.5
  549. * Adds support for Maya 2008 export.
  550. * Lots of small tweaks, bugfixes, performance improvements, etc.
  551. ------------------------ RELEASE 1.4.2 ------------------------
  552. * Added code for mouse-trail logging.
  553. * Fixed a minor bug in the new OpenAL code.
  554. * The installer now uses less memory.
  555. * Now easier to compile with recent versions of SSL.
  556. * Minor bugfix in exposeJoint
  557. * Added config variable: basic-shaders-only
  558. * graphicsEngine.removeWindow() and graphicsOutput.setOneShot() fixed.
  559. * Roaming ralph sample now uses collision detection correctly.
  560. ------------------------ RELEASE 1.4.1 ------------------------
  561. This release:
  562. * fixes a couple of small bugs
  563. * adds support for the new OpenAL/FFMpeg unified sound/video system.
  564. * renames the sample programs in a more sensible way
  565. ------------------------ RELEASE 1.4.0 ------------------------
  566. This release incorporates lots of small, incremental
  567. improvements.
  568. * Model-cache enabled by default in prepackaged release.
  569. * Now compiling with visual studio 2005.
  570. * Plugin installation now slightly harder --- see instructions in plugins dir.
  571. * Improved OSX support: mouselook, fmod fixes, icon filename.
  572. * Better memory usage tracking from pstats.
  573. * Removed dependencies on NSPR.
  574. * New default-model-extension prc variable (instead of old implicit-extension behavior)
  575. * New arc emitter in particle system.
  576. * Multiple different Actors can be flattened into one node.
  577. * Texture compression in DX8, DX9.
  578. * New features to support low-memory platforms.
  579. * ParametricCurveDrawer etc. officially deprecated in favor of RopeNode.
  580. * DynamicTextFont::RenderMode allows generating geometric fonts (instead of always using texture-based fonts).
  581. * Some integrated support for ODE (not yet polished and ready)
  582. * New RigidBodyCombiner unifies independently moving bodies into a single Geom as a rendering optimization.
  583. * Support for depth-stencil textures.
  584. * Better support for fullscreen mode on Linux.
  585. * Panda GL/DX windows can be subordinate to other windows (Win32 only).
  586. * Better multithreaded protection.
  587. * Interrogate correctly handles "const" vs. non-const objects.
  588. * PlaneNode::set_clip_effect allows user-defined cull planes (in addition to clip planes).
  589. * Several low-level rendering optimizations.
  590. * Simple occlusion culling with PipeOcclusionCullTraverser.
  591. * Optional bounding boxes (instead of spheres): "bounds-type box", "bounds-type best"
  592. * Addition of eggcacher utility to preload model-cache.
  593. * In source tree, added 'skel' directory to make it easier for newcomers to extend panda.
  594. * The obsolete config variable framebuffer-mode has been removed.
  595. I have no doubt that there will be a few significant bugs in this release, like all X.X.0 releases. - Josh
  596. ------------------------ RELEASE 1.3.2 ------------------------
  597. Bugfix release. This fixes a few problems in 1.3.1
  598. * Sound system won't initialize properly under linux: Fixed.
  599. * Panda DLL names now all start with "libp3" or "libpanda"
  600. * Normals reversed in heightfield tesselator: fixed.
  601. ------------------------ RELEASE 1.3.1 ------------------------
  602. Bugfix release. This fixes a few problems in 1.3.0
  603. * Sound system won't initialize properly under linux: Fixed.(Update: Not fixed)
  604. * Panda not compatible with SElinux: mostly fixed, except fmod.
  605. * Max exporter and importer broken: Fixed.
  606. * Minor problem involving gsg handling in showbase: Fixed.
  607. ------------------------ RELEASE 1.3.0 ------------------------
  608. This release contains several new features, and as such, it might be
  609. buggy. However, we've been testing it internally for a couple weeks,
  610. and it seems to be okay. It contains the following new features:
  611. * Stencil buffers and stencil operations now supported.
  612. * Sound API now supports DSP and better support for large MP3s.
  613. * Video uses FFMPEG instead of DirectShow - no more codec issues.
  614. * Heightfield terrain.
  615. * Support for intra-frame animation interpolation.
  616. * Use of 'import *' now only imports correct symbols.
  617. * Various minor improvements to the particle system.
  618. * Scene editor at least partially operational (alpha level)
  619. * Removed most of the 65,536 vertex-per-mesh limits.
  620. * Various low-level optimizations.
  621. * Support for threaded model loads (only in CVS, not in distro).
  622. * Support for 'model-cache-dir', which caches a BAM each time you load an EGG.
  623. * OnscreenText/DirectLabel can contain embedded 3D models inside the text.
  624. ------------------------ RELEASE 1.2.3 ------------------------
  625. The last release was a disaster:
  626. * I failed to fix packpanda.
  627. * I broke the tcl/tk stuff.
  628. * I added ppythonw, and it wasn't reliable.
  629. So basically, this release fixes packpanda and tcl/tk. It doesn't
  630. fix ppythonw yet (I don't know what's wrong), but it does disable
  631. it temporarily. It keeps the few things from 1.2.2 that were worth
  632. keeping.
  633. ------------------------ RELEASE 1.2.2 ------------------------
  634. This is a minor bugfix release.
  635. * Adds 'ppythonw', a version of ppython that doesn't
  636. open a console window.
  637. * If you have a bad fmod DLL in your windows folder,
  638. this version compensates.
  639. * Fixes a small bug in the VRML-to-egg converter.
  640. * Small stylistic improvements in some sample programs.
  641. ------------------------ RELEASE 1.2.1 ------------------------
  642. This release is likely to be much more stable than its predecessors.
  643. It contains many new features:
  644. * lots of performance optimizations
  645. * a preliminary OSX port
  646. * new modes for animation blending
  647. * easier partial-body animations
  648. * more powerful shader-to-engine interface
  649. * better support for rotating bodies in physics engine
  650. * support for compressed model files
  651. * multiple render targets (ie, glDrawBuffers)
  652. * support for stereo rendering
  653. * more complete API reference manual
  654. * ability to control mipmaps explicitly
  655. * better tools for debugging offscreen buffers
  656. * new sample programs
  657. * a number of packpanda repairs
  658. ------------------------ RELEASE 1.1.0 ------------------------
  659. This is a BETA release. It's pretty reliable, but there are still a
  660. few quirks here and there. Over the summer, Panda3D was overhauled
  661. top to bottom. The new code is dramatically improved, but it needs a
  662. little bit of testing. The new features are:
  663. * Much faster rendering of high-poly models.
  664. * Dramatically improved vertex and pixel shader support.
  665. * New demo programs using shaders and render-to-texture.
  666. * Play movies by using an AVI as a texture (windows only).
  667. * Python scripting uses much faster python to C++ interface.
  668. * Support for procedurally-created geometry (eg, fractals, etc).
  669. * Cleaner, simpler internal data structures.
  670. * Comes with Python 2.4 support built-in.
  671. * A lot more.
  672. The new demo programs are:
  673. * Render to Texture Demo
  674. * Cartoon Shader Demo
  675. * Motion Trails Demo
  676. * Procedural Geometry (Fractals) Demo
  677. * Normal Mapping Demo
  678. However, a caution: this is a BETA release: reasonably stable, but
  679. not quite perfect. Please send us your bug reports.
  680. ------------------------ RELEASE 1.0.5 ------------------------
  681. UPDATE: this release broke support for visual studio. Use
  682. panda3d 1.0.4 if you wish to compile panda from scratch using
  683. visual studio.
  684. This release consists mainly of compatibility improvements.
  685. * Now compiles under MS Visual Toolkit (makefile changes)
  686. * Now compiles under Mandrake 10.1 (a fix in the makefile)
  687. * Now compiles under Debian Sarge (a fix in the VRML lexer)
  688. * Now compiles under Ubuntu HH (same as DEBIAN SARGE)
  689. * Add code for building debian 'deb' archives.
  690. * Fix scene editor and particle panel so they work on linux.
  691. * Add support for --no-python to makepanda.
  692. * Tidied up makepanda a bit.
  693. ------------------------ RELEASE 1.0.4 ------------------------
  694. * This version includes the new Max exporter and the new Maya
  695. export panel.
  696. * We have added the --genman option to makepanda (to
  697. regenerate the API reference manual). This uses the epydoc
  698. documentation-generation system.
  699. * Several bugs in the new tutorials have been repaired.
  700. * A bug in fmod positional audio has been fixed.
  701. * Makepanda now puts the maya and max plugins in a
  702. separate 'plugins' directory, for convenience.
  703. * The 'libpandaegg' library has been exported to python.
  704. ------------------------ RELEASE 1.0.3 ------------------------
  705. * The binary release contains a brand new collection of
  706. sample programs. The new sample programs are much better.
  707. * If you install the windows binary release, the
  708. sample programs can now be run from the start menu.
  709. * Lighting under DirectX was broken. This has been repaired.
  710. * The binary release has been compiled with support for pstats.
  711. (Previously, it was compiled with pstats disabled).
  712. * Various changes to make panda3d more compatible with
  713. the 'epydoc' documentation-generation system.
  714. ------------------------ RELEASE 1.0.2 ------------------------
  715. This is a bugfix release.
  716. * makepanda contained a bug: it was compiling maya2egg6
  717. against the Maya 5.0 libraries, making it largely useless.
  718. This is fixed.
  719. * Maya2egg65 has been added, for Maya 6.5 users.
  720. * The configuration combo "want-tk=false, want-directtools=true"
  721. used to confuse panda, because directtools uses Tk. Now
  722. it's smart enough to do the right thing.
  723. * When you ask controlJoint to create a control node for
  724. you, it initializes the control node to the joint's initial
  725. position.
  726. * The scene editor supposedly works now. We'll see.
  727. * The models directory was missing the animation 'panda-walk4',
  728. which is necessary for the tutorial.
  729. * A new directory 'win-extras' has been added to the
  730. thirdparty tree. This contains some miscellaneous python
  731. libraries needed at the Entertainment Technology Center.
  732. The script that builds the windows installer will include
  733. these libraries in the distribution.
  734. ------------------------ RELEASE 1.0.1 ------------------------
  735. This is a bugfix release.
  736. * In the previous binary release, Config.prc did not contain a
  737. load-display line. This confuses pview. Pview is being fixed,
  738. but until then, the load-display line has been restored.
  739. * The Max and Maya plugins were inadvertently omitted from the
  740. previous binary release. This has been corrected.
  741. * An error in the distributed object networking layer has
  742. been fixed. The error only affected those who were trying to
  743. write LAN games using the CMU LAN server and p2p messages.
  744. * An error in the physics code has been corrected.
  745. * Python Megawidgets (pmw), which is required for "directtools",
  746. was not supplied in the previous release. We are now including
  747. pmw. In the Linux RPMs, to avoid overwriting any
  748. distribution-supplied pmw package, we put this package
  749. into /usr/share/panda3d.
  750. * To be consistent, we moved all the other python code into
  751. /usr/share/panda3d as well. This requires a file 'panda.pth'
  752. in the python lib directory.
  753. * In the binary RPMs, the file permissions of the python
  754. source files have been changed to 555, so that even if root
  755. runs panda, the '.pyc' files will not be modified or regenerated.
  756. ------------------------ RELEASE 1.0.0 ------------------------
  757. Configuration, installation, and execution environments:
  758. * This is the introduction of the new Panda version numbering
  759. system. The Panda version will be represented with three
  760. dot-separated numbers. The first number, the major version, will
  761. change only very rarely. The second number, the minor version,
  762. will increment frequently, with each new feature release. The
  763. third number will increment as needed to indicate bugfix releases
  764. on the minor version.
  765. * Use PandaSystem::get_version_string() (or
  766. PandaSystem.getVersionString() in Python) to return the version
  767. number of the currently-running Panda.
  768. * New runtime config system allows for dynamic loading of prc files
  769. and supports querying of available variable names. Use
  770. ConfigVariableString, ConfigVariableBool, etc. to get a value from
  771. the prc file(s); use the ConfigVariableManager and
  772. ConfigPageManager classes (or the cvMgr and cpMgr global objects
  773. in Python) to make general queries.
  774. * The ppremake build system now properly detects intra-tree
  775. dependencies, but only if each tree is fully built and installed
  776. before ppremake is run within the next dependent tree. Requires
  777. using ppremake version 1.18 or higher.
  778. Miscellaneous:
  779. * New support for encrypted streams, including encrypted subfiles
  780. within a multifile, using the OpenSSL encryption library. Adds
  781. pencrypt and pdecrypt programs.
  782. * The default port for PStats is now 5185, to avoid a conflict with
  783. Instant Messenger.
  784. * New "smooth" checkbox on PStats graphs provides a better sense of
  785. overall trends when graphs are noisy.
  786. * The meaning of the three components of HPR angles has been
  787. officially changed, in particular the meaning of the R component.
  788. This change was introduced to make the three components more
  789. consistent with each other, and to make P and R work together in a
  790. more sensible way. Existing code which used hard-coded HPR angles
  791. may be invalidated by this change. To convert existing code, you
  792. should use the global function old_to_new_hpr() to determine what
  793. new HPR triple that corresponds to an old HPR triple. As a
  794. temporary stopgap, you may define temp-hpr-fix 0 in your prc file.
  795. * Add support for weak reference counts using the WeakPointerTo
  796. class.
  797. * Add optional support for STL's semistandard hashing containers,
  798. e.g. hash_map and hash_set.
  799. * Panda no longer requires any registry keys or environment
  800. variables. This means it is now possible to run panda directly
  801. from a CD, install multiple copies of panda on a single machine,
  802. or install panda by copying the tree from another computer.
  803. Note that the installer does add the panda 'bin' directory to
  804. your PATH, and it does store an uninstall key in the registry,
  805. but neither of these is needed for panda to function.
  806. * The 'makepanda' build system is now capable of building
  807. prepackaged games for Windows. These prepackaged games are simply
  808. copies of panda with the game code included, some of the
  809. unnecessary stuff stripped out, and some changes to the start
  810. menu. See "Airblade - Installer" on the panda downloads page
  811. for an example.
  812. * This is the first release to include not just a binary installer
  813. for windows, but also binary RPMs for fedora 2, fedora 3, and
  814. redhat 9.
  815. * All of the sample programs have been tested. The ones that didn't
  816. work have been removed, the ones that do work have been (lightly)
  817. documented.
  818. * In the Win32 binary release, the 'config.prc' file has been moved
  819. to the 'etc' directory. This is to make it consistent with the
  820. Linux version.
  821. Rendering system:
  822. * Multitexture support is now part of Panda. This introduces the
  823. TextureStage and TexCoordName classes, as well as new interfaces
  824. like NodePath::add_texture(). As of the present release,
  825. multitexture is only supported when using the OpenGL renderer.
  826. * Support for programmable shaders is now possible using the Cg
  827. shader language. Assign a CgShaderAttrib to a node to apply a
  828. programmable shader.
  829. * New support for the Helix library allows playing of a streaming
  830. movie in a Panda texture. Presently only supported on Windows.
  831. * Deprecated the old "win-origin-x" and "win-origin-y" prc variables
  832. in favor of "win-origin", which takes two numbers separated by a
  833. space. Similarly with "win-width" and "win-height", in favor of
  834. "win-size".
  835. * Deprecated the old Camera::set_scene() interface; now a Camera
  836. implicitly renders whatever scene graph it is parented to.
  837. * Removed the old GraphicsLayer and GraphicsChannel classes.
  838. Instead of using these interfaces, you can now create any number
  839. of DisplayRegions directly on the window.
  840. * Offscreen render-to-a-texture will now be properly oriented under
  841. DirectX (previously, it would render the texture image upside-down
  842. and backward).
  843. * Support for automatic keystone correction caused by an off-axis
  844. physical projector using Lens::set_keystone().
  845. * New framebuffer-mode prc variable allows explicit control over the
  846. default framebuffer properties requested by Panda, including
  847. whether software or hardware rendering is required.
  848. * Added "multisample" transparency mode (alpha keyword "ms" in an
  849. egg file), which allows good-quality transparency (especially for
  850. alpha cutouts) without requiring back-to-front sorting, and
  851. without artifacts from improper sorting. This does require
  852. special multisample hardware capabilities, however. Presently
  853. supported in OpenGL mode only. Automatic fallback to "binary"
  854. transparency mode if multisample is not supported on a given
  855. platform.
  856. * New cursor-filename and icon-filename config variables replace the
  857. old win32-mono-cursor and win32-window-icon variables. Also,
  858. runtime control over these properties is now provided by the
  859. WindowProperties class.
  860. * Better management of potential memory leaks due to cyclic
  861. reference counts in the RenderState and TransformState caches.
  862. Now cycles are automatically detected and broken.
  863. Scene graph:
  864. * GeomNodes now have a CollideMask, just like CollisionNodes, which
  865. deprecates the old set_collide_geom() interface to detect
  866. collisions with visible geometry. There is a new NodePath
  867. interface for querying and setting the collide masks for single
  868. nodes or for entire subgraphs.
  869. * New NodePath interfaces to control lighting eliminate the need to
  870. create an explicit LightAttrib. The new lighting interfaces are
  871. designed to be similar to the new multitexture interfaces.
  872. * New NodePath interfaces to control the texture matrix, including a
  873. new project_texture() method to enable hardware-assisted
  874. projective texturing.
  875. * New NodePath::flatten_multitex() interface to bake in certain
  876. kinds of multitexture effects into a single texture, generated
  877. on-the-fly.
  878. * New options for ColorBlendAttrib and RenderModeAttrib.
  879. * NodePath::set_transparancy() now accepts a
  880. TransparencyAttrib::Mode parameter to specify exactly what kind of
  881. transparency you'd like.
  882. * New NodePath::set_render_mode() interface accepts a
  883. RenderModeAttrib::Mode parameter, deprecating
  884. set_render_mode_filled() and set_render_mode_wireframe().
  885. * LerpQuatInterval can be used as a drop-in replacement for
  886. LerpHprInterval; it performs spherical lerps in quaternion space,
  887. rather than lerping each component of a HPR individually.
  888. LerpHprInterval is not deprecated; it remains useful within its
  889. limitations.
  890. * New DirectSliderBar gui object implements a standard slider bar
  891. with a thumb (like a window scroll bar).
  892. * Lighting normals are now automatically counterscaled properly when
  893. lighting is enabled in the presence of a scale, uniform or
  894. nonuniform, in the scene graph. You can also use
  895. RescaleNormalAttrib for explicit control over this behavior.
  896. * Improvements to RopeNode for rendering splines in various
  897. representations.
  898. Collisions and physics systems:
  899. * New CollisionSegment and CollisionInvSphere collision solids.
  900. * The collision system now reports normals for intersections
  901. detected from collision rays, segments, and lines.
  902. * Several improvements to the physics system.
  903. Model converters:
  904. * x2egg and egg2x added to converters, as well as to inline
  905. conversion supported via ptloader. This adds support for
  906. DirectX's native so-called "retained-mode" file format. This file
  907. format supports animation and joint hierarchies as well as basic
  908. polygonal models.
  909. * vrml2egg added to converters, as well as to inline conversion
  910. supported via ptloader. This adds support for VRML 2.0 model
  911. files only.
  912. * Added -noabs option to many model converters, to help detect
  913. problems with unintended absolute path references.
  914. * Added egg2bam -flatten and -combine-geoms.
  915. * We now have working exporters for Max5, Max6, Max7, Maya5, Maya6.
  916. (Update: these were accidentally omitted from the binary release)
  917. * The Max exporter is dramatically improved: it now includes support
  918. for character studio, and the polygon winding bug has been fixed.
  919. ------------------------ RELEASE 2004-07-27 ------------------------
  920. Configuration, installation, and execution environments:
  921. * We have moved to a new, more explicit naming convention for our
  922. import statements. Rather than installing all Python files into
  923. one big flat namespace, we now import them from their appropriate
  924. directories, e.g. "from direct.actor import Actor".
  925. * "from ShowBaseGlobal import *" is replaced with "import
  926. direct.directbase.DirectStart" and/or "from pandac.PandaModules
  927. import *".
  928. * The old "generatePythonCode" script has been replaced with a new
  929. "genPyCode" script that automates the Python wrapper generation
  930. process without requiring any special parameters.
  931. * The old dependencies on environment variables have been removed.
  932. There are no longer requirements for any environment variables to
  933. be set in either the build process or the runtime environment
  934. (although a few optional environment variables remain to allow
  935. custom configuration).
  936. * INSTALL document greatly enhanced for clarity.
  937. * An automatic build script is now provided to further simplify
  938. building Panda3D for Unix and Cygwin users.
  939. * The old "Configrc" filename to identify runtime configuration
  940. files is deprecated; configuration files should now be named
  941. Config.prc, or in general, *.prc. The system-default
  942. configuration files are auto-generated as 20_panda.prc,
  943. 30_pandatool.prc, and 40_direct.prc (the numeric prefixes control
  944. the order in which these are loaded at runtime).
  945. Rendering system:
  946. * Some deprecated methods of CollisionEntry have been flagged to
  947. raise an exception now; these are replaced with the newer
  948. interfaces that can return a collision point in an arbitrary
  949. coordinate system.
  950. * Camera::set_cull_center() can be used for debugging culling by
  951. setting the effective point of visibility culling different from
  952. the actual point. From Python, use base.oobeCull() to examine
  953. this effect.
  954. * Alt-Enter in pview toggles between fullscreen and windowed modes.
  955. * Added experimental support for GL display lists.
  956. Scene graph:
  957. * Exposed methods to directly retrieve and set the individual
  958. vertices of a GeomNode from Python code.
  959. * The new PortalNode defines the interface for Panda's new
  960. cell-portal visibility system; each PortalNode is a window into
  961. another zone, or a separate subgraph; the PortalNode can hide or
  962. show the subset of its zone's geometry visible through its
  963. "portal".
  964. * The new PolylightNode applies a simple lighting-like effect
  965. without actually using lighting; objects will brighten or darken
  966. as a whole according to their proximity to the light. Use
  967. PolylightEffect to enable this effect.
  968. * The new FadeLODNode works like ordinary LODNode, but the switches
  969. are alpha-blended in over a short period of time rather than
  970. popping immediately.
  971. Text display:
  972. * Text now supports embedded mode changes--special characters to
  973. switch fonts, colors, scale, etc. within a line or within a
  974. paragraph.
  975. * Windows IME is better supported by Panda/Direct widgets
  976. (e.g. PGEntry and/or DirectEntry) in fullscreen mode as well as in
  977. windowed mode.
  978. Model converters:
  979. * dxf2egg and egg2dxf added to converters, as well as to inline
  980. conversion supported via ptloader.
  981. ------------------------ RELEASE 2004-03-29 ------------------------
  982. Miscellaneous:
  983. * We once again support the Microsoft VC6 compiler.
  984. * The "pstats" program is now provided in the Windows environment as
  985. part of pandatool. It is similar to "gtk-stats" on a Unix
  986. environment, and can be used to view a real-time graph of
  987. performance timing in a running Panda process. See
  988. panda/src/doc/howto.use_pstats.
  989. * New session recording and playback support allows capturing user
  990. and network input to a disk file, for replaying later, offline.
  991. Use "record-session filename.boo" and "playback-session
  992. filename.boo" in your Configrc file.
  993. * The genPyCode script now uses PythonWare's SqueezeTool to
  994. "squeeze" the large number of generated .py files into a single
  995. shared library, for substantially improved startup times on
  996. Windows.
  997. * The Task system now has substantially reduced overhead when many
  998. doLater's are waiting in the system.
  999. * The png image file type is now supported.
  1000. Rendering system:
  1001. * Introducing native DirectX9 graphics support, although we do not
  1002. yet support any features specific to DirectX9, such as
  1003. programmable shaders.
  1004. * DirectX7 and DirectX8 modules are now somewhat more robust.
  1005. * New support for offscreen rendering and render-to-a-texture, which
  1006. will become part of a general multipass-rendering interface.
  1007. Presently supported in OpenGL, with limited DirectX support. Use
  1008. GraphicsWindow::make_texture_buffer() to make a buffer you can
  1009. render into and apply the result as a texture map to objects in
  1010. your scene. The NonlinearImager in the distort directory is a
  1011. complex example of using this interface.
  1012. * Explicit support for the Mesa 3D library's software-based
  1013. offscreen rendering, allowing a Panda program to generate
  1014. offscreen images as a background process, independently of any
  1015. graphics card or desktop environment.
  1016. * GraphicsLayer and GraphicsWindow render order can now be easily
  1017. adjusted dynamically with set_sort() methods.
  1018. * Built-in frame rate meter can be activated by setting
  1019. "show-frame-rate-meter 1" in your Configrc file.
  1020. Scene graph:
  1021. * New tag system on PandaNodes allows storing of arbitrary string
  1022. data on nodes, keyed by a string dictionary. The
  1023. NodePath::get_net_tag() interface retrieves the data value for a
  1024. particular tag on a node or the nearest ancestor of the node.
  1025. NodePath::find() can search for a node in the scene graph with a
  1026. given tag or tag/value pair.
  1027. * Explicit shear transforms are now supported on nodes, as well as
  1028. in character animation tables.
  1029. * Characters now have an interface to control joint and slider
  1030. values dynamically, instead of strictly from an animation file.
  1031. Use Actor.exposeJoint() and/or Actor.controlJoint().
  1032. * Nurbs surfaces and curves can now be rendered directly by Panda,
  1033. which will tesselate them on the fly at some CPU cost. This is a
  1034. modeling convenience only; it is not intended to be used for
  1035. production code. Triangle strips are still the fastest way to
  1036. render complex surfaces.
  1037. * However, Rope.py is now provided as a high-level wrapper around
  1038. Panda's runtime NURBS curve evaluator; it can render dynamic
  1039. curves in a variety of ways.
  1040. * The egg library is now published to Python, allowing construction
  1041. of geometry on-the-fly by show code for convenience. This is also
  1042. intended as a developer's convenience more than a production
  1043. feature.
  1044. Text display:
  1045. * The special character \3 (ASCII 0x03) embedded in a text string
  1046. indicates the position of a soft hyphen when wordwrap mode is in
  1047. effect. The character \4 (ASCII 0x04) serves as a hyphenless
  1048. invisible break point.
  1049. * A default font is compiled in even if the FreeType library is not
  1050. available.
  1051. * pnmtext library added for rendering text directly into an image.
  1052. * New egg-mkfont utility uses FreeType to generate static font
  1053. models that Panda clients without FreeType can use to render text.
  1054. Collision and physics system:
  1055. * More robust collision interface, supporting NodePaths properly so
  1056. that collisions detected into (and from) particular instances of
  1057. nodes can be differentiated. CollisionEntry has a much simpler
  1058. mechanism for getting the intersection point and normal in an
  1059. arbitrary coordinate space defined by a NodePath, instead of the
  1060. user having to convert the coordinate space by hand.
  1061. * New CollisionVisualizer object to visually show collisions as they
  1062. are tested and detected, useful for optimizing collision
  1063. performance. Activate this with
  1064. base.cTrav.showCollisions(render).
  1065. * Implicit velocity system is now integrated with scene graph; the
  1066. relative velocity of moving nodes is automatically considered when
  1067. testing for most kinds of collisions. Use
  1068. NodePath::set_fluid_pos() to indicate that a node is moving
  1069. fluidly to its new position and should test for collisions along
  1070. the way (as opposed to the more traditional NodePath::set_pos(),
  1071. which unconditionally sets the node to its new position).
  1072. * Introduction of "tube" collision shapes, sometimes called
  1073. "capsules" in other libraries. It is a cylinder capped with
  1074. hemispheres.
  1075. * CollisionSolid::set_effective_normal() provides a way to define a
  1076. sloping surface with an apparently vertical normal, to prevent
  1077. characters standing on the surface from sliding down.
  1078. * Collision polygons now respect clipping planes.
  1079. * Many changes to physics system.
  1080. HTTPClient and net systems:
  1081. * More verbose error reporting.
  1082. * Better support for proxy servers, including SOCKS5 proxies.
  1083. Model converters:
  1084. * maya2egg converter now supports skeleton/morph animation files
  1085. fully, including soft-skinning, hard-skinning, and morphs (blend
  1086. shapes). NURBS and polygon meshes are both supported.
  1087. * A new Maya plugin called libmayapview allows opening a Panda
  1088. window from within Maya to view how the scene will look once it
  1089. has been converted to Panda.
  1090. * New soft2egg converter supports models and animation stored in
  1091. SoftImage 4.3 files. (Newer versions of SoftImage are not
  1092. supported.)
  1093. * New egg2flt program more or less reverses flt2egg.
  1094. * The ptloader Panda loader allows direct loading into Panda of most
  1095. model file types defined within pandatool: Maya, flt, and lwo.
  1096. Specify load-file-type ptloader in your Configrc file.
  1097. * New egg-optchar preprocessor improves character animation runtime
  1098. performance by eliminating unneeded joints. It can also
  1099. reorganize a skeleton and/or expose joints for the show code's
  1100. convenience.
  1101. * New egg-qtess utility converts NURBS egg files to polygon egg
  1102. files with either a trivial interface for quick conversions or a
  1103. sophisticated parameter file for more precise control. It
  1104. preserves soft-skinning and animation information.
  1105. * New visibility flag in egg format allows model files to define
  1106. invisible subtrees which will be initially stashed when loaded.
  1107. * The egg library now allows implicit forward references to vertex
  1108. pools, making it much easier to generate a valid egg file from a
  1109. third-party model format.