OOP in Pure C

  Рет қаралды 55,841

Tsoding Daily

Tsoding Daily

21 күн бұрын

Streamed Live on Twitch: / tsoding
Enable CC for Twitch Chat
Panim Playlist: • Panim
Support:
- BTC: bc1qj820dmeazpeq5pjn89mlh9lhws7ghs9v34x9v9
- Pay for my VPS: zap-hosting.com/en/shop/donat...

Пікірлер: 163
@demolazer
@demolazer 20 күн бұрын
I read the book clean Architecture. It has a great section near the beginning about programming paradigms where the author shows how you can implement all the OOP behavior in C. Very fascinating
@JoseDaviCorreiaPassos
@JoseDaviCorreiaPassos 20 күн бұрын
​​@@user-ji6ip7ou8djust read again and you Will find the nome of the book
@cslearn3044
@cslearn3044 20 күн бұрын
Bruh ​@@user-ji6ip7ou8d
@lowlevelcodingch
@lowlevelcodingch 20 күн бұрын
@@user-ji6ip7ou8d He literally said it
@AbdessamadBelm
@AbdessamadBelm 19 күн бұрын
Can u please provide the full title of the book
@skeleton_craftGaming
@skeleton_craftGaming 19 күн бұрын
People think this is some sort of Revelation, all of your OOLs compilers/interpreters are written in C [or c++ which's compiler was written in C originally]
@miroaja1951
@miroaja1951 19 күн бұрын
BREAKING NEWS: c programmer discovers dynamic dispatch in the lord's year 2024
@tripplefives1402
@tripplefives1402 19 күн бұрын
@30:36 I started learning C from reading the manual for LCC-win32 IDE as a PDF on an Palm PDA while on night shift. It even explained how to do win32 api stuff from scratch.
@user-hk3ej4hk7m
@user-hk3ej4hk7m 19 күн бұрын
Wouldn't be a C video without a segfault 10 minutes in
@Brad_Script
@Brad_Script 15 күн бұрын
you wouldn't be coding anything significant if you never get segfaults
@user-hk3ej4hk7m
@user-hk3ej4hk7m 15 күн бұрын
​@@Brad_Script Yes, in C you wouldn't. Anything remotely useful is segfault galore.
@araarathisyomama787
@araarathisyomama787 14 күн бұрын
​@@user-hk3ej4hk7m Is your OS a segfault galore?
@user-hk3ej4hk7m
@user-hk3ej4hk7m 14 күн бұрын
​@@araarathisyomama787 You must be confused, I don't develop OS'. Running production ready software is not the same as developing it.
@juanmamani2110
@juanmamani2110 19 күн бұрын
absolutely agree with your phrase "you can do anything in C"
@garryiglesias4074
@garryiglesias4074 18 күн бұрын
No, you can't do "generics" (meta programming).
@filip14528
@filip14528 18 күн бұрын
@@garryiglesias4074 You could write a c program that inputs c code with generics and outputs c code
@gumz4183
@gumz4183 17 күн бұрын
@@garryiglesias4074 the video is literally about implementing oop in C. You think the same can’t be done for generics?
@garryiglesias4074
@garryiglesias4074 17 күн бұрын
@@gumz4183 Show me. Make some template, please. (Some context: I program in C for more than 30 years, and I've done full GUI in OOP/C for video games in 1997... So you won't be taken by surprise...)
@RandomGeometryDashStuff
@RandomGeometryDashStuff 17 күн бұрын
@@garryiglesias4074macro like arena_da_append?
@GaryChike
@GaryChike 17 күн бұрын
Very nice! Reminds me of an article on Quora on "Object-Oriented Programming in C: A Deep Dive" by Khanno Mikhail: "...there are actually THREE ways to accomplish OOP in C (aptly named): Open style. Pointer style. and GTK style (GObject style). There are also three ways to apply function/method polymorphism in C as well: Struct style. Disjoint style. and Interface style ..."
@user-uf4rx5ih3v
@user-uf4rx5ih3v 19 күн бұрын
A very interesting idea and quite elegant implementation! It's rather amazing that hot reloading can work so well in a typed and compiled language like C that doesn't have much features. I wish modern languages put some thought on making this a feature because it is so convenient for creating web servers, gui's and other highly interactive and visual applications.
@Jack_in_the
@Jack_in_the 20 күн бұрын
are the captions the live chat?? that's cool af
@user-pm2ru6ir6n
@user-pm2ru6ir6n 19 күн бұрын
Why do I need a chat if I came to watch/listen to the streamer. The streamer is interested in this, but the audience is not...
@nothappyz
@nothappyz 19 күн бұрын
​@@user-pm2ru6ir6n yeah this doesn't really make sense. Perhaps it's just a proof of concept
@adokce
@adokce 19 күн бұрын
@@user-pm2ru6ir6n exactly why it's great. if anyone cares, they can turn on the captions. they are not hard-embedded in video
@lolcat69
@lolcat69 18 күн бұрын
​@@user-pm2ru6ir6n Maybe, just maybe, it us because in a stream, the streamer talks with the chat, and reads it, and people recommend him to do X or Y and he tells why yes or why not to do it that way, and if you can't read that then it makes no sense? Just saying
@neshkeev
@neshkeev 20 күн бұрын
It only makes sense to define the Task struct's function members to accept Task itself so it looks similar to `self` in Python and besides you can call other task's functions from a Task's function
@asakhar
@asakhar 18 күн бұрын
Tsoding, you don't actually need a dynamic array for vtable, or even register it at runtime, just store it in global library plain array variable and define it inplace. This way "dynamicness" is achieved through loading the lib itself, you just recompile the lib itself and vtable gets reloaded, then you just resolve it like you already do with function symbols. This way you can add vtable entries, but can't reorder or delete stuff from that just like in your implementation. I can provide an example via PR but unfortunately can't find public repo of panim, please consider making it public so people like me can f around with it)
@Do_It_Stupidly
@Do_It_Stupidly 20 күн бұрын
I've been waiting for this for a loooong time😭
@garryiglesias4074
@garryiglesias4074 18 күн бұрын
But it's a well known knowledge since the 70's...
@bbq1423
@bbq1423 19 күн бұрын
The boilerplate in C for the animal example could have been a bit smaller if you would have stuck to what C++ does a bit closer. In C++ it would inline the dog and cat data into the same allocation as for animal, meaning Animal effectively becomes a "Animal_Methods**" with some extra data to the right of it. Dog and Cat would also need the vtable pointer in the struct definitions, but this could be mitigated via the use of the butterfly technique in the utility methods. Initialization code for the tags could also be simplified if you used the C++ approach.
@blastygamez
@blastygamez 20 күн бұрын
Nice, see all you need is C and a Tsoding
@OCTAGRAM
@OCTAGRAM 15 күн бұрын
When Tsoding does C, it's not C but Ts
@zetroks
@zetroks 19 күн бұрын
Это замечательно! С удовольствием посмотрел на всю эту дичь. На удивление это крайне просто работает. Никогда не пытался имплементить что-то такое в своей жизни, максимум все заканчивалось указателями на функции, по причине ненадобности. Но какой же классный видос
@shakkar23
@shakkar23 19 күн бұрын
For the tag implementation, you can make the tag an enum, as well as make the data a union of pointers to the types that inherit it, this allows the vtable to be off of the heap as you now know the size in compile time, as well as you can use designated initializers to have a more well defined offset of all of the pointers for your vtable.
@Adoblem
@Adoblem 15 күн бұрын
😊😊😊😊😊😊
@DVRC
@DVRC 13 күн бұрын
Looking at old codebases I've seen many cases of OOP in C: - Sun Pixrect is a low level library for drawing on the framebuffer, and for each framebuffer there is a different implementation. At the creation of a Pixrect object, it is dispatched with the function table to manipulate it - Still from Sun, X/NeWS has a graphics library called Shapes, that replaced the CScript (the PostScript graphic layer) + Pixrect combo, and it has plenty of macros to declare classes in C and dispatch all the methods. This package handles shapes, paths and framebuffers - At CMU, a preprocessor called "Class" was made for the Andrew project. It enriched C with Object-Oriented specific syntax (similar but different from both C++ and Objective C). I guess this was used for the Andrew Toolkit and other applications of the suite
@john.darksoul
@john.darksoul 19 күн бұрын
Where is the book, Zozin? Where is it? You'd never give it to an ordinary citizen!
@martinparrish5392
@martinparrish5392 18 күн бұрын
There is no book, only Zuul!
@Mentox2
@Mentox2 20 күн бұрын
Unfathomably cool.
@kibels894
@kibels894 19 күн бұрын
Could you also solve it by getting the arena from the main executable's memory space? Or does that only ensure the pointers aren't unreachable, but they will still be garbage after reloading?
@SaidMetiche-qy9hb
@SaidMetiche-qy9hb 19 күн бұрын
Now your bottleneck is the compiler being slow lol
@kibels894
@kibels894 19 күн бұрын
Nice that turned out really clean.
@kikawet
@kikawet 18 күн бұрын
Is there any source code access so far? I am struggling a bit following all these concepts about virtual tables and wanted to take a look into it directly
@anon_y_mousse
@anon_y_mousse 8 күн бұрын
Honestly, at this point it's kind of scary how similar my data structures library was to your OO in C code. Also, quite similar to the code I would hand students that asked for homework help in the chat room I frequented. For some reason, they were constantly asking for help with linked lists. So I wrote a joke implementation which perfectly demonstrated the concept and worked without any errors but was a giant stream of FOAD's in various forms and at one point even had a little poem. I really miss Yahoo chat rooms. Those were some of the best times I spent online. Even found a really awesome MUD through various people back then. I really wish I could remember the address or name of it because it was an amazingly detailed MUD that allowed you to dismember your enemies and even cook their bits over a fire. Who knows, maybe I'll write one myself. As to the original subject, I think you should write a proper animations programming language and implement a VM to run it. I already know you won't, but I think you should.
@MohammedShuayb
@MohammedShuayb 19 күн бұрын
I like this guy irl like this guy ! Keep it up bro
@velikanskaglava2087
@velikanskaglava2087 20 күн бұрын
Thank you!
@tripplefives1402
@tripplefives1402 19 күн бұрын
What do we do if the toilet code has a stack overflow?
@satyajeetjena6758
@satyajeetjena6758 20 күн бұрын
2 uploads in one day😮😮😮😮
@pedrokalil4410
@pedrokalil4410 17 күн бұрын
Oh my god, you launched this video right as i am making async oop in C. Tho i am making it more as an general purpose language (i think i will create my lang and transpile to this subset of c i created)
@drdca8263
@drdca8263 19 күн бұрын
56:06 : I don’t understand why registering task wait wasn’t just added to the task_vtable_rebuild procedure?
@bbq1423
@bbq1423 19 күн бұрын
Now that you have a way to run tasks in parallel.. Time for multicore support in nob?
@ahmadzaklouta
@ahmadzaklouta 9 күн бұрын
Do you have any videos explaining OOP in C and desing pattern from the beginning
@StevenMartinGuitar
@StevenMartinGuitar 16 күн бұрын
Honestly seeing classes and virtual methods implemented in C was really freaking cool
@ThatGuy-fq8cn
@ThatGuy-fq8cn 18 күн бұрын
Congrats you invented GObject
@jannemyllyla1223
@jannemyllyla1223 19 күн бұрын
This kind of code not only exists, it is being standarized (there is upcoming ble smart toilet profile).
@tandeepdas9211
@tandeepdas9211 15 күн бұрын
The best reply from the Gate_Keeper👍
@kenneth_romero
@kenneth_romero 19 күн бұрын
i tried doing this with specialized types with Odin but for a game framework. couldn't get it working though, probably misunderstood something.
@ddruganov
@ddruganov 18 күн бұрын
it seems as though you do not use any kind of lsp, is that intentional?
@kaotiskhund
@kaotiskhund 19 күн бұрын
Thank you! For inspiration and laughs! Proposal: maybe animals poop in various places. Abstract the toilet?
@RandomGeometryDashStuff
@RandomGeometryDashStuff 17 күн бұрын
59:15 by "no code" do you mean Node_graph_architecture (wikipedia)?
@hubstrangers3450
@hubstrangers3450 12 күн бұрын
Thank you....
@matthijshebly
@matthijshebly 19 күн бұрын
Professor Dr Tsoding, lead researcher in the field of Scatology
@leshommesdupilly
@leshommesdupilly 19 күн бұрын
Man, I can't wait to see c adding classes
@snowcrash-
@snowcrash- 19 күн бұрын
I love your content dude it's just so good.
@SeishukuS12
@SeishukuS12 19 күн бұрын
I played around with something similar a number of years ago, it's kinda fun... Not *super* practical, but fun. Though these days, I do still kind of lay out my data and functions in a similar manner, just without the "virtual functions"/function pointers... So if I ever become unlazy, I can just toss everything into classes and be with the hipsters and use C++. :D
@SeasonalMike1
@SeasonalMike1 19 күн бұрын
Why did i click this video. Obviously i'm not gonna watch a 2 hour video at 12:57pm, also i have to wake up at 7am for school.
@aemogie
@aemogie 19 күн бұрын
am?
@sortof3337
@sortof3337 19 күн бұрын
@@aemogie its literally 1 am. his brain is clearly borked. :)
@aidennwitz
@aidennwitz 19 күн бұрын
how did not watching the video go?
@Maverick56912
@Maverick56912 19 күн бұрын
you're so lucky. I've to wake up at 6am 😢
@SeasonalMike1
@SeasonalMike1 18 күн бұрын
@@aidennwitz pretty cool, decided to watch a minecraft creepypasta at 2am instead :)
@skeleton_craftGaming
@skeleton_craftGaming 19 күн бұрын
C++ is not an object oriented language, you can do oop like things in c++ but when you strip away the abstractions you just get C [which is why it is so fast; I say in regards to objects specifically] A C++ programmer... Thats who wrote the Vtable wiki page...
@delicious_seabass
@delicious_seabass 19 күн бұрын
Heresy!
@user-di9jq1oe3i
@user-di9jq1oe3i 20 күн бұрын
Как ты зумишь экран?
@jiraibozo
@jiraibozo 18 күн бұрын
0:08 The APNIM
@apenaswellignton
@apenaswellignton 20 күн бұрын
Pog
@OCTAGRAM
@OCTAGRAM 15 күн бұрын
The most advanced OOP in C was in IBM System Object Model
@CoderDBF
@CoderDBF 16 күн бұрын
Dude, seriously, I would buy your book.
@AloisMahdal
@AloisMahdal 18 күн бұрын
A huge problem with OOP is that virtually all basic tutorials go right away into stuff like inheritance and abstract classes, but in reality you should avoid that as much as possible (use interfaces and composition in 99% of cases). Then there's a ton of stuff such as composition, solid and "OOP design patterns" and *some* part of Clean Code... Lot of it is actually useful and applicable to most languages, OOP or not.
@zeno7905
@zeno7905 14 күн бұрын
GATEKEEPER!! Give me the book NOW!!!
@ddruganov
@ddruganov 19 күн бұрын
1:14:33 bruh that caught me off guard
@_ami_dad_3289
@_ami_dad_3289 18 күн бұрын
using enum for indexs and naming of methods seems to be easier for me
@newbiex11
@newbiex11 11 күн бұрын
it's not easy to just use c++?
@theevilcottonball
@theevilcottonball 16 күн бұрын
I just discovered that Chat is in the subtitles. Make of that what you will.
@tianned
@tianned 19 күн бұрын
That’s so cool omg
@TheBusttheboss
@TheBusttheboss 14 күн бұрын
Based Emacs user.
@xarax7950
@xarax7950 20 күн бұрын
How did you make constructor and destructor in C ??? video is long ...
@IgneousGorilla
@IgneousGorilla 19 күн бұрын
Probably malloc and free? Lol
@xarax7950
@xarax7950 19 күн бұрын
​@@IgneousGorillamalloc free MANUALY it's not a constructor and destructor !
@tripplefives1402
@tripplefives1402 19 күн бұрын
@@xarax7950 You have to allocate the struct first then invoke an init function, which can be placed inside of a create function so you invoke one function which performs the task of being a constructor.
@javierflores09
@javierflores09 19 күн бұрын
@@xarax7950 how are constructor and destructors not manual, there's nothing automatic about them
@johnsonogbu8697
@johnsonogbu8697 18 күн бұрын
I left python to be here. I want to know and learn how it all started. Thank you tsoding.
@walkertest7503
@walkertest7503 19 күн бұрын
Wait it's all struct...
@skittle72
@skittle72 20 күн бұрын
hell nah💀
@senbonzakura662
@senbonzakura662 19 күн бұрын
What a waste of time lol
@error-4518
@error-4518 20 күн бұрын
zozin should write a book about how to google, name it "art of googling" or something.
@patchy-oss
@patchy-oss 20 күн бұрын
no
@xProsek
@xProsek 20 күн бұрын
13:18 ofc we know vtable ;P 26:33 maybe 2d and 4d to make it obv for newbies Thx
@FrankTinsley
@FrankTinsley 19 күн бұрын
Wait so… OOP is good afterall??
@brambasieldev
@brambasieldev 20 күн бұрын
1:31:27 out of context zozin when?
@vkatasonov
@vkatasonov 18 күн бұрын
Не буду спрашивать почем и откуда «стимуляторы», но программируя на Си всего полгодика чистого времени, понимаю, что с Си и сознание расширять не надо;)
@BugbountyPOCs41
@BugbountyPOCs41 19 күн бұрын
i see arch with dwm
@Protoex
@Protoex 17 күн бұрын
Why do some people dislike OOP ? I'm aware of the problems related to performance, but other than that, I don't know.
@twitchy9948
@twitchy9948 20 күн бұрын
I lost it at 1:50:50 XD
@JoshuaF.
@JoshuaF. 20 күн бұрын
what a da fu
@nil0bject
@nil0bject 19 күн бұрын
i hate that vtable thing. just use generic objects instead of reinventing the wheel for everything
@mashroom_
@mashroom_ 19 күн бұрын
just use Vala bruv
@levvayner4509
@levvayner4509 19 күн бұрын
I have full control of what languages I use, what paradigms I use, etc. And OOP is not click-bait; it is a very logical way to program, creating analogies from the real world of objects that have properties and actions or methods. I didn't watch the whole podcast, but if you wanted to write your squares as OOP, The squares would contain their own position on the screen, and expose methods like Move(x,y) Color(color) and whatever else you'd want to do with them.
@GiammarcoAgazzotti
@GiammarcoAgazzotti 19 күн бұрын
very cool C stuff and a very good programming exercise as long as you just want to fiddle around and have fun. for any real world need c++ has you covered in a safer way already (and I'm sure we all know this)
@user-rd6we5hx7c
@user-rd6we5hx7c 20 сағат бұрын
lmao your i3status
@leshommesdupilly
@leshommesdupilly 19 күн бұрын
You should call it "c = c + 1"
@valshaped
@valshaped 20 күн бұрын
Nice object oriented shitposting
@VictorPK100
@VictorPK100 19 күн бұрын
Do not try and read the book. That's impossible. Instead... only try to realize the truth. There is no book.
@babenoff
@babenoff 19 күн бұрын
Покажи нам лучше Хороший Язык Программирования
@user-zp9su9lf6q
@user-zp9su9lf6q 19 күн бұрын
Хороший Учебный Язык
@babenoff
@babenoff 19 күн бұрын
@@user-zp9su9lf6q извините, перепутал, точняк.
@Kyoz
@Kyoz 19 күн бұрын
🤍
@OneMilian
@OneMilian 19 күн бұрын
I don't need as much specific programming paradigm's as i need good filenames and a clean order. Edit: specific
@pemrograman-cepat3393
@pemrograman-cepat3393 19 күн бұрын
OOP in C?? Cool 😮😮😮
@Randy_McShandy
@Randy_McShandy 18 күн бұрын
Hot reloading AKA Shared Object Oriented Programming, we love SOOP
@sabitkondakc9147
@sabitkondakc9147 19 күн бұрын
I love C, however freedom has consequences.
@ahmedbogaterov9775
@ahmedbogaterov9775 20 күн бұрын
FIRST
@elirannissani914
@elirannissani914 20 күн бұрын
First
20 күн бұрын
🫡
@pemrograman-cepat3393
@pemrograman-cepat3393 19 күн бұрын
Bro, can you make chess engine in C? Chess is happening right now 😅
@OlivierDALET
@OlivierDALET 18 күн бұрын
This cactoos thing looks far more like functional programming than oop... Remove all then useless 'new' and you have classic lazy evaluated functions composition. Similar to .net's linq as well.
@sanalyny2807
@sanalyny2807 19 күн бұрын
Я ахуел, когда он недавно на русском заговорил.
Why do C Programmers Always Obfuscate Their Code?
2:01:57
Tsoding Daily
Рет қаралды 43 М.
Async Engine in C
3:12:16
Tsoding Daily
Рет қаралды 38 М.
ELE QUEBROU A TAÇA DE FUTEBOL
00:45
Matheus Kriwat
Рет қаралды 20 МЛН
I Need Your Help..
00:33
Stokes Twins
Рет қаралды 138 МЛН
Hot Code Reloading in C
2:16:18
Tsoding Daily
Рет қаралды 59 М.
the new PS4 jailbreak is sort of hilarious
12:21
Low Level Learning
Рет қаралды 512 М.
Why I Like Programming in C.
3:16
Francisco Jinto Fox
Рет қаралды 16 М.
Linux File System/Structure Explained!
15:59
DorianDotSlash
Рет қаралды 4 МЛН
My Initial Impresson Of Go
12:39
TheVimeagen
Рет қаралды 62 М.
I fixed Lua
2:16:48
Tsoding Daily
Рет қаралды 43 М.
The Most Legendary Programmers Of All Time
11:49
Aaron Jack
Рет қаралды 515 М.
Global Variables in C++... not as easy as it seems
18:25
The Cherno
Рет қаралды 58 М.
Ditch your Favorite Programming Paradigm
6:08
Code Persist
Рет қаралды 147 М.
how Google writes gorgeous C++
7:40
Low Level Learning
Рет қаралды 759 М.
Apple watch hidden camera
0:34
_vector_
Рет қаралды 51 МЛН
A Comprehensive Guide to Using Zoyya Tools for Photo Editing
0:50
ПК с Авито за 3000р
0:58
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 1,4 МЛН
POCO F6 PRO - ЛУЧШИЙ POCO НА ДАННЫЙ МОМЕНТ!
18:51
Куда пропал 3D Touch? #apple #iphone
0:51
Не шарю!
Рет қаралды 649 М.