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

Sdílet
Vložit
  • čas přidán 7. 09. 2024
  • In this video, I will talk about how the multi-player in my Minecraft code works!
    #programming #cpp #gamedev #minecraft #multiplayer
    Join my Discord:
    / discord
    Check out Midnight Arrow on Steam 💪:
    store.steampow...
    Join this channel if you want to support me 😻:
    / @lowlevelgamedev9330
    Source code:
    github.com/mee...
    Music:
    Minecraft soundtrack: C418 - Aria Math
    Minecraft soundtrack: C418 - Moog City
    Evan King - Booty Shake Robot
    / contextsensitive
    contextsensiti...

Komentáře • 117

  • @givowo
    @givowo Před 6 měsíci +60

    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  Před 6 měsíci +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 Před 6 měsíci +2

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

    • @jimsnyder745
      @jimsnyder745 Před 5 měsíci

      ​@@lowlevelgamedev9330p

  • @acablade
    @acablade Před 6 měsíci +168

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

    • @GuguinhaMuchosJogos
      @GuguinhaMuchosJogos Před 6 měsíci +4

      Can you elaborate? Just curious

    • @MARIO-de9ew
      @MARIO-de9ew Před 6 měsíci +13

      notch code in a nutshell

    • @AndrieMC
      @AndrieMC Před 6 měsíci +23

      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 Před 6 měsíci +61

      @@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 Před 6 měsíci

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

  • @theDragoon007yaboiCJ
    @theDragoon007yaboiCJ Před 6 měsíci +20

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

  • @JoseRomagueraM
    @JoseRomagueraM Před 6 měsíci +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

  • @NullCyan
    @NullCyan Před 6 měsíci +14

    3:23 jumpscared

  • @knitnatsnokprogramming
    @knitnatsnokprogramming Před 6 měsíci +9

    An Optimizations Video is the most important one

  • @Yowax
    @Yowax Před 6 měsíci +4

    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 Před 6 měsíci

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

  • @AndrieMC
    @AndrieMC Před 6 měsíci +8

    5:15 cleint

  • @rookiecookie153
    @rookiecookie153 Před 6 měsíci +5

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

    • @scarm_rune
      @scarm_rune Před 6 měsíci +8

      a terrible one at that

    • @hughjanes4883
      @hughjanes4883 Před 6 měsíci +3

      I love cpp recreations that are closer to java

    • @rookiecookie153
      @rookiecookie153 Před 6 měsíci +2

      @@scarm_rune ikr

    • @rookiecookie153
      @rookiecookie153 Před 6 měsíci

      @@hughjanes4883 same

    • @juniuwu
      @juniuwu Před 6 měsíci +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.

  • @MaskMajor
    @MaskMajor Před 6 měsíci +2

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

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  Před 6 měsíci +1

      😂😂 cum ti-ai dat seama tho?

    • @MaskMajor
      @MaskMajor Před 6 měsíci +1

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

  • @sohamtilekar5126
    @sohamtilekar5126 Před 5 měsíci

    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.

  • @peterkcodes
    @peterkcodes Před 6 měsíci +1

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

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  Před 6 měsíci +1

      nicee so that means that I still have hope 😂🙏

    • @peterkcodes
      @peterkcodes Před 6 měsíci

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

  • @depralexcrimson
    @depralexcrimson Před 6 měsíci +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  Před 6 měsíci

      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

  • @dean8012
    @dean8012 Před 6 měsíci

    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 Před 6 měsíci +1

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

    • @josegd112
      @josegd112 Před 6 měsíci

      1:38 "Stary"

    • @alexale5488
      @alexale5488 Před 6 měsíci

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

  • @craftingtable7032
    @craftingtable7032 Před 6 měsíci +6

    5:27 💀💀

  • @FortisConscius
    @FortisConscius Před 6 měsíci +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  Před 6 měsíci +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 Před 6 měsíci

      @@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_ Před 5 měsíci +2

      Minetest came out in 2011????

    • @FortisConscius
      @FortisConscius Před 5 měsíci

      @@hyxlo_ Indeed it did.

  • @niuage
    @niuage Před 6 měsíci

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

  • @sournois90
    @sournois90 Před 6 měsíci

    dude this looks so much better than og minecraft

  • @whalegum
    @whalegum Před 6 měsíci

    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  Před 6 měsíci +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 💪

  • @Bogdan-Dode
    @Bogdan-Dode Před 6 měsíci

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

    • @alexale5488
      @alexale5488 Před 6 měsíci

      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.

  • @LinguisticMirage
    @LinguisticMirage Před 6 měsíci +1

    YES YES YES YES! MULTIPLAYER 🗿
    Add physics.

    • @v-14415
      @v-14415 Před 5 měsíci

      miencroft phesycs

  • @mikaay4269
    @mikaay4269 Před 6 měsíci

    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  Před 6 měsíci +1

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

    • @mikaay4269
      @mikaay4269 Před 6 měsíci

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

  • @HumanGamer
    @HumanGamer Před 6 měsíci +1

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

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  Před 6 měsíci +1

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

    • @solidnywonsz
      @solidnywonsz Před 6 měsíci

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

    • @rxn7
      @rxn7 Před 5 měsíci

      ​@lowlevelgamedev9330 opengl doesnt have support for opengl? 😅

  • @dzdm6299
    @dzdm6299 Před 6 měsíci +2

    optimisations

  • @baptFulbion
    @baptFulbion Před 6 měsíci

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

  • @Eesasx
    @Eesasx Před 6 měsíci

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

  • @forKotlinsky
    @forKotlinsky Před 6 měsíci

    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  Před 6 měsíci

      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  Před 6 měsíci

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

  • @evilwizardtherapist
    @evilwizardtherapist Před 6 měsíci

    You're so cool. 😮

  • @hellomine2849
    @hellomine2849 Před 6 měsíci +1

    Sub si like!

  • @SandwichGamesHeavy
    @SandwichGamesHeavy Před 6 měsíci

    pls publish this!

    • @AndrieMC
      @AndrieMC Před 6 měsíci +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 Před 6 měsíci

      @@AndrieMC yea, he should do that

    • @alexale5488
      @alexale5488 Před 6 měsíci

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

  • @venoenix
    @venoenix Před 6 měsíci

    nice

  • @XyndraNerd
    @XyndraNerd Před 6 měsíci

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

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  Před 6 měsíci

      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 Před 6 měsíci

      @@lowlevelgamedev9330wiki.vg/Protocol might help

    • @XyndraNerd
      @XyndraNerd Před 6 měsíci

      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

  • @realismqueen3884
    @realismqueen3884 Před 6 měsíci

    bravo frate

  • @AndrieMC
    @AndrieMC Před 6 měsíci

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

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  Před 6 měsíci +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 Před 6 měsíci

      ​@@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).

  • @ItzRomeoYT
    @ItzRomeoYT Před 6 měsíci

    Mojang WILL sue you.

    • @AndrieMC
      @AndrieMC Před 6 měsíci

      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

  • @soumyameta
    @soumyameta Před 6 měsíci

    make it in golang

  • @AndrieMC
    @AndrieMC Před 6 měsíci +1

    romania lol

  • @dzdm6299
    @dzdm6299 Před 6 měsíci

    hh

  • @drexter469
    @drexter469 Před 6 měsíci

    Are you romanian?

    • @lowlevelgamedev9330
      @lowlevelgamedev9330  Před 6 měsíci +1

      de ce toata lumea isi da seama de asta 😂?

    • @alexale5488
      @alexale5488 Před 6 měsíci

      @@lowlevelgamedev9330 Let us be proud with you :)

    • @drexter469
      @drexter469 Před 6 měsíci

      @@lowlevelgamedev9330 accentul tau in engleza este unul de roman :))