]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
remove some unwanted debug prints
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 30 Dec 2009 11:27:53 +0000 (11:27 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 30 Dec 2009 11:27:53 +0000 (11:27 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9747 d7cf8633-e32d-0410-b094-e92efae38249

cl_input.c
sv_user.c

index c792f471f752b35bc55b187939d8cbfc41bea523..f5714fa6b021c1335d1bec21fd6bb561b268c3d1 100644 (file)
@@ -1722,9 +1722,6 @@ void CL_SendMove(void)
                cl.lastpackettime = floor(realtime / packettime) * packettime;
        else
                cl.lastpackettime = realtime;
-       
-       if(cl.cmd.impulse)
-               Con_Printf("MOVEMENT DEBUGGING: Prepared impulse %d\n", cl.cmd.impulse);
 
        buf.maxsize = sizeof(data);
        buf.cursize = 0;
@@ -1865,8 +1862,6 @@ void CL_SendMove(void)
                                // 5 bytes
                                MSG_WriteLong (&buf, cmd->buttons);
                                MSG_WriteByte (&buf, cmd->impulse);
-                               if(cmd->impulse)
-                                       Con_Printf("MOVEMENT DEBUGGING: sending impulse %d\n", cmd->impulse);
                                // PRYDON_CLIENTCURSOR
                                // 30 bytes
                                MSG_WriteShort (&buf, (short)(cmd->cursor_screen[0] * 32767.0f));
index 294199ef035eae4f061f6536a989c24b6e7575d2..3f68714b15eab2cecf6277a7b437b8af3c79d4ff 100644 (file)
--- a/sv_user.c
+++ b/sv_user.c
@@ -531,9 +531,6 @@ void SV_ReadClientMove (void)
                if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
        }
 
-       if(move->impulse)
-               Con_Printf("MOVEMENT DEBUGGING: received impulse %d\n", move->impulse);
-
        // if the previous move has not been applied yet, we need to accumulate
        // the impulse/buttons from it
        if (!host_client->cmd.applied)
@@ -632,11 +629,8 @@ void SV_ExecuteClientMoves(void)
                                        // execute it but it has higher
                                        // sequence count
                                        if(host_client->movesequence)
-                                       {
                                                if(move->sequence > host_client->movesequence)
                                                        host_client->movement_count[(move->sequence) % NETGRAPH_PACKETS] = -1;
-                                               Con_Printf("MOVEMENT DEBUGGING: invalid packet timing (less than 0.5ms), discarded packet\n");
-                                       }
                                        continue;
                                }
 
@@ -659,10 +653,6 @@ void SV_ExecuteClientMoves(void)
                                // the server and qc frametime values must be changed temporarily
                                prog->globals.server->frametime = sv.frametime = moveframetime;
                                // if move is more than 50ms, split it into two moves (this matches QWSV behavior and the client prediction)
-
-                               if(host_client->cmd.impulse)
-                                       Con_Printf("MOVEMENT DEBUGGING: applying impulse %d\n", host_client->cmd.impulse);
-
                                if (sv.frametime > 0.05)
                                {
                                        prog->globals.server->frametime = sv.frametime = moveframetime * 0.5f;