Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 1, 2008, 10:20:24 PM (16 years ago)
Author:
rgrieder
Message:

Added Dedicated game state (name: "dedicated", class: GSDedicated).
It doesn't work at all yet, mainly because of our very poorly designed /objects folder. I tried adding a few "if (Settings::showsGraphics())", but I ran into some serious issues.
I will simply leave this topic up to an eager orxonox developer who wants a dedicated server :D There is A LOT of work to be done…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/orxonox/Main.cc

    r1689 r1694  
    4747#include "gamestates/GSServer.h"
    4848#include "gamestates/GSClient.h"
     49#include "gamestates/GSDedicated.h"
    4950#include "gamestates/GSGUI.h"
    5051#include "gamestates/GSIOConsole.h"
     
    9495    GSServer server;
    9596    GSClient client;
     97    GSDedicated dedicated;
    9698    GSGUI gui;
    9799    GSIOConsole ioConsole;
     
    104106
    105107    root.addChild(&ioConsole);
     108    root.addChild(&dedicated);
    106109
    107110    root.start(argc, argv);
Note: See TracChangeset for help on using the changeset viewer.