From: Holger Z. <hz...@us...> - 2004-10-07 14:14:28
|
Update of /cvsroot/jake2/jake2/src/jake2/game In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25032/src/jake2/game Modified Files: game_import_t.java Log Message: remove some unreferenced functions Index: game_import_t.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/game/game_import_t.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** game_import_t.java 22 Sep 2004 19:22:00 -0000 1.4 --- game_import_t.java 7 Oct 2004 14:13:07 -0000 1.5 *************** *** 24,37 **** import jake2.Defines; ! import jake2.client.SCR; ! import jake2.qcommon.CM; ! import jake2.qcommon.Cbuf; ! import jake2.qcommon.Com; ! import jake2.qcommon.Cvar; ! import jake2.qcommon.PMove; ! import jake2.server.SV_GAME; ! import jake2.server.SV_INIT; ! import jake2.server.SV_SEND; ! import jake2.server.SV_WORLD; // --- 24,29 ---- import jake2.Defines; ! import jake2.qcommon.*; ! import jake2.server.*; // *************** *** 111,118 **** public pmove_t.PointContentsAdapter pointcontents; - public boolean inPVS(float[] p1, float[] p2) { - return SV_GAME.PF_inPVS(p1, p2); - } - public boolean inPHS(float[] p1, float[] p2) { return SV_GAME.PF_inPHS(p1, p2); --- 103,106 ---- *************** *** 158,164 **** } - public void WriteChar(int c) { - SV_GAME.PF_WriteChar(c); - } public void WriteByte(int c) { --- 146,149 ---- *************** *** 170,181 **** } - public void WriteLong(int c) { - SV_GAME.PF_WriteLong(c); - } - - public void WriteFloat(float f) { - SV_GAME.PF_WriteFloat(f); - } - public void WriteString(String s) { SV_GAME.PF_WriteString(s); --- 155,158 ---- *************** *** 191,212 **** } - // single byte encoded, very coarse - public void WriteAngle(float f) { - Com.Error(Defines.ERR_FATAL, "method is not implemented!"); - } - - // managed memory allocation - public void TagMalloc(int size, int tag) { - Com.Error(Defines.ERR_FATAL, "method is not implemented!"); - } - - public void TagFree(Object block) { - Com.Error(Defines.ERR_FATAL, "method is not implemented!"); - } - - public void FreeTags(int tag) { - Com.Error(Defines.ERR_FATAL, "method is not implemented!"); - } - // console variable interaction public cvar_t cvar(String var_name, String value, int flags) { --- 168,171 ---- *************** *** 244,249 **** } - public void DebugGraph(float value, int color) { - SCR.DebugGraph(value, color); - } } \ No newline at end of file --- 203,205 ---- |