summaryrefslogtreecommitdiffstats
path: root/source/cServer.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Source files cleanup: The rest of the files renamed.madmaxoft@gmail.com2012-09-241-714/+0
* Source files cleanup: OSSupport-related files in a separate subfolder, renamed.madmaxoft@gmail.com2012-09-231-2/+2
* Source files cleanup: Mobs-related files in a separate subfolder, renamed.madmaxoft@gmail.com2012-09-231-1/+1
* Source files cleanup: Protocol-related files in a separate subfoldermadmaxoft@gmail.com2012-09-231-1/+1
* Refactored windows.madmaxoft@gmail.com2012-09-201-1/+0
* Officially added 1.3.2 protocol supportmadmaxoft@gmail.com2012-09-061-1/+2
* Fixed a possible race condition in cClientHandle's packet sending code; prepared for moving cSocket out of cClientHandle's ownership.madmaxoft@gmail.com2012-09-041-1/+1
* Removed OS dependencies from CryptoPP; Removed unused modules that didn't compile on some platformsmadmaxoft@gmail.com2012-09-041-1/+4
* Implemented 1.3.2 protocol encryption using CryptoPP, up to Client Status packet (http://wiki.vg/Protocol_FAQ step 14)madmaxoft@gmail.com2012-08-301-0/+18
* Cut out all packet handling to a separate cProtocol descendantmadmaxoft@gmail.com2012-08-271-18/+0
* Monster classes don't use cPackets. Chat messages are sent / broadcast without cPackets. BlockEntities don't use cPackets.madmaxoft@gmail.com2012-08-241-14/+32
* Chat packet handled in the new way; fixed missing packet sending for inventory slot.madmaxoft@gmail.com2012-08-181-36/+15
* Console command "chunkstats" now lists each world and also totalsmadmaxoft@gmail.com2012-08-151-26/+1
* Added a true "all chunks saved" message for the save-all console command (FS #215)madmaxoft@gmail.com2012-08-151-1/+1
* Fixed a possible crash when restarting / stopping the server.madmaxoft@gmail.com2012-06-191-0/+1
* Attempt to bring sanity to newlines across systems.cedeel@gmail.com2012-06-141-738/+738
* Updated the crafting recipes architecture to better support crafting hooks. Removed the old recipe file and implementation altogether.madmaxoft@gmail.com2012-06-121-1/+0
* More ini settings save their defaultsmadmaxoft@gmail.com2012-06-091-6/+2
* Added more statistics to the "chunkstats" server console commandmadmaxoft@gmail.com2012-05-301-1/+19
* Merged the composable_generator branch into the trunkmadmaxoft@gmail.com2012-05-251-64/+79
* Moved the commands /coords /viewdistance and /regeneratechunks from cServer.cpp to the Core pluginfaketruth2012-04-111-60/+0
* Added the permission "builtin.regeneratechunk" needed for regenerating chunks using a command.madmaxoft@gmail.com2012-04-101-0/+5
* Added the "/regeneratechunk" command that regenerates either current chunk or a chunk specified with x, z parameters. TODO: permissions - we don't want guests erasing our chunks!madmaxoft@gmail.com2012-04-101-1/+28
* Added the supported client version to banner; shamelessly added myself to the authors list ;)madmaxoft@gmail.com2012-03-261-3/+5
* Fixed player heads always pointing north (new EntityHeadLook packet)madmaxoft@gmail.com2012-03-191-3/+7
* Split chunk data into separate arrays; decoupled most sources from cChunk.h dependencymadmaxoft@gmail.com2012-03-141-1/+1
* Fixed a few obsoleted functionsmadmaxoft@gmail.com2012-03-101-3/+3
* Using references instead of pointers for sending packetsmadmaxoft@gmail.com2012-03-101-1/+1
* Fixed *nix threading issue;madmaxoft@gmail.com2012-03-101-3/+3
* cClientHandles have a unique ID now to distinguish themfaketruth2012-03-091-5/+5
* Fixed a potential deadlock ( http://forum.mc-server.org/showthread.php?tid=374 )madmaxoft@gmail.com2012-03-051-4/+9
* Improved threading performance by reducing thread-hopping in queue locks (cs unlocked before event set)madmaxoft@gmail.com2012-02-281-3/+5
* Attempt at fixing crashes with disconnecting playersmadmaxoft@gmail.com2012-02-261-0/+9
* Using cSocketThreads for client outgoing packets. Unfortunately had to put in one intermediate thread (cServer::cNotifyWriteThread) to avoid deadlocks. Still, seems we have a proper multithreading for clients and no more per-client threads, yay :)madmaxoft@gmail.com2012-02-261-24/+136
* Extended SocketThreads for writing support (unusable in cClientHandle due to too many deadlock possibilities)madmaxoft@gmail.com2012-02-261-1/+1
* Made the viewdistance settable by users and default in settings.ini. The default is 9.madmaxoft@gmail.com2012-02-231-13/+34
* Lots of logging addedmadmaxoft@gmail.com2012-02-171-1/+1
* git-svn-id: http://mc-server.googlecode.com/svn/trunk@281 0a769ca7-a7f5-676a-18bf-c427514a06d6faketruth2012-02-161-1/+1
* New server command "unload" to manually unload unused chunksmadmaxoft@gmail.com2012-02-161-1/+9
* Fixed logging in cServermadmaxoft@gmail.com2012-02-161-1/+1
* Rewritten most of the code for multithreading; still not 100%, but getting there. If this commit proves to be too problematic, we can always undo it.madmaxoft@gmail.com2012-02-131-17/+17
* cSocketThreads plugged in for cClientHandle reading. Sending still kept the old way. Please help me test this commit thoroughly, this is a change that can break on subtleties.madmaxoft@gmail.com2012-02-081-49/+16
* Now showing proper error messages when sockets fail :)faketruth2012-02-051-3/+3
* cSocket API fix (possible invalid pointer)madmaxoft@gmail.com2012-02-021-8/+14
* Rewritten cAuthenticator to make use of the new cIsThread architecture - now authentication runs in a single separate thread for all clients;madmaxoft@gmail.com2012-02-011-8/+101
* Introducing StringUtils - the place to be if you are a generic string routine :) No more sprintf()!madmaxoft@gmail.com2012-02-011-39/+17
* VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization.madmaxoft@gmail.com2012-01-291-11/+7
* Improved Core's WebAmin interface a bit.faketruth2012-01-221-3/+9
* Bug FS#131 http://www.mc-server.org/support/index.php?do=details&task_id=131 should be fixedfaketruth2012-01-211-0/+1
* Terrain generation is synchronous again, async generation has bugs.faketruth2012-01-191-2/+1
* Fixed the numchunks console command.faketruth2012-01-011-1/+1
* Players can switch worlds on the fly with the command /gotoworld [worldName]. This uses the function cPlayer::MoveToWorld()faketruth2011-12-261-10/+0
* Code improvementslapayo94@gmail.com2011-12-251-1/+18
* Added thread names to cThread so when debugging in Visual Studio you actually know what thread you're looking atfaketruth2011-12-231-2/+2
* You can now run multiple worlds by defining them in settings.ini . However there's no way to change worlds on the fly yetfaketruth2011-11-011-19/+19
* Prepared some parts of the code for multi world support, I created lots of TODO'sfaketruth2011-10-311-3/+5
* Abstracted sockets some more to ensure the same behavior over the entire program and on multiple platforms.faketruth2011-10-231-58/+24
* Compiles for linuxfaketruth2011-10-211-0/+1
* MCServer c++ source filesfaketruth2011-10-031-0/+553