summaryrefslogtreecommitdiff
path: root/src/net_client.c
AgeCommit message (Collapse)Author
2010-12-18Add a M_CheckParmWithArgs function, that behaves like M_CheckParm butSimon Howard
also checks that extra options were provided on the command line (thanks Sander van Dijk). Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2223
2010-05-01Further sanity checking on use of strcpy() with dehacked stringSimon Howard
replacements. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1928
2009-09-30Change British English spellings to American English, for consistency.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1699
2008-02-28Add fixes for MSVC warnings (thanks entryway).Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1095
2008-01-24Fix fast / respawning monsters parameter not exchanged when startingSimon Howard
netgames (thanks GhostlyDeath). Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1014
2007-07-07Make drones quit when disconnected from the server.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 933
2007-06-22Replace 35 with TICRATE where appropriate.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 925
2007-05-16Rejig net_cl_new_sync and drone to be in d_net.c instead ofSimon Howard
net_client.c. Fix FEATURE_MULTIPLAYER conditional compile. Move some function definitions in d_net.c into headers. Reorganise the Makefile to split out files into sections based on features. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 875
2007-05-09Fix ticdup.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 874
2006-12-24Javadoc-style self-documenting system for command line options.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 806
2006-11-16Display lowres turning warning message client-side, not throughSimon Howard
server-side broadcast messages. This avoids the possibility of malicious servers that might not send the message. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 755
2006-10-23Add missing header.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 722
2006-10-18Strip out CVS logs, RCS Id tags.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 704
2006-10-14Display drone indicator on the netgame waiting screen if drones are connected.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 699
2006-10-14Display a different message from the normal WAD directory warning ifSimon Howard
players are mixing Freedoom/Original IWADs. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 698
2006-10-11Shut up compiler warnings.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 694
2006-10-06Send deh/wad md5sums to players at the waiting screen. Display a warningSimon Howard
on the waiting screen if the checksums differ from the other players. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 689
2006-10-06Send deh/wad checksums to the server when connecting.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 688
2006-10-05Prevent against deadlock where client and server are both stuck waitingSimon Howard
for each other to send data. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 685
2006-09-29Working drone clients!Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 680
2006-09-21Fix a lot of warnings (for fussy compilers) and one always-true checkRussell Rice
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 641
2006-09-01Sync the -loadgame parameter across all clients connected to a server.Simon Howard
Loading/saving multiplayer games should all work now. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 593
2006-06-03Stop sending data to the server when a connection drops. Print a messageSimon Howard
to the console as well. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 557
2006-05-05Syncronise the -timer/-avg parameters across all clients to avoid desyncs.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 475
2006-04-14Add ability to play using the Vanilla player sync codeSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 470
2006-04-06Use BACKUPTICS everywhere. Remove NET_TICCMD_QUEUE_SIZESimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 462
2006-04-06Sanity check data received by the server. Send version string earlierSimon Howard
in SYN packets to allow the fields that follow to be changed later on if necessary. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 461
2006-03-30Split off timer code into separate i_timer.c file. Add d_dedicated.cSimon Howard
and build chocolate-server, a standalone dedicated server. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 455
2006-03-24Adjust anti-CPU-hogging sleep times.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 440
2006-03-07Indicate when a message has been received from the server.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 413
2006-03-07Convert NET_CL_SafePuts to NET_SafePuts, and print rejection messagesSimon Howard
from the server. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 411
2006-03-07Generic console message mechanism. Inform all players when recordingSimon Howard
a low-res demo. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 410
2006-03-01Send the nomonsters flag on netgame start.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 401
2006-02-27Fix problem starting games with four playersSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 398
2006-02-27Working client sync: adjust the clock to try to match the latency of other Simon Howard
players. Allow the menu ticker to run even if the main game ticker doesn't run. Remove time request/response code (now using game latency). Subversion-branch: /trunk/chocolate-doom Subversion-revision: 394
2006-02-24Fix -extraticsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 389
2006-02-23Detect when clients are disconnected from the server, recover cleanlySimon Howard
and display a message. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 383
2006-02-23Set ticdup from the command line with the -dup parameter.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 382
2006-02-23Add lowres_turn to indicate whether we generate angleturns which areSimon Howard
8-bit as opposed to 16-bit. This is used when recording demos without -longtics enabled. Sync this option between clients in a netgame, so that if one player is recording a Vanilla demo, all clients record in lowres. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 378
2006-02-23Fix bugs in resend code for server->client dataSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 377
2006-02-22Packet resends for server->client gamedataSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 375
2006-02-19Move tic number expansion code to common code. Parse game data packetsSimon Howard
received from the server. Strip down d_net.[ch] to work through the new networking code. Remove game sync code. Remove i_net.[ch] as it is no longer needed. Working networking! Subversion-branch: /trunk/chocolate-doom Subversion-revision: 374
2006-02-17Full working resends for client->server commsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 371
2006-02-17Request resends for missed packetsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 370
2006-01-22Periodically request the time from clients to estimate their offset toSimon Howard
the server time. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 323
2006-01-21Add first game data sending code. Check the client version when connecting.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 312
2006-01-14Include the game version in the settings structure.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 295
2006-01-13Fix game start packet parsing logic.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 290
2006-01-13Only accept sane player values when starting a new game.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 286
2006-01-12Only start new games when in the waiting-for-start state.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 285