Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 2 and Version 3 of dev/3DEngineEvaluation


Ignore:
Timestamp:
Sep 10, 2007, 5:06:26 PM (17 years ago)
Author:
wenners
Comment:

+ CS part2

Legend:

Unmodified
Added
Removed
Modified
  • dev/3DEngineEvaluation

    v2 v3  
    22= Orxonox 2: 3D Engine Evaluation =
    33
    4 Orxonox needs a new stable engine. Things we need to do before the next Thinktank:
     4Orxonox needs a new stable engine with good documentation and a healthy community. Things we need to do before the next Thinktank:
    55
    66 * Get the engine work on Unix and Windows
    7  * Write test code (tutorial) to load a .bsp level from Orxonox
     7 * Write a test app which loads a .bsp level from Orxonox
    88 * Collect howto documents on getting started with the engine
    9  * ...
     9 * List advantages and disadvantages of every engine
    1010
    1111-------
     
    2424
    2525=== Load a BSP level ===
     26Link: http://www.ogre3d.org/wiki/index.php/How_to_create_BSP_files_using_GtkRadiant
     27
    2628
    2729--------
     
    4850'''Ubuntu 7.10 Gutsy:''' Everything should work (not tested yet)
    4951
    50 '''Debian Etch (stable):''' It does not work. Many libs outdated.
     52'''Debian Etch (stable):''' Does not work. Many libs are outdated.
    5153
    52 '''Debian Lenny (testing):''' works great, only shaders are disabled
     54'''Debian Lenny (testing):''' Works great, only shaders are disabled
    5355
    54 '''Debian Sid (unstable):''' should work great too (not tested yet)
     56'''Debian Sid (unstable):''' Should work great too (not tested yet)
    5557
    5658'''"walktest" System Test:'''
     
    9092
    9193=== Load a BSP level ===
     94There's an outdated [http://community.crystalspace3d.org/tiki-print_article.php?articleId=15 tutorial] that uses the map2cs converter to get a CS level from a bsp map. This map can be loaded directly with the walktest tool. But they dropped the support for map2cs (it was buggy I think). Now they force the users to use blender for all CS tasks.
     95
     96
     97[http://www-poleia.lip6.fr/~degris/converter/ Counter-Strike to Crystal Space 3D converter] is another tool to convert bsp maps (in python). I tried to install it, but I always get python errors. It seems outdated too. Anyone motivated to do some python debugging?
     98
     99Converter dependecies (maybe incomplete):
     100{{{
     101# aptitude install imagemagick python-imaging python-elementtree
     102}}}
     103
     104Till now, I couldn't find a direct way to import bsp levels or a working level converter. Maybe we should start flaming in their forum...
     105
     106
    92107
    93108--------