mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
clean up
This commit is contained in:
parent
f5086db463
commit
dd5afa751d
|
@ -409,16 +409,10 @@ public:
|
||||||
if(input::pressed(input::f2))
|
if(input::pressed(input::f2))
|
||||||
input::set_mouse_mode(input::mode_relative);
|
input::set_mouse_mode(input::mode_relative);
|
||||||
|
|
||||||
|
// panic button
|
||||||
if(input::pressed(input::lctrl) && input::pressed('Q'))
|
if(input::pressed(input::lctrl) && input::pressed('Q'))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// editor invoke
|
|
||||||
/*
|
|
||||||
if(input::pressed(input::lctrl) && input::pressed('O'))
|
|
||||||
{
|
|
||||||
disconnect();
|
|
||||||
}*/
|
|
||||||
|
|
||||||
// pump the network
|
// pump the network
|
||||||
pump_network();
|
pump_network();
|
||||||
|
|
||||||
|
@ -437,13 +431,10 @@ public:
|
||||||
|
|
||||||
if(reporttime < time_get())
|
if(reporttime < time_get())
|
||||||
{
|
{
|
||||||
//unsigned sent, recved;
|
|
||||||
//conn.counter_get(&sent, &recved);
|
|
||||||
dbg_msg("client/report", "fps=%.02f netstate=%d",
|
dbg_msg("client/report", "fps=%.02f netstate=%d",
|
||||||
frames/(float)(reportinterval/time_freq()), net.state());
|
frames/(float)(reportinterval/time_freq()), net.state());
|
||||||
frames = 0;
|
frames = 0;
|
||||||
reporttime += reportinterval;
|
reporttime += reportinterval;
|
||||||
//conn.counter_reset();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (input::pressed(input::esc))
|
if (input::pressed(input::esc))
|
||||||
|
@ -536,9 +527,7 @@ public:
|
||||||
unsigned char tmpbuffer2[MAX_SNAPSHOT_SIZE];
|
unsigned char tmpbuffer2[MAX_SNAPSHOT_SIZE];
|
||||||
if(part_size)
|
if(part_size)
|
||||||
{
|
{
|
||||||
//int snapsize = lzw_decompress(snapshots[SNAP_INCOMMING], snapshots[SNAP_CURRENT]);
|
|
||||||
int compsize = zerobit_decompress(snapshots[SNAP_INCOMMING], part_size, tmpbuffer);
|
int compsize = zerobit_decompress(snapshots[SNAP_INCOMMING], part_size, tmpbuffer);
|
||||||
//int compsize = lzw_decompress(snapshots[SNAP_INCOMMING],tmpbuffer);
|
|
||||||
int intsize = intpack_decompress(tmpbuffer, compsize, tmpbuffer2);
|
int intsize = intpack_decompress(tmpbuffer, compsize, tmpbuffer2);
|
||||||
deltadata = tmpbuffer2;
|
deltadata = tmpbuffer2;
|
||||||
deltasize = intsize;
|
deltasize = intsize;
|
||||||
|
|
Loading…
Reference in a new issue