2017-08-25 02:39:02 +08:00
|
|
|
#define SOL_CHECK_ARGUMENTS 1
|
2013-12-17 00:17:33 +08:00
|
|
|
#include <sol.hpp>
|
2017-04-03 04:10:00 +08:00
|
|
|
|
2017-12-26 12:27:22 +08:00
|
|
|
#include "assert.hpp"
|
2013-12-17 00:17:33 +08:00
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
2014-01-19 11:59:59 +08:00
|
|
|
// shows how to load basic data to a struct
|
|
|
|
|
2013-12-17 00:17:33 +08:00
|
|
|
struct config {
|
|
|
|
std::string name;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
void print() {
|
|
|
|
std::cout << "Name: " << name << '\n'
|
|
|
|
<< "Width: " << width << '\n'
|
|
|
|
<< "Height: " << height << '\n';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int main() {
|
2017-12-26 21:04:54 +08:00
|
|
|
sol::state lua;
|
2016-08-11 08:39:30 +08:00
|
|
|
config screen;
|
|
|
|
// To use the file, uncomment here and make sure it is in local dir
|
2017-12-26 21:04:54 +08:00
|
|
|
//lua.script_file("config.lua");
|
2016-08-11 08:39:30 +08:00
|
|
|
lua.script(R"(
|
|
|
|
name = "Asus"
|
|
|
|
width = 1920
|
|
|
|
height = 1080
|
|
|
|
)");
|
2017-12-26 21:04:54 +08:00
|
|
|
screen.name = lua.get<std::string>("name");
|
|
|
|
screen.width = lua.get<int>("width");
|
|
|
|
screen.height = lua.get<int>("height");
|
2017-12-26 12:27:22 +08:00
|
|
|
c_assert(screen.name == "Asus");
|
|
|
|
c_assert(screen.width == 1920);
|
|
|
|
c_assert(screen.height == 1080);
|
2016-08-23 10:45:06 +08:00
|
|
|
|
2016-08-11 08:39:30 +08:00
|
|
|
std::cout << "=== config example ===" << std::endl;
|
|
|
|
screen.print();
|
|
|
|
std::cout << std::endl;
|
2013-12-17 00:17:33 +08:00
|
|
|
}
|