Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2080 in orxonox.OLD for orxonox/branches/chris/src/orxonox.cc


Ignore:
Timestamp:
Jul 6, 2004, 10:29:05 PM (21 years ago)
Author:
chris
Message:

orxonox/branches/chris: Implemented basic track and spawning functionality. Added a function to convert a Rotation into a glmatrix. Implemented operator* in Rotation. Refined World, made World friend class of world_entity. Implemented camera functionality (can now be bound to the worldentity it should focus on).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/chris/src/orxonox.cc

    r2068 r2080  
    8787       
    8888        if( path != NULL) strcpy (configfilename, path);
     89        else strcpy (configfilename, "./");
    8990        strcat (configfilename, "/.orxonox.conf");
    9091}
     
    191192int Orxonox::init_world ()
    192193{
    193         printf("Not yet implemented\n");
     194        world = new World();
     195       
     196        // TO DO: replace this with a menu/intro
     197        world->load_debug_level();
     198       
    194199        return 0;
    195200}
Note: See TracChangeset for help on using the changeset viewer.