making Multi-Player Minecraft in C++ is HARD!

Поделиться
HTML-код
  • Опубликовано: 30 ноя 2024

Комментарии • 118

  • @givowo
    @givowo 9 месяцев назад +62

    fun fact about minecraft: while it used to not be the case, nowdays singleplayer is just a server that is only open to you. it also means open to lan just works without anything new

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +11

      well most games are made like this becaise it's just easier, but i didn know that you can play Minecraft on lan with no external tools that's nice

    • @Curione23
      @Curione23 8 месяцев назад +2

      Opening to lan just allows the game to send packets to the wifi or hotspot

    • @jimsnyder745
      @jimsnyder745 8 месяцев назад

      ​@@lowlevelgamedev9330p

  • @theDragoon007yaboiCJ
    @theDragoon007yaboiCJ 9 месяцев назад +22

    believe it or not this video alone already taking more effort than java Minecraft ever did for their clunky multiplayer

  • @JoseRomagueraM
    @JoseRomagueraM 9 месяцев назад +17

    Good video! I recommend you to use a tick based simulation. Its basically a fixed step update and every update has his own tickIndex, thats a safer way to timing between client and server and also simplifies some problems

    • @Baconator20000
      @Baconator20000 8 месяцев назад

      It also helps making block timings more synchronized

  • @acablade
    @acablade 9 месяцев назад +169

    You would be surprised of how dumb and lazy the actual minecraft networking is

    • @GuguinhaMuchosJogos
      @GuguinhaMuchosJogos 9 месяцев назад +5

      Can you elaborate? Just curious

    • @MARIO-de9ew
      @MARIO-de9ew 9 месяцев назад +14

      notch code in a nutshell

    • @AndrieMC
      @AndrieMC 9 месяцев назад +24

      notch when lazy and then left mojang with this lazy and dumb code and mojang still using it to this day only getting new stuff added

    • @acablade
      @acablade 9 месяцев назад +62

      @@GuguinhaMuchosJogos no prediction whatsoever, weird edge cases, movement is clientsided, hits are clientsided. using a huge packet with unnecessary variables for turning player head(they fixed this i think) its a shitshow overall

    • @patahgaming
      @patahgaming 9 месяцев назад

      ​@@acabladedo you know MC youtuber who talking about this? I just want to know how screw it was

  • @NullCyan
    @NullCyan 9 месяцев назад +13

    3:23 jumpscared

  • @knitnatsnokprogramming
    @knitnatsnokprogramming 9 месяцев назад +10

    An Optimizations Video is the most important one

  • @Yowax
    @Yowax 9 месяцев назад +5

    Instead of using contiguous IDs for entities you should really use UUIDs, the chance of collision is minimal and there's less of a hassle with keeping the ids unique.

    • @AndrieMC
      @AndrieMC 9 месяцев назад

      fun fact: the actual Minecraft also uses uuids for when needed (entity ids and some other stuff are incrementing numbers tho)

  • @AndrieMC
    @AndrieMC 9 месяцев назад +9

    5:15 cleint

  • @sohamtilekar5126
    @sohamtilekar5126 8 месяцев назад

    You Can Hashing algorithm to give an ID, Server will make a seed and send the same seed to all clients the client will add ID based on that seed.

  • @depralexcrimson
    @depralexcrimson 9 месяцев назад +1

    why are you sending updates to the client based on where an item should be every now and then instead of letting the client predict where it's gonna be?
    just use your physics functions you already have on the client to do the 'fall', this way you save everyone the packets... massive improvement imho and this way you don't have any weird stutters and on top of that you also save the server the cycles and also you save bandwidth AND you also make it 100% accurate (or maybe almost 100% depending on how you implement it)
    server sends height at which item was dropped -> sends to client
    client -> calculates
    server sends coordinates of where the item is when it finally is stopped -> sends to client
    client -> confirms and picks up item.
    of course it's not as simple as it sounds as you'd have to account for items encountering various obstacles, and ice, water, etc.

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад

      well I actually do that but you can't rely this the server has to correct you in case things go wrong. Immagine 2 players drop items, who will be responsible for what item? they might have slightly different reprezentations of the world and things like placing a block a seccond late can determine if the item falls or not through that block. So in the end you could probably have each client be responsible for his items but at that point the other client will update you in the end. So at this point it's just easier to update the stuff on the server. The server needs to know what's happens anyway to save the world and validate who takes the item. So as far as I know ther's no other alternstive than what I do. And if I want to add propper security again you need the server stuff

  • @craftingtable7032
    @craftingtable7032 9 месяцев назад +6

    5:27 💀💀

  • @peterkcodes
    @peterkcodes 9 месяцев назад +1

    neato, this is exactly how i implemented the networking in my game!

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +1

      nicee so that means that I still have hope 😂🙏

    • @peterkcodes
      @peterkcodes 9 месяцев назад

      @@lowlevelgamedev9330 depends if my game turns out any good 😅

  • @FortisConscius
    @FortisConscius 9 месяцев назад +2

    Didn't Minetest already achieve a multiplayer voxel engine in 2011? Isn't that C++?
    Maybe check that out. How they did it.

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +2

      never heared of Minetest thanks for pointing it out I'l check it out. And yes Minecraft after all also did it I just don't really know how

    • @FortisConscius
      @FortisConscius 9 месяцев назад

      @@lowlevelgamedev9330 That's the joy of programming, though - solving the puzzle of how it all works!
      Minetest is open source unlike MC, which is mostly secretive, so reading the code will be easy... but understanding it? Much more challenging! Good luck and have fun!

    • @hyxlo_
      @hyxlo_ 8 месяцев назад +2

      Minetest came out in 2011????

    • @FortisConscius
      @FortisConscius 8 месяцев назад

      @@hyxlo_ Indeed it did.

  • @MaskMajor
    @MaskMajor 9 месяцев назад +2

    Holly shit din accent mi-am dat seama ca esti roman, super proiectul!

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +1

      😂😂 cum ti-ai dat seama tho?

    • @MaskMajor
      @MaskMajor 9 месяцев назад +1

      modul in care pronunti cuvintele te-a dat de gol xd bafta la masterat!

  • @rookiecookie153
    @rookiecookie153 9 месяцев назад +5

    I think bedrock is a C++ recreation too, also you did super good!!

    • @scarm_rune
      @scarm_rune 9 месяцев назад +8

      a terrible one at that

    • @hughjanes4883
      @hughjanes4883 9 месяцев назад +3

      I love cpp recreations that are closer to java

    • @rookiecookie153
      @rookiecookie153 9 месяцев назад +2

      @@scarm_rune ikr

    • @rookiecookie153
      @rookiecookie153 9 месяцев назад

      @@hughjanes4883 same

    • @juniuwu
      @juniuwu 9 месяцев назад +1

      @@hughjanes4883 my theory is that they did it in c++ partly to handicap modding efforts. because yeah, the performance improvements from just writing cpp java style is minimal.

  • @calengo454
    @calengo454 9 месяцев назад

    dude this looks so much better than og minecraft

  • @HumanGamer
    @HumanGamer 9 месяцев назад +1

    You should add fancy shaders (and maybe Ray Tracing?)

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +1

      yess I am working on more shader stuff 💪, no RTX tho OpenGL doesn't have support for opengl

    • @solidnywonsz
      @solidnywonsz 9 месяцев назад

      ​@@lowlevelgamedev9330 "OpenGL doesn't have support for opengl"? 🤨

    • @rxn7
      @rxn7 8 месяцев назад

      ​@lowlevelgamedev9330 opengl doesnt have support for opengl? 😅

  • @LinguisticMirage
    @LinguisticMirage 9 месяцев назад +1

    YES YES YES YES! MULTIPLAYER 🗿
    Add physics.

    • @v-14415
      @v-14415 8 месяцев назад

      miencroft phesycs

  • @Bogdan-Dode
    @Bogdan-Dode 9 месяцев назад

    Felicitari pentru continut, poate poti sa faci ceva cu Godot 4 "making a game with 0 knowledge" :))

    • @alexale5488
      @alexale5488 9 месяцев назад

      Vazand romani pasionati de game dev ma face intr-o oarecare masura mandru :)
      Initial nu suportam game engine-urile, mi se pareau incarcate.
      Am codat in C# (Monogame) si Python (PyGame).
      Am stat 2 ore cu foaia si pixul in mana pana am gasit un algoritm okish pentru camera. Am implementat o clasa "Camera" care are cateva atribute si o metoda ce foloeste ca parametrii player-ul si un spritebatch. 2-3 ore de reconceput algoritmul si trial and error... in Godot am reusit sa pun o camera cu 2 click-uri in 5 secunde care sa functioneze impecabil. Acest aspect m-a determinat sa invat Godot, pentru ca in situatia in care ma aflu, productivitatea e mai importanta.
      Also, in Godot se poate folosi si C# ceea ce mi se pare cool, o sa fure de la Unity incet incet oameni si studio-uri (cred ca stiu cu totii ce a facut Unity). Chiar luna trecuta era un post pe Godot in Bucuresti care a fost activ o luna, mi s-a parut wow.

  • @niuage
    @niuage 9 месяцев назад

    Seems like such a headache to implement multiplayer haha. Well done tho, you seem to power through all the issues!

  • @whalegum
    @whalegum 9 месяцев назад

    In my opinion you are making things harder for yourself by having the client action and server confirmation technique. It would save you a lot of effort to just make everything server-sided and have the server be the ultimate authority, but of course that comes with a bunch of downsides too. It just seems absolutely ridiculous to create a full blown undo queue, and definitely doesn't feel like the correct design. Almost seems like you are making the game less performant while the server more performant which just doesn't stick with me as a game developer.
    Also you are using UDP right? I would have liked to see your implementation of the package acknowledgment setup you have because I was working with something similar recently and it felt very awkward to implement.
    Anyways, great video as always, keep it up!

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +1

      I wish things were easier, the server is autoritive but it simply is not possible to wait for it. It can take up to a seccond or more for the server to allow you to place the block so ther's no way we can way for that. There are some resources on my Discod that might help you with what you are implementing check them out in the resources 💪

  • @dzdm6299
    @dzdm6299 9 месяцев назад +2

    optimisations

  • @darkfphantom
    @darkfphantom 9 месяцев назад

    Hello, is this game made using Pika or did you make a new renderer/engine for this project?

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +1

      it's just made from scratch, I tnink it's easier this way

  • @dean8012
    @dean8012 9 месяцев назад

    You need to censor the image in 5:36 (and the rest of the parts containing it) or your video will get flagged, which will be a shame since this content is top class and should be viewed by many.

    • @Yilmaz4
      @Yilmaz4 9 месяцев назад +1

      that's a popular meme tho, it's everywhere on youtube

    • @josegd112
      @josegd112 9 месяцев назад

      1:38 "Stary"

    • @alexale5488
      @alexale5488 9 месяцев назад

      This is simply of how censored is the world we live in...
      I miss 2000 years...

    • @deleted_handle
      @deleted_handle 2 месяца назад

      ​@@alexale5488 nawww 2000 is crazy 💀

  • @hellomine2849
    @hellomine2849 9 месяцев назад +1

    Sub si like!

  • @mikaay4269
    @mikaay4269 9 месяцев назад

    I dont really enjoy "Making X game with X thing" videos because they usually focus on minor stuff and arent very entertaining, but this video/series is actually quite nice

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +1

      thank you 💪 I hope more people will share your opinion and find this video

    • @mikaay4269
      @mikaay4269 9 месяцев назад

      @@lowlevelgamedev9330 Are you going to build an extendable server to try out a simillar concept to bukkit/spigot?

  • @forKotlinsky
    @forKotlinsky 9 месяцев назад

    u sure u have to calculate item drop on client side? i mean, why not just use builtin server, whilst drop just removing item from inventory. server will update this slot, if event was cancelled

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад

      well the server has to at least acknoledge the creation of a new item, rn it will just validate all of them but I will be able to reject them later if needed

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад

      the think is I can't wait for the server to drop the item that would take too long

  • @baptFulbion
    @baptFulbion 9 месяцев назад

    Ahah you should've implement some networking in your engine ^_^

  • @AndrieMC
    @AndrieMC 9 месяцев назад +1

    Java Edition can run on mobile, so why do you need bedrock for mobile?

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад +1

      I mean java is not really very fast and remember that Minecraft was available on mobile even a long time ago when the phones weren't that poweefull

    • @alexale5488
      @alexale5488 9 месяцев назад

      ​@@lowlevelgamedev9330
      Yep. I remember it was made in LWJGL (today it's continued by LibGDX).
      Since it was bought by Microsoft attempts were made to slowly rewrite the game in C++. Frankly, Java did fine even back then and I would recommend it for 2D games where it can handle things with no problem (Terraria was made in C# using XNA modules, FNA or Monogame today).

  • @SandwichGamesHeavy
    @SandwichGamesHeavy 9 месяцев назад

    pls publish this!

    • @AndrieMC
      @AndrieMC 9 месяцев назад +1

      he needs to get new default textures, since hes not allowed to distribute this because of the textures, and if he doesnt change 5hem and distributes it, then he might get a knock at his door from mojang

    • @SandwichGamesHeavy
      @SandwichGamesHeavy 9 месяцев назад

      @@AndrieMC yea, he should do that

    • @alexale5488
      @alexale5488 9 месяцев назад

      @@AndrieMC I hate companies who act that way :(

  • @venoenix
    @venoenix 9 месяцев назад

    nice

  • @realismqueen3884
    @realismqueen3884 9 месяцев назад

    bravo frate

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад

      imi place ca deja nici nu mai intreaba lumea daca sunt Roman 😂

    • @realismqueen3884
      @realismqueen3884 9 месяцев назад

      nu trebuie sa mai intrebi, se cunoaste

  • @dantheplanner
    @dantheplanner 9 месяцев назад

    You're so cool. 😮

  • @soumyameta
    @soumyameta 9 месяцев назад

    make it in golang

  • @ItzRomeoYT
    @ItzRomeoYT 9 месяцев назад

    Mojang WILL sue you.

    • @AndrieMC
      @AndrieMC 9 месяцев назад

      Yes but ONLY if he uses the minecraft textures, he can do whatever with it beside using mojang code or assets, the textures are assets

  • @AndrieMC
    @AndrieMC 9 месяцев назад +1

    romania lol

  • @XyndraNerd
    @XyndraNerd 9 месяцев назад

    Note that minecraft does not reset player position on invalidation(you can jump of ghost blocks)

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  9 месяцев назад

      oh ok thanks , if you know any resources that talk about how it is done let me know on my discord pls 🙏 I would love to learn more

    • @acablade
      @acablade 9 месяцев назад

      @@lowlevelgamedev9330wiki.vg/Protocol might help

    • @XyndraNerd
      @XyndraNerd 9 месяцев назад

      I just observed that from how it works on most survival multiplayer servers. you just need to join one, get a block and try it out

  • @dzdm6299
    @dzdm6299 9 месяцев назад

    hh