Embedding Lua in C++ Part 3: Meh... Just use Sol...

  Рет қаралды 28,848

javidx9

javidx9

Күн бұрын

Пікірлер: 76
@FrodoAlaska
@FrodoAlaska 8 ай бұрын
Yeah, Javid's channel is a core part of a C++ programmer's toolbelt at this point. Not only are you videos calming and laid back (something that's hard to find these days), but you also have A LOT of interesting ideas in terms of projects. I can't tell you how many project ideas of yours I... uhhh... "borrowed" and implemented my own way. So, as a young programmer and a C++ connoisseur, thank you. And rock on!
@javidx9
@javidx9 8 ай бұрын
Rock on Frodo! 😂
@phutureproof
@phutureproof 7 ай бұрын
it's rare these days that someone says "a lot", so I wanted to hi 5 you for that 👍
@FrodoAlaska
@FrodoAlaska 7 ай бұрын
@@phutureproof Yeah I like saying a lot a lot.
@optimizt8555
@optimizt8555 8 ай бұрын
Sol is one of the first libraries where I realized modern C++ can be used to create great APIs; I was almost skeptical when I assigned C++ functions or objects to tables and it just worked on the other side without me needing to explicitly tell it much. A lot of other host languages can't eliminate huge chunks of the boilerplate in the same way because they don't have the same template machinery and type information that C++ does.
@outsider1st
@outsider1st 8 ай бұрын
and it's a total template hell, but it's still great :D
@noxagonal
@noxagonal 7 ай бұрын
​​@@outsider1stI think the complexity is partly historical. It can be made simpler however. Eg. Type packs are awesome but also pretty complex, I made my own TypeList class to help me interrogate and iterate over types. I think, incremental improvements is the way to go, at least with C++.
@lysy-zn2gg
@lysy-zn2gg 3 ай бұрын
Templates are blessing and a curse
@jcugnoni
@jcugnoni 8 ай бұрын
This video and Sol libraries are just so clear and easy to comprehend that I want to go back to my old c++ project and implement Lua scripting just for the fun of it ;-)
@motbus3
@motbus3 8 ай бұрын
Woooow. Happy to see OLC here. I hope family and you are doing well!
@javidx9
@javidx9 8 ай бұрын
Doing great thanks!
@delusionalaar4031
@delusionalaar4031 8 ай бұрын
Ugh, I love this series and your KZbin videos. I don’t know how to show any more appreciation other than just my words
@jsflood
@jsflood 8 ай бұрын
Great video! Sol library sure is greatly simplifying and unconfusinating the embedding of LUA to C++ for the programmer. Thank you Javid for sharing.
@solstice_enigma
@solstice_enigma 8 ай бұрын
Oh, I've been waiting for this! So thrilled to see more new videos on the channel, they're so informative and fun to watch. Hope that you are doing great.
@kyoai
@kyoai 8 ай бұрын
Sol is such a great wrapper for Lua, I can't imagine using Lua without it.
@HolyMethWizard
@HolyMethWizard 8 ай бұрын
On God, I didn't want to deal with embedding Lua. Sol was basically just plug and play
@Phroggster
@Phroggster 8 ай бұрын
It's nice to see a software video today that isn't talking about the ssh backdoor that just came to light. Thank you Javid, I greatly appreciate your upload and hope that you're doing well!
@ethanomical
@ethanomical 6 ай бұрын
This video came at the perfect time as I've just started making my own game engine. I was about the use the raw Lua C libraries but my word Sol is so intuitive!
@LucasAlmeida-ef9io
@LucasAlmeida-ef9io 8 ай бұрын
Sol is a great name for a Lua wrapper. It means "sun" in portuguese, and Lua means "moon"
@KerboOnYT
@KerboOnYT 7 ай бұрын
Always nice to see a OLC video and learn something. I hope you're well and thanks for making these when you have time
@gauravparvat5291
@gauravparvat5291 4 ай бұрын
Man, I love your videos and moderate paced teaching method. I'm not even c++ programmer.
@SYNAPSEdwl
@SYNAPSEdwl 8 ай бұрын
All the best Javid, thank you very much for your great work you did.
@yellowcrescent
@yellowcrescent 3 ай бұрын
Not sure how I missed SOL when I was implementing my own Lua integration a couple years ago, but it looks pretty neat. Stack manipulation for deeply nested tables and user types is extra painful, and it looks like it makes that much easier. Although my biggest annoyance is writing the C++ interface classes for Lua to use (eg. MyGameObject -> LuaMyGameObject), which I did in combination with a modified version of luna.hpp. This allowed me to instantiate and manipulate native C++ objects from within Lua, and allow Lua functions to return C++ objects (which would get transformed into the "real" object by its wrapper class). Edit: looks like you did cover that at the end. That is awesome. As a side note: my particular use-case for having Lua access C++ classes (but NOT create new objects itself) is for procedural generation functions that reference existing state information. So allowing Lua to perform lookups on other entities greatly simplifies the process, and allows defining "logic" snippets for various things or specifying some kind of level generation algorithm that can look up adjacent tiles, properties, etc.
@minirop
@minirop 8 ай бұрын
I have been using sol for years now and it's always a pleasure to use.
@oblivion_2852
@oblivion_2852 7 ай бұрын
Being able to just index into the table instead of having to play with the stack looks so useful
@charlesAcmen
@charlesAcmen 7 ай бұрын
Excuse me, i have a question for your previous video about cross platform c++ GUI framework which is called wxwidgets,i do not quite understand the whole rendering principle behind,i mean how can i control my rendering fps?using wxTimer or idleEvent?could you please tell me in detail about it,it really means a lot to me,because i have devoted so much time in investigating this framework including watching your video over and over agagin !!!!!!!!!!!!!!!!!!!!!!
@CybAtSteam
@CybAtSteam 8 ай бұрын
Very nice, i was not aware of the Sol library. This will come in handy :)
@huseyinkucuk3909
@huseyinkucuk3909 8 ай бұрын
Thanks Javidx9
@conrad6071
@conrad6071 7 ай бұрын
can believe the series updated
@alexandryuschenko3334
@alexandryuschenko3334 3 ай бұрын
Great video and library. Thanks!
@cadfoot568
@cadfoot568 8 ай бұрын
Better call Sol. Sorry I had to
@ohdude6643
@ohdude6643 7 ай бұрын
Give this man a proper drink! I salute you sir!
@xerox8521
@xerox8521 7 ай бұрын
It's Sol Goodman wrapper at Lua
@MoolsDogTwoOfficial
@MoolsDogTwoOfficial 8 ай бұрын
Love your channel mate!
@barellevy6030
@barellevy6030 8 ай бұрын
Don’t have time to watch today, just dropped to like and comment❤
@MrVinicius5000
@MrVinicius5000 8 ай бұрын
LOL i was just re-watching this series for some embeding ideas i was having XD
@amr3162
@amr3162 8 ай бұрын
didn’t realize that part 1 was 5 years ago, and had to scroll forever in the recent videos to find it 😅
@TurtleKwitty
@TurtleKwitty 8 ай бұрын
Very interesting library! Just wish you had shown off in that last segment what happens if lua gives in somethign invalid
@clementtarin9936
@clementtarin9936 7 ай бұрын
Nice you do video again... 🎉
@dhiahassen9414
@dhiahassen9414 6 ай бұрын
I have used kaguya library before fir lua in c++ and it is the best by far, it is header only and has much better api
@Maxjoker98
@Maxjoker98 8 ай бұрын
I've never used Sol in a project(not a C++ guy), but I'M very familiar with the regular Lua C API. But for best performance you should probably avoid non-standard library C function calls like the pest: When using LuaJIT the Lua and standard library functions are incredibly fast to call, since the compiler doesn't need to emit actual ABI calls, it can inline most functionality. Another trick somewhat related to that is using the LuaJIT FFI; Not to call C functions(since it also is slow due to ABI), but rather for it's data types. You can create C types(integers, pointers, arrays etc.), and access to those is really efficient(can be inlined by LuaJIT). My own graphics engine is Lua-only, with optional support for LuaJITs FFI for acceleration. Works really nicely.
@j.trades9691
@j.trades9691 7 ай бұрын
He gives a pretty good indirect argument _against_ using LuaJIT's FFI at 5:16 -- The FFI (even just C types, though giving access to most standard library functions also opens up its' own can of worms) actually open up a form of attack surface you normally wouldn't be able to achieve with Lua; for example, one could misuse a C pointer by manually setting the value to somewhere within the host binary's stack or heap and start messing around with the data, or even potentially call functions if they're in a vtable somewhere. Offhand, I recall a few cases of this in scripts for Morrowind's Script Extender, where the community hacked in Luajit support; I can't remember the exact name of the mod offhand, but there's one in particular that does some pretty gnarly manual pointer shenanigans to edit base game UI functions.
@Maxjoker98
@Maxjoker98 7 ай бұрын
@@j.trades9691 While the problem you describe is real, even Lua code "sandboxed" in that way can often be exploited, especially if you allow loading bytecode(which helps loading times) - For me, and most games, that is a non-issue though: Only trusted Lua code is ever run. And you can get better sandboxing with LuaJIT if you desire: Just create a small FFI binding to the Lua C API, and create completely separate and isolated Lua_State(doesn't even have to be LuaJIT). I think of LuaJIT as Lua 5.1 + optional C-like language. If you can't do it the Lua way, use the C way. If you can't do it the C way, do it the Lua way.
@4F6D
@4F6D 8 ай бұрын
He is back guys!
@michaelsherwin4449
@michaelsherwin4449 6 ай бұрын
Hi Javid, I can't find an example of what I am looking for. I want a C++ engine to run and display a game world. And computer player AI(s) written in a scripting language to be able to query the current game state and then tell the C++ engine what it wants to do. It can be turn based or real time. For example an author can write an AI to play Risk. It can then be an interesting opponent to have in the game or it can be entered in a tournament of other AIs. Or an online RPG can allow people to submit an NPC AI. It could be a villain or maybe 'someone' that can be hired to help the human player. The possibilities are endless and I wonder why it has not been done? Or has it?
@scififan698
@scififan698 8 ай бұрын
7:00 to print exception.what() to std output, do you have to wrap it into a string? I didn't know that... I would have hoped it already could print a char* just by itself. You live, you learn!!
@WatermelonMD
@WatermelonMD 8 ай бұрын
You don't have to. I looked up sol::error::what and it returns const char* which you can print directly to cout. I don't know why he casts it
@skejeton
@skejeton 7 ай бұрын
luaJIT is even simpler, you declare function prototype in the lua Script and implement it in C and it will somehow work, i don't know how
@japedr
@japedr 8 ай бұрын
28:10 well, technically you are giving it a pointer, not a reference
@burntt999
@burntt999 2 ай бұрын
i guess... i should watch the first two to have something to compare sol to..2(too? no) to
@abdo01386
@abdo01386 7 ай бұрын
How to fix the compilers bugs of dev c++?
@ondrakavan4119
@ondrakavan4119 8 ай бұрын
Great video and I have a question. Is there a way to have code completion in Lua? Like if you create a function in c++ and call it from Lua.
@javidx9
@javidx9 7 ай бұрын
Thanks! I'm not aware personally of any IDE that would be that sophisticated. It gets tricky because you can effectively create lua things at runtime, so the code completion would be partial at best.
@simonfarre4907
@simonfarre4907 5 ай бұрын
You said in Part 2 a few years ago you would show in Part 3 how to use smart pointers in embedded lua. Does this video or any of your other videos show any examples?
@moose-3379
@moose-3379 7 ай бұрын
How close is the community to convincing Javid to use vcpkg? 😁
@hoangbao2273
@hoangbao2273 26 күн бұрын
Please make a video show how to debug the Lua script file that is embedded
@TECHN01200
@TECHN01200 8 ай бұрын
I'm curious about the &TypeName::fieldName syntax. What does that do?
@TinyLittleEnormous
@TinyLittleEnormous 8 ай бұрын
It gives you the offset of the member from the base adress of the struct / class.
@Blackoutfor10days
@Blackoutfor10days 8 ай бұрын
Can you make an operating system like windows 😊
@uriid1
@uriid1 8 ай бұрын
I love lua :)
@hudsonator7259
@hudsonator7259 7 ай бұрын
Wheres ep. 2?
@harleyspeedthrust4013
@harleyspeedthrust4013 8 ай бұрын
better call sol
@Raspredval1337
@Raspredval1337 8 ай бұрын
btw, why don't you use luajit? It's supposed to be 'much faster' that plain lua. 🤔
@ucmRich
@ucmRich 7 күн бұрын
Could you show us how to embed JavaScript in C++ pwweeaaase ^_^
@averageengineeer
@averageengineeer 8 ай бұрын
Is the same possible with Python ?
@samuelhulme8347
@samuelhulme8347 7 ай бұрын
Yes, but I think it’s more complicated to include in your project.
@wolpumba4099
@wolpumba4099 8 ай бұрын
*Embedding Lua in C++ with Sol: A Compare and Contrast* This video compares and contrasts embedding Lua in C++ with and without the Sol library. Part 1 of the series covered a bare-bones implementation, while this video demonstrates Sol's advantages. *Introduction and Setup (**0:00**)* * This video is part 3 of a series on embedding Lua in C++. * It showcases the Sol library as a superior alternative to the manual approach shown in Part 1. * Sol simplifies Lua integration and offers various benefits, including safety features and reduced boilerplate code. * The video uses the same Lua script and C++ code from Part 1 for comparison. * Setting up Sol involves downloading the library and linking it to your project. *Configuring the C++ Environment (**1:48**)* * Sol streamlines configuration by handling Lua interaction through its interface. * Sol allows explicit selection of Lua libraries to expose to the user, reducing the attack surface. * Sol offers header-only inclusion for convenience. *Running Lua Scripts (**3:46**)* * Sol provides a `safe_script` function to execute Lua scripts with robust error handling and informative messages. * This contrasts with the manual approach, which required custom error checking and stack manipulation. *Reading Variables (**6:51**)* * Sol's `get_or` function simplifies reading variables from Lua scripts with default values and type conversion. * Sol also offers `optional` for checking variable existence without throwing exceptions. * This approach is safer and more convenient than manually checking the Lua stack. *Reading Tables (**11:14**)* * Sol allows iterating through Lua tables using C++-style for loops and accessing key-value pairs. * Sol objects can be easily converted to desired C++ types. * Sol offers direct table indexing for accessing specific values. *Calling Lua Functions from C++ (**15:03**)* * Sol allows calling Lua functions directly with arguments and automatic return value handling. * This eliminates the need for manual stack manipulation and error checking. * Sol's `protected_function` provides additional safety by checking function validity before execution. *Calling C++ Functions from Lua (**20:17**)* * Sol enables injecting C++ functions into the Lua environment using lambdas. * This simplifies the process compared to the manual approach of registering functions and managing the stack. *Injecting Values and Functions into Lua (**22:35**)* * Sol allows creating new Lua variables and functions directly from C++. * The `script` function enables executing arbitrary Lua code within the C++ program. *Mapping C++ Types to Lua (**23:58**)* * Sol's `new_usertype` function facilitates mapping C++ structs to Lua objects with custom constructors and property access. * This allows creating and manipulating C++ objects directly from Lua scripts. *Using C++ Containers in Lua (**27:45**)* * Sol provides bindings for standard C++ containers like vectors, allowing their use within Lua scripts. * This enables populating and manipulating C++ containers directly from Lua. *Conclusion (**30:15**)* * Sol offers a powerful and intuitive way to embed Lua in C++ projects. * Its features significantly reduce boilerplate code, improve safety, and enhance flexibility. * The video encourages viewers to explore Sol and its capabilities further. Disclaimer: i used gemini 1.5 pro to summarize the transcript Token count 8,845 / 1,048,576
@desertfish74
@desertfish74 8 ай бұрын
Summarize?? It basically returned a full transcript
@wolpumba4099
@wolpumba4099 8 ай бұрын
@@desertfish74 The transcript has 6037 words, the summary 516.
@KeithKazamaFlick
@KeithKazamaFlick 8 ай бұрын
vimto
@sadhappy8860
@sadhappy8860 8 ай бұрын
Hello,
@joseoncrack
@joseoncrack 8 ай бұрын
Meh, just use C. ;)
@gsestream
@gsestream 8 ай бұрын
lambda syntax is not very clear. simple as always is the best. explicit is better than implicit.
@veronikedearmore1347
@veronikedearmore1347 7 ай бұрын
🤣 *Promosm*
Introducing 2D Geometry Library
20:52
javidx9
Рет қаралды 51 М.
Embedding Lua in C++ #1
35:33
javidx9
Рет қаралды 177 М.
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 127 МЛН
Is C++ better than C?
1:46:10
Tsoding Daily
Рет қаралды 50 М.
Stop using std::vector wrong
23:14
The Cherno
Рет қаралды 149 М.
Back To Basics: C++ Containers
31:41
javidx9
Рет қаралды 188 М.
Back To Basics! Fixed Point Numbers in C++
31:24
javidx9
Рет қаралды 62 М.
Why Is Lua So Popular?
8:03
Awesome
Рет қаралды 99 М.
"Clean" Code, Horrible Performance
22:41
Molly Rocket
Рет қаралды 910 М.
The standard library now has all you need for advanced routing in Go.
13:52
Tinkering With Spirographs in C++
22:01
javidx9
Рет қаралды 21 М.
Automating Sequences via Lua Coroutines in C++
45:23
javidx9
Рет қаралды 59 М.