Thanks

Moderator: Coders of Rage
Looked at that thread, it might be me just overcomplicating things ( I'm very good at ) but I can't even get the source files to compile from my project I still get link errorsavansc wrote:http://elysianshadows.com/phpBB3/viewto ... art=999999
Anyways,should not be to hard. Dont they use scons as it is...?
edit: also, you might wanna check out angel script as an alternative. its very nice.
Code: Select all
LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library
LuaState.obj : error LNK2019: unresolved external symbol _tolua_open referenced in function "public: void __thiscall MainLuaState::Initialize(void)" (?Initialize@MainLuaState@@QAEXXZ)
toluabind.obj : error LNK2001: unresolved external symbol _tolua_open
toluabind.obj : error LNK2019: unresolved external symbol _tolua_endmodule referenced in function _tolua_tolua_open
toluabind.obj : error LNK2019: unresolved external symbol _tolua_dobuffer referenced in function _tolua_tolua_open
toluabind.obj : error LNK2019: unresolved external symbol _tolua_beginmodule referenced in function _tolua_tolua_open
toluabind.obj : error LNK2019: unresolved external symbol _tolua_module referenced in function _tolua_tolua_open
C:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\V2.exe : fatal error LNK1120: 5 unresolved externals
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
Code: Select all
class Party {
public:
Player[3];
private:
};
Is there a particular reason you gave on tolua++ so fast? The ONLY trouble I ever had with it was getting it compiled, and I've just done that for you. I've never used luabind, but in tolua++ you just parse the cleaned header with the tolua++.exe, it outputs a package header which you include in your project, then you call a single function to initialize the class with use through lua and everything is ready to go.N64vSNES wrote: So how would I go about wrapping all of this to lua with luabind? I've googled around a bit but I can't find anything
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
Well if you advise it then I'll try tolua++ see how that goes and update you on itdandymcgee wrote:Is there a particular reason you gave on tolua++ so fast? The ONLY trouble I ever had with it was getting it compiled, and I've just done that for you. I've never used luabind, but in tolua++ you just parse the cleaned header with the tolua++.exe, it outputs a package header which you include in your project, then you call a single function to initialize the class with use through lua and everything is ready to go.N64vSNES wrote: So how would I go about wrapping all of this to lua with luabind? I've googled around a bit but I can't find anything
http://www.gamedev.net/reference/articl ... le2596.asp Excellent tutorial for getting tolua++ up and running in your engine.
I know there are plenty of resources on LuaBind as well, so if you choose to head that direction instead just Google it (there are literally thousands of resources, if you can't find anything on Google you're not putting nearly enough effort into your searches).
Code: Select all
Linking...
tolua++.lib(tolua_map.obj) : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance
LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library
Generating code
Finished generating code
tolua++.lib(tolua_push.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info
tolua++.lib(tolua_is.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info
tolua++.lib(tolua_event.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info
tolua++.lib(tolua_map.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info
tolua++.lib(tolua_to.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info
Embedding manifest...
Build log was saved at "file://c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\BuildLog.htm"
V2 - 0 error(s), 6 warning(s)
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
Are you linking a library that was built in Release to a Debug project? Don't even worry about the warnings, honestly.N64vSNES wrote:Ok this is kinda why I didn't use tolua++ after getting luabind working.
But I'm still willing to try it.
I'm not getting errors but I'm getting warnings :/
Strange...Code: Select all
Linking... tolua++.lib(tolua_map.obj) : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library Generating code Finished generating code tolua++.lib(tolua_push.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_is.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_event.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_map.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_to.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info Embedding manifest... Build log was saved at "file://c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\BuildLog.htm" V2 - 0 error(s), 6 warning(s) ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
I'm linking the libary that dandymcgee pre-compiled so I'm guessing it was in release yeah.GyroVorbis wrote:Are you linking a library that was built in Release to a Debug project? Don't even worry about the warnings, honestly.N64vSNES wrote:Ok this is kinda why I didn't use tolua++ after getting luabind working.
But I'm still willing to try it.
I'm not getting errors but I'm getting warnings :/
Strange...Code: Select all
Linking... tolua++.lib(tolua_map.obj) : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library Generating code Finished generating code tolua++.lib(tolua_push.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_is.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_event.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_map.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_to.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info Embedding manifest... Build log was saved at "file://c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\BuildLog.htm" V2 - 0 error(s), 6 warning(s) ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
There might be some linker flags you can set to tell it to shut the fuck up, but the "correct" and "proper" way to get rid of the warnings would be to recompile toLua++ in Debug and link to that.N64vSNES wrote:I'm linking the libary that dandymcgee pre-compiled so I'm guessing it was in release yeah.GyroVorbis wrote:Are you linking a library that was built in Release to a Debug project? Don't even worry about the warnings, honestly.N64vSNES wrote:Ok this is kinda why I didn't use tolua++ after getting luabind working.
But I'm still willing to try it.
I'm not getting errors but I'm getting warnings :/
Strange...Code: Select all
Linking... tolua++.lib(tolua_map.obj) : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library Generating code Finished generating code tolua++.lib(tolua_push.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_is.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_event.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_map.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info tolua++.lib(tolua_to.obj) : warning LNK4204: 'c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\vc90.pdb' is missing debugging information for referencing module; linking object as if no debug info Embedding manifest... Build log was saved at "file://c:\Documents and Settings\Owner.NICOSCOMPUTER\Desktop\V2\Debug\BuildLog.htm" V2 - 0 error(s), 6 warning(s) ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
I know they're not of any concern but whats the suggestions for removing the warnings? because its just ugly to have several warnings every time I recompile my project.
Did you read the tutorial in its entirety? Reading and research are inevitable if you want to accomplish anything.N64vSNES wrote:Ok I've recompiled it and now I've got debug and release.
However I'm having seriouse issues getting my head around how tolua++ works
So I've figured it generates new files and you open the new package files within you're application.
But from the console trying to generate the files dosen't seem to be working for me, anybody willing to break this down for a noob?
Code: Select all
@echo off
tolua++.exe pkgCharacter -o pkgCharacter.cpp -H pkgCharacter.h Character.pkg
tolua++.exe pkgLevel -o pkgLevel.cpp -H pkgLevel.h Level.pkg
<etc..>
echo PKGCompiler Finished.
pause
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!