Voxel Game Mesh Optimizations

Поділитися
Вставка
  • Опубліковано 24 лис 2024

КОМЕНТАРІ • 424

  • @Hopsonn
    @Hopsonn  4 роки тому +76

    Join my discord here if you want to :=) discordapp.com/invite/DeEhUXY

    • @eureptus
      @eureptus 4 роки тому

      Hopson, So 2 years ago you made a Minecraft game in 7 days, I’m looking forward to make a game like roblox so could you please make a game like roblox in 7 days?

    • @samuelrasquinha6712
      @samuelrasquinha6712 4 роки тому +6

      @@eureptus lol no

    • @gavinthecrafter
      @gavinthecrafter 3 роки тому +1

      @@eureptus dude making a game, even in just 7 days takes a looooong time. Besides, you can't really make a basic version of roblox due to it's multiplayer aspects and creation tools

    • @untodesu
      @untodesu 3 роки тому

      aaaand the link is dead

    • @Hopsonn
      @Hopsonn  3 роки тому +1

      @@untodesu ill be making new links soon

  • @haocheng480
    @haocheng480 4 роки тому +333

    As a fellow voxel game developer, I too find the greedy meshing article to be somewhat technical.
    But eventually I figured it out (or so I think):
    First, loop through the blocks along the X axis (at Y=0), and combine each of them into a single group until you meet another type of block, increasing extend.x while doing so. (If you meet another, just create a new group.) Then, repeat the same process at Y=1 and so on. Same goes for the Z axis.
    So your groups have the following fields: starting position (vec3), extend (vec3i), and the block type (uint in my case).
    But we haven't finished yet! Now, for each group, let's say Group 1 is at (0, 0, 0). And say Group 2 is at (0, 1, 0) - one unit above Group 1. If their extend (the amount of blocks along each axis) are the same, then combine the groups together - for instance if their extends are (10, 1, 1) then after the combination the extend of the new group becomes (10, 2, 1).
    Essentially, a group will ALWAYS be a cuboid with 12 triangles only.
    That is the basic idea of greedy meshing. You can try optimising for faster grouping of blocks (I developed mine in a day so I'm pretty sure there are a lot of space for optimisations). Besides that, I believe a basic cull before the grouping can be quite beneficial too.

    • @sugar2000galaxy
      @sugar2000galaxy 4 роки тому +8

      Ayyy the how I optimize my voxel game too! I didn't knew this was how the greedy mesh method worked. Extending on the X axis is easy but on the Z and Y is hard and costly.

    • @creature_of_fur
      @creature_of_fur 4 роки тому +11

      The method in the linked article is quite a bit different.
      Instead of working with cuboids, it deals with 2D slices.
      First, it looks at 2 adjacent 2D slices of the voxel grid. From them it generates a mask, which tells you where you need quads. Then it picks a first quad, and tries to extend it. When this quad is maxed out, it clears the mask in that region(since we've already filled those quads), and moves onto a next quad.
      This process is then repeated for all slices in the current direction. When that is done, it moves onto the next direction, so you go throughthe volume 3 times total.

    • @imnotstpid
      @imnotstpid 4 роки тому +7

      Wouldn't greedy meshing completely ruin the resolution of your lighting though since it removes a whole load of verts?

    • @haocheng480
      @haocheng480 4 роки тому +5

      @@imnotstpid Indeed it does, but it only happens if you insist to use a normal dumb graphics pipeline - with shaders (hint: floor()) you can achieve the same effect easily.

    • @przemysaw8241
      @przemysaw8241 4 роки тому +2

      Thank you

  • @lmerry213
    @lmerry213 4 роки тому +537

    Minecraft still uses a texture atlas, it's just stitched together dynamically at runtime now. Great video!

    • @k1ngjulien_
      @k1ngjulien_ 4 роки тому +26

      oh so it puts all the individual texture files into on big atlas? I'm guessing the're doing something different for the animated textures

    • @lilcatfriend4575
      @lilcatfriend4575 4 роки тому +37

      @LapisSea holy crap they never stopped using the fixed function pipeline?

    • @rustmc
      @rustmc 4 роки тому +11

      wait but i thought with 1.15 they redid their rendering stuff completely new and optimized everything (i think they called id blaze3d or something)?

    • @rustmc
      @rustmc 4 роки тому +3

      @LapisSea im probably gonna look into fabric 1.15 soon when i find the time, would be really cool if mc had at least decent rendering

    • @user-cz9ss4yq4x
      @user-cz9ss4yq4x 4 роки тому

      LapisSea Tell us your thoughts :) Pretty cool

  • @maxcohn3228
    @maxcohn3228 4 роки тому +88

    I love nity grity optimizations like this, especially when you have to get creative with your bit packing. Great video!

    • @k1ngjulien_
      @k1ngjulien_ 4 роки тому +3

      its very neat, however you have to be very careful about premature optimizations
      if you start doing stuff like too early it can really hurt you in the long run.

    • @krubbles101
      @krubbles101 4 роки тому +9

      @@k1ngjulien_ Mesh memory is the limiting factor in the view distance of a voxel game. This optimization is not premature.

    • @k1ngjulien_
      @k1ngjulien_ 4 роки тому +8

      @@krubbles101 yes hopson did it at the right time, the game was having a problem and he fixed it.
      The problem is when you do stuff like bitpacking to optimise memory before you've even fully worked the texture/lighting/... mechanics out.

    • @albingrahn5576
      @albingrahn5576 4 роки тому +2

      i love it too! this video comes to mind whenever i think of optimization like that: ua-cam.com/video/ZWQ0591PAxM/v-deo.html

    • @k1ngjulien_
      @k1ngjulien_ 4 роки тому +8

      @@albingrahn5576 excellent video! Crazy to think that chrome takes >500mb of ram easily.
      Programmers have stopped caring since "powerful" machines are so cheap these days which i find quite sad.

  • @rogercronin
    @rogercronin 4 роки тому +19

    Hey it might not mean a lot to you but I'm really glad you've started uploading again after your bit of a hiatus. I'm not a great programmer because I've only ever worked with very high level languages and libraries, so learning about how to do all of the nitty gritty is super fascinating. And seeing the final project come together, or course :)

  • @gumbawu4135
    @gumbawu4135 4 роки тому +194

    I don't know if this would make sense, but could you not store the new lighting value (2..5) in two bits instead of three by subtracting 2 and thus only needing to store 0, 1, 2 or 3 which is a two digit binary number? :)

    • @deamon6681
      @deamon6681 4 роки тому +58

      I wonder where the line is between some neat optimisations, and code that is just full of magic numbers and offets, that noone understands 3 months after...

    • @gumbawu4135
      @gumbawu4135 4 роки тому +82

      @@deamon6681 I feel like such an important part of a game engine might need to be as optimised as possible and therefore it's ok for the code to be harder to understand. Good variable naming and documentation is ofc important. I was more worried that my 'optimisation' might just not improve anything as there is enough room in the variable he packs all the bytes into. Then, my optimization would just add an unnecessary operation. And I also generally don't know, if saving one bit is worth one extra operation

    • @oliverhalenius
      @oliverhalenius 4 роки тому +7

      @@gumbawu4135 I guess profiling is the only way to find out!

    • @Unknownsoldier740
      @Unknownsoldier740 4 роки тому +31

      that would be an additional operation for each vector and the extra bit in memory to save that might be the more efficient approach.
      The memory efficiency vs processing efficiency is always a complex argument.

    • @oblivion_2852
      @oblivion_2852 4 роки тому +22

      This wouldn't make a difference to the resulting code since memory alignment means any struct is always packed to align to the nearest 4 byte size. So even if you go to 31 bits per block it'll still pad to 32 bits.

  • @rz2374
    @rz2374 4 роки тому +81

    What's the universe made of?
    Triangles and stuff

  • @Diriector_Doc
    @Diriector_Doc 4 роки тому +47

    5:50 Just a small arithmetic error.
    2 / 5 != 0.2

    • @LostPhysx
      @LostPhysx 4 роки тому +4

      And 6:20 - 28 bytes = 12 bytes + 12 bytes + 4 bytes = 96 bit + 96 bit + 32 bit = 112 bits

  • @PearlescentAbyss
    @PearlescentAbyss 4 роки тому +100

    E V E R Y T H I N G I S T R I A N G L E S

    • @garorade
      @garorade 4 роки тому +3

      Block game is actually diagonal pyramid game

    • @xXZombieHunter0802Xx
      @xXZombieHunter0802Xx 4 роки тому +2

      SQUARES MAKE A CIRCLE

    • @haph2087
      @haph2087 4 роки тому +2

      E V E R Y T H I N G I S S Q U A R E S

    • @demelengopnik7187
      @demelengopnik7187 4 роки тому +1

      all these squares make a circle

    • @epta5254
      @epta5254 4 роки тому +2

      --⬛
      ⬛⬛
      :)

  • @sanderbos4243
    @sanderbos4243 4 роки тому +36

    Happy to see you make another video on this game!
    (3:35) Why do you need to store the max local position of each block in a 32x32x32 subchunk as '32', while 0-31 is already a range of 32 blocks? Then you could also go from using 6 bits to 5 bits, as 2^5 = 32. :)

    • @r3d244
      @r3d244 4 роки тому +41

      A chunk is 32 blocks wide, but it is 33 vertices wide.
      Picture a fence of posts | and segments --.
      There will always be one more post than there are segments, like so: |--|--|--|--| (4 segments, 5 posts).
      Now replace segments with blocks, and posts with vertices.
      So therefore 32 blocks needs 33 vertices :)

  • @digitaljokerman
    @digitaljokerman 4 роки тому +7

    4:00 Minecraft still uses a texture atlas, however it's generated at runtime.

  • @Diriector_Doc
    @Diriector_Doc 4 роки тому +11

    When you showed terrain.png at 0:46 it gave me so much nostalgia

    • @ThePC007
      @ThePC007 5 місяців тому

      Not just any terrain.png, but the one from the Painterly Pack. :)

  • @amyshaw893
    @amyshaw893 4 роки тому +4

    Minecraft still uses a texture atlas, it just assembles it at runtime. If you look at the console as the game is starting up, it says some stuff about texture atlases, and it even saves it to disk. I found it while playing modded at one point, and found some very strange things from some mods

  • @kyoai
    @kyoai 4 роки тому +48

    5:50 : Why make it complicated with division? Just have a 6-entries lookup table for desired lighting values (or normal vectors in the 6 directions, incase you'll ever need them) in the shader. Perhaps such a lookup table instead of division might even improve performance, albeit very slightly.

    • @gNpNct
      @gNpNct 4 роки тому +8

      A compiler that's intelligent enough will optimize it into a single division (1/5) and multiply by that reciprocal anyway.

    • @oblivion_2852
      @oblivion_2852 4 роки тому +2

      @@gNpNct Yes but it's still a multiplication operation instead of a lookup. Lookups are faster pretty sure.

    • @gNpNct
      @gNpNct 4 роки тому +11

      @@oblivion_2852 Multiplication operations are pretty fast. When it comes to arithmetical operations, the slow one is usually just division.

    • @krubbles101
      @krubbles101 4 роки тому +8

      @@oblivion_2852 Lookups are way, way, way slower. On a GPU, multiplication, division, addition, multiply-add, subtraction, inverse square roots, exp2, sin, and cos are all one clock cycle. (this does not apply for integers, only floats). A lookup may be implmented with a texture read, which is pretty much the only thing that matters for shader performance. Never use lookup textures in a GPU to replace mathematical operations.

    • @krubbles101
      @krubbles101 4 роки тому +2

      ​@@gNpNct Both multiplication and division are incredibly fast on a GPU. The division is sometimes 2 clock cycles (one reciprocal and one add) and sometimes 1 clock cycle (1 divide), but either way it is very fast.

  • @FPSedin
    @FPSedin 4 роки тому

    I did a voxel world some month ago, and I ran into that VRAM problem. I'm surprised I didn't thought of declaring the textures inside the shader, this is so simple yet so effective.

  • @xinus2286
    @xinus2286 4 роки тому +10

    That model in the intro made every single bit of my 3D artist soul hurt.

  • @leZigoute
    @leZigoute 4 роки тому +2

    Oh dude! Why did I not think of this!? I am going to apply this to my project
    (I also stumbled accross that unreadable article about Greedy Meshing)

  • @idolmike6779
    @idolmike6779 4 роки тому +5

    Great video! As a beginning game developer myself, this is incredibly inspiring stuff! Thanks for making videos!

    • @manifestbruhlol
      @manifestbruhlol 2 роки тому

      How's that going now?

    • @idolmike6779
      @idolmike6779 2 роки тому +1

      @@manifestbruhlol It's going. Kinda taken a back seat recently due to a bunch of life stuff, but it's going :)

  • @williankoessler5935
    @williankoessler5935 3 роки тому +7

    a great improvement would be to use a geometry shader, and just pass a 6bit integer telling wich faces to draw..
    you would reduce the whole 36 vertices to a single vertex :)

    • @MagoLP
      @MagoLP 2 роки тому +2

      The performance of that is terrible. Lots of branching, which is bad on the GPU.

  • @Area_GnC
    @Area_GnC 10 місяців тому +1

    I am thinking of something like this:
    Define a 3D array of "Blocks".
    Each block can have an byte for it's Type. The coordinates don't need to be saved as we already have them when we index into the array. So, for the storing the blocks themselves it will only take 1 byte, and when you want to expand, you can just change the data type from "byte" to "short". You will still be using less than 4 bytes.
    Now, here's an explanation for how you can use the index for the coordinates. the x, y, and z index will denote where the center of the block is, simple as that.

  • @TheRoboticLlama
    @TheRoboticLlama 4 роки тому

    man, I watched your "build minecraft in 1 week challenge" a year ago and was inspired to build a minecraft clone myself and when I got to meshing I had to make my own algorithm. But 6 months later I see this video in recommended and clicked on it because it reminded me of programming my game and watching that old video and WOAH turns out you're the same guy who made it.

  • @iLiokardo
    @iLiokardo 4 роки тому

    0:21 Donkey Kong Country 2 - David Wise - Stickerbrush Symphony
    1:36 Donkey Kong Country 2 - David Wise - Aquatic Ambience
    oh thank you for putting music in description

  • @SWinxyTheCat
    @SWinxyTheCat 4 роки тому +9

    Been trying to figure out the greedy meshing algorithm too, but sadly I too do not understand anything lol

  • @frostreaper1607
    @frostreaper1607 4 роки тому

    that opening threw me right back into the one and only time I worked in a studio.
    The lead was allergic to triangles, but I was modeling something for their Unreal Engine VR movie thing ...
    I didn't end up being hired. Fun job but people in this industry can be mindless frustrating.

    • @Hopsonn
      @Hopsonn  4 роки тому +2

      Allergic to triangles? Sounds like you dodged a bullet regardless

  • @parttoon8305
    @parttoon8305 4 роки тому +1

    I just knew I heard Brambles from Donkey Kong Country 2 in the background.

  • @otrocanalmas8096
    @otrocanalmas8096 2 роки тому

    Nice video ... And even more beautiful you are using The Chrono trigger theme here 5:07

  • @isaigm
    @isaigm 4 роки тому +3

    The SONG in the background

    • @Biggy691
      @Biggy691 4 роки тому

      'Home sweet home' :Beyond Good and evil , it's an old PlayStation 2 game. Love it 😍

  • @ThePC007
    @ThePC007 3 роки тому +2

    0:50 Good old Painterly Pack.

  • @ragnarok7976
    @ragnarok7976 3 роки тому

    Convex refers to the angle formed at the vertices. A convex shape can inhabit multiple planes so long as none of it's internal angles are greater than 180 degrees. Overall you are correct, a triangle can only exist in one plane but this is because a plane needs three points to be defined and obviously that's all a single triangle has. I believe "plane figure" would be a better choice of words there.

  • @saadamin6951
    @saadamin6951 4 роки тому +1

    If I'm not mistaken, on OpenGL 3.1+ you can use glDrawArraysInstanced. You do not need to use 64 byte transformation matrices, and can use 12 byte 3D vectors because you only need to translate the block from model space to world space.

  • @oakzpix5975
    @oakzpix5975 4 роки тому +1

    Thanks this video helped a lot mainly so I can understand my codes and even figure out more

  • @Enter_channel_name
    @Enter_channel_name Рік тому

    Another thing I do is store them in quads and then use indices in the shader to convert quads to triangles, making there be only 4 vertices per block face instead of 6. I also store the 'per vertex' data separately from the 'per block face' data.

  • @nythepegasus
    @nythepegasus 4 роки тому +1

    That music choice from the end of the internet.. Good choice, and great video!

  • @zsevenzgamer2303
    @zsevenzgamer2303 4 роки тому

    Aaah the nostalgia hit when I heard Beyond Good and Evil music

  • @eocron
    @eocron 2 роки тому

    Just use bitmaps. 32*32*32 with visibility directions + type + light + color will usually take around 50-200 bytes. For filled chunks such as air it will just take couple of bits. You also get greedy meshing along x axis with this approach AND greedy blocks (you pass through visible blocks/bits, skipping all empty block iterations). You can also just render entire FoV 10*10*10 chunks by recombining bitmaps, optimize it, then calculate greedy mesh for entire FoV.

  • @ajnart_
    @ajnart_ 3 роки тому

    You could store your whole structure into a single unsigned long and a float by using bit shifting
    Or just simply for the (x,y,z) those could be inside one int (1,32,16,08) (you need a 1 at the start if x < 10)

  • @user-account-not-found
    @user-account-not-found 2 роки тому

    I knew this would be first attempt at secret sauce on this. Thinking further about it that paper you highlighted is going to do this same thing algorithmically and shortcut something as this will be the middle or lower middle ground for what needs to be truely optimized. The thing is that if you are going to use bytes there are a set of secrets of just using things representationally and mapping in the code these bytes to another set of values much like base 10 or base 8 - the bits can be representational of an infinite number of values when mapped in different contexts. Going to go smoke some weed and think more on this.

  • @c64cosmin
    @c64cosmin 3 роки тому

    Thank you for making this kind of video, it puts my mind to rest a bit, while it would be fun to implement a voxel game, there already are plenty. The exercise to implement the renderer would be fun, probably one day I will give in and do it, but until now, it is nice to reiterate the steps while watching you, good video and thank you!

  • @intellectualpotato
    @intellectualpotato 4 роки тому

    i loved that you showed a screenshot of the valve hammer editor

  • @nextProgram
    @nextProgram 4 роки тому +1

    Great video as always. You're a good source of inspiration!

  • @amelted4827
    @amelted4827 4 роки тому +16

    On the git it says you decided that this project is not for you, does this mean this series will be discontinued?

  • @oscill8ocelot
    @oscill8ocelot 4 роки тому +3

    Come for the programming, stay for the sweet sweet chrono trigger music. :3

  • @4g3v
    @4g3v 4 роки тому

    Cave Story and Beyond Good and Evil music? Man you have some great taste. Great video as always :)

  • @NanoEken
    @NanoEken 4 роки тому

    Oh and you could also just store 2 bits (instead of 3) for the lighting, since you only have 4 values. That would give you values from 0-3. Adding 2 to that gives you values from 2-5 which you can then divide by

  • @antontheyeeter
    @antontheyeeter 3 роки тому

    The cave story soundtrack at the beginning❤️❤️❤️

  • @richardbiely
    @richardbiely 4 роки тому +1

    There’s actually another thing you missed. If your chunk size is 32, your relative block offset can only be 0..31, not 0..32. That means you’re okay with just 5 bits per side instead of 6.

    • @LeeSpork
      @LeeSpork 4 роки тому +2

      Yes, but it's talking about vertices - the edges of the blocks - and not the blocks themselves, therefore the lowest one is at 0, and the highest one is at 32

  • @Viktoria_Selene
    @Viktoria_Selene 4 роки тому +4

    i was too distracted by the music to pay attention

    • @ello-olle
      @ello-olle 4 роки тому +1

      Nice profile pic

  • @DubstepCoder
    @DubstepCoder 2 роки тому +1

    You don't need to pass in 2 bits for the UV lookup, just use gl_VertexID % 6 with a 6 row lookup table

  • @somdudewillson
    @somdudewillson 4 роки тому +4

    5:40 But... you have exactly 4 options. That fits neatly into 2 bits. Why would you use 3?

    • @Hopsonn
      @Hopsonn  4 роки тому +4

      Because I was silly and didn't realise that until I was making the video haha

  • @LukeSchoen
    @LukeSchoen 4 роки тому

    wow just 4 bytes! that is actually super convenient and super impressive! awesome, and subd

  • @waltwhitman7545
    @waltwhitman7545 3 роки тому

    saw the 2017 one week minecraft vid and now I'm trying to decide how to catch up

  • @MinibossMakaque
    @MinibossMakaque 4 роки тому

    0:15 Wanted to point out a mistake here. All triangles are convex. in simple terms this means that if you wrap a string or rubber band around it you'll never have points that poke inward away from the band.
    Triangles are also coplanar, for which the definition in the video is given as the definition of 'convex'.

    • @Hopsonn
      @Hopsonn  4 роки тому

      Not sure what coplanar means but it's probably out the scope of what the point of this video is, but I'll look into that regardless

  • @adriandeveraaa
    @adriandeveraaa 4 роки тому

    Ah the Aquatic Ambiance from Donky Kong Country. I see you are a man of culture as well (:
    Great vid, just subbed!

  • @technolapin
    @technolapin 4 роки тому

    There's several big improvements to do.
    The first one would be to only use 4 vertex per face, using vertex index.
    The second would be (and here I'm being more hypothetical), to only use 1 vertex per block, since all the relevant data of a single voxel can be contained in a single vertex, and the the whole block can be constructed in the geometry shader or somethig

    • @Hopsonn
      @Hopsonn  4 роки тому +2

      Using an index buffer as you suggest would actually increase the memory usage.
      My method 6 vertices *4 bytes each =24 bytes per face
      Index buffer 4 vertices * 4 bytes each + 6 indices * 4 bytes each = 40 bytes
      As for the geometry shader, I could but I never learned how use those lol

  • @EPIK95
    @EPIK95 4 роки тому

    I've never watched your videos before but I approve of your choice of music

  • @peerhenry
    @peerhenry 3 роки тому

    Instead of lighting value, I would use a normal index which maps to one of six possible normal vectors in de shaders that you can then use for any light sources. Since you only need to worry about 6 possible normals, 3 bits will still suffice.

  • @__builtin_popcount
    @__builtin_popcount 4 роки тому

    I have considered this approach in my little MC-like game, but using integers for the coordinates meant that block models with fractional coordinates are not supported: things like half-slabs, glass panes, the brewing stand. To support those, a fixed-point number could be used, but I wasn't sure how to design such a structure. I didn't want to pick the number of bits for the fractional part, e.g. 4 bits for a resolution of 0.0625 blocks, only to later on find out that I want to implement a block that needs a greater resolution for its model.
    Now that I think about it, it's not such a big deal. Changing the number of bits for the fractional part could be as easy as just changing a constant in the CPU program and vertex shader with no changes to code, but at the time I was kinda scared to make a decision.

  • @ecoista1373
    @ecoista1373 4 роки тому

    It's important to note that these optimizations are only possible because you're leaving definition behind, not that it's bad, but because those are the compromises you're willing to make

  • @McHorsesCreations
    @McHorsesCreations 3 роки тому

    That’s a pretty cool video and a tutorial, however that would work only for games that use purely voxels, I.e. it wouldn’t be possible to pack such data in case you would want to introduce different models per block.
    I still found it very informative, thanks!

  • @ahuman32478
    @ahuman32478 2 роки тому

    6:24 28 bytes is 224 bits. Informative video, though, will use it when I become good enough at coding

  • @GoWokeGoBroke1
    @GoWokeGoBroke1 4 роки тому +2

    You deserve my like for your awesome work you are doing but this time my like goes for using Chrono trigger music :D

  • @WangleLine
    @WangleLine 4 роки тому

    These videos are so nice to watch!

  • @Satoshinork
    @Satoshinork 4 роки тому +1

    Put subtitles in Portuguese, I'm from Brazil and I love your channel

  • @oancemr
    @oancemr 3 роки тому +1

    Any updates on this project? Love seeing this code optimization type videos. A suggestion on the lighting though, make it 1 byte so you have all possible light intensities (0-255). Its going to make the light decay from torches or other light sources look much better

  • @GyroCoder
    @GyroCoder 4 роки тому

    Voxel engine development, cute lizard avatar? This is microtargeted at me somehow. Subscribed.

  • @AlFredo-sx2yy
    @AlFredo-sx2yy 3 роки тому

    the music you chose in this video made me feel like i was gonna see some checkpoint comments :v

    • @Hopsonn
      @Hopsonn  3 роки тому

      Gimmie the time stamp and I'll tell you the music
      Is all in description anayway

    • @AlFredo-sx2yy
      @AlFredo-sx2yy 3 роки тому +1

      @@Hopsonn no, you didnt understand what i meant, i know the music in this video, its just that all of the tracks have been posted in videos where people do a think in the comment section called a "checkpoint"
      example1: at 0:23 starts the track in this vid
      ua-cam.com/video/hHKu9W_m0nc/v-deo.html
      example2: at 6:05 ua-cam.com/video/Q9XTqQbuavI/v-deo.html
      it was just a comment in case someone else recognised the songs because of the checkpoint vids, but i guess its not as known as i thought :v

  • @duclong95
    @duclong95 4 роки тому

    3:40 I don't know if you made a mistake, but 32 binary values can fit within 5 bits, from 0 (00000) to 31 (11111). So we only need 15 bits to store position information.

    • @Hopsonn
      @Hopsonn  4 роки тому +2

      There are 33 possible vertex positions from 0 to 32
      Imagine chunks are 2x2, then the top verticies would be like this
      ._._.
      Where the dots represents vertex, the positions go from 0 to 2, giving 3 possible vertex positions in a given axis

  • @user-vx1wt4hb5l
    @user-vx1wt4hb5l 4 роки тому

    Just use a volume texture and have a bit for each voxel on the rendering side, and then maybe a byte for material. Just calculate everything else on the fly.

  • @jbritain
    @jbritain 4 роки тому +1

    Finally this series is back!

  • @RenderDragon
    @RenderDragon 4 місяці тому

    Music from BG&E... Thank you :D

  • @ascaniolamp
    @ascaniolamp 4 роки тому

    When I heard CaveStory music at the start I almost fainted

  • @nottheresenpaii
    @nottheresenpaii 4 роки тому

    Yaaaay i been waiting for another of these. Inspiration!!

  • @wessmall7957
    @wessmall7957 4 роки тому

    Would be cool to see some benchmarks for how many triangles you can draw at 60 fps using both methods.

  • @VegetableJuiceFTW
    @VegetableJuiceFTW 4 роки тому

    ahh, good memories,
    wrote my bachelor thesis about a better greedy meshing implementation,
    abusing the fact that faces can overlap other same texture faces and span over occluded space.
    tho, with a new method, I have also proven that you can trade memory and face count, yielding at max 96 face checkerboard chunk of 32x32x32 blocks. in this usecase gpu mem might be cheaper than flops.

  • @clxxdz6052
    @clxxdz6052 4 роки тому +1

    2:36 WHAT IS THIS BEAUTIFUL SONG

    • @Biggy691
      @Biggy691 4 роки тому +1

      'Home sweet home' :Beyond Good and evil , it's an old PlayStation 2 game. Love it 😍

    • @clxxdz6052
      @clxxdz6052 4 роки тому +1

      @@Biggy691 thank youuuu

  • @ZERR0R
    @ZERR0R Рік тому

    I guess people have already told you this, but...
    1) If you only have 4 values for lighting, why 3 bits? Use 2. 2 bits give you 4 combinations, exactly what you need. Just shift your values by 2, and you have 0...3 instead of 2...5, which saves one more bit.
    2) Why floats? Your vowels are placed in a grid, so you can use integers instead of floats for XYZ. Same goes for texture coordinates. If you are not going to have a situation when the texture is part of one and part of another, why use floats? Go for integers and save more space.
    3) If you are looking for extreme optimizations, look into a geometry shader. It allows you to "unfold" vertexes into more vertexes. So, instead of providing 4 vertexes for each face, you only give it one that represents the whole face, and the geometry shader then "unfolds" the one input vertex into 4 output vertexes with math. And you can go even further. Why send each face to rendering if you can send whole blocks? You provide one vertex that represent the whole block to a geometry shader, and it "unfolds" it into 8 vertexes that are passed to other shaders and rendered.
    Using those, you can optimize your rendering even more.

  • @chris_burrows
    @chris_burrows 4 роки тому

    Surely you could build all the vertices in the geometry shader, only needing to store the voxel X,Y,Z pos and an index to it's texture.

  • @chibill_mc
    @chibill_mc 4 роки тому

    Also you could shave another bit off the lighting easily but seeing as it fits nicely into a 32 bit int I don't see a reason to. (You can store it as 0 to 3 and do number*0.2 + 0.2 to convert back.)

  • @ognjenpingvin
    @ognjenpingvin 4 роки тому

    I love your videos man, you inspire me

  • @ShrewdBear
    @ShrewdBear 3 роки тому

    you a real one for the DKC2 tracks

  • @LukeSchoen
    @LukeSchoen 4 роки тому

    this video is super awesome, thanks alot dude!

  • @glitchedjson4042
    @glitchedjson4042 3 роки тому

    definitely late to the party, but I just wanted to point out that you could have saved an additional bit on lighting. Instead of storing 2 through 5, you could subtract 2 from each and only store 0 through 3, which can be stored in just 2 bits instead of 3. Afterwards on the unpacking method you can just add the 2 you took previously to return it in the range of 2 to 5, and divide by 5 normally.
    Probably too late to even mention but I just wanted to contribute somewhat.

  • @Hulfish
    @Hulfish 3 роки тому +1

    That bg music is just awesome!!)
    Where is he?

    • @Hopsonn
      @Hopsonn  3 роки тому +1

      Cheers! All music is listed in the description

    • @Hulfish
      @Hulfish 3 роки тому +1

      No, guy, I mean, why ain't ya Makin new videos? I love programming, regardless to the fact that I m a little bit newbie...)

  • @3D-novagraphix
    @3D-novagraphix Рік тому

    It's really useful. Thank you!

  • @yoruvii4527
    @yoruvii4527 3 роки тому

    awww YES Thorn Thorn Tale Meiro - Super Donkey Kong 2

  • @cochaviz
    @cochaviz 4 роки тому

    Beyond Good and Evil is such a good game

  • @torinlike
    @torinlike 4 роки тому

    3:30 Minecraft chunk is actually a [32 x 32 x 256] blocks(voxels)

    • @Hopsonn
      @Hopsonn  4 роки тому +3

      I mean its actually 16x16x256, but this isn't Minecraft

  • @JP-ic5we
    @JP-ic5we 4 роки тому +1

    Hopson I really like your videos so I'm making this comment to stimulate the algorithm

  • @lorenzvo5284
    @lorenzvo5284 4 роки тому +1

    Could you stop triggering my childhood with beyond good and evil music

  • @jordanlapointe4690
    @jordanlapointe4690 2 роки тому

    I know that background music.... Cave Story!

  • @spacehooliganzack7429
    @spacehooliganzack7429 4 роки тому

    I spy with my little eye... music from Cave Story!

  • @chibill_mc
    @chibill_mc 4 роки тому

    Minecraft still internally uses an Atlas. It just builds it at run time and on ever resource pack change.

  • @longjohn7992
    @longjohn7992 4 роки тому +2

    Maaaaannn why not add the original Minecraft textures

    • @Hopsonn
      @Hopsonn  4 роки тому +1

      Not as fun lol, I know I'm not an artist but it just feels weird using minecraft textures

    • @longjohn7992
      @longjohn7992 Рік тому

      @@Hopsonnit was a compliment
      Bit of a weird one tho c:

    • @Hopsonn
      @Hopsonn  Рік тому

      @@longjohn7992 yooo feels like yesterday I replied to your original comment

  • @kromyth_old
    @kromyth_old 3 роки тому

    You like Donkey Kong Country 1,2 and Cave Story musics xD

  • @tux1468
    @tux1468 4 роки тому +1

    How about just rendering quadrilaterals, since a voxel world doesn't really have any triangles in it? That should bring down the memory usage a ton.

  • @Big_Con
    @Big_Con 4 роки тому +1

    Great video!

  • @murielberehulka4393
    @murielberehulka4393 3 роки тому +1

    like for the chrono trigger music

  • @dreaminginfraviolet
    @dreaminginfraviolet 4 роки тому

    What about vertex indexing? Usually you have a list of vertices, and a list of 16-bit unsigned integers to specify the sequence of how the vertices should be rendered. This means that vertices never have to be duplicated, helping a lot.

    • @Hopsonn
      @Hopsonn  4 роки тому +3

      While it might be possible to do this in a voxel game that uses polygon rendering, it's incredibly awkward due to the nature of how the mesh is generated.
      Usually you would add individual block faces to a mesh (a quad), and keep adding more quads. Issue is its hard to predict whether the next quad will be able to share vertices or not, without looking ahead of time. And by this point, algorithms such as greedy meshing give much better results, where rather than sharing verticies, you instead share entire faces, drastically reducing the triangle count, giving a huge boost in performance.
      And sharing the vertices in the block faces themselves would actually use more memory than doing it this way. (I would type out the numbers to prove this, but I am on mobile atm :p)
      Thanks for watching!

  • @gumbawu4135
    @gumbawu4135 4 роки тому

    a really fun video I enjoyed watching!

  • @fahdv2597
    @fahdv2597 4 роки тому

    That's actually insane, congratulations