Skip to content
Snippets Groups Projects
  1. Oct 04, 2015
  2. Sep 29, 2015
    • est31's avatar
      Some map border related fixes · 2a7d01b8
      est31 authored
      1. Check for entity addition success in spawn_item implementation
      2. Check for success in item_drop callback, so that the player
      doesn't lose the item if they are outside bounds and try to drop it.
      3. When existing player joins game, check that their position is inside
      map bounds. If not, set their position to the return value of findSpawnPos().
      4. Make findSpawnPos() respect the border
      
      2 fixes a lua crash if a player drops an item outside map bounds.
      3 fixes an assertion crash if a player leaves when being outside map bounds,
      and then rejoins.
      2a7d01b8
  3. Sep 19, 2015
  4. Sep 17, 2015
    • est31's avatar
      Send proper block to old clients for swap_node calls · 94f1e5d9
      est31 authored
      The legacy code added in commit
      
      d879a539 - "Add minetest.swap_node"
      
      for sending the whole mapblock to older clients on the case of a node
      modification with swap_node, had the problem that the block chosen to be
      sent to the client was referenced with node coordinates and not with
      block coordinates, resulting in getting the wrong block sent to the client.
      94f1e5d9
  5. Aug 26, 2015
  6. Aug 24, 2015
    • ShadowNinja's avatar
      Clean up threading · e4bff8be
      ShadowNinja authored
        * Rename everything.
          * Strip J prefix.
          * Change UpperCamelCase functions to lowerCamelCase.
        * Remove global (!) semaphore count mutex on OSX.
        * Remove semaphore count getter (unused, unsafe, depended on internal
          API functions on Windows, and used a hack on OSX).
        * Add `Atomic<type>`.
        * Make `Thread` handle thread names.
        * Add support for C++11 multi-threading.
        * Combine pthread and win32 sources.
        * Remove `ThreadStarted` (unused, unneeded).
        * Move some includes from the headers to the sources.
        * Move all of `Event` into its header (allows inlining with no new includes).
        * Make `Event` use `Semaphore` (except on Windows).
        * Move some porting functions into `Thread`.
        * Integrate logging with `Thread`.
        * Add threading test.
      e4bff8be
  7. Aug 13, 2015
  8. Aug 09, 2015
  9. Aug 02, 2015
  10. Jul 31, 2015
    • Loïc Blot's avatar
      Small SendableMediaAnnouncement cleanup · 05fe9ab2
      Loïc Blot authored
      -> Remove the SendableMediaAnnouncement struct
      -> Forge the packet directly in the m_media loop, spare one loop and the construction of a vector
      -> Use preincrement to spare iterator copies
      05fe9ab2
  11. Jul 25, 2015
  12. 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
  13. Jul 17, 2015
  14. Jul 16, 2015
  15. Jul 10, 2015
  16. Jul 08, 2015
    • est31's avatar
      Use UTF-8 instead of narrow · b0784ba8
      est31 authored
      Use wide_to_utf8 and utf8_to_wide instead of wide_to_narrow and narrow_to_wide at almost all places.
      Only exceptions: test functions for narrow conversion, and chat, which is done in a separate commit.
      b0784ba8
  17. Jul 03, 2015
  18. Jun 29, 2015
  19. Jun 24, 2015
  20. Jun 22, 2015
  21. May 28, 2015
    • TeTpaAka's avatar
      Add some missing getter functions to the lua API · c0335f7d
      TeTpaAka authored
      ObjectRef:
      get_properties
      get_armor_groups
      get_animation
      get_attach
      get_bone_position
      
      Players:
      get_physics_override
      hud_get_hotbar_itemcount
      hud_get_hotbar_image
      hud_get_hotbar_selected_image
      get_sky
      get_day_night_ratio
      get_local_animation
      get_eye_offset
      
      Global:
      minetest.get_gen_notify
      minetest.get_noiseparams
      c0335f7d
  22. May 19, 2015
  23. May 17, 2015
  24. 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
  25. May 08, 2015
  26. Apr 22, 2015
  27. 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
  28. Apr 11, 2015
  29. Apr 07, 2015
  30. Apr 05, 2015
    • Loïc Blot's avatar
      TOCLIENT_ACTIVE_OBJECT_REMOVE_ADD can be unreliable, catch PacketError exception. · 8804c47e
      Loïc Blot authored
      Also set the packet size at creation not when pushing rawString, no functional change
      8804c47e
    • est31's avatar
      Crafting speedup · 334e7045
      est31 authored
      This greatly increases crafting performance, especially in worlds with many mods.
      
      Approved by @kwolekr.
      
      Introduces a hash-type-layered fall-through mechanism, where every layer specifies one hash algorithm,
      and the "deeper the fall", the more collisions to expect for the algorithm. One Craft definition
      only resides at one layer, which improves speed for lower layers (and a complete fail), due to most
      craft definitions residing at high layers.
      
      Due to the fall-through design, the undocumented behaviour that later craft recipes
      override older ones had to be weaked up a bit, but craft recipes with the same hash and layer
      will still override.
      334e7045
  31. Apr 03, 2015
  32. Apr 01, 2015
    • Zeno-'s avatar
      Move globals from main.cpp to more sane locations · 9527984d
      Zeno- authored
      Move debug streams to log.cpp|h
      
      Move GUI-related globals to clientlauncher
      
      Move g_settings and g_settings_path to settings.cpp|h
      
      Move g_menuclouds to clouds.cpp|h
      
      Move g_profiler to profiler.cpp|h
      9527984d
  33. 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
  34. 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
  35. Mar 24, 2015
    • Loïc Blot's avatar
      Don't send an InventoryAction at each setInventoryModified, we only need one... · 7851c4f7
      Loïc Blot authored
      Don't send an InventoryAction at each setInventoryModified, we only need one SendInventory per inventory modification
      
      Client doesn't like to receive multiples SendInventory for one action, this can trigger glitches on clients (sometimes due to incorrect UDP packet ordering due to UDP protocol)
      
      This fix issue #2544
      7851c4f7
  36. Mar 18, 2015
  37. Mar 17, 2015
Loading