Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5822 in orxonox.OLD for trunk/src/defs


Ignore:
Timestamp:
Nov 29, 2005, 2:22:37 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged branches/network to the trunk
merged with command:
svn merge -r 5505:HEAD branches/network trunk

conflicts resolved in favor of the trunk (as always :))
also fixed a typo in the #include "SDL_tread.h"

Location:
trunk/src/defs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/defs/class_id.h

    r5819 r5822  
    5757  // superclasses
    5858  CL_MASK_SUPER_CLASS           =    0xff000000,
    59   CL_BASE_OBJECT                =    0x01000000,
    60 
    61   CL_PARENT_NODE                =    0x02000000,
    62   CL_WORLD_ENTITY               =    0x04000000,
    63 
    64   CL_STORY_ENTITY               =    0x08000000,
    65 
    66   CL_PHYSICS_INTERFACE          =    0x10000000,
    67 
    68   CL_EVENT_LISTENER             =    0x20000000,
    69 
    70   CL_ELEMENT_2D                 =    0x40000000,
     59  CL_BASE_OBJECT                =    0xff000000,
     60
     61  CL_PARENT_NODE                =    0x01000000,
     62
     63  CL_STORY_ENTITY               =    0x02000000,
     64
     65  CL_PHYSICS_INTERFACE          =    0x04000000,
     66
     67  CL_EVENT_LISTENER             =    0x08000000,
     68
     69  CL_ELEMENT_2D                 =    0x10000000,
     70
     71  CL_SYNCHRONIZEABLE             =    0x20000000,
     72
     73  CL_WORLD_ENTITY               =    0x40000000,
     74
    7175
    7276  // subsuper-classes
     
    113117  CL_GLGUI_HANDLER              =    0x00000f40,
    114118  CL_GLGUI_MAIN_WIDGET          =    0x00000f41,
     119  CL_NETWORK_MANAGER            =    0x00000f50,
     120
    115121
    116122  // StoryEntities (range from 0x00000100 to 0x000001ff)
     
    202208
    203209
    204   // misc: (range from 0x00000b00 to 0x00000cff)
    205   CL_ANIMATION                  =    0x00000b01,
     210  // network stuff (range from 0x00000b00 to 0x00000bff)
     211  CL_DATA_STREAM                =    0x00b01000,
     212  CL_NETWORK_STREAM             =    0x00000b01,
     213  CL_NETWORK_PROTOCOL           =    0x00000b02,
     214  CL_NETWORK_SOCKET             =    0x00000b03,
     215  CL_CONNECTION_MONITOR         =    0x00000b04,
     216
     217
     218
     219  // misc: (range from 0x00000d00 to 0x00000eff)
     220  CL_ANIMATION                  =    0x00000d01,
    206221  //  CL_ANIMATION3D                =    0x00000b02,
    207222  CL_QUICK_ANIMATION            =    0x00000b02,
     
    226241
    227242  // Spatial Data Separation
    228   CL_SPATIAL_SEPARATION         =    0x00000b0d,
    229   CL_QUADTREE                   =    0x00000b0e,
    230   CL_QUADTREE_NODE              =    0x00000b0f
     243  CL_SPATIAL_SEPARATION         =    0x00000d0d,
     244  CL_QUADTREE                   =    0x00000d0e,
     245  CL_QUADTREE_NODE              =    0x00000d0f
    231246};
    232247
  • trunk/src/defs/debug.h

    r5476 r5822  
    106106#define PRINTF(x)        PRINT(x)
    107107#endif
     108#ifndef NO_SHELL
    108109#define PRINT_EXEC       ShellBuffer::addBufferLineStatic
     110#else /* NO_SHELL */
     111#define PRINT_EXEC       printf
     112#endif
    109113
    110114#ifndef PRINTF
  • trunk/src/defs/include_paths.am

    r5556 r5822  
    1919AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util
    2020AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math
     21AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/network
    2122AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/tinyxml
    2223AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/physics
Note: See TracChangeset for help on using the changeset viewer.