Vous êtes sur la page 1sur 105

Changes in 1.8 (7.11.

2012) - Let sphere mesh use full opaque color, just as all the other ones do - Gcc on Win32 (MinGW) now also works with the _w file access functions when co mpiled with _IRR_WCHAR_FILESYSTEM. (thx @ alexzk for reporting compile troubles) - Fix a bunch of off-by one errors in irr::core::string in functions equals_sub string_ignore_case, findFirst, findFirstChar, findNext, findLast, findLastChar, replace, remove and removeChars. This prevents some potential memory access errors, find functions no longer t ry to find the \0, replace no longer replaces the \0 and remove no longer tries to remove it (which did remove the last character instead). - matrix4::setRotationAxisRadians added - user clipplanes fixed - Skip rendering of lines, points, and polygons, as these lead to crahses due t o wrong access to the vertex lists. A fix would need major rewrite of the vertex cache, or at least some other render methods. - Add mipmap generation for makeColorKeyTexture - Add another saveScene overload which allows to pass in a user-created XMLWrit er. Patch suggested by eversilver. - quaternion conversions to and from matrix4 no longer invert rotations. To test if your code was affected by this you can set IRR_TEST_BROKEN_QUATERN ION_USE in quaternion.h and try to compile your application. Then on all compile-errors when you pass the matrix to the quaternion you can replace the matrix transposed matrix. For all errors you get on getMatrix() you can use quaternion::getMatrix_trans posed instead. - CGUIEnvironment::loadGui - loading a gui into a target-element no longer mess es up when the gui-file contained guienvironment serialization. - Colladawriter now exports materials per node when those are used in Irrlicht - Colladawriter now writing matrices for node transformations as old solution d id not work with CDummyTransformationSceneNode's. - Colladawriter no longer create an extra node for the scenemanger as <visual_s cene> has that job in Collada. - Colladwriter no longer makes all Scenenodes children of ambient-light as that can be parallel on the same layer instead. - Colladareader now creates the ambient-light correct instead of creating a poi nt-light for it. - Add new parameter to array reallocate function. This prevents a reallocation in case the array would become smaller. As the reallocation operation is quite t ime consuming, this can be avoided on request now, on the expense of more memory consumption. - Add IAnimatedMeshSceneNode::getLoopMode (asked for by JLouisB) - CSceneNodeAnimatorCameraFPS now resets the key-input when it was disabled (th

x @ gerdb for reporting and patch-proposal) - Properly destroy OpenGL resources on linux (thx @curaga for the patch) - Fix diplay bux in the attribute-panel of the GUIEditor. Fixes bug 3517314 (th x @Darkcoder for reporting). - Allow caching cursor position on X11 to work around slow XQueryPointer calls (thx @Hendu for reporting+patch proposal) - Make sure after EGET_EDITBOX_ENTER and EGET_COMBO_BOX_CHANGED event processin g no more code is executed for the corresponding editbox or combobox objects to allow clearing the environment on those actions (see comments on bug-id 2995838) . - Fix string::replace which failed replacing substrings at the end when the rep lacement was longer - Struct packing works now with gcc 4.7 changes on MinGW (thx @Sudi for reporti ng). - Struct packing uses now same solution throughout (by including headers in cor responding places) - User can now set characters used for decimal point in fast_atof for localisat ion. - Add parameter useAlphaChannel to second IGUIEnvironment::addImage function. - Get rid of unnecessary warning "Could not load sprite bank because the file d oes not exist" for "#defaultfont". - Fix MRT disabling. Bug found and fixed by hendu. - core:::array::reallocate returning now immediately when it has nothing to do. Should reduce a lot of memory thrashing on irrArrays. - Start mesh animations at first OnAnimate , before start-frame was rather rand om. Thx @Auria for reporting and patch proposal. - renderTargetTexture now working with ECF_R5G6B5 - add -fPic in c::b linux fast math shared build. - Fix by Auria for starting the animated meshes only at first OnAnimate instead of at random times and animation frames. - Add support for MAX_COMBINED_TEXTURES, which allows more texture support than with the original fixed pipeline texture check under OpenGL. Now, more than 4 t extures should also work with newer gfx cards and drivers, which often only supp ort 4 fixed pipeline textures. - triangle3d::isPointInsideFast now using some epsilon to catch all points on t he borders. - triangle3d::getIntersectionOfPlaneWithLine calculates now with higher precisi on for more exact results. - triangle3d::isOnSameSide (used by isPointInside) calculates now with higher p recision and uses some epsilon to make it work with larger integers and less flo

ating point troubles. Slightly slower now. - new function equalsByUlp to test for spacing between floating point numbers. - speedup for collada writing. - speedup for xml-writing. - Fix 8bit grey image TGAs, which were not working due to missing palette. Also switched to RGB8 format, as otherwise a loss in precision would occur. Thanks t o Klunk for the error report and a test image. - fixed issues with a D3D driver and Aero effects. - Fix font-drawing in CGUIButton to use EGDF_BUTTON again (thx @DJLinux for rep orting). - Add texture cache with proper reference handling. This avoids deletion of tex tures while still being active on the GPU. Test case and fix by m(att)giuca - CFileSystem::removeFileArchive now checking for normalized path - Fix zip's with passwords on 64-bit systems (thx @ Dr. Gladman for writing the bugfix) - replace asserts in tests with macro assert_log to allow running all tests thr ough on problems. - added IGUIElement::setName and IGUIElement::getName (similar to ISceneNode) - irr::s64 support - line2d::getClosestPoint can now also get the closest point on the line additi onal to only checking for closest point on the line-segment. - avoid division by zero in line2d::getClosestPoint when start- and endpoint ar e identical - Support for sw drivers under OSX - Fix font-loading which got broken by fixed xml-loading. Thanks @ pc0de for fi nding and providing a test and patch. - Don't crash draw2DSpriteBatch when it get's no textures. - Add support for int passing in setShaderConstant - Support for better collada texture wrapping support on loading. - Fix for render context change where only the window id is given. We now try t o change only the window ID, keeping context and display unchanged. Suggestion b y vovo4ka from the forum. - XML-reader now ignores all whitespace-only EXN_TEXT elements as old way didn' t work in cross-platform way (and arguably also not well on Windows). - CXMLReader initializes IsEmptyElement now. - line2d::intersectWith and and line2d::getClosestPoint work now also with inte gers.

- line2d::getMiddle and line3d::getMiddle work now also with integers. But can be slower for compilers which are not optimizing division by 2 to multiplication by 0.5 for floats. - Add Nadro's initial Cg support. Example 10 is enhanced to allow also Cg shade rs. - Add mipmap support from FBO extension, patch by Nadro. - Add vertex optimization algorithm submitted by curaga - rename texureBlend functions to textureBlend - Add threshold for slerp calculation, switching between linear and slerp at th is point. - Fix for bug 3401933 - vertex color interpolation with shadow volumes in the s cene - Fixed bug in button sprites reported by RdR - Fixed button state sprite animations for pressed, focused and hovered. - Added serialization for terrain smooth factor, patch by RdR - Implemented more button states for sprite banks, patch submitted by RdR - Add IGUIEnvironment::getHovered to get the element most recently known to be under the mouse cursor - Add FPS settings for animated meshes, which allows to push animation speed fr om files to Irrlicht animation system - Maya camera updates - Add support for bsp brush entities. Written by Hendu. - weighted normals recalculation fixed - Billboard improvements - API docs updates - triangle selector improvements - OSX improvements by Auria - Add new methods for adding and removing file archives based on ifilearchive p ointers. - Add getBackgroundColor, isDrawBackgroundEnabled and isDrawBorderEnabled to IG UIStaticText (thx 4 patch from Nalin). - Reduction of multiple skinning the same mesh and frame in one render cycle - Added ISceneNodeAnimatorCameraFPS::getKeyMap and a new ISceneNodeAnimatorCame raFPS::setKeyMap. - CSceneNodeAnimatorCameraFPS uses now SKeyMap instead of SCamKeyMap (structs w

ere identical which was confusing and there wasn't any explanation in comments, so I decided to simplify it). - Add some workaround to MeshViewer to show how we can currently fix the FPS-ca m when users to alt-tab while moving. We can improve that some day when we have focus-events, but this works for now. - Fix LZMA decompression - Ply normal fixes - HW buffers only support rendering with both vertex and index buffers - Enables VBOs for water node - Octree support for non-standard vertex meshes - Fix rotationFromTo - Added ConstIterator - Fix for getScreenCoordinatesFrom3DPosition to use proper RTT sizes - Add IGUIComboBox::setMaxSelectionRows and IGUIComboBox::getMaxSelectionRows - Scenemanager switches from type ESNT_UNKNOWN to type ESNT_SCENE_MANAGER. - Add getActiveFont to all elements which have setOverrideFont for cleaner code - Add getOverrideFont to all elements which have setOverrideFont to have a cons istent interface - IGUIEditBox: added missing serialization for Border - IGUIEditBox: remove bug that added spaces to the end of each line - IGUIEditBox: fix crash that happened when wordwrapping was enabled, spaces we re entered beyond the border and then cursor-key was pressed. - IGUIEditBox::setDrawBackground added. - CGUISkin::draw3DSunkenPane no longer ignores fillBackGround in non-flat mode. Also borderlines are no longer drawn overlapping to avoid ugly corners. - CDummyTransformationSceneNode::clone() added. - IParticleSystemSceneNode::doParticleSystem now public to allow rendering outs ide scenegraph. - getRelativeFilenames updates and fixes - Renamed IOSOperator::getOperationSystemVersion to getOperatingSystemVersion. Changed return type from wchar_t to core::stringc, as that's the internal repres entation the name is built on. - Added IGUITabControl::insertTab, IGUITabControl::removeTab, IGUITabControl::c lear and IGUITabControl::getTabAt - Add 32bit support to some mesh manipulator methods

- Fix mipmap locking under OpenGL - Improvement of screenshot function to support more color formats and targets - getAngle fix to avoid NaNs - Available gfx memory output in log messages - Improved 2d render settings and caching - Initial suppport for sRGB render functions - Improved terrain scene node rendering - Paletted png image support fixed - Gamma settings in image loaders improved - Support for relative filenames in serialization - Access to selectors inside meta selectors implemented - DirectInput joystick support - Support for scaling with draw2dimage with burnings video - More gl extensions have correctly initialised return values - Some fixes for quaternion to euler function - Properly return nullptr if RTT creation fails on low levels - Added IGUIListBox::getItemAt - Add more image formats tried to load by q3 level loader - Add fast_atof improvements from assimp, also strtoul10 method - Add blend equation function for MRTs - Add new material fields for blend operation and polygon offset (depth bias). - Reorder texture stage assignments - Improved VSync handling - Fix Ogre loader for materials with more than one texture - Fix createMeshCopy material handling - Framework target for OSX project added - Terrain scene node fixes - Fix HSL color class - Fix color selection GUI element - Transparency issues in particle system fixed

- Particle sphere emitter rand values fixed - Support Unicode SHY dynamic hypen in word wrap - Fix OBJ reader sometimes running over EOF - Added IGUITable::getColumnWidth - Billboard text animates in OnAnimate now - Fix mountpoint reader to properly sync file names and firectories - Added the ability to open an archive from an IReadFile*, added a FileToHeader tool with instructions of how to make a portable app that consists of a single executable file. - Added suppport for right-to-left (RTL) text, supplied by Auria from STK - Added ISceneManager::createSceneNodeAnimator to create animators by name - The Makefile now creates a symlink from the soname to the binary name during install. Binary compatibility is only confirmed between same minor releases. - Added SMF mesh loader, loads meshes from 3D World Studio. Originally written by Joseph Ellis - The loader selection process now consistently checks loader lists in reverse order, so new loaders added to Irrlicht override the internal ones. This applies when adding external mesh, image, scene and archive loaders, image writers, plu s node, animator and GUI element factories. - Added getters to retrieve mesh, scene and archive loaders. - Added ISceneLoader interface and .irr loader. Users can now add their own sce ne loaders to the scene manager and use them by calling loadScene. - Renamed IGUIElement::bringToBack to sendToBack, like in Windows - Send EGET_ELEMENT_CLOSED event when context menus should be closed (thx @ Mlo ren for reporting). - Added treeview to GUI editor, provided by Armen - Added root type for GUI environment - zip archive fixes: Fix directory tags in file list. Fix loading of stream zip files which have file sizes only in the central directory. - Fixed panel scrollbars in GUI editor, reported by Armen - Fix b3d loading of files with mixed mesh/bone sections. - Fix particle emitters which used integer random numbers so far. The distribut ions of the particles should be much better (and the code also somewhat faster) now. - Add new random method frand: Returns a random number in the interval [0..1] a nd gives better distributions than using fmodf on the integer number. - Add node parameter to saveScene and loadScene. saveScene saves the given node

and all descendants to the file (if 0, the full scene is saved as before). load Scene loads all elements of the scene as childs of the given node. As before, 0 would load the file on the top level (scenemanager). - Add method to make a filename relative to a given directory. - Fix setMesh to correctly update the joints cache. - Fix setting transition time of skinned meshes back to 0. - Add some getters to IGUIImage: getImage, getColor - Fix OpenGL FBODepthTexture to create less overhead - Fix MRT disabling under OpenGL - API change: Added write only lock mode for textures. The lock method has chan ged the signature and uses an enum parameter now instead of a bool. The default is still to lock for read/write (previously 'false'). The old 'true' value shoul d be replaced by ETLM_READ_ONLY. - Speedup deleting of particles - Add function IParticleSystemSceneNode::clearParticles - Fix RTT render states under OpenGL - Fix AntiAliasing setup under Windows/OpenGL in case no AA is available - Fix transformation matrices when RTT used - API change: getScreenCoordinatesFrom3DPosition has a new parameter, which nee ds to be set to true to get the original behavior. Now, the method returns coord inates which would fit as render coordinates of a currently enabled viewport. Wi th the parameter set to true the result would fit only after the viewport is res et to full window rendering. - More checks for Stencilbuffer - Improve render state resets - Fix MRT handling - Fix file search - Add flag and method to disable clipping of the text to the gui element rectan gle in GUI static text. - addShadowVolumeSceneNode now replaces an existing shadow. One should avoid to call this method multiple times without changing any parameter, as it is quite time consuming and cannot recognize the duplicate calls. - Add function IGUIEnvironment::removeFont (TODO: Does not remove the texture f rom cache so far) - Fixed mem leak in mountfilesystem - Update to libjpeg 8b, zlib 1.2.5, bzip2 1.0.6, libpng 1.4.4 and lzma from 9.2 0 SDK

- Functions in IMeshCache expecting IAnimatedMesh* parameters removed as simila r functions with IMesh* can be used since a while. Fixes also problems when IAni matedMesh* got upcasted to IMesh*. (thx @ Greenya for reporting) - Fix blend states for MRTs - 64bit targets for MSVC added - The following functions will now use a "ISceneNode *" instead of a "const ISc eneNode *": ITriangleSelector::getSceneNodeForTriangle, ISceneNodeAnimatorCollisionRespon se::getCollisionNode, ISceneCollisionManager::getCollisionPoint and ISceneCollis ionManager::getCollisionResultPosition. As collision functions often are followed by changing node positions users wh ere so far forced to using const_casts (found by Greenya). - Add vector3d::getAs3Values (patch provided by slavik262) - Add function to SViewFrustum to get corners of the near plane (patch provided by Matt Kline, aka slavik262) - ParticleFadeOutAffector::setFadeOutTime can no longer be set to invalid value s - ParticleFadeOutAffector uses now throughout u32 for fadeOutTime (found by gre enya) - Add missing access function CParticleSystemSceneNode::getAffectors() (seen by B@z) - Add missing setters/getters for particle emitters (seen by B@z) - Compile-defines can now be disabled from Makefiles/Projectfiles instead of ha ving to change IrrCompileConfig.h each time. - IGUITabControl::setActiveTab should only take IGUITab* and not IGUIElement* ( thx to greenya for finding) - Add new skin-colors: EGDC_GRAY_WINDOW_SYMBOL, EGDC_EDITABLE, EGDC_GRAY_EDITAB LE, EGDC_FOCUSED_EDITABLE - Disabled state is now extended to sub-elements - Make disabled state for several elements more visible - Bugfix: Icons in tabcontrol get now affected immediately by skin-changes - Proper cleanup if visual not created - XML reader bugfix - Disable mipmaps in 2d mode everywhere - Add xml example written by Yoran Bosman. - Fix cursor cleanup under Linux when using multiple devices - Fix collada parser - Fix MRT reset under D3D

- Add a generic attribute interface for querying video driver attributes which are not necessarily of type bool. This interface allows to check certain support ed features, such as the number of user clip planes, supported lights and textur es, MRTs, and other things. The interface might change in the future, but it's f ully functional already. The supported attributes are listed in the API docs of the function: The following names can be queried for the given types: * MaxTextures (int) The maximum number of simultaneous textures supported by the driver. This can be less than the supported number of textures of the driver. Use _IRR_MATERIAL_MAX_TEXTURES_ to adapt the number. * MaxSupportedTextures (int) The maximum number of simultaneous textures supported by the fixed function pipeline of the (hw) driver. The actual supported number of textures supported by the engine can be lower. * MaxLights (int) Number of hardware lights supported in the fix ed function pipieline of the driver, typically 6-8. Use light manager or deferre d shading for more. * MaxAnisotropy (int) Number of anisotropy levels supported for filtering. At least 1, max is typically at 16 or 32. * MaxUserClipPlanes (int) Number of additional clip planes, whic h can be set by the user via dedicated driver methods. * MaxAuxBuffers (int) Special render buffers, which are currentl y not really usable inside Irrlicht. Only supported by OpenGL * MaxMultipleRenderTargets (int) Number of render targets which can be bound simultaneously. Rendering to MRTs is done via shaders. * MaxIndices (int) Number of indices which can be used in one re nder call (i.e. one mesh buffer). * MaxTextureSize (int) Dimension that a texture may have, both i n width and height. * MaxGeometryVerticesOut (int) Number of vertices the geometry s hader can output in one pass. Only OpenGL so far. * MaxTextureLODBias (float) Maximum value for LOD bias. Is usual ly at around 16, but can be lower on some systems. * Version (int) Version of the driver. Should be Major*100+Minor * ShaderLanguageVersion (int) Version of the high level shader l anguage. Should be Major*100+Minor. - Fix getRotationDegrees - Add creation parameter which allows to disable highres timers on Windows upon device creation. - Several transparency setup bugs fixed. Now, alpha_vertex_blend uses proper al pha blending instead of a mixed add/alpha blending. - Added a method to get real time and date in a human readable struct - Fix add folder archives method to support files without trailing slashes. - fix transparent_reflection_2_layers - Add support for MSVC 2010 - Fix "unsupported format" warning on RTT usage - Add IGUIElement::bringToBack (patch written by DtD, although I'm to blame for the function-name) - BurningVideo - add Normalmap Rendering (one light only), pushed Burningvideo to 0.46

- add Stencil Shadow Rendering (one color only and 32 bit only), pushed Burningvideo to 0.47 - internal vertexformat changed - changed fixpoint from 9 to 10 bit fract resolution - renamed createBurningVideoDriver to createBurningVideoDriver and uses SIrrl ichtCreationParameters like opengl - internal interfaces for the trianglerenders unified. - Example 11, changed the light billboards to use the light color. allow to disable the bump/parallax on the earth like in the room ( with trans parency ) - added DDS Image files, DXT2, DXT3, DXT4, DXT5, based on code from nvidia and Randy Reddig - added Halflife 1 Model Loader (based on code by Fabio Concas) Halflife 1.1.0.8, Counter-Strike 1.6 working -> Load all Textures ( can even optimize it to texture atlas ), all bone anim ation, all submodels. -> But to make use of the values (named animation, mouth animation) the Interface for IAnimatedMeshSceneNode has to be redone. TODO: ->can handle float frames numbers, the interface for getMesh should be rework ed This is my idea of a new getMesh interface for IAnimatedMesh //! Returns the IMesh interface for a frame. /** \param frameA: Frame number as zero based index. The Blend Factor is in the fractional part of frameA The Mesh will be calculated as frame = integer(frameA) * (1-fractional(frameA )) + frameB * fractional(fram eA) FrameNr KeyFrameA KeyFrameB 40.0 1 0 40.1 0.9 0.1 40.5 0.5 0.5 40.9 0.1 0.9 41.0 0 1 \param frameB: Frame number as zero based index. The other KeyFrame which is blended with FrameA. \param userParam: for Example Level of detail, or something else */ virtual IMesh* getMesh(f32 frameA, s32 frameB = 0,s32 param = 0) = 0; For now i used the (unused, always 255) detail level parameter and set a blen d percentage as s32 frameNr = (s32) getFrameNr(); s32 frameBlend = (s32) (core::fract ( getFrameNr() ) * 1000.f); return Mesh->getMesh(frameNr, frameBlend, StartFrame, EndFrame); So no interface is affected. -> TODO: Quaternion Rotation is done private hand made and should be done wit h irrlicht quaternions - Included 357kb Yodan.mdl mesh and copyright info file from Doug Hillyer to the media directory, used in example 7. collision as 4th model. - added Halflife 1 Texture Loader

Valve uses WAL archive types like quake2. textures are inside model files I reworked the existing ImageloaderWAL and added named Halflife textures to w al2 ( they have no extension ) and an LMP (palette/texture) loader into the same file (all using 32bit now) - added WAD Archive Loader (Quake2 (WAL2) and Halflife (WAL3) are supported) - CFileList added Offset Parameter to SFileListEntry and removed the private array from t he archive loaders. CFileList::addItem now uses automatic incremental id if id = 0 - added void splitFilename, splits a path into components - added parameter make_lower to substring ( copy just lower case ) string<T> subString(u32 begin, s32 length, bool make_lower = false ) const - ColorConverter added //! converts a 8 bit palettized or non palettized image (A8) into R8G8B8 static void convert8BitTo24Bit(const u8* in, s16* out, s32 width, s32 height, const s32* palette, s32 linepad = 0, bool flip=false); //! converts a 8 bit palettized or non palettized image (A8) into A8R8G8B8 static void convert8BitTo32Bit(const u8* in, u8* out, s32 width, s32 height, const u8* palette, s32 linepad = 0, bool flip=false); - In IGUITreeView "clearChilds" and "hasChilds" deprecated for "clearChildren" and "hasChildren" (thx @Greenya for noticing) - add CGUIEditBox::getOverrideColor and CGUIEditBox::isOverrideColorEnabled - add dimension2d::operator- Add logging level ELL_DEBUG - Add parameter DisplayAdapter to creation params to allow selecting the card w hen more than one card is in the system. - Added support for custom cursors - WM_SYSCOMMAND - SC_KEYMENU message is now ignored (F10 and ALT in Win32 windo wed mode) - Avoid argument lookup ambiguity in swap when used in combination with stl. Us ing same trick as boost now and use 2 different template parameters in it. - Add UseMipMap flag in material - Add occlusion query support. Based on code by Nadro - Add support for vertex_array_bgra extension in OpenGL driver. This will speed up OpenGL rendering quite a lot as it skips the silly color conversion thing we have to do otherwise. - Replace raw xml char implementation with template struct in order to decouple the type from POD types. May also help for 64bit problems or changes needed the re. - Fixed bug causing memory access violation in string::replace found and patche d by Nalin.

- Fix windows32 class unregister - Add parameter to line2d::intersectWith to allow getting intersections outside the segments (thx Yoran). - External windows are not destroyed anymore - clamp values in getRotationDegrees to avoid nan values - texture size in terrain mesh fixed - ms3d fixes - Add new matrix methods for infinite projection matrix - Support new OpenGL 2.x shader creation ----------------------------Changes in 1.7.4 - Change include order to get example 21 compiling on MinGW. - Irrlicht.dll has correct name now again (was named libIrrlicht.dll in c::b). This fixes bugreport 3518765 reported by tetho. - Fix linker path in example 16 for C::B project file (linker path was in inclu de path section). - Link with opengl32 and gdi32 in Example 14 in C::B. - Remove --no-export-all-symbols which got recently added to the windows build as that flag is not known by gcc on Windows. - Fix bug in example 23 where Width and Height got mixed up. Thanks @Lazier for reporting. - Fix for R5G6B5 converter submitted by XMight - Fix conversion warning under mingw, found by Randajad - Set EMF_NORMALIZE_NORMALS correct for syndey model in Demo (thanks @ Midnight for reporting). - SceneNodeAnimatorFlyCircle fixes serialization of RadiusEllipsoid (was writin g Radius). Thx @ wing64 for reporting. - Yield on Linux now uses nanosleep with 1ns as 0 isn't guaranteed to yield (th x @ hendu for finding + fix) ----------------------------Changes in 1.7.3 (20.02.2012) - SceneNodeAnimatorFlyCircle fixes serialization of RadiusEllipsoid (was writin g Radius). Thx @ wing64 for reporting. - Yield on Linux now uses nanosleep with 1ns as 0 isn't guaranteed to yield (th x @ hendu for finding + fix) - GUIEditor attributes have now scrollbar to be editable

- Remove warning when compiling line2d::intersectWith with other types than f32 . - Document that triangle3d::isPointInside should not be used with int's. - triangle3d::isPointInsideFast handles 'on-border' cases now consistently. - Some more editbox fixes - Harden Linux joystick usage, in case the driver returns illegal values - Bugfix: vector2d.normalize() and vector3d.normalize() had returned wrong resu lts with very short vectors since Irrlicht 1.5. Thanks to Willem Swart for Bugr eport + testcase. - Unknown keymappings now use the X11 keycode instead of 0 to make such keys at least usable in games. - KeyMapping for KeyInput.Key on X11 ignores states like shift&ctrl now like on Windows. - Additional keymappings for X11 (tested with german and us keyboards which see m to work now in all cases). - Fix crash in multiline editbox when pasting several lines into it on Windows (found by Reiko) - example 09.Meshviewer no longer catches keys while a modal dialog is open - Fix SSharedMeshBuffer - Fix right handed ortho matrix - editbox no longer displays cursor when disabled - editbox autoscrolling now at least works good enough to actually show the tex t which the user is typing in. - editbox no longer moves text into next line when it fails wrapping creating s enseless empty lines which mess up scrolling. - Fix crash in editbox when scrolling up with empty first lines caused by textw rapping. - Fix endianess conversions - Changes to isPointInside - Fix focus problem when removing an unfocused modal dialog reported by Reiko h ere: http://irrlicht.sourceforge.net/forum/viewtopic.php?f=7&t=44358 - Fix md2 normals problem again - Add integer template specialization for vector3d::getSphericalCoordinateAngle s which rounds angles to nearest integer now. - Recalculate FrameRect and ScrollPos in CGUIEditBox when AbsoluteRect gets cha nged (thx @ serengeor for report + testcase) - Fix crash in editbox

- Fix 'k' in bigfont.png (thx @ Scrappi for reporting) - fix serialization for CBillboardSceneNode, it had missed 2 color (thx for fin ding + patch from pc0de) - EMIE_MOUSE_WHEEL messages now handled correctly in several gui-element when w heel isn't just 1.0 or -1.0 (thx @ Reiko for reporting) - Fix problems in Textwrapping in CGUIStaticText. Did use wrong size and did ig nore last word of the text (thx @ Reiko for bugreport) - Fix crash in collada (.dae) loading - Fix bug handling in case RTT is not properly created - Fix SColorf interpolation - Fix memory-leaks in example 22 MaterialViewer - Fix array::erase which did destroy objects more than once when used with a ra nge (thx @ RedDragCZ for reporting + testcase). - Copy now all membervariables for CCameraSceneNode when cloning. - ICameraSceneNode::IsOrthogonal is correctly serialized and cloned now. - CGUIScrollBar passes unused mousemove-events now to parent element. Fixes foc us-bug in ComboBox reported by REDDemon here: http://irrlicht.sourceforge.net/ph pBB2/viewtopic.php?t=43474&highlight= - Fix getAngle and getAngleWith - Fix clipping in CGUITabControl - Fix clipping in CGUITable, reported by ceyron - Skip bone weights and additional information in ms3d file if no joint was def ined before. - Fix mem leak in CImage, found by mloren. - Fix tga writing, reported by xirtamatrix - Tab-positions care now about the borders correctly - TabControl now respositions it's tabs when setTabVerticalAlignment is changed (thx @ ceyron for reporting+testcase) - CGUIModalScreen now no longer takes focus itself, but tries to give it first child when possible to fix modal windows losing focus all the time - Modal screens no longer blinks when gui-elements call removeFocus on themself (thx @ yaten for reporting+testcase) - Fix crash in multiline-editbox when selecting with mouse (thx @ ceyron for re porting and testcase) - Fix render context creation for OpenGL under Windows.

- Fix the reset problem of d3d9 driver in combination with hardware buffers. - Fix .x loader in case of unused vertices. - Avoid empty line in texts with very large words. Text wrapping would introduc e an empty line in earlier versions. - Add a new attribute which assigns hw mapping hint to the whole Mesh. - Allow creation of water scene node without mesh. - Fix regeneration of skydome. - Fix scene node type and factory support for volume light - Q3 maps no longer crash when faces try accessing lightmaps which are not ment ioned to be loaded in the file. - Fix crash on null-readfile in texture loading - Get particles saved before 1.7.2 (for example in irrEdit) working again (thx to smashly for problem reporting) - Fix IGUIScrollBar setMax and setMin which had been restricted wrongly (report ed by REDDemon) - Fix CNullDriver::createImage - Creating the image from a texture-rectangle wh ich doesn't start at 0,0 works now again (thx @ ceyron for bugreport+testcase) - Menu no longer sets highlight state when clicking disabled menu-item (reporte d by Mloren) - Treeview can now be disabled ----------------------------Changes in 1.7.2 (15.11.2010) - Fix in d3d9 driver, which caused a crash when device creation failed. Bug fou nd and fixed by Kostya - Fix a wrong access to Value instead of ValueW. Found and fixed by vroad. - Fix line loop rendering in d3d drivers. Fix submitted by tonic. - Fix tar recognition in tar reader. - Fix blend mode setup in OpenGL driver, when using the material2d override, as pointed out by Auria - Avoid crash due to tcoords2 handling. Might need some more fixing to work cor rectly. - Fix 2d line intersections. Has had problems with consecutive, but non-overlap ping line segments and with overlapping line segments. - Fix image creation from texture, found by dataslayer - Fix crashes when taking Screenhots for DirectX in Windowed mode (thx to agame mnus for reporting)

- StaticText does now serialize the background color - Fix gui-elements which didn't care when skin-colors changed. That made it imp ossible to make the gui slowly transparent (thx to PI for reporting). Note that it couldn't be completely fixed for the SpinBox without breaking the interface, so for that element you have to enforce this by calling for example e lement->setValue(element->getValue()) once. - Fix CXMLReaderImpl::getAttributeValueAsInt which returned wrong values with l arge integers (thx to squisher for finding) - Fix compile problem in swap when using irrlicht in combination with stl (back port from trunk r3281) - Add EGET_TREEVIEW_NODE_COLLAPSE and deprecate EGET_TREEVIEW_NODE_COLLAPS (fou nd by greenya) - Fix serialization in CParticleSystemSceneNode (found by B@z) - Prevent crash in BillboardTextSceneNode when a custom font is used. Found and fixed by Nalin (bugtracker id: 3020487) - Fix problem in animation system that currentFrame got messed up after long pa uses (especially when not starting at frame 0). See forum thread (http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?p=2105 37#210537) and bug id 2898876. Also remove BeginFrameTime in CAnimatedMeshSceneNode as it hasn't been used a nymore since some time. - Add framerate and current frame information for animations in example 09 and do some minor cleanup. - Added another test for xml-reader. - Fix serialization in several particle emitters and affectors (thx to Ion Dune for reporting). - Fix compile-error on VS for vector2d::getAngleTrig when used with integers. ( thx to greenya for reporting) - Fix bug in dimension2d::getInterpolated that caused wrong results when used w ith integers as template parameter. (thx to Greenya for noticing a warning which made me look over this code). - Remove 2 minor memory leaks in meshloaders (found by tool cppcheck-1.43) - reduce file dependencies for IGUIEventReceiver.h (thx ngc92) - Initialize GUIEvent.Element in several places (found by greenya) - Add EGDS_MESSAGE_BOX_MAX_TEXT_WIDTH and deprecated EGDS_MESSAGE_BOX_MAX_TEST_ WIDTH (thx to greenya for reporting). - Fix colors in irr files. - Fix several places where "used" in core::string was used wrongly preventing s ome memory corruption - Remove additional slash in pathnames in X-Loader

- Fix crash in CGUIListBox when environment was cleared on events - Bugfix: Clear up depth-textures which could not be attached in OpenGL to prev ent crashes. - Fix arrowMesh boundingbox. - Fix rounding problem in getInterpolated in the color classes - Scrollbar in GUIListbox now uses default id -1 instead of 0 - Fix octree clipping issues. - Fix obj loader. - clone function fixes. - Fix tooltips. - Fix Ogre parser. ----------------------------Changes in 1.7.1 (17.02.2010) - Fix octree with frustum+parent checks enabled (didn't clip at all before). No w using plane-checks instead of edge-checks for frustum-box intersection. - Prevent that X11 selects larger resolutions in fullscreen even when perfect f its are available. - Ignore setResizable also on X11 when we're fullscreen to avoid messing up the window mode. - Work around a crash when pressing ESC after closing a Messagebox (found by Ac ki) - Prevent borland compile warnings in SColorHSL::FromRGB and in SVertexColorThr esholdManipulator (found by mdeininger) - Improve Windows version detection rules (Patch from brferreira) - Make it compile on Borland compilers (thx to mdeininger) - Make sure that CAnimatedMeshSceneNode::clone calls the virtual updateAbsolute Position for the new object - Fix that clones got dropped too often when SceneNodes without parent got clon ed (found by Ulf) - Make sure TAB is still recognized on X11 when shift+tab is pressed. This does also fix going to the previous tabstop on X11. - Send EGET_ELEMENT_LEFT also when there won't be a new hovered element - Update docs for EGET_ELEMENT_LEFT and EGET_ELEMENT_HOVERED - Fix tooltips: Remove them when the element is hidden or removed (thx to seven for finding) - Fix tooltips: Make (more) sure they don't get confused by gui-subelements

- Fix tooltips: Get faster relaunch times working - Fix tooltips: Make sure hovered element is never the tooltip itself - Fix string::remove which got in an endless loop when remove was called with a n empty string (found and fixed by Ulf) - Correctly release the GLSL shaders - Make sure we only release an X11 atom when it was actually created - Fix aabbox collision test, which not only broke the collision test routines, but also frustum culling, octree tests, etc. - Fix compilation problem under OSX due to wrong glProgramParameteri usage - mem leak in OBJ loader fixed - Removed some default parameters to reduce ambigious situations --------------------------Changes in 1.7 (03.02.2010) - Implement minimize and deminimize under OSX. - Define sorting order for vector2d and vector3d in operators <, <=, > and >= t o fix bugs 2783509 and 2783510. Operators order now by X,Y,Z and use float toler ances. - Ogre mesh 32bit indices fixed. - Fix tooltips for gui-elements with sub-element like IGUISpinBox (id: 2927079, found by ArakisTheKitsune) - ITimer no longer stops when started twice - wchar_t filesystem updates under Windows. - Joystick POV fixed under Windows, ids fixed under OSX. - Some updates to skinned mesh for better bones support and scaling animations. - OSX supports external window id in creation parameters now. - Fix bbox collision tests. - Updates for win32 key handling - new convenience method for flat plane creation. - Sky dome and other meshes use VBOs by default now. - Speed up b3d loading for files with many frames, material color flags and ver tex color support enhanced. - Add hasType to IGUIElement as a dynamic_cast substitute. - Add another parameter to IGUISkin::draw3DWindowBackground to allow getting th e client area without actually drawing

- Add function getClientRect to IGUIWindow for getting the draw-able area - Fix bug that menus on IGUIWindows with titlebar got drawn too high (id: 27144 00) - Renamed OctTree to Octree - Allow getting a ConstIterator from a non-const core:list - Add swap functions to irrMath and to the core classes. - Deprecate map::isEmpty() and replace it with map::empty() to make it similar to other base classes. - Allow to set the logging level already in SIrrlichtCreationParameters. - Add clearSystemMessages to devices (implemented only for Linux and Win32 so f ar). - Support changing the render window from beginScene also with OpenGL driver. - Add getMaterial2D which allows to alter the 2d render state settings, such as filtering, anti-aliasing, thickness, etc. - Fix incorrect cursorpos for resizable windows on Windows Vista (found and pat ched by buffer) - Change the beginScene window parameter from void* to SExposedVideoData&. This will allow to manage contexts for OpenGL at some point. - Add bzip2 and LZMA decompression modes for zip loader. - Add OBJ_TEXTURE_PATH and B3D_TEXTURE_PATH to SceneParameters to allow setting texture-paths for obj and b3d. - Irrlicht keeps now filenames additionally to the internally used names, there by fixing some problems with uppercase-filenames on Linux. - Bugfix: Mousewheel no longer sends EMIE_MOUSE_WHEEL messages twice on Linux. - Use latest jpeglib - refactoring: E_ATTRIBUTE_TYPE and IAttribute have now own headers - CStringWArrayAttribute speedup - SceneNodeAnimatorFollowSpline can now loop and pingpong - Meshviewer.example got some fast-scale buttons. - Support AES-encrypted zip files. Should work with 128, 196, and 256 bit AES. This addition also adds a new PRNG, SHA, and other algorithms to the engine, tho ugh no interface is yet added for them. The implementation of the encryption alg orithms is provided by Dr Brian Gladman. - flattenFilename and getAbsolutePath fixed and properly added at several place s. - Added geometry shaders for OpenGL. A first version of the code was submitted

by Matthew Kielan (devsh). - Bugfix: irrArray should no longer crash when using other allocators. - Add MaterialViewer example. - Texture activation now back in setMaterial, which simplifies writing external material renderers (OpenGL only). - Checkbox uses now disabled text color when disabled. - Changed colors for window-title caption to keep them readable when not active . - Draw sub-menus to left side if they would be outside main-window otherwise. - Give ListBox better defaults for the ScrollBar stepsizes. - Double and triple click events now for each mouse-button. Old events for that got removed. - Fix adding archives twice, which caused multiple archives of the same name an d type covering each other. This one required a texture name change from using b ackslashes to slashes under Windows. - Give access to texture mipmaps. You can provide custom mipmap textures upon g eneration, regeneration, and locking. Make sure the provided data is large enough and covers all miplevels. Also th e returned pointer (from lock) will only cover the smaller data of the mipmap le vel dimension chosen (level 0 is the original texture). - Separate TextureWrap mode into U and V fields - Add mirror texture wrap modes - windows show now active/inactive state - remove unneeded drop/grab calls found by manik_sheeri - fix rounding problem in IGUIElements which have EGUIA_SCALE alignments. - MessageBox supports now automatic resizing and images. Deprecated EGDS_MESSAGE_BOX_WIDTH and EGDS_MESSAGE_BOX_HEIGHT - Let maya-cam animator react on a setTarget call to the camera which happened outside it's own control - New contextmenue features: automatic checking for checked flag. close handling now customizable serialization can handle incomplete xml's setEventParent now in public interface New function findItemWithCommandId New function insertItem - new vector3d::getSphericalCoordinateAngles method. - new triangle3d::isTotalOutsideBox method. - Newly introduced VertexManipulator interface. This allows for very easy creat

ion of vertex manipulation algorithms. Several manipulators, e.g. vertex color c hanger and transformation algorithms are already available. - createMeshWith1TCoords avoids vertex duplication - getRotation now handles matrices with scaling as well - Ogre format animations now supported. - irrArray: Fixed issues with push_front and reallocation Changed behavior for set_pointer and clear, when free_when_destroyed is false - NPK (Nebula device archive) reader added, it's an uncompressed PAK-like forma t - SSkinMeshBuffer::MoveTo* methods renamed to convertTo* - Multiple Render Target (MRT) support added, including some enhanced blend fea tures where supported - Directory changing fixed for virtual file systems (Archives etc) - Fix texture matrix init in scene manager and driver - More draw2dimage support in software drivers - Sphere node now properly chooses a good tesselation based on the parameters - Active camera not registered twice anymore - Parallax/normal map shader rotation bug under OpenGL fixed - bump map handling for obj files fixed - Fog serialization added - New context menu features added - Bounding Box updates for skinned meshes fixed - The current FPS for an animated scene node can be queried now, added some var iables to serialization - Scrollbars fixed - Fixed 2d vertex primitive method to correctly handle transparency - Fullscreen handling has been enhanced for Windows, now proper resolution is r estored on Alt-Tab etc. - Cameras can now be added to the scene node without automatically activating t hem Clone method added - New video driver method getMaxTextureSize - PAK archive reader fixed - TRANSPARENT_ALPHA_CHANNEL_REF uses modulate to enable lighting

- LIGHTMAP_ADD now always uses add operator - Some Unicode file system fixes - destructor of irrString not virtual anymore, please don't derive from irrStri ng Some new methods added, for searching and splitting Assignment operator optimized - new lightness method for SColor - draw3DTriangle now renders filled polygons, old behavior can be achieved by s etting EMT_WIREFRAME ----------------------------Changes in 1.6.1 (13.01.2010) - Fix pingpong for CSceneNodeAnimatorFlyStraight (found by gbox) - Fix bug with IGUIEditBox where the cursor position is reset on text change. - Make sure the window top-left corner on Windows is not negative on start so t hat Windows sytem-menu is always visible. - Fix problem that the window did sometimes not get the keyboard focus in X11 i n fullscreen. Add more debug output in case focus grabbing goes wrong. - Fix screensize in videodriver when we didn't get the requested window size. T his also prevents that gui-clicks are no longer synchronized with gui-drawing an d elements can't be hit anymore. - Bugfix: Prevent a crash when getTypeName was called for the guienvironment. E GUIET_ELEMENT got changed for this. - Bugfix: Horizontal centered font with linebreaks draw now all lines. For exam ple multiline TextSceneNodes work again. - Bugfix: spinbox can no longer get in an endless loop due to floating point ro unding error (found by slavik262) - !!API change!! Disabled AntiAliasing of Lines in material default Please enable this manually per material when sure that it won't lead to SW r endering. - IGUIComboBox: clicking on the statictext displaying the active selection does now close and open listbox correctly. (Bug found by Reiko) - Scrollbuttons in IGUITabControl adapt now to tab-height. - Fix texturing of cylinder mesh - Fix modal dialog position (found by LoneBoco: http://sourceforge.net/tracker/ ?func=detail&aid=2900266&group_id=74339&atid=540676) - Fix DMF loading - Fixing left+right special keys (ctrl, shift, alt) on Win32 (thanks to pc0de f or good patch-ideas). - Make stringarrays for enums in IGUISkin a little safer

- Add support for keys KEY_PRINT, KEY_HOME (on numpad) and KEY_NUMLOCK on Linux . - Fix material handling in createMeshWith1TCoords - Fix another (OldValue == NewValue) before drop()/grap(), this time in CTextur eAttribute::setTexture. - Fix LIGHTMAP_LIGHTING for D3D drivers. - AntiAliasing disabled for debug render elements. - Bugfix: CGUIToolBar::addButton does no longer mess up when no image is set an d does now actually work with the text. - Fix ninja animation range which got messed up a little when b3d animations go t fixed (thx gbox for finding) --------------------------Changes in 1.6 (23.09.2009) - Added IFileSystem::createEmptyFileList, exposed IFileList::sort, addItem and added getID - Fix MAKE_IRR_ID so it can be used from outside the irr namespace (Micha's pat ch) - Renamed some methods in ISkinnedMesh to match the official Irrlicht naming sc heme according to createXXX() - Change debug data to draw using lines instead of arrows, which is much faster . Patch by pc0de - Fix a bug with FPS camera animator causing stutters. Patch by FuzzYspo0N - Fix scrolling controls in CGUITabControl - Fix a bug when getting optimal texture size in D3D drivers, by Jetro Lauha (t onic) - Added EGDS_TITLEBARTEXT_DISTANCE_X and EGDS_TITLEBARTEXT_DISTANCE_Y to GUI, s ubmitted by FuzzYspo0N - Fix for UFT8 filenames displayed in file dialog, patch by MadHyde. - Added const method for array::binary_search, potentially slow as it doesn't s ort the list! - Add support for scaling button images. - Irrlicht can now come with multiple device types compiled in, the device to u se is selected by SIrrlichtCreationParameters.DeviceType. This defaults to EIDT_ BEST which automatically select the best device available starting with native, then X11, SDL and finally the console. - Added support for EXP2 fog distribution. This required a change in the setFog parameters where now an enum value instead of the bool linear is given. - IFileSystem changes:

- Renamed the following functionsIFileArchive::getArchiveType to getType IFileSystem::registerFileArchive to addFileArchive IFileSystem::unregisterFileArchive to removeFileArchive IFileArchive::openFile to createAndOpenFile - New enum, E_FILE_ARCHIVE_TYPE. getType on IArchiveLoader and IFileArchive n ow both return this. - IFileSystem::addFileArchive takes a parameter to specify the archive type r ather always using the file extension. IFileSystem::addZipFileArchive, addFolder FileArchive and addPakFileArchive now use this but these functions are now marke d as deprecated. Users should now use addFileArchive instead. - Added TAR archive loader. - The ZIP archive loader can now load gzip files, combined with the TAR loade r this means Irrlicht now has native support for .tar.gz Currently this must be done in two calls, for example: fileSystem->addFileArchive("path/to/myArchive.tar.gz"); fileSystem->addFileArchive("myArchive.tar"); - Fix highlighting in IGUIEditBox where kerning pairs are used in the font. For example in future italic, OS or other custom fonts. - IOSOperator::getTextFromClipboard returns now const c8* instead of c8* - Support for copy&paste on linux (X11) added (fixing bug 2804014 found by Pan) - bugfix for 2795321 found by egrath: Don't rely anymore on broken XkbSetDetect ableAutoRepeat. - bugfix: CMountPointReader::openFile no longer returns true for empty files. C orresponding test added. - Direct3D now also uses screen coordinates in 2d mode, just like OpenGL. This means that screen coords are going from 0..ScreenWidth and 0..ScreenHeight inste ad of -1..1. - ALT+F4 keypress now closes Windows SDL device - Allow Direct3D drivers in SDL, patch by Halifax - Added compiler error when attempting to compile with VC6. - Use setWindowTextA in Windows device for WIN64 platform, posted by veegun - ELL_ERROR log events are now created when shaders fail to compile or link, re ported by Halan - irrList now uses irrAllocator, fixed by Nox - Added IGUIWindow::setDraggable and IGUIWindow::isDraggable, by Nox - Added SGI RGB file reader by Gary Conway, for loading Silicon Graphics .rgb, .rgba, .sgi, .int and .inta textures - Renamed setResizeAble to setResizable

- Added new device method minimizeWindow which minimizes the window (just as if the minimize button has been clicked). - SkyDome is now serialized correctly - Added PLY mesh reader and writer - Ensure ListBox on combo box doesn't hang off the bottom of the GUI root, by M atthias Specht - Made IGUIElements recalculate clipping rectangle after setNotClipped, reporte d by Aelis440 - Bug fix for the combo box where it showed white text instead of skin color be fore being focused, fix posted by drewbacca - EGDS_MESSAGE_BOX_HEIGHT is now honoured, bug reported by Spkka - Fixed a bug in the edit box where events are sometimes sent to a null parent, reported by Sudi. - Coordinate system fix for OpenGL in SDL device - Added generic console device. You can now use Irrlicht to create and manipuat e graphics on a shell where no graphics hardware or windowing system is available. To enable it uncomment #define _IRR_USE_CON SOLE_DEVICE_ in IrrCompileConfig.h - The console device can now present images from the software drivers and dis play them as ASCII art in the console - By default it replaces the default font in the skin, to prevent fonts from being huge. - Fixed problems with changing cursor visibility while mouse is pressed on wind ows - Allow control of background drawing in listbox - Allow control of drawing background and titlebar in windows - Improved window serialization - Add mouse events EMIE_MOUSE_DOUBLE_CLICK and EMIE_MOUSE_TRIPLE_CLICK (thx to Ulf for patch proposal) - Set "ButtonStates" for mouse events also on Linux (was only for Windows forme rly) - Add Shift+Control states to mouse event - bugfix (2003238): serialize modal screens - allow stacking modal screens - allowing hiding modals - replace many IsVisible checks with virtual isVisible() checks in IGUIElement - bugfix: reset selected row when clearing CGUITable - adding events EGET_EDITBOX_CHANGED and EGET_EDITBOX_MARKING_CHANGED

- prevent editbox from recalculating its textbreaking each frame - let spinbox react on each textchange without waiting for enter to prevent get ting value changes without corresponding EGET_SPINBOX_CHANGED events. - new test for zipreader - prevent dropping objects accidentally in many set functions - Reversed change in vector3d::normalize. Works now again as documented and a corresponding test has been added. Does fix bug 2770709 (https://sourceforge.net/tracker/?func=detail&aid=277070 9&group_id=74339&atid=540676) - Animations can now be paused by setting the fps to 0. - Avoid fp-precision problem in getPickedNodeBB (see also http://irrlicht.sourc eforge.net/phpBB2/viewtopic.php?t=33838&highlight=). This change might also fix the problem with picking nodes found by aanderse ( http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=32890&highlight=) - implemented isALoadableFileFormat ( File *file ) for the Archive Loader - PixelBlend16 and PixelBlend16_simd are working for the new rules. - bugfix. CLightSceneNode didn't correctly update it's attributes - vector template and equals tests also set the equal test for s32 to behave like the f32 routine. The function equals always implements a weak test. that means a tolerance MUST always be used if you use the equal function. de fault is 1. - VideoDriver drawPixel The HW renderes are using the alpha components for blending. The Software Renderes and image loaders are using CImage::setPixel copy. so setPixel is engaged to either blends or copy the pixel default: false - Burningvideo added RenderMaterial EMT_SPHERE_MAP pushed burningsvideo to 0.43 added RenderMaterial EMT_REFLECTION_2_LAYER pushed burningsvideo to 0.44 set EMT_TRANSPARENT_ALPHA_CHANNEL_REF to use AlphaRef 0.5 like Direct3D One Note: in OpenGL there is know difference between sphere_map and reflecti on layer both using GL_TEXTURE_GEN_MODE GL_SPHERE_MAP, whereas in d3d one time using camera_normal on sphere and reflection on refletcion_layer. The visual difference is that on sphere map the "image is not moving" when y ou rotate the viewer. For Burning i took the opengl visual. always moving - rename quake3 SEntity to IEntity to be confom with IShader - fixed createMeshWith2TCoords, normals were missing during copy.

- added //! Creates a copy of the mesh, which will only consist of S3DVertex vertice s. IMesh* CMeshManipulator::createMeshWith1TCoords(IMesh* mesh) const - added io::IFileSystem* CSceneManager::getFileSystem() - added virtual const c8* ISceneManager::getAnimatorTypeName(ESCENE_NODE_ANIMA TOR_TYPE type); - added CSceneNodeAnimatorFlyCircle::radiusEllipsoid. if radiusEllipsoid == 0 the default circle animation is done else radiusEllipsoid forms the b-axe of the ellipsoid. -> gummiball bouncing - added ISceneManager::createFlyStraightAnimator variable bool ping-pong used in loop mode to device if start from beginning ( default ) or make ping -pong -> straight bouncing - changed IFileSystem::registerFileArchive remove the index of the hierarchy and added a new interface method //! move the hirarchy of the filesystem. moves sourceIndex relative up or do wn virtual bool moveFileArchive( u32 sourceIndex, s32 relative ) = 0; - bugfix and changes in SViewFrustum::SViewFrustum wrong size of Matrices copy. renamed E_TRANSFORMATION_STATE_2 to E_TRANSFORMATION_STATE_FRUSTUM therefore also changed SViewFrustum::setTransformState to not tap in the pitfall again of wrong memory... - moved //! EMT_ONETEXTURE_BLEND: has BlendFactor Alphablending inline bool textureBlendFunc_hasAlpha ( E_BLEND_FACTOR factor ) const from the material renderes ( 3x declared ) to SMaterial.h - updated managed light example to use standard driver selection - BurningsVideo - LightModel reworked. Point Light & Direction Light works for Diffuse Color as expected Specular and Fog still have problems ( needs new pixel shader ) pushed burningsvideo to 0.42 for this major step - removed obsolete matrix transformations renamed E_TRANSFORMATION_STATE_2 to E_TRANSFORMATION_STATE_BURNING - cleaned line3d.h vector3d.h template behavior. many mixed f32/f64 implementations are here. i'm not sure if this should be the default behavior to use f64 for example for 1.0/x value, because they benefit from more precisions, but in my point of view the user is responsibl e of choosing a vector3d<f32> or vector3d<f64>. - added core::squareroot to irrmath.h -> for having candidates for faster math in the same file

- added AllowZWriteOnTransparent from SceneManager to burningsvideo -added hasAlpha() to ITexture This info can be used for e.q to downgrade a transparent alpha channel blit to add if the texture has no alpha channel. - FileSystem 2.0 SUPER MASTER MAJOR API CHANGE !!! The FileSystem is now build internally like for e.g. the image- and meshloader s. There exists a known list of ArchiveLoaders, which know how to produce a Archi ve. The Loaders and the Archives can be attached/detached on runtime. The FileNames are now stored as io::path. where c16 is toggled between char/wc har with the #define flag _IRR_WCHAR_FILESYSTEM, to supported unicode backends (de fault:off) Replaced most (const c8* filename) to string references. Basically the FileSystem is divided into two regions. Native and Virtual. Native means using the backend OS. Virtual means only use currently attached IArchives. Browsing each FileSystem has it's own workdirectory and it's own methods to - create a FileTree - add/remove files & directory ( to be done ) Hint: store a savegame in a zip archive... basic browsing for all archives is implemented. Example 21. Quake3Explorer shows this TODO: - a file filter should be implemented. - The IArchive should have a function to create a filetree for now CFileList is used. Class Hierarchy: IArchiveLoader: is able to produce a IFileArchive - ZipLoader - PakLoader - MountPointReader ( formaly known as CUnzipReader ) IFileArchive: -ZipArchive -PakArchive -MountPoint (known as FolderFile) IFileSystem - addArchiveLoader - changed implementation of isALoadableFileExtension in all loaders to have consistent behavior - added a parameter to IFileList * createFileList setFileListSystem allows to query files in any of the game archives standard behavior listtype = SYSTEM ( default)

- CLimitReadFile added multiple file random-access support. solved problems with mixed compressed & uncompressed files in a zip - IrrlichtDevice added: virtual bool setGammaRamp( f32 red, f32 green, f32 blue, f32 brightness, f32 contrast ) = 0; virtual bool getGammaRamp( f32 &red, f32 &green, f32 &blue ) = 0; and calculating methods to DeviceStub. - irrlicht.h changed exported irrlicht.dll routines createDevice, createDeviceEx, Identit yMatrix to extern "C" name mangling. - ParticleSystem removed the private (old?,wrong?) interface from the ParticleEffectors to match the parent class irr::io::IAttributeExchangingObject::deserializeAt tributes - Generic - vector3d<T>& normalize() optimized added reciprocal_squareroot for f64 - dimension2d added operator dimension2d<T>& operator=(const dimension2d<U>& other) to cast between different types - vector2d bugfix operator+= - C3DSMeshLoader renamed chunks const u16 to a enum removing "variable declared but never used warning" - added a global const identity Material changed all references *((video::SMaterial*)0) to point to IdentityMaterial removed warning: "a NULL reference is not allowed" - modified IRRLICHT_MATH to not support reciprocal stuff but to use faster float-to-int conversion. - core::matrix4 USE_MATRIX_TEST i tried to optimize the identity-check ( w.r.t. performance) i didn't succeed so well, so i made a define for the matrix isIdentity -ch eck for now it's sometimes faster to always calculate versus identity-check but if there are a lot of scenenodes/ particles one can profit from the fast_inverse matrix, when no scaling is used. further approvement could be done on inverse for just translation! ( many static scenenodes are not rotated, they are just placed somewhere in the world) one thing to take in account is that sizeof(matrix) is 64 byte and with the additional bool/u32 makes it 66 byte which is not really cache-fr iendly.. - added buildRotateFromTo Builds a matrix that rotates from one vector to another

- irr::array. changed allocating routine in push_back added a new method setAllocStrategy, safe ( used + 1 ), double ( used * 2 + 1) better default strategies will be implemented - removed binary_search_const i added it quite a long time ago, but it doesnt make real sense a call to a sort method should happen always. i just wanted to safe a few cycles.. - added binary_search_multi searches for a multi-set ( more than 1 entry in the sorted array) returns start and end-index - changed some identity matrix settings to use core::IdentityMatrix - added deletePathFromFilename to generic string functions in coreutil.h and removed from CZipReader and CPakReader - s32 deserializeAttributes used instead of virtual void deserializeAttributes in ParticleSystem ( wrong virtual was used) - strings & Locale - started to add locale support - added verify to string - added some helper functions - XBOX i have access to a XBOX development machine now. I started to compile for the XBOX. Question: Who did the previous implementation?. There is no XBOX-Device inhere. maybe it's forbidden because of using the offical Microsoft XDK. I will implement a native or sdl device based on opendk. irrlicht compiles without errors on the xbox but can't be used. - Windows Mobile reworked a little. added the mobile example to the windows solution for cross development. added maximal 128x128 texture size for windows mobile ( memory issues ) - Collision Speed Up The Collision Speed Up greatly improves with many small static child-nodes - added COctTreeTriangleSelector::getTriangles for 3dline from user Piraaate - modified createOctTreeTriangleSelector and createTriangleSelector to allow node == 0, to be added to a meta selector - CSceneNodeAnimatorCollisionResponse has the same problem as CSceneNodeAnimat orFPS on first update: Problem. you start setting the map. (setWorld). First update cames 4000 ms l ater. The Animator applies the missing force... big problem... changed to react on first update like camera. - add Variable FirstUpdate. if set to true ( on all changes ) then position, lasttime, and falling are initialized

-added #define OCTTREE_USE_HARDWARE in Octree.h if defined octtree uses internally a derived scene::MeshBuffer which has the possibility to use the Hardware Vertex Buffer for static vertices and dirty indices;-) if defined OCTTREE_USE_HARDWARE octree uses internally a derived scene::CMes hBuffer so it's not just a replacement inside the octree. It also in the OctTreeScen eNode. #define OCTTREE_PARENTTEST is also used. It's skip testing on fully outside and takes everything on fully inside - virtual void ISceneNode::updateAbsolutePosition() - changed inline CMatrix4<T> CMatrix4<T>::operator*(const CMatrix4<T>& m2) const - changed inline bool CMatrix4<T>::isIdentity() const to look first on Translation, because this is the most challenging element - virtual core::matrix4 getRelativeTransformation() const Hierarchy on Identity-Check 1) ->getRelativeTransform -> 9 floating point checks to be passed as Ident ity 2) ->isIdentity () -> 16 floating point checks to be passed as Identity - inline void CMatrix4<T>::transformBoxEx(core::aabbox3d<f32>& box) const added isIdentity() check - changed CSceneNodeAnimatorCollisionResponse - added CSceneNodeAnimatorCollisionResponse::setGravity needed to set the differents Forces for the Animator. for eq. water.. - added CSceneNodeAnimatorCollisionResponse::setAnimateTarget - added CSceneNodeAnimatorCollisionResponse::getAnimateTarget - changed CSceneNodeAnimatorCollisionResponse::animateNode to react on FirstUp date - TODO: set Gravity to Physically frame independent values.. current response uses an frame depdended acceleration vector. ~9.81 m/s^2 was achieved at around 50 fps with a setting of -0.03 may effect existing application.. - SceneNodes - CSkyDomeSceneNode moved radius ( default 1000 ) to constructor added Normals added DebugInfo added Material.ZBuffer, added SceneManager - CVolumeLightSceneNode: changed default blending OneTextureBlendgl_src_color gl_src_alpha to EMT_TRANSPARENT_ADD_COLOR ( gl_src_color gl_one ) which gives the same effect on non-transparent-materials. Following the unspoken guide-line, lowest effect as default - changed SceneNode Skydome from f64 to f32 - AnimatedMesh Debug Data: mesh normals didn't rotate with the scenenode fixed ( matrix-multiplicatio n order)

- Camera SceneNode setPosition Camera now finally allow to change position and target and updates all effected animators.. - Device: added the current mousebutton state to the Mouse Event so i need to get the current mouse state from the OS - GUI - CGUIFont: - added virtual void setInvisibleCharacters( const wchar_t *s ) = 0; define which characters should not be drawn ( send to driver) by the font. default: setInvisibleCharacters ( L" " ); - added MultiLine rendering should avoid to us CStaticText breaking text in future - CGUIListBox - changed Scrollbar LargeStepSize to ItemHeight which easy enables to scroll line by line - CGUIScrollBar - bug: event lost when moving outside the window - bug: Scrollbar notifyListBox notify when the scrollbar is clicked. - changed timed event in draw to OnPostRender - added GUI Image List from Reinhard Ostermeier, modified to work - FileOpenDialog changed the static text for the filename to an edit box. - changed the interface for addEditBox to match with addStaticText - changed the interface for addSpinBox to match with addEditBox - added MouseWheel to Spinbox - changed CGUITable CLICK_AREA from 3 to 12 to enable clicking on the visible marker - CGUISpritebank removed some crashes with empty Sprite banks - IGUIScrollBar added SetMin before min was always 0 changed ScrollWheel Direction on horizontal to move right on wheel up, left on wheel down - IComboBox: added ItemData - optimized IsVisible check in IGUIElement::draw - Image Loaders - added TGA file type 2 ( grayscale uncompressed ) - added TGA file type (1) 8 Bit indexed color uncompressed ColorConverter: - added convert_B8G8R8toA8R8G8B8 - added convert_B8G8R8A8toA8R8G8B8

- Media Files - added missing shaders and textures to map-20kdm2. Taken from free implementation - ball.wav. adjusted DC-Offset, amplified to -4dB, trim cross-zero - impact.wav clip-restoration, trim cross-zero - added gun.md2, gun.pcx to media-files - added new irrlicht logo irrlicht3.png - OctTree -added #define OCTTREE_PARENTTEST ( default: disabled ) used to leave-out children test if the parent passed a complete frustum. plus: leaves out children test minus: all edges have to be checked - added MeshBuffer Hardware Hint Vertex to octtree - CQuake3ShaderSceneNode: - removed function releaseMesh Shader doesn't copy the original mesh anymore ( saving memory ) so therefore this (for others often misleading ) function was removed - changed constructor to take a (shared) destination meshbuffer for rendering reducing vertex-memory to a half - don't copy the original vertices anymore - added deformvertexes autosprite - added deformvertexes move - added support for RTCW and Raven BSPs ( qmap2 ) - added polygonoffset (TODO: not perfect) - added added nomipmaps - added rgbgen const - added alphagen - added MesBuffer Hardware Hint Vertex/Index to Quake3: static geometry, dynam ic indices - added Quake3Explorer examples - added wave noise - added tcmod transform - added whiteimage - added collision to Quake3Explorer - renamed SMD3QuaterionTag* to SMD3QuaternionTag* ( typo ) - updated quake3:blendfunc - added crouch to Quake3Explorer (modifying the ellipsiodRadius of the camera animator ) added crouch to CSceneNodeAnimatorCameraFPS still problems with stand up and collision - Quake3MapLoader modified memory allocation for faster loading - Quake3LoadParam added Parameter to the Mesh-Loader - added The still existing missing caulking of curved surfaces. using round in the coordinates doesn't solve the problem. but for the demo bsp mesh it solves the problem... (luck) so for now it's switchable. TJUNCTION_SOLVER_ROUND default:off - BurningVideo - pushed BurningsVideo to 0.40 - added blendfunc gl_one_minus_dst_alpha gl_one - added blendfunc gl_dst_color gl_zero

added blendfunc gl_dst_color src_alpha modified AlphaChannel_Ref renderer to support alpha test lessequal addded 32 Bit Index Buffer added sourceRect/destRect check to 2D-Blitter ( slower, but resolves crash ) added setTextureCreationFlag video::ETCF_ALLOW_NON_POWER_2 Burning checks this flag and when set, it bypasses the power2 size check, which is necessary on 3D but can be avoided on 2D. used on fonts automatically. - added Support for Destination Alpha - Direct3D8 - added 32 Bit Index Buffer - compile for XBOX - Direct3D9 - fixed crash on RTT Textures DepthBuffer freed twice. added deleteAllTextures to destructor - NullDriver - removeallTextures. added setMaterial ( SMaterial() ) to clean pointers for f reed textures - ISceneCollisionManager::getSceneNodeAndCollisionPointFromRay() allows selecti on by BB and triangle on a heirarchy of scene nodes. - Triangle selectors created from animated mesh scene nodes will update themsel ves as required to stay in sync with the node. - IVideoDriver has methods to enumerate the available image loaders and writers . - Octtree scene nodes are now IMeshSceneNodes rather than ISceneNodes, and so y ou can call getMesh() on them. - New scene parameter B3D_LOADER_IGNORE_MIPMAP_FLAG to ignore the often missing mipmap flag in b3d files. If this parameter is true, the old pre Irrlicht-1.5 b ehavior is restored. - Added Mipmap LOD Bias attribute to MaterialLayer. - Added ColorMask support to selectively disable color planes on rendering. - Added support for all available depth test functions. - Add an outNode to getCollisionPoint() that returns the scene node that was hi t, as well as the triangle. - Initial support for Alpha To Coverage, needs some more fixing until it works on all supported platforms. - Added support for Anti-Aliasing modes per material - Added an ICollisionCallback to ISceneNodeAnimatorCollisionResponse, to inform the application that a collision has occured. Thanks to garrittg for this. - Added an startPosition parameter to createFlyCircleAnimator() to allow starti ng the animator at any position on the circle. - Many uses of dimension2d<s32> changed to dimension2d<u32>, including IImage, ITexture and screen dimensions. You will have to change (at least) createDevice

() calls to use dimension2d<u32> - Added Doublebuffer flag to SIrrCreationParameters, for better finetuning - Added Stereo-Framebuffer support for professional OpenGL cards - Added IFileSystem::createMemoryWriteFile() to allow creation of an IWriteFile interface that uses an application supplied memory buffer. - Added an IVideoDriver::writeImageToFile() overload that can take an IWriteFil e interface. - (Internal) Replaced CMemoryReadFile with CMemoryFile, that also implements an IWriteFile interface. - Added an optional light manager to the scene manager to allow the user applic ation to turn lights on and off during scene rendering. This can be used to pro duce "zoned" lighting. See example 20.ManagedLights. - Added a method to flip the Y movement of the FPS camera. - The Anisotropy filter can now be set to the AF value per texture layer. So no forced MAX_ANISOTROPY anymore. .irr files will probably fail, though. - AntiAlias parameter in SIrrCreationParameters is now an u8 value specifying t he multisampling level (0 for disabled, 4,6,8, and others for anti-aliasing) - D3D devices use DISCARD for windowed renderbuffers now, can be faster. - Changed behavior of PixelBlend16() / PixelBlend16_simd() so that they treat t he 1 bit alpha of the source pixel as boolean, i.e. they draw either the source pixel, or the destination pixel, rather than "blending". (Issue revealed by the fix to IVideoDriver::makeColorKeyTexture()). - IVideoDriver::makeColorKeyTexture() bug fixed so that only alphas, not whole texel colors, are zeroed. An optional parameter allows using the old (buggy) beh avior for backwards compatibility. - position2d is now a synonym for vector2d. position2d is therefore marked as d eprecated, although it's unlikely to be removed. - ISceneNodeAnimator now has a hasFinished() method. - ISceneNodeAnimatorCollisionResponse exposes the target node. Setting the node again resets the last position, allowing the node to be teleported. - Add a hitPosition out parameter to ISceneCollisionManager::getCollisionResult Position() - this is a (small) API breaking change. ------------------------------------Changes in version 1.5.2 (16.12.2009) - Properly check boundaries in getFont and setFont. - Reinit values in the driver when scene manager is cleared. - Normals handling fixed in createMeshWithTangents, existing normals are not al ways destroyed now. - Fix terrain smoothing, bug found by loverlinfish

- SOLARIS recognition removed. Please specify the platform define manually. Thi s allows for compilation under sparc/Linux and sparc/Solaris - Some uninitialized variables fixed - FreeBSD joystick support added (for Debian package) - Fix cursor problems found by buffer and by rvl2 as described in http://irrlic ht.sourceforge.net/phpBB2/viewtopic.php?t=34823&highlight= - OSX/XCode updates - MS3D loader bug fixed - Float parse bug fixed ------------------------------------Changes in version 1.5.1 (05.08.2009) - Make sure a missing font does not corrupt the skin. - Fix getAngle in vector2d as suggested by xray. This has only a minor impact o n s32 vectors. - bugfix: CGUIFont::getCharacterFromPos regards now kerning (found by Arras) - Add support for range fog in some OpenGL versions. - Fix for shadow volume removal, submitted by vitek. - Avoid using X11 autorepeat to deal with broken X11 versions. - Speculars are properly exported into mtl files now, instead of corrupting the m. - Binary type loading in attributes fixed. - bugfix: Use make_lower throughout for spritebank filenames (found and patched by Ion Dune) - STL loader fixed: Right-handedness corrected, normals and bboxes are correctl y added now. - bugfix: CUnZipReader::openFile no longer returns true for empty files. Corres ponding test added. - Big endian issues in .x loader fixed. - HSLColor methods repaired. - copyToScaling fixed. - Fixed problem with highlighting menus when mouse was outside sub-menu area. - bugfix (2796207): menu acted (wrongly) on left-click down instead of left-cli ck up. - bswap16 fallback macro fixed

- getBaseName fixed to work correct with dots in filenames. - static method isDriverSupported allows for simple check of available drivers. - Some defines added to check for the Irrlicht version of the library. - Make sure all renderstates are properly initialized - Wrong size for main depth buffer fixed. - Fix 3ds shininess to the allowed range. - Fix loading of Collada files from irrEdit 1.2 - Remove texture pointers after texture clear. - WindowsCE pathnames fixed. - Some virtuals are now overridden as expected. - Incomplete FBOs are properly signalled now - Update to libpng 1.2.35, fixed issues on 64bit machines with system's libpng. - Fixed wrong grab/drop in setOverrideFont - Added draw2dRectOutline - rectf and recti added. - Fix ALPHA_CHANNEL_REF to a fixed check for alpha==127 as expected. - Fixed OSX device bug where screen size was not set in fullscreen mode. - cursor setVisible changed to be called less often. - OpenGL version calculation fixed. - OSX device now supports shift and ctrl keys. - Fixed ambient light issues in burningsvideo. - device reset for d3d fixed when using VBOs. - Fix dimension2d += - MD2 mesh loader: Now uses much less memory, reduced number of allocations whe n loading meshes. - OpenGL render state (texture wrongly cached) fixed. - Fixed animator removal. - Checnged collision checks for children of invisible elements to also be ignor ed (as they're actually invisible due to inheritance). - Fix terrain to use 32bit only when necessary, make terrain use hw buffers. He ightmap loading and height calculation fixed. Visibility and LOD calculations up dated.

- Some mem leaks fixed - FPS camera resets the cursor better ----------------------------------Changes in version 1.5 (15.12.2008) - Construction calls for FPS camera changed to take speed in units/milliseconds , just as the setSpeed method does. - Code::Blocks workspaces added. C::B projects (using gcc) now output to /lib/g cc and /bin/gcc, when built on either Windows or Linux. - Added a test suite in the /tests directory. This can be used to perform regre ssion tests, and should be updated with new tests to verify fixes or validate ne w features. - Changed the preferred way of altering light node's radius: Use the new member methods of ILightSceneNode instead of directly modifying the SLight structure. - Changed the initial attenuation back to (0,1/radius,0). To override this valu e simply change the attenuation in the SLight (lightnode->getLightData().Attenua tion.set(x,y,z)) - Dirty fix for OSX device setResizable and a bug fix to do with resizing the d evice. - Terrain heightmap and texture were flipped in order to draw them as expected (looking onto the terrain from high above will just look like the actual texture /heightmap). - Significant internal change to the way that FPS camera jump speed and collisi on response animator gravity interact. The behavior is now much more realistic, but it will require you to adjust your jump speed and gravity. - Skybox won't be culled anymore by nearplane or farplane. - BBoxes of animated meshes (skinned meshes) are updated again. - Lost devices (as found with D3D) are properly handled now. So the screen can be resized or minimized without crashing the app. - Renamed IGUIElement::setRelativePosition(const core::rect<f32>& r) to IGUIEle ment::setRelativePositionProportional(), as it has radically different functiona lity from setRelativePosition(const core::rect<s32>& r) - Added IGUIElement::setRelativePosition(const core::position2di & position) to set a new position while retaining the existing height and width. - Many Collada fixes. z_up coords are supported now, texture coords are properl y loaded. Transparency is supported. - Camera scene node rotation and target can now be bound together so that chang ing one automatically changes the other (as the FPS camera has always done). See ICameraSceneNode::bindTargetAndRotation() - Removed the extra libpng files for OSX. OSX now also uses the default libpng. - Enhanced PCX support with some more color formats and write support.

- Fixed LMTS problems with extra data in files. - Removed VS6 .dsw / .dsp project files - VS6 is no longer supported. - Particles can be scaled during animations. Particle scaling needs to happen i n the emitter now, instead of in the Particle system scene node. Deprecation met hods will guide the user. - ISceneNode::setParent and addChild now updates node SceneManager pointers if the node was from another SceneManager. - Basic support for joystick input events on Windows, Linux, SDL and OSX. Teste d with wired Logitech and Thrustmaster wired controllers and XBox 360 wireless c ontroller ( http://tattiebogle.net/index.php/ProjectRoot/Xbox360Controller/OsxDr iver ) - Fixed scaled octree nodes being incorrectly frustum culled. - FSAA under OpenGL and Win32 added. Now all hw drivers and platforms should su pport it. - Unlimited RTT fix for D3D systems. Depth buffers are now shared if possible, otherwise a new depth buffer is generated. In order to save VidMem one should cr eate RTTs starting with the largest one. - Avoid RTTs with nonFBO-support under OpenGL which are larger than the screen. Since we rely on rendering into textures in this case we need to clamp the size by the screensize. - Fixes for getAbsoluteFilename under Linux in order to return a filename inste ad of en empty string in case the file doesn't exist. - Use absolute path names when creating / finding textures. - Font tool implementation for Linux with xft, by Neil Burlock. - Support for normals and UV coords from DeclData in .x files. - Modified line2d<T>::intersectWith() to cover more cases. - Added IVideoDriver::drawPixel(). - Moved the window pointer from endScene to beginScene, as this is required for OpenGL support of external window pointers. - Fix for terrain culling. - Added minimize button to win32 window (if resizable) - Major API change: RTTs are now created via addRenderTargetTexture instead of createRenderTargetTexture, which allows to retrieve them from the texture cache, but also changes the way of removing the RTTs, and especially one must not drop the pointer anymore. - WindowsCE-Bugfix - disableFeature can be used to override feature support of the video driver. - draw2DImage can now also handle RTTs under OpenGL (which were flipped before) .

- Ogre mesh format fixes for proper texture support. - Added .obj mesh writer. - Some core::string constructors made explicit to avoid unintended conversions. Just add core::stringc() or core::stringw() around the old code to avoid warnin gs. - IdentityMatrix is now a properly defined global, with external visibility on all platforms. - Bugfix for context releases with glx 1.3 on error. - Removed constraints for sizes of the terrain scene node. - Support for 32bit indices in a special MeshBuffer class. - isBetweenPoints return true now even for the begin and end points, i.e. line segments are now including their start and end. - Fix XML reader creation for non-existing files and invalid callbacks. - Changed interpretation of MaterialTypeParam==0 in transparent materials. Now it's consistent with all other values, but one has to set the value to 0.5 to ge t the old behavior (slightly faster rendering, but no smooth borders) - Replaced transformBox by transformBoxEx in some internal methods to avoid maj or malfunction of the transformations. - Fix use of zip file inside zip files. - Avoid loading textures which are not used by the mesh in b3d loader. - Added scaleTCoords methods to MeshManipulator - Enable use of other meshes for shadow mesh generation, can be used to speed u p shadow generation and rendering for complex meshes. Patch based on a version b y tonic. - Fixed usage of SIrrCreationParameters struct, which dind't have copy construc tor and assignment operator anymore, since the Irrlicht version string was made const. - New glext.h (version 41) and glxext.h (version 20) supporting OpenGL 3.0 - Added support for read-only locking of textures. Can speed up those calls. - Added support for locking RTTs under OpenGL. - Implementation of UserData events from system events. - ICameraSceneNode::setIsOrthogonal replaced by a parameter to setProjectionMat rix. - All meshbuffers are now dynamically allocated to avoid problems with grabbed buffers, which may be deleted before the last drop happens (due to static memory allocation). - Enhanced scene graph traversal with example from rogerborg.

- FPS camera disabling of event receiver works better now. - scene deserialization allows for a user defined callback after a new scene no de is created. - Fixed tangent mesh loading from .irrmesh files. - OpenGL clamp modes are now properly set. - IMeshManipulator::transformMesh renamed to transform, also supports meshbuffe rs now. scaleMesh renamed to scale, supports meshbuffers as well. - vector3d::rotationToDirection added. - New mesh generators for cone and cylinder. - Hardware accelerated Vertex and Index Buffer support finally integrated into Irrlicht. Thanks to a resource handling idea by Klasker and the almost immediate implementation by Luke, Irrlicht now supports VBOs under OpenGL and D3D. Hardware buffers make rendering the same vertices much faster. To use this fe ature with a mesh, simply set a usage type via MeshBuffer->setHardwareMappingHin t(scene::EHM_STATIC). The driver will upload the vertices and indices on the nex t draw and reuse this information without the need to upload it each frame. Vertex and Index buffers can also be updated separately, which is e.g. useful for the terrain node's LOD. - Changed FBO creation according to Nadro's patch. Seems to have zbuffer proble ms currently. - Update to libpng 1.2.29 - Compiler flag for PerfHUD support added. - recalculateNormals and tangent space creation enhancements by ryanclark. - Added getColorFormat methods for device and driver, returning the color forma t of the device's window and the driver's framebuffer. - Added isFullscreen method. - Added isWindowFocused and isWindowMinimized methods. - Screenshots are now always made from the frontbuffer, so always the last comp letely rendered image is captured. However, overlapping windows may corrupt thos e parts of the screenshot (as was previously happening with d3d already). - New device creation parameter to disable Irrlicht's system event handling. - New device creation parameter to specify depth bits. - New device creation parameter to request alpha channel in framebuffer. - Draw2DImage methods under OpenGL now also handle RTTs correctly. - Fixed RTT bug which lead to strangely clamped textures. - Speed improvement for screenshots on some Intel cards under OpenGL.

- My3D file loader fixed. - Terrain mesh performance increased. - Fixed mem leak in cube node. - Compiler errors in shaders won't corrupt the material renderer list anymore. - Quake3 shader files now have properly working texture matrices again. - FPS and Maya style cameras are now standard cameras with a special animator. - ISceneNodeAnimator now inherits IEventReceiver - New method ISceneNodeAnimator::isEventReceiverEnabled, returns false by defa ult - CCameraSceneNode::OnEvent passes events to animators with enabled event rece ivers - ISceneNodeAnimatorCameraFPS and ISceneNodeAnimatorCameraMaya interfaces for changing camera settings at run-time. - Changed SExposedVideoData to use void* instead of s32. Fixed 64bit portabilit y. - Added support for front face culling. - Fix for HLSL shaders in one file. - Billboard::setColor bug fix by rogerborg. - Scene node sorting uses squared distances now. - Enhanced API for hte math functions. Many of them will now return a reference to *this for chained method invocations. - prevent .x loader to load .xml files. - AntiAlias support for OSX device. - Period character handling bug fixed. - New filesystem methods for filename handling. - added getVideoModeList and getDesktopResolution support for OSX - Octree supports tangent meshes now. Some performance improvements for the gen eration. - Fix mouse pointer and fullscreen mode problems in OSX. - Make cube and sphere scene node a mesh scene node (for access to the cube/sph ere mesh). - Support for normal maps in 3ds files. Mem leak fixed. Loading for files with keyframe data fixed. - BillboardTextSceneNode is now an IBillboardSceneNode and an ITextSceneNode. - Support for external windows under Linux. - .X loader bug fixes.

- Better debug visualization for MeshSceneNodes. - Fixed bug in material serialization when using the NullDriver. - Fix for Win32 CursorControl::setVisible - Support for LWO files. - Support for Collada 1.4 files. - Better and faster terrain smoothing by Frosty Topaz. - Fixed a performance bug in ISceneNode constructor reported by izhbq412 - Win32 device now makes the cursor invisible immediately when setVisible(false ) is called. - Command line tool for mesh conversion added. - Added volume light scene node - .obj files now won't duplicate vertices unnecessarily. This allows recalculat ion of smooth normals and other things, and is also faster when rendering. The l oading is a little slower now. They also support normal maps and texture clamping now. Group support added, can be ignored via scene manager attribute scene::OBJ_LOADER_IGNORE_GROUPS. Normals will be calculated if the file doesn't provide them. - Better fix for hires timers on dual core machines by RogerBorg - added Initial Windows Mobile 6 Version. - Windows Mobile 6 SDK - Visual Studio 2005 - Added checks to avoid buffer overrun in b3d loader. Enabled normals calculati on in all cases, previously it was not done for lightmapped meshes. Fixed transparency support. Added mipmap creation flag support which might di sable mipmap creation too often. Should be checked. - Burningvideo: MipMap Selection repaired - renamed private Driver function getTextureSizeFromImageSize to getTextureSize FromSurfaceSize - Added collision manager speedup patch by RogerBorg. - D3D drivers now releases the IImage member from initialization, thus freeing lots of memory. The image is accessible via the driver anyway. - SDL device character handling enhanced. - MeshBuffers can now access the elements of the S3DVertex base class in all ve rtex types directly, instead of using the getVertices() pointer access. This sim plifies simple mesh manipulations as it does not require a switch statement over all vertex types. - More OpenGL renderstate bugs fixed - GLSL changes for setting arrays. Also allow for only pixel or vertex shader t o be set.

- Bugfix for removeChild in AnimatedMeshSceneNode. - Some bugfixes for Joint handling and skinned meshes. Added getJointCount in I AnimatedMeshSceneNode and isStatic in ISkinnedMesh. - Added WAL image format support based on the original loader by Murphy McCaule y, written for Irrlicht around version 0.7. - OpenGL RTTs now also support alpha values. - New method driver->getVendorInfo() to query information about the actual hard ware driver. - Fixed somed CQuake3ShaderSceneNode problems. - Changed BurningsVideo internal Vertex Format. version changed to 0.39 - SceneManager: Removed the seperate rendering states for quake3 Shader Scene Nodes. Nodes are now solid or transparent. ( but still more states are needed ) - GUI: - Editbox didn't draw children - Checking IsEnabled is now consistent across all GUI elements - Move window to front bug fixed. - Disabling the BMP loader now compiles without the built-in font - Added setTextAlignment to IGUIComboBox - Avoid dropping skin pointer which is in use. - Better warning for fonts without regions (sometimes wrong file is loaded by the user). - Fixed a bug in CGUISpriteBank which caused a crash when a non-looping anima ted sprite reached the end of its animation. - Modal screens no longer flash invisible children when rejecting a focus cha nge. - Finally added StarSonata patch with table element and TabControl additions. Table is based on MultiColor listbox by Acki, and has loads of changes by CuteA lien. ------------------------------------------Changes in version 1.4.2 (22.9.2008) - Unified the handling of zwrite enable with transparent materials on all hw ac celerated drivers. This means that all transparent materials will now disable ZW rite, ignoring the material flag. There is a scene manager attribute, though, which will revert this behavior t o the usual SMaterial driven way. Simply call SceneManager->getParameters()->setAttribute(scene::ALLOW_ZWRITE_ON_TRANSPAREN T, true) and set the SMaterial flag as desired. - Some changes for texture matrices in q3 shaders. - Added BlindSide's irrAllocator patch for proper TextureMatrix release under W in32 with any CRT library. - Added VC9 project files. - Added getEmitter for particle system scene nodes.

- Fixed rounding problem in getScreenCoordinatesFrom3DPosition - Fixed Software renderer color flicker, was a shift bug I believe. - irrMap fix to make root node always black, by rogerborg. - Possible core dump fixed in particle system node, by CuteAlien. - Mem leak fixed in b3d loader. - Avoid double rendering of child nodes of joints. - Support for d3d draw2dimage clipping by CuteAlien. - Fixed an animation transition bug, pointed out by wuallen. - Fixed the major problem with OpenGL drivers, that claim to be 2.x compatible, but don't offer NPOT support (well, they do, but only in sw rendering...). Now we check for the extension string only. - Fixed .obj loader bug which inserted vertices in wrong buffers. - Fixed minor mem leak in Linux device. ------------------------------------------Changes in version 1.4.1 (04 Jun 2008) - MD3 meshes are movable again. - New JPG image writer version by Vitek. - Texture matrix fixes, all methods should now work as expected. - Some container methods now return the this pointer after member functions hav e been called on them, in order to allow call chains. - Some new methods for SColorf access, for uniform API of all colors. - bug fix for SMaterialLayer equality check. Did only check the TextureMatrix p ointers, instead of the matrices. - New getMesh method for the SceneManager, which takes an IReadFile instead of a filename. - Support for flags _WIN32 and _WIN64 in addition to WIN32 and WIN64 added, thi s simplifies usage of Irrlicht headers under MSVC. - Fixed a crash in GUIMeshViewer - new string method findLastChar by Halifax - GUIEditBox got the 1 pixel shift after click fixed. - Some debug visualization has been fixed for skinned meshes - Undef PI symbol before declaring core::PI to avoid compilation problems - SAnimatedMesh now properly returns properties of Meshes[0] if those exist, su ch that it should be usable in place of an SMesh again.

- Fixed 2d initialisation in opengl and d3d9 driver. This should fix problems w ith render states mixing up and distrubing, e.g. skin effects. - Avoid a crash when passing setSkin the current skin - Fixed current frame calculation for non-looped animations. Bug reported by gr eenya. - Fixed bug in CBillboardSceneNode::setColor, reported by rogerborg - Fixed clipping of menu, toolbar and combo box GUI elements, reported by green ya - setNotClipped now applies all the way up to the root of the GUI environment , rather than just to the next parent - Made new scene managers use the original manager's GUIEnvironment, reported b y MasterGod - Fixed IGUICheckBox::setEnabled, reported by Dorth - Fixed the FollowSpline animator to avoid crashes when only one waypoint is gi ven. - OpenGL VolumeShadow now uses glPolygonOffset to avoid zbuffer artifacts. - Fixed meshbuffer corruption in append methods. - Fixed mem leaks in irrArray. - Fixed minor bugs in ISceneNode and ISceneManager. - Fixed the MeshCache handling of GeometryCreator meshes. - Terrain LOD bugfix. - Some Collada 1.3 loader enhancements and bug fixes. - Fixed a bug in CGUISpriteBank which caused a crash when a non-looping animate d sprite reached the end of its animation. - Enhanced the .obj loader with the patch from ryanclark. This allows for recal culation of smoothed normals of the mesh, also should decrease the tri count on some meshes. - Avoid the global Logger to be destroyed too early. - Function setbit was renamed to setbit_cond to avoid name clashes. - Fixed .x animations with multiple references to the same joint from different meshes. Fixed texture path problems. - Support for Milkshape 1.8 files, also with multiple weights per joint. - The config file now also supports _IRR_OSX_PLATFORM_ and _IRR_USE_OSX_DEVICE_ . This allows to use the Linux device (X11 support) on OSX. - Avoid terrain scene node crash when heightmap cannot be loaded. - Speed improvements for WaterSceneNode.

- FlyCircle animator now also works for upvectors (Direction parameter) which a re not (0,1,0). Is also faster now, since most calculations are done on init. Th anks to Dorth for working on this. - The 3ds loader correctly creates a texture matrix when texture tiling propert ies are found in the file. - Fix for S3DVertex comparison operators. Used some wrong logic. - Bugfix getCurrentRenderTargetSize in D3D drivers. Due to signature difference s a wrong virtual method was chosen. Thanks to Jiang for finding it. ------------------------------------------Changes in version 1.4 (30 Nov 2007) - Major API change: All material properties which are available per texture lay er (curently texture, texture matrix, texture filters, and texture wrap mode) ar e separated into a new struct SMaterialLayer. You can access them via the array TextureLayer[] in SMaterial. The texture matrix methods in SMaterial are still a live, and also textures can be accessed via methods in SMaterial now. But still, many places in user code need some update (usually changing material.Textures[i ] to material.TextureLayer[i].Texture etc.) - Major API rewriting for proper const usage. Now, most getter methods are cons t and so are the larger parameters and return values. Moreover, many methods tak ing only unsigned numbers now use u32 instead of s32 in order to recognize this limitation from the method's signature. - the base class for nearly all Irrlicht classes has been renamed from IUnknown to IReferenceCounted - Fixed Skybox texture orientations. They are now displayed non-flipped. Existi ng skyboxes have to be changed, though: Exchange left and right texture. Texture s from Terragen and other tools can be used directly, now. Quake maps will also need the right/left exchange. - Added ITexture::isRenderTarget() - Added STL mesh file format reader and writer. - Added IMeshManipulator::createMeshWelded which creates a copy of the mesh wit h similar vertices welded together. - Irrlicht now has its own file format for static meshes. It is based on xml an d has the extension .irrmesh. Irrlicht is able to write every IMesh to this file format , and of course to read it back again. - Irrlicht is now able to write Meshes out into files. Use ISceneManager::creat eMeshWriter() to obtain an interface with which you can write out meshes. Currently, an own .irrmesh file format is supported as well as the COLLADA file format. - fixed the keyboard autorepeat difference betwenn Linux and Windows. Thanks to denton we now have only KeyPressed events on both systems in case of autorepeat .

- Added several new particle emitters and affectors from IrrSpintz. Also some n ew getter and setter methods were added. - D3D transparent materials do not disable zbuffer writing automatically anymor e. This has to be done by the user to keep those settings configurable. - OpenGL texture now also require a regenerateMipmapLevels() after unlocking. T his is the same as for d3d devices now. - Point sprite support in the driver. Point sprites use just one 3d vertex and a size to create a textured billboard on the GPU. This can provide fast particle systems, especially in combination with shaders. The proper particle extension will follow later on as it needs some more refactoring. - OpenGL 2D drawing accuracy fix by tuXXX - Added OnResize and getCurrentRenderTargetSize to the software video drivers. - Added Spot light type for dynamic lights. Note that both position and directi on for all dynamic lights are now determined by the LightSceneNode, the SLight a ttributes are only used for internal purposes. API change! One can easily work around this change by setting the LightSceneN ode's Position and Rotation instead of the SLight's. This change won't provoke a compile error, though, and can hence go unrecognized besides the visual problem s. The lights use a default direction (0,0,-1) which is rotated by the usual sce ne node transformations and can hence be modified by scene node animators. A change in the Radius usage can lead to strange artifacts. Just increase the Radius in this case. further handling of Radius is to be discussed. - Added per pixel fog support for OpenGL. - Added driver support for user defined clip planes, based on mandrav's patch. The OpenGL version is more picky about ModelView matrices, so it's best to se t the projection plane at the time it is used. - .obj files now load relative indices correctly. Collada files load textures. - A new MeshBuffer implementation is publicly available. It supports a shared v ertex list for all MeshBuffers, used for MS3D meshes. - MeshBuffers can recalculate their BoundingBoxes on their own now, no need for MeshManipulators. New append methods help to merge MeshBuffers. take care that the types match! - The new texture generation mode is working. With ETCF_NO_ALPHA_CHANNEL textur es are generated without ALPHA bits reserved. - D3D9 hardware mipmap updates are re-enabled, problems should be reported. - In some cases fullscreeen modes under win32 should have a better frame rate n ow. - Fixed the hillplane mesh to work with non-quadratic dimensions as well. Chang ed the interface also, so use a u32 dimension to specify the tilecount now. - Hires timers are disabled on windows systems with more than one CPU, due to b ugs in the BIOS of many multi-core motherboards. To enable hires timers in your p roject,

use SetProcessAffinityMask to set to use only one CPU before creating the dev ice. - OpenGL render targets now the same way up as the other drivers. If you have written opengl shaders that use render targets then you'll need to change you r texture coordinates accordingly. - Fixed some OpenGL renderstate stuff. setBasicRenderstate returns with active texture layer 0. The material renderer must return from OnUnset with the same active texture layer. The alpha test is disabled and the texture mode should be GL_MODULATE. - Fixed CSoftwareTexture2::getOriginalSize, reported by CaptainPants. Added a new method CSoftwareTexture2::getMaxMipMapSize to return the size of the larg est mipmap, which is used by texelarea instead of getOriginalSize. - Changed parameter order of addArrowMesh and added default parameters such that it's enough to set the color (or even just the name). - Fixed bugs in MY3D and OBJ loader. - Added IMeshCache::clearUnusedMeshes(). This allows the user to remove meshes that are sitting in the mesh cache but aren't used by any scene nodes. This is useful for example when changing levels. - Added IUnknown::getReferenceCount() - createDevice now reports errors if the driverType is unknown, previously it created a window but populated it with a null driver without any warning. - Fixed a bug in CBillboardTextSceneNode::setText where the old text was not cleared. - Changed irrArray::linear_search to use the == operator rather than < This may be slower in some cases, but it no longer returns false positives when searching arrays of classes that override the < operator but !(x<y) && !(y<x) does not necessarily mean x==y (vectors, positions etc). - Fixed getSize/getOriginalSize method inversion in OpenGL textures. - Added per texture-layer filter settings, i.e. one can choose to filter only chosen texture layers. If all layers are set to the same value the convenience function material.setFlag(EMF_BILINEAR_FILTER, boolean) can be used, TRILINEAR_FILTER and ANISOTROPIC_FILTER do work, too. In all other cases material.BilinearFilter[i] (resp. TrilinerFilter[i] or AnisotropicFilter[i]) shall are to be used. - Added adjustable Attenuation for dynamic lights. This allows to change the intensity of a light based on its distance. The default attenuation changed from (0,1/radius,0) to (1,0,0) which means no effect by distance. Good values for distance effects simply add small values to the second and third element. - Fixed a typo to do with 2nd light vectors in opengl parallax and normal map renderers. GUI:

- Fixes to menu and listbox (de)serialization, and custom listbox colors by Cut eAlien. - Added EGET_ELEMENT_CLOSED GUI event type. Absorb this event to cancel closing a window. - Added _IRR_COMPILE_WITH_GUI_ to allow compiling without the GUI. This is useful if you use another GUI system (ie CEGUI) or are using Irrlicht inside another window. You will have to supply an external IGUIFont if you wi sh to use font scene nodes as there will be no GUI environment available to load fonts. - Added 7 more symbols to the built-in font and skin. EGDI_MORE_LEFT, EGDI_MORE_RIGHT, EGDI_MORE_UP, EGDI_MORE_DOWN: "<<" symbols indicating there is more content in that direction. EGDI_WINDOW_RESIZE: Window symbol for resizing by clicking the bottom right corner of a window. EGDI_EXPAND, EGDI_COLLAPSE: Plus and minus buttons for trees. - Added IGUISkin::draw2dRectangle, so skins can override the default highlight. - EGET_ELEMENT_FOCUS_LOST and EGET_ELEMENT_FOCUSED events can now be absorbed by returning true in OnEvent. Absorbing these events will cancel the focus change. - IGUIEnvironment::setFocus and removeFocus now return bools. - New SEvent.GUIEvent.Element. Points to a second element that is being used in the event. During a EGET_ELEMENT_FOCUS_LOST event it points to the element which would like the focus. - Fixed the default font icons so they have a black border and are not invisible in default listboxes. Old font tool textures now keep their color so colorful fonts are possible by editing the font's texture. The colors of completely transparent areas are no longer kept when generating the texture from an image. Added builtInFont.bmp for ease of editing. - IGUIElement changes: Most elements can now be accessed using the keyboard. Use space and return to select or deselect, escape to cancel selection (ie while pressing a button with space or return), and the cursor keys where appropriate. Added navigation through the GUI using tab and the shift and control keys. Use these new methods to control tab navigation: setTabStop - set this to true if the focus will vist the element. isTabStop - returns true if the focus will visit the element. setTabOrder - Sets the order of focus within this tab group, Only one element in each group should have the same TabOrder number. Set to -1 to add to the end of the group. setTabGroup - set this to true if the element is a group that contains other elements, and can be navigated with ctrl+tab/ctrl+shift+tab. isTabGroup - returns true if the element is a tab group. getTabGroup - returns the tab group that the element belongs to. getNextElement - searches for the next element which would be focused within the element's children, only useful if you are doing your own custom navigation. Added isMychild, to check if an element is descended from this one.

Added isPointInside, which is called by getElementFromPoint. Override this when making non-rectangular elements. OnEvent no longer absorbs events by default. Serialize/deserialize now call getter and setter functions, in case people override these and don't use the internal protected variables. added getAbsoluteClippingRect, returns the visible area of an element. - Added IGUISpinBox, by Michael Zeilfelder (CuteAlien). - IGUIEditBox new methods: setWordWrap/isWordWrapEnabled, to split words on to the next line. setMultiLine and isMultiLineEnabled, inserts a newline instead of sending EGET_EDITBOX_ENTER events. setPasswordBox/isPasswordBox to use the edit box for password input. setTextAlignment, to align the text to left, right, top, bottom and centers setAutoScroll, to enable and disable automatic scrolling with the cursor - IGUIStaticText new methods setDrawBorder and setTextAlignment. - IGUIListBox changes: Added setAutoScrollEnabled and isAutoScrollEnabled, for automatic scrolling when selecting or adding an item. Scrollbars are now only visible when the list doesn't fit in the visible area . You can now type an item's text to select it. - IGUIScrollBar new methods set/getLargeStep ------------------------------------------Changes in version 1.3.1 (20 Jun 2007) - Fixed a bug with negative exponents in fast_atof, posted by RVL - renamed IAnimatedMeshSceneNode::getAbsoluteTransformation to getMD3TagTransformation to avoid conflicts with ISceneNode::getAbsoluteTransformation - Added rect::constrainTo for locking a rectangle inside another without resizing it - Moved the OpenGL API functions from COpenGL driver into new extension handler. Thereby, some renaming took place - the ARB and EXT suffix was removed. Simply rename the functions in case you use them. - matrix4 is now a template internally such that also int and double matrices are possible now. - CMeshBuffer is a new template replacing all previous SMeshBuffer* classes. New mesh buffers can be easily implemented based on this code. - Ogre 1.40 files now also load. - New filename based methods in the MeshCache. - CSphereSceneNode is now texture wrapped with sphere mapping by exactly one texture. Only a small error on the top remained.

- The Sky box scene node now clamps its textures by default (meaning no more ugly artifacts at the borders). - Frustum culling fixed by using the fixed classifyPointRelation function. - Some fixes in the 3d basic structures: plane3d.classifyPointRelation now correctly returns the relation, it returned the opposite before. Also renamed existsInterSection to existsIntersection for consistency. triangle3d.isOnSameSide is now private - it's just a helper class not intended for further use. - Added IFileSystem::getFileDir, to get the directory when given a file name. Submitted by Jeff Myers - Updated to latest PNG library (1.2.18), fixing a vulnerability. Also changed some data structures which should make the library 64bit compatible. - Changed the external window pointer from s32 to void*. This makes the mechanism 64bit safe, but also breaks the API. You have to cast to void* now. - Moved image scaling algorithms to CImage class and made them public. This replaces lots of code from the hardware textures. It should also fix the missing MipMaps in OpenGL if the driver does not support mipmap generation. - Added support for texture creation flags in OpenGL. This changes some textures to other color formats than in previous versions. - MD2 normals fixed. - Some defines for the platform choice have changed their names and semantics. E.g. IRR_LINUX is now _IRR_LINUX_PLATFORM_ for os specific things and _IRR_USE_LINUX_DEVICE_ to choose the original X11 IrrLinux device. - Added an SDL device for cross-platform window support. Especially useful for embedded systems and others without hardware acceleration. This device is mutually exclusive with the other devices and requires linking against the SDL library. - Q3 shader crash fix. - Fixed the too small D3D texture bug. - The OpenGL texture is internally stored as a CImage now. - Fixed some Borland compiler problems. - ShadowVolume init bug fixed. - MS3D rotation bug fixed. - setFrameLoop bug fixed. - Fixed OpenGL's draw2DImage texture inits to avoid texture confusion. - Fixed getHeight from terrain scene node. - The FPS counter now works as in previous releases, the accumulating counter

can be enabled by a parameter. - getType() is now const correct (API Changes) - Added scissor test to opengl draw2DImage method that ignored clip. - Fixed a bug in rect::isValid, it was almost always true. - Fixed wrong particle emission. - Added LinuxDevice setResizeAble implementation. - Enumeration values of the ESCENE_NODE_TYPE enum are no longer ints but four character codes. If you were using them as index previously, this is no longe r possible. - There is now a way to set which scene manager should recieve user input, when working with multiple scene managers: IrrlichtDevice::setInputReceivingSceneManager() . - ICursorControl now supports setting a reference rectangle. If this rect is set, the cursor position is not being calculated relative to the rendering window but to this rect. You can set the rect pointer to 0 to d isable this feature again. This feature is useful when rendering into parts of forei gn windows for example in an editor. See ICursorControl::setReferenceRect() for details. (Windows only implementation currently) - It is now possible to clone single scene nodes (ISceneNode::clone()) and to c reate copies of a whole scene graph (ISceneManager::createNewSceneManager(cloneContent=tru e); - IAttributes now supports a user pointer (void*) - Added query methods to scene manager: Find Scene nodes by type getSceneNodesFromType - Added min and max functions with 3 values: core::min_ and core::max_ - Fixed a crash when using Octtrees caused by unnecessary dropping of meshes wh en deserializing the scene node. - Removed an array::erase from Octtrees and Octtree triangle selector. - Removed a bug which caused irrlicht to crash when using animated .x files as static meshes. GUI: - Added EGUI_DEFAULT_FONT for skins, default fonts can now be set for windows, menus, buttons and tooltips. use IGUISkin::setFont and getFont to use them. Fonts are not serialized with saveGUI yet - Added EGDC_TOOLTIP_BACKGROUND for setting background color of tooltips.

- Tooltips now appear relative to mouse position, also they do not appear for 500ms. - Fixed a memory leak when dropping the GUIEnvironment when a tooltip was pres ent. - Added IGUIStaticText::setDrawBackground and IGUIStaticText::setBackgroundCol or. - Fixed a messagebox focus bug when no 'okay' button was present. - Added setColor and setScaleImage to GUIImage. - GUIListBox highlighted area now clips properly. - added getOSOperator to GUIEnvironment (for clipboard access in elements) and updated CGUIEditBox. - Can now load/save gui environment from/to an element. - Most element set functions now have a corresponding get or is function. (API change) IGUIButton::getUseAlphaChannel is now isAlphaChannelUsed, to fit with other is* functions. - Fixed a bug with resizing the gui environment when the device is resized - Modal screens now resize to fit their parent. - XML bitmap fonts now load textures from the XML file directory rather than t he current one. - Fixed a small bug with click areas in combo boxes. - Fixed a bug in clear() when an element was hovered or had focus - Fixed a bug when loading fonts with uppercase letters in the name in case-se nsitive filesystems GUI Editor: - Added cut/copy/paste using clipboard and xml (via memory file). Will have pr oblems in Linux due to no clipboard support - Added texture attribute element - Added CGUIPanel, a container with optional scrollbars. Originally submitted by Asger Feldthaus ------------------------------------------Changes in version 1.3 (15 Mar 2007) - SMaterial structure changed: - Enable Irrlicht to change TextureAddress Mode (Clamping), for each layer se parately - Added Texture matrices to SMaterial for all texture layers - Removed the anonymous union/struct access to textures and material flags. Now, Texture1..4 is removed - use Textures[i] instead The Flags[x] is replaced by setFlags(x, bool) resp. getFlags(x)

- The methods OnPreRender and OnPostRender of ISceneNode have been changed to OnRegisterSceneNode() and OnAnimate(). Also, they are now called at different times: OnAnimate is called every frame before anything else, removing the one-frame-lag Irrlicht suffered until now. To make most of your own scene nodes work again, it should be enough to rename OnPreRender() to OnRegisterSceneNode() and OnPostRender() to OnAnimate() in most cases. - ISceneNode::getMaterialCount and getMaterial now use u32 instead of s32. You w ill also need to update this in your custom scene nodes. - matrix4 speed enhancement, testing for identity before multiply. faster check for identity for the positive case using an additional boolean flag. The internal array M is now private, changing the API. Use mat[x] instead of m at.M[x]. The pointer to M is acquired by mat.pointer(), some methods take a matrix4 ref erence instead of a f32*. - Some more suppport for tangent meshes - Several alpha blend fixes in several drivers and methods Font improvements: - Changed built-in IGUIFont to IGUIFontBitmap and added options for more fonts . CGUIFont now supports UCS-2 and may span many textures, loads from XML (Unic ode support planned) - Started a font tool for creating the new XML fonts, including generating vec tor fonts (currently not backward compatible with old fonts, only works for Win2K+, so me bugs still) - Font interface now supports kerning- kerning pairs, per letter and global ke rning widths, although he internal font only supports global and per-letter. - added _IRR_COMPILE_WITH_SOFTWARE_ and _IRR_COMPILE_WITH_BURNINGSVIDEO_ to co mpile config - GUI enhancements: - GUI Serialization with loadGUI and saveGUI, and serializable custom GUI elem ents via factories - Started a GUI Editor as a GUI element factory example (work in progress) - New IGUIElement functions: isSubElement & setSubElement for child elements c reated by their parents (eg. a scrollbar on a list box). Set it if you don't want an element to be s erialized - New GUI event, EGET_ELEMENT_FOCUSED - GUI environment ELEMENT_FOCUS_LOST event now sets the element as the caller, focus_lost events

are now usually passed to parent elements, so elements now check if they are the caller before updating (so users can catch focus lost events without them being eaten by t he elements) - Buttons, checkboxes and tab controls now only activate when the mouse is rel eased over them. - Windows mouse-up events are now caught outside the window, so mouse coords m ay now be negative. could cause problems with draggable user windows, as they may now be dragged off screen. - Elements can now automatically resize to fit their parents, or align themsel ves to an edge: setAlignment(left, right, top, bottom) - sets how each edge aligns to its pa rent, through EGUI_ALIGNMENT enum EGUIA_UPPERLEFT - default behavior, aligns to top or left edge EGUIA_LOWERRIGHT - aligns to the lower or right edge EGUIA_CENTER - moves relative to the center of its parent EGUIA_SCALE - uses relative scale - setMaxSize, setMinSize - sets the maximum and minimum sizes for automatic re sizing, use 0 for no maximum size. - setRelativePosition now takes a rect<f32> for relative positioning within th eir parents - getFileSystem added to the GUI environment - New IGUISpriteBank, used to hold 2d image data like fonts and GUI icons. Icons provided by the built-in font are now accessed through the skin's spri te bank. Users can override the icons by setting a different sprite bank and setting new sprites. - Skins are now serializable and are loaded/saved with the GUI. - IGUIStaticText getter/setter functions patch by rogerborg. - added 3d TextSceneNode2. to view a Text in real 3D Space in fact it is a combination of Billboard & TextSceneNode - Burning Video (the second but only complete software renderer) - New Compile Config BURNINGVIDEO_RENDERER_ULTRA_FAST - New Compile Config BURNINGVIDEO_RENDERER_FAST touching the 20fps border in the demo ( P4 mobile 2Ghz ). 15fps average. ( Compile config Release Fast-FPU ) - VertexCache for Tansformed & Light Vertices boost small drawPrimitive Calls ( 2DRectangle, Billboard ) and Real Index Tr iangles - Bilinear Dither - clipping test ( compare instead of generic plane normal ) - support for NOT using vertexcolor #define SOFTWARE_DRIVER_2_USE_VERTEX_COLOR

- added vertex to color to billboard. shade top & shade down. to support some static lighting effect on billboards - Implemented line rendering for SoftwareDriver - XMLWriter fix for 32bit wchar_t (esp. for big endian) - updated to latest PNG library - implemented CImagerWriterJpeg::writeImage - The ISceneManager::addCameraSceneNodeFPS() has a new parameter named 'jumpSpee d' and a Key Map Entry. - added param to IIImageWriteFile::writeImage control Parameter for the backend ( e.g. jpeg compression level ) - addContextMenu: CGUIEnvironment::addContextMenu set the focus on the submenu. - Added IFileSystem::createMemoryReadFile for accessing memory like a file. - Added core::map class submitted by Nastase Catalin (Kat'Oun) - Fix vertex colors for .x and .ms3d, alpha bug in .obj - Fixed 16bit depth screens under Windows. - Implemented getMeshBuffer(SMaterial) for all AnimatedMeshes. It was returning 0 for all implementations previously. User defined IMesh deri vates will also have to implement it now due to the removed empty implementation. - Added yield() method to IrrlichtDevice which allows to pause the Irrlicht proc ess for a very short time. This allows other processes to execute without a major penalty for the Irrlicht application. - Added sleep() methd to IrrlichtDevice, for pausing the Irrlicht process for a longer amount of time. - Auto-split mesh to 16bit buffers in 3ds loader - 8bit RGB332 image format support - isActive() under Linux now behaves like the Windows variant: True iff window h as focus - Fixed(?) the glXGetProcAddress problems with different drivers - B3D changes by Luke: Texture scaling bugfix, support for alpha blending, new option to normalise we ights, animation code optimization, fixed memory leak - ROUNDING_ERROR is now ROUNDING_ERROR_f32 or ROUNDING_ERROR_f64 - Material ZBuffer flag changed to a u32 value

Reason: change ( off or on ) to , off, lequal, equal Necessary for multi-pass if previous stage has had transparency - DebugDataVisible is now an enum of flags show normals is supported ( uses the new build in arrowmesh ) - New Function: GeometryCreator addArrowMesh. build a closed cylinder and a cone used to show normals as debug feature - New Function: CMeshManipulator::transformMesh(scene::IMesh* mesh, const core::matrix4& m) co nst transforms VertexPosition and VertexNormal - BUGFIX: CGUIButton notified Pressed when Mouse was clicked Inside ( correct ) but also left up outside rectangle ( incorrect) - BUGFIX: Octree:getPolys(const scene::SViewFrustum& frustum, SIndexData* idxdat a) was recursive calling invisible children - CFileList: Changed FileListEntry sorting to a) Directory comes first b) sorting ignores case so it feel's more like common browers - added a Texture transform to IVideoDriver::setTransform - quaternion::getmatrix in fact the getmatrix version is returning the transposed. i'm quite sure that this is the wrong implementation. so this should be verified to remove the getmatrix_transposed version... - Quake3 Map Loader: new loading method - Bezier Patches with LOD more than 3 - Multiple Meshes, stay compatible with the previous version - Indexed Triangle List - initial support for quake3 Shaders and Entities - Shaders are parsed. When it's possible to resolve a 2 Texture Scheme it's ta ken Shaders exist in namespace scene::quake3 - The Example Quake3Map shows how to continue applying the Q3Shaders with Scen eNodes ( for example animmap converts to TextureAnimator.) TODO: use the Irrlicht Variable Syntax to remove redundant code.. - added getVertexPitch() to IMeshBuffer interface - added generic isupper, isspace.. functions to coreutil.h to remove dependencie s for ctype.h ( future: it's possibly to use binary comparison test..) removed 1000's include of string.h and moved one to irrstring.h in preparing of complete removing the MSVC. - moved fast_atof.h to the public include added strtol10 to remove dependencies for stdlib.h anyway math.h is needed for powf

- core::vector3d added getInterpolated_quadratic. vector3d<T> getInterpolated_quadratic(const vector3d<T>& v2, const vector3d<T> & v3, const T d) const // this*(1-d)*(1-d) + 2 * v2 * (1-d) + v3 * d * d; - irrstring: added param start to findLast(T c, s32 start = -1 ) reason: to continue searching reverse on a specific position (parameter is checked against boundaries ) - added operation reciprocal_squareroot to irrmath. core::reciprocal_squareroot = 1.f / sqrtf ( x ) changed the core::vector3df normalize vector. specialized templates are not allowed in irrlicht currently, so it's only for f32 for now. a C function and a NVidia Version are in irrmath.h - add Primitives to CFPSCounter and changed interpolation to 1500ms instead of 2000ms and rounding to ceiling.. - added Interface setAmbientLight to ISceneManager it was a Bug, because SceneManager always calls Driver therefore AmbientLight has to be set in SceneManager. - changed GUIFont & FontTool to support kerning ( on a global basis ) very basic mode.. apply an offset for position useful for example if you want to apply an outline stroke in your favorite and therefore let the texture grow. and to correct the border back on drawing, specify the parameter in IGUIFont. this is quite useful if you want to use more artistic fonts. default = 0 better kerning would need a seperate coordinate set for each symbol. - changed MD2_FRAME_SHIFT to lower framerate -> lower IPol problems can occur if somebody uses hardcoded frame-numbers instead of Animation name... - changed spelling "frustrum" to "frustum" -> changed also SViewFrustrum.h to SViewFrustum.h - changed Parameter AutomaticCulling from bool to enum E_CULLING_TYPE to support more than two culling modes. added Frustum culling ( it's a copy & paste from the octree ) added initial bounding sphere used for culling point lights.. - Added getSystemMemory and getProcessorSpeedMHz for Windows and Linux to the OS Operator, submitted by Vitek. ------------------------------------------Changes in version 1.2 (29 Nov 2006) - Added Solaris/Sparc port (basically some compiler define statements). Irrlicht and the examples should compile out-of-the-box on Suns with the usual Makefiles and gnumake.

- Added texture matrix support for hardware accelerated drivers. This allows for efficient texture coord manipulations for complete meshes at once. - Multisampling with OpenGL under Linux added - Non-power-of-two textures are left unscaled if the driver supports such textur es. - new draw2DImage method that speeds up drawing many quads from the same texture . Font drawing is improved by this under OpenGL. - TGA files are now always correctly flipped and loaded if compressed. All PNG c olor formats are now supported, including correct alpha handling. - 3ds mesh loader fix in texture loading, now loads some textures that were not loaded before, but might introduce problems with very recent files. OGRE mesh lo ader bugfixes and lightmap support. Several B3d mesh loader updates. Obj and mtl loader enhancements. - A new compile flag (IRR_OPENGL_USE_EXTPOINTER) allows Irrlicht to either use O penGL extension function pointers or direct OpenGL calls. - OpenGL now uses frame buffer objects for render targets larger than the screen , supplied by Mandrav - Split ESNRP_LIGHT_AND_CAMERA passes into ESNRP_LIGHT and ESNRP_CAMERA to fix a problem with lights being rendered before cameras in OpenGL (thanks again to Vi tek for finding this). ESNRP_LIGHT_AND_CAMERA is now deprecated. - Fixed many OpenGL render state problems which were related to wrong texture st ates. The textures are now enabled and disabled by the material renderers in OnS etMaterial. Also enabled the texture state cache which helps preventing texture changes just as the one for D3Dx. Thanks to hey_i_am_real for some good hints on where the problem was located. - Added compile flag _IRR_COMPILE_WITH_X11_ which is by default enabled. Disabli ng the flag removes all X11 dependencies from Irrlicht and allows for a headless Linux Irrlicht server - added by request :-) - Win32 OpenGL driver tries to use the requested bpp size. - Default texture format is now A8R8G8B8 if not explicitly specified. This fixes some color artifacts with lightmaps. Bugfix submitted by hey_i_am_real. - In OnPostRender all transformations were taken as relative and multiplied with the root transformation matrix every time due to a wrong check for the real roo t node. This shoudl increase render performance for scenes with lots of (invisib le) nodes. - Added correct list copy constructor. - Color selection dialog added. - New GUI skin "Burning Skin". it's a black & white skin. look elegant on true-color. and looks ok on 1-Bit ( e.g. no vertex color in burnings video ) - GUIStatic text is correctly grayed out if disabled. - Added getHeight method for terrain node submitted by Spintz. It calculates the

height from the base mesh instead of requiring ray casts and collision detectio n and is much faster. - New methods core::lerp to linearly interpolate two floats and SColor.getLumina nce to calculate luminance of RGB color. - MAJOR API CHANGE: Fixed matrix access methods mat(x,y). These were previously said to be (row,co lumn) but actually were (column, row). This lead to some confusion and made thei r use quite tricky. Irrlicht code is updated for the new method, but application s will silently fail now (i.e. compile without errors, but not working as expect ed). - Update to zlib-1.2.3 - Fixed vertex alpha handling in DirectX drivers. - Image writers fixed and working (at least for little endian systems). - VSync under Linux fixed and correctly working. - New os::Byteswap::byteswap methods which can be used for byteswapping (endiane ss correction) in mesh loaders and image loaders. - New video driver feature to check for multitexture feature. - Direct3D drivers update the devicelost variable if reseeting failed with this return code. - VideoModeList under Linux is correctly filled now. No glX calls are made if GL X extension is not found - only software drivers are available then. RandR exten sion can be enabled with a new compile flag in IrrCompileConfig.h, either instea d of XF86VidMode or in addition. - Big Endian support for MS3D loader. - Apfelbaum software renderer: basic mipmap support (per triangle), switch for u sing w-buffer instad z-buffer ( default on ) - Better FPU support: Changed various fpu-call's in whole project (main reason t o use faster float to int conversion on x86. ( fistp )) - changed Visual Studio 7.1 vcproj project config "Release Fast FPU" to __fastca ll in /QIfist - CGUIFont added True Alpha Font Support. (currently it's a little hack, but it' a good starting point. Fonts are back compatible. To use the new feature make fi rst pixel half transparent in the font file.) - Scolor: replaced s16 color with u16 color, replaced s32 color with u32 color t o get rid of unnecessary arithmetic shift - Colorconverter: X8R8G8B8toA1R5G5B5, set Alpha High, minor: A1R5G5B5toA8R8G8B8 changed if (a) to conditional set - CImage: added boxfilter (weigthed average), (generic, slow) - The scene manager now sets an ambient light color when calling ISceneManager:: drawAll(). You can influence this by calling ISceneManager::setAmbientLight(). That light

color is also stored when saving .irr files via ISceneManager::saveScene(). - Loaded COLLADA files which contained only one single mesh now behave like all the other loaded meshes, and the #meshname workaround has been removed. - File lists are now sorted. - Dynamically checking the OpenGL version now instead of at compile time to call the supported methods of the executing machine, not that one of the compile hos t. This should fix the extension check and the automatic mipmap update. - Fixed vertex alpha handling of 2D images with OpenGL. - Default depth buffer under Windows now 24bit to avoid zbuffer fighting. - Fixed light count in OpenGL. - Particle emitters can now be enabled/disabled via a new method. - Sky dome is rotatable just like the sky box. - Rotation animator can be applied to several nodes now, before it only rotated the first one it was applied to. - Support for drawing other vertex primitive lists such as triangle strips. - Default specular color is white again, thus simply enabling shininess is enoug h to get speculars. - Some .x loader and animator improvements. Vertex color support. - isActive now also work under Linux. ------------------------------------------Changes in version 1.1 (06 Aug 2006) - New example to show some features of the .irr format - Added support for making screenshots in all video drivers and a general possibility to save any IImage to several file formats. Some image writers are not yet implemented. As a testcase screenshots are now available in the demo by pressing F9. This code was contributed by Travis Vitek. - Changed EAMTS_OCT to EAMT_OCT. - Improved .3ds and .obj file importers. - Added support for .b3d (Blitz Basic) submitted by Luke Hoschke and .pak (Quake archive) files submitted by skreamz. - Added sky dome implementation contributed by Anders la Cour-Harbo (alc). - In addition to the Cube scene node (formerly test scene node) there is now als o a sphere scene node available, with an adjustable amount of polygons. Use ISceneManager::addSphereSceneNode t o create it.

Thx to Alfaz93 for making available his code on which this node is based on. Note that both nodes now use default material settings, e.g. lighting is enabl ed by default. - Fixed Linux keyhandling for many keys. - The aspect ratio has been inverted in the matrix, which means when setting a n ew aspect ratio for cameras, set it to screen.width/screen.height now instead of screen.height /screen.width as previously. - added support for reading/importing binary .x files. - .ms3d and .x normals are now correctly transformed in animations, bounding boxes are slightly better transformed, but not yet correct. - Added possibility to load and save Irrlicht scenes to and from xml files via ISceneManager::saveScene and ISceneManager::loadScene. Note that not all scene nodes are supported yet, but most features should already work. - Bounding box of the Skybox corrected (set to null) - The SMaterial structure now supports 4 textures. (Currently ignored by the ren derers and their materials.) - Test scene node renamed to CubeSceneNode. - Added scene node animator factories. This is the same as scene node factories, but for scene node animators. - Added scene node factories. This is an interface making it possible to dynamic ly create scene nodes. To be able to add custom scene nodes to Irrlicht and to make it possible for the scene manager to save and load those external scen e nodes, simply implement this interface and register it in you scene manager via ISceneManage r:: registerSceneNodeFactory - Introduced IMeshSceneNode interface with the possibility to set readonly mater ials to make it possible to use the mesh materials directly instead of overriding them. In this way it is possible to change the materials of a mesh causing all mesh scene nodes referencing this mesh to change, too. - Added possibility to load OGRE .mesh files directly, thanks to Christian Stehn o who contributed a loader for this. - Merged with Irrlicht 1.0 for MacOS - Added a method getType() to ISceneNodeAnimator. - There is now a system to serialize and deserialize attributes of scene nodes. In this way it should be quite simple to to expose the attributes of your scene node for s cripting languages, editors, debuggers or xml serialization purposes.

- Irrlicht containers and strings now have allocators, making it possible to use them across .dll boundaries. - Changed the name of scene nodes from wide character to to char* for speed and memory reasons. - Renamed IStringParameter class to IAttributes and enhanced it to be able to serialize its content into and from xml. - Textures now have a method getName(). - Added the methods getTextureCount() and getTextureByIndex() to IVideoDriver. - Most classes now derive virtually from IUnknown. ------------------------------------------Changes in version 1.0 (19 Apr 2006) - Irrlicht now will load d3d 9 dlls (like d3dx9_27.dll) manually if needed. If y ou compile irrlicht with an SDK which needs one of these dlls, irrlicht will now also start up on a pc without these Dlls installed. Note that now these dlls will also only be loaded if you r application uses shaders. If the dlls are missing, shader support will be disabled. - The Apfelbaum Software Software Renderer now works in 32 bit and is capable of rendering dynamic lighting as well as doing alpha channel blending. - Added support for the Code::Blocks IDE (http://www.codeblocks.org) - It is now possible to draw temporarily to foreign windows, by specifying a win dow handle when calling IVideoDriver::endScene(). Note: This does not work in fullscreen mode and is not implemented for all devices (only for D3D8, D3D9, Software1 and Software2, an d only for Windows). In addition, you can also specify the source rectangle to present. - Picking is now more accurate and also works with view ports and better with or thogonal cameras. - Scene Nodes now have an additional flag, IsDebugObject. This denotes if a scene node is a debug object. Debug objects have some special properties, for example they can be easily excluded from collision detection, picking or from serialization, etc. - Scene Nodes now have the possibility to return their type using virtual ESCENE_NODE_TYPE getType(). - Improved support for orthogonal rendering: Skyboxes and billboards can be used with orthogonal cameras now, too. - Fixed a bug in collision - Fixed some marshalling bugs in Irrlicht.NET - Some fixes to make gcc 4 happy.

- Fixed a bug which caused the engine to crash when trying to use the apfelbaum software rasterizer with linux - Several improvements to Irrlicht.NET, for example string output for vectors, v iewfrustrum access for cameras, drawing of bounding boxes, support for orthogonal cameras. - Updated DMF importer to support new DeleD functionalities, solid materials wil l now be shown correctly again in Irrlicht. Thanks to Salvatore "Il Buzzo". - Added a method to change the return value of ICameraSceneNode::isOrthogonal - Improved md2 animation playback - Fixed the REFLECTION_2_LAYER materials. Now also works for OpenGL. Had to chan ge the parameters of this material (for all drivers), the reflection is now at texture 2 and the diffuse map at texture 1. This was the other way round before. - Added examples for csharp, visualbasic, delphi.net and boo. - Several other small bug fixes. -----------------------------------------------------------------------------------Changes in version 0.14.0 (30 November 2005) - Irrlicht now includes another video driver type. Together with D3D8, D3D9, Ope nGL, the NULL driver and the Software Renderer, an Irrlicht user now has the decision betwee n 6 renderers: The new included renderer is The Apfelbaum Software Renderer, an alternative s oftware renderer for Irrlicht. Basically it can be described as the Irrlicht Software renderer on steroids. It rasterizes 3D geometry perfectly: It is able to perform correct 3d clipping , perspective correct texture mapping, perspective correct color mapping, and renders sub pi xel correct, sub texel correct primitives. In addition, it does bilinear texel filtering an d supports more materials than the EDT_SOFTWARE driver. In short: It looks a lot like the alre ady available hardware accelerated drivers, but without hardware. :) This renderer has been written e ntirely by Thomas Alten, thanks a lot for this huge contribution. - Irrlicht now supports anisotropic filtering. Use the SMaterial::AnisotropicFil ter member or EMF_ANISOTROPIC_FILTER flag to enable it. I implemented this for all 3 hardwar e accelerated drivers: D3D8, D3D9 and OpenGL. - Irrlicht now supports the recently released new microsoft compiler. Irrlicht v ersions compiled with older verions of this compiler can now also be used with the new one, whi ch wasn't possible

previously because of a name mangeling issue. - All 2D drawing functions can now be used to draw into textures (render targets ). This also means for example that the whole GUI environment can be rendered into textures . - Irrlicht.NET now supports shaders. - Irrlicht now loads all textures in 32 bit mode by default. (Previously this was 16bit). To change this behavior back again, use device->getVideoDriver()->setTextureCreationFlag(ETCF_ALWAYS_16_BIT, true); - Irrlicht.NET now supports Particlesystems and Shaders. Thanks to a code contribution by Delight. - Fixed a bug in the mipmap generation. Now mipmaps are not that blurry anymore and the rendering quality has been improved a lot. - It is now possible to assign a userData int to callback functions of shaders. In this way it it easily possible to use the same callback method for multiple materials and distinguish between them during the call. - Directional lights are now supported in the OpenGL and D3D drivers. To switch on directional lighting, set the light type to ELT_DIRECTIONAL in the SLight structure. - Fixed several bugs in the GLSL implementation. Thanks to Michael Zoech for sending in his improvements. - For the windows version of Irrlicht, the engine now displays an icon in the program window, if there is one available in the start path with the name "irr .ico". - It is now possible to use images with alpha channels on buttons. Use the new IGUIButton::setUseAlphaChannel() method to enable this feature. - The scene manager has a new method getSceneNodeFromName() which finds a scene node by its name. - It is now also possible to attach scene nodes to joints/bones of sceletal anim ated .x files. (Using IAnimatedMesh->getXJointNode() ). This was previously only possible wit h milkshape models. - Billboards now draw their bounding box when debugdata is set to visible for th em. - Lights now draw their bounding box and radius when debugdata is set to visible for them. - Upgraded to irrXML 1.2. Thanks to some hints by Patrik Mller, irrXML, the XML parser used by the Irrlicht Engine now has CDATA support and some other useful new feature s. - Support for VisualC++ (Express) 2005. Added a project file and a IrrlichtProps VC2005.vsprops

file which sets the no deprecate define and adds needed libraries. - Fixed size of the bounding box of billboards. - Billboards are now also culled by default, increasing rendering speed a bit. - Fixed a bug which caused the .ms3d loader to crash when loading .ms3d files without materials. Thanks to sdi2000 for posting this. - Fixed a bug causing the possibility to crash when destructing the scene graph or a scene node with children. - Fixed some bugs which caused invalid RTT operations, when for example the render target texture was smaller than the screen. - Fixed a heavy bug in Irrlicht.NET causing lots of memory leaks when drawing te xt. - Fixed a bug in the attachement of scene nodes to animated X files. - Fixed a bug in the .NET Vector3D addition operator. - Updated to Salvatore Russo's DMF loader version 1.3. Notes by him: This version just adds some new functionalities. First of all Alpha Blended T extures are now supported by DeleD as well as loader. Because of some trouble with Irrlicht 0 .12.0 TGA loading, TGA textures are always flipped so I've added a parameter so that you can cho ose to flip or not all TGA textures coords, this way: SceneManager->getParameters()->setParameter(scene::DMF_FLIP_ALPHA_TEXTURES, t rue); you can also set material transparent reference value by setting: SceneManager->getParameters()->setParameter(scene::DMF_ALPHA_CHANNEL_REF, 0.0 1); you can use every value beetween 0 and 1, but to respect DeleD rapresentation 0.01 is OK, just a note, if you set 0, it's just like you set 0.5, this means that each pixel found corresponding to a position in alpha map that has a val ue<127 won't be drawn. - Fixed a small bug in the line breaking algorithm. - Fixed a bug which caused the engine to display strange artifact pixels when dr awing 2D images like text in screens which odd resolutions. - Slightly changed the interface of createDevice and createDeviceEx(): the versi on parameter now is a char* instead of wchar_t*. Also, IrrlichtDevice::getVersion() now ret urns char* instead of wchar_t*. - Fixed some parts in the source to make Irrlicht compile in Linux 64. - Renamed the EDT_DIRECTX8, EDT_DIRECTX9, _IRR_COMPILE_WITH_DIRECTX_8_ and _IRR_COMPILE_WITH_DIRECTX_8_ enumeration literals to EDT_DIRECT3D8, EDT_DIRECT 3D9, _IRR_COMPILE_WITH_DIRECT3D_8_ and _IRR_COMPILE_WITH_DIRECT3D_9_. You might nee d to

update your code and compilation settings with these new names. - Added the remaining '..' directory in the linux version of the file list - Updated to a faster version of the TerrainSceneNode by Spintz. Much thanks aga in! - Fixed a bug causing billboards to be displayed upside down. - The D3D drivers now won't crash anymore when they get feeded with nullpointers as shader constants. - Irrlicht now identifies the Linux platform it runs on and returns a more detai led string when calling getOperationSystemVersion(). - Fixed some bugs in several collision test methods thanks to Spintz. - Updated font tool - Made the list::iterator constructor which took a sklistnode as parameter priva te, to make Irrlicht compatible with the Errlicht interface. -----------------------------------------------------------------------------------Changes in version 0.12.0 (24 August 2005) - It is now possible to have multiple scene managers. Use ISceneManager::createN ewSceneManager() to create a new one. This can be used to easily draw and/or store two independ ent scenes at the same time. - Irrlicht now supports GLSL, the OpenGL Shading Language, which means Irrlicht now supports 14 shading modes/languages: ARB Vertex Programs, ARB Pixel Programs, HLSL, GLSL 100, GLSL 110VS1.1, VS2.0, VS3.0, PS1.1, PS1.2, PS1.3, PS1.4, PS2.0, PS3. 0. Lots of thanks go to William Finlayson for implementing this and making availa ble his code to be used in Irrlicht. - Added support for pixel shader 3.0 and vertex shader 3.0. - Irrlicht now supports detail maps, use EMT_DETAIL_MAP for this. The new terrai n scene node tutorial shows how to use detail maps. - Again some changes have been made in Irrlicht.NET. For example it is now a lit tle bit more memory friendly, I removed several bugs and made the terrain scene node, realtime sha dows and key codes available. In addition, I extended the .net example application a lot, just try it out. - I've worked around a heavy bug in the microsoft compiler which caused lots of bugs in Irrlicht.NET. They are all fixed now. See http://support.microsoft.com/default.aspx?kbid=823

071 for details. - The timer of the engine has been enhanced a lot, which maybe needs a little ch ange in your project if you are upgrading from an older version of Irrlicht. It is now poss ible to set the speed of the timer, a new time value, and to start and stop it. Als o, all calls to getTime() will now return the same value within the same drawing fram e. The timer will only advance when ITimer::tick() is called. IrrlichtDevice::run () will call this method automaticly, but if you aren't using this method, and you are wondering why your scene is not animating anymore, just call Device->getTimer()->tick() before drawing your scene. If you need the system time, not the new virtual time, use ITimer::getRealTime(). - The material EMT_TRANSPARENT_ALPHA_CHANNEL now is using a configurable alpha r ef value. The default value is 127, which means people who are using this material for d rawing things like grass, trees etc will get nice results automaticly when changing t o 0.12.0. To change to a different alpha ref value, just change SMaterial::MaterialTypeP aram value. See EMT_TRANSPARENT_ALPHA_CHANNEL for details. Also, this fixes two bugs: - A bug causing the D3D versions not looking like the OpenGL version. - A second bug which caused the texture to look like disappearing when lookin g at from far away. - Upgraded to a new dmf loader version by Salvatore Russo which is able to use a texture path and material directories. Set DMF_USE_MATERIALS_DIRS and DMF_TEXTURE_PATH usin g the ISceneManager::getParameters() method. - It is now possible to set a separate scale for the second texture coordinate s et in the terrain scene node when calling ITerrainSceneNode::scaleTexture(). This is use ful when using detail maps on the terrain. - Added a new material flag named EMF_NORMALIZE_NORMALS. You can enable this if you need to scale a dynamic lighted model. Usually, its normals will get scaled too the n and it will get darker. If you enable the EMF_NORMALIZE_NORMALS flag, the normals wil l be normalized again. - When loading Milkshape .ms3d files, Irrlicht also loads materials and tries to apply the textures. Thanks to atomice for this patch. - The ISceneManager::addCameraSceneNodeFPS() has a new parameter named 'noVertic alMovement' with which it is possible to disable vertical movement of the FPS camera and make the cam

era behave just like in most ego shooters today. - Made Irrlicht 64 bit compatible, removing some 32 bit only constructs. However , I wasn't able to test it out extensively. If you are compiling Irrlicht for a 64 bit windows en vironment and get a linker problem, try playerdark's solution: "The linker settings are so that no machine is specified in the drop down fiel d, instead, the command line option /MACHINE:x86 is set manually which interferes with the 64 bit linker of course. Removing that from the 64 bit version (and replacing it with the dr op down selection in the 32 bit version for that matter) fixed the linker problem." - There is now a IrrlichtDevice::postEventFromUser() method available, to make i t possible to post key or mouse input events to the engine if you are using an own input lib rary for example for doing joystick input. - The GUI Environment now has an own basic RTTI system, and all IGUIElement deri ved classes have a method named getType(). This is needed for the .NET wrapper but will be used later for serializing and deserializing. If you wrote your own GUIElements, you need to set the type for your element a s first parameter in the constructor of IGUIElement. For own (=unknown) elements, simply use EGU IET_ELEMENT. - Thanks to William Finlayson, Irrlicht now also supports RTT (render to texture ) when rendering using OpenGL. - Thanks to William Finlayson, the EMT_REFLECTION_2_LAYER is now implemented in the OpenGL version of Irrlicht, too. - There is now a mesh cache interface available. With this, is is possible to ge t access to all loaded meshes, and to remove them to free memory. You can get access to th e cache using ISceneManager::getMeshCache(). Please note that the addMesh() method of ISceneManager now is now longer available, you can find it now in the IMeshCache interface. - The VideoDriver now has a method for clearing the zbuffer at any time: IVideoD river::clearZBuffer(). With this, it is for example easily possible to overlay two scenes. - Fixed a bug which caused Irrlicht to crash when loading grayscale jpeg files. - Somebody sent me an .x file (tank_human1_crashes_irrlicht.zip) which caused Ir rlicht to crash. It seems I've lost that mail, but maybe you are reading this: It's fixed now. :) - Fixed a bug which caused the diffuse maps of lightmaps to disappear under cert

ain circumstances in OpenGL. - Its now possible to make IGUIStaticText draw its background. - Removed the first two default parameters from IGPUProgrammingServices::addShaderMaterialFromFiles() to prevent SWIG to create non compilable wrapper code. - Fixed a small bug which caused the terrain scene node to be culled incorrectly . - Changed the names the driver return (now "OpenGL 1.5", "Direct3D 9.0" and "Dir ect3D 8.1") - Added a new macro _IRR_DEBUG_BREAK_IF which is now used instead of the _asm in t 3 break points in debug mode. - Fixed a bug were the software renderer didn't clip 2d rectangles. This effect was visible for example when using list boxes, selecting an entry at the end an scrolling up s o that it wasn't visible anymore. - There is now a new gui event available (named EGET_COMBO_BOX_CHANGED) which wi ll be sent when the selected item in a combo box has been changed. Finally. - Fixed a Problem which caused an empty window to be created when a rendering de vice could not be initialized under special circumstances. Thanks to Sascha Plumhof f for the bug report. - Fixed a bug with the FileList in Linux, reported by DrAnonymous and fixed by W illiam Finlayson. - Fixed some bad documentation bugs. - The XWindow handle is now exposed too, via IVideoDriver::getExposedVideoData() . -----------------------------------------------------------------------------------Changes in version 0.11.0 (08 July 2005) - Antialiasing is now supported by Irrlicht in the D3D8 and D3D9 renderer. To sw itch it on, use createDeviceEx() and set SIrrlichtCreationParameters::AntiAlias to true. - Irrlicht.NET can now run inside a pre created Windows.Form window. - I'm no longer providing a Visual Studio 7.0 project/solution file for the Irrl icht Engine sourcecode, only 7.1 and 6.0 are supported. If you are using Visual Stu dio 7.0, just open the .dsp file for Visual Studio 6.0, it will be converted automaticl y.

- Irrlicht.NET includes now all basic GUI Elements and can capture GUI events. T here are still some features missing, but it is already enough to do simple things like showing message boxes, displaying images, getting input strings, etc. - Improved the .NET documentation a bit. - There is a full implemented ISceneCollisionManager now available in Irrlicht.N ET. - The Linux OpenGL renderer now supports mip mapping. - It is now possible to compile Irrlicht as shared lib in Linux. To do this, go into the source folder and run 'make sharedlib'. This should create a libIrrlicht.so.0.11.0 fi le in lib/Linux. To install it in /usr/local/lib, you can run 'make install'. - The drawing of the GUI system has been refactored and a lot of redundant code has been removed. - The new method IVideoDriver::draw2DRectangle() is able to draw rectangles not only filled with a single color, but with a gradient from four colors. This is impl emented in all drivers except the Software driver which still uses one color for this method. - It is now possible to customize the GUI system's skin a lot more: Simply imple ment your own IGUISkin interface and implement the draw..() methods. - There are now two build-in skins available: Windows Classic and Windows Metall ic. The default skin is now Windows Metallic, if you want to change back to the old sk in, use the following code: gui::IGUISkin* newskin = environment->createSkin(gui::EGST_WINDOWS_CLASSIC); environment->setSkin(newskin); newskin->drop(); - Added improved keyboard input handling for the Linux version of Irrlicht, than ks to Fabien Coutant for the fix. - Fixed a bug in the Linux OpenGLDriver which caused to load a wrong OpenGL exte nsion and made multitexturing look quite strange. Thanks to hybrid for spotting out that bug. - COLLADA file loading now works the same like the loading of other meshes: Just call ISceneManager::getMesh("yourfile") and display it using for example ISceneManager::addAnimatedMesh(yourLoadedMesh); To make it possible to create instances from meshes, lights and cameras in COL LADA files again as in irrlicht 0.10, just enable the collada instance creating mod

e: SceneManager->getParameters()->setParameter(COLLADA_CREATE_SCENE_INSTANCES, tr ue); - Added lots of useful methods to the IStringParameters class. It is now possibl e to set not only strings but also boolean, integer and float values as parameters. - Fixed a bug with the TRANSPARENT_ALPHA_CHANNEL materials in all renderers to m ake them work more as expected: They didn't write to the zbuffer. If you are using this material and you don't want the new setting, just set the ZWriteEnable flag in the SMaterial structure of your transparent material to false. Thanks to Fabien to point this out. - There are now some new defines making it possible to use system installed libs instead of the ones which come with Irrlicht: _IRR_USE_NON_SYSTEM_JPEG_LIB_, _IRR_USE_NON_SYSTEM_LIB_PNG_ and _IRR_USE_NON_SYSTEM_ZLIB_, which are defined by default in the file IrrCompileConfig.h - Renamed ISceneManager::getStringParameters() to ISceneManager::getParameters() - Changed the define _IRR_D3D_SHADER_DEBUGGING to _IRR_D3D_NO_SHADER_DEBUGGING t o be able to make it defined by default and to let it be included in the doxygen do cumentation. - The SceneManager now does not do any culling tests for cameras, lights and sky boxes. - Added a transformBoxEx() method to matrix4 which transforms a bounding box mor e accurate. - Small edit box copy & paste bug fixed thanks to Fish HF - Fixed a bug which caused the engine to read windows messages when embedded in a custom win32 control when called IrrlichtDevice::setResizeAble(). Thanks for Duncan Mac Leod to find that bug. - Fixed a bug in the HLSL renderer which caused Irrlicht to crash, if no vertex shader was specified. Thanks to mightypanda for reporting this. - Fixed a bug in the normal map generation thanks to jox. Parallax mapping and normalmapping now even look a lot better because of this. ;) - Updated to irrXML 1.1: - The XML parser is now also able to parse embedded text correctly when it is shorter than 2 characters. - The XML parser now treats whitespace quite smart and doesn't report it when it is obviously used for formatting the xml file. (Text won't be reported when it on ly contains whitespace and is shorter than 3 characters) - The XML parser won't crash anymore when the xml file is malformed and an att ribute has an opening but no closing attribute. - Removed a documentation which claimed that the xml parser doesn't work as th

e xml standard when replacing special characters, which wasn't true. -----------------------------------------------------------------------------------Changes in version 0.10.0 (26 May 2005) - The engine is now able to use parallax mapping. It's implemented for D3D9, D3D 8 and OpenGL. The perPixelLighing tutorial shows how to use it. Thanks go to Terry Welsh who wrote the 'Parallax Mapping with Offset Limiting'-paper on which the Irrlicht implem entation is based and who allowed me to use his texture for use in the example. - Added render to texture support. Currently, only the D3D9, D3D8 and the softwa re renderer are able to use this feature. There is a new example, showing how to render sc enes into a texture. - Irrlicht now can load .png textures. There is also a new compile configuration define to exclude the png loading option: _IRR_COMPILE_WITH_LIBPNG_. Thanks to rt who originally wrote the png loader and who allowed me to use and modify hi s code and place it under the Irrlicht Engine license. - Added support for COLLADA files. COLLADA is an open Digital Asset Exchange Sch ema for the interactive 3D industry. There are exporters and importers for this format ava ilable for most of the big 3d packages at http://collada.org. Irrlicht can import COL LADA files by using the ISceneManager::getMesh() method. As COLLADA need not contain only one single mesh but multiple meshes and a whole scene setup with lights, cameras and mesh inst ances, this loader sets up a scene as described by the COLLADA file instead of loadin g and returning one mesh. The returned mesh is just a dummy object. However, if the COLLADA file does not include any <instance> tags, only meshes will be loaded by the engine and no scene nodes should be created. Meshes included in the scene will be added into the scene manager with the following naming schem e: path/to/file/file.dea#meshname. The loading of such meshes is logged. Currently, this loader is able to create meshes (made of only polygons), light s, and cameras. Materials and animations are currently not supported but this wil l change with future releases. - Added Delgine DeleD .dmf mesh loading support. I simply added Salvatore Russo' s .dmf loader to Irrlicht, and changed some parts of it. Thanks to Salvatore for his work and f or allowing me to use his code in Irrlicht and put it under Irrlicht's license. - Specular highlights are now finally usable the engine. To activate, simply set

the shininess of a scene node to a value other than 0: sceneNode->getMaterial(0).Shininess = 20.0f; You can also change the color of the highlights using sceneNode->getMaterial(0).SpecularColor.set(255,255,255,255);. The specular co lor of the dynamic lights will influence the highlight color, too, but they are set to a useful value by default when creating the light. This feature is currently only avail able in the D3D drivers. - Added a new material type: EMT_TRANSPARENT_ALPHA_CHANNEL_REF. This draws a pix el of the material only when the alpha channel has a value greater than 128. It is ideal for drawing for example leafes of plants and does not use alpha blending, so it is a lot f aster than EMT_TRANSPARENT_ALPHA_CHANNEL. - There is now a createDeviceEx() method with which it is possible to create an Irrlicht Engine device into an already existing window. This currently only works in Windows. This method will be extended in the future with other options. - Irrlicht.NET has been extended with ports of the SceneNodeAnimators, TriangleS electors the FileSystem and Font drawing. Also the documentation of it has been improve d a lot. - There are two new tutorials/examples available. One demonstrates how to use re nder to texture feature, the other one shows how to run Irrlicht inside a precreated Win32 win dow/widget. This means there are now 17 examples available in the SDK. - The software renderer now renders 3d geometry transparent when its material is somewhat transparent. - The XML Parser has been enhanced. Several small bugs have been fixed and there are some new features: The parser can now read ASCII, UTF-8, UTF-16 and UTF-32 (both li ttle and big endian) files, and return the parsed string data in one selectable format from the same list. In addition, it is now completely independent from Irrlicht. If you wish to use the parser without the engine, take a look at the newly created project at http://irrxml.sourceforge.net. - Upgraded to DirectX Exporter Mod 1.3.1 - Upgraded dev-cpp project file to Dev-C++ 4.9.9.2. Removed dependency to zlib a nd jpeglib for devcpp, the necessary .c files are now simply included in the proj ect. - Renamed the VisualStudio and DevCpp sub directories in the SDK to Win32-gcc, Win32-VisualStudio.

- Fixed a bug in irrXML causing it to replace xml characters wrongly sometimes. - The C++ decorations at createDevice() have been added again, because lots of p eople started to mix the gcc and the microsoft .DLL and got confused why the thing c rashed at random positions. - Moved heapsink and heapsort into the core namespace. - Updated to My3D version 3.15 - Fixed the wrongly drawn alpha channel material in OpenGL driver and a problem with the VertexAlpha material in the same driver. - Implemented multipass rendering in the OCTTree scene node now too. This means that octtrees can now contain transparent materials as well. - Improved string comparison speed, especially when comparing with pointer to ch ar or w_char, no more temporary strings are being constructed now. In addition, there are so me new string comparison methods in this class. - Added string::replace() method. - Added string::trim() method. - Addes string::erase() method. - Fixed a bug in array which caused data corruption if an element which already inside the the array was pushed_back. Thanks to vox for reporting this and to provide a s olutin - Added ISceneManager::addMesh() method. - Added IMeshManipulator::recalculateNormals(IMeshBuffer*) method. - The file array.h has been renamed to irrArray.h - Due to a bug, Irrlicht 0.9 didn't cull the scene nodes anymore which resulted in a huge performance loss. This is fixed now. - After lots releases ignoring the 'make the fps camera smoother request', it is now finally integrated. - Removed audiere dependency and the mp3 file, reeducing SDK download size. - A bug was fixed causing the binding of the wrong fragment program sometimes in OpenGL. - Lots of internal filenames have been renamed. All CVideo* files have been rena med to fit the other name conventions, CD3D9Driver.h into CD3D9Driver.h for example.

- The IMaterialRenderer interface now has the new method getRenderCapability() w hich returns if the material is able to be rendererd with all settings on current h ardware. - Added IMeshManipulator::setVertexColors(); - Added float color reading support in the 3DS loader. - video::EVDF_BILINEAR_FILER renamed to EVDF_BILINEAR_FILTER - core::equals function added. - fixed a small bug in fast_atof thanks to jox - Added a method ICamera::isOrthogonal() which is being used by ISceneCollisionManager::getRayFromScreenCoordinates(), thanks to a bug report and fix by jox in this thread: http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=624 3 - Added some fixes to the GUI environment to make the parent and child pointers be more consistent as suggested by jox in this thread: http://irrlicht.sourceforge.net /phpBB2/viewtopic.php?t=6220 - Fixed a bug which caused the ambient light not to be reset after a window resi ze in D3D8 and 9. Thanks to jox for this bug report and fix. - vector3df equals method added. - added SColorf::getInterpolated() method - Moved ITextSceneNode interface to include folder. - Fixed a small bug in the My3DLoader which failed sometimes finding the right t extures. - Fixed bounding box problem with meshes without joints in .X file loader, thank s to jox. (http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=6669) - Fixed IFileSystem::getWorkingDirectory in Linux version. (http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=6678) -----------------------------------------------------------------------------------Changes in version 0.9 (28 Mar 2005) - There is now a 100% working terrain renderer available. The old buggy and unfi nished terrain scene node has been replaced by a new TerrainSceneNode which is based on Spint z's GeoMipMapSceneNode and Soconnes terrain renderer. Lots of thanks for their wor k on this and that they allowed it to be modified and integrated into Irrlicht. - It is now possible for a scene node to draw itself in multiple passes. This me ans it can

register itself for multiple render passes (E_SCENE_NODE_RENDER_PASS) and duri ng rendering it can query the current render pass using ISceneManager::getSceneNodeRenderPa ss(). With this, SceneNodes can contain solid and transparent materials at the same time and will be rendered in the correct order from now on. The IAnimatedMeshSceneNode and the IMeshSceneNode implement this feature, so i t is now possible to create for example cars with transparent windows without the need of a separate scene node. Because of this change, all render time enumeration values have be en renamed. - Irrlicht is now able to load OCT files directly. OCT files can be created with Paul Nette's Radiosity Processor from http://www.fluidstud ios.com or exported from Blender with Murphy McCauley's exporter. This exporter can be found in the directory \exporters\OCTTools of the Irrlicht SDK or from his homepage http://www.constantthought.com/project/OCTTools. A lot of thanks go to Murphy McCauley for this work on this and his permission to include his OCTTools into Irrlicht . - Irrlicht is now able to load Cartography shop 4 (.csm) files directly. A lot o f thanks go to Saurav Mohapatra for this work on this and his permission to adap t and include his IrrCSM library into Irrlicht. If you are using .csm files, please note that you'll have to set the path of the textures before loading meshes. You can do this using SceneManager->getStringParameters()->setParameter(scene::CSM_TEXTURE_PATH, "path/to/your/textures");. The original loader can be obtained from http://www.geocities.com/standard_template/index.html - Irrlicht is now able to load Pulsar LMTools (.lmts) files directly because it now integrates a modified version of Jonas Petersen's lmts loader in version 1.5 ( from http://development.mindfloaters.de/). Lots of thanks go to him for creating th is loader and giving his permission to add it to Irrlicht. If you are using this loader, please note that you can set the path of the textures before loading .lmts fil es. You can do this using SceneManager->getStringParameters()->setParameter( scene::LMTS_TEXTURE_PATH, "path/to/your/textures"); - Irrlicht is now able to load my3D files directly. The My3DTools 3.12 loader by Zhuck Dimitry was (a bit modified and) integrated into the engine. Lots of tha nks go to him for his work and for giving his permission to do that. Newer version s of this loader can be found at http://my3dproject.nm.ru. The exporters for thi s file format have also been added into the \exporters directory of the SDK. - To be able to replace built-in meshloaders with newer external versions withou

t the need of recompiling the engine, now mesh loaders which are added to the engine using ISceneManager::addExternalMeshLoader() are prefered over built-in mesh loaders . Thanks to for his suggestion of this. - D3D8 and D3D9 support for dev-cpp has been improved. If you are using Dev-Cpp and a DirectX-Devpack for recompiling the engine, just add -DIRR_COMPILE_WITH_DX9_DEV_PACK to your compiler settings and something like -ld3dx9 -ld3dx8 to the linker settings and press 'compile'. - The SceneManager now contains an interface for storing and exchanging paramete rs. ISceneManager::getStringParameters() returns IStringParameters, which can be u sed for example by extensions like external mesh loaders to set and read independent p arameters. This is also currently used by the newly built in CMS, LMTS and MY3D loader: I t is possible to set a value 'CSM_TexturePath', 'LMTS_TexturePath' or 'MY3D_TexturePath' to let them know the path of the textures. - IAnimatedMeshSceneNode now has two new methods for being able to have more inf lucence on the animation playback: It is now possible to set the playback mode to loop ed or non looped with IAnimatedMeshSceneNode::setLoopMode() and it is possible to se t a callback interface which will be called when animation playback has finished using IAnimatedMeshSceneNode::setAnimationEndCallback(). Thanks to Electron fo r his suggestion for this addition. - The software renderer has a new triangle renderer specialized on disabled zrea d and write. This means that skyboxes are now rendered in the correct order when using the software renderer. - Multitexturing and other extensions in Linux are now turned on by default. The re is a new #define in the file IrrCompileConfig.h for disabling this again: LINUX_OPENGL_ USE_EXTENSIONS - There is now a EET_USER_EVENT user event type for making it possible to send c ustom events through the system. - The setTarget()-method of the FPSCameraSceneNode now is finally correctly impl emented. - Changing parents of scene nodes is now much safer. The parent member of a scen e node now is set to 0 in all cases and should never point to invalid data when rearranging the scene node tree. In addition, there is now a getParent() method in the ISceneNode class.

- Debug breakpoints using "_asm int 3" are now only being used when in debug mod e and using Micosoft's compiler. Now more exotic compilers like BorlandC++ will like Irrlicht better because of this. - Updated zlib version to 1.2.2 - An implementation of 3D triangle clipping in the software renderer has been st arted. It is not 100% ready, but it is a beginning. This means now for version 0.9, that there are not that much artifact triangles drawn anymore. But this means also that drawi ng is a lot faster and that triangles clipped at the border of the screen will disap pear too fast. If anyone wants to finish the drawClippedIndexedTriangleListT() meth od in the CSoftwareDriver class, he is welcome :) - There is a new parameter in the IVideoDriver::createImageFromData() which caus es the image to be able to own foreign memory. - A renderstate setting has been fixed which caused to disable mip maps on wrong geometry when there was other geometry which had no mip maps. At least this bug doesn't appear on my hardware any more, I hope this means the problem it is now fixed. - A bug in the D3D version of the stencil shadows has been fixed thanks to Murph y. Sometimes you could see a small shadow similar to the the real shadow in the scene. This should now be fixed. - Irrlicht can now draw non filled concyclic reqular 2d polyons like triangles, tetragons, pentagons, hexagons, heptagons, octagons, enneagons, decagons, hendecagons, do decagon and triskaidecagons. And circles. Yes, I was a little bit bored. Christian Lins ma de a suggestion to add 2D circle drawing support to Irrlicht, and I did this, but a lso added support for drawing these figures using the same method. Check out IVideoDriver::draw2DPolygon(). - Removed a memory leak when creating hlsl pixel shaders. - I've made varoius updates to the documentation and moved to doxygen 1.4 - Fixed a bug in the xml reader which caused it to crash when reading empty xml files. - Removed the buggy bsp tree scene node from the engine. - Tweaked some settings with some GUI elements. - ISceneNode::getAbsolutePosition now should be way faster.

- Applied a fix by William Finlayson to the opengl stencil shadow drawing code w hich fixes several bugs. - There is now a min_ and max_ template function available in the core namespace . - Added some bugfixes to MayaCameraSceneNode by jox. An even more improved versi on can be found at http://development.mindfloaters.de/Downloads.12.0.html. - core::array now has a push_front method. - core::array now has an insert method. (Thanks to jox) - IrrlichtDevice now has a getEventReceiver() method. - Fixed a mouse wheel - mouse coordinates bug thanks to a bug report and fix by jox. - Changed the first parameter in IGUIContextMenu::addItem(wchar_t* text, ...) to const. Thanks to jox.. again. :) - Fixed ignore path bug in zip file reader thanks to Pr3t3nd3r. It is now possib le to use zip files with the complete path to the files from the archive. - Fixed matrix4::rotateVect method after a suggestion by several users. (I think Electron, Pr3t3nd3r, Jox) Thanks all :) - Fixed a bug in CGUIEditbox that enables you to write more characters than the max set limit, thanks to Rush for the bug report and fix. - Added getAngleTrig() method to vector2d as suggested by Pr3t3nd3r, thanks! - After a suggestion by schick, plane3d<T> now stores the normal vector first, a nd then the distance to the origin. - A bug was fixed which caused 2D elements to be drawn with a second texture set in OpenGL mode when 3D geometry with >1 textures has been rendered before. This effect h as often been reported as darkened 2D gui in the forum. - A bug in IrrCompileConfig prevented users to be able to recompile irrlicht wit h D3D9 with gcc. This is now fixed, thanks to Jedive. - The project setup for Dev-C++ is now nicer. Added lots of folders and cleaned up the whole setup a little bit with this. - Fixed a small bug in CGUIScrollbar reported by Klaus Niederkrueger. - The Checkbox rect is now clipped correctly, thanks to jox for that bug report.

- The debug names of all scene nodes and GUI elements are now set correctly. - Applied a patch making it possible to compile Irrlicht without OpenGL in Linux . - core::rect::clipAgainst was fixed thanks to a bug report and correction by Jox . -----------------------------------------------------------------------------------Changes in version 0.8 (19 Feb 2005) - Irrlicht now supports HLSL. This is possible using the new IGPUProgrammingServices::addHighLevelShaderMaterial() methods. Also, methods f or setting high level shader constants have been added. - Irrlicht.NET now supports events and cursor control. This means now you can re ad mouse and keyboard input from .NET projects like C# and VB.net too. - There are three new built in materials for doing normal/bump mapping available : EMT_NORMAL_MAP_SOLID, EMT_NORMAL_MAP_TRANSPARENT_ADD_COLOR and EMT_NORMAL_MAP_TRANSPARENT_VERTEX_ALPHA. If the hardware does not support these, the materials will fall back to their base materials. To be abl e to use these materials, there is the new vertex type 'S3DVertexTangents', the mat erial does not work with any other vertex types. There are some new methods to creat e meshes with this vertex type (IMeshManipulator::createMeshWithTangents()). - A new example/tutorial (11.PerPixelLighting) shows how to use per pixel lighti ng in your applications. - The software renderer now works in Linux, too. - Irrlicht now has a built-in normal map generator. It creates on the fly 32 and 16 bit normal maps from height maps (IVideoDriver::makeNormalMapTexture). As most oth er things in Irrlicht, the generator does not depend on D3D, D3DX or OpenGL. - Added shader debugging capabilities to Irrlicht. If _IRR_D3D_SHADER_DEBUGGING is defined in IrrCompileConfig.h (commented out by default), it is now possible t o debug all D3D9 shaders in VisualStudio. All shaders (which have been generated in memory or read from archives for example) will be emitted into a temporary file for t his purpose. To debug your shaders, choose Debug->Direct3D->StartWithDirect3DDebugging in Visual Studio, and for every shader a file named 'irr_dbg_shader_%%.vsh' or 'irr_dbg_shader_% %.psh' will be created. Drag'n'drop the file you want to debug into visual studio. Th at's it. You can now set breakpoints and watch registers etc. This works both with ASM,

HLSL, pixel and vertex shaders. Note that the engine will run in D3D REF for this, which is a lot slower than HAL. - Support for compressed .tga texture loading added. (Support from 0.4.1 was bug gy) Thanks to neojzs for posting his improvement. - Support for 32 bit .bmp texture loading added. - Global particles are now possible. Use IParticleSystem::setParticlesAreGlobal( ) to switch between global and local particles. A demonstration of this can be s een in the new tutorial (11.SpecialFX2). - It is now possible to let IGUIImages draw themselves using the alpha channel o f the texture they show. Use IGUIImage::setUseAlphaChannel() for this. - ITexture now has a method for rebuilding the mip map levels: regenerateMipMapL evels(). This is useful for example after locking and modifying the texture. - Gravity acceleration speed in CollisionResponseAnimator was changed thanks to a suggestion by Morrog. The accelerationPerSecond value has been removed beacause of this, you can now control everything just with the gravity vector. Note that the gravity value must now be a little bit smaller to achieve the same effect as before. - Fixed a problem with several material renderers which weren't able to update t heir states at the right time sometimes. A new method OnRender() will be called every time the material is actually used. - Adjusted all tutorials to fit some interface changes. - Changed the opengl shader of tutorial 10 to fit the d3d shaders. The now look the same. - The MeshManipulator has a new method createMeshWithTangents() which creates a mesh with normals, tangents and binormals from any mesh. - Wrong 2D alpha channel renderstates have been set when using D3D9 and 8. This has been fixed now. - When loading 32 bit images with an alpha channel and storing them internally a s 16 bit, the alpha channel got lost. This is now fixed, the remaining one bit alpha channel is now stored correctly. - There is a new overloaded IGUIEnvironment::addImage method, which creates an i mage directly with a texture as parameter, adjusting its size to the original size of the texture

. - A small bug in rect<T>::isValid() has been fixed, thanks to jox. - Fixed a bug in D3D8, D3D9 and OpenGL, which caused Materials be set and unset with an unequal amount when mixing 3d with 2d grafics or stencil buffer shadows. - If you are recompiling the whole engine with Visual Studio 6 (which means Irrlicht.dll, NOT the application which is using Irrlicht), DirectX9 support i s disabled now by default, because Microsoft stopped support for DX9 on VS6 in December 2004. You can reenable this by uncommenting the new define at the bottom of IrrCompileConfig.h, if you have an old SDK for example. - The mixed fvf and vertex shader system in D3D8 caused a slight issue in Irrlic ht ending up in really messed up render states sometimes. This is now fixed. - A major bug with the OpenGL renderer which occured on some OpenGL implementati ons has been removed thanks to a bugfix by Murphy and a great report and some inve stigations by ElectroDruid. - Sorting transparent scene nodes was broken in all previous versions of Irrlich t. This didn't attract a lot attention because most users used the ADD_COLOR transpare ncies for which the sorting is not relevant. Thanks to Morrog and mmm76, sorting now is right. - After the application window is resized, getViewport() no longer returns viewp ort as the first time the window has been created. - The draw primitive functions are no longer wrongly checking the maximum primit ive count with the vertex amount value. Thanks to Spintz for the bug report. - Template materials in X files just like exported in the panda exporter are now supported, thanks to JoeWright. - Changed the stringc typedef slightly to make it work with people not using namespace irr. Thanks to schick. - Refactored the MeshManipulator code, which in some cases now uses template met hods for performing calculations on different vertex types. - Fixed an interface problem with newer versions of libJPEG. Thanks to Fabien Coutant and Simon Barner for some help and clues into the rig ht direction. Was not able to add system specific zlib/jpeglib support due to issues on some strange systems/users and a lack of time, sorry. - Typo in plane3d and triangle3d: method isFrontFacting renamed to isFrontFacing . -----------------------------------------------------------------------------------Changes in version 0.7.1: (26 Sep 2004)

- Fixed some bugs which prevented the engine to compile with gcc 3.4.1. - Fixed a problem with the OpenGL driver, which caused the renderstates not to b e reset correctly when drawing scene nodes with reflective materials. - Fixed error in Irrlicht's software mip map generation, which caused that some mipmap levels looked strange. This fix was found by jox, the hardcore bug fixer, so many thanks go to him. Again. :) - Disabled hardware mip map generation in D3D9 again, because it seems to cause problems on some hardware. I don't have any hardware where this problem occurs, but I hope this helps. - Fixed a small bug in fast_atof submitted in the forum by da_dude. - Fixed string operator + after a bug report by osre and a fix suggestion by jox . - IEventReceiver now has a virtual destructor for the people who needed it. - 3DS-Loader patched due to some suggestions of Daniel Azkona Coya. -----------------------------------------------------------------------------------Changes in version 0.7: (11 Sep 2004) - The first version of Irrlicht.NET is included in this release. It is a managed C++ wrapper .DLL which makes the most important features of the engine available f or all .NET languages. The wrapper is incomplete, but it can already be used. You can find the documentation for this .DLL in the compiled help file doc\Irr lichtNET.chm. There are also two very basic examples available, which show how to use Irrlic ht.NET from C# and VisualBasic. - Low level vertex and pixel shader programming is now possible. There are now some methods with wich you can write GPU programs in vertex/pixel shader a ssembler using Direct3D 8 and 9 and in ARB vertex and fragment program assembler for Op enGL. You can use the IGPUProgrammingServices interface which can be reached by IVideoDriver->getGPUProgrammingServices() for this. The new material types you can create with this can be combined with all other already existing material types. For example, it is possible to create a new material which uses a vertex shade r to calculate texture coordinates and diffuse colors, and let this be rendered by the built in material video::EMT_TRANSPARENT_ADD_COLOR. Support for high level programming languages like GLSL or HLSL is planned for the following releases. Also note that you won't be able to use all techniques sha ders offer with Irrlicht, due to its current high level abstraction of the 3D APIs. For exampl

e, the engine does not expose vertex streams or vertex buffers currently. - There is a new tutorial showing how to use shaders with the engine. In additio n, all old tutorials have been rewritten and adapted. For example, the hello world tutorial now also shows how to set up visual studio .NET to use it with the engine. - Hardware mip map level generation of textures is now supported when using D3D9 . - Internal pointers and data of the video drivers can now be exposed for experie nced users with VideoDriver::getExposedVideoData(). For example, you can get a pointer to the IDirect3DDevice9 interface and the HWND window handle, if the engine is running with D3D9. - The createDevice() function has a new additional parameter: bool vsync. With t his, it is now possible to enable or disable the waiting for the vertical retrace period. Thi s is implemented in D3D9, D3D8, and the Windows OpenGL driver only, the software driver will ig nore this flag. - The engine now behaves like in the documentation: irr::createDevice() returns 0, if the desired driver could not be initialized. - There is a new SceneNode available: The ITextSceneNode is able to display 2D t ext at a position in 3D space. Use ISceneManager::addTextSceneNode() to create one. - Finally now all VideoDrivers have a draw2DLine() implementation, thanks to som e additions sent in by Vash TheStampede. - Applied some changes to the compilation configuration, so that it should now be easier to use the engine with XBOX projects. Thanks to MattyBoy for sending in some clues for this. - Some improvements for the linux version of the engine: The NULL device is fina lly fully operational with Linux too, and also all examples and even the techdemo compile and run with this OS. - The default field of view in the cameras of the irrlicht engine was a little b it extreme, so I changed it now from core::PI / 3.5f to core::PI / 2.5f. - Added a new draw2DImage method for partially draw a 2d Texture, as sent in by zola with implementations for OpenGL, D3D8 and D3D9. Software implementation is missing. - The string class is now able to convert integer values into a string or append it as string to itself. - Added a getDriverType() method to the IVideoDriver interface. - Added a getTransform() method to the IVideoDriver interface.

- The EMT_TRANSPARENT_ALPHA_CHANNEL material in OpenGL is now implemented. - The integrated XML Parser now works better with different text file formats. ( ASCII, UFT-16,..) - IGUIEdit Box now feels more like a windows editbox, thanks to some changes by Jox - Added a new method to IVideoDriver: createImageFromData as suggested by Oliver Klems. - Fixed a the EMT_TRANSPARENT_ALPHA_CHANNEL problem in D3D8 and D3D9 due to a su ggestion by Jox. - Added 3 methods created by zola to the quaternion class: fromAngleAxis(), toEu ler() and operator*(vector3df&). - A bug in a matrix multiplication operator was fixed. - Changed visual studio project files to version 7.1, but provided 7.0 project f iles for people with that version. - Added SceneNodeAnimatorRotation rotation fix as posted by warui - Added normalization fix to vector2d and 3d. Warui suggested a fix like that in the forum. The one I made has the same result, but is a little bit faster. - Fixed some problems with the drawStencilShadow() method in the OpenGL implemen tation of the IVideoDriver interface after some suggestions by Nicholas Bray. - Added IGUIButton::setPressed() and isPressed(). - Fixed checkPrimitiveCount() bug in NullDevice. - Applied jox's matrix4::getRotationDegrees() fix, many thanks for posting this! - Changed aabbox3d::getExtend() to getExtent(). - Changed IXMLReader::isEmtpyElement() to isEmptyElement() - Fixed a bug in CSceneManager::getSceneNodeFromId() which caused the engine to crash sometimes. - Fixed a bug in CGUISkin::setSize reported by REAPER. This method never worked before. - Improved texture mapping and normals of the TestSceneNode, thanks go again to Jox. - ScrollBar is now posting mousewheel events, thanks go to REAPER to post this b ug and a fix for it. - Added - operator to vector2d and vector3d, thanks to calimero - Fixed a bug in vector2d::getAngle() and vector2d::rotateBy() thanks to Jox.

- Fixed a bug in quaternion::set(f32 x, f32 y, f32 z) thanks again to Jox. - Fixed a bug in list::insert_before and list::insert_after, reported by Haddock . - Fixed a bug in XML Parser which caused a seqfault on linux. Thanks for G.o.D r eporting this problem. - EDriverType enumeration renamed to E_DRIVER_TYPE - SceneNodeRenderTime enumeration renamed to E_SCENE_NODE_RENDER_PASS -----------------------------------------------------------------------------------Changes in version 0.6: (09 Mar 2004) - Irrlicht now includes its own XML parser. It provides forward-only, read-only access to a stream of non validated XML data. It can read everywhere Irrlicht can, also in compressed .zip-Files for example. Use IFileSystem::createXMLReader() to use it. - Like the new XMLReader, there is also a IXMLWriter available for making it eas ier to write xml files. - There is a new tutorial available in the SDK. It is for more advanced users, a nd shows how to create a 3d model viewer with the engine easily. It shows how to use menus, tabcontrols, edit-, message- and sky boxes. The resulting program can also be used as tool, to check if the engine loads exported 3d models correctly. - Again, there are some new GUI widgets available: A ComboBox, a ToolBar, a Push Button and an ImageButton. The last two are simply the old IGUIButton, but it is now able to display additional images and behave like a PushButton. - It is now possible to make the drawing window resizeable, if it is in windowed mode. Use IVideoDriver::setResizeAble(true) to do this. - The .x file reader and animation player now should work with 99% of all text . x files. This is achieved by most of the following bug fixes. - Fixed a huge bug in the .x file reader, which caused that negative coordinates were interpreted as positive ones sometimes. This caused that sometimes .x animatio ns were played wrong. - Slerp interpolation of the quaternion class fixed. This means that also some b ugs in the animation of .x files are removed now. - Added virtual joints to not weighted vertices to improve .x file animations.

- The FileSystem is now 100% implemented. Finally it is now possible to write fi les too. There is a new Class IWriteFile and the corresponding IFileSystem::createAndWriteFile() - Added lots of text and sample code to the documentation. In most parts documentation should be clearer now. - The ISceneManager has a clear() method, which clears the whole scene, all scen e nodes are removed. - All ISceneNodes now own a new method called removeAll(), which deletes all chi ldren of the node. - Fixed a bug which prevented the possibility to compile directx8 without having installed directx9. - Fixed a bug in 3d line dawing in D3D 8 and 9. - All video drivers now print out the gfx adapter type, vendor and driver versio n into the log strings. - The D3D9 device is now as fast as the D3D8 device. - The string class has an additional new constructor for creating a string from character data with a specific length. - Bug fixed in string class assignment operator which might cause a crash in ver y special circumstances. - Added a findNext() method to the string class. - The ISceneNode class now has a isDebugDataVisible() method. - Some lines were changed to make the source of the engine compatible to VS.NET 2003. - Some functionality of the IFileList and IFileSystem was missing in the Linux v ersion of the engine. This caused the FileOpen-Dialog not to work. I fixed this probl em. - The Middle and Right mouse button were swapped in the Linux version. This is n ow fixed. - Multitexturing should now work with most linux systems too, thanks to a bug report by Martin Piskernig. - The logger now has an additional log() method which accepts another combinatio n of strings. - Fixed a bug which caused fonts to be displayed very transparent in OpenGL.

- Removed one of the redundant overloaded IGUIEnvironment::updateAbsolutePositio n() methods. - Fixed lots of clipping problems in all GUI Widgets. - core::rect has the new methods getCenter() and isValid(). - Scrollbar buttons are now disabled if it is not possible to scroll. -----------------------------------------------------------------------------------Changes in version 0.5: (17 Feb 2004) ------------------------------------/ Highlights in short: / * DirectX 9 support / * .x file support in all render devices including opengl and software / * new materials like lightmaps with dynamic lighting / * fog / * stencil buffer shadows now also work in OpenGL device / * more gui widgets: tab controls, edit boxes, menus / * spline animation support / * mouse wheel support / * triangle fan drawing / * quaternions / * improved keyboard input control / * lots of bugfixes including improved quake 3 map support ------------------------------------- DirectX 9 is now supported by Irrlicht. This does not mean that it replaces DirectX 8. The engine now supports both. You can now select between OpenGL, DirectX8, DirectX9, Software and the Null device. - The engine now is able to read and display .x files. Using Microsoft's excellent .x file exporter for Maya or MAX which comes with the DX8 and DX9 SDK, it is now possible to create content for the engine easily. Using .X files with Irrlicht is independent of D3D, they can be used with OpenGL and with Linux for example too. Currently only text file .x files are supported, and some animated .x files may be displayed not 100% correctly, because the animation player may still have some small bugs. It works perfectly with most .x files which come with the DX9-SDK. Some skinned mesh .x files which use quaternions for animating joints have some problems, there might be a bug somewhere. I commented the lines with a possible bug in CXAnimationPlayer. cpp. - The GUI Environment now supports edit boxes. They should support unicode input from every keyboard around the world, scrolling, copying and pasting (exchangi ng data with the clipboard directly), maximum character amount, marking and all shortcuts like ctrl+X, ctrl+V, ctrg+C, shift+Left, shift+Right, Home, End, and so on. Wow, I never programmed an edit box, its much more work than it seems to be. - Tabcontrols are now available in the GUI environment. It is also possible to create tabs without tabcontrols, to be able to create invisible gui elements for grouping other elements together. - Another new supported GUI Element are context menus. They support

ordinary text menu items, separators and sub menus. In Addition, a standard menu as seen at the top of most windows can be created easily with them. - Rewrote all tutorials to fit the new API. - Spline animations are now supported thanks to a spline scene node animator written by Matthias Gall. - Taskswitching now works with Direct3D 8 and 9 devices in fullscreen mode. - Added Material types EMT_LIGHTMAP_LIGHTING, EMT_LIGHTMAP_LIGHTING_M2, EMT_LIGHTMAP_LIGHTING_M4 and EMT_LIGHTMAP_ADD. - The engine now supports drawing of trianglefans. To do this, use IVideoDriver::drawIndexedTriangleFan(). Mario Gruber sent in code for this, so lots of thanks go to him! - It is now possible to draw 3d objects with fog. Simply switch on the fog flag in the objects material. To change to way fog is drawn (per pixel/vertex, colo r, linear/expontential) use IVideoDriver::setFog(); - With IrrlichtDevice::getOSOperator() a pointer to an interface is returned, wi th wich it is possible to do some operation system specific operations. Currently there are only 3 methods supported, but more will be added in the future. - Mouse wheel input is now supported. - The Key Event structure of SEvent now contains a Char entry, describing the corresponding character of the pressed key. Also two bools were added, specifying if shift or ctrl was pressed too. - The version of the Operating System is now printed out into the log at startup. - There is now a non-const getBoundingBox() method in IMeshBuffer and IMesh available. - IGUIElement now has a method getElementFromId(), which searches children (and its children if wanted) for an element with a specific id. If you want to search all items, just do IGUIEnvironment::getRootGUIElement::getElementFromId(). - ISceneNode::updateAbsolutePosition() is now public - Small bug fixed in CMeshManipulator::scaleMesh(). - The engine now supports Quaternions. - A bug was fixed causing the windows caption not to be displayed in Windows 95/98/ME. - IGUIEnvironment::getBuildInFont() was renamed to getBuiltInFont(). - IGUIElement::bringToFront() is able to brint a child to the front. Windows for example are now using this new feature. - Changed the texture mapping of the test scene node a little bit based on

code sent in by Dr Andros C Bragianos. - Added code to fix some bug in some ATI drivers. Thanks to ariaci for posting this code. - Stencil buffer shadows now also work with the OpenGL device, they worked only in D3D in earlier versions. Lots of thanks go to Philipp Dortmann, who sent in a modification to the opengl driver! - IGUIStaticText::setWordWarp() renamed to setWordWrap(), IGUIStaticText::enableOverrrideColor() renamed to enableOverrideColor() [thanks to saigumi] - A bug was fixed, causing that the window was not able to be closed with Alt+F4 in Win95/98. - Optimized the Octree-Scene node a little bit for getting more rendering speed. Culling is now done with the real frustum, not the bounding box around it. Speed increase is about 5%, it's not much but ok. - Bug fixed in the Quake 3 .bsp file loader, which caused holes to appear in some maps. - Combination of 3D displaying and drawing GUI elements was improved, and the priority of input receiving of 3d cameras and gui elements swapped. - A bug in the static text was fixed, which caused it to draw itself outside of its clipping rectangle. - KeyFocus and MouseFocus methods in GUIEnvironment are now merged into one meth od. - The Clamptexturecoordinates flag in the material was removed. - IVideoDriver::draw3DLine in all devices was improved. - The devcpp-version of the binary DLL which comes with the SDK is now faster. I'll compile this version from now on always with optimization switched on. - Other, Minor New/Changed methods in public interfaces: * buildShadowMatrix in matrix4 * getRotationDegrees in matrix4 (sent in by Chev) * rotateVect in matrix4 * linear_search in array * recalculateBoundingBox in MeshManipulator * ISceneManager::addStaticText() now has a parameter for word wrapping * getCharacterFromPos() in IGUIFont * drawMeshBuffer() in IVideoDriver; * interpolate() in matrix4 * getLast in array -----------------------------------------------------------------------------------Changes in version 0.4.2: (13 Dec 2003) - The engine does no more use only 16 bit textures internaly. Now all other texture formats are supported too. This means higher precision and better quality images. In this context, the ISurface interface has been replaced by IImage, and the ISurfaceLoader by IImageLoader.

- By changing the texture creation mode of the IVideoDriver, it is now possible to influence how textures are created: You can choose between 'optimized for speed', 'optimized for quality' or simply set constant bit depth like 'always 32 bit'. Also, you can now enable and disable Mip map generation with these flags. Take a look at IVideoDriver::setTextureCreationFlag() for details. - There is now some support for outdoor or terrain rendering available. You can create a static mesh from a heightmap and a texture using ISceneManager::addTerrainMesh(). You can specify a huge texture if you like, even bigger as your hardware allows to render, because the texture will be splitted up if necessary. Another possibility for doing terrain rendering is the new Terrain Scene node. But it is only in a very early alpha stage, I disabled for example the use of different level of details. - It is now possible to load software images into memory from files on disk, without creating a hardware texture. You can do this by calling IVideoDriver::createImageFromFile(). This is very useful for example for loading heighmaps for terrain renderers. - The Quake 3 Map Loader now supports curved surfaces, thanks to by Dean P. Macr i who sent in his code. (He also sent in lots of other cool stuff, which I will merge with the code of next releases, lots of thanks to him!) - It is now possible to control what text is printed out to the console and the debug window of Visual Studio. By getting a pointer to the ILogger interface, is is possible to adjust if Warning, Error or Informational texts should be printed out. In addition, now every text can be catched by the event receiver. - The engine is now capable of loading .PCX files. Only a few PCX formats are supported currently, but at least the common used formats of most textures of the quake 2 models. Thanks go to Dean P. Macri who sent in the code for the new PCXLoader! - A new Scene node is available, which simply does nothing. It is useful for doi ng advanced transformations or for structuring the scene graph. - The ISceneManager::addOctTreeSceneNode() now takes AnimatedMeshes as parameter . If this new method is called, the first frame in the animated mesh is taken as mesh to construct the octree. This means that you won't have to write addOctTreeSceneNode(yourMesh->getMesh(0)) anymore, but can use addOctTreeSceneNode(yourMesh), which is a little bit more intuitive. - The Driver type enumeration have been adapted to the Irrlicht naming conventions. For example instead of writing DT_OPENGL, now write EDT_OPENGL. - The ITexture interface has two new methods for getting the size of the texture: ITexture::getSize() and ITexture::getOriginalSize(). This replaces the old getDimension()-method and allows to disable bugs which are generated by the automatic scaling to optimal sizes of textures. - There are some new keycodes available: KEY_COMMA, KEY_PLUS, KEY_MINUS, KEY_PER IOD.

- There are now 3 lightmap Material types: EMT_LIGHTMAP, EMT_LIGHTMAP_M2 and EMT_LIGHTMAP_M4, which are making the lightmaps 2 or 4 times brighter. If you used the Material EMT_LIGHTMAP in your code, you should replace it now with EMT_LIGHTMAP_M4. - The transformation enumeration names have been adapted to the irrlicht naming conventions. For example instead of writing TS_VIEW, now write ETS_VIEW. - Video driver feature enumeration names have been changed from EK3DVDF_... to EVDF_... - The GUIEnvironment now has a new method: getRootGUIElement(). With this it is possible now to add external created custom GUI Elements to the gui environ ment, without an existing internal GUI element as parent. - The setViewPort()-Method of the OpenGL-device now works, too. Nothing stands n ow in the way of creating splitscreen applications using the OpenGL device. Oliver Klems sent code for this, I slightly modified it. Thank you! - Corrected a bug, which made the EMT_REFLECTION_2_LAYER Material disappear on s ome hardware. - Sirshane sent in a bug fix: It is now possible to make the mouse cursor invisible in the Linux version of the engine. Thanx sirshane! - getFrameNr() of IAnimatedMeshSceneNode is now public. - Again a small bug in the 3ds file loader was fixed. - A small bug causing light positions being transformed in the OpenGL driver differently compared to D3D. Thanx to Matthias Gall for reporting this! - Typing error fixed: ISceneCollisionMananger::getRayFromScreenCoordiantes renam ed to getRayFromScreenCoordinates. - Linux support with multitexturing and mipmap generation has been improved. - A bug was fixed wich caused the Engine not to run when compiled as dynamic library under linux. Thanks to Shane Parker who pointed out the problem. - A bug was fixed in position2d.h in the operator +=, and the list iterator now has per and postfix operators. Thanks to Isometric God for spotting this out. - A bug was fixed in the Metatriangleselector, causing it to detect only collisi ons with the last TriangleSelector in it. -----------------------------------------------------------------------------------Changes in version 0.4.1: (18 Sep 2003)

- Input events are now processed faster than repaint and window events. This means that input commands now effect things directly, in earlier versions there could be a delay when there were low frames per second. Some people noticed this when moving with the fps camera in large levels: The camera sometimes stopped seconds after the button was released. This is now fixed. - A Message Box is now available in the GUI Environment. It looks like the windows message boxes and supports OK, Cancel, Yes and No buttons, which can be combined freely. Also, it shows multiline text and adjusts its size based on the amount of text it shows, so it should be very useful for displayi ng (debug) messages during runtime. - It is now possible to make all windows (message boxes, file open dialogs, simple windows) modal. - IGUIStaticText now supports multiline text via automatic word warp and manual line breaking with '\n'. You only need to switch it on with yourText->setWordWrap(true); - Non default MD2 animations are now supported. Which means simply that you can enumerate the names of all md2 animations and the AnimatedMeshSceneNode now su pports a setMD2Animation() with a character string as parameter instead of a constant . - You do not need an event receiver anymore for sending user events to the activ e camera, this is now done autmaticly. In addition, it is now possible to set a new event receiver during runtime of the engine using IrrlichtDevice:: setEventReceiver(). - It is now possible to disable and enable the input receiver of a camera. This is useful for example for removing the users control of the camera. To do this , call camera->setInputReceiverEnabled(false); - The first person shooter camera now supports a keymap: You can define your own key mapping to control the camera when you create it with ISceneManager:: addCameraSceneNodeFPS(). - Thanks to Jon Pry, the engine now also loads compressed TGA texture files. Now only 8 bit palette using TGAs are missing. :) - There are methods for converting 3d coordinates in 2d coordinates and the othe r way round. You can find them as two new methods of the ISceneCollisionManager: getRayFromScreenCoordiantes() and getScreenCoordinatesFrom3DPosition(). - There are now access methods in IGUIWindow for getting pointers to the maximize, minimize and close buttons, to be able to remove them for example. - Before starting up the engine, a version check now is performed and a warning is written, if Irrlicht.DLL version and header version of your application do not match.

- A bug with the skybox has been fixed: In OpenGL, it was possible to see the borders of the skybox. In addition, when a skybox was visible, there were errors in the texture coordinates of other meshes. This is all fixed now. - A bug has been fixed causing the engine to crash when removing gui childs which where created inside the .dll but are removed from outside. - A bug was fixed causing the engine to crash when drawing debug data of octtree scene nodes with geometry data with vertices with one texture coordiante. - Multitexturing now works with linux, too. Thanx to Jon Pry again, for showing me where the problem was. - The bug (reported by saigumi) preventing scene nodes attached to a camera from moving correctly is now fixed. - The "Climb-Walls" bug (reported first by Matthias Gall) is fixed. Gravity acceleration is now quadratic instead of linear. - A warning is now printed out, if more vertices are rendererd with one call than the hardware supports. - Other, Minor New/Changed methods in public interfaces: * get and setText() in IGUISkin * += operators are now available in the string class. * setRelativePosition() in IGUIElement * enumeration EKEY_CODES renamed to EKEY_CODE * getMaximalPrimitiveCount() in IVideoDriver * getAnimationCount() in IAnimatedMeshMD2 * getAnimationName() in IAnimatedMeshMD2 -----------------------------------------------------------------------------------Changes in version 0.4: (04 Sep 2003) - Collision detection and reponse based on ellipsoids in now implemented. There is a new method available in the ISceneCollisionMananger, which returns a collision response point. In addition, a new SceneNodeAnimator is available, which causes a scene node, to which it is attached to, not to move through walls, to climb stairs and to be affected by gravity. This scene node animator can be attached to any scene node. For example adding it to the FPSCamera, it makes the user possible to walk through the 3d world as in first person shooters. - There is now a full featured Particle System included in the engine for creating fire, explosions, snow, smoke and so on. It is customizeable and extensible. There is a ParticleSystemScene node available in the SceneManager and some standard particle emitters and affectors are already implemented. - Realistic water: The engine now features an IWaterSurfaceScene node, which animates a static mesh with water waves. In combination with the new EMT_REFLECTION or EMT_TRANSPARENT_REFLECTION material type, you can easily create realistic animated water surfaces. - Triangle base picking is now possible using the ISceneCollisionMananager. If a collision happened, the intersection point and the triangle causing the intersection is returned.

- Stencil shadows are now drawn using the ZFail method by default, but it is possible to choose ZPass, if wished. This means that the camera may now move inside the shadow volumes and no errors will occur. In addition a stencil shadow bug is now fixed: In 0.3 there where no shadows visible in the TechDemo . - The interface of ISceneNode has changed: There is no more a RelativeTransforma tion and AnimatedRelativeTransformation matrix. They have been replaced by 3 vector s: RelativeTranslation, RelativeRotation and RelativeScale, which can be accessed by the corresponing get() and set() methods. This simplifies the interface a lot. Also, the set/getRelativePosition was renamed to set/getPosition. - The new IAnimatedMeshMD2 interface now returns start, begin time and fps of every MD2 animation type. In this context, IAnimatedMeshSceneNode got a new method called setMD2Animation(), which accepts a single constant like EMAT_ATTACK, which starts and plays the fitting animation (attack animation in this case), simplifying the interface a lot. - Some scene nodes can now draw debug data like their bounding boxes. This feature is switched on for a single node by calling ISceneNode::setDebugDataVisible(true). Looks really interesting for animated scene nodes like particle systems or animated meshes. - There is now a IGUIInOutFader avaiable, which is able to fade in or out the whole screen or parts of it. - The new IVideoModeList is a list with all available video modes. It can be retrieved with IrrlichtDevice::getVideoModeList(). If you are confused now, because you think you have to create an Irrlicht Device with a video mode before being able to get the video mode list, let me tell you that there is no need to start up an Irrlicht Device with DT_DIRECTX8, DT_OPENGL or DT_SOFTWARE: For this (and for lots of other reasons) the null device, DT_NULL exists. - With the new IMeshManipulator interface accessible with ISceneManager::getMeshManipulator() it is possible to perform some basic operations on meshes: Flipping all surfaces, recalculating all normals, scaling the mesh, creating a new texture mapping and so on. - A new material for creating water surfaces or glass with reflections on it is available: EMT_REFLECTION_2_LAYER and EMT_TRANSPARENT_REFLECTION_2_LAYER. It has uses a reflection map, and an additional optional texture. The transparency of this material is set by the alpha color value in the verti ces. - Another new material is EMT_SOLID_2_LAYER. It is a material with 2 textures, blended together with the alpha value of the vertex color. This material is currently only available in DirectX. - Trilinear Filtering is now supported by the engine. There is a new option in SMaterial: TrilinearFilter and EMF_TRILINEAR_FILTER. - The addChild() method of the IAnimatedMeshSceneNode for adding SceneNodes to joints of skeletal animated meshes was removed. Instead there is now a new method: getMS3DJointNode(). This returns a pointer to a child node, wich has the same transformation as the corrsesponding joint. In this way it is possible to do more advanced operations with joints and

attaching scene nodes to joints. Also, the IAnimatedMeshMS3D interface now giv es access to all joints. In this way, you can easily enumerate all names of all joints in the mesh. - Font and color of every IGUIStaticText can now be set separately, without modifying the IGUISkin. - There is now a ELEMENT_LEFT gui event, which all hovered elements receive when they are left. - All features of the FileOpenDialog are now working. - Debug informations are now printed out to the console window also on the win32 platform. - FPSCamera now supports setTarget(). Its not precise but working. - Textures of 3ds files are now loaded from the same directory in which the 3ds file is. If the texture is not found there, the texture is tried to be loaded from the current working directory. - A small bug in the 3ds file loader has been fixed. There were 3ds files export ed by anim8or, where the reading of the 3ds file never stopped. - It is now possible to configure the minimal amount of polygons contained in every node in an OctTree via addOctTreeSceneNode(). - There is a new template class in the core namespace: triangle3d. With this, it is easy to find intersections between lines and triangles, find out if a point is within a triangle and so on. - A small bug in ISceneManager::addHillPlaneMesh() was fixed: Now the right tile amount is created. - There is a new SceneNode available: IDummyTransformationSceneNode. It exists for making it possible to insert matrix transformations anywhere into the scene graph. - Added a new SceneNode animator for deleting Scene nodes automaticly after some time. Create it with ISceneManager::createDeleteAnimator(). - The techdemo now is interactive. After a short non-interactive flight over the quake 3 level, you are placed as player inside the level, may move around, shoot fire balls and take a look at some animated characters which are placed on the map. - I fixed a bug which caused the screen get black when choosing shadows and full screen on some special 3d adapters. - I fixed some bugs in the linux port: The timer returned an incorrect time, cau sing wrong animations everywhere and the releasing of keys and mouse buttons was no t sent as event. In addition, I placed a copy of the zlib.a and jpeglib.a into t he /lib/Linux directory and changed the Makefiles of the examples and the source

of the engine for doing this automaticly in the future, so I hope there will b e no problems with other versions of zlib and jpeglib anymore. - There are 2 new tutorials: One showing how to do collision detection and for special effects. - Other, Minor New/Changed methods in public interfaces: * getVersion() in IrrlichtDevice * getLengthSQ() in vector3d * getInterpolated() in vector3d * getInterpolated() in SColor * getAngle() in vector2d * getAngleWith() in vector2d * getPrimitiveCountDrawed() in IVideoDriver renamed to getPrimitiveCountDrawn( ) * getSceneNodeFromSceenCoordinates() renamed to getSceneNodeFromScreenCoordina tes() * getMeshType() in IAnimatedMesh * getInterpolated() in aabbox * setMD2Animation() in IAnimatedMeshSceneNode * getFullFileName() in IFileList * addShadowVolumeSceneNode() in IAnimatedMeshSceneNode extended with zfail par ameter * drawStencilShadowVolume() in IVideoDriver extended with zfail parameter * getDistanceFromSQ() in vector3d * subString() in string * findFirst() in string * findLast() in string * getTriangleSelector() in ISceneNode * setTriangleSelector() in ISceneNode * draw3DTriangle() in IVideoDriver * setShadowColor() in ISceneManager * getShadowColor() in ISceneManager * addToDeletionQueue() in ISceneManager * getSceneNodeFromId() in ISceneManager -----------------------------------------------------------------------------------Changes in version 0.3: (18 Jul 2003) - Linux port: The Irrlicht Engine now compiles and runs on Linux. Currently only the OpenGL driver is available. The Software driver would be there too, if somebody could tell me a fast way to blit a A1R5G5B5 surface to the screen using X. All examples do compile and run, but there are some things missing: * It is not yet possible to make the mouse cursor invisibe. * The timer seems not to return the currect time. * Multitexturing does not work correctly on all gfx adapters. - Ms3D Animations: The engine is now able to play skeletal animations directy from Milkshape 3D (.ms3d) files. It is also possible to attach objects to parts of the animated mesh. For example a weapon to the left hand of the animated model. - Because the swprintf function in Windows32 does not match the ISO C standard, and it does in linux and all other platforms, there is now a define in Irrlich t.h, to make the code be the same on all platforms: #define swprintf _snwprintf

This simply means that you need to add a parameter to your swprintf calls if you used this function in your win32 irrlicht engine projects. For example ins tead of writing wchar_t tmp[255]; swprint(tmp, "FPS: %d", fps); you now write wchar_t tmp[255]; swprint(tmp, 255, "FPS: %d", fps); - Automatic culling has changed a little bit: It is now done by the SceneManager . Scene nodes now only need to return a valid, non transformed bounding box to b e culled automaticly. It is explaned in the CustomSceneNode Tutorial how this wo rks. - It is now possible to use the engine easily for 2D graphics: There are now to new methods in the IVideoDriver, which create an 1bit alpha channel for textures using an color key. The methods are both named makeColorKeyTexture. There is a tutorial '2d graphics' which explains how this works. - The rect template class was removed and replaced by the rectEx class. There is now only one rectangle template available, called 'rect' for simplifying the interface. - The texture coordinate bug in Milkshape 3d models with lots of shared vertices was fixed. - Bugfix with GUI environment hovering invisible elements. - There are two new tutorials: One for 2d graphics, and one for user interface. - Tutorial changes: * All backslashes replaced by slashes in file names in all tutorials for linux compatibility. * RectEx replaces with rect in 1.HelloWorld * Added second parameter to swprintf in 2.Quake3Map * Added bounding box creation to 3.CustomSceneNode * Added second parameter to swprintf in 4.Movement - New/Changed methods in public interfaces: * getClosestPoint in line3d * getMatrixOfMeshPart in IAnimatedMesh * removeChild in ISceneNode now returns true or false * addChild in IAnimatedMeshSceneNode * setParent in ISceneNode -----------------------------------------------------------------------------------Changes in version 0.2.5: (22 Jun 2003) - A new material type is available: EMT_TRANSPARENT_VERTEX_ALPHA, which realizes transparency based on the vertex alpha color. It currently is only implemented in the DirectX device. - There is now an ISceneCollisionManager available. Get it with getSceneCollisionManager() from the ISceneManager. It currently only implement s

picking, but more is coming soon. - Automatic Culling based on Bounding Boxes is implemented now. It can be switch ed on or off for every SceneNode seperately using ISceneNode::setAutomaticCulling(). It is on by default. - It is now possible to remove loaded textures for freeing memory or reloading t hem. Use IVideoDriver::removeTexture() or removeAllTextures(). - New drawing methods in the IVideoDriver interface: * Draw3dLine(), drawing a 3d line. * Draw3dBox(), which draws an axis aligned bounding box. * Draw2dLine(), currently only supported by the Software device. - MD2 bugfixes: * There was a small bug with texture coordinates. * Frames are now correctly interpolated when playing animations. - Bugfix in the 3ds file format loader: Single objects in the 3ds file with mult iple materials attached are now loaded correctly. - list.h renamed to irrlist.h due to compatibility issues. - Now works with Dev-C++ 5 Beta 8. (4.9.8.0) - New/Changed methods in public interfaces: * 'getInverse' in matrix4. * 'transformBox' in matrix4. * 'repair' in aabbox. * 'intersectsWithLine' in aabbox. * 'getVector' in line3d. * 'getMiddle' in line3d. * 'normalize' method in vector3d and vector2d now returns reference to vector . * 'getTransformedBoundingBox' in ISceneNode. * 'getChildren' in ISceneNode * 'setRotation' in ISceneNode * 'addHillPlaneMesh' in ISceneManager now accepts a texture repeat count para meter. -----------------------------------------------------------------------------------Changes in version 0.2: (19 May 2003) - The engine is now able to load .3ds files, with their materials and textures. - There are some new SceneNodeAnimators: A fly straight animator and a texture a nimator. - Texture coordinates can now be set to clamp or wrap mode with a flag in the SMaterial struct. - Skyboxes are implemented. - Billboards now work 100% correctly.

- The IAnimatedMeshSceneNode is now able to draw shadows of itself. To enable th is, just call addShadowVolumeSceneNode(). Please note that shadows are currently just experi mental, there are some bugs, and they only only in Direct3D mode. - A small bug in the view frustum and the octree fixed. - The default aspect ratio in all camera scene nodes was changed. - Some changes and extenstions to the core::matrix4, SViewFrustum, plane3d and aabbox were made. The plane3dex was removed, there is now only one plane imple mentation available. Implemented some ideas and suggestions by Mark Jeacocke. Thanx a lo t! - The interface for adding dynamic lights has been enhanced. There are some new methods for handling dynamic light in the IVideoDriver interface. For example, it is n ow possible to change the ambient light. - There is a new parameter in the createDevice() function, which specifies if th e stencil buffer should be activated. Also, now all parameters have default para meters. - There is now a timer object to get the current timer. It can be received using the getTimer() method from the IrrlichtDevice. - The first person shooter camera is now able to be moved by external using setRelativePosition() and the sceneNodeAnimators. In addition, it now supports multiple FPS cameras. - Mesh format loading extenstions are now possible. To extend the engine with a mesh format it currently does not support (e.g. .cob), just implement a IMeshLoader interface and add it to the engine calling ISceneManager::addExternalMeshLoader(). - It is now possible to extend the Irrlicht Engine easily with new texture file format loaders. If there is an image file format the engine does not support (for exa mple .gif files) the IImageLoader interface can be implemented to load .gif files and added to the engine via IVideoDriver::addExternalSurfaceLoader(). -----------------------------------------------------------------------------------Changes in version 0.1.5: (03 Apr 2003) - The zlib and libjpeg are now included in the SDK. - It is now possible to let the scene manager generate a hilly plane on the fly. - The Interface for handling dynamic lights was simplified. - The OpenGL 2D and 3D device is now full implemented. - There is now a way to access to root scene node from the scene manager, and so it

is possible to add external created custom scene nodes to the scene. - There is a new Camera control scene node available in the engine: First Person Shooter Camera Control. Look with mouse movement, move and strafe with the cursor keys . - The engine now compiles with g++ and the Microsoft compilers, which enables it to develop applications for the engine with VisualC++6.0, VisualC++.NET and Dev-C ++. - There is now a ICursorControl available in the engine, which is able to modify the mouse cursor: Get/Set the position of the cursor, make it invisible or visible . - video::Color was renamed to video::SColor to fit the Irrlicht Engine naming co nventions and for g++ compatibility issues in the Vertices. -----------------------------------------------------------------------------------Release notes of version 0.1: (14 Mar 2003) This is an alpha version of the SDK. So please note that there are features missing in the engine and maybe also some bugs. The following list is a complete list of parts of this alpha SDK which do not work 100% correct. All other parts which can be found in the documentation and accessed with the Irrlicht header files work and can already be used. - OpenGL Device The OpenGL Device is currently only able to load textures and draw basic 3D primitives. No 2D functions, complex materials and dynamic light are implemented. Please use the DirectX8 or the Software Device instead. In the next release (0.2) the OpenGL device will be complete. - Software Device Dynamic lighting, multitexturing, 3d clipping and bilinear filtering are not implemented because the Software Device was intented to to only 2d functions, the primitive 3d functions are only an addition. Until the first non beta release (1.0) of the Engine, some more 3d functionality will be added. - BspTree The binary space partition scene node does not work correctly and has some bugs in it, which might lead to crashes. Please use the OctTree scene node instead. There is nearly no difference between the interface of them. - MeshViewerGUIElement The camera control of this element is currently disabled. - FileOpenDialog Not all functions are implemented. - Render to Texture support Is not implemented yet.

- MS3D Skeletal Animation A loaded mesh is currently not animated and only drawn static. - Quake 3 maps No support for curved surfaces yet. - Linux Support The engine currently only runs with Windows platforms. A linux version will be available somewhere between the versions 0.2 and 0.5, it depends on the need of the users. ------------------------------------------------------------------------------------

Vous aimerez peut-être aussi