Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 9, 2008, 4:28:42 AM (16 years ago)
Author:
landauf
Message:
  • added more exceptions to handle problems while loading a level or single objects
  • dedicated server runs and clients may join, but there are still some heavy problems
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/util/Exception.h

    r2111 r2161  
    6363            InitialisationFailed,
    6464            NotImplemented,
    65             GameState
     65            GameState,
     66            NoGraphics,
     67            AbortLoading
    6668        };
    6769
     
    127129            RETURN_EXCEPTION_CODE(NotImplemented);
    128130            RETURN_EXCEPTION_CODE(GameState);
     131            RETURN_EXCEPTION_CODE(NoGraphics);
     132            RETURN_EXCEPTION_CODE(AbortLoading);
    129133            default:
    130134                return "";
     
    141145    CREATE_ORXONOX_EXCEPTION(NotImplemented);
    142146    CREATE_ORXONOX_EXCEPTION(GameState);
     147    CREATE_ORXONOX_EXCEPTION(NoGraphics);
     148    CREATE_ORXONOX_EXCEPTION(AbortLoading);
    143149}
    144150
Note: See TracChangeset for help on using the changeset viewer.