summaryrefslogtreecommitdiffstats
path: root/VC2010/MCServer.vcxproj.filters (unfollow)
Commit message (Expand)AuthorFilesLines
2012-09-21Removed the VC2010 project file - it was not maintained for some time anyway. If anyone wants to use VC2010, just open the 2008 project.madmaxoft@gmail.com1-1264/+0
2012-08-30Added a basic protocol recognizer and the base for 1.3.2 protocol.madmaxoft@gmail.com1-0/+9
2012-08-30Fixed the VC2010 project filemadmaxoft@gmail.com1-444/+0
2012-08-27Cut out all packet handling to a separate cProtocol descendantmadmaxoft@gmail.com1-0/+15
2012-08-26git-svn-id: http://mc-server.googlecode.com/svn/trunk@795 0a769ca7-a7f5-676a-18bf-c427514a06d6madmaxoft@gmail.com1-0/+2
2012-08-26Added basic noteblocks, finished sign storage in Anvil (patch contributed by l0udPL)madmaxoft@gmail.com1-0/+12
2012-08-23Fixed Bug #237lapayo94@gmail.com1-0/+3
2012-08-22Added a documentation for block and item handlerslapayo94@gmail.com1-9/+0
2012-08-17Fixed the VC2010 project to compile (untested, though)madmaxoft@gmail.com1-0/+2
2012-07-22Added a new cave generator: DualRidgeCaves ( somewhat like http://www.gamedev.net/blog/33/entry-2227887-more-on-minecraft-type-world-gen/ )madmaxoft@gmail.com1-0/+6
2012-07-19Ravines: initial implementation, randomized shapes are working, but still needs some workmadmaxoft@gmail.com1-17/+23
2012-07-17Simple health regeneration systemlapayo94@gmail.com1-0/+3
2012-07-16Some code improvementslapayo94@gmail.com1-27/+0
2012-07-16fixed redstone repeater placementlapayo94@gmail.com1-3/+6
2012-07-15A new Block handling system :olapayo94@gmail.com1-1/+216
2012-07-09Improved Squirrel Bindingslapayo94@gmail.com1-0/+12
2012-07-09BlockArea name change revertedlapayo94@gmail.com1-2/+2
2012-07-08Squirrel Pluginslapayo94@gmail.com1-24/+47
2012-06-15Basic handling of vines. No growth yet.cedeel@gmail.com1-1/+4
2012-06-12Updated the crafting recipes architecture to better support crafting hooks. Removed the old recipe file and implementation altogether.madmaxoft@gmail.com1-9/+0
2012-06-04Added the new recipe parser, parsing the crafting.txt file. Included are a few recipes. The old parser still works, but will be replaced soon.madmaxoft@gmail.com1-0/+3
2012-05-25Merged the composable_generator branch into the trunkmadmaxoft@gmail.com1-48/+44
2012-05-07Fast NBT Parser (loading a chunk is now about 10 times faster)madmaxoft@gmail.com1-8/+33
2012-03-24Added the new 1.2.4's PlayerAbilities packet; restructures packet files for less files, more dense.madmaxoft@gmail.com1-36/+6
2012-03-14Added the new ChunkDef.h into VC2010 projectmadmaxoft@gmail.com1-0/+1
2012-03-12Added a flat terrain generator with settable terrain heightmadmaxoft@gmail.com1-0/+2
2012-03-07Added the Anvil level format (MCA) support, read-only for the time being. Now MCS can read your worlds from the official server :)madmaxoft@gmail.com1-0/+4
2012-03-05ChunkSender: Chunks are now compressed and sent to clients from a separate threads, proper passive waiting between threads. Not much tested, just appears to work :)madmaxoft@gmail.com1-0/+2
2012-03-01New redstone simulator. Should work without crashes!faketruth1-0/+9
2012-02-17Added the skeleton of the cLightingThread objectmadmaxoft@gmail.com1-0/+2
2012-02-16Chunk is now marked as dirty; saving only dirty chunks; rewritten load / save not to use cChunkPtr; set VC2008 project to level4 warnings; block entities are now loaded and saved properlymadmaxoft@gmail.com1-0/+2
2012-02-14Slight cleanup - removed old code, some additional comments on dangerous functionsmadmaxoft@gmail.com1-9/+0
2012-02-13Rewritten 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.com1-0/+8
2012-02-07cSocketThreads initial commit. Not yet tested and not yet integratedmadmaxoft@gmail.com1-0/+2
2012-02-01new cIsThread object for thread encapsulationmadmaxoft@gmail.com1-0/+2
2012-02-01Introducing StringUtils - the place to be if you are a generic string routine :) No more sprintf()!madmaxoft@gmail.com1-0/+2
2012-01-30Initial cFile implementation (using stdio FILE) and test in cChunkMapmadmaxoft@gmail.com1-0/+2
2012-01-29VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization.madmaxoft@gmail.com1-0/+2
2012-01-28Converted entire Core plugin including WebAdmin interface to new plugin method/system/thingy and sexyfied it.faketruth1-0/+9
2012-01-26Working on a new plugin design with Lua. While retaining backwards compatibility of course...faketruth1-0/+9
2012-01-19Terrain generation is synchronous again, async generation has bugs.faketruth1-0/+6
2012-01-01- implemented separated inventory for creative mode (cSurvivalInventory and cCreativeInventory)lapayo94@gmail.com1-9/+27
2011-12-31Made a couple of functions in cChunk inline, this should speed up several block operations on chunksfaketruth1-0/+3
2011-12-28- implemented the fire simulation in native c++ (cFireSimulator)lapayo94@gmail.com1-3/+12
2011-12-28- Implemented Drops from Burning animalslapayo94@gmail.com1-21/+42
2011-12-27Some kind of 'template' world generator that right now just generates an all dirt world. You can use this to test new algorithmsfaketruth1-12/+15
2011-12-26Players can switch worlds on the fly with the command /gotoworld [worldName]. This uses the function cPlayer::MoveToWorld()faketruth1-38/+29
2011-12-26- improved Simulator system lapayo94@gmail.com1-15/+39
2011-12-26Moved the actual world generation from cChunk.cpp to a more isolated file cWorldGenerator.cppfaketruth1-0/+9
2011-12-26Made some functions in cChunk and cNoise inline, this should significantly increase chunk generation speedfaketruth1-0/+3
2011-12-26 - Make Color was using 2 extra characters which took 2 characters off the 16 max (including color codes) for scoreboard displaymtilden@gmail.com1-0/+9
2011-12-25- Fixed Bug #99 -> Mobs no longer bother you in creative modelapayo94@gmail.com1-0/+30
2011-12-25Refactored both simulators (water and lava) to make them more flexible and easier to modifylapayo94@gmail.com1-10/+19
2011-12-25Chunks are generated in a separate thread allowing players to keep on playing and chatting while chunks are generated. This means, however, that cWorld::GetChunk() does not always return a chunk and is something you need to be aware of. I am not entirely sure if all this is completely stable, but I think so :Ofaketruth1-0/+9
2011-12-21- Crafting fixed in 1.0.0lapayo94@gmail.com1-0/+9
2011-11-08Broke something in the filters file, fixed nowfaketruth1-1/+0
2011-11-08It's a Squirrel!!faketruth1-0/+10
2011-11-07Added three new packets and cleaned up cPacket_Thunderbolt.cpp... cPacket_BlockAction, cPacket_Explosion, and cPacket_SoundEffect.admin@omencraft.com1-0/+27
2011-11-06Patch with diff file created by Sebi (implemented some stuff like lava physics, drops are deleted when in lava, water is now slower, lava gives actual damage etc.). Pistons now work mostly as they should. They do not yet show the motion animation and do not emit sound. They do extend, push, and retract as they should though. Right now the only way to activate a piston is to light redstone wire adjacent to it with a redstone torch.admin@omencraft.com1-0/+9
2011-11-05Added cPiston.h and cPiston.cpp to VC2010 files.admin@omencraft.com1-0/+9
2011-11-04Added cRedstone to project filefaketruth1-1/+10
2011-11-02Added New/Invaid State and Thunderbolt packets. For testing purposes it now rains whenever a player opens a workbench and stops when they pen a chest. The rain start/stop in only sent to the sole clientopening the items.admin@omencraft.com1-1/+19
2011-10-31Player data is saved and loaded as human readable JSON now.faketruth1-1/+13
2011-10-26Added CreateInventoryAction packet for creative mode. Used cPacketEntityEquipment as template. Forced server into Creative Mode. Can't break blocks yet. Player can stil be damaged in creative mode and dying takes you back to survival mode.admin@omencraft.com1-1/+10
2011-10-26Updated VS2010 project filesfaketruth1-6/+132
2011-10-03Visual Studio 2010 solution and project filesfaketruth1-0/+1015