IM INDEPENDENT I ENGINEER AND REFINE AND RESOURCE AND PLAN AND PREPARE AND TRANSPORT THE GOODS AND PATENT AND I MAKE LANGUAGE AND IM INDEPENDENT INDONT NEED NO ONE
100% I enjoyed with multiple repeats to reflect in my trials and errors on Windows system programming. Windows sucks and it needs to be replaced with MuOS to have the full benefits and the potential of all the advancement in hardware during the last 10 to 20 years of developments..
Senior engineer here. This is a great learning exercise that I encourage all engineers to try (e.g., writing a platform or framework, etc). Keep up the great work Muukid
Senior engineer here as well, this is such an awesome video displaying all the pitfalls and also best practices at the same time. I'd suggest this to anybody taking their CS/self taught C programming skills to the next level.
Absolutely! It's fundamentally important to get in touch with the fundamentals, and a great lesson in humility and good library writing! It's amazing what you gotta keep on top of to get anykind of coherence with a suitable complex target ... guess that explains Win32 🤯🤣
Raymond Chen is a literal G.O.A.T. engineer. He has made so many insanely useful blog posts, as well as headed really major things at MS. If youve ever used compatability mode with an old program, he is one of the people you have to thank for it
Watching this video I was like, “wait, I recognise this guy!” I know I must have found some of his blog posts and remember them being exceptionally good! A huge amount of detail and explanation. What a legend
Love these types of videos. Edit: 1:02:56 "But hey, if it work it works." This mode of thinking is probably how the whole Win32 API and its documentation was written.
i am so glad i had the attention span to make it through a one hour video without distractions, this video quality is great and i cant wait to see more on this topic
Half way through your video and I am already in love with your channel. Keep it up. I have a low attention span and and there are very few youtubers whose long videos I watch start to end without putting it in watch later!!! Kudos Man keep it up.
@@woddenhorse Yes, Please. We would love have someone to reflect our pain with Windows' low level handling of the straight forward system things, such as required compatibility with the older implementation mistakes on the architecture being used back then, and whenever there is a conflict with very simple common sense things against what is currently being shipped with Windows OS, or even having the best practices on basic programming and developing of simple apps that deal with user experience, giving the advancement the current HW specifications went to waste. Feeling that you are not alone is a big thing to comfort you in your miserable workdays trying to fix Window OS stupidity for Microsoft.
This is a super educational video for people trying to learn real world C programming and I wish I had it 14 years ago. I learned all of this like you, but through a much longer trial and error time frame as my focus was building websites to make money.
"What a treat! This must be one of, if not the best programming videos out there. It explains the pitfalls of the language and presents a viable solution for them. It doesn't contrive abstract and ideal problems to be solved, instead focusing on real-world problems and how to approach them with a functional product in mind. Though not a tutorial, this is better than 90% of the tutorials for people who have learnt the syntax of a language, even if they don't fully understand the concepts. Programming is like riding a bike: you can study every aspect of it and will still know nothing until you're doing it in practice-be it riding your bike around your area or, in the case of programming, solving real-world problems in a real-world project environment. Congratulations on the masterpiece! Promptly saved it and am awaiting with bated breath for the next installments.
47:24 "About as low overhead as you can get" One way to go even lower, is to use a bit map instead of an array of bools. Bools are always going to use at least 8 bits of data. So in this big map of all the keys, that means ~83 bytes, depending on all the supported keyboard buttons. But, of those 83 bytes, 72.5 of them will always be 0, since you only care about 83 bits. This could be a bit packed 11 byte array, or 6 uint16s, of you want to keep even numbers. Then use some shifting and masking macros to get back your keys. Now, there is probably a tradeoff here between memory and performance, maybe those shifting and masking operations take more time than a memory access, so you don't want to make that tradeoff on a system that most likely has GB of memory available. But, still a fun thing to think about in your architecture choices.
Isn't it faster to deal with stuff if it's word-size? Makes things SIMD-ready and whatnot. I wonder if branch-less loops that are simple enough are common enough to allow a compiler to fully take advantage of word-sized Booleans.
I love that when we are making something very stupidly complex for our current level, even the most pathetic results are really satisfying and when you show it to some1 that hasn't ever done smth like this it sounds like we are either going insane or that we gave up in not being pathetic but it feels SO GOOD
Pure Win32 is how we did things in the 90s. There's plenty of good documentation. Charles Petzold's book on Windows Programming is a classic. (Though probably outdated for today's 64bit Windows) The excess of boilerplate code in C illustrates why at the time C++ became popular and frameworks such as MFC were the preferred way to make windows programs. Now pause and imagine how hard it was for novice college students to pick all this up on our own just from books. Now you know why the senior programmers in your midst seem to know it all. They probably did Assembler in High School, but the hardest thing for them to pick up was learning how to use other people's APIs. In the 80s you just whipped up all your own code. Reusing code was not a thing. But when it was it involved interrupts.
Just wanna say that this has been one of the most entertaining long form coding videos I've watched. I loved you highlighting all the little things you learnt about the system gradually and your thought process in each step. I'll be eagerly waiting for the next episode!
Having worked with OpenGL in C++, your implementation and explanation of the context system (and the global context) was SUPER insightful! Massive thanks and I dearly hope this series blows up and I cant wait for the next part!
I haven’t got epilepsy but man I gotta give you props for providing people that do an ACTUAL way to watch your content and hide it in the window that they might have problems during. Huge f props to you brother 🫡
I've always wanted to spend the time to do something like this, but have never been able to justify the time investment. Was really gratifying to see someone do it and create such a comprehensive video about the process.
Bro! I absolutely love it! Straight up making muC++ into a safe wrapper. I truly hope this project takes off! You have a cheerful tone in your voice, and seem excited to teach us about the topic. The editing isnt insane but it does a great job keeping me very interested. I think you did great overall! I subbed and look forward to your future content!
Now, this is quality content. Funny, informative, I love the style of the video, the 5:4 ratio is a great touch. Please keep it up, don't change the style, I love it. I don't usually subscribe to channels, even if I enjoy watching their videos but this is different. Don't stop, can't wait for the next video.
The algorithm strikes again! I will say the most underrated feature of this video, ironically, is the random robot voice correcting narration mistakes. Well done for making it an amusing, memerrific voice to regrab attention from my ADHD ears. Additionally this gives me flashbacks of teaching C at the college level and of ALL the MANY warnings I gave students about pointers that could be null, letting one resource be accessed in multithreaded applications, etc. Wish I'd had your video back then...
was about to go to sleep but im a cs student i can watch this and get 30 minutes of sleep and drink a monster and be absolutely fine update: missed all my lectures but it was okay
Seldom I watch a full hour long video, but you kept my attention and interest the whole time, so A++ video in my book. You skills are insane and you somehow make this super low level stuff make sense. I look forward to the rest of these videos!
This tutorial is A++ in addressing C, C+?, C++? and technology in general. Not my strength, but your outstanding communication and organized, creative teaching method awoke my interest and made it seem possible that I too could learn something new and expand my world to more than just opening e-mails, texting and scrolling. Your passion fuels my interest. Need to learn more and awaiting the next chapters. Continuing one chapter at a time is a great help.
I’ve been working my way through ‘The C Programming Language’ book (reading and doing the exercises) and this video helps to put it all together. You’re right! You do learn so much more having to do it all on a lower level.
I love your goals! Enshittification has polluted the way we learn to build software these days. I've had to dig past a lot of idiotic frameworks to find sane expressions of the basic functionality we use every day, and even those frequently break or lose important features due to increasingly idiotic decisions across their dependency chains. I definitely would love to work toward a dependency-free stack to the extent that it's practical to pursue. Excellent work.
Win32 allows you to assign arbitrary data pointers to windows using SetPropW that you can later retrieve using GetPropW. This would allow to you associate a muCOSAW32_Window pointer with a window and later retrieve it from the HWND value in your window procedure, rather than having to build a thread safe global value map between the two values yourself.
@@jgcodes2020I’ve never programmed for X11, so this may not be completely accurate, but some quick Googling suggests a combination of XInternAtom, XChangeProperty, and XGetWindowProperty are rough equivalents in X11.
I just made a comment asking exactly this. I should’ve read a few more comments 😅 I think this approach is fairly common, for example I know GLib lets you set a user pointer attached to its data structures that you can then use to pass additional data to callbacks. this is definitely the way it should be implemented, at least in my opinion
my man just uploaded one of the greatest programming video of all time as the first ever video of the channel. awesome video, can't wait for the next video(s)!
I love that you said "don't worry if you don't know what that means" in the one place in this overal esoteric video where I actually experienced that thing irl.
This is fun, once you get past the annoying boilerplate and the even more annoying mechanisms of the windowing system. I encourage you to also show some mistakes, because people keep making them, but they are rarely shown and explained, as you did with the window class. Speaking of which: You should make sure that you are only using one set of APIs when it comes to text: either *W or *A. You show multiple times around 36:00 that PeekMessageA is used. If I'm not mistaken, the kernel uses UTF-16 exclusively, so the *A APIs might cause overhead (I haven't checked that, but it should not matter, as *W has been the standard for decades now). That said, I learned something (I wasn't aware of ImageBase, must have skipped that article on The Old New Thing), even though I've been using Win32 for about 25 years. Thanks. 😄 Cheers.
I was thinking of creating os from scratch and when I opened the wikidev it gave me reality check 😂😂 They clearly mentioned that if you don't have decades of experience then just give up!😂
When making a Window you should never enforce a position. You can save the client position and use it on open to restore last position it had when closed, hopefully with a switch to turn that on if the user actually wants it. This means you never need to know the actual position of the window and if the user wants half the context be outside the monitor or whatever it's totally valid. When forcing any kind positioning or size you're going to fight peoples own automations, workflows, accessibility features and window handlings. If you make a "borderless fullscreen" window, for example, you don't have any native decorations and the client match the actual top left of your context (as long as you haven't set it to something else), and top left will always be the top left coordinates of the monitor the window is on, and the size the same as that monitor. Another important aspect of moving/sizing manipulation beyong monitors is that your own window will be hidden and stuff if it's not on the current desktop.
If I remember correctly, you shouldn't directly point one of the builtin cursor. You should copy the builtin cursors data to the current cursor. I suspect that what Windows does is that it correctly sets the cursor back to the current cursor, which isn't the cursor that you want to replace it with.
This is so cool! I’ve recently had the urge to do some C programming, and have been making a rudimentary game with the SDL2 library. Despite the incredible usefulness of the object-oriented language paradigm, there is something really satisfying about going back to the sheer simplicity of C programming. I love the spirit of this project you’re doing, building everything from scratch at the OS API level. Also your use of macros is pretty interesting, like where you have overridable functions. I’ll have to try some of this out.
Super interested in where you go with this. I'm in a programming college course now and watching this is oddly soothing while I burn in the dumpster fire that is the Canadian education system.
I wouldn’t really consider myself a programmer (I mess around in godot’s gdscript or python to make games every once in awhile, but I’ve always been more into the game design side of it) so I don’t really know why UA-cam recommended me this, but I’m glad it did. The large majority of it went straight over my head, but I still really enjoyed it!
This reminded me a lot of Emacs's source code. The graphics system in emacs is implemented in quite a similar way, which is how it is able to run on both windows and linux.
Hardest way only 💪. This channel has the potential to blow up like jdh, my personal project right now(and for the last year) is building a basic kernel and operating system in c++
Win32 is too complicated, so I’m going to create my own wrapper for it.” 5 mins later… “Sorry this library I wrote is so complicated…” Good stuff 👍😏 By the way, if it helps, any time you see the word Handle, or a type that starts with H, you can just think of it as an ID. HWND = Window ID. HDC = Device ID.
I think as far as Linux compatibly check out using Windows Subsystem for Linux (WSL), should be a lighter alternative to a full VM and I think it's a lot easy to work with directly on windows. Also Fantastic video! I can't wait to see where this series goes
I believe it still ultimately depends on Windows windowing system, so it wouldn't really be very good for thorough or accurate testing, especially if he has decided a VM isn't going to be accurate enough
damn my guy, i admire the courage and the effort put on that, hooked me on the video every second! One time i've tried to draw a window using win32 and noped out by being lazy. Good content! Cant wait for the graphics episode!
Holy late night algorithm pull Batman! This video is awesome and will be the reason I do not get nearly enough sleep tonight. Also I know that no one asked and since this is just an exercise for you it really doesn’t matter, but I think your concept of overridable macros might pose a pretty major security risk. It would in essence allow bad actors a way to inject malicious code into any project that uses your utility file. Usually to do this malicious actors would have to take another step to create the inject point themselves which is the hard part on my experience (which is limited), but you’ve hardcoded an injection point one of your core dependencies. Just something to consider. Please keep up the great work, I subscribed almost immediately and if your videos maintain this level of technicality and thoroughness you can bet I will be watching each one religiously.
Wow, great video! Love the subject matter and how you covered it. You are incredibly entertaining, you deserve at least five digits worth of subs. Hope this blows up!
I'm on my own quest in cooking something down up in C as well not using a single third party (well, almost). I'm kinda in the beginning so this is very impressive and inspiring! +1 sub. Great vid and keep up the good work. I've a feeling this one might grow big if you stay in there young man!
i dont usually comment on youtube videos but i gotta say this was a wonderful watch! Loved the vid dude, Hope you keep going with this looks fun and learning along got me hooked :)
Haven't watched the video completely yet, but I really like this project and your style. I'm also fascinated by the prospect of just doing something myself. But... this is sort of next level.
I have watched first 10 minutes and thought that the end of the video is gonna be soon. But then i've seen length of the video and couldn't believe that you can make content of this quality that is an hour long
You say from scratch but I don't see you harvesting your own silicon
I'd argue about harvesting the "ready to use" siicon. The proper way would be to collect pure energy and turn it into atoms of silicon.
Amateur,
Sure using already made energy is fine for most use cases, but real low level chads create their own energy@@25RAD
IM INDEPENDENT
I ENGINEER AND REFINE AND RESOURCE AND PLAN AND PREPARE AND TRANSPORT THE GOODS AND PATENT AND I MAKE LANGUAGE AND
IM INDEPENDENT INDONT NEED NO ONE
@@iamtimsson Based
@@iamtimssonlol good point
This really is a legendary algorithm pull
Not every day the algorithm gives me an amazing video from a small channel
good shot m8
real
for the all the shit youtube gets, it still has BY FAR the best algorithm at finding niche stuff that is tailor made for your interest
@@MIKAEL212345 true, it's a hit or miss algorithm but when it hits it HITS
@@MIKAEL212345 indeed, i just liked one vid and the next day dozens show up in my feed
When your wrapper code needs wrapper code of its own, you have achieved greatness.
Finally someone explaining the struggle of first time Windows developer.
everyone should create a Windows Window without any help in pure C just once to know what it entails.
Is much easier on Linux directly using X or Wayland ?
@@AK-vx4dy with X its literally so easy its way easier than the win32 api
@@monad_tcpI always did that because i didnt knew how to install wxwidgets 😢
@@ktxed For windows we also has libraries to ease this, that's why I asked how it looks if I try to go raw on Linux
I thoroughly enjoyed the 4:3 aspect ratio of this video. 10/10
4:3 is gods chosen ratio.
16:9 got me using unreal numbers
100% I enjoyed with multiple repeats to reflect in my trials and errors on Windows system programming. Windows sucks and it needs to be replaced with MuOS to have the full benefits and the potential of all the advancement in hardware during the last 10 to 20 years of developments..
Actually this video is in 5:4 aspect ratio
81:80 best ratio, my monitor is straight up syntonic
4:3 ratio best ratio
You can't change my mind
Senior engineer here. This is a great learning exercise that I encourage all engineers to try (e.g., writing a platform or framework, etc). Keep up the great work Muukid
Senior engineer here as well, this is such an awesome video displaying all the pitfalls and also best practices at the same time. I'd suggest this to anybody taking their CS/self taught C programming skills to the next level.
Absolutely! It's fundamentally important to get in touch with the fundamentals, and a great lesson in humility and good library writing!
It's amazing what you gotta keep on top of to get anykind of coherence with a suitable complex target ... guess that explains Win32 🤯🤣
The key here is to learn why are frameworks bad and never push for them in production.
Raymond Chen is a literal G.O.A.T. engineer. He has made so many insanely useful blog posts, as well as headed really major things at MS.
If youve ever used compatability mode with an old program, he is one of the people you have to thank for it
he is the ONLY mail that gets its own folder instead of being redirected to spamola
"Chen's Rule" Rules.
Watching this video I was like, “wait, I recognise this guy!” I know I must have found some of his blog posts and remember them being exceptionally good! A huge amount of detail and explanation. What a legend
Love these types of videos.
Edit: 1:02:56 "But hey, if it work it works." This mode of thinking is probably how the whole Win32 API and its documentation was written.
New low-level guy that does everything from scratch just dropped 🔥🔥
Really cool video! Take care
Incredible, it's not often you see an *hour-long* programming video that's as consistently entertaining as this one.
i am so glad i had the attention span to make it through a one hour video without distractions, this video quality is great and i cant wait to see more on this topic
I don't think even The Spanish Inquisition had such gruesome torture.
I used to code WIN32 in the 90's and gratefully I've forgotten most of it.
Half way through your video and I am already in love with your channel.
Keep it up.
I have a low attention span and and there are very few youtubers whose long videos I watch start to end without putting it in watch later!!!
Kudos Man keep it up.
Also, I'd love to see a rant video on Windows!!
@@woddenhorse Yes, Please. We would love have someone to reflect our pain with Windows' low level handling of the straight forward system things, such as required compatibility with the older implementation mistakes on the architecture being used back then, and whenever there is a conflict with very simple common sense things against what is currently being shipped with Windows OS, or even having the best practices on basic programming and developing of simple apps that deal with user experience, giving the advancement the current HW specifications went to waste.
Feeling that you are not alone is a big thing to comfort you in your miserable workdays trying to fix Window OS stupidity for Microsoft.
This is a super educational video for people trying to learn real world C programming and I wish I had it 14 years ago. I learned all of this like you, but through a much longer trial and error time frame as my focus was building websites to make money.
As a c dev i give you kudos. Im not allowed to use libs for my work so its my norm but in the world of js learning this is pretty awesome
That sounds like a pain and a half. On the other hand, I bet you know C inside and out and forward and back. Probably left and right too.
and probably also north and south, and east and west
the youtube algorithm came in clutch with this one , one of my top c related videos i watched this year good job
Keep posting with the same quality , this channel will explode
BOOM
some men just want to watch youtube servers burn
"What a treat! This must be one of, if not the best programming videos out there. It explains the pitfalls of the language and presents a viable solution for them. It doesn't contrive abstract and ideal problems to be solved, instead focusing on real-world problems and how to approach them with a functional product in mind. Though not a tutorial, this is better than 90% of the tutorials for people who have learnt the syntax of a language, even if they don't fully understand the concepts. Programming is like riding a bike: you can study every aspect of it and will still know nothing until you're doing it in practice-be it riding your bike around your area or, in the case of programming, solving real-world problems in a real-world project environment. Congratulations on the masterpiece! Promptly saved it and am awaiting with bated breath for the next installments.
Most of the videos about C on YT are "INTERNAL INTEGAR POINTAR" style and completely useless to people learning the language correctly.
47:24 "About as low overhead as you can get"
One way to go even lower, is to use a bit map instead of an array of bools.
Bools are always going to use at least 8 bits of data.
So in this big map of all the keys, that means ~83 bytes, depending on all the supported keyboard buttons.
But, of those 83 bytes, 72.5 of them will always be 0, since you only care about 83 bits.
This could be a bit packed 11 byte array, or 6 uint16s, of you want to keep even numbers.
Then use some shifting and masking macros to get back your keys.
Now, there is probably a tradeoff here between memory and performance, maybe those shifting and masking operations take more time than a memory access, so you don't want to make that tradeoff on a system that most likely has GB of memory available. But, still a fun thing to think about in your architecture choices.
this is crazy to imagine
I mean, do compilers optimize it to a bitmap? I'd think that if they see an array of booleans, they'd think of doing that, but idk
Isn't it faster to deal with stuff if it's word-size? Makes things SIMD-ready and whatnot. I wonder if branch-less loops that are simple enough are common enough to allow a compiler to fully take advantage of word-sized Booleans.
Watched this with my wife (both autistic and programmers) enjoyed it a lot. Keep at it, youtuber man!
I love that when we are making something very stupidly complex for our current level, even the most pathetic results are really satisfying and when you show it to some1 that hasn't ever done smth like this it sounds like we are either going insane or that we gave up in not being pathetic but it feels SO GOOD
Pure Win32 is how we did things in the 90s. There's plenty of good documentation. Charles Petzold's book on Windows Programming is a classic. (Though probably outdated for today's 64bit Windows)
The excess of boilerplate code in C illustrates why at the time C++ became popular and frameworks such as MFC were the preferred way to make windows programs.
Now pause and imagine how hard it was for novice college students to pick all this up on our own just from books. Now you know why the senior programmers in your midst seem to know it all. They probably did Assembler in High School, but the hardest thing for them to pick up was learning how to use other people's APIs. In the 80s you just whipped up all your own code. Reusing code was not a thing. But when it was it involved interrupts.
Wasn't expecting to stick around the whole video but here I am. Good content.
Just wanna say that this has been one of the most entertaining long form coding videos I've watched. I loved you highlighting all the little things you learnt about the system gradually and your thought process in each step. I'll be eagerly waiting for the next episode!
Having worked with OpenGL in C++, your implementation and explanation of the context system (and the global context) was SUPER insightful! Massive thanks and I dearly hope this series blows up and I cant wait for the next part!
I haven’t got epilepsy but man I gotta give you props for providing people that do an ACTUAL way to watch your content and hide it in the window that they might have problems during. Huge f props to you brother 🫡
I've always wanted to spend the time to do something like this, but have never been able to justify the time investment. Was really gratifying to see someone do it and create such a comprehensive video about the process.
Bro! I absolutely love it! Straight up making muC++ into a safe wrapper. I truly hope this project takes off! You have a cheerful tone in your voice, and seem excited to teach us about the topic. The editing isnt insane but it does a great job keeping me very interested. I think you did great overall! I subbed and look forward to your future content!
Now, this is quality content. Funny, informative, I love the style of the video, the 5:4 ratio is a great touch. Please keep it up, don't change the style, I love it.
I don't usually subscribe to channels, even if I enjoy watching their videos but this is different. Don't stop, can't wait for the next video.
genuinely one of the best videos i've seen on youtube about programming, great work. can't wait for the next upload :)
The algorithm strikes again! I will say the most underrated feature of this video, ironically, is the random robot voice correcting narration mistakes. Well done for making it an amusing, memerrific voice to regrab attention from my ADHD ears.
Additionally this gives me flashbacks of teaching C at the college level and of ALL the MANY warnings I gave students about pointers that could be null, letting one resource be accessed in multithreaded applications, etc. Wish I'd had your video back then...
Please don't stop uploading. This is a banger of a video. I want moreee!!!
was about to go to sleep but im a cs student i can watch this and get 30 minutes of sleep and drink a monster and be absolutely fine
update: missed all my lectures but it was okay
sound just like me XD
😂😂 a few pees from the same pod!
damn. i skipped all my classes to watch c++ videos yesterday. 😂😂
If you encounter Win32 or MFC, you would have nightmares about your career. Trust me. :)
@@mbakheet tried using win32 once and i gained 6 diseases
Seldom I watch a full hour long video, but you kept my attention and interest the whole time, so A++ video in my book. You skills are insane and you somehow make this super low level stuff make sense. I look forward to the rest of these videos!
This tutorial is A++ in addressing C, C+?, C++? and technology in general. Not my strength, but your outstanding communication and organized, creative teaching method awoke my interest and made it seem possible that I too could learn something new and expand my world to more than just opening e-mails, texting and scrolling. Your passion fuels my interest. Need to learn more and awaiting the next chapters. Continuing one chapter at a time is a great help.
I’ve been working my way through ‘The C Programming Language’ book (reading and doing the exercises) and this video helps to put it all together. You’re right! You do learn so much more having to do it all on a lower level.
please please please please continue this series. you are a legend.
keep doing this please,this is the type of content that I like and people need in this days
I love your goals! Enshittification has polluted the way we learn to build software these days. I've had to dig past a lot of idiotic frameworks to find sane expressions of the basic functionality we use every day, and even those frequently break or lose important features due to increasingly idiotic decisions across their dependency chains. I definitely would love to work toward a dependency-free stack to the extent that it's practical to pursue. Excellent work.
Win32 allows you to assign arbitrary data pointers to windows using SetPropW that you can later retrieve using GetPropW. This would allow to you associate a muCOSAW32_Window pointer with a window and later retrieve it from the HWND value in your window procedure, rather than having to build a thread safe global value map between the two values yourself.
While that does work on Windows, it won't work on X11 since X11 doesn't have a mechanism for that (AFAIK)
@@jgcodes2020 Given that it's internal to the Win32 API portion, the feature set of other window systems should have no influence on it.
@@jgcodes2020I’ve never programmed for X11, so this may not be completely accurate, but some quick Googling suggests a combination of XInternAtom, XChangeProperty, and XGetWindowProperty are rough equivalents in X11.
I just made a comment asking exactly this. I should’ve read a few more comments 😅 I think this approach is fairly common, for example I know GLib lets you set a user pointer attached to its data structures that you can then use to pass additional data to callbacks. this is definitely the way it should be implemented, at least in my opinion
my man just uploaded one of the greatest programming video of all time as the first ever video of the channel. awesome video, can't wait for the next video(s)!
I love that you said "don't worry if you don't know what that means" in the one place in this overal esoteric video where I actually experienced that thing irl.
This is fun, once you get past the annoying boilerplate and the even more annoying mechanisms of the windowing system. I encourage you to also show some mistakes, because people keep making them, but they are rarely shown and explained, as you did with the window class.
Speaking of which: You should make sure that you are only using one set of APIs when it comes to text: either *W or *A. You show multiple times around 36:00 that PeekMessageA is used. If I'm not mistaken, the kernel uses UTF-16 exclusively, so the *A APIs might cause overhead (I haven't checked that, but it should not matter, as *W has been the standard for decades now).
That said, I learned something (I wasn't aware of ImageBase, must have skipped that article on The Old New Thing), even though I've been using Win32 for about 25 years. Thanks. 😄
Cheers.
Thank you UA-cam algorithm gods. This series is gonna be legendary.
This video is simply one of the 7 wonders of the modern internet
I was thinking of creating os from scratch and when I opened the wikidev it gave me reality check 😂😂
They clearly mentioned that if you don't have decades of experience then just give up!😂
Wow, excellently edited, funny, well explained, long form, and interesting topic to boot. Very awesome video, subbed.
This is awesome. I have always wanted technical and entertaining programming videos. Super nice stuff man
massive respect wether this is your first video or not, DAYUM that shits sick
When making a Window you should never enforce a position. You can save the client position and use it on open to restore last position it had when closed, hopefully with a switch to turn that on if the user actually wants it.
This means you never need to know the actual position of the window and if the user wants half the context be outside the monitor or whatever it's totally valid.
When forcing any kind positioning or size you're going to fight peoples own automations, workflows, accessibility features and window handlings.
If you make a "borderless fullscreen" window, for example, you don't have any native decorations and the client match the actual top left of your context (as long as you haven't set it to something else), and top left will always be the top left coordinates of the monitor the window is on, and the size the same as that monitor.
Another important aspect of moving/sizing manipulation beyong monitors is that your own window will be hidden and stuff if it's not on the current desktop.
If I remember correctly, you shouldn't directly point one of the builtin cursor. You should copy the builtin cursors data to the current cursor. I suspect that what Windows does is that it correctly sets the cursor back to the current cursor, which isn't the cursor that you want to replace it with.
Awesome cant wait for graphics episode
Unbelievably well made video, I'm extremely excited to see what you develop further! Great job!
Algorithm made brick by brick. Amazing video!!🥳
This is so cool! I’ve recently had the urge to do some C programming, and have been making a rudimentary game with the SDL2 library. Despite the incredible usefulness of the object-oriented language paradigm, there is something really satisfying about going back to the sheer simplicity of C programming. I love the spirit of this project you’re doing, building everything from scratch at the OS API level. Also your use of macros is pretty interesting, like where you have overridable functions. I’ll have to try some of this out.
here before the primeagen reacts
its gonna be 10 hours long
You are the Acerola of low-level C programming.
lol. he even co-opted the thumbs up candy man.
I read that as "areola" at first.
Acerola has the GOAT status in graphics programming. Muukid has just started, he will surely become one of the GOATs.
But Acerolaaa...
>he pronounces clang just like "clank"
instantly subscribed
thank you UA-cam algorithm, absolute masterpiece
Well structured, full of information and funny! Good shi man, thanks for the content
Super interested in where you go with this. I'm in a programming college course now and watching this is oddly soothing while I burn in the dumpster fire that is the Canadian education system.
This is amazing! I'm surprised it's the only video on this channel. Subscribed and waiting for more. 🥰🥰🥰
I wouldn’t really consider myself a programmer (I mess around in godot’s gdscript or python to make games every once in awhile, but I’ve always been more into the game design side of it) so I don’t really know why UA-cam recommended me this, but I’m glad it did. The large majority of it went straight over my head, but I still really enjoyed it!
Fun video!
I exactly knew what was gonna happen when you said you wanted to make the window draggable :D
Keep it up!
youre a soldier for this. moved away from c for everything except for the things that require it
This reminded me a lot of Emacs's source code. The graphics system in emacs is implemented in quite a similar way, which is how it is able to run on both windows and linux.
Fantastic watch! This is the first time I've ever used the "bell icon" and set it to all. Looking forward to more. Regardless though, excellent job!
What a fantastic video.
From one windows api survivor to another, great job!
Fun fact. I wished in the past few months to achive this. but left it later. THx for showing your path.
Amazing video. I will be watching the whole series. Keep it up! 🎉
Hardest way only 💪. This channel has the potential to blow up like jdh, my personal project right now(and for the last year) is building a basic kernel and operating system in c++
Feels like God handed me this video, exactly what I needed
Win32 is too complicated, so I’m going to create my own wrapper for it.”
5 mins later…
“Sorry this library I wrote is so complicated…”
Good stuff 👍😏
By the way, if it helps, any time you see the word Handle, or a type that starts with H, you can just think of it as an ID. HWND = Window ID. HDC = Device ID.
I love finding channels like these. Insta sub.
I think as far as Linux compatibly check out using Windows Subsystem for Linux (WSL), should be a lighter alternative to a full VM and I think it's a lot easy to work with directly on windows. Also Fantastic video! I can't wait to see where this series goes
I was literally scrolling to see if someone suggested that, like mate just use wsl it's all you need for Linux and Windows
Maybe little bro is running low ram or disk. It's not free even if Wsl is deeply integrated into wintendo now. 😅
I believe it still ultimately depends on Windows windowing system, so it wouldn't really be very good for thorough or accurate testing, especially if he has decided a VM isn't going to be accurate enough
Hilarious and informative, subscribed and looking forward to more!
Instantly subbed, can't wait for more.
Your channel is going to explode
damn my guy, i admire the courage and the effort put on that, hooked me on the video every second! One time i've tried to draw a window using win32 and noped out by being lazy. Good content! Cant wait for the graphics episode!
Holy late night algorithm pull Batman! This video is awesome and will be the reason I do not get nearly enough sleep tonight.
Also I know that no one asked and since this is just an exercise for you it really doesn’t matter, but I think your concept of overridable macros might pose a pretty major security risk. It would in essence allow bad actors a way to inject malicious code into any project that uses your utility file. Usually to do this malicious actors would have to take another step to create the inject point themselves which is the hard part on my experience (which is limited), but you’ve hardcoded an injection point one of your core dependencies. Just something to consider.
Please keep up the great work, I subscribed almost immediately and if your videos maintain this level of technicality and thoroughness you can bet I will be watching each one religiously.
Wow, great video! Love the subject matter and how you covered it. You are incredibly entertaining, you deserve at least five digits worth of subs. Hope this blows up!
Oh, no wonder you don't have subs your first video is a banger.
What an incredible autobiography on the descent into madness
First time watching your channel. I love how your camera is just different versions of the same cat image
This is an insane video for such a small channel, you deserve more attention lol
great video man, cant wait for the next part
I'm on my own quest in cooking something down up in C as well not using a single third party (well, almost). I'm kinda in the beginning so this is very impressive and inspiring!
+1 sub. Great vid and keep up the good work. I've a feeling this one might grow big if you stay in there young man!
congrats you get the 1080p award for the quality of your videos
i dont usually comment on youtube videos but i gotta say this was a wonderful watch! Loved the vid dude, Hope you keep going with this looks fun and learning along got me hooked :)
Wonderful land of OS, future OS is about to be built. keep going!
I started doing something similar last year, super happy to see others do it too!
I really jive with the quality and depth of your video. I thoroughly enjoy it. I'm happy to have found your channel!
Exactly what I wanted for months
This is actually explained pretty well, good job, very interesting and well explained
Haven't watched the video completely yet, but I really like this project and your style. I'm also fascinated by the prospect of just doing something myself. But... this is sort of next level.
You will learn a lot from creating the HAL, it’s going to be the hardest part, keep going.
9K subs in less than a year 🥳 with programming 🤯. Well done for raising peoples interest in this, that and the other, + all your hard work😅
Damm guess found a gem of a channel 🎉❤
great video. I absolutely love the editing style and the entire "vibe" of it
I have watched first 10 minutes and thought that the end of the video is gonna be soon. But then i've seen length of the video and couldn't believe that you can make content of this quality that is an hour long
What a grand and intoxicating innocence.
-- Dagoth Ur
Keep it up! This is an amazing way to teach (and learn)