Voxel Game Mesh Optimizations

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

КОМЕНТАРІ • 417

  • @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 роки тому +538

    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 роки тому +20

    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 :)

  • @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

      --⬛
      ⬛⬛
      :)

  • @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.

  • @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 :)

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

    What's the universe made of?
    Triangles and stuff

  • @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 :)

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

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

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

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

  • @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

  • @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)

  • @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.

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

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

  • @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.

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

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

  • @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.

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

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

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

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

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

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

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

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

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

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

  • @Area_GnC
    @Area_GnC 11 місяців тому +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.

  • @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

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

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

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

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

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

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

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

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

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

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

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

    Finally this series is back!

  • @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?

  • @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!

  • @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.

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

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

  • @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.

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

    0:50 Good old Painterly Pack.

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

    These videos are so nice to watch!

  • @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 😍

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

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

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

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

  • @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

  • @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.

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

    That's actually insane, congratulations

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

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

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

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

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

    this video is super awesome, thanks alot dude!

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

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

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

    you a real one for the DKC2 tracks

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

    I love your videos man, you inspire me

  • @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.

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

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

  • @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

  • @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

  • @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)

  • @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

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

    a really fun video I enjoyed watching!

  • @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.

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

    It's really useful. Thank you!

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

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

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

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

  • @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.

  • @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

  • @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

  • @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

  • @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

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

    Great video!

  • @IntrinsicGameStudio
    @IntrinsicGameStudio 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

  • @__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.

  • @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!

  • @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

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

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

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

    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.

  • @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

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

    like for the chrono trigger music

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

    awww YES Thorn Thorn Tale Meiro - Super Donkey Kong 2

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

    Nice cave story music!

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

    At 1:48, what r the 3 floats for texture and 1 for lighting? Wouldn't texture just be 2 floats (a uv coord) ?and wouldn't there 3 floats for the normal per vertex?

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

      The 3 floats were the uv coords and the index of the texture array, (opengl texture array)
      The one float for lighting was a number for the direction the block was facing
      This isn't traditional lighting that uses a light source and a normal, but rather just very very simple lighting that changes how bright the block face
      Eg the top of the blocks had a value of 1 and the bottom had the value of 0.4
      So when this number is multipled by the value of the texture, it makes the top of the block full light and the bottom of the block a lot darker

  • @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

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

    Wtf am I watching at 5 am. Nice video also

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

    *donkus kong music intensifies*

  • @LetMePickAUsernameAAAAAAAA
    @LetMePickAUsernameAAAAAAAA 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

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

    5:39 that's 4 different values so why 3 bits and not 2?

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

      He's not doing a lookup of an array, the 3 bits comes from the maximum value of 5 in this case

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

      @@paavorotsten508 Doesn't matter, subtract two and it falls under that range.

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

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

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

    0:00 Illuminati

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

    Beyond Good and Evil is such a good game

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

    Awesome video. I subed

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

    YOU'RE BACK!!!

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

    When I heard CaveStory music at the start I almost fainted

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

    Question about your magic number unpacking: In OpenGL, do you define the size of each vertex attribute (is that the name?) in bits? Couldn't you just define the size on that to have OpenGL unpack the values for you? Or does a problem happen with how C generally likes to align things on byte boundaries?

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

      You have to use an array of integers as your vertices and do bitwise operations in your shader program. This does require different vertex attributes.

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

    Hey Hopson, this question is really out of context and Im not really sure if it works like this cause Im new to this but does the uv coordinate system loop through every texture, if so is there a way to have to where you only have it loop through texture which would make sense for it to be there? For example, lets say your in the nether so it wouldn't make sense for the uv "loop" to go through every texture instead is it or can it be biome or chuck specific? Thanks!

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

      There is no loop.
      The uv coordinate is the same for every texture, and the only difference is the "layer" of the texture array, which is baked into the geometry when the chunk is created.
      Even when baking the texture ID into the chunk, it is done via a lookup table, and so no looping is required.

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

      @@Hopsonn bet ty bro

  • @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.

  • @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.

  • @crowiethecrow7735
    @crowiethecrow7735 Місяць тому

    I like this method a lot, however how would you implement other block models? Like slabs, stairs, etc.

    • @Hopsonn
      @Hopsonn  Місяць тому +1

      @@crowiethecrow7735 thanks! It's not ideal but the only way I can think is they could go into a separate mesh and rendered separately

    • @crowiethecrow7735
      @crowiethecrow7735 Місяць тому

      @@Hopsonn Yea, good idea. Also pretty quick reply for a 4 year old video. Appreciate it!👍

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

    Hey do you have any plans to add entities (monsters, animals, minecarts etc) and their interactions (hitting/opening/rising etc)? I think a lot of voxel game tutorials stop before this point

    • @Hopsonn
      @Hopsonn  11 місяців тому

      Probably not for this project :(
      This was archived a long long time ago now

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

    Aren't bitwise operations really slow on the GPU? Is the memory saved worth that?

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

    Where did you learn OpenGL? I want to start learning it to make games but I can't find good sources to learn it. Any ideas on where I could learn it?

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

      Learnopengl.com

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

    Thanks for the video , i have a question a chunk is equal to a arena block memory ?

  • @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.

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

    Hey, how much of this project was inspired/driven by Sean Barrett's "open block building game"? I just saw an ancient comment of yours on one of his even more ancient streams of him working on his own minecraft clone from scratch.

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

      Just the optimisation in this video really

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

    yeah absolutely understood