You now have to do intros with the kitty every time.
@justVontadeh4 жыл бұрын
for archival purposes. We need to get to see how fast she grows and leave that documented!
@benu53654 жыл бұрын
Yes she looks so cute
@Rallion14 жыл бұрын
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
@timbenton4504 жыл бұрын
CS student here. My school doesn’t have any game-related courses, so you ARE my game/C++ prof. More videos? Yes please!
@Red-di7zb4 жыл бұрын
Отличное имя у кошки =)
@kovesik4 жыл бұрын
А как ее зовут?)
@kovesik4 жыл бұрын
Черт, начал смотреть вчера, а досмотрел сегодня, поэтому забыл, this is ОЛИВКА!
@cunningfox1464 жыл бұрын
Он русскоговорящий? Нифига, не знал
@alexanderhuliakov60124 жыл бұрын
Starting a video with a cat is the best. (когда услышал имя на русском немного офигел сначала)
@woobie56494 жыл бұрын
Приветствую земляков ! )
@F0RIS4 жыл бұрын
аналогично, произнес хорошо просто)
@Kitulous4 жыл бұрын
@@F0RIS Ян Черников (имя Черно) вам о чем-то говорит?
@UncoveredTruths4 жыл бұрын
> "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 ...".
@tttopcattt4 жыл бұрын
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!
@ilyachistyakov474 жыл бұрын
Оливка - огонь имя! Пусть теперь Оливка будет писать код с нами!
@Cd5ssmffan4 жыл бұрын
@Saran Pranavv Olive - lit name. Let Olive write code with us now.
@rishabg55834 жыл бұрын
what language is this?
@bamberghh16914 жыл бұрын
@@rishabg5583 russian++
@ste15163 жыл бұрын
@@bamberghh1691 kek
@cjvink4 жыл бұрын
I really love this devlog style! It's so valuable to hear your thoughts and process.
@mneher974 жыл бұрын
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 :)
@abdelhaksaouli88022 жыл бұрын
4:12 the funniest thing ever heard since long time
@mastershooter644 жыл бұрын
next video: olivka: hey guys my name is the cherno and welcome back to the hazel dev log
@sasuke29104 жыл бұрын
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!
4 жыл бұрын
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.
@jodyruben40974 жыл бұрын
glad to see you back with the engine ! really enjoy all the devlog :D
@Mr-ut7nj4 жыл бұрын
"Almost none of the samples you find, are scalable" ABSOLUTELY!
@thehambone14544 жыл бұрын
Love this type of content! Need more theory out there! Especially for shadow mapping, ive had a hard time with it...
@aviationbutterr4 жыл бұрын
I love working on my engine while watching you.. So relaxing lol
@goodideas56594 жыл бұрын
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...
@rishikeshjoshi77864 жыл бұрын
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.
@Meyu-Sys4 жыл бұрын
Well I am doing the same I am from maharashtra
@rishikeshjoshi77864 жыл бұрын
@@Meyu-Sys What do you do ? College ?
@Meyu-Sys4 жыл бұрын
@@rishikeshjoshi7786 I am in 7th standard
@rishikeshjoshi77864 жыл бұрын
@@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.
@Meyu-Sys4 жыл бұрын
@@rishikeshjoshi7786 I don't really care about marks to be honest nor do my parents
@Domarius643 жыл бұрын
4:26 "The Rabbit hole of Shadows" sounds like a creepy obscure novel.
@kariakistephen5083 жыл бұрын
Dude man you never give up!
@bastelwastel85514 жыл бұрын
Your content was already great.. With the cute kitten you just won the internet 😻
@alexo.o4184 жыл бұрын
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.
@richardtoth72404 жыл бұрын
dude! You are my favourite youtuber! Just love watching theese in hope of some day I'll understand it all
@pronova1594 жыл бұрын
Yes, yes. More of this please!
@zephyrox24 жыл бұрын
I liked this devlog format very much!
@TheIgoorR3 жыл бұрын
Wait, Cherno, just realized... This was russian accent at "Оливка"?) Я в шоке) P.S. Крутое имя у кошки)
@unn0wn2243 жыл бұрын
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..
@sohankaushik77 күн бұрын
Haha
@Tetsujinfr4 жыл бұрын
Great job on Hazel shadows, keep it up!
@mohammednihad67554 жыл бұрын
I love this style of videos
@Mystixor4 жыл бұрын
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 ;)
@geraltt14554 жыл бұрын
your scene and ui looks great
@LogicEu4 жыл бұрын
It looks amazing!! Congratulations!
@flobuilds4 жыл бұрын
Looks really good love the devlogs
@amekgomo45784 жыл бұрын
love the dev logs ngl.
@amaanmahammad22964 жыл бұрын
Great video! Cute kitty
@VlaDexa_MAX4 жыл бұрын
Оливка. Я просто расплавился в улыбке
@AlexGolunga4 жыл бұрын
Hey Cherno, as someone interested in getting into audio programming, I’m wondering to what extent will Hazel have an audio engine?
@Lurieh4 жыл бұрын
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.
@microgamestation4 жыл бұрын
I really enjoy these more rambling videos.
@BlenderhilfeDe4 жыл бұрын
nice cat! ahh shadows i mean... and really good video as allways! smooth :)
@Illuxel3 жыл бұрын
Оливкаа!
@LioncatDevStudio4 жыл бұрын
0:01 Ahhh yes the programmer cat has come! We will all be saved now!! Hail the programmer cat!!
@madeso4 жыл бұрын
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)
@theRPGmaster2 жыл бұрын
Accidental Swenglish :)
@luandkg4 жыл бұрын
Best intro, hello Cherno, continue the Data Structures !
@elliotfriesen68204 жыл бұрын
Woah that editor looks really good
@movax20h4 жыл бұрын
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.
@meanmole32124 жыл бұрын
Or just use RenderDoc.
@calecacciatore54224 жыл бұрын
"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.
@nikolaiarsenov15954 жыл бұрын
Nice talk man! Beautiful kitten :3
@Imaltont4 жыл бұрын
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.
@maxemore4 жыл бұрын
The next obvious step, of course, is to teach your cat how to code in c++
@aryanparekh93144 жыл бұрын
Love your videos 😻
@coolumar3354 жыл бұрын
Congrats on the kitteh - thanks for adopting :)
@elirannissani9144 жыл бұрын
6:06 Yes! Yes! Yes!
@PedroOliveira-sl6nw4 жыл бұрын
Next time, we're doing Sprint Retrospective live :D
@jspt2563 ай бұрын
Would love to see a video on how depth of field works
@zzocker77_hd263 жыл бұрын
awsome work.
@jacasch31644 жыл бұрын
It would be nice to have other videos where you explain (conceptually) the algorithms for soft shadows or depth of field or what not.
@pouria27284 жыл бұрын
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?
@likestomeasurestuff35543 жыл бұрын
The kitten killed me, thanks
@thegnosticatheist4 жыл бұрын
Oliwka
@jonesy_b4 жыл бұрын
OMG THAT CAT IS SO CUTE
@ventusstrife67154 жыл бұрын
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!
@__jan4 жыл бұрын
Static reflection may come in c++23 or c++26
@ventusstrife67154 жыл бұрын
@@__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.
@mettaursp3094 жыл бұрын
@@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.
@dingoDogMan4 жыл бұрын
He's back with a brand new cat!
@motbus34 жыл бұрын
doing with hazel and my life lol I've been thinking a lot about the last part too
@catinwall42564 жыл бұрын
I like this style.
@michaelmakam83364 жыл бұрын
Random question but where did you get your yellow duck water bottle from??
@jackwhite34684 жыл бұрын
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!
@lethaldumpster26994 жыл бұрын
To some degrees, OMG this is better than UE4s lighting controls.
@theoathman81884 жыл бұрын
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.
@PastaPig4 жыл бұрын
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).
@rootwayder774 жыл бұрын
Are you on USA or ....? Where can I get the hazel game engine demo thingi?
@RobSomeone4 жыл бұрын
Bruh, wtf you're making a game engine and all anyone in the comments cares about is the cat.
@GTLugo4 жыл бұрын
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.
@ValentineC1374 жыл бұрын
Game engines are temporary Cats are eternal
@asandax64 жыл бұрын
Welcome to the Internet where Cats rule.
@irgendeintypeiminternet7814 жыл бұрын
Putting a cat in the thumbnail to get more views. Totally worked
@ghouldrago3604 жыл бұрын
Good job
@itsjusttmanakatech11623 жыл бұрын
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.
@channel111214 жыл бұрын
What's the outro music?
@GrayFoxGamingHD4 жыл бұрын
What do you want to archive versus what Unreal Engine 4 already does ? Technically/comercialy wise.
@treyquattro4 жыл бұрын
kitteh!!! Channel just became 100% more interesting
@blackfun44484 жыл бұрын
KEEP IT UP :D
@kursatyakupkukul76704 жыл бұрын
what kind of music is that? I like it, feels like I could write code hearing that
@epic13434 жыл бұрын
YEESSSSSSSSSS
@revan11394 жыл бұрын
Shadows, finally!
@jacasch31644 жыл бұрын
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.
@КостяКостин-ю1ь4 жыл бұрын
hi! what did you user for UI? its c# WPF?
@IlknurMustafa4 жыл бұрын
Hi Cherno, do you think it would be possible to post your livestreams for those who can't join due to timezone differences?
@jesseburstrom59204 жыл бұрын
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
@mynameupdatesannually4 жыл бұрын
оливка))
@gelis079 ай бұрын
The sky lighterally made a night and day difference (pun intended), but really it made the scene from quite ugly to amazing.
@nextlifeonearth4 жыл бұрын
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.
@motbus34 жыл бұрын
don't knoe if I missed, but the shadow map is applied to the texture of the object?
@vince44174 жыл бұрын
What's your thoughts on GPU lightmass?
@cjaay43594 жыл бұрын
I remember turning on PCSS in GTAV and Far Cry 4 really tanks the performance of gtx 970
@rostislav34704 жыл бұрын
Люблю оливки
@maxi-g4 жыл бұрын
what about sub surface scattering ?
@robertmoats1890 Жыл бұрын
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.
@GamingMyWholeLife4 жыл бұрын
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?
@SimonBuchanNz4 жыл бұрын
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.
@MrGr33n_4 жыл бұрын
I didn't follow the channel much, but what is the Graphic API you are using? I myself work on part of an engine, but in Java. Also i really agree with you that nothing is perfect out of the box online(people code. My Tesselation wasn't perfect actually it wasn't at all, and then i never got to add the Cubic Bezier algorithm to roundup the edge and in the end i gave up on having beautiful edge for it haha :P.