Also, would I have to wrap SFML to Lua to do something like:
Code: Select all
RenderWindow.Draw(SomeSprite);
Moderator: Coders of Rage
Code: Select all
RenderWindow.Draw(SomeSprite);
Code: Select all
int SetPlayerHP(lua_State *l) {
// Get the first argument passed from lua
int amount = lua_tointeger(l,1);
// Set the players HP to the value we retrived from lua
GameManager::GetInstance()->Player.SetHP(amount);
return 0;
}
// This should be called in when the game is initialized
void ExportFunctions() {
// Register the function
lua_register( LuaState, "SetPlayerHP", SetPlayerHP );
}
Code: Select all
SomeNPC = AddNPC()
Code: Select all
RemoveNPC(SomeNPC)
Code: Select all
Dbg = GE.Debug:GetInstance()
Dbg:Init()
Dbg:Print("A Message")
Ok from what I've heard tolua and tolua++ generates a .PKG file that you open in a lua state, so looking at a few tutorials should explain this pretty easily.epicasian wrote:Thanks for telling me, and I definitely recommend using toLua, it's hella easy.
--edit-- I've got a debug singleton, but I don't know how I would create it in Lua. I've tried:
My GetInstance() returns a static Debug instance, my Init() opens a file and my Print() prints to the fileCode: Select all
Dbg = GE.Debug:GetInstance() Dbg:Init() Dbg:Print("A Message")
And what is wrong with this approach? What is the Lua error? That's exactly how we handle quite a bit of stuff in the ES engine.epicasian wrote:Thanks for telling me, and I definitely recommend using toLua, it's hella easy.
--edit-- I've got a debug singleton, but I don't know how I would create it in Lua. I've tried:
My GetInstance() returns a static Debug instance, my Init() opens a file and my Print() prints to the fileCode: Select all
Dbg = GE.Debug:GetInstance() Dbg:Init() Dbg:Print("A Message")