I really enjoyed this blog style. The code stuff is cool but hearing your thought process and getting deeper into the concepts like this is far more valuable imo
This is absolutely great stuff! You're work resonates to me incredibly! I'm both inspired and humbled by this type of effort. To be working on so much independently is phenomenal!
> "maybe in a few years I can just raytrace" HOO WEEE BOY, God I know that one all too well. I did a similar thing. I was working in reinforcement learning and there were some key problems, so I thought "oh you know I'll go do some work in supervised learning, hopefully by then the problems are alleviated". So a year goes by and the field has improved somewhat, but now the mindset is shifted toward mega-compute. So I think to myself, "okay well ill go spend the time in pure mathematics, and hopefully by the time I get back things will be more stable ...".
This is a great vid, I'd love to see more general videos like this where you pick a topic and talk briefly about different implementations and their tradeoffs. It saves me a lot of research!
Nice ! - adding shadows really makes the scene look so much better. Your engine is coming along nicely - congrats. My skill set is very low in game engines so most of your stuff is way above my understanding but can see all the hard work you have put into it at least...making my first game currently using an old game engine on it's last legs I guess but not terrible either (CopperCube 6) as I originally didn't want to learn to code at all....funny how that never eventuated. I now do 99% of my game in Javascript now...erhummm...
Just came here to thank cherno for everything he is doing . His C++ series and OpenGL series is what I am currently learning. Once I start earning I will surely contribute to Cherno . I love your efforts Cherno. I am currently 21 and love programming. Once again thanks and love from Uttrakhand , India.
9:39 (ish)... I hope when you are copying open source code into your own (not open source) code you are complying with the license. A quick search on github I found both things that are ok (mit och apache 2 for example) but also many things that are not (no license)
TheCherno : Explains shadow that .. shadow these.. Meanwhile Me Who doesn't even knows how to print something on the console : hmm...I see so that's how it is..
Shadows are such a fun and frustrating topic. A few alternative/complimentary techniques to shadow maps are screen space shadows which can be combined with shadow maps to enhance small details and soft shadows using signed distance fields. SDF shadows are used by the unreal engine to shadow objects outside the shadow map range. An interesting enhancement for cascaded shadow maps is a tight fit to the depth buffer range. This can be achieved by creating hierarchical depth containing the depth min/max. The light matrices can then be calculated in a compute shader to keep everything on the GPU. I think the Order 1886 used this technique. Shadow map sampling also has a bit of varierty. Besides the traditional "blocky" PCF sampling a lot of people use per pixel rotated poisson disks. An alternative is to use a spiral pattern as those have less sample overlap when rotated. And of course going fully stochastic with a low sample count and cleaning up with TAA. Another interesting approach is using screen space directional occlusion to approximate short soft shadows. Although I believe this is mainly used to provide shadowing for lights that can't afford a shadow map. This was originally used in Cryengine 3 and more recently in the Demon's Souls Remake.
Really sleek! I'm not close to being a game engine developer, but implemented shadow mapping a few months ago nonetheless. It took me quite a while and the shadows look very rough and overall just not polished but it was really fun and it makes all the difference when you're looking at your scene during development and it has shadows vs everything's kinda flat ;)
About what you said in the beginning. I find working on code and pretty much any other creative work at the same time to be very hard. Let's say the brain is a workshop, once I've put out all the tools needed for coding, there's no space left for the tools needed by others type of jobs and I have to put all your code tools back in the cupboards before starting another job. Otherwise it's too messy to make sense of anything. But I know someone that doesn't seem to have this issue.
Great! I would like to ask if there is idea of adding reflection to C++, and what other main functions of reflection in game development besides serialization and development of engine editors. Thanks!
@@__jan that means we have to wait for 3 years at least...I.ve write an static reflection for cpp....But I don't know the specific usage requirements of reflection in game development to improve it.
@@ventusstrife6715 One use case that I use it for is scripting language binding. If you can bind member functions to a scripting language and create an API with that it'll drastically increase the flexibility of the engine. I did mine for Lua binding, and the method that I used was I defined functors to pull individual values off the stack, and called the member function with std::apply and an array of those functors. It's quite a bit more involved than member/data reflection, but it's well worth the investment.
For debugging things like cascades (and many other things in fact), you should have two types of cameras. 1) The game camera, that is what your rendering is based, all the frustrums, cascades, culling, LODs, etc. 2) Debug / editor camera, which allow you to actually move around, and see things from different viewpoints, without affecting any. If there are some shaders that take into account some view vectors, you might have additional option which camera to use.
Hi Cherno, How did you make this engine? I mean how did you start? You just made a file named hazel.cpp and started coding ? or you're using something like Qt Creator for the GUI?
I would say best solution for implementing some algorithm would be to mostly use the paper, and use some "random" code from github for reference if/when you you get stuck from the pure paper (which will happen). Haven't done this a lot for 3D graphics algorithms (yet), but it was my goto when doing more advanced AI algorithms in uni.
To me it looks like the shadows are only softened in one axis (towards the light) is that for performance reasons? The shadows look really good though. I think the next step would be to integrate some nice Ambient Occlusion/GI.
Are you also going to implement shadow maps/baked lighting? I imagine that as long as one doesn't do something as silly as dynamic time of day, this could be a giant win in performance and visuals. It would probably need to be ray traced with something like Radeon Rays or something. I imagine Cinema 3D would be cost and license prohibitive.
Idk if this already exists. But, they should make a method where it combines shadow mapping and ray tracing. So for complex parts of shadow use ray tracing and use shadow mapping for other parts.
Hey, very cool video. I was just curious about something as I tried to implement PCSS a little while back, and I would have issues where if one object was directly in front of another (like a pole in front of a wider pole) with the light facing them dead-on, the blocker search would give a value closer to the front pole's depth when sampling for points that are behind them both, and the resulting shadow would have a high-penumbra streak in the shadow of the pole in the back. So essentially there would be like an inverted shadow of the front thin pole behind the back wide pole. Tweaks to the numbers for blocker search size and everything could fix for very specific cases, but never for general cases. Did you ever encounter this issue, and if so how did you work around it? Do the cascades fix this issue, as I did not get around to implementing those before dropping for variable penumbra for the time being, in favor of another solution (currently using prefiltered EVSM and it looks really nice, but that contact-hardening is still so nice).
I like the style and length. maybe a bit too much talk in the beginning, I would have loved to see some of those other github projects you tried and what was wrong with them. Keep up the great work!
Hello cherno, i started play NFS No Limits game from 2018.i see your name "Yan Chernikov - Game Engine Team" in the credits.btw, that game has a really good graphics for android and ios game compare to grid 2 android port.
The first time I tried to implement shadowmaps into my custom DX12 game engine, I tried to store the back buffer render target into a variable and re use that variable every frame, not even considering the fact that double buffering will mean that my variable is the wrong texture view pointer on every other frame. This lead to DirectX throwing a fit with unreadable _com_error exceptions, and me spending an entire day hunting down the problem. Not a fun experience. These are the things that get game developers. Trying to do complex stuff is not the problem. It's making stupid mistakes while in the process of trying to do the complex stuff. Anyway, I'm still in the process of implementing my shadowmaps, and just dealing with the shadowmap "view projection" transform is tough enough. In my engine, each visible room can have its own shadowmap transform, and I have to combine them all together into an overhead view that projects onto a single depth texture, where closer rooms are rendered at a larger scale. So I have to implement some form of "uv packing", where each room acts as a separate island. Lots of respect for implementing this into a custom game engine. It takes some work.
I had idea 1: You approach half open door it is light, with young people: meaning the leaders talk behind doors high loud bouncing sound. 2: The dark: a half open door leading to the cellar, ok you go down there have to light a torch still walk down the at far se a room with light coming out sound like merry go around sound really scary should you go there or not?! If look at the two images (world leaders, contra the center of the earth) interesting imaginative image
i know nothing about game development but i just like this kind of stuff i do understand some of the stuff you're talking about but sometimes i go like what the heck is he talking about i don't know but it's interesting
Have any thoughts on clothing physics in Games? I know it's expensive and so most developers will use it as little as possible (like a Scarf or single item) but it's an area I always wanted to see used more. Graphics have come such a long way, however often character models just have a solid mesh on them with great texture work. Do you see that changing anytime soon?
There's plenty of secondary animation in new gen games, especially Demon's Souls, and trailers seem to show a lot more coming. It seems they were mostly held back by the weak CPUs in last gen consoles, so I think you'll get your wish.
You now have to do intros with the kitty every time.
for archival purposes. We need to get to see how fast she grows and leave that documented!
Yes she looks so cute
I really enjoyed this blog style. The code stuff is cool but hearing your thought process and getting deeper into the concepts like this is far more valuable imo
CS student here. My school doesn’t have any game-related courses, so you ARE my game/C++ prof. More videos? Yes please!
4:12 the funniest thing ever heard since long time
This is absolutely great stuff! You're work resonates to me incredibly! I'm both inspired and humbled by this type of effort. To be working on so much independently is phenomenal!
Отличное имя у кошки =)
А как ее зовут?)
Черт, начал смотреть вчера, а досмотрел сегодня, поэтому забыл, this is ОЛИВКА!
Он русскоговорящий? Нифига, не знал
I really love this devlog style! It's so valuable to hear your thoughts and process.
> "maybe in a few years I can just raytrace"
HOO WEEE BOY, God I know that one all too well. I did a similar thing. I was working in reinforcement learning and there were some key problems, so I thought "oh you know I'll go do some work in supervised learning, hopefully by then the problems are alleviated". So a year goes by and the field has improved somewhat, but now the mindset is shifted toward mega-compute. So I think to myself, "okay well ill go spend the time in pure mathematics, and hopefully by the time I get back things will be more stable ...".
Оливка - огонь имя! Пусть теперь Оливка будет писать код с нами!
@Saran Pranavv Olive - lit name. Let Olive write code with us now.
what language is this?
@@rishabg5583 russian++
@@bamberghh1691 kek
I really like this new style of going over your failed attempts. It helps in understanding your thought process! Keep it up, really nice video :)
This is a great vid, I'd love to see more general videos like this where you pick a topic and talk briefly about different implementations and their tradeoffs. It saves me a lot of research!
glad to see you back with the engine ! really enjoy all the devlog :D
Very nice and huge thanks for giving us a fantastic insight into what goes on behind the scenes of writing a game engine. Much respect, Sir.
next video:
olivka: hey guys my name is the cherno and welcome back to the hazel dev log
Starting a video with a cat is the best.
(когда услышал имя на русском немного офигел сначала)
Приветствую земляков ! )
аналогично, произнес хорошо просто)
@@F0RIS Ян Черников (имя Черно) вам о чем-то говорит?
I love working on my engine while watching you.. So relaxing lol
"Almost none of the samples you find, are scalable" ABSOLUTELY!
Love this type of content! Need more theory out there! Especially for shadow mapping, ive had a hard time with it...
4:26 "The Rabbit hole of Shadows" sounds like a creepy obscure novel.
Dude man you never give up!
Nice ! - adding shadows really makes the scene look so much better. Your engine is coming along nicely - congrats. My skill set is very low in game engines so most of your stuff is way above my understanding but can see all the hard work you have put into it at least...making my first game currently using an old game engine on it's last legs I guess but not terrible either (CopperCube 6) as I originally didn't want to learn to code at all....funny how that never eventuated. I now do 99% of my game in Javascript now...erhummm...
dude! You are my favourite youtuber! Just love watching theese in hope of some day I'll understand it all
Yes, yes. More of this please!
Wait, Cherno, just realized... This was russian accent at "Оливка"?)
Я в шоке)
P.S. Крутое имя у кошки)
Оливка. Я просто расплавился в улыбке
Just came here to thank cherno for everything he is doing . His C++ series and OpenGL series is what I am currently learning. Once I start earning I will surely contribute to Cherno .
I love your efforts Cherno.
I am currently 21 and love programming.
Once again thanks and love from Uttrakhand , India.
Well I am doing the same I am from maharashtra
@@Meyu-Sys What do you do ? College ?
@@rishikeshjoshi7786 I am in 7th standard
@@Meyu-Sys Great !
All the best bro..
Make sure you don't mess up your genius by getting in rat race of marks and grades in school.
@@rishikeshjoshi7786 I don't really care about marks to be honest nor do my parents
It looks amazing!! Congratulations!
I liked this devlog format very much!
9:39 (ish)... I hope when you are copying open source code into your own (not open source) code you are complying with the license. A quick search on github I found both things that are ok (mit och apache 2 for example) but also many things that are not (no license)
Accidental Swenglish :)
TheCherno : Explains shadow that .. shadow these..
Meanwhile Me Who doesn't even knows how to print something on the console :
hmm...I see so that's how it is..
Haha
Shadows are such a fun and frustrating topic.
A few alternative/complimentary techniques to shadow maps are screen space shadows which can be combined with shadow maps to enhance small details and soft shadows using signed distance fields. SDF shadows are used by the unreal engine to shadow objects outside the shadow map range.
An interesting enhancement for cascaded shadow maps is a tight fit to the depth buffer range. This can be achieved by creating hierarchical depth containing the depth min/max. The light matrices can then be calculated in a compute shader to keep everything on the GPU. I think the Order 1886 used this technique.
Shadow map sampling also has a bit of varierty. Besides the traditional "blocky" PCF sampling a lot of people use per pixel rotated poisson disks. An alternative is to use a spiral pattern as those have less sample overlap when rotated. And of course going fully stochastic with a low sample count and cleaning up with TAA.
Another interesting approach is using screen space directional occlusion to approximate short soft shadows. Although I believe this is mainly used to provide shadowing for lights that can't afford a shadow map. This was originally used in Cryengine 3 and more recently in the Demon's Souls Remake.
Looks really good love the devlogs
Great job on Hazel shadows, keep it up!
0:01 Ahhh yes the programmer cat has come!
We will all be saved now!!
Hail the programmer cat!!
Your content was already great.. With the cute kitten you just won the internet 😻
6:06 Yes! Yes! Yes!
Really sleek! I'm not close to being a game engine developer, but implemented shadow mapping a few months ago nonetheless. It took me quite a while and the shadows look very rough and overall just not polished but it was really fun and it makes all the difference when you're looking at your scene during development and it has shadows vs everything's kinda flat ;)
Оливкаа!
your scene and ui looks great
I love this style of videos
"i should have just done what i was supposed to do.."
haha, that s me, thoughts about my life, where it s going, every time.
Bruh, wtf you're making a game engine and all anyone in the comments cares about is the cat.
We care about Hazel, we're just used to him making it by now. Hazel is amazing, but a cute cat always wins on the internet.
Game engines are temporary
Cats are eternal
Welcome to the Internet where Cats rule.
About what you said in the beginning. I find working on code and pretty much any other creative work at the same time to be very hard.
Let's say the brain is a workshop, once I've put out all the tools needed for coding, there's no space left for the tools needed by others type of jobs and I have to put all your code tools back in the cupboards before starting another job. Otherwise it's too messy to make sense of anything.
But I know someone that doesn't seem to have this issue.
love the dev logs ngl.
Great video! Cute kitty
I really enjoy these more rambling videos.
Great! I would like to ask if there is idea of adding reflection to C++, and what other main functions of reflection in game development besides serialization and development of engine editors. Thanks!
Static reflection may come in c++23 or c++26
@@__jan that means we have to wait for 3 years at least...I.ve write an static reflection for cpp....But I don't know the specific usage requirements of reflection in game development to improve it.
@@ventusstrife6715 One use case that I use it for is scripting language binding. If you can bind member functions to a scripting language and create an API with that it'll drastically increase the flexibility of the engine.
I did mine for Lua binding, and the method that I used was I defined functors to pull individual values off the stack, and called the member function with std::apply and an array of those functors.
It's quite a bit more involved than member/data reflection, but it's well worth the investment.
Best intro, hello Cherno, continue the Data Structures !
Hey Cherno, as someone interested in getting into audio programming, I’m wondering to what extent will Hazel have an audio engine?
Next time, we're doing Sprint Retrospective live :D
Woah that editor looks really good
Would love to see a video on how depth of field works
Congrats on the kitteh - thanks for adopting :)
For debugging things like cascades (and many other things in fact), you should have two types of cameras. 1) The game camera, that is what your rendering is based, all the frustrums, cascades, culling, LODs, etc. 2) Debug / editor camera, which allow you to actually move around, and see things from different viewpoints, without affecting any. If there are some shaders that take into account some view vectors, you might have additional option which camera to use.
Or just use RenderDoc.
nice cat! ahh shadows i mean... and really good video as allways! smooth :)
The kitten killed me, thanks
The next obvious step, of course, is to teach your cat how to code in c++
Hi Cherno, How did you make this engine? I mean how did you start? You just made a file named hazel.cpp and started coding ? or you're using something like Qt Creator for the GUI?
I would say best solution for implementing some algorithm would be to mostly use the paper, and use some "random" code from github for reference if/when you you get stuck from the pure paper (which will happen). Haven't done this a lot for 3D graphics algorithms (yet), but it was my goto when doing more advanced AI algorithms in uni.
He's back with a brand new cat!
It would be nice to have other videos where you explain (conceptually) the algorithms for soft shadows or depth of field or what not.
Nice talk man! Beautiful kitten :3
OMG THAT CAT IS SO CUTE
Love your videos 😻
To me it looks like the shadows are only softened in one axis (towards the light) is that for performance reasons?
The shadows look really good though. I think the next step would be to integrate some nice Ambient Occlusion/GI.
Are you also going to implement shadow maps/baked lighting? I imagine that as long as one doesn't do something as silly as dynamic time of day, this could be a giant win in performance and visuals. It would probably need to be ray traced with something like Radeon Rays or something. I imagine Cinema 3D would be cost and license prohibitive.
doing with hazel and my life
lol
I've been thinking a lot about the last part too
This is real time rendering for you. It a constant struggle to fake it until you make it. Make it here means a playing frame rate.
awsome work.
What do you want to archive versus what Unreal Engine 4 already does ? Technically/comercialy wise.
To some degrees, OMG this is better than UE4s lighting controls.
Are you on USA or ....? Where can I get the hazel game engine demo thingi?
I remember turning on PCSS in GTAV and Far Cry 4 really tanks the performance of gtx 970
Idk if this already exists. But, they should make a method where it combines shadow mapping and ray tracing. So for complex parts of shadow use ray tracing and use shadow mapping for other parts.
Hey, very cool video. I was just curious about something as I tried to implement PCSS a little while back, and I would have issues where if one object was directly in front of another (like a pole in front of a wider pole) with the light facing them dead-on, the blocker search would give a value closer to the front pole's depth when sampling for points that are behind them both, and the resulting shadow would have a high-penumbra streak in the shadow of the pole in the back. So essentially there would be like an inverted shadow of the front thin pole behind the back wide pole. Tweaks to the numbers for blocker search size and everything could fix for very specific cases, but never for general cases. Did you ever encounter this issue, and if so how did you work around it? Do the cascades fix this issue, as I did not get around to implementing those before dropping for variable penumbra for the time being, in favor of another solution (currently using prefiltered EVSM and it looks really nice, but that contact-hardening is still so nice).
I like the style and length. maybe a bit too much talk in the beginning, I would have loved to see some of those other github projects you tried and what was wrong with them. Keep up the great work!
Random question but where did you get your yellow duck water bottle from??
Putting a cat in the thumbnail to get more views.
Totally worked
Hello cherno, i started play NFS No Limits game from 2018.i see your name "Yan Chernikov - Game Engine Team" in the credits.btw, that game has a really good graphics for android and ios game compare to grid 2 android port.
I bet his cat is a hazel contributor
The first time I tried to implement shadowmaps into my custom DX12 game engine, I tried to store the back buffer render target into a variable and re use that variable every frame, not even considering the fact that double buffering will mean that my variable is the wrong texture view pointer on every other frame. This lead to DirectX throwing a fit with unreadable _com_error exceptions, and me spending an entire day hunting down the problem. Not a fun experience. These are the things that get game developers. Trying to do complex stuff is not the problem. It's making stupid mistakes while in the process of trying to do the complex stuff. Anyway, I'm still in the process of implementing my shadowmaps, and just dealing with the shadowmap "view projection" transform is tough enough. In my engine, each visible room can have its own shadowmap transform, and I have to combine them all together into an overhead view that projects onto a single depth texture, where closer rooms are rendered at a larger scale. So I have to implement some form of "uv packing", where each room acts as a separate island. Lots of respect for implementing this into a custom game engine. It takes some work.
The sky lighterally made a night and day difference (pun intended), but really it made the scene from quite ugly to amazing.
Shadows, finally!
kitteh!!! Channel just became 100% more interesting
I like this style.
well atleast youll have the option to static light or (when its better to do so raytrace)
hi! what did you user for UI? its c# WPF?
ok. now after reading the paper, i guess i can go to github and find Hazel
what kind of music is that? I like it, feels like I could write code hearing that
Where did you learned all the game development stuff can u share some resources from udemy , youtube , coursera etc.
I had idea 1: You approach half open door it is light, with young people: meaning the leaders talk behind doors high loud bouncing sound. 2: The dark: a half open door leading to the cellar, ok you go down there have to light a torch still walk down the at far se a room with light coming out sound like merry go around sound really scary should you go there or not?! If look at the two images (world leaders, contra the center of the earth) interesting imaginative image
Hi Cherno, do you think it would be possible to post your livestreams for those who can't join due to timezone differences?
What's the outro music?
i know nothing about game development but i just like this kind of stuff i do understand some of the stuff you're talking about but sometimes i go like what the heck is he talking about i don't know but it's interesting
what about physics?
don't knoe if I missed, but the shadow map is applied to the texture of the object?
Have any thoughts on clothing physics in Games? I know it's expensive and so most developers will use it as little as possible (like a Scarf or single item) but it's an area I always wanted to see used more. Graphics have come such a long way, however often character models just have a solid mesh on them with great texture work. Do you see that changing anytime soon?
There's plenty of secondary animation in new gen games, especially Demon's Souls, and trailers seem to show a lot more coming. It seems they were mostly held back by the weak CPUs in last gen consoles, so I think you'll get your wish.
Special Like for Оливка
What about Hazel With full Ray tracing shadow/Reflection in the future?
What's your thoughts on GPU lightmass?