Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3481 in orxonox.OLD


Ignore:
Timestamp:
Mar 10, 2005, 9:06:21 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: directory restructuring revisited: created ai/, made Makefile.am nicer :)

Location:
orxonox/trunk/src
Files:
1 added
2 edited
4 moved

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/Makefile.am

    r3478 r3481  
    77AM_CXXFLAGS+="-I./network"
    88AM_CXXFLAGS+="-I./glmenu"
     9AM_CXXFLAGS+="-I./ai"
    910
    1011AM_LDFLAGS= $(MWINDOWS)
     
    1718orxonox_SOURCES= orxonox.cc \
    1819                 game_loader.cc \
    19                  data_tank.cc \
    2020                 command_node.cc \
    2121                 keynames.cc \
     
    2828                 track_manager.cc \
    2929                 light.cc \
    30                  \
    3130                 story_entities/story_entity.cc \
    3231                 story_entities/campaign.cc \
    3332                 story_entities/world.cc \
    34                  \
    3533                 world_entities/world_entity.cc \
    3634                 world_entities/player.cc \
    3735                 world_entities/environment.cc \
    3836                 world_entities/skysphere.cc \
    39                 \
     37                 ai/ai.cc \
    4038                 importer/array.cc \
    4139                 importer/objModel.cc \
     
    4341                 importer/material.cc \
    4442                 importer/texture.cc \
    45                  \
    4643                 mathlib/vector.cc \
    4744                 mathlib/matrix.cc \
    4845                 mathlib/curve.cc \
    49                 \
     46                 lib/data_tank.cc \
    5047                 lib/ini_parser.cc \
    5148                 lib/list.cc \
    52                  \
    5349                 glmenu/glmenu_imagescreen.cc \
    54                  \
    5550                 font/fontset.cc
    5651
    57 noinst_HEADERS = ability.h \
    58                  data_tank.h \
    59                  world_entities/npc.h \
    60                  defs/stdincl.h \
     52noinst_HEADERS = orxonox.h \
     53                 game_loader.h \
     54                 track_manager.h \
     55                 base_object.h \
     56                 p_node.h \
     57                 null_parent.h \
     58                 helper_parent.h \
    6159                 glincl.h \
    62                  ai.h \
    63                  world_entities/environment.h \
    64                  orxonox.h \
    65                  network/synchronisable.h \
     60                 ability.h \
    6661                 base_entity.h \
    67                  defs/error.h \
    68                  world_entities/player.h \
    6962                 camera.h \
    70                  lib/ini_parser.h \
    7163                 power_up.h \
    72                  mathlib/vector.h \
    7364                 keynames.h \
    7465                 proto_class.h \
    75                  story_entities/world.h \
    7666                 command_node.h \
    77                  lib/list.h \
    78                  world_entities/shoot_laser.h \
    79                  world_entities/world_entity.h \
    8067                 message_structures.h \
    81                  world_entities/shoot_rocket.h \
    82                  lib/list_template.h \
     68                 light.h \
    8369                 story_entities/story_entity.h \
    8470                 story_entities/story_def.h \
    85                  game_loader.h \
    8671                 story_entities/campaign.h \
    87                  p_node.h \
    88                  null_parent.h \
    89                  base_object.h \
    90                  helper_parent.h \
    91                  track_manager.h \
     72                 story_entities/world.h \
     73                 world_entities/world_entity.h \
     74                 world_entities/player.h \
     75                 world_entities/npc.h \
     76                 world_entities/environment.h \
     77                 world_entities/skysphere.h \
     78                 world_entities/shoot_laser.h \
     79                 world_entities/shoot_rocket.h \
     80                 ai/ai.h \
     81                 network/synchronisable.h \
     82                 mathlib/vector.h \
    9283                 mathlib/matrix.h \
    9384                 mathlib/curve.h \
     85                 defs/stdincl.h \
     86                 defs/error.h \
     87                 defs/debug.h \
     88                 lib/data_tank.h \
     89                 lib/ini_parser.h \
     90                 lib/list.h \
     91                 lib/list_template.h \
    9492                 glmenu/glmenu_imagescreen.h \
    95                  defs/debug.h \
    96                  world_entities/skysphere.h \
    97                  light.h \
    9893                 font/fontset.h
    9994
  • orxonox/trunk/src/Makefile.in

    r3478 r3481  
    5454PROGRAMS = $(bin_PROGRAMS)
    5555am_orxonox_OBJECTS = orxonox.$(OBJEXT) game_loader.$(OBJEXT) \
    56         data_tank.$(OBJEXT) command_node.$(OBJEXT) keynames.$(OBJEXT) \
    57         camera.$(OBJEXT) base_entity.$(OBJEXT) base_object.$(OBJEXT) \
    58         p_node.$(OBJEXT) null_parent.$(OBJEXT) helper_parent.$(OBJEXT) \
     56        command_node.$(OBJEXT) keynames.$(OBJEXT) camera.$(OBJEXT) \
     57        base_entity.$(OBJEXT) base_object.$(OBJEXT) p_node.$(OBJEXT) \
     58        null_parent.$(OBJEXT) helper_parent.$(OBJEXT) \
    5959        track_manager.$(OBJEXT) light.$(OBJEXT) story_entity.$(OBJEXT) \
    6060        campaign.$(OBJEXT) world.$(OBJEXT) world_entity.$(OBJEXT) \
    6161        player.$(OBJEXT) environment.$(OBJEXT) skysphere.$(OBJEXT) \
    62         array.$(OBJEXT) objModel.$(OBJEXT) model.$(OBJEXT) \
    63         material.$(OBJEXT) texture.$(OBJEXT) vector.$(OBJEXT) \
    64         matrix.$(OBJEXT) curve.$(OBJEXT) ini_parser.$(OBJEXT) \
    65         list.$(OBJEXT) glmenu_imagescreen.$(OBJEXT) fontset.$(OBJEXT)
     62        ai.$(OBJEXT) array.$(OBJEXT) objModel.$(OBJEXT) \
     63        model.$(OBJEXT) material.$(OBJEXT) texture.$(OBJEXT) \
     64        vector.$(OBJEXT) matrix.$(OBJEXT) curve.$(OBJEXT) \
     65        data_tank.$(OBJEXT) ini_parser.$(OBJEXT) list.$(OBJEXT) \
     66        glmenu_imagescreen.$(OBJEXT) fontset.$(OBJEXT)
    6667orxonox_OBJECTS = $(am_orxonox_OBJECTS)
    6768orxonox_LDADD = $(LDADD)
     
    6970depcomp = $(SHELL) $(top_srcdir)/depcomp
    7071am__depfiles_maybe = depfiles
    71 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/array.Po \
     72@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ai.Po ./$(DEPDIR)/array.Po \
    7273@AMDEP_TRUE@    ./$(DEPDIR)/base_entity.Po \
    7374@AMDEP_TRUE@    ./$(DEPDIR)/base_object.Po ./$(DEPDIR)/camera.Po \
     
    213214target_os = @target_os@
    214215target_vendor = @target_vendor@
    215 AM_CXXFLAGS = "-I./world_entities" "-I./story_entities" "-I./mathlib" "-I./lib" "-I./defs" "-I./font" "-I./network" "-I./glmenu"
     216AM_CXXFLAGS = "-I./world_entities" "-I./story_entities" "-I./mathlib" "-I./lib" "-I./defs" "-I./font" "-I./network" "-I./glmenu" "-I./ai"
    216217AM_LDFLAGS = $(MWINDOWS)
    217218orxonox_SOURCES = orxonox.cc \
    218219                 game_loader.cc \
    219                  data_tank.cc \
    220220                 command_node.cc \
    221221                 keynames.cc \
     
    228228                 track_manager.cc \
    229229                 light.cc \
    230                  \
    231230                 story_entities/story_entity.cc \
    232231                 story_entities/campaign.cc \
    233232                 story_entities/world.cc \
    234                  \
    235233                 world_entities/world_entity.cc \
    236234                 world_entities/player.cc \
    237235                 world_entities/environment.cc \
    238236                 world_entities/skysphere.cc \
    239                 \
     237                 ai/ai.cc \
    240238                 importer/array.cc \
    241239                 importer/objModel.cc \
     
    243241                 importer/material.cc \
    244242                 importer/texture.cc \
    245                  \
    246243                 mathlib/vector.cc \
    247244                 mathlib/matrix.cc \
    248245                 mathlib/curve.cc \
    249                 \
     246                 lib/data_tank.cc \
    250247                 lib/ini_parser.cc \
    251248                 lib/list.cc \
    252                  \
    253249                 glmenu/glmenu_imagescreen.cc \
    254                  \
    255250                 font/fontset.cc
    256251
    257 noinst_HEADERS = ability.h \
    258                  data_tank.h \
    259                  world_entities/npc.h \
    260                  defs/stdincl.h \
     252noinst_HEADERS = orxonox.h \
     253                 game_loader.h \
     254                 track_manager.h \
     255                 base_object.h \
     256                 p_node.h \
     257                 null_parent.h \
     258                 helper_parent.h \
    261259                 glincl.h \
    262                  ai.h \
    263                  world_entities/environment.h \
    264                  orxonox.h \
    265                  network/synchronisable.h \
     260                 ability.h \
    266261                 base_entity.h \
    267                  defs/error.h \
    268                  world_entities/player.h \
    269262                 camera.h \
    270                  lib/ini_parser.h \
    271263                 power_up.h \
    272                  mathlib/vector.h \
    273264                 keynames.h \
    274265                 proto_class.h \
    275                  story_entities/world.h \
    276266                 command_node.h \
    277                  lib/list.h \
    278                  world_entities/shoot_laser.h \
    279                  world_entities/world_entity.h \
    280267                 message_structures.h \
    281                  world_entities/shoot_rocket.h \
    282                  lib/list_template.h \
     268                 light.h \
    283269                 story_entities/story_entity.h \
    284270                 story_entities/story_def.h \
    285                  game_loader.h \
    286271                 story_entities/campaign.h \
    287                  p_node.h \
    288                  null_parent.h \
    289                  base_object.h \
    290                  helper_parent.h \
    291                  track_manager.h \
     272                 story_entities/world.h \
     273                 world_entities/world_entity.h \
     274                 world_entities/player.h \
     275                 world_entities/npc.h \
     276                 world_entities/environment.h \
     277                 world_entities/skysphere.h \
     278                 world_entities/shoot_laser.h \
     279                 world_entities/shoot_rocket.h \
     280                 ai/ai.h \
     281                 network/synchronisable.h \
     282                 mathlib/vector.h \
    292283                 mathlib/matrix.h \
    293284                 mathlib/curve.h \
     285                 defs/stdincl.h \
     286                 defs/error.h \
     287                 defs/debug.h \
     288                 lib/data_tank.h \
     289                 lib/ini_parser.h \
     290                 lib/list.h \
     291                 lib/list_template.h \
    294292                 glmenu/glmenu_imagescreen.h \
    295                  defs/debug.h \
    296                  world_entities/skysphere.h \
    297                  light.h \
    298293                 font/fontset.h
    299294
     
    377372        -rm -f *.tab.c
    378373
     374@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ai.Po@am__quote@
    379375@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Po@am__quote@
    380376@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_entity.Po@am__quote@
     
    538534@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o skysphere.obj `if test -f 'world_entities/skysphere.cc'; then $(CYGPATH_W) 'world_entities/skysphere.cc'; else $(CYGPATH_W) '$(srcdir)/world_entities/skysphere.cc'; fi`
    539535
     536ai.o: ai/ai.cc
     537@am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ai.o -MD -MP -MF "$(DEPDIR)/ai.Tpo" -c -o ai.o `test -f 'ai/ai.cc' || echo '$(srcdir)/'`ai/ai.cc; \
     538@am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/ai.Tpo" "$(DEPDIR)/ai.Po"; else rm -f "$(DEPDIR)/ai.Tpo"; exit 1; fi
     539@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='ai/ai.cc' object='ai.o' libtool=no @AMDEPBACKSLASH@
     540@AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/ai.Po' tmpdepfile='$(DEPDIR)/ai.TPo' @AMDEPBACKSLASH@
     541@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
     542@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ai.o `test -f 'ai/ai.cc' || echo '$(srcdir)/'`ai/ai.cc
     543
     544ai.obj: ai/ai.cc
     545@am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ai.obj -MD -MP -MF "$(DEPDIR)/ai.Tpo" -c -o ai.obj `if test -f 'ai/ai.cc'; then $(CYGPATH_W) 'ai/ai.cc'; else $(CYGPATH_W) '$(srcdir)/ai/ai.cc'; fi`; \
     546@am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/ai.Tpo" "$(DEPDIR)/ai.Po"; else rm -f "$(DEPDIR)/ai.Tpo"; exit 1; fi
     547@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='ai/ai.cc' object='ai.obj' libtool=no @AMDEPBACKSLASH@
     548@AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/ai.Po' tmpdepfile='$(DEPDIR)/ai.TPo' @AMDEPBACKSLASH@
     549@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
     550@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ai.obj `if test -f 'ai/ai.cc'; then $(CYGPATH_W) 'ai/ai.cc'; else $(CYGPATH_W) '$(srcdir)/ai/ai.cc'; fi`
     551
    540552array.o: importer/array.cc
    541553@am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT array.o -MD -MP -MF "$(DEPDIR)/array.Tpo" -c -o array.o `test -f 'importer/array.cc' || echo '$(srcdir)/'`importer/array.cc; \
     
    665677@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
    666678@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o curve.obj `if test -f 'mathlib/curve.cc'; then $(CYGPATH_W) 'mathlib/curve.cc'; else $(CYGPATH_W) '$(srcdir)/mathlib/curve.cc'; fi`
     679
     680data_tank.o: lib/data_tank.cc
     681@am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT data_tank.o -MD -MP -MF "$(DEPDIR)/data_tank.Tpo" -c -o data_tank.o `test -f 'lib/data_tank.cc' || echo '$(srcdir)/'`lib/data_tank.cc; \
     682@am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/data_tank.Tpo" "$(DEPDIR)/data_tank.Po"; else rm -f "$(DEPDIR)/data_tank.Tpo"; exit 1; fi
     683@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='lib/data_tank.cc' object='data_tank.o' libtool=no @AMDEPBACKSLASH@
     684@AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/data_tank.Po' tmpdepfile='$(DEPDIR)/data_tank.TPo' @AMDEPBACKSLASH@
     685@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
     686@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o data_tank.o `test -f 'lib/data_tank.cc' || echo '$(srcdir)/'`lib/data_tank.cc
     687
     688data_tank.obj: lib/data_tank.cc
     689@am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT data_tank.obj -MD -MP -MF "$(DEPDIR)/data_tank.Tpo" -c -o data_tank.obj `if test -f 'lib/data_tank.cc'; then $(CYGPATH_W) 'lib/data_tank.cc'; else $(CYGPATH_W) '$(srcdir)/lib/data_tank.cc'; fi`; \
     690@am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/data_tank.Tpo" "$(DEPDIR)/data_tank.Po"; else rm -f "$(DEPDIR)/data_tank.Tpo"; exit 1; fi
     691@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='lib/data_tank.cc' object='data_tank.obj' libtool=no @AMDEPBACKSLASH@
     692@AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/data_tank.Po' tmpdepfile='$(DEPDIR)/data_tank.TPo' @AMDEPBACKSLASH@
     693@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
     694@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o data_tank.obj `if test -f 'lib/data_tank.cc'; then $(CYGPATH_W) 'lib/data_tank.cc'; else $(CYGPATH_W) '$(srcdir)/lib/data_tank.cc'; fi`
    667695
    668696ini_parser.o: lib/ini_parser.cc
     
    852880
    853881distdir: $(DISTFILES)
    854         $(mkdir_p) $(distdir)/defs $(distdir)/font $(distdir)/glmenu $(distdir)/lib $(distdir)/mathlib $(distdir)/network $(distdir)/story_entities $(distdir)/world_entities
     882        $(mkdir_p) $(distdir)/ai $(distdir)/defs $(distdir)/font $(distdir)/glmenu $(distdir)/lib $(distdir)/mathlib $(distdir)/network $(distdir)/story_entities $(distdir)/world_entities
    855883        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
    856884        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
Note: See TracChangeset for help on using the changeset viewer.