Update of /cvsroot/jake2/jake2/src/jake2/game In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv26747/src/jake2/game Modified Files: mframe_t.java PlayerClient.java usercmd_t.java gclient_t.java GameTrigger.java GameTurret.java game_locals_t.java mmove_t.java PlayerHud.java entity_state_t.java client_persistant_t.java player_state_t.java GameWeapon.java GameChase.java edict_t.java gitem_t.java GameSpawn.java Log Message: clean up Index: GameWeapon.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/GameWeapon.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GameWeapon.java 20 Nov 2005 22:18:33 -0000 1.6 --- GameWeapon.java 27 Feb 2007 14:00:33 -0000 1.7 *************** *** 20,34 **** // Created on on 12.11.2003 by RST. - // $Id$ package jake2.game; ! ! import jake2.*; ! import jake2.client.*; ! import jake2.game.*; ! import jake2.qcommon.*; ! import jake2.render.*; ! import jake2.server.*; import jake2.util.Lib; import jake2.util.Math3D; --- 20,28 ---- // Created on on 12.11.2003 by RST. package jake2.game; ! import jake2.Defines; ! import jake2.Globals; import jake2.util.Lib; import jake2.util.Math3D; Index: PlayerHud.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/PlayerHud.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** PlayerHud.java 20 Nov 2005 22:18:33 -0000 1.9 --- PlayerHud.java 27 Feb 2007 14:00:33 -0000 1.10 *************** *** 20,32 **** // Created on 28.12.2003 by RST. - // $Id$ package jake2.game; ! import jake2.*; ! import jake2.client.*; ! import jake2.qcommon.*; ! import jake2.render.*; ! import jake2.server.*; import jake2.util.Lib; import jake2.util.Math3D; --- 20,28 ---- // Created on 28.12.2003 by RST. package jake2.game; ! import jake2.Defines; ! import jake2.qcommon.Com; import jake2.util.Lib; import jake2.util.Math3D; Index: edict_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/edict_t.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** edict_t.java 19 Feb 2005 21:17:44 -0000 1.7 --- edict_t.java 27 Feb 2007 14:00:33 -0000 1.8 *************** *** 20,32 **** // Created on 04.11.2003 by RST. - // $Id$ - package jake2.game; ! import java.io.IOException; ! import java.io.RandomAccessFile; ! import jake2.*; import jake2.qcommon.Com; ! import jake2.util.*; public class edict_t { --- 20,32 ---- // Created on 04.11.2003 by RST. ! package jake2.game; ! import jake2.Defines; import jake2.qcommon.Com; ! import jake2.util.Lib; ! import jake2.util.QuakeFile; ! ! import java.io.IOException; public class edict_t { Index: client_persistant_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/client_persistant_t.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** client_persistant_t.java 6 Feb 2005 18:52:55 -0000 1.7 --- client_persistant_t.java 27 Feb 2007 14:00:33 -0000 1.8 *************** *** 20,34 **** // Created on 31.10.2003 by RST. - // $Id$ package jake2.game; import jake2.Defines; - import jake2.util.Lib; import jake2.util.QuakeFile; import java.io.IOException; - import java.io.RandomAccessFile; - import java.nio.ByteBuffer; public class client_persistant_t { --- 20,30 ---- Index: gclient_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/gclient_t.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** gclient_t.java 21 Jan 2006 21:53:32 -0000 1.7 --- gclient_t.java 27 Feb 2007 14:00:32 -0000 1.8 *************** *** 20,35 **** // Created on 31.10.2003 by RST. - // $Id$ package jake2.game; - import jake2.qcommon.Com; - import jake2.util.Lib; import jake2.util.QuakeFile; - import java.awt.event.ItemListener; import java.io.IOException; - import java.io.RandomAccessFile; - import java.nio.ByteBuffer; public class gclient_t --- 20,29 ---- Index: player_state_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/player_state_t.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** player_state_t.java 20 Aug 2004 21:29:58 -0000 1.4 --- player_state_t.java 27 Feb 2007 14:00:33 -0000 1.5 *************** *** 20,37 **** // Created on 31.10.2003 by RST. - // $Id$ package jake2.game; ! import java.io.IOException; ! import java.io.RandomAccessFile; ! import java.nio.ByteBuffer; ! ! import jake2.*; ! import jake2.*; import jake2.qcommon.Com; import jake2.util.Lib; import jake2.util.Math3D; /** Player_state_t is the information needed in addition to pmove_state_t --- 20,34 ---- // Created on 31.10.2003 by RST. package jake2.game; ! import jake2.Defines; import jake2.qcommon.Com; import jake2.util.Lib; import jake2.util.Math3D; + import java.io.IOException; + import java.io.RandomAccessFile; + /** Player_state_t is the information needed in addition to pmove_state_t Index: PlayerClient.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/PlayerClient.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** PlayerClient.java 27 Dec 2005 21:02:30 -0000 1.12 --- PlayerClient.java 27 Feb 2007 14:00:32 -0000 1.13 *************** *** 21,31 **** // Created on 28.12.2003 by RST. - // $Id$ - package jake2.game; import jake2.Defines; import jake2.game.monsters.M_Player; - import jake2.game.pmove_t.TraceAdapter; import jake2.util.Lib; import jake2.util.Math3D; --- 21,28 ---- Index: GameChase.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/GameChase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GameChase.java 21 Jan 2006 21:53:32 -0000 1.2 --- GameChase.java 27 Feb 2007 14:00:33 -0000 1.3 *************** *** 20,34 **** // Created on 16.11.2005 by RST. - // $Id$ package jake2.game; ! import jake2.*; ! import jake2.client.*; ! import jake2.game.*; ! import jake2.qcommon.*; ! import jake2.render.*; ! import jake2.server.*; import jake2.util.Math3D; --- 20,30 ---- // Created on 16.11.2005 by RST. package jake2.game; ! import jake2.Defines; ! import jake2.Globals; ! import jake2.server.SV_WORLD; import jake2.util.Math3D; Index: GameTrigger.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/GameTrigger.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** GameTrigger.java 21 Jan 2006 21:53:32 -0000 1.8 --- GameTrigger.java 27 Feb 2007 14:00:33 -0000 1.9 *************** *** 21,33 **** // Created on 27.12.2003 by RST. - // $Id$ - package jake2.game; ! import jake2.*; ! import jake2.client.*; ! import jake2.qcommon.*; ! import jake2.render.*; ! import jake2.server.*; import jake2.util.Lib; import jake2.util.Math3D; --- 21,28 ---- // Created on 27.12.2003 by RST. package jake2.game; ! import jake2.Defines; ! import jake2.Globals; import jake2.util.Lib; import jake2.util.Math3D; Index: GameTurret.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/GameTurret.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** GameTurret.java 21 Jan 2006 21:53:32 -0000 1.7 --- GameTurret.java 27 Feb 2007 14:00:33 -0000 1.8 *************** *** 20,32 **** // Created on 28.12.2003 by RST. ! // $Id$ package jake2.game; ! import jake2.*; ! import jake2.client.*; import jake2.game.monsters.M_Infantry; - import jake2.qcommon.*; - import jake2.render.*; - import jake2.server.*; import jake2.util.Lib; import jake2.util.Math3D; --- 20,29 ---- // Created on 28.12.2003 by RST. ! package jake2.game; ! import jake2.Defines; ! import jake2.Globals; import jake2.game.monsters.M_Infantry; import jake2.util.Lib; import jake2.util.Math3D; Index: gitem_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/gitem_t.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** gitem_t.java 6 Feb 2005 19:08:00 -0000 1.5 --- gitem_t.java 27 Feb 2007 14:00:33 -0000 1.6 *************** *** 20,29 **** // Created on 20.11.2003 by RST. - // $Id$ package jake2.game; - import jake2.*; - import jake2.*; - public class gitem_t { private static int id = 0; --- 20,25 ---- Index: game_locals_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/game_locals_t.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** game_locals_t.java 22 Sep 2004 19:22:06 -0000 1.7 --- game_locals_t.java 27 Feb 2007 14:00:33 -0000 1.8 *************** *** 20,34 **** // Created on 31.10.2003 by RST. ! // $Id$ package jake2.game; import jake2.Defines; import jake2.qcommon.Com; - import jake2.util.Lib; import jake2.util.QuakeFile; import java.io.IOException; - import java.io.RandomAccessFile; - import java.nio.ByteBuffer; import java.util.Date; --- 20,31 ---- // Created on 31.10.2003 by RST. ! package jake2.game; import jake2.Defines; import jake2.qcommon.Com; import jake2.util.QuakeFile; import java.io.IOException; import java.util.Date; Index: usercmd_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/usercmd_t.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** usercmd_t.java 21 Jan 2005 01:08:48 -0000 1.4 --- usercmd_t.java 27 Feb 2007 14:00:32 -0000 1.5 *************** *** 20,31 **** // Created on 31.10.2003 by RST. - // $Id$ package jake2.game; - import java.util.Arrays; - - import jake2.util.Lib; - import jake2.util.Math3D; public class usercmd_t implements Cloneable { --- 20,26 ---- Index: mmove_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/mmove_t.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mmove_t.java 20 Aug 2004 21:29:57 -0000 1.2 --- mmove_t.java 27 Feb 2007 14:00:33 -0000 1.3 *************** *** 20,32 **** // Created on 11.11.2003 by RST. - // $Id$ package jake2.game; - import jake2.util.Lib; import jake2.util.QuakeFile; import java.io.IOException; - import java.io.RandomAccessFile; public class mmove_t { --- 20,29 ---- Index: mframe_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/mframe_t.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mframe_t.java 20 Aug 2004 21:29:58 -0000 1.2 --- mframe_t.java 27 Feb 2007 14:00:32 -0000 1.3 *************** *** 20,32 **** // Created on 11.11.2003 by RST. - // $Id$ package jake2.game; - import jake2.util.Lib; import jake2.util.QuakeFile; import java.io.IOException; - import java.io.RandomAccessFile; public class mframe_t --- 20,29 ---- Index: GameSpawn.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/GameSpawn.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** GameSpawn.java 21 Jan 2006 21:53:32 -0000 1.17 --- GameSpawn.java 27 Feb 2007 14:00:33 -0000 1.18 *************** *** 21,30 **** // Created on 18.11.2003 by RST. - // $Id$ - package jake2.game; import jake2.Defines; - import jake2.Globals; import jake2.game.monsters.*; import jake2.qcommon.Com; --- 21,27 ---- Index: entity_state_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/entity_state_t.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** entity_state_t.java 5 Jun 2005 15:21:47 -0000 1.5 --- entity_state_t.java 27 Feb 2007 14:00:33 -0000 1.6 *************** *** 20,33 **** // Created on 08.11.2003 by RST. - // $Id$ package jake2.game; - import java.io.IOException; - import java.io.RandomAccessFile; - import jake2.util.Math3D; import jake2.util.QuakeFile; public class entity_state_t implements Cloneable { --- 20,31 ---- // Created on 08.11.2003 by RST. package jake2.game; import jake2.util.Math3D; import jake2.util.QuakeFile; + import java.io.IOException; + public class entity_state_t implements Cloneable { |