So I Reviewed the DOOM 3 Source Code..

  Рет қаралды 90,702

Tariq10x

Tariq10x

Күн бұрын

Пікірлер: 223
@Tariq10x
@Tariq10x 3 ай бұрын
Since you pizza+coffee enjoyers liked this video, I made a 52min video where I step-by-step compile a Doom 3 source code port and run it kzbin.info/www/bejne/qXmveYefi697atk
@designator7402
@designator7402 4 ай бұрын
I'm sorry but I'll have you know that my diet consists mostly of pizza and _hard liquor._
@Tariq10x
@Tariq10x 4 ай бұрын
Going hard in the paint
@rawallon
@rawallon 4 ай бұрын
Wow coke zero is considered hard now?
@TheDoomerBlox
@TheDoomerBlox 4 ай бұрын
Ah, irish coffee.
@ChristianIce
@ChristianIce 4 ай бұрын
Pizza and Beer here.
@byeloz2436
@byeloz2436 2 ай бұрын
​@@ChristianIcehell yeah brotha
@Branchie
@Branchie 4 ай бұрын
Oh man, that intro was too real.
@gersonsv12
@gersonsv12 4 ай бұрын
Cheers.
@bruterasta
@bruterasta 4 ай бұрын
I never knew someone could know me so well just after first six seconds of him speaking to me.
@ExpensivePizza
@ExpensivePizza 4 ай бұрын
It's actually a really well written code base. Way better than any code I've seen in most companies and open source projects. Why? Attention to detail. Every class is clear and well defined. Conventions are used consistently and the project structure is organized. The comments are there to provide additional context rather than just repeating the variable names.
@delphicdescant
@delphicdescant 4 ай бұрын
I'd mostly agree, except that even just in this video there are a lot of examples of pointless comment blocks that take up like 5 lines just to repeat a function name and nothing else. Like around 9:35
@ExpensivePizza
@ExpensivePizza 4 ай бұрын
@@delphicdescant Fair point but it's also a good to remember not to let perfection be the enemy of good.
@delphicdescant
@delphicdescant 4 ай бұрын
@@ExpensivePizza Sure, I agree. I think the constant online debates about code style and commenting (and even the common assertion that whatever you do, be consistent) are overblown in general and tend to waste a lot of time. But there are so many things in the software industry that are time wasters like this. Even concerning ourselves about the fact that they waste time is, on it's own, a massive undertaking and ultimately a big waste of time. So what conclusion can I draw? None at all, except that I think the software industry could benefit from its own version of Dadaism.
@ExpensivePizza
@ExpensivePizza 4 ай бұрын
​@@delphicdescantHaha. At least we have Jonathan Blow doing his best to change the industry 😂
@mleise8292
@mleise8292 4 ай бұрын
The are (or were) in a tradition of releasing the source code a few months after the release of their games. You author code differently when you know the public will judge you. Also less locker room jokes in the comments, I suppose. 😅
@ruadeil_zabelin
@ruadeil_zabelin 4 ай бұрын
6:50 They didn't import this from previous projects as this was John Carmack's and by extension Id's first project in C++. They had used only C up until this point. The codebase is also written very c-style.
@the_kovic
@the_kovic 4 ай бұрын
"Very C-style" People keep repeating that but we just saw that the code has a huge entity inheritance chain and a custom STL string implementation. This is classic C++ stuff.
@yaghiyahbrenner8902
@yaghiyahbrenner8902 4 ай бұрын
@@the_kovic You need to listen to the interview with John and stop whining , John said majority of the code uses C and some aspects of C++ are used. STL and Inheritance are barebones C++.
@gavinrolls1054
@gavinrolls1054 4 ай бұрын
​@@the_kovic womp womp
@delphicdescant
@delphicdescant 4 ай бұрын
Apparently people are disputing whether this is written in "very C-style" or not. I'd just like to throw in the inflammatory opinion that it *should* be written in a C-style, because what C++ added to C was 80% committee-designed antifeature cruft, and 20% useful stuff that won't give you a migraine. And no, "modern C++" doesn't help.
@ruadeil_zabelin
@ruadeil_zabelin 4 ай бұрын
@@delphicdescant As a 15+ year experience C++ dev coming from C before that... its very C style. Yea theres classes and some overloads but.. a lot of the implementations are not c++'ish at all
@emperorpalpatine6080
@emperorpalpatine6080 5 ай бұрын
went straight to the fast inverse sqrt lol. I had literally the same reflex when I opened that repo for the first time a year ago. it's like going to the museum and seeing some old tool that people used thousands of years ago. I really don't know why you don't have more subs , I agree with that other comment , this is really good .
@Tariq10x
@Tariq10x 5 ай бұрын
I try to deliver quality content, the rest will follow 👌 thx for the support bro
@severgun
@severgun 4 ай бұрын
Absolutely every c++ project: "lets implement our own strings"
@mattmurphy7030
@mattmurphy7030 4 ай бұрын
Game programmers love to hate the STL
@Special1122
@Special1122 4 ай бұрын
what is the reason behind that?
@mattmurphy7030
@mattmurphy7030 4 ай бұрын
@@Special1122 games usually implement their own strings to control allocation. Although c++ strings support small string optimization, when you break that limit, they can result in lots of fragmenting allocations. With modern STL supporting custom allocators it’s much less of an issue than it used to be. The games industry just hasn’t caught up. EA even reimplemented the complete STL. They aren’t gonna throw away that institutional knowledge just because.
@acasualviewer5861
@acasualviewer5861 4 ай бұрын
@@Special1122 when the first version of Doom came out there was no STL.
@julianelmasry9556
@julianelmasry9556 5 ай бұрын
Your channel is so underrated. This content is pure gold
@Tariq10x
@Tariq10x 5 ай бұрын
I appreciate the nice comment bro ❤️ Im glad you found the video helpful ✌️
@peterjohnson9438
@peterjohnson9438 4 ай бұрын
pretty sure those AI_ prefixed variables stand for "abstract input", not "artificial intelligence"
@James2210
@James2210 Ай бұрын
in a different context it could be enemy AI (e.g. not machine learning)
@yaghiyahbrenner8902
@yaghiyahbrenner8902 4 ай бұрын
For me the most impressive code in the codebase is the compiler, the guy who was on the project John made a point to say when working on D3 it was clear we had bright minds on our team that exceeded areas of knowledge that he has example writing a script compiler was one such skill.
@Markus_included
@Markus_included 4 ай бұрын
18:25 this is function overloading, polymorphism usually means overriding virtual functions from a base class
@Tariq10x
@Tariq10x 4 ай бұрын
Thanks bro for politely pointing out the mistake! I really appreciate it ✌️
@SMorales851
@SMorales851 4 ай бұрын
Function overloading is also polymorphism. Overriding virtual functions is a specific type of polymorphism (dynamic, or runtime polymorphism), but function overloading and template functions and types are also considered polymorphic. They are just examples of static or compile-time polymorphism.
@johndoe-j7z
@johndoe-j7z 4 ай бұрын
@@SMorales851 Correct. @Markus_included is thinking of method overriding in inheritance which is a form of polymorphism (dynamic). But function overloaded is also a form of polymorphism (static).
@johndoe-j7z
@johndoe-j7z 4 ай бұрын
@@Tariq10x You were right bro dw.
@Markus_included
@Markus_included 4 ай бұрын
@@SMorales851 You're right, but people don't really use the term "polymorphism" that often when talking about overloads, so I thought he might have mixed up some terminology here
@winterboltgames
@winterboltgames 4 ай бұрын
Man, I was finishing my pizza and making coffee as this intro played. What the...
@sebastercats6123
@sebastercats6123 4 ай бұрын
It's funny seeing how early 2000s games got so much interest in disecting the codebase, reminds me of Silent Hill's lost source code and GTA III's reverse engineered game code. Makes me wonder how GTA 6 codebase will turn out in the future, and how people will react to it. I remember the leak version of the game, and the game already looks impressive even though it's the *pre-alpha* version!
@aboliguu1168
@aboliguu1168 4 ай бұрын
Yeah these old codebases are very interesting but they definitely show their age. Like in this one the inheritance chain from idClass to Gibbable almost seems like satire of OO. Modern engines are so complex that i’m afraid future coders wont be able to disect their codebases
@rawallon
@rawallon 4 ай бұрын
@@aboliguu1168 Have you ever worked in a complex OO system? That's not satire, thats the reality, you start with the most general class that doesn't have any solid implementation and go building from that
@aboliguu1168
@aboliguu1168 4 ай бұрын
@@rawallon obviously it’s not satire lol, it’s from a serious game project. I hope you realised that although the programming community is pretty bad at sarcasm due to above average amount of autism in this field. The point was that that kind of deeply nested inheritance is exactly what people mostly hate about OO these days. It could almost be in a twitter post about horrors of Oo
@giornikitop5373
@giornikitop5373 4 ай бұрын
@@aboliguu1168 ppl hate it, yet they still heavily use it. meh, always a catch.
@allNicksAlreadyTaken
@allNicksAlreadyTaken 4 ай бұрын
Multiple functions with different arguments is called function overload. Polymorphism is something else (either templates in the case of static polymorphism or virtual functions for dynamic polymorphism).
@phat80
@phat80 4 ай бұрын
For sure it’s not a Rust part as Github says. It’s some files with .rs extension that Github treats as rust files. I’ve already encountered such projects on Github where strange languages for the particular project were shown. And after opening them I saw that it’s not a file written in that language. It’s just files with the extension of that language. It means Github doesn’t analyse files’ content for the statistics, just extension.
@sadunozer2241
@sadunozer2241 4 ай бұрын
I subscribed because of the self burn “if you are not watching the video, that’s because you are making the video” 😂😂😂
@burnsy96
@burnsy96 5 күн бұрын
Knowing how many lines of source code is about as useful as knowing how many farts the designer of the API took while working on the project. You can delete all new lines and still have the project compile with essentially one line of code that way, I'd more interesting in knowing how many class definitions exist
@bryanjohnson4819
@bryanjohnson4819 5 ай бұрын
Glad to find this channel
@Tariq10x
@Tariq10x 5 ай бұрын
Glad to hear that bro ✌️
@sparshpriyadarshi
@sparshpriyadarshi 4 ай бұрын
"if you're not watching the video, you're making the video" xD
@anon_y_mousse
@anon_y_mousse 4 ай бұрын
Just so you know, Id is not pronounced like the acronym ID because it's named for the psychological concept of an id. I'm curious as to why GH thinks there's any Rust in the codebase given that there are no such source files in the entire repo and it was created long before Rust was, but that's an issue I'd have to take up with Microsoft. In the idWorldspawn::Spawn() function where you see them searching for a main function, that's because they loaded a script for the current map being loaded and that's the starting point for the script. I don't know if they still do this in their later engines, but back then at least they had their own custom language for writing scripts that was derived from C. It might be fun to go through the entire codebase and perhaps make a video out of each module. Given that they apparently implemented their own containers, I'm curious what they did differently there from any existing libraries from the same time period. Welp, time to go waste an hour reading their hash table implementation.
@com0oan
@com0oan 4 ай бұрын
Thanks A LOT for this video! Love videos about reading codebases!
@CharlesVanNoland
@CharlesVanNoland 4 ай бұрын
It's a lot easier to familiarize yourself with a codebase using a flow graph visualizer instead of surfing through and hunting in the code itself. Sourcetrail is pretty good, and there's Codevis but it requires that projects have a compile_commands.json - which isn't exactly applicable to many projects made with obscure IDEs unless you have a makefile and a tool to generate the json file from it.
@roz1
@roz1 4 ай бұрын
Man u r making a very important video... How to read a code base that is not explained, no docs and few to no comments.... This is really really a necessity as the team expects u to work like them from day 1
@GottZ
@GottZ 4 ай бұрын
that moment when you didn't "see" through the scripting language interpreter doing a function lookup
@abc123evoturbobonker
@abc123evoturbobonker 4 ай бұрын
I switched from pizza to fish fingers and chips, refactor was worth it
@TalicZealot
@TalicZealot 4 ай бұрын
Why you gotta call me out on frame 1 like that though
@onedankindgaming1570
@onedankindgaming1570 2 ай бұрын
I remember playing this game on a PC that had no business running it AND it was playable. Good ole packard bell.
@Malkovith2
@Malkovith2 4 ай бұрын
All of those things are so intimidating. I know I can grasp them over years, but seeing all this is scary. I have so much to learn. For now I'll stick to GDscript and finish my first 2D game.
@TR-707
@TR-707 4 ай бұрын
i hope you review Deutsche Bahn C++ next
@ffs55
@ffs55 4 ай бұрын
killer opening line -- nailed it!!
@freezinfire
@freezinfire 4 ай бұрын
This was a good video, keep making videos!
@imadetheuniverse4fun
@imadetheuniverse4fun 2 ай бұрын
bruh, why that insanely accurate call out in the intro, hahaha :'D
@nask0
@nask0 3 ай бұрын
Actually, John Carmack himself told (at Lex Fridman podcast) that he doesn't "invent" the RSqrt himself and was falsly framed for it. You shuold definetely watch it, it's quite good conversation. Nice video bro, cheers
@DeepFriedOreoOffline
@DeepFriedOreoOffline Күн бұрын
"And I know your diet mostly consists of Pizza and Coffee" Bro, have some respect. Some of us drink tea, lol.
@Super.Whimsy
@Super.Whimsy 4 ай бұрын
Any video that starts with “Why are we even doing this?” has me along for the ride. BECAUSE WE CAN.
@tempsanity
@tempsanity 4 ай бұрын
I subscribed immediately after the intro.
@IAhmadGT
@IAhmadGT 4 ай бұрын
can you do the same with the source engine (sdk2013 or any the 2020 leaks)? it's gonna be so cool :D
@Tariq10x
@Tariq10x 4 ай бұрын
Which one specifically? I will take a look at it 👌
@IAhmadGT
@IAhmadGT 4 ай бұрын
@@Tariq10x well sdk2013 is the limited sdk valve has In GitHub and the 2020 leaks contain the whole engine for hl2 and csgo
@ChannelSho
@ChannelSho 4 ай бұрын
I haven't looked at the code base, but seeing what they did for strings made me wonder if they basically looked at the vanilla STL then and went "nah, we can do better" I wonder if an id STL exists for C++ 🤔
@giornikitop5373
@giornikitop5373 4 ай бұрын
you can say the same for the way that c++ handles strings.
@sergrojGrayFace
@sergrojGrayFace 4 ай бұрын
I was the most unhappy while playing Diablo 2. This game was made to lure you in and then torture you.
@James2210
@James2210 Ай бұрын
It's fun while you're playing it, and then the grind hits. I tried to start another character a while ago and couldn't. Definitely better with friends
@darkzeroprojects4245
@darkzeroprojects4245 4 ай бұрын
I been wanting to learn to make a engine for a project or two and it having a similar inspired setup to doom 3s source code,though obviously different in everything. It's due to how I kind like how since quake 1 game files even mods are setup to be at and whatnot.
@MopeyFand
@MopeyFand 4 ай бұрын
No help, no documentation, no comments, and no tests. Spaghetti codebase. Story of my life.
@WheatOnToast
@WheatOnToast 4 ай бұрын
Very interesting video! If you really wanna get into weird FPS source code, I 100% suggest you check out Quake 4.
@tomvice
@tomvice 5 күн бұрын
I was eating a pizza when it popped up in my yt feed. Also, this is beautifully written. Let's go
@Tariq10x
@Tariq10x 3 күн бұрын
@@tomvice thanks bro, I write and edit everything by myself 🙏
@zyhru
@zyhru 4 ай бұрын
u need to do more of these, i was so locked
@Tariq10x
@Tariq10x 4 ай бұрын
Thx for the feedback ❤️ I will be making more of these in the future, but with a lot more details.
@giornikitop5373
@giornikitop5373 4 ай бұрын
d3's source is simply briliant. nothing is hasted or wasted.
@jc-iz8lp
@jc-iz8lp 4 ай бұрын
Can I ask you why the doom 3 source code is so special? I've seen several video's on it so it must be pretty impressive lol. Don't see any video's on new games their source code
@giornikitop5373
@giornikitop5373 4 ай бұрын
@@jc-iz8lp most games don't have their source code realeased, that's why there aren't any videos. doom3 is a 20years old game. it's impressive because it uses some smart tricks to use the full potential of that time's hardware (2004) which was a crappy celeron d and gpu and still be one of the best games of the period.
@jc-iz8lp
@jc-iz8lp 4 ай бұрын
@@giornikitop5373 Then why is this source code released? Did someone leak it or was Bethesda like screw it lol
@giornikitop5373
@giornikitop5373 4 ай бұрын
@@jc-iz8lp bathesda? id created the game and i think activision published. no it's not leaked, id just made it public in 2011 if not mistaken.
@StigDesign
@StigDesign 4 ай бұрын
i dont think rust language existed in 2002-2004 so the rust might be because of the fork on github :) Love this kind of video, i love Doom3 and bfg edition especially with RBDoom3 :D
@natecoley160
@natecoley160 2 ай бұрын
I like how we learn SOLID concepts and such yet we see all_in_one classes and deep inheritance everywhere in a pretty much complicated game engine and no one complain
@F00dstamp96
@F00dstamp96 4 ай бұрын
My diet consist of Zyns and Ravioli
@XaFFaX
@XaFFaX 4 ай бұрын
18:35 This is not polymorphism but method overloading. Based on this, as well as in general this video it seems to me you have limited understanding of how software development looks and how one should work with legacy code. Here is my version for those who are wondering, since this video is not too accurate - first off with such large project you are usually not expected to know the whole codebase, because that would be pointless (you will not work with every part of the code anyway) and it would take months. The code is split into parts (modules) as it was mentioned in the beginning of the video. This is why in credits you will see sound developer, engine developer, AI developer, network developer etc. This is for games, when you have business applications the split is obviously different. Also for business applications for large projects the code may be split further among multiple microservices. This is just to give you an idea. When you start working on the code you will know beforehand which part of the code they want you to work on, be it sound, engine, AI or whatever else. When you know this, it is probably best to start off with tests. Tests will give you an idea on how stuff works, what does what, what are expected results and what are not, what are failure scenarios etc, etc. What to do if there are no tests you ask? I would quit and look for another job in that case. All other modules that interact with say sound module/library are blackboxes from your perspective. Which means you interact with them using APIs. You must know what to expect from them, and what those modules are expecting but are not expected to know how they work internally. This is assuming the code itself is properly maintained and properly designed. If it is a spaghetti code, that is not properly separated and data flows from one module to another without any structure or thought then you are in big trouble. Or more to the point - the project is. As you start understanding on what is going on in the tests, then usually it is good to start "poking around". Do some changes, add some code, think about stuff you need to do and see what the reaction from the code is. This way you can start going further and further until feeling comfortable. Just to be clear - for large projects there are no people who would know exactly what each line of code does at a glance. Some people who worked many years may know a more significant part of the code, but usually there are no people who would have touched 100% of the codebase. It is also good to consider how much a "free" engine gives in terms of development complexity. You get probably 60-70% of the code for free (vs say this Doom 3 source code). No need to implement and worry about Vulcan/OpenGL/D3D, sound, collisions, OS compatibility etc. you get all that for free, you "only" need to do game logic. This is why before "free" game engines there were basically no indie games.
@miles2142
@miles2142 4 ай бұрын
the whole video felt to me like c++ 101 (explaining what god damn operator overloading and templates are), 1/3 of the video is him searching for the main file and the other half is just looking at function declarations for the player class, lol
@conscientiamstudios
@conscientiamstudios 4 ай бұрын
yo creo en mi opinion humilde de programador junior, que en estos casos ahi que utilizar los diagramas UML, yo utilizo StarUML, saludos muy bueno el video ¡
@pepe6666
@pepe6666 4 ай бұрын
burn applied to me. subscribed
@pju28
@pju28 Күн бұрын
I would appreciate it if you would compile it to Linux! 😁
@Tariq10x
@Tariq10x Күн бұрын
I have already made a video about that: How To Compile the DOOM 3 Source Code Port for Linux and Windows(Step-by-Step Guide) kzbin.info/www/bejne/qXmveYefi697atk
@bradley1995
@bradley1995 4 ай бұрын
16:34 😂😢 lmao
@tigranrostomyan9231
@tigranrostomyan9231 2 ай бұрын
you are awesome bro
@Tariq10x
@Tariq10x 2 ай бұрын
Thx bro 🤝
@panjak323
@panjak323 4 ай бұрын
Why are there mile long gaps between function types and names in classes, but no gaps in cpp function definitions ?
@Tariq10x
@Tariq10x 4 ай бұрын
They are following their own code style conventions. You can find the conventions if you search for "doom 3 code style conventions". The idea was to make the code look uniform and visually more appealing.
@panjak323
@panjak323 4 ай бұрын
@@Tariq10x Hmm. To me it's just more confusing... I'm used to looking at the center of the screen to see function names, so such gaps and weird formatting frick with my brain.
@Stabby666
@Stabby666 4 ай бұрын
@@panjak323 I'll let John Carmack know. 🤣
@GhassanPL
@GhassanPL 4 ай бұрын
10 seconds in and you've already offended me and spoke nothing but truth at the same time. Damn.
@CharlesVanNoland
@CharlesVanNoland 4 ай бұрын
Dang, I was hoping you were going to dive into the Doom3 BFG codebase instead of the old codebase with all of its crazy renderpaths for the disparate hardware of the day.
@bludrunn3r560
@bludrunn3r560 4 ай бұрын
Please please please make video where You Reviewed the QUAKE 3 Source Code (maybe q1 and q2)
@ryonagana
@ryonagana 4 ай бұрын
quake 2 source code is slick.. tons of functions that create a real game
@ilYa1984
@ilYa1984 4 ай бұрын
Friends jokes... So interesting stuff for Quake 3 and Java fun. Thanks.
@lollol-js8bj
@lollol-js8bj 4 ай бұрын
intro couldn’t be more real😭
@DoodlesGaming
@DoodlesGaming 4 ай бұрын
Jokes on you, I don't even know how to code, but the pizza and coffee was on point
@davymachinegun5130
@davymachinegun5130 2 ай бұрын
"Aye Dee Tech" Oh boy.
@bowiemtl
@bowiemtl 4 ай бұрын
Ooh fuck the callout right of the bat, respect!
@barretthenderson5808
@barretthenderson5808 8 күн бұрын
Any doom game with bad optimization would be a disgrace to John Carmack
@Tariq10x
@Tariq10x 8 күн бұрын
Im currently reading „masters of doom“, and damn it’s such a good book
@James2210
@James2210 Ай бұрын
god damn the first 10 seconds stung
@CzMatt
@CzMatt 4 ай бұрын
Please I might have just missed that one information but why do they start every and each struct/class/enum and so on with "id"??
@kanataidarov
@kanataidarov 4 ай бұрын
Probably because it's idSoftware company - developer of the game
@CzMatt
@CzMatt 4 ай бұрын
@@kanataidarov ohh ok thanks
@leoschielt721
@leoschielt721 4 ай бұрын
11:00 Anyone else screaming at the Screen "why are you scrolling?!" - In IntelliJ i would just do "Structure" (Ctrl-F12) --> type "main" and BAM, you're there. Use the IDE, it's not notepad....
@giornikitop5373
@giornikitop5373 4 ай бұрын
he did it mostly to trigger you.
@__fireworks
@__fireworks 5 ай бұрын
Cpp is cool
@vast634
@vast634 4 ай бұрын
Maybe if John Carmack writes it. But there are enough source code abominations in C++.
@ColinBroderickMaths
@ColinBroderickMaths 4 ай бұрын
Thanks for this, very interesting. It's clear now why Doom 3 was such a performance hog when it came out. This style of OO programming, using deep hierarchies and lots of behaviour defined inside the classes, is an absolute disaster for memory locality. This means there will be loads of cache misses which waste a huge amount of CPU cycles. This is the main problem that data driven design aims to solve.
@giornikitop5373
@giornikitop5373 4 ай бұрын
well, there was not that much cache in cpu's those days...
@GeorgeTsiros
@GeorgeTsiros 4 ай бұрын
please tell me you know the difference between "overloading" and "polymorphism"
@Stabby666
@Stabby666 4 ай бұрын
Yes I do. Hope this helps!
@GeorgeTsiros
@GeorgeTsiros 4 ай бұрын
@@Stabby666 oh thank god i can finally sleep
@DavidCreativeCoding
@DavidCreativeCoding 4 ай бұрын
I was looking for a comment like this as soon as I heard "polymorphism"
@mbarrio
@mbarrio 4 ай бұрын
Diablo 2, yep. Although I have a very healthy diet.
@Sammie-r7d
@Sammie-r7d 4 ай бұрын
Now I see why they want 5 years experience
@damianjblack
@damianjblack Күн бұрын
Umm.. how did you know my diet??
@pegasisomega6284
@pegasisomega6284 4 ай бұрын
My diet consist of pizza and soda excuse me dear sir
@crshrson
@crshrson 4 ай бұрын
OH WOW WTF... you nailed everything in the intro... thanks for nothing xD
@RedSntDK
@RedSntDK 4 ай бұрын
Coffee and sausages, cause I'm doing keto 🌝
@alexanderroodt5052
@alexanderroodt5052 4 ай бұрын
Video starts off by calling us all out
@arunachalpradesh399
@arunachalpradesh399 4 ай бұрын
i guess its not orginal just reverse engineered, most script of games use Code obfuscation
@rahuldev2533
@rahuldev2533 4 ай бұрын
light up the candle for not using vim
@Tariq10x
@Tariq10x 3 ай бұрын
🕯️
@ablazedguy
@ablazedguy 26 күн бұрын
It's Id tech, not ID tech. Id as in Hid, not ID as in Heidi
@greatgamegal
@greatgamegal 4 ай бұрын
I'm gonna flame you for thinking I'm gonna flame you for not using Vim instead of for not using Neovim. Edit: Oh, I forgot to do that. Get flamed.
@laudennn
@laudennn 4 ай бұрын
A+
@Nomadnetic
@Nomadnetic 4 ай бұрын
How dare you call me out lol.
@hamesparde9888
@hamesparde9888 4 ай бұрын
You're not using Emacs! I'm not sure this is even worth watching! 😅
@diechort
@diechort 4 ай бұрын
How do you know so much about me?
@tugaric
@tugaric 4 ай бұрын
Finish eating my pizza and drinking my coffee, I see an interesting video and click it... Mofo...
@MofoMan2000
@MofoMan2000 Ай бұрын
Cool
@liamvg
@liamvg 2 ай бұрын
Noob here, why were you laughing so hard at the heartrate constants? Is that badly coded or something?
@Tariq10x
@Tariq10x 2 ай бұрын
@@liamvg It’s a common (and good) practice to define commonly used variables like this. You don’t want everyone in the team defining their own version of heart rate variables. You make it constant so you don’t change it by mistake somewhere. I just laughed at the naming.
@guilherme5094
@guilherme5094 4 ай бұрын
👍!
@hatsuneadc
@hatsuneadc 4 ай бұрын
Cool video! One suggestion though: try to compile the codebase, change something arbitrary and see the result next time. Just for better viewing experience
@Stabby666
@Stabby666 4 ай бұрын
I think it takes quite a lot of work to actually make this compile, based on the huge amount of external scripts and dependencies required. It would be interesting to see just how much work is involved though.
@ЮрійСидор-м5щ
@ЮрійСидор-м5щ 4 ай бұрын
Inverse square root kzbin.info/www/bejne/pmnYkJ5oga6Nr9E
@dsptchr
@dsptchr 4 ай бұрын
Diablo 2 was great
@dawidbujak
@dawidbujak 4 ай бұрын
Hi, are you even qualified to review doom 3 source code?
@Quarantineism
@Quarantineism 4 ай бұрын
Lol. No one has to be really. You can always learn something by looking at stuff, even if there are more "mature" or professional ways to do it. I think the intention of the video is entertainment, not education.
@liketheninja8658
@liketheninja8658 4 ай бұрын
Are you qualified to comment on this video?
@RussTeeTrombone
@RussTeeTrombone 4 ай бұрын
I am. I got a masters degree in “DOOM Studies” with a concentration in DOOM3
@BudgiePanic
@BudgiePanic 4 ай бұрын
The game should have an API because the game uses a client server architecture, right?
@j4yd34d5
@j4yd34d5 4 ай бұрын
This video taught me that most open source code bases are an undocumented spaghetti buffet that's unreadable by anybody but the maintainer. Doom 3 source code is sick though! 😄
@blarghblargh
@blarghblargh 4 ай бұрын
"readability" is a function of the person doing the reading. if a person spends time reading and modifying mountains of unfamiliar code, their metrics of readability will change. at the very least, having strong familiarity with the problem domain (i.e. writing multiple shipping game engines) will improve the person's understanding of the code. extensive familiarity with the specific language also helps. people like to pretend these things matter a lot less, and that there's a generic set of readability improvements you can make, and that they accomplish most of the readability benefits. but a lot of those axioms are just advocating everyone conform to a specific style. that style hasn't been proven to actually accomplish anything. it's just been sold hard. immersing onesself in a specific style does help. but that's not due to inherent aspects of the style being better. it's just due to familiarity. "clean code" got massively oversold :D
@elgeempire493
@elgeempire493 4 ай бұрын
Vs code is better!!
@pavelyankouski4913
@pavelyankouski4913 4 ай бұрын
Devs may be using custom ai for such things as "magic numbers" or other stuff as well, for example games like "Heroes 3" and its "map generator" definitely have some hidden ai infrastructure. They could be using small model of architecture and then they enlarge it, small models are common in prototyping. I've seen their first prototypes and it was another game, final game code is unpredictable, everything depends from optimization. I didn't created anything superficial yet, but DOOM3 game is - meh
@SnakeEngine
@SnakeEngine 5 ай бұрын
Pretty bad code architecture, but it does the job, I guess.
@ΑνώνυμοςΧρήστης-ρ9ζ
@ΑνώνυμοςΧρήστης-ρ9ζ 5 ай бұрын
why is it bad?
@SnakeEngine
@SnakeEngine 5 ай бұрын
@@ΑνώνυμοςΧρήστης-ρ9ζ Architecture is very specific, and too rigid to extend well. No wonder they stick to simplistic shooters. I guess something more interesting and complex would be beyond the scope with that code.
@Tariq10x
@Tariq10x 5 ай бұрын
I agree, it would be really painful creating something that’s not a fps with this code.
@nstch-root-a
@nstch-root-a 4 ай бұрын
Depends on the perspective, Id software makes shooters, so building a tool that can do shooter + ? isn't a smart decision. Calling it bad here is the same as calling a sportscar bad for it's poor cross country performance
@SnakeEngine
@SnakeEngine 4 ай бұрын
@@nstch-root-a Wrong analogy. I am critizining the machinery that is only able to produce one type of sportscars, and not the best ones either.
@melih2496
@melih2496 4 ай бұрын
bro inspects doom 3 source code without knowing who john carmack is
A closer look at the Super NES DOOM Source Code Release | MVG
13:49
Modern Vintage Gamer
Рет қаралды 751 М.
How One Developer Continues To Defy The Impossible
18:31
Nathan Baggs
Рет қаралды 161 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 108 МЛН
Why Doom is Awesome: Binary Space Partitioning
26:25
ShreddedNerd
Рет қаралды 1,1 МЛН
Exploring Ocarina of Time’s Decompiled Codebase
1:26:52
Ben Villalobos
Рет қаралды 156 М.
using numbers in your code is bad
14:33
Low Level
Рет қаралды 148 М.
Doom 3 on the Original Xbox is an incredible port. Here is why.
12:20
Modern Vintage Gamer
Рет қаралды 400 М.
The Making of Doom 3 and the History of id Software
21:34
NeoGamer - The Video Game Archive
Рет қаралды 71 М.
He wrote this out BY HAND? // Code Review
24:01
The Cherno
Рет қаралды 230 М.
Reverse Engineering Game Code from the Neutral Zone
40:59
Retro Game Mechanics Explained
Рет қаралды 690 М.
1000 Players - One Game of Doom
15:42
ThePrimeagen
Рет қаралды 243 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН