SendCommand
()
| 1395 | * SendCommand |
| 1396 | */ |
| 1397 | private static void SendCommand() { |
| 1398 | // get new key events |
| 1399 | SendKeyEvents(); |
| 1400 | |
| 1401 | // allow mice or other external controllers to add commands |
| 1402 | IN.Commands(); |
| 1403 | |
| 1404 | // process console commands |
| 1405 | Cbuf.Execute(); |
| 1406 | |
| 1407 | // fix any cheating cvars |
| 1408 | FixCvarCheats(); |
| 1409 | |
| 1410 | // send intentions now |
| 1411 | CL_input.SendCmd(); |
| 1412 | |
| 1413 | // resend a connection request if necessary |
| 1414 | CheckForResend(); |
| 1415 | } |
| 1416 | |
| 1417 | // private static int lasttimecalled; |
| 1418 |
no test coverage detected