I tried coding my own graphics engine

  Рет қаралды 212,365

Garbaj

Garbaj

Күн бұрын

Пікірлер: 425
@pacifico4999
@pacifico4999 Жыл бұрын
When a normal person sees you make you first triangle: 😪 When a graphics programmer sees you make your first triangle: Here you go king 👑
@atomictraveller
@atomictraveller Жыл бұрын
YOUR triangle ❣
@willtheoct
@willtheoct Жыл бұрын
use regl to get a triangle in one step instead of 10 saving instructions is important
@pacifico4999
@pacifico4999 Жыл бұрын
@@willtheoct Looking into it, it automatically infers the vertex indices. Seems like an interesting library.
@calumwoodward9489
@calumwoodward9489 Жыл бұрын
@@atomictravellerour triangle 🛠️⚒️
@LaynaStambaugh
@LaynaStambaugh 9 ай бұрын
LITERALLY!! I've been writing a 3D engine for one of my college courses over the past few months and I saw him talking about 3D and texture coordinates and things and I was like KING KING KING KING We love u Garbaj
@banana_
@banana_ Жыл бұрын
the most replayed part 💀
@theseangle
@theseangle 10 ай бұрын
Garbaj, the collector. Collects the best 3d garbage there is for us ;)
@timelessnesses
@timelessnesses 9 ай бұрын
you dont have to mention that- 💀
@abdou.the.heretic
@abdou.the.heretic 9 ай бұрын
I saw the confusion meme and laughed then I saw the buttcheeks and comprehended.
@abdooowd
@abdooowd 8 ай бұрын
💀
@definitlyEgirl-safetf2
@definitlyEgirl-safetf2 8 ай бұрын
The internet has spoken
@Armi1P
@Armi1P Жыл бұрын
When Unity fucked up so bad people rather reinvent the wheel.
@colleagueriley860
@colleagueriley860 8 ай бұрын
There are no wheels in graphics programming.
@lolcat69
@lolcat69 8 ай бұрын
​@@colleagueriley860 autism
@Kero-zc5tc
@Kero-zc5tc 8 ай бұрын
@@colleagueriley860it’s in reference to a very common idiom.
@notactuallyarealperson2267
@notactuallyarealperson2267 8 ай бұрын
@@Kero-zc5tcThere are no idioms in graphics programming either, just tris
@kerhabplays
@kerhabplays 7 ай бұрын
@@notactuallyarealperson2267 lolz
@3DSage
@3DSage 7 ай бұрын
Keep going on your game engine! :)
@mexicanfloppa
@mexicanfloppa 4 ай бұрын
big fan sage! ;)
@MarlonRosewell
@MarlonRosewell Ай бұрын
hello sage
@SomeRandomPiggo
@SomeRandomPiggo Жыл бұрын
Started learning OpenGL 3 months ago with the goal of creating a UI library and then a game engine. Only now I think I have a good enough grasp on it to start working on a real project rather than experiments. It's very fun to mess around with and the performance you get in your own engine is absolutely insane. I can draw 500 cubes to the screen with lighting and still have 4000fps (literally) easy
@mōellctie
@mōellctie Жыл бұрын
It's a good day when Garbaj uploads a video.
@VGODP
@VGODP Жыл бұрын
No
@Solutra
@Solutra Жыл бұрын
why does everyone comment this on any video ever
@mōellctie
@mōellctie Жыл бұрын
@@Solutra idk, lol
@Chaos1king
@Chaos1king Жыл бұрын
​@@Solutraanoying init
@bear_m-117
@bear_m-117 Жыл бұрын
HEELLL YEAAAHH ITS ALWAYS BETTER
@alexandrepv
@alexandrepv Жыл бұрын
It's a good start and please don't give up on your engine. I have tried making graphics engines several times in the past, and they all ended up as abandoned projects in different stages of completion. But every time I got further and further. Only after I matured my software engineering skills enough that I was finally able to put things together in a way that they would not need to be tore down everytime I needed to add a new feature. Making your engine is a challenging and yet extremely rewarding process that will help you grow as a problem-solver. Keep at it mate :)
@modernadventurer2
@modernadventurer2 Жыл бұрын
I love trying to make 3d engines. such a fun project to work on. great job!
@vibaj16
@vibaj16 Жыл бұрын
until you get to clipping
@user-dh8oi2mk4f
@user-dh8oi2mk4f Жыл бұрын
@@vibaj16 the gpu does the clipping for you
@Knobbler
@Knobbler 4 ай бұрын
​@@vibaj16 you mean depth testing? OpenGL does that for you: glEnable(GL_DEPTH_TEST);
@vibaj16
@vibaj16 3 ай бұрын
@@user-dh8oi2mk4f then you aren't really making a 3d engine
@user-dh8oi2mk4f
@user-dh8oi2mk4f 3 ай бұрын
@@vibaj16 how is that not making a 3d engine? Clipping is just one part of the massive architecture of a 3d engine. Also, why after 9 months lol
@BeconIsYeck
@BeconIsYeck Жыл бұрын
Tonight, I just made an even more basic 3D renderer using C# and WinForms. No OpenGL, no DirectX, not even a way to define a 3D point, and I "finished" it in about 3 days. It wasn't that hard, the only two difficult parts were getting a perspective projection matrix working and defining the 36 3D points and 12 triangles that made up the cube I rendered. This video was my biggest inspiration for the project, though I've been wanting to work on something like this for a few weeks now. Planning on using meshes and mesh files to speed up the process of the creating new 3D shapes, as well as on camera / object movement and rotation.
@TheNSJaws
@TheNSJaws Жыл бұрын
i love when people go back to absolute basics. Goes over my head more often than not, but it's incredibly fun to watch.
@TiaguinhouGFX
@TiaguinhouGFX Жыл бұрын
Abstraction is a double edged sword. It's nice when used by people who understand how it works, so they make utilities, but it's an ignorance pill when used by those who don't understand what lies beneath. Go back to the basics and build from there, then one day build your own abstractions, or use other peoples's.
@TheNSJaws
@TheNSJaws Жыл бұрын
@@TiaguinhouGFX oh, right on!
@Smaxx
@Smaxx Жыл бұрын
For simple model importing, just look at obj. The ANSI version is rather trivial (and human readable), so all you have to do is read a text file. You can ignore stuff not implemented yet (like textures/UVs) and it should still work. But such experiments are great, considering all this knowledge (math and brain mush included) can be used e.g. when working with vertex shaders, too.
@westvirginiaglutenfreepepp7006
@westvirginiaglutenfreepepp7006 Жыл бұрын
😮
@SkrekkLich
@SkrekkLich 9 ай бұрын
Assimp (it's not an insult, it stands for Open Asset Import Library) is an alternative, too, if you want to have a look on how they do it for the most popular formats.
@aashu3D
@aashu3D Жыл бұрын
Based vid for naming the dva mod. Yeah and something=something about graphic rendering
@ntPingu
@ntPingu Жыл бұрын
For the really crazy stuff you should give jdh a chance. This guy is doing some wild magic with his own engines, OSs and self made graphic cards
@alphenex8974
@alphenex8974 Жыл бұрын
Honestly, it just takes time to learn OpenGL and make complex stuff. I'd be happy if you continued on.
@MohamedBenamer940
@MohamedBenamer940 Жыл бұрын
OpenGL is simple compared to other APIs, a tringle in pur Vulcan takes 2500 lines ...
@handlemonium
@handlemonium Жыл бұрын
Try Vulkan?
@abuxTMK
@abuxTMK Жыл бұрын
only if you like suffering that is@@handlemonium
@katto1937
@katto1937 10 ай бұрын
@@handlemonium Both of you saying OpenGL isn't complex because something else exists that is even more complex is stupid af. Calculus isn't complex compared to phd mathematics, doesn't mean it's not hard for 99% of people.
@prodmatze
@prodmatze 9 ай бұрын
@@MohamedBenamer940 congratulations
@OmeletteGirl
@OmeletteGirl Жыл бұрын
OUR QUEEN RETURNS!!! (I don't mean to put pressure on you, these take a lot of effort to make! Just excited to see you in my subscriptions feed!)
@poolersjr1422
@poolersjr1422 Жыл бұрын
This was an interesting video to watch, thank you for making it! And also make sure to make videos of other such journeys of yours :)
@holden_fella
@holden_fella Жыл бұрын
I started coding mine in 2007, made it as far as making a couple of 1-level demos, ported it to linux and then to PSP, all was going well then I started learning GLSL and that's what entirely killed my enthusiasm.
@ThatNerdGuy0
@ThatNerdGuy0 Жыл бұрын
1:25 im glad you know your audience
@zeurumvr
@zeurumvr Жыл бұрын
nice, Unity kinda shot themselves in the foot and it’s nice to see people’s alternatives!
@mostlime12195
@mostlime12195 Жыл бұрын
Garbarj doesn't use Unity. He has always used Godot.
@zeurumvr
@zeurumvr Жыл бұрын
@@mostlime12195he refrenced it at the beginning
@A_Balanced_Breakfast
@A_Balanced_Breakfast Жыл бұрын
🤡🤡🤡
@hingedevoper69
@hingedevoper69 Жыл бұрын
@@zeurumvr yes, but garbage was always a godot guy, if im not mistaken
@mostlime12195
@mostlime12195 Жыл бұрын
@zeurumvr Yes, he referenced it, but what I believe you were saying is that making a graphics engine was *his* alternative to Unity, when it isn't actually an alternative for him, because he doesn't use it, and I believe still uses Godot, which has actually gotten far more funding because of Unity.
@WwZa7
@WwZa7 Жыл бұрын
You know why I clicked. The video preview was on spot.
@unluckypanda5448
@unluckypanda5448 Жыл бұрын
lesson: don't.
@Craig6443
@Craig6443 Жыл бұрын
I love it when I randomly start thinking about something and its just happens the next day or two, I was wondering when you would post again.
@eualuchiha2383
@eualuchiha2383 Жыл бұрын
this is really wholesome and reminiscent to a graphics engine i tried to make a year ago, i managed to add basic 3D model importer for it and i gave up when i started dealing with basic lighting and shadows.
@SeanJMay
@SeanJMay Жыл бұрын
Fun little bit of pedantry: it's not quite the basis of all 3D... but most 3D. There are voxels, point-clouds, signed-distance fields, et cetera... and if you are rasterizing those, then yeah, you still end up back in a triangle (one that you might not even create manually), but if you're doing a path-tracer, and your scene is made of SDF objects or voxels, or whatever, then there's no triangle ... unless you are looking at a triangle... Regardless, glad to see more people getting their hands dirty with this stuff.
@icreatesomethin3835
@icreatesomethin3835 Жыл бұрын
Devs of the game Haydee knew exactly what the players want
@MotorBorg
@MotorBorg 10 ай бұрын
Exactly! I love mysterious mazes filled with traps and deadly robots!
@elvismd
@elvismd Жыл бұрын
This is always an awesome experience! Back in 2018-2019 I'd do a lot of different mini game engines with SDL/GLFW/etc, some using opengl, others directx, others libraries like SFML etc or event from zero like setting up a win32 layer and all. Nowadays I think I'd use RayLib. It's pretty compact and small and it has model/animation loading as well as many 3D methods to interact with models using raycasting which are useful and hard to implement if you're just starting to learn these things. Of course you won't have a lighting system buy you have all the model, shading and texturing loading with nice examples and you are left with the single problem of solving lighting youself instead of having to solve animations as well for example. Nice video!
@bluesillybeard
@bluesillybeard Жыл бұрын
Raylib is my favorite game toolkit, hands down. Nothing else compares in its simplicity and ease of use, while still having a decent set of features.
@DaniDrengen
@DaniDrengen Жыл бұрын
nice to see you back
@Pleasantnoob64
@Pleasantnoob64 Жыл бұрын
facts
@dryewallet
@dryewallet Жыл бұрын
Yooo he uploaded!! Glad to see you've been keeping up with programming.
@the-guy-beyond-the-socket
@the-guy-beyond-the-socket Жыл бұрын
most replayed part. not surprised.
@GamerDude27
@GamerDude27 Жыл бұрын
Here's to hoping we'll see a custom game engine renaissance happen again
@orange451
@orange451 Жыл бұрын
Careful going down that rabbit hole. I spent 8 years doing this. Learned a whole lot, but I feel like I wasted a lot of time I could have spent on other projects.
@finesseandstyle
@finesseandstyle 8 ай бұрын
Exactly. If you're planning a game and debating whether to create a game engine from scratch or use an existing engine, 100% go for an existing engine unless you're damn sure know what you're doing.
@elatronion
@elatronion Жыл бұрын
Years ago I decided to make my own (bad) game and graphics engine. Though it wasn't great, it did allow me to learn a lot of about how these engines actually work, which made me both appreciate and understand tools like Godot more! Now, I can confidently work on some pretty advance tools, plugins and engine extensions, I better understand what can cause lag, and I overall feel more empowered having gone though that journey. Personally, I don't plan on revisiting such low-level things unless I have too, such as making a game for PSX or contributing to Godot, if ever I do.
@Banaannaa
@Banaannaa 3 ай бұрын
as a 14 year old who completed a 3d engine i take this as a absolute win (in C++, python, scratch and a game called "trailmakers")
@makeandbreakgames1791
@makeandbreakgames1791 2 ай бұрын
Wait, a rendering engine IN trailmakers? That's a lot of logic Gates
@PiopioJuegos
@PiopioJuegos Жыл бұрын
I think it's good to make (or just try) to create your own game engine, to understand how to they work. I'm working in my very own GE intermittently for the last nine months based in a project from a JAM 12 years ago. I don't regret but it is too hard and still far to be "usable".
@igorthelight
@igorthelight Жыл бұрын
Maybe you could hook it to someone else's Editor and save yourself a hassle of building your own? ;-) All rendering would be calculated with your renderer!
@PiopioJuegos
@PiopioJuegos Жыл бұрын
Nah... Part of the fun is to do it everything. I don't care if noone else use it. And I'm not in a hurry.
@theseangle
@theseangle 10 ай бұрын
​@@igorthelightcan you for example take Godot and use its editor with your engine? Is it possible? How difficult is it?
@igorthelight
@igorthelight 10 ай бұрын
@@theseangle Technically it should be possible but I didn't found any instructions on how to do that. You could just build it without any additional modules (without ANY of them!), generate a project, do some stuff and then use generated files in your own projects (all files are just plain text).
@wd357dui
@wd357dui Жыл бұрын
KZbin recommended this video to me on the home page, I'm glad to see people trying to write graphics engines, I've been trying too. It's only just that I hoped it was DirectX
@notbillymays
@notbillymays Жыл бұрын
as an engine dev, you are in for a ride buddy.
@Pokabbie
@Pokabbie Жыл бұрын
I'm a rendering programmer by trade and I can say quite confidently that it doesn't ever stop with feeling overwhelming or like there always being a more complex thing to learn 😅 Rendering is such an in depth discipline and requires such depths of knowledge anywhere from physics to photography or painting to statistics; so no one person can ever truly know it it all imo and it's always best to take comfort in that 😉 I would suggest, given you're starting out, just pursue what you're finding fun! If you start looking into a topic and are feeling overwhelmed please don't be too discouraged! It's perfectly fine to put that topic down to come back to later and try something else for a bit 🙂 E.g. You mentioned that you struggled with the model importer and lighting. So why not place them down for a moment. For models, why don't you try making basic levels out of cubes and then move towards having those levels/models read in from your own simple file format? It would give you an appreciation for what sort of information is included and how it flows through the graphics pipeline whilst still being grounded in something you know. For lighting start simple! Don't worry about shadows for now, just worry about the 3 building blocks: diffuse (The base brightness of a surface), specular (The "shiny" spots on surfaces) and ambient (The background colour you get from light that, irl bounces from object to object) There are many resources on basic lighting thankfully! Once you're feeling comfortable with those, it then opens up the opportunity to dip your toes into most other lighting topics/sub disciplines 🙂 Hopefully this was helpful!
@ProgrammingWithRook
@ProgrammingWithRook 11 ай бұрын
Hi Garbaj, Welcome to the 3d world scene, good progress so far, it took me a while to understand some concepts, following along with a few different tutorials did not help either, some used old opengl ( fixed pipeline, which isn't bad if you want to play around with opengl to get a feel of things), others done modern opengl... and some done a mixture which raised soo many bugs and wasted time ::/ (below: lighting | under da hood | Framebuffer | ) I would say leave the lighting until you're 100% happy with everything else, it is just another resource that will be used when it is not needed in early stages, by all means you can start on it and not call it, but every time you'll go test out your work, you will always think "hmm What would it look like with light"... As far as "more under the hood", in what terms was you thinking, I believe there are some of us who "JUST'S NEEDS TO KNOW WHY" things work :) See below(bottom-ish maybe) if you're on a nix box ( linux machine ), you could play around with the fb ( framebuffer), you can even use python, to write out to it, so there is no GL/SDL/GLFW needed, as the FB file just contains pixel data informations < hope this helps a little. As for the under the hood here is some information that you may have seen already but could help others: you will have to look into reverse engineering your own work and putting many debug statements (a call function that = (printf HELLO WE ARE HERE 1.... 2.... 3->1000)), because each function you call with opengl will set certain registers on the CPU, to allow you to talk to the GPU, once communication has been made ( accepted ) more data is sent to the GPU that will set registers on the GPU ( as far as i know we can not view them) however we can view the memory/ stack to see what is pushed / popped. to get a grasp on how things may work, it will be beneficial for you to get a copy of your graphics architecture specs, that will sometimes display the registers so you can get an idea how information is passed through etc, if you have an AMD card then your luck has changed, because AMD does released their documents... Sooo many Documents, Perhaps ask chatGPT what type of documents that could help you out, anyways this messages has gotten rather long, good luck on your quest and keep us updated!! I hope that scratch gets itched ;-)
@xm214-aminigun9
@xm214-aminigun9 Жыл бұрын
Being talented enough to attempt such feat. Must be a good feeling.
@A_Balanced_Breakfast
@A_Balanced_Breakfast Жыл бұрын
Building an engine is an immense task. That's why Unity, Lumberyard, Frostbite, Creation, Unreal, etc. last so long. It's a crazy task to build a new one.
@No-mq5lw
@No-mq5lw Жыл бұрын
Lumberyard is a little weird to include since it's not really new. It started off life as a fork of CryEngine and Amazon had to pay Crytek for it to use it in house. Then parts of Lumberyard became Open 3D Game engine. I think a lot of in house game engines currently are modifications on already existing engines, than wholly from scratch implementations. Though their history is very much a secret to most.
@NEO97online
@NEO97online Жыл бұрын
These are general-purpose engines that try to solve every possible task and give abstractions over everything. To build a game from scratch with OpenGL is not as immense as you think. Only took me a couple months to get to a nice looking first-person shooter in OpenGL.
@DiThi
@DiThi Жыл бұрын
Depending on what type of game, it's not that big of a deal. Particularly for 2D games, making the engine is frequently simpler than making the game itself.
@atomictraveller
@atomictraveller Жыл бұрын
first 3d game in 7 weeks using SetPixel, if it's just a height field, lighting and a couple of objects, it could take a weekend or two.
@DarkSession6208
@DarkSession6208 Жыл бұрын
@@NEO97online Define a First Person shooter. Drawing Vertexes and Edges and rasterizing them with OpenGL communicating with your GPU, using a Modelimporter API is not building a game from scratch. Its like you saying you are building a car from scratch when you buy the engine, tires and glass, electronics from other people, the most complex things basically. And again, a 3d Model that resembles a weapon, a Rotation from the origin point and key input mapped to movement and velocity in world space is far from a FPS. Its basically a 3D Rendering but not a engine, you made a rendering engine. A true FPS has to have : Animations (good luck with adding complex ones which take bones into consideration), AI-Bots (good luck again, horrible to do from scratch).
@NoxiousPluK
@NoxiousPluK Жыл бұрын
I feel this. Way back in the day I started with the NeHe (Neon Helium) OpenGL tutorials. Really old stuff now, but getting that first triangle, or spinning cube. It's always the same route it seems. :D Congratulations on the progress! Edit: Oh I can also greatly recommend looking into SDL2 if you haven't yet.
@tsartarry
@tsartarry Жыл бұрын
Everyone has to start somewhere, but not everyone will. You did, so good job
@GR4MPI
@GR4MPI Ай бұрын
Opengl is basically a 3d engine itself 😂 it did almost everything for you
@travis8106
@travis8106 7 ай бұрын
As someone learning software engineering I have to give you high praise on a job well done. By doing this you've shown your mettle with programming, you have a great future ahead of you sir garbage.
@Flat_Erik
@Flat_Erik 7 ай бұрын
this guys is REALLY good, especially his SDL2 tutorial (which in general is a nightmare to find on the internet)
@LillyCox777
@LillyCox777 Жыл бұрын
Coding in open GL is simultaneously the most interesting and infuriating thing I’ve done. But I’m super glad I’ve done it even if I do work with engines as you get a sneak peak out not just how render pipelines and lighting work but also the base starting level of every engine out there
@CGMatter
@CGMatter Жыл бұрын
this channel name had me rolling
@stickguy9109
@stickguy9109 Жыл бұрын
So this is what you have been up to. Good to finally hear from you mate
@briandawley7808
@briandawley7808 Жыл бұрын
"Eventually you're going to want to add more detail." Yeah, I got as far as drawing a triangle, coloring the vertices, and making it spin. That was enough OpenGL for me lol :D
@LasseRafnDk
@LasseRafnDk Жыл бұрын
Game devs will really do anything except develop games 💀 I mean no shade.. I am a software dev and I will also find any excuse to procrastinate productivity
@atomictraveller
@atomictraveller Жыл бұрын
i chainsaw on a golf course part time. every second of my free time is used for making what i want to make, not some b.s. studio. plus i get to stand up so i won't bend over in half past the age of fifty (already).
@func_e
@func_e Жыл бұрын
I think it's great that you've at least tried expanding your horizons, even if they didn't end up going that far. I know I wouldn't've done that :D
@maxomega3
@maxomega3 Жыл бұрын
took a computer graphics course in college and it was easily one of the hardest classes I've ever taken. Had to make a raycaster and it was very buggy
@handlemonium
@handlemonium Жыл бұрын
Lol nice job. I highly recommend binge-watching Ben Eater's series on building a graphics card using only breadboard connections.
@victfv
@victfv Жыл бұрын
I made an engine in OGL for my CG fundamentals class and once you get the foundation done (texture loading, model loading, uniforms, eyc) it's really rewarding to add stuff later, like PBR and IBL. I'm trying to create a Vulkan game engine now. Vulkan is kicking my ass though.
@willtheoct
@willtheoct Жыл бұрын
if vulkan is kicking your ass, make sure you're learning from a good source! The top result on google recommends like 10 pages of logging before completing a basic program, that's how you know it's bad
@DevNull-pb5fm
@DevNull-pb5fm 10 ай бұрын
Thanks for not turn this into a "how I make a full feature game engine in a weekend because I'm genius and figure everything out in a tackle" video. For those who had tried graphic engine APIs knows how challenging is to make a textured cube on the screen.
@lord-fishv7355
@lord-fishv7355 10 ай бұрын
dam youtube be telling on people with the most replayed bumb
@RoyaltyInTraining.
@RoyaltyInTraining. 10 ай бұрын
Talking to OpenGL is actually the easiest part of making a game engine. The hard part is building systems for meshes, textures, transforms, and scene trees around it in a way that is both robust and flexible at the same time. I'm at the point with my project where actual OpenGL code only makes up 10% of it, so I'm thinking about switching to Vulkan right away. It would actually make some things easier, since even the most recent OpenGL version is still somewhat stuck in the past conceptually.
@LuzuVlogsGamer
@LuzuVlogsGamer Жыл бұрын
Thats just how it is it becomes more complex but if you keep doing it eventually you will get the hang of it, some of it, its not only you I watch other people try and be disapointed how little they can do.
@idk_123_x
@idk_123_x Жыл бұрын
All my OpenGL homies hate apple for deprecating it on all apple devices. But jokes aside, OpenGL is great for starting with your graphics programming adventure. I was a part of a team writing a custom engine and a game. We tried to force Vulkan at the beginning of the project to make a "modern" engine, but after a month of stuggling with Vulkan we rewrote the entire month's progress in OpenGL in one day and finished the engine (and a game on it) in the next two months. It was a great experience. To sum it up: OpenGL and chill, Vulkan and existential crisis.
@stickzman
@stickzman Жыл бұрын
i think that's a huge first step
@nikykovalski5869
@nikykovalski5869 Жыл бұрын
"Most replayed"
@pcy113
@pcy113 10 ай бұрын
Good job for going so far ! I find the OpenGL documentation really hard to understand, but with a bit of reflection & some tutorials (from ThinMatrix on KZbin especially) I managed to create a small game engine using opengl, it currently handles shaders, materials, lighing, instancing, input, etc. I am currently working on the audio using OpenAL but it might take some time 😌
@MaxIzrin
@MaxIzrin Жыл бұрын
I used OpenGL and built a little 2d framework, animating sprites, collision using a texture, etc... Had Ayala from Chrono Trigger running around, it felt good when it finally worked. That was before Unity broke the market and offered all features for free starting with Unity 5, gotta give them props for that. People forget Unreal was expensive as hell, most engines were, until Unity broke the dam, didn't mess with OpenGL since.
@cadturt9295
@cadturt9295 Жыл бұрын
weird that I happened to see this while im taking my computer graphics course because this is exactly what ive done this semester, only got to the part where I can create artifacts and apply textures to them, and I dont see the class going any further.
@TeamUnpro
@TeamUnpro Жыл бұрын
the challenge of this is a lot more than most would think, but as you mentioned most of the difficulty comes from the requirement of memorizing openGL, unless you use an already existing library but thats boring xD its all about the learning
@AssassinIronMan
@AssassinIronMan 7 ай бұрын
Imagine the people that build *WHOLE OPERATING SYSTEMS!* that’s insane!
@thelavanation
@thelavanation 10 ай бұрын
The bump in viewer retention when DVA is in the video 😂
@LautaroQ2812
@LautaroQ2812 Жыл бұрын
This is completely out there, but I wonder if you could collab with Road to Vostok dev. He's also making a game by himself and as far as he told us in the dev videos, he was also rewriting stuff. Not sure if it was his own engine as well for the game because ~UNITY~ things, but something along those lines. And I find the idea interesting that the 2 of you suddenly come up with a basic yet robust new engine.
@sir.niklas2090
@sir.niklas2090 Жыл бұрын
Yeah I fell into this hole as well! Welcome to the fun, I have yet to progress. :'D EDIT - 6 months later: Started progressing 4 days ago, I have cool stuff.
@PoppsMadeThis
@PoppsMadeThis Жыл бұрын
Creating a game engine should be in everyone's bag you learn so much on how games are built and you can use any 3d software after they're all too similar.
@pro_gemer
@pro_gemer Жыл бұрын
The 3 month wait for a new garbaj video was worth it
@AdonijahFinch
@AdonijahFinch Жыл бұрын
I thought yesterday man its been a minute since I have seen a garbaj upload
@Pars3ly
@Pars3ly Жыл бұрын
the video is 4 minutes, i spent 10 minutes watching it. you guys probably know why
@atomictraveller
@atomictraveller Жыл бұрын
put it on 0.25 and do a gravity bong
@joeroeinski1107
@joeroeinski1107 10 ай бұрын
If you think OpenGL is hard, you never want to try Vulkan. Setting up OpenGL is trivial in comparison (except for loading functions but even then GLAD has you covered) as the driver and OS will initiate the context and client/server connection to the GPU. Vulkan requires creating instances, querying and selecting physical devices to create logical devices, manual memory management, graphics pipelines and caching and so many lower level details. But when done properly can result in extremely optimized and graphically impressive works like Doom Eternal.
@bandobandit353
@bandobandit353 Жыл бұрын
In first year at uni I decided it would be a good idea to apply math 101 and make a 3D engine from scratch without any OpenGL or DirectX. It worked some of the time and was dog slow. But it ran on Java for mobile in the age of dumb phones.
@no-ld3hz
@no-ld3hz Жыл бұрын
I recommend using assimp which supports a lot of formats and is easy to use. also look into basic shading (like phong and toon) as well as take a peak into deferred lighting. good work on the engine though, ive been personally expereimenting with vulkan which is like opengl but way more in-depth. My brain is toasted from it.
@GalaxVerse
@GalaxVerse Жыл бұрын
What happened to your game that was coming out? 💀
@mason-greylong4792
@mason-greylong4792 Жыл бұрын
It's good that you tried, but sounds like a nice project to come back to.
@sashabagdasarow497
@sashabagdasarow497 Жыл бұрын
I'm sure if you get to this project after a while you'll be 1000% better at it. Our brain needs time to understand things, sometimes, it's real time, like a month.
@ErsatzCoding
@ErsatzCoding 9 ай бұрын
If you really wanna get intimate with the graphics pipeline, write a software renderer.
@kryptermusic
@kryptermusic Жыл бұрын
I guess everyone starting with OpenGL does that. I started with a triangle and then I made a cube and then I copied and pasted a random .gltf importer. After that I left the project. It has been 1 year. I will come to it soon. The hardest part in OpenGL for me is lighting. I can't predict what calculus is OpenGL doing on the background.
@Entikai
@Entikai Жыл бұрын
Even though you use Godot, Unity price change motivated you to make your own engine.
@inpickle
@inpickle Жыл бұрын
Making your first OpenGL triangle is the equivalent to a blender doughnut.
@MahdiyDev
@MahdiyDev Жыл бұрын
Great! Also, I started learning opengl a few days ago
@emily_boop
@emily_boop 9 ай бұрын
a very interesting video and i love the conclusion of hey at least i made it :3
@MatheusKlSch
@MatheusKlSch Жыл бұрын
It took me 1 year until I was capable to create a basic OpenGL renderer on my own (kinda), 1 more year until I was capable of doing PBR stuff. Recently, my engine ended up being toast but gonna fix it, trying something less hardcore. OpenGL has some quirks, and works in a black-box kind of way which is annoying and difficult to debug, but as a complete API it's good enough for an indie. Trying to learn Vulkan as well, but the gigantic amount of boilerplate code is overwhelming and I don't have anything working nicely on it. Other APIs are kinda single-platform (DirectX, Metal) or unfinished (WebGPU, SDL GPU API), so in the end OpenGL is still the best option for indies or beginners. You can kinda simplify the stuff with wrappers or libraries such as sokol-gfx (wrapper for OpenGL/WebGL/DirectX/Metal for C/C++) or raylib (mini-engine/library for C/C++). There are other options for other languages as well (there are several bindings for raylib for example)
@RecursionIs
@RecursionIs Жыл бұрын
KZbin is such a meme
@nattythepanda4692
@nattythepanda4692 Жыл бұрын
Good to see you again, Garbaj!
@stickfigure31
@stickfigure31 Жыл бұрын
As far as "seeing under the hood", I've been going down this rabbit hole lately. Opengl is not the lowest level for graphics it's actually a fairly high level API for GPUs, next down would be interacting with a GPU with it's own internal api (I skipped pass this since the api apparently is not only different between brands, but also models/generations) and the lowest would be some form of software render like seen in early DOS games where the rendering is handled largely by the CPU and the EGA video cards were over glorified framebuffers to write to. I tend to do better learning from the bottom up, so I've been playing around with simple 2d graphics in software rendering. From what I understand to do 3d at this stage I could either do the sudo 3d of the 80s or in software do the camera transformation calculations then in software raster the results to screen, but I've been struggling to optimize my "vector graphics" (I have a function to calculate circles and lines, so when re-scaling they can be recalculated and look better then integer scaling). I'm holding off on the 3d stuff till my 2d is more optimized. I saw on reddit some people who go down this path for learning end up using openCL to take advantage of the parallel processing on their gpu for their software render without having opengl "do it for them", outside of learning apparently the downside of that approach is your sending the results of the calculations back to the CPU for it to raster to screen and the back/forth causes some latency. Though I couldn't find numbers for how much.
@willtheoct
@willtheoct Жыл бұрын
I think you talk a lot more than you actually know. 'low level' would be copper and sillicon, 'high level' is a complex model made up of low-level parts, be it AI or UI or a software ecosystem or game displays. Early 'low level' renders were assembly, which changes per video card. It was dumb and no one liked that. OpenGL is the unified spec that has the right instructions for a 3d world, and how low-level it is becomes obvious when you hit the instruction limit associated with it. OpenCL might be considered more high level, since you compute data and then it gets neatly presented to you so you can store it permanently. And you certainly shouldn't use it to render.
@SleepingFumos
@SleepingFumos Жыл бұрын
making a model loader is quite easy. just check the .obj file structure and then structure that data so that it fits your vertex specification.
@darkzeroprojects4245
@darkzeroprojects4245 Жыл бұрын
I too am trying to learn how to make one for paticular projects I have in mind. But Im wanting to use BGFX for one of them. I aim to make first 2 to run with low end hardware smooth as I can get it. Nice work sofar btw, hoping you start making it able to serve the games you want to do with it.
@RemotelyHuman
@RemotelyHuman Жыл бұрын
I remember when he made Godot tutorials. Many moons ago. The world has changed so much.
@Combinehuntsmanunit
@Combinehuntsmanunit Ай бұрын
its not difficult to make a rendering engine with opengl or a similar library if you know the math behind it. if you did not do some sort of advanced math in high school you may not have even learnt about half the things needed to fully understand it. still opengl is actually quite fun to work with and apart from debugging it is really satisfying to see your first render! if your wondering about making a game engine for your next game, go for it! (if you are competent at some languages like c, c++, c# or even java) also making a game engine will look very good on your resume, especially if its actually well put together!
@Pengin-yg1qx
@Pengin-yg1qx 6 ай бұрын
KZbin thumbnail tip: some people use dark mode so it may make your video blend in to the background so try to make the thumbnail pop out more
@blacxthornE
@blacxthornE Жыл бұрын
that is impressive... but are you sure you're not just procrastinating on your game
@smc_onetwo
@smc_onetwo 6 ай бұрын
Great explanation. Thank you
@Tenzalt
@Tenzalt 10 ай бұрын
Hey garbaj, could you please make a tutorial about making a first person aiming system like the one seen in metroid prime hunters? this feature is also known as "deadzone aiming" or "free aiming"
@TheMadProgrammersOfficial
@TheMadProgrammersOfficial 2 ай бұрын
the fact that thats the most replayed part
@alexanderstreng4265
@alexanderstreng4265 Жыл бұрын
I at first thought that you went with Vulkan which I would have applauded. I do recommend learning it or Webgpu since that api is a bit easier to learn than Vulkan but it is modern, cross platform and supports the web.
@notbillymays
@notbillymays Жыл бұрын
opengl should always be the first choice for a beginner, having such a large amount of control over the gpu is extremely stressful (even for experienced devs) and would be useless for a small project like this.
@alexanderstreng4265
@alexanderstreng4265 Жыл бұрын
Fair but I also suggested webgpu as an alternative since In my opinion it is a good middle ground between control & simplicity. You can get a triangle on the screen fairly quickly without doing a lot of setup code but you'll also learn concepts and current best practices of how to interact with the api.
@nolram
@nolram Жыл бұрын
DirectX 11 is also a great middle ground that offers very good CPU performance as well.
@notbillymays
@notbillymays Жыл бұрын
@@nolram its def the best choice if you want to cater specifically to windows
@nolram
@nolram Жыл бұрын
@@notbillymays Or Xbox (though they require DX12 now, but that's easy enough to port or layer) - and Linux with DXVK (DX11 -> Vulkan with DXVK is often faster than native OpenGL on Linux).
@lollipop.4784
@lollipop.4784 3 ай бұрын
joined the video, i have a small attention span so i skip to the most replayed area, and see dva's cheeks on my screen
Making Minecraft from scratch in 48 hours (NO GAME ENGINE)
16:38
Why Doom is Awesome: Binary Space Partitioning
26:25
ShreddedNerd
Рет қаралды 1,1 МЛН
Как Я Брата ОБМАНУЛ (смешное видео, прикол, юмор, поржать)
00:59
Натурал Альбертович
Рет қаралды 4,1 МЛН
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 29 МЛН
Players vs Pitch 🤯
00:26
LE FOOT EN VIDÉO
Рет қаралды 136 МЛН
I Created My Own Custom 3D Graphics Engine
26:29
Inkbox
Рет қаралды 112 М.
How Many Marbles Does it Take to Charge My Phone?
18:06
Engineezy
Рет қаралды 449 М.
Optimizing my Game so it Runs on a Potato
19:02
Blargis
Рет қаралды 657 М.
How A Steam Bug Deleted Someone’s Entire PC
11:49
Kevin Fang
Рет қаралды 1 МЛН
10 Minutes vs. 10 Years of Animation
19:29
Isto Inc.
Рет қаралды 1,2 МЛН
Programming Is Cooked
9:30
ThePrimeTime
Рет қаралды 173 М.
RenderWare: The Engine that Powered an Era | Retrohistories
8:42
Retrohistories
Рет қаралды 686 М.
I Made a Graphics Engine in Scratch
8:27
Zyger
Рет қаралды 194 М.
What does a Game Engine actually do?
16:45
Ellie Rasmussen
Рет қаралды 164 М.
Как Я Брата ОБМАНУЛ (смешное видео, прикол, юмор, поржать)
00:59
Натурал Альбертович
Рет қаралды 4,1 МЛН