Mercurial > fife-parpg
changeset 53:1bcf91b6a1ee
* Release README (list of changes by jasoka)
* Release should be ready for tagging
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sun, 13 Jul 2008 17:36:20 +0000 |
parents | ab8b11adfb70 |
children | fa98d27d0036 |
files | doc/README |
diffstat | 1 files changed, 89 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/README Sun Jul 13 16:11:24 2008 +0000 +++ b/doc/README Sun Jul 13 17:36:20 2008 +0000 @@ -1,12 +1,27 @@ == Introduction == -Welcome to the FIFE 2008.1 README. This snapshot is based on SVN revision !FIXME. +Welcome to the FIFE 2008.1 README. This snapshot is based on SVN revision 2509. + +== Table of contents == +1 Theme of this release +2 Important changes since the 2008.1 release +3 Features +4 Building & running FIFE +4.1 General notes +4.2 Linux +4.3 Mac +4.4 Win32 +5 Configuration +6 Known issues +7 Feedback +8 Signature + == Theme of this release == For the 2008.1 release we decided to stick to the tropical island concept and called our example game "Rio de hola". -Caution: this release is still lacking a lot of polish, especially the "Rio de hola" game that ships with it. It lacks almost any form of gameplay but there is a reason why we decided to ship the release in its current form nevertheless. We planned to ship future FIFE releases under the LGPL to offer a less "restrictive" license to possible FIFE users (we know that the term "restrictive" is just our personal point of view). +Caution: this release is still lacking a lot of polish, especially the "Rio de hola" game that ships with it. It lacks almost any form of gameplay but there is a reason why we decided to ship the release in its current form nevertheless. We planned to release future FIFE milestones under the LGPL to offer a less "restrictive" license to possible FIFE users (we know that the term "restrictive" is just our personal point of view). -We had to clear up the legal situation first and fortunately the software freedom law center (http://www.softwarefreedom.org/) helped us with the transition. The agreement of all developers who contributed code that was still used in FIFE was needed and because over two dozens of people contributed code to the project, this took us a lot of time. We were not able to reach all of them so we decided to either remove or rewrite the code of the contributors who didn't reply to our license switch proposal mails (from scratch). +We had to clear up the legal situation first and fortunately the software freedom law center (http://www.softwarefreedom.org/) helped us with the transition. The agreement of all developers who contributed code that was still used in FIFE was needed and because over three dozens of people contributed code to the project, this took us a lot of time. We were not able to reach all of them so we decided to either remove or rewrite the code of the contributors who didn't reply to our license switch proposal mails (from scratch). We were able to replace the last parts of the problematic code today so now FIFE is officially LGPL'ed software. We're glad that we were able to make this step after it took us so long and we think that the new license alone is worth a release. Therefore we're proud to finally present the first FIFE release that is published under LGPL 2.1 or newer (your choice). @@ -15,22 +30,85 @@ The milestone itself seems to be a very important step into the right direction. You can build your own maps now with the help of the editor tool. Furthermore a basic application structure is in place that should give you an idea how can create your own FIFE-based game; this release is stable enough to start working on your game now :-) == Important changes since the 2008.0 release == -* !FIXME +=== Model improvements & simplifications === + * Elevations removed (Fallout legacy). + * Support for namespaces: + * New resource infrastructure migrated into whole engine. This enables: + * uniform pooling for all resources that need to be pooled. + * uniform loading for all resources (model stuff, images, sounds...). + * uniform saving for resources which support saving (model stuff). + * Datasets are now stored in a flat list in model instead of dataset hierarchy. + * Changes in model are now bookkeeped. Observer interfaces provided for change listeners. + * This enables e.g. reacting only to changes instead of polling on every round. + * Also critical enabler for triggers. + * Instances now support initial rotation value. + * Objects support default actions. + * Further model cleanup. + +=== XML format changes === + * All resources are now defined with principle 1 file / 1 resource. + * Importing of objects can now be done also based on directories where they are contained. + * Relative paths are now used instead of absolute ones. + +=== Loaders === + * All loading happens now from python (tinyxml dependency removed). + * Improved error reporting. + +=== Editor === + * Possibility to move instances on map. + * Possibility to rotate instances on map. + * Possibility to zoom the map (OpenGL mode only). + * Painting with currently selected instance (e.g. large ground areas). + * Importing of multiple objects based on given directory. + * Initial map creation wizard (still work in progress). + +=== Rio de hola game === + * More assets: + * Graphics, sounds, music... + * Two new maps matching the storyline. + * Rio de hola now conforms to package structure: http://wiki.fifengine.de/Fife_Package_Specification + * Popup menu integration, demonstration of actions (kick, talk). + +=== Pychan improvements === + * Hiding of scrollbars. + * Text wrapping. + * A lot of smaller improvements. + +=== Functionality === + * Pixel perfect instance picking (taking transparency into account). + * Ability to get list of instances from given screen rectangle. + * Distance calculations made easy, exposed to scripts. + * Instance outlining. + * Instance coloring. + * Screenshots are now saved in png format (instead of bmp). + * Stereo sound support in linux (introduced with the help of openal-soft). + +=== Video / view improvements === + * Both renderbackend and separate images can now render graphical primitives (e.g. lines, dots..). + * Each camera now has separate set of renderers. Allows truly adjusting cameras independently. + * Zooming capability (currently properly supported only by OpenGL backend). + * Support for drag cursor definitions. + * OpenGL graphics chunking size is now definable in settings. Should help e.g. with large backgrounds. + * GenericRenderer adding customised rendering capabilities for scripts. + +=== Misc. changes === + * Initial package structure defined for FIFE clients. + * Updated guichan to the latest release 0.8.1. + * Usage of unittest++ instead of boost unittests. + * Lots of bug fixes. === Non-code related changes === -* Switch from GPL to LGPL +* Switch from GPL 2.0 to LGPL 2.1 (or newer). == Features == -* A complete list of the features that FIFE offers can be found at the project wiki: -http://wiki.fifengine.de/index.php?title=Engine_features +* A complete list of the features that FIFE offers can be found at the project wiki: http://wiki.fifengine.de/index.php?title=Engine_features == License == -The source code (*.cpp, *.h & *.py) is licensed under LGPL 2.1 or newer: -http://www.gnu.org/licenses/lgpl-2.1.html +The source code (*.cpp, *.h & *.py) is licensed under LGPL 2.1 or newer: http://www.gnu.org/licenses/lgpl-2.1.html Content was taken from a lot a lot of different 3rd party sources. Therefore each client directory comes with a separate LICENSE file that states the origin of the content, the author and the actual license it was published under. -== Building FIFE == +== Building & running FIFE == === Dependencies === A list of all dependencies (including accurate version numbers) that you'll need to obtain to build FIFE on your platform can be found at the project wiki: http://wiki.fifengine.de/index.php?title=Build_dependencies @@ -71,7 +149,7 @@ Last but not least there is an example client residing in <FIFE>\clients\pychan_demo that shows how the pychan GUI library works. Start the GUI demo application by running pychan_test.py. -== Configuring FIFE == +== Configuration == The engine utilizes special settings files for configuring FIFE. This file is called settings.py and resides in the same directory as the run.py scripts. You can customize FIFE by editing this file. == Known issues ==