moved all item-related files into a new /items repository

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2385 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2008-10-28 01:46:35 +00:00
parent ba7adb18d7
commit 39bdf4f0b0
37 changed files with 2397 additions and 1711 deletions

View File

@ -56,21 +56,24 @@ supertuxkart_SOURCES = main.cpp \
utils/ssg_help.cpp utils/ssg_help.hpp \
material_manager.cpp material_manager.hpp \
grand_prix_manager.cpp grand_prix_manager.hpp \
attachment.cpp attachment.hpp \
attachment_manager.cpp attachment_manager.hpp \
collectable.cpp collectable.hpp \
collectable_manager.cpp collectable_manager.hpp \
items/attachment.cpp items/attachment.hpp \
items/attachment_manager.cpp items/attachment_manager.hpp \
items/collectable.cpp items/collectable.hpp \
items/collectable_manager.cpp items/collectable_manager.hpp \
items/herring.cpp items/herring.hpp \
items/herring_manager.cpp items/herring_manager.hpp \
items/projectile_manager.cpp items/projectile_manager.hpp \
items/missile.cpp items/missile.hpp \
items/homing.cpp items/homing.hpp \
items/bowling.cpp items/bowling.hpp \
smoke.cpp smoke.hpp \
input.hpp kart_control.hpp \
isect.cpp isect.hpp \
track.cpp track.hpp \
herring.cpp herring.hpp \
herring_manager.cpp herring_manager.hpp \
explosion.cpp explosion.hpp \
user_config.cpp user_config.hpp \
grand_prix_data.cpp grand_prix_data.hpp \
kart_properties_manager.cpp kart_properties_manager.hpp \
projectile_manager.cpp projectile_manager.hpp \
kart_properties.cpp kart_properties.hpp \
stk_config.cpp stk_config.hpp \
highscores.cpp highscores.hpp \
@ -99,9 +102,6 @@ supertuxkart_SOURCES = main.cpp \
terrain_info.cpp terrain_info.hpp \
triangle_mesh.cpp triangle_mesh.hpp \
flyable.cpp flyable.hpp \
missile.cpp missile.hpp \
homing.cpp homing.hpp \
bowling.cpp bowling.hpp \
history.cpp history.hpp \
scene.hpp scene.cpp \
no_copy.hpp constants.hpp \

View File

@ -19,7 +19,7 @@
#include <plib/ssg.h>
#include "explosion.hpp"
#include "projectile_manager.hpp"
#include "items/projectile_manager.hpp"
#include "scene.hpp"
#include "audio/sfx_base.hpp"
#include "audio/sfx_manager.hpp"

View File

@ -22,7 +22,7 @@
#include "network/flyable_info.hpp"
#include "flyable.hpp"
#include "kart.hpp"
#include "projectile_manager.hpp"
#include "items/projectile_manager.hpp"
#include "callback_manager.hpp"
#include "scene.hpp"
#include "utils/ssg_help.hpp"

View File

@ -25,7 +25,7 @@
#include <vector>
#include <cassert>
#include "herring_manager.hpp"
#include "items/herring_manager.hpp"
/** Simple class that hold the data relevant to a 'grand_prix', aka. a number
of races that has to be completed one after the other */

View File

@ -23,7 +23,7 @@
#include "menu_manager.hpp"
#include "user_config.hpp"
#include "player.hpp"
#include "collectable_manager.hpp"
#include "items/collectable_manager.hpp"
#include "material.hpp"
#include "translation.hpp"

View File

@ -23,7 +23,7 @@
#include "menu_manager.hpp"
#include "user_config.hpp"
#include "player.hpp"
#include "collectable_manager.hpp"
#include "items/collectable_manager.hpp"
#include "material.hpp"
#include "translation.hpp"
#include "unlock_manager.hpp"

View File

@ -23,7 +23,7 @@
#include "menu_manager.hpp"
#include "user_config.hpp"
#include "player.hpp"
#include "collectable_manager.hpp"
#include "items/collectable_manager.hpp"
#include "material.hpp"
#include "translation.hpp"

File diff suppressed because it is too large Load Diff

View File

@ -20,9 +20,9 @@
#define _WINSOCKAPI_
#include <plib/ssg.h>
#include "attachment.hpp"
#include "attachment_manager.hpp"
#include "projectile_manager.hpp"
#include "items/attachment.hpp"
#include "items/attachment_manager.hpp"
#include "items/projectile_manager.hpp"
#include "kart.hpp"
#include "constants.hpp"
#include "stk_config.hpp"

View File

@ -21,7 +21,7 @@
#define HEADER_ATTACHMENT_H
#include "stk_config.hpp"
#include "herring.hpp"
#include "items/herring.hpp"
#include "utils/random_generator.hpp"
class Kart;

View File

@ -17,7 +17,7 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "attachment_manager.hpp"
#include "items/attachment_manager.hpp"
#include "file_manager.hpp"
#include "loader.hpp"

View File

@ -20,7 +20,7 @@
#define HEADER_ATTACHMENT_MANAGER_H
#include <plib/ssg.h>
#include "attachment.hpp"
#include "items/attachment.hpp"
class AttachmentManager
{

View File

@ -17,7 +17,7 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "bowling.hpp"
#include "items/bowling.hpp"
#include "player_kart.hpp"
#include "camera.hpp"

View File

@ -17,13 +17,13 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "collectable.hpp"
#include "items/collectable.hpp"
#include "network/network_manager.hpp"
#include "network/race_state.hpp"
#include "user_config.hpp"
#include "race_manager.hpp"
#include "projectile_manager.hpp"
#include "items/projectile_manager.hpp"
#include "kart.hpp"
#include "audio/sfx_manager.hpp"
#include "audio/sfx_base.hpp"

View File

@ -22,7 +22,7 @@
#define MAX_COLLECTABLES 5
#include "collectable_manager.hpp" // needed for collectable_type
#include "items/collectable_manager.hpp" // needed for collectable_type
#include "utils/random_generator.hpp"
class Kart;

View File

@ -19,14 +19,14 @@
#include <iostream>
#include <stdexcept>
#include "collectable_manager.hpp"
#include "items/collectable_manager.hpp"
#include "file_manager.hpp"
#include "material_manager.hpp"
#include "material.hpp"
#include "translation.hpp"
#include "bowling.hpp"
#include "items/bowling.hpp"
#include "missile.hpp"
#include "homing.hpp"
#include "items/homing.hpp"
#include "loader.hpp"
#if defined(WIN32) && !defined(__CYGWIN__)

View File

@ -18,7 +18,7 @@
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "vec3.hpp"
#include "herring.hpp"
#include "items/herring.hpp"
#include "kart.hpp"
#include "scene.hpp"
#include "coord.hpp"

View File

@ -23,7 +23,7 @@
#include "network/network_manager.hpp"
#include "user_config.hpp"
#include "herring_manager.hpp"
#include "items/herring_manager.hpp"
#include "file_manager.hpp"
#include "loader.hpp"
#include "material_manager.hpp"

View File

@ -23,7 +23,7 @@
#include <vector>
#include <map>
#include "herring.hpp"
#include "items/herring.hpp"
#include "lisp/lisp.hpp"
class Kart;

View File

@ -17,7 +17,7 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "homing.hpp"
#include "items/homing.hpp"
#include "constants.hpp"
#include <iostream>

View File

@ -20,13 +20,13 @@
#include "network/network_manager.hpp"
#include "network/race_state.hpp"
#include "loader.hpp"
#include "projectile_manager.hpp"
#include "bowling.hpp"
#include "items/projectile_manager.hpp"
#include "items/bowling.hpp"
#include "missile.hpp"
#include "homing.hpp"
#include "items/homing.hpp"
#include "explosion.hpp"
#include "collectable_manager.hpp"
#include "collectable.hpp"
#include "items/collectable_manager.hpp"
#include "items/collectable.hpp"
#include "scene.hpp"
static ssgSelector *find_selector ( ssgBranch *b );

View File

@ -23,7 +23,7 @@
#include <vector>
#include <plib/ssg.h>
#include "vec3.hpp"
#include "collectable_manager.hpp"
#include "items/collectable_manager.hpp"
class Kart;
class Explosion;

View File

@ -30,7 +30,7 @@
#include "bullet/Demos/OpenGL/GL_ShapeDrawer.h"
#include "loader.hpp"
#include "coord.hpp"
#include "herring_manager.hpp"
#include "items/herring_manager.hpp"
#include "file_manager.hpp"
#include "skid_mark.hpp"
#include "user_config.hpp"

View File

@ -28,8 +28,8 @@
#include "moveable.hpp"
#include "kart_properties.hpp"
#include "kart_control.hpp"
#include "attachment.hpp"
#include "collectable.hpp"
#include "items/attachment.hpp"
#include "items/collectable.hpp"
#include "terrain_info.hpp"
class SkidMark;

View File

@ -50,7 +50,7 @@
#include "track.hpp"
#include "kart_properties_manager.hpp"
#include "kart.hpp"
#include "projectile_manager.hpp"
#include "items/projectile_manager.hpp"
#include "race_manager.hpp"
#include "file_manager.hpp"
#include "loader.hpp"
@ -60,8 +60,8 @@
#include "sdldrv.hpp"
#include "callback_manager.hpp"
#include "history.hpp"
#include "herring_manager.hpp"
#include "attachment_manager.hpp"
#include "items/herring_manager.hpp"
#include "items/attachment_manager.hpp"
#include "audio/sound_manager.hpp"
#include "audio/sfx_manager.hpp"
#include "stk_config.hpp"

View File

@ -24,8 +24,8 @@
#include <ctime>
#include "modes/world.hpp"
#include "herring_manager.hpp"
#include "projectile_manager.hpp"
#include "items/herring_manager.hpp"
#include "items/projectile_manager.hpp"
#include "gui/menu_manager.hpp"
#include "file_manager.hpp"
#include "player_kart.hpp"

View File

@ -20,7 +20,7 @@
#include "modes/world.hpp"
#include "network/network_manager.hpp"
#include "network/race_state.hpp"
#include "projectile_manager.hpp"
#include "items/projectile_manager.hpp"
RaceState *race_state=NULL;

View File

@ -26,7 +26,7 @@
#include "network/herring_info.hpp"
#include "network/flyable_info.hpp"
#include "kart_control.hpp"
#include "herring.hpp"
#include "items/herring.hpp"
#include "flyable.hpp"
#include "race_manager.hpp"
#include "kart.hpp"

View File

@ -25,7 +25,7 @@
#include "player_kart.hpp"
#include "player.hpp"
#include "sdldrv.hpp"
#include "herring.hpp"
#include "items/herring.hpp"
#include "modes/world.hpp"
#include "gui/menu_manager.hpp"
#include "gui/race_gui.hpp"

View File

@ -34,10 +34,10 @@
#include "material_manager.hpp"
#include "kart_properties_manager.hpp"
#include "main_loop.hpp"
#include "herring_manager.hpp"
#include "collectable_manager.hpp"
#include "attachment_manager.hpp"
#include "projectile_manager.hpp"
#include "items/herring_manager.hpp"
#include "items/collectable_manager.hpp"
#include "items/attachment_manager.hpp"
#include "items/projectile_manager.hpp"
#include "loader.hpp"
#include "player.hpp"
#include "user_config.hpp"

View File

@ -38,8 +38,8 @@
#include "material_manager.hpp"
#include "isect.hpp"
#include "user_config.hpp"
#include "herring.hpp"
#include "herring_manager.hpp"
#include "items/herring.hpp"
#include "items/herring_manager.hpp"
#include "race_manager.hpp"
#include "audio/sound_manager.hpp"
#include "utils/ssg_help.hpp"