|
From: julien r. <jul...@us...> - 2005-12-07 22:24:16
|
Update of /cvsroot/epfl/game In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24199/game Modified Files: defs.h export.cc game.cc game.h game.kdevelop.pcs physic_callbacks.h physic_defs.h physic_engine.cc physic_engine.h physic_node.cc physic_node.h physic_node_entity.cc physic_node_entity.h physic_node_none.cc physic_node_none.h player.cc player.h Log Message: license Index: player.h =================================================================== RCS file: /cvsroot/epfl/game/player.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** player.h 24 Nov 2005 20:48:56 -0000 1.1.1.1 --- player.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGPLAYER_H #define TGPLAYER_H Index: physic_engine.cc =================================================================== RCS file: /cvsroot/epfl/game/physic_engine.cc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_engine.cc 24 Nov 2005 20:48:56 -0000 1.1.1.1 --- physic_engine.cc 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #include "physic_engine.h" *************** *** 4,8 **** { this->pWorld = worldManager; ! fGravity = 9.8; } --- 26,30 ---- { this->pWorld = worldManager; ! fGravity = 9.8f; } Index: physic_defs.h =================================================================== RCS file: /cvsroot/epfl/game/physic_defs.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_defs.h 24 Nov 2005 20:48:56 -0000 1.1.1.1 --- physic_defs.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TG_PHYSIC_DEFS_H #define TG_PHYSIC_DEFS_H Index: physic_node_none.h =================================================================== RCS file: /cvsroot/epfl/game/physic_node_none.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_node_none.h 24 Nov 2005 20:48:55 -0000 1.1.1.1 --- physic_node_none.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TG_PHYSIC_NODE_NONE_H #define TG_PHYSIC_NODE_NONE_H Index: game.h =================================================================== RCS file: /cvsroot/epfl/game/game.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** game.h 24 Nov 2005 20:48:55 -0000 1.1.1.1 --- game.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TGGAME_H #define TGGAME_H Index: export.cc =================================================================== RCS file: /cvsroot/epfl/game/export.cc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** export.cc 24 Nov 2005 20:48:56 -0000 1.1.1.1 --- export.cc 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,11 **** #include "defs.h" #include "game.h" ! extern "C" tgIGame* newGame () { return new tgGame (); } ! extern "C" void deleteGame (tgIGame* g) { delete g; --- 1,33 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #include "defs.h" #include "game.h" ! DLL_EXPORT tgIGame* newGame () { return new tgGame (); } ! DLL_EXPORT void deleteGame (tgIGame* g) { delete g; Index: player.cc =================================================================== RCS file: /cvsroot/epfl/game/player.cc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** player.cc 24 Nov 2005 20:48:55 -0000 1.1.1.1 --- player.cc 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #include "player.h" #include <iostream> *************** *** 109,113 **** void tgPlayer::MouseMotion (int rx, int ry) { ! float fSensivity = 0.2; totX -= ((float)ry)*fSensivity; --- 131,135 ---- void tgPlayer::MouseMotion (int rx, int ry) { ! float fSensivity = 0.2f; totX -= ((float)ry)*fSensivity; Index: physic_node.h =================================================================== RCS file: /cvsroot/epfl/game/physic_node.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_node.h 24 Nov 2005 20:48:54 -0000 1.1.1.1 --- physic_node.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TG_PHYSIC_NODE_H #define TG_PHYSIC_NODE_H Index: physic_node_none.cc =================================================================== RCS file: /cvsroot/epfl/game/physic_node_none.cc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_node_none.cc 24 Nov 2005 20:48:55 -0000 1.1.1.1 --- physic_node_none.cc 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #include "physic_node_none.h" Index: physic_node_entity.cc =================================================================== RCS file: /cvsroot/epfl/game/physic_node_entity.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** physic_node_entity.cc 30 Nov 2005 16:46:52 -0000 1.2 --- physic_node_entity.cc 7 Dec 2005 22:23:51 -0000 1.3 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #include "physic_node_entity.h" Index: game.cc =================================================================== RCS file: /cvsroot/epfl/game/game.cc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** game.cc 24 Nov 2005 20:48:55 -0000 1.1.1.1 --- game.cc 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #include "game.h" *************** *** 14,19 **** pConsole = e->pConsole; ! #define HSPEED 1200.0 ! #define AIR_CONTROL 0.004 jump = new tgForce(); jump->force = tgVector3(0.0,900000.0,0.0); --- 36,41 ---- pConsole = e->pConsole; ! #define HSPEED 1200.0f ! #define AIR_CONTROL 0.004f jump = new tgForce(); jump->force = tgVector3(0.0,900000.0,0.0); *************** *** 203,221 **** pTestPlayer->Think(eTime); if (pPlayer->IsActive()) ! pCanvas->DrawText("pPlayer"); if (pTestPlayer->IsActive()) ! pCanvas->DrawText("pTestPlayer"); // moteur physique ! pPhysicEngine->MoveObjects(eTime); std::ostringstream* streamPh = new std::ostringstream(); (*streamPh) << "Position pTestPlayer: " << pTestPlayer->GetEntity()->GetPosition().x << " # " << pTestPlayer->GetEntity()->GetPosition().y << " # " << pTestPlayer->GetEntity()->GetPosition().z << std::endl; ! pCanvas->DrawText(streamPh->str()); std::ostringstream* stream = new std::ostringstream(); (*stream) << pTimer->GetFPS() << std::endl; ! pCanvas->DrawText(stream->str()); ! delete stream; } --- 225,243 ---- pTestPlayer->Think(eTime); if (pPlayer->IsActive()) ! pCanvas->DisplayText("pPlayer"); if (pTestPlayer->IsActive()) ! pCanvas->DisplayText("pTestPlayer"); // moteur physique ! /*pPhysicEngine->MoveObjects(eTime); std::ostringstream* streamPh = new std::ostringstream(); (*streamPh) << "Position pTestPlayer: " << pTestPlayer->GetEntity()->GetPosition().x << " # " << pTestPlayer->GetEntity()->GetPosition().y << " # " << pTestPlayer->GetEntity()->GetPosition().z << std::endl; ! pCanvas->DisplayText(streamPh->str()); std::ostringstream* stream = new std::ostringstream(); (*stream) << pTimer->GetFPS() << std::endl; ! pCanvas->DisplayText(stream->str()); ! delete stream;*/ } Index: physic_node.cc =================================================================== RCS file: /cvsroot/epfl/game/physic_node.cc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_node.cc 24 Nov 2005 20:48:56 -0000 1.1.1.1 --- physic_node.cc 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #include "physic_node.h" Index: defs.h =================================================================== RCS file: /cvsroot/epfl/game/defs.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** defs.h 24 Nov 2005 20:48:55 -0000 1.1.1.1 --- defs.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,17 **** ! #ifndef TGDEFS_H ! #define TGDEFS_H ! #include "functor.h" ! #include <iostream> ! using namespace std; ! #include "iworld_manager.h" ! #include "imodel_manager.h" ! #include "ibind_manager.h" ! #include "keys.h" ! #include "imaterial_manager.h" ! #include "imaterial.h" ! #include "icanvas.h" ! #endif --- 1,47 ---- ! /* ! ----------------------------------------------------------------------------- ! This source file is part of Terminal G33k ! Copyright (c) 2000-2005 The Terminal G33k Team ! Also see acknowledgements in Readme.html ! This program is free software; you can redistribute it and/or modify it under ! the terms of the GNU Lesser General Public License as published by the Free Software ! Foundation; either version 2 of the License, or (at your option) any later ! version. ! This program is distributed in the hope that it will be useful, but WITHOUT ! ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS ! FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ + #ifndef TGDEFS_H + #define TGDEFS_H + + #ifdef TGWIN32 + //meme sous Win32 on doit utiliser le extern "C", sinon le nom est "decore" (pour gerer la surcharge et autres specifites du c++) + //--> apres dans notre GetProcAddress on devrait donner le nom decore, style @newGame8 ... + #define DLL_EXPORT extern "C" __declspec(dllexport) + # else + # define DLL_EXPORT extern "C" + #endif + + #include "functor.h" + #include <iostream> + using namespace std; + + #include "iworld_manager.h" + #include "imodel_manager.h" + #include "ibind_manager.h" + #include "keys.h" + #include "imaterial_manager.h" + #include "imaterial.h" + #include "icanvas.h" + + #endif + Index: physic_engine.h =================================================================== RCS file: /cvsroot/epfl/game/physic_engine.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_engine.h 24 Nov 2005 20:48:56 -0000 1.1.1.1 --- physic_engine.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TG_PHYSIC_ENGINE_H #define TG_PHYSIC_ENGINE_H Index: physic_callbacks.h =================================================================== RCS file: /cvsroot/epfl/game/physic_callbacks.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_callbacks.h 24 Nov 2005 20:48:56 -0000 1.1.1.1 --- physic_callbacks.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TG_PHYSIC_CALLBACK_H #define TG_PHYSIC_CALLBACK_H Index: game.kdevelop.pcs =================================================================== RCS file: /cvsroot/epfl/game/game.kdevelop.pcs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvswFYao7 and /tmp/cvsTNZQ7t differ Index: physic_node_entity.h =================================================================== RCS file: /cvsroot/epfl/game/physic_node_entity.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** physic_node_entity.h 24 Nov 2005 20:48:55 -0000 1.1.1.1 --- physic_node_entity.h 7 Dec 2005 22:23:51 -0000 1.2 *************** *** 1,2 **** --- 1,24 ---- + /* + ----------------------------------------------------------------------------- + This source file is part of Terminal G33k + + Copyright (c) 2000-2005 The Terminal G33k Team + Also see acknowledgements in Readme.html + + This program is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later + version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + this program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA, or go to + http://www.gnu.org/copyleft/lesser.txt. + ----------------------------------------------------------------------------- + */ #ifndef TG_PHYISC_NODE_ENTITY_H #define TG_PHYISC_NODE_ENTITY_H |