Skip to content
Snippets Groups Projects
  1. Aug 02, 2015
  2. Jul 27, 2015
  3. Jul 23, 2015
    • est31's avatar
      Optional reconnect functionality · 3b50b276
      est31 authored
      Enable the server to request the client to reconnect.
      
      This can be done with the now extended minetest.request_shutdown([reason], [reconnect]) setting.
      3b50b276
  4. Jul 17, 2015
  5. Jul 08, 2015
    • kwolekr's avatar
      Clean-up Minimap code · e234d8b3
      kwolekr authored
      - Fixed race conditions
      - Fixed null dereference
      - Fixed out-of-bounds array access
      - MinimapMapblock is now allocated and added to update queue only when enabled
      - Removed dependency on LocalPlayer
      - Fixed code style
      - Simplified expressions and program logic
      - Cleaned minimap object interfaces
      e234d8b3
  6. Jul 07, 2015
    • est31's avatar
      Client: better m_proto_ver initialisation · d92d3761
      est31 authored
      Previously, m_proto_ver was set to the serialisation version
      inside the legacy init packet.
      
      Now, if the server doesn't send a protocol version (protocols < 25),
      we set m_proto_ver to some value < 25 and > 0.
      d92d3761
  7. Jun 29, 2015
  8. Jun 27, 2015
  9. Jun 24, 2015
  10. May 19, 2015
  11. May 16, 2015
  12. May 11, 2015
    • est31's avatar
      Make early protocol auth mechanism generic, and add SRP · 82e35edf
      est31 authored
      Adds everything needed for SRP (and everything works too),
      but still deactivated, as protocol v25 init packets aren't final yet.
      Can be activated by changing the LATEST_PROTOCOL_VERSION header to 25
      inside networkprotocol.h.
      82e35edf
  13. Apr 17, 2015
    • est31's avatar
      Refactor around translatePassword · f0a1379e
      est31 authored
      Change types for passed password from wstring to string, which removes converting
      back and forth in most cases. Move the narrow_to_wide conversion, where its neccessary,
      closer to irrlicht. Remove trailing spaces in guiPasswordChange.cpp. Make parameters for
      translatePassword passed as const reference.
      f0a1379e
  14. Apr 16, 2015
    • kwolekr's avatar
      Schematics: Refactor NodeResolver and add NodeResolveMethod · 479f3897
      kwolekr authored
      NodeResolver name lists now belong to the NodeResolver object instead of
      the associated NodeDefManager.  In addition to minimizing unnecessary
      abstraction and overhead, this move permits NodeResolvers to look up nodes
      that they had previously set pending for resolution.  So far, this
      functionality has been used in the case of schematics for
      serialization/deserialization.
      479f3897
  15. Apr 07, 2015
  16. Apr 06, 2015
  17. Apr 01, 2015
  18. Mar 31, 2015
    • Loïc Blot's avatar
      Connection::Receive(): receive Network Packet instead of SharedBuffer<u8>. · 1fe42564
      Loïc Blot authored
      Because we get a Buffer<u8> from ConnectionEvent, don't convert it to SharedBuffer<u8> and return it to Server/Client::Receive which will convert it to NetworkPacket
      Instead, put the Buffer<u8> directly to NetworkPacket and return it to packet processing
      This remove a long existing memory copy
      Also check the packet size directly into Connection::Receive instead of packet processing
      1fe42564
    • Zeno-'s avatar
      Change format of screenshot names · 862d4ea3
      Zeno- authored
      Filename screenshot_ + ISO 8601 format + [-serial]
      
      i.e. screenshot_YYYY-MM-DDTHH::MM::SS[-serial].png
      
      Serial is added if the filename + timestamp already exists and is in the range 1 to 999
      862d4ea3
  19. Mar 27, 2015
    • ShadowNinja's avatar
      Clean up and tweak build system · 93fcab95
      ShadowNinja authored
        * Combine client and server man pages.
        * Update unit test options and available databases in man page.
        * Add `--worldname` to man page.
        * Fix a bunch of places where `"Minetest"` was used directly instead of `PROJECT_NAME`.
        * Disable server build by default on all operating systems.
        * Make `ENABLE_FREETYPE` not fail if FreeType isn't found.
        * Enable LevelDB, Redis, and FreeType detection by default.
        * Remove the `VERSION_PATCH_ORIG` hack.
        * Add option to search for and use system JSONCPP.
        * Remove broken LuaJIT version detection.
        * Rename `DISABLE_LUAJIT` to `ENABLE_LUAJIT`.
        * Rename `minetest_*` variables in `version.{h,cpp}` to `g_*`.
        * Clean up style of CMake files.
      93fcab95
  20. Mar 24, 2015
  21. Mar 16, 2015
  22. Mar 15, 2015
  23. Mar 13, 2015
  24. Mar 08, 2015
  25. Mar 07, 2015
  26. Mar 06, 2015
  27. Mar 05, 2015
  28. Feb 21, 2015
  29. Feb 17, 2015
  30. Feb 16, 2015
    • Loïc Blot's avatar
      [Patch 2/4] Network rework: packet writing, sending and cleanups · ed04e8e9
      Loïc Blot authored
      NetworkPacket.cpp:
      * Remove some deprecated functions, we must use streaming interface
      * m_data converted from u8* to std::vector<u8>
      * Add an exporter to forge packet to Connection object
      * implement operator << std::wstring. n
      * implement operator << std::string
      * dynamic resize when write packet content.
      * fix string writing and performances.
      * create ServerCommandFactory, used by client to get useful informations about packet processing (sending).
        * Reliability
        * Transmit channel
      * Implement putRawString for some ugly char (_INIT packet), and use it.
      * Many packet read and write migrated
      * Implement oldForgePacket to interface writing with current connection
      * fix U8/char/bool writing
      * fix string writing and performances.
      * add some missing functions
      * Use v3s16 read instead of reading x,y,z separately
      * Add irr::video::SColor support into packets
      * Add some missing handlers
      * Add a template function to increase offset
      * Throw a serialization error on packet reading (must be improved)
      
      PacketFactories:
      * Create ServerCommandFactory, used by client to get useful informations about packet processing (sending).
      * Create ClientCommandFactory, used by server to get useful informations about packet processing (sending).
      
      Client.cpp:
      * implement NetworkPacket ::Send interface.
      * Move packet handlers to a dedicated file
      * Remove Client::Send(SharedBuffer)
      
      Server.cpp:
      * implement NetworkPacket ::Send interface.
      * Rewrite all packets using NetworkPacket
      * Move packet handlers to a dedicated file
      * Remove Server::Send(SharedBuffer)
      
      ClientIface.cpp:
      * Remove sendToAll(SharedBuffer<u8>)
      
      Connection.hpp rework:
      * Remove duplicate include
      * Remove duplicate negation
      * Remove a useless variable
      * Improve code performance by using a m_peers_list instead of scanning m_peers map
      * Remove Connection::Send(SharedBuffer)
      * Fix useafterfree into NetworkPacket Sending
      * Remove unused Connection::sendToAll
      
      Test.cpp:
      * Remove dead code
      * Update tests to use NetworkPackets
      
      Misc:
      * add new wrappers to Send packets in client, using NetworkPacket
      * Add NetworkPacket methods for Connection
      * coding style fix
      * dead code since changes cleanup
      * Use v3s16 read instead of reading x,y,z separately in some packets
      * Use different files to handle packets received by client and server
      * Cleanup: Remove useless includes
      
      ok @Zeno-
      Tested by @Zeno- @VanessaE and @nerzhul on running servers
      ed04e8e9
  31. Feb 11, 2015
Loading