____ _ __
/ __ )____ _____ | | / /___ ___________
/ __ / __ \/ ___/ | | /| / / __ `/ ___/ ___/
/ /_/ / /_/ (__ ) | |/ |/ / /_/ / / (__ )
/_____/\____/____/ |__/|__/\__,_/_/ /____/
A futuristic real-time strategy game.
This file is part of Bos Wars.
(C) Copyright 2001-2007 by the Bos Wars and Stratagus Project.
Distributed under the "GNU General Public License"#include "lua.h"#include "lauxlib.h"Go to the source code of this file.
Classes | |
| struct | tolua_Error |
Defines | |
| #define | TOLUA_API extern |
| #define | TOLUA_VERSION "tolua++-1.0.92" |
| #define | tolua_pushcppstring(x, y) tolua_pushstring(x,y.c_str()) |
| #define | tolua_iscppstring tolua_isstring |
| #define | tolua_iscppstringarray tolua_isstringarray |
| #define | tolua_pushfieldcppstring(L, lo, idx, s) tolua_pushfieldstring(L, lo, idx, s.c_str()) |
| #define | TEMPLATE_BIND(p) |
| #define | TOLUA_TEMPLATE_BIND(p) |
| #define | TOLUA_PROTECTED_DESTRUCTOR |
| #define | TOLUA_PROPERTY_TYPE(p) |
| #define | TOLUA_NOPEER LUA_REGISTRYINDEX |
| #define | tolua_tocppstring tolua_tostring |
| #define | tolua_tofieldcppstring tolua_tofieldstring |
Typedefs | |
| typedef int | lua_Object |
| typedef struct tolua_Error | tolua_Error |
Functions | |
| TOLUA_API const char * | tolua_typename (lua_State *L, int lo) |
| TOLUA_API void | tolua_error (lua_State *L, const char *msg, tolua_Error *err) |
| TOLUA_API int | tolua_isnoobj (lua_State *L, int lo, tolua_Error *err) |
| TOLUA_API int | tolua_isvalue (lua_State *L, int lo, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isboolean (lua_State *L, int lo, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isnumber (lua_State *L, int lo, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isstring (lua_State *L, int lo, int def, tolua_Error *err) |
| TOLUA_API int | tolua_istable (lua_State *L, int lo, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isusertable (lua_State *L, int lo, const char *type, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isuserdata (lua_State *L, int lo, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isusertype (lua_State *L, int lo, const char *type, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isvaluearray (lua_State *L, int lo, int dim, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isbooleanarray (lua_State *L, int lo, int dim, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isnumberarray (lua_State *L, int lo, int dim, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isstringarray (lua_State *L, int lo, int dim, int def, tolua_Error *err) |
| TOLUA_API int | tolua_istablearray (lua_State *L, int lo, int dim, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isuserdataarray (lua_State *L, int lo, int dim, int def, tolua_Error *err) |
| TOLUA_API int | tolua_isusertypearray (lua_State *L, int lo, const char *type, int dim, int def, tolua_Error *err) |
| TOLUA_API void | tolua_open (lua_State *L) |
| TOLUA_API void * | tolua_copy (lua_State *L, void *value, unsigned int size) |
| TOLUA_API int | tolua_register_gc (lua_State *L, int lo) |
| TOLUA_API int | tolua_default_collect (lua_State *tolua_S) |
| TOLUA_API void | tolua_usertype (lua_State *L, const char *type) |
| TOLUA_API void | tolua_beginmodule (lua_State *L, const char *name) |
| TOLUA_API void | tolua_endmodule (lua_State *L) |
| TOLUA_API void | tolua_module (lua_State *L, const char *name, int hasvar) |
| TOLUA_API void | tolua_class (lua_State *L, char *name, char *base) |
| TOLUA_API void | tolua_cclass (lua_State *L, const char *lname, const char *name, const char *base, lua_CFunction col) |
| TOLUA_API void | tolua_function (lua_State *L, const char *name, lua_CFunction func) |
| TOLUA_API void | tolua_constant (lua_State *L, const char *name, double value) |
| TOLUA_API void | tolua_variable (lua_State *L, const char *name, lua_CFunction get, lua_CFunction set) |
| TOLUA_API void | tolua_array (lua_State *L, const char *name, lua_CFunction get, lua_CFunction set) |
| TOLUA_API void | tolua_pushvalue (lua_State *L, int lo) |
| TOLUA_API void | tolua_pushboolean (lua_State *L, int value) |
| TOLUA_API void | tolua_pushnumber (lua_State *L, double value) |
| TOLUA_API void | tolua_pushstring (lua_State *L, const char *value) |
| TOLUA_API void | tolua_pushuserdata (lua_State *L, void *value) |
| TOLUA_API void | tolua_pushusertype (lua_State *L, void *value, const char *type) |
| TOLUA_API void | tolua_pushusertype_and_takeownership (lua_State *L, void *value, const char *type) |
| TOLUA_API void | tolua_pushfieldvalue (lua_State *L, int lo, int index, int v) |
| TOLUA_API void | tolua_pushfieldboolean (lua_State *L, int lo, int index, int v) |
| TOLUA_API void | tolua_pushfieldnumber (lua_State *L, int lo, int index, double v) |
| TOLUA_API void | tolua_pushfieldstring (lua_State *L, int lo, int index, const char *v) |
| TOLUA_API void | tolua_pushfielduserdata (lua_State *L, int lo, int index, void *v) |
| TOLUA_API void | tolua_pushfieldusertype (lua_State *L, int lo, int index, void *v, const char *type) |
| TOLUA_API void | tolua_pushfieldusertype_and_takeownership (lua_State *L, int lo, int index, void *v, const char *type) |
| TOLUA_API double | tolua_tonumber (lua_State *L, int narg, double def) |
| TOLUA_API const char * | tolua_tostring (lua_State *L, int narg, const char *def) |
| TOLUA_API void * | tolua_touserdata (lua_State *L, int narg, void *def) |
| TOLUA_API void * | tolua_tousertype (lua_State *L, int narg, void *def) |
| TOLUA_API int | tolua_tovalue (lua_State *L, int narg, int def) |
| TOLUA_API int | tolua_toboolean (lua_State *L, int narg, int def) |
| TOLUA_API double | tolua_tofieldnumber (lua_State *L, int lo, int index, double def) |
| TOLUA_API const char * | tolua_tofieldstring (lua_State *L, int lo, int index, const char *def) |
| TOLUA_API void * | tolua_tofielduserdata (lua_State *L, int lo, int index, void *def) |
| TOLUA_API void * | tolua_tofieldusertype (lua_State *L, int lo, int index, void *def) |
| TOLUA_API int | tolua_tofieldvalue (lua_State *L, int lo, int index, int def) |
| TOLUA_API int | tolua_getfieldboolean (lua_State *L, int lo, int index, int def) |
| TOLUA_API void | tolua_dobuffer (lua_State *L, char *B, unsigned int size, const char *name) |
| TOLUA_API int | class_gc_event (lua_State *L) |
| TOLUA_API int | tolua_fast_isa (lua_State *L, int mt_indexa, int mt_indexb, int super_index) |
| #define tolua_iscppstring tolua_isstring |
Definition at line 29 of file tolua++.h.
Referenced by tolua_set_CliMapName(), tolua_set_CMapInfo_Description(), tolua_set_CPlayer_AiName(), tolua_set_CPlayer_Name(), tolua_set_CUIButton_Text(), tolua_set_CUnitType_Ident(), tolua_set_CUnitType_Name(), tolua_set_CUserInterface_NormalFontColor(), tolua_set_CUserInterface_ReverseFontColor(), tolua_set_GameTranslation(), tolua_set_NetworkMapName(), tolua_set_StratagusTranslation(), tolua_stratagus_AddTranslation00(), tolua_stratagus_ButtonWidget_new00(), tolua_stratagus_ButtonWidget_new00_local(), tolua_stratagus_ButtonWidget_setCaption00(), tolua_stratagus_CFont_Get00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFont_Width00(), tolua_stratagus_CFontColor_Get00(), tolua_stratagus_CFontColor_New00(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CheckBox_new01(), tolua_stratagus_CheckBox_new01_local(), tolua_stratagus_CheckBox_setCaption00(), tolua_stratagus_CIcon_Get00(), tolua_stratagus_CIcon_New00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CStatusLine_Set00(), tolua_stratagus_EditorSaveMap00(), tolua_stratagus_FindButtonStyle00(), tolua_stratagus_ImageButton_new01(), tolua_stratagus_ImageButton_new01_local(), tolua_stratagus_ImageCheckBox_new01(), tolua_stratagus_ImageCheckBox_new01_local(), tolua_stratagus_ImageRadioButton_new01(), tolua_stratagus_ImageRadioButton_new01_local(), tolua_stratagus_Label_new00(), tolua_stratagus_Label_new00_local(), tolua_stratagus_Label_setCaption00(), tolua_stratagus_LoadPO00(), tolua_stratagus_MultiLineLabel_new01(), tolua_stratagus_MultiLineLabel_new01_local(), tolua_stratagus_MultiLineLabel_setCaption00(), tolua_stratagus_NetworkSetupServerAddress00(), tolua_stratagus_PlayFile00(), tolua_stratagus_PlayMusic00(), tolua_stratagus_RadioButton_new01(), tolua_stratagus_RadioButton_new01_local(), tolua_stratagus_RadioButton_setCaption00(), tolua_stratagus_RadioButton_setGroup00(), tolua_stratagus_SaveGame00(), tolua_stratagus_SaveReplay00(), tolua_stratagus_SetEditorPatchIcon00(), tolua_stratagus_SetEditorSelectIcon00(), tolua_stratagus_SetEditorStartUnit00(), tolua_stratagus_SetEditorUnitsIcon00(), tolua_stratagus_SetTranslationsFiles00(), tolua_stratagus_StartEditor00(), tolua_stratagus_StartMap00(), tolua_stratagus_StartPatchEditor00(), tolua_stratagus_StartReplay00(), tolua_stratagus_StartSavedGame00(), tolua_stratagus_StatBoxWidget_setCaption00(), tolua_stratagus_TextField_new00(), tolua_stratagus_TextField_new00_local(), tolua_stratagus_TextField_setText00(), tolua_stratagus_UnitTypeByIdent00(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__push_back00(), tolua_stratagus_Window_new01(), tolua_stratagus_Window_new01_local(), tolua_stratagus_Window_new02(), tolua_stratagus_Window_new02_local(), tolua_stratagus_Window_setCaption00(), tolua_stratagus_Windows_new00(), and tolua_stratagus_Windows_new00_local().
| #define TOLUA_NOPEER LUA_REGISTRYINDEX |
Definition at line 52 of file tolua++.h.
Referenced by class_index_event(), storeatubox(), and tolua_pushusertype().
| #define tolua_pushcppstring | ( | x, | |||
| y | ) | tolua_pushstring(x,y.c_str()) |
Definition at line 28 of file tolua++.h.
Referenced by tolua_get_CIcon_Ident(), tolua_get_CliMapName(), tolua_get_CMapInfo_Description(), tolua_get_CPlayer_AiName(), tolua_get_CPlayer_Name(), tolua_get_CUIButton_Text(), tolua_get_CUnitType_Ident(), tolua_get_CUnitType_Name(), tolua_get_CUserInterface_NormalFontColor(), tolua_get_CUserInterface_ReverseFontColor(), tolua_get_GameTranslation(), tolua_get_NetworkMapName(), tolua_get_StratagusTranslation(), tolua_stratagus_ButtonWidget_getCaption00(), tolua_stratagus_CheckBox_getCaption00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CStatusLine_Get00(), tolua_stratagus_EditorSaveMap00(), tolua_stratagus_Label_getCaption00(), tolua_stratagus_MultiLineLabel_getCaption00(), tolua_stratagus_RadioButton_getCaption00(), tolua_stratagus_RadioButton_getGroup00(), tolua_stratagus_SetEditorPatchIcon00(), tolua_stratagus_SetEditorSelectIcon00(), tolua_stratagus_SetEditorStartUnit00(), tolua_stratagus_SetEditorUnitsIcon00(), tolua_stratagus_StartEditor00(), tolua_stratagus_StartPatchEditor00(), tolua_stratagus_StatBoxWidget_getCaption00(), tolua_stratagus_TextField_getText00(), tolua_stratagus_vector_string___geti00(), tolua_stratagus_vector_string___geti01(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__at00(), tolua_stratagus_vector_string__at01(), tolua_stratagus_vector_string__back00(), tolua_stratagus_vector_string__back01(), tolua_stratagus_vector_string__front00(), tolua_stratagus_vector_string__front01(), and tolua_stratagus_Window_getCaption00().
| #define tolua_pushfieldcppstring | ( | L, | |||
| lo, | |||||
| idx, | |||||
| s | ) | tolua_pushfieldstring(L, lo, idx, s.c_str()) |
| #define tolua_tocppstring tolua_tostring |
Definition at line 146 of file tolua++.h.
Referenced by tolua_set_CliMapName(), tolua_set_CMapInfo_Description(), tolua_set_CPlayer_AiName(), tolua_set_CPlayer_Name(), tolua_set_CUIButton_Text(), tolua_set_CUnitType_Ident(), tolua_set_CUnitType_Name(), tolua_set_CUserInterface_NormalFontColor(), tolua_set_CUserInterface_ReverseFontColor(), tolua_set_GameTranslation(), tolua_set_NetworkMapName(), tolua_set_StratagusTranslation(), tolua_stratagus_AddTranslation00(), tolua_stratagus_ButtonWidget_new00(), tolua_stratagus_ButtonWidget_new00_local(), tolua_stratagus_ButtonWidget_setCaption00(), tolua_stratagus_CFont_Get00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFont_Width00(), tolua_stratagus_CFontColor_Get00(), tolua_stratagus_CFontColor_New00(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CheckBox_new01(), tolua_stratagus_CheckBox_new01_local(), tolua_stratagus_CheckBox_setCaption00(), tolua_stratagus_CIcon_Get00(), tolua_stratagus_CIcon_New00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CStatusLine_Set00(), tolua_stratagus_EditorSaveMap00(), tolua_stratagus_FindButtonStyle00(), tolua_stratagus_ImageButton_new01(), tolua_stratagus_ImageButton_new01_local(), tolua_stratagus_ImageCheckBox_new01(), tolua_stratagus_ImageCheckBox_new01_local(), tolua_stratagus_ImageRadioButton_new01(), tolua_stratagus_ImageRadioButton_new01_local(), tolua_stratagus_Label_new00(), tolua_stratagus_Label_new00_local(), tolua_stratagus_Label_setCaption00(), tolua_stratagus_LoadPO00(), tolua_stratagus_MultiLineLabel_new01(), tolua_stratagus_MultiLineLabel_new01_local(), tolua_stratagus_MultiLineLabel_setCaption00(), tolua_stratagus_NetworkSetupServerAddress00(), tolua_stratagus_PlayFile00(), tolua_stratagus_PlayMusic00(), tolua_stratagus_RadioButton_new01(), tolua_stratagus_RadioButton_new01_local(), tolua_stratagus_RadioButton_setCaption00(), tolua_stratagus_RadioButton_setGroup00(), tolua_stratagus_SaveGame00(), tolua_stratagus_SaveReplay00(), tolua_stratagus_SetEditorPatchIcon00(), tolua_stratagus_SetEditorSelectIcon00(), tolua_stratagus_SetEditorStartUnit00(), tolua_stratagus_SetEditorUnitsIcon00(), tolua_stratagus_SetTranslationsFiles00(), tolua_stratagus_StartEditor00(), tolua_stratagus_StartMap00(), tolua_stratagus_StartPatchEditor00(), tolua_stratagus_StartReplay00(), tolua_stratagus_StartSavedGame00(), tolua_stratagus_StatBoxWidget_setCaption00(), tolua_stratagus_TextField_new00(), tolua_stratagus_TextField_new00_local(), tolua_stratagus_TextField_setText00(), tolua_stratagus_UnitTypeByIdent00(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__push_back00(), tolua_stratagus_Window_new01(), tolua_stratagus_Window_new01_local(), tolua_stratagus_Window_new02(), tolua_stratagus_Window_new02_local(), tolua_stratagus_Window_setCaption00(), tolua_stratagus_Windows_new00(), and tolua_stratagus_Windows_new00_local().
| typedef int lua_Object |
| typedef struct tolua_Error tolua_Error |
| TOLUA_API int class_gc_event | ( | lua_State * | L | ) |
Definition at line 397 of file tolua_event.cpp.
References tolua_default_collect(), and tolua_fast_isa().
Referenced by tolua_open().
| TOLUA_API void tolua_array | ( | lua_State * | L, | |
| const char * | name, | |||
| lua_CFunction | get, | |||
| lua_CFunction | set | |||
| ) |
Definition at line 665 of file tolua_map.cpp.
References const_array().
Referenced by tolua_stratagus_open().
| TOLUA_API void tolua_beginmodule | ( | lua_State * | L, | |
| const char * | name | |||
| ) |
Definition at line 405 of file tolua_map.cpp.
Referenced by tolua_open(), and tolua_stratagus_open().
| TOLUA_API void tolua_cclass | ( | lua_State * | L, | |
| const char * | lname, | |||
| const char * | name, | |||
| const char * | base, | |||
| lua_CFunction | col | |||
| ) |
Definition at line 520 of file tolua_map.cpp.
References mapinheritance(), mapsuper(), and push_collector().
Referenced by tolua_stratagus_open().
| TOLUA_API void tolua_class | ( | lua_State * | L, | |
| char * | name, | |||
| char * | base | |||
| ) |
| TOLUA_API void tolua_constant | ( | lua_State * | L, | |
| const char * | name, | |||
| double | value | |||
| ) |
Definition at line 602 of file tolua_map.cpp.
References tolua_pushnumber().
Referenced by tolua_stratagus_open().
| TOLUA_API void* tolua_copy | ( | lua_State * | L, | |
| void * | value, | |||
| unsigned int | size | |||
| ) |
Definition at line 346 of file tolua_map.cpp.
References tolua_error().
Referenced by tolua_stratagus_CPatchManager_getPatchTypeNames00(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CUIButton___geti00(), and tolua_stratagus_vector_CUIButton___geti01().
| TOLUA_API int tolua_default_collect | ( | lua_State * | tolua_S | ) |
Definition at line 358 of file tolua_map.cpp.
References tolua_tousertype().
Referenced by class_gc_event().
| TOLUA_API void tolua_dobuffer | ( | lua_State * | L, | |
| char * | B, | |||
| unsigned int | size, | |||
| const char * | name | |||
| ) |
| TOLUA_API void tolua_endmodule | ( | lua_State * | L | ) |
Definition at line 419 of file tolua_map.cpp.
Referenced by tolua_open(), and tolua_stratagus_open().
| TOLUA_API void tolua_error | ( | lua_State * | L, | |
| const char * | msg, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 87 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, tolua_typename(), and tolua_Error::type.
Referenced by class_call_event(), do_operator(), tolua_copy(), tolua_get_CButtonPanel_AutoCastBorderColorRGB(), tolua_get_CButtonPanel_Buttons(), tolua_get_CButtonPanel_ShowCommandKey(), tolua_get_CButtonPanel_X(), tolua_get_CButtonPanel_Y(), tolua_get_CColor_unsigned_A(), tolua_get_CColor_unsigned_B(), tolua_get_CColor_unsigned_G(), tolua_get_CColor_unsigned_R(), tolua_get_CEditor_Running(), tolua_get_CEditor_StartUnit_ptr(), tolua_get_CEditor_UnitTypes(), tolua_get_CFiller_G_ptr(), tolua_get_CFiller_X(), tolua_get_CFiller_Y(), tolua_get_CIcon_Frame(), tolua_get_CIcon_G_ptr(), tolua_get_CIcon_Ident(), tolua_get_CInfoPanel_X(), tolua_get_CInfoPanel_Y(), tolua_get_CMap_Info(), tolua_get_CMap_PatchManager(), tolua_get_CMapArea_EndX(), tolua_get_CMapArea_EndY(), tolua_get_CMapArea_ScrollPaddingBottom(), tolua_get_CMapArea_ScrollPaddingLeft(), tolua_get_CMapArea_ScrollPaddingRight(), tolua_get_CMapArea_ScrollPaddingTop(), tolua_get_CMapArea_X(), tolua_get_CMapArea_Y(), tolua_get_CMapInfo_Description(), tolua_get_CMapInfo_MapHeight(), tolua_get_CMapInfo_MapWidth(), tolua_get_CMinimap_H(), tolua_get_CMinimap_ShowSelected(), tolua_get_CMinimap_Transparent(), tolua_get_CMinimap_W(), tolua_get_CMinimap_WithTerrain(), tolua_get_CMinimap_X(), tolua_get_CMinimap_Y(), tolua_get_CNetworkHost_PlyName(), tolua_get_CNetworkHost_unsigned_Host(), tolua_get_CNetworkHost_unsigned_PlyNr(), tolua_get_CNetworkHost_unsigned_Port(), tolua_get_Color_a(), tolua_get_Color_b(), tolua_get_Color_g(), tolua_get_Color_r(), tolua_get_CPieMenu_G_ptr(), tolua_get_CPieMenu_MouseButton(), tolua_get_CPlayer_AiEnabled(), tolua_get_CPlayer_AiName(), tolua_get_CPlayer_BuildingLimit(), tolua_get_CPlayer_EnergyProductionRate(), tolua_get_CPlayer_EnergyStorageCapacity(), tolua_get_CPlayer_EnergyStored(), tolua_get_CPlayer_Index(), tolua_get_CPlayer_MagmaProductionRate(), tolua_get_CPlayer_MagmaStorageCapacity(), tolua_get_CPlayer_MagmaStored(), tolua_get_CPlayer_Name(), tolua_get_CPlayer_NumBuildings(), tolua_get_CPlayer_Score(), tolua_get_CPlayer_StartX(), tolua_get_CPlayer_StartY(), tolua_get_CPlayer_TotalBuildings(), tolua_get_CPlayer_TotalEnergy(), tolua_get_CPlayer_TotalKills(), tolua_get_CPlayer_TotalMagma(), tolua_get_CPlayer_TotalNumUnits(), tolua_get_CPlayer_TotalRazings(), tolua_get_CPlayer_TotalUnitLimit(), tolua_get_CPlayer_TotalUnits(), tolua_get_CPlayer_Type(), tolua_get_CPlayer_UnitLimit(), tolua_get_CPosition_x(), tolua_get_CPosition_y(), tolua_get_CPreference_ShowAttackRange(), tolua_get_CPreference_ShowReactionRange(), tolua_get_CPreference_ShowSightRange(), tolua_get_CPreference_unsigned_ShowOrders(), tolua_get_CResourceInfo_G_ptr(), tolua_get_CResourceInfo_IconFrame(), tolua_get_CResourceInfo_IconX(), tolua_get_CResourceInfo_IconY(), tolua_get_CResourceInfo_TextX(), tolua_get_CResourceInfo_TextY(), tolua_get_CServerSetup_unsigned_Difficulty(), tolua_get_CServerSetup_unsigned_FogOfWar(), tolua_get_CServerSetup_unsigned_GameTypeOption(), tolua_get_CServerSetup_unsigned_MapRichness(), tolua_get_CServerSetup_unsigned_ResourcesOption(), tolua_get_CServerSetup_unsigned_RevealMap(), tolua_get_CServerSetup_unsigned_UnitsOption(), tolua_get_CStatusLine_Font_ptr(), tolua_get_CStatusLine_TextX(), tolua_get_CStatusLine_TextY(), tolua_get_CStatusLine_Width(), tolua_get_CUIButton_Callback_ptr(), tolua_get_CUIButton_Style_ptr(), tolua_get_CUIButton_Text(), tolua_get_CUIButton_X(), tolua_get_CUIButton_Y(), tolua_get_CUITimer_Font_ptr(), tolua_get_CUITimer_X(), tolua_get_CUITimer_Y(), tolua_get_CUnit_Player_ptr(), tolua_get_CUnit_Slot(), tolua_get_CUnit_Type_ptr(), tolua_get_CUnit_X(), tolua_get_CUnit_Y(), tolua_get_CUnitType_EnergyProductionRate(), tolua_get_CUnitType_EnergyStorageCapacity(), tolua_get_CUnitType_EnergyValue(), tolua_get_CUnitType_Ident(), tolua_get_CUnitType_MagmaProductionRate(), tolua_get_CUnitType_MagmaStorageCapacity(), tolua_get_CUnitType_MagmaValue(), tolua_get_CUnitType_MaxEnergyUtilizationRate(), tolua_get_CUnitType_MaxMagmaUtilizationRate(), tolua_get_CUnitType_MinAttackRange(), tolua_get_CUnitType_Name(), tolua_get_CUnitType_Slot(), tolua_get_CUserInterface_ButtonPanel(), tolua_get_CUserInterface_CompletedBarColorRGB(), tolua_get_CUserInterface_CompletedBarShadow(), tolua_get_CUserInterface_Fillers(), tolua_get_CUserInterface_InfoPanel(), tolua_get_CUserInterface_MapArea(), tolua_get_CUserInterface_MaxSelectedFont_ptr(), tolua_get_CUserInterface_MaxSelectedTextX(), tolua_get_CUserInterface_MaxSelectedTextY(), tolua_get_CUserInterface_MenuButton(), tolua_get_CUserInterface_MessageFont_ptr(), tolua_get_CUserInterface_MessageScrollSpeed(), tolua_get_CUserInterface_Minimap(), tolua_get_CUserInterface_MouseViewport_ptr(), tolua_get_CUserInterface_NetworkDiplomacyButton(), tolua_get_CUserInterface_NetworkMenuButton(), tolua_get_CUserInterface_NormalFontColor(), tolua_get_CUserInterface_PieMenu(), tolua_get_CUserInterface_ReverseFontColor(), tolua_get_CUserInterface_SelectedButtons(), tolua_get_CUserInterface_SingleSelectedButton_ptr(), tolua_get_CUserInterface_SingleTrainingButton_ptr(), tolua_get_CUserInterface_StatusLine(), tolua_get_CUserInterface_Timer(), tolua_get_CUserInterface_TrainingButtons(), tolua_get_CUserInterface_TransportingButtons(), tolua_get_CVideo_Depth(), tolua_get_CVideo_FullScreen(), tolua_get_CVideo_Height(), tolua_get_CVideo_Width(), tolua_get_Settings_Difficulty(), tolua_get_Settings_GameType(), tolua_get_Settings_MapRichness(), tolua_get_Settings_NetGameType(), tolua_get_Settings_NoFogOfWar(), tolua_get_Settings_NumUnits(), tolua_get_Settings_Opponents(), tolua_get_Settings_Resources(), tolua_get_Settings_RevealMap(), tolua_get_SettingsPresets_Team(), tolua_get_SettingsPresets_Type(), tolua_get_stratagus_AlliedUnitRecyclingEfficiency(), tolua_get_stratagus_CFontColor_Colors(), tolua_get_stratagus_CMapInfo_PlayerType(), tolua_get_stratagus_CPieMenu_X(), tolua_get_stratagus_CPieMenu_Y(), tolua_get_stratagus_CPlayer_Units(), tolua_get_stratagus_CPlayer_UnitTypesCount(), tolua_get_stratagus_CServerSetup_CompOpt(), tolua_get_stratagus_CServerSetup_LastFrame(), tolua_get_stratagus_CServerSetup_Ready(), tolua_get_stratagus_CUserInterface_Resources(), tolua_get_stratagus_EnemyUnitRecyclingEfficiency(), tolua_get_stratagus_Hosts(), tolua_get_stratagus_Players(), tolua_get_stratagus_Settings_Presets(), tolua_set_AStarFixedUnitCrossingCost(), tolua_set_AStarKnowUnseenTerrain(), tolua_set_AStarMovingUnitCrossingCost(), tolua_set_AStarUnknownTerrainCost(), tolua_set_CButtonPanel_AutoCastBorderColorRGB(), tolua_set_CButtonPanel_Buttons(), tolua_set_CButtonPanel_ShowCommandKey(), tolua_set_CButtonPanel_X(), tolua_set_CButtonPanel_Y(), tolua_set_CColor_unsigned_A(), tolua_set_CColor_unsigned_B(), tolua_set_CColor_unsigned_G(), tolua_set_CColor_unsigned_R(), tolua_set_CEditor_Running(), tolua_set_CEditor_UnitTypes(), tolua_set_CFiller_G_ptr(), tolua_set_CFiller_X(), tolua_set_CFiller_Y(), tolua_set_CIcon_Frame(), tolua_set_CIcon_G_ptr(), tolua_set_CInfoPanel_X(), tolua_set_CInfoPanel_Y(), tolua_set_CliMapName(), tolua_set_CMap_Info(), tolua_set_CMap_PatchManager(), tolua_set_CMapArea_EndX(), tolua_set_CMapArea_EndY(), tolua_set_CMapArea_ScrollPaddingBottom(), tolua_set_CMapArea_ScrollPaddingLeft(), tolua_set_CMapArea_ScrollPaddingRight(), tolua_set_CMapArea_ScrollPaddingTop(), tolua_set_CMapArea_X(), tolua_set_CMapArea_Y(), tolua_set_CMapInfo_Description(), tolua_set_CMapInfo_MapHeight(), tolua_set_CMapInfo_MapWidth(), tolua_set_CMinimap_H(), tolua_set_CMinimap_ShowSelected(), tolua_set_CMinimap_Transparent(), tolua_set_CMinimap_W(), tolua_set_CMinimap_WithTerrain(), tolua_set_CMinimap_X(), tolua_set_CMinimap_Y(), tolua_set_CNetworkHost_PlyName(), tolua_set_CNetworkHost_unsigned_Host(), tolua_set_CNetworkHost_unsigned_PlyNr(), tolua_set_CNetworkHost_unsigned_Port(), tolua_set_Color_a(), tolua_set_Color_b(), tolua_set_Color_g(), tolua_set_Color_r(), tolua_set_CPieMenu_G_ptr(), tolua_set_CPieMenu_MouseButton(), tolua_set_CPlayer_AiEnabled(), tolua_set_CPlayer_AiName(), tolua_set_CPlayer_BuildingLimit(), tolua_set_CPlayer_EnergyProductionRate(), tolua_set_CPlayer_EnergyStorageCapacity(), tolua_set_CPlayer_EnergyStored(), tolua_set_CPlayer_Index(), tolua_set_CPlayer_MagmaProductionRate(), tolua_set_CPlayer_MagmaStorageCapacity(), tolua_set_CPlayer_MagmaStored(), tolua_set_CPlayer_Name(), tolua_set_CPlayer_NumBuildings(), tolua_set_CPlayer_Score(), tolua_set_CPlayer_StartX(), tolua_set_CPlayer_StartY(), tolua_set_CPlayer_TotalBuildings(), tolua_set_CPlayer_TotalEnergy(), tolua_set_CPlayer_TotalKills(), tolua_set_CPlayer_TotalMagma(), tolua_set_CPlayer_TotalNumUnits(), tolua_set_CPlayer_TotalRazings(), tolua_set_CPlayer_TotalUnitLimit(), tolua_set_CPlayer_TotalUnits(), tolua_set_CPlayer_Type(), tolua_set_CPlayer_UnitLimit(), tolua_set_CPosition_x(), tolua_set_CPosition_y(), tolua_set_CPreference_ShowAttackRange(), tolua_set_CPreference_ShowReactionRange(), tolua_set_CPreference_ShowSightRange(), tolua_set_CPreference_unsigned_ShowOrders(), tolua_set_CResourceInfo_G_ptr(), tolua_set_CResourceInfo_IconFrame(), tolua_set_CResourceInfo_IconX(), tolua_set_CResourceInfo_IconY(), tolua_set_CResourceInfo_TextX(), tolua_set_CResourceInfo_TextY(), tolua_set_CServerSetup_unsigned_Difficulty(), tolua_set_CServerSetup_unsigned_FogOfWar(), tolua_set_CServerSetup_unsigned_GameTypeOption(), tolua_set_CServerSetup_unsigned_MapRichness(), tolua_set_CServerSetup_unsigned_ResourcesOption(), tolua_set_CServerSetup_unsigned_RevealMap(), tolua_set_CServerSetup_unsigned_UnitsOption(), tolua_set_CStatusLine_Font_ptr(), tolua_set_CStatusLine_TextX(), tolua_set_CStatusLine_TextY(), tolua_set_CStatusLine_Width(), tolua_set_CUIButton_Callback_ptr(), tolua_set_CUIButton_Style_ptr(), tolua_set_CUIButton_Text(), tolua_set_CUIButton_X(), tolua_set_CUIButton_Y(), tolua_set_CUITimer_Font_ptr(), tolua_set_CUITimer_X(), tolua_set_CUITimer_Y(), tolua_set_CUnit_Player_ptr(), tolua_set_CUnit_Type_ptr(), tolua_set_CUnit_X(), tolua_set_CUnit_Y(), tolua_set_CUnitType_EnergyProductionRate(), tolua_set_CUnitType_EnergyStorageCapacity(), tolua_set_CUnitType_EnergyValue(), tolua_set_CUnitType_Ident(), tolua_set_CUnitType_MagmaProductionRate(), tolua_set_CUnitType_MagmaStorageCapacity(), tolua_set_CUnitType_MagmaValue(), tolua_set_CUnitType_MaxEnergyUtilizationRate(), tolua_set_CUnitType_MaxMagmaUtilizationRate(), tolua_set_CUnitType_MinAttackRange(), tolua_set_CUnitType_Name(), tolua_set_CursorX(), tolua_set_CursorY(), tolua_set_CUserInterface_ButtonPanel(), tolua_set_CUserInterface_CompletedBarColorRGB(), tolua_set_CUserInterface_CompletedBarShadow(), tolua_set_CUserInterface_Fillers(), tolua_set_CUserInterface_InfoPanel(), tolua_set_CUserInterface_MapArea(), tolua_set_CUserInterface_MaxSelectedFont_ptr(), tolua_set_CUserInterface_MaxSelectedTextX(), tolua_set_CUserInterface_MaxSelectedTextY(), tolua_set_CUserInterface_MenuButton(), tolua_set_CUserInterface_MessageFont_ptr(), tolua_set_CUserInterface_MessageScrollSpeed(), tolua_set_CUserInterface_Minimap(), tolua_set_CUserInterface_MouseViewport_ptr(), tolua_set_CUserInterface_NetworkDiplomacyButton(), tolua_set_CUserInterface_NetworkMenuButton(), tolua_set_CUserInterface_NormalFontColor(), tolua_set_CUserInterface_PieMenu(), tolua_set_CUserInterface_ReverseFontColor(), tolua_set_CUserInterface_SelectedButtons(), tolua_set_CUserInterface_SingleSelectedButton_ptr(), tolua_set_CUserInterface_SingleTrainingButton_ptr(), tolua_set_CUserInterface_StatusLine(), tolua_set_CUserInterface_Timer(), tolua_set_CUserInterface_TrainingButtons(), tolua_set_CUserInterface_TransportingButtons(), tolua_set_CVideo_Depth(), tolua_set_CVideo_FullScreen(), tolua_set_CVideo_Height(), tolua_set_CVideo_Width(), tolua_set_Editor(), tolua_set_GameObserve(), tolua_set_GamePaused(), tolua_set_GameResult(), tolua_set_GameRunning(), tolua_set_GameSettings(), tolua_set_GameSpeed(), tolua_set_GameTranslation(), tolua_set_LocalSetupState(), tolua_set_Map(), tolua_set_NetLocalHostsSlot(), tolua_set_NetworkMapName(), tolua_set_ParticleManager(), tolua_set_Preference(), tolua_set_ServerSetupState(), tolua_set_Settings_Difficulty(), tolua_set_Settings_GameType(), tolua_set_Settings_MapRichness(), tolua_set_Settings_NetGameType(), tolua_set_Settings_NoFogOfWar(), tolua_set_Settings_NumUnits(), tolua_set_Settings_Opponents(), tolua_set_Settings_Resources(), tolua_set_Settings_RevealMap(), tolua_set_SettingsPresets_Team(), tolua_set_SettingsPresets_Type(), tolua_set_stratagus_AlliedUnitRecyclingEfficiency(), tolua_set_stratagus_CFontColor_Colors(), tolua_set_stratagus_CMapInfo_PlayerType(), tolua_set_stratagus_CPieMenu_X(), tolua_set_stratagus_CPieMenu_Y(), tolua_set_stratagus_CPlayer_Units(), tolua_set_stratagus_CServerSetup_CompOpt(), tolua_set_stratagus_CServerSetup_LastFrame(), tolua_set_stratagus_CServerSetup_Ready(), tolua_set_stratagus_CUserInterface_Resources(), tolua_set_stratagus_EnemyUnitRecyclingEfficiency(), tolua_set_stratagus_Hosts(), tolua_set_stratagus_Players(), tolua_set_stratagus_Settings_Presets(), tolua_set_StratagusTranslation(), tolua_set_ThisPlayer_ptr(), tolua_set_UI(), tolua_set_unsigned_GameCycle(), tolua_set_UseGLTextureCompression(), tolua_set_UseOpenGL(), tolua_set_Video(), tolua_stratagus__00(), tolua_stratagus_ActionDefeat00(), tolua_stratagus_ActionDraw00(), tolua_stratagus_ActionSetTimer00(), tolua_stratagus_ActionStartTimer00(), tolua_stratagus_ActionStopTimer00(), tolua_stratagus_ActionVictory00(), tolua_stratagus_AddTranslation00(), tolua_stratagus_ButtonWidget_adjustSize00(), tolua_stratagus_ButtonWidget_getCaption00(), tolua_stratagus_ButtonWidget_new00(), tolua_stratagus_ButtonWidget_new00_local(), tolua_stratagus_ButtonWidget_setCaption00(), tolua_stratagus_CChunkParticle_new00(), tolua_stratagus_CChunkParticle_new00_local(), tolua_stratagus_CColor_new00(), tolua_stratagus_CColor_new00_local(), tolua_stratagus_CFiller_new00(), tolua_stratagus_CFiller_new00_local(), tolua_stratagus_CFont_Get00(), tolua_stratagus_CFont_Height00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFont_Width00(), tolua_stratagus_CFontColor_Get00(), tolua_stratagus_CFontColor_New00(), tolua_stratagus_CGraphic_Free00(), tolua_stratagus_CGraphic_Load00(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CGraphic_Resize00(), tolua_stratagus_CheckBox_adjustSize00(), tolua_stratagus_CheckBox_getCaption00(), tolua_stratagus_CheckBox_isMarked00(), tolua_stratagus_CheckBox_new00(), tolua_stratagus_CheckBox_new00_local(), tolua_stratagus_CheckBox_setCaption00(), tolua_stratagus_CheckBox_setMarked00(), tolua_stratagus_CIcon_Get00(), tolua_stratagus_CIcon_New00(), tolua_stratagus_CMenuScreen_addLogicCallback00(), tolua_stratagus_CMenuScreen_getDrawMenusUnder00(), tolua_stratagus_CMenuScreen_new00(), tolua_stratagus_CMenuScreen_new00_local(), tolua_stratagus_CMenuScreen_run00(), tolua_stratagus_CMenuScreen_setDrawMenusUnder00(), tolua_stratagus_CMenuScreen_stop00(), tolua_stratagus_CMenuScreen_stopAll00(), tolua_stratagus_Color_new00(), tolua_stratagus_Color_new00_local(), tolua_stratagus_Container_add00(), tolua_stratagus_Container_clear00(), tolua_stratagus_Container_isOpaque00(), tolua_stratagus_Container_new00(), tolua_stratagus_Container_new00_local(), tolua_stratagus_Container_remove00(), tolua_stratagus_Container_setOpaque00(), tolua_stratagus_CParticle_clone00(), tolua_stratagus_CParticleManager_add00(), tolua_stratagus_CParticleManager_delete00(), tolua_stratagus_CParticleManager_new00(), tolua_stratagus_CParticleManager_new00_local(), tolua_stratagus_CPatch_getType00(), tolua_stratagus_CPatch_getX00(), tolua_stratagus_CPatch_getY00(), tolua_stratagus_CPatch_setPos00(), tolua_stratagus_CPatch_setX00(), tolua_stratagus_CPatch_setY00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_getPatch00(), tolua_stratagus_CPatchManager_getPatchTypeNames00(), tolua_stratagus_CPatchManager_moveToBottom00(), tolua_stratagus_CPatchManager_moveToTop00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPatchType_getFlag00(), tolua_stratagus_CPatchType_getGraphic00(), tolua_stratagus_CPatchType_getTileHeight00(), tolua_stratagus_CPatchType_getTileWidth00(), tolua_stratagus_CPieMenu_SetRadius00(), tolua_stratagus_CPlayer_IsAllied00(), tolua_stratagus_CPlayer_IsAllied01(), tolua_stratagus_CPlayer_IsBothSharedVision00(), tolua_stratagus_CPlayer_IsBothSharedVision01(), tolua_stratagus_CPlayer_IsEnemy00(), tolua_stratagus_CPlayer_IsEnemy01(), tolua_stratagus_CPlayer_IsSharedVision00(), tolua_stratagus_CPlayer_IsSharedVision01(), tolua_stratagus_CPlayer_IsTeamed00(), tolua_stratagus_CPlayer_IsTeamed01(), tolua_stratagus_CPlayer_SetStartView00(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CPosition_new00(), tolua_stratagus_CPosition_new00_local(), tolua_stratagus_CStatusLine_Clear00(), tolua_stratagus_CStatusLine_Get00(), tolua_stratagus_CStatusLine_Set00(), tolua_stratagus_CUIButton_delete00(), tolua_stratagus_CUIButton_new00(), tolua_stratagus_CUIButton_new00_local(), tolua_stratagus_CVideo_ResizeScreen00(), tolua_stratagus_CViewport_Viewport2MapX00(), tolua_stratagus_CViewport_Viewport2MapY00(), tolua_stratagus_DropDown_getListBox00(), tolua_stratagus_DropDown_getScrollArea00(), tolua_stratagus_DropDown_getSelected00(), tolua_stratagus_DropDown_setListBox00(), tolua_stratagus_DropDown_setScrollArea00(), tolua_stratagus_DropDown_setSelected00(), tolua_stratagus_DropDownWidget_getListBox00(), tolua_stratagus_DropDownWidget_new00(), tolua_stratagus_DropDownWidget_new00_local(), tolua_stratagus_DropDownWidget_setList00(), tolua_stratagus_DropDownWidget_setSize00(), tolua_stratagus_EditorSaveMap00(), tolua_stratagus_Exit00(), tolua_stratagus_ExitNetwork100(), tolua_stratagus_FindButtonStyle00(), tolua_stratagus_GetDoubleClickDelay00(), tolua_stratagus_GetEffectsVolume00(), tolua_stratagus_GetGamePaused00(), tolua_stratagus_GetGameSpeed00(), tolua_stratagus_GetGrabMouse00(), tolua_stratagus_GetHoldClickDelay00(), tolua_stratagus_GetKeyScroll00(), tolua_stratagus_GetLeaveStops00(), tolua_stratagus_GetMouseScroll00(), tolua_stratagus_GetMusicVolume00(), tolua_stratagus_GetNetworkState00(), tolua_stratagus_GetNumOpponents00(), tolua_stratagus_GetTimer00(), tolua_stratagus_GraphicAnimation_clone00(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageButton_new00(), tolua_stratagus_ImageButton_new00_local(), tolua_stratagus_ImageButton_setDisabledImage00(), tolua_stratagus_ImageButton_setNormalImage00(), tolua_stratagus_ImageButton_setPressedImage00(), tolua_stratagus_ImageCheckBox_new00(), tolua_stratagus_ImageCheckBox_new00_local(), tolua_stratagus_ImageCheckBox_setCheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setCheckedPressedImage00(), tolua_stratagus_ImageCheckBox_setUncheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setUncheckedPressedImage00(), tolua_stratagus_ImageRadioButton_new00(), tolua_stratagus_ImageRadioButton_new00_local(), tolua_stratagus_ImageRadioButton_setCheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setCheckedPressedImage00(), tolua_stratagus_ImageRadioButton_setUncheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setUncheckedPressedImage00(), tolua_stratagus_ImageSlider_new00(), tolua_stratagus_ImageSlider_new00_local(), tolua_stratagus_ImageSlider_setBackgroundImage00(), tolua_stratagus_ImageSlider_setMarkerImage00(), tolua_stratagus_ImageWidget_new00(), tolua_stratagus_ImageWidget_new00_local(), tolua_stratagus_InitNetwork100(), tolua_stratagus_InitVideo00(), tolua_stratagus_IsEffectsEnabled00(), tolua_stratagus_IsMusicEnabled00(), tolua_stratagus_IsNetworkGame00(), tolua_stratagus_IsReplayGame00(), tolua_stratagus_Label_adjustSize00(), tolua_stratagus_Label_getAlignment00(), tolua_stratagus_Label_getCaption00(), tolua_stratagus_Label_new00(), tolua_stratagus_Label_new00_local(), tolua_stratagus_Label_setAlignment00(), tolua_stratagus_Label_setCaption00(), tolua_stratagus_ListBoxWidget_getSelected00(), tolua_stratagus_ListBoxWidget_new00(), tolua_stratagus_ListBoxWidget_new00_local(), tolua_stratagus_ListBoxWidget_setList00(), tolua_stratagus_ListBoxWidget_setSelected00(), tolua_stratagus_LoadPO00(), tolua_stratagus_LuaActionListener_new00(), tolua_stratagus_LuaActionListener_new00_local(), tolua_stratagus_MultiLineLabel_adjustSize00(), tolua_stratagus_MultiLineLabel_draw00(), tolua_stratagus_MultiLineLabel_getAlignment00(), tolua_stratagus_MultiLineLabel_getCaption00(), tolua_stratagus_MultiLineLabel_getLineWidth00(), tolua_stratagus_MultiLineLabel_getVerticalAlignment00(), tolua_stratagus_MultiLineLabel_new00(), tolua_stratagus_MultiLineLabel_new00_local(), tolua_stratagus_MultiLineLabel_setAlignment00(), tolua_stratagus_MultiLineLabel_setCaption00(), tolua_stratagus_MultiLineLabel_setLineWidth00(), tolua_stratagus_MultiLineLabel_setVerticalAlignment00(), tolua_stratagus_NetworkDetachFromServer00(), tolua_stratagus_NetworkGamePrepareGameSettings00(), tolua_stratagus_NetworkInitClientConnect00(), tolua_stratagus_NetworkInitServerConnect00(), tolua_stratagus_NetworkProcessClientRequest00(), tolua_stratagus_NetworkServerResyncClients00(), tolua_stratagus_NetworkServerStartGame00(), tolua_stratagus_NetworkSetupServerAddress00(), tolua_stratagus_PlayFile00(), tolua_stratagus_PlayMusic00(), tolua_stratagus_RadioButton_adjustSize00(), tolua_stratagus_RadioButton_getCaption00(), tolua_stratagus_RadioButton_getGroup00(), tolua_stratagus_RadioButton_isMarked00(), tolua_stratagus_RadioButton_new00(), tolua_stratagus_RadioButton_new00_local(), tolua_stratagus_RadioButton_setCaption00(), tolua_stratagus_RadioButton_setGroup00(), tolua_stratagus_RadioButton_setMarked00(), tolua_stratagus_SaveGame00(), tolua_stratagus_SaveReplay00(), tolua_stratagus_ScrollArea_getContent00(), tolua_stratagus_ScrollArea_getScrollbarWidth00(), tolua_stratagus_ScrollArea_new00(), tolua_stratagus_ScrollArea_new00_local(), tolua_stratagus_ScrollArea_setContent00(), tolua_stratagus_ScrollArea_setScrollbarWidth00(), tolua_stratagus_ScrollingWidget_add00(), tolua_stratagus_ScrollingWidget_getSpeed00(), tolua_stratagus_ScrollingWidget_new00(), tolua_stratagus_ScrollingWidget_new00_local(), tolua_stratagus_ScrollingWidget_restart00(), tolua_stratagus_ScrollingWidget_setSpeed00(), tolua_stratagus_SetChannelStereo00(), tolua_stratagus_SetChannelVolume00(), tolua_stratagus_SetDoubleClickDelay00(), tolua_stratagus_SetEditorPatchIcon00(), tolua_stratagus_SetEditorSelectIcon00(), tolua_stratagus_SetEditorStartUnit00(), tolua_stratagus_SetEditorUnitsIcon00(), tolua_stratagus_SetEffectsEnabled00(), tolua_stratagus_SetEffectsVolume00(), tolua_stratagus_SetGamePaused00(), tolua_stratagus_SetGameSpeed00(), tolua_stratagus_SetGrabMouse00(), tolua_stratagus_SetHoldClickDelay00(), tolua_stratagus_SetKeyScroll00(), tolua_stratagus_SetLeaveStops00(), tolua_stratagus_SetMouseScroll00(), tolua_stratagus_SetMusicEnabled00(), tolua_stratagus_SetMusicVolume00(), tolua_stratagus_SetTranslationsFiles00(), tolua_stratagus_SetTrigger00(), tolua_stratagus_Slider_getMarkerLength00(), tolua_stratagus_Slider_getOrientation00(), tolua_stratagus_Slider_getScaleEnd00(), tolua_stratagus_Slider_getScaleStart00(), tolua_stratagus_Slider_getStepLength00(), tolua_stratagus_Slider_getValue00(), tolua_stratagus_Slider_new00(), tolua_stratagus_Slider_new00_local(), tolua_stratagus_Slider_setMarkerLength00(), tolua_stratagus_Slider_setOrientation00(), tolua_stratagus_Slider_setScale00(), tolua_stratagus_Slider_setScaleEnd00(), tolua_stratagus_Slider_setScaleStart00(), tolua_stratagus_Slider_setStepLength00(), tolua_stratagus_Slider_setValue00(), tolua_stratagus_StartEditor00(), tolua_stratagus_StartMap00(), tolua_stratagus_StartPatchEditor00(), tolua_stratagus_StartReplay00(), tolua_stratagus_StartSavedGame00(), tolua_stratagus_StatBoxWidget_getCaption00(), tolua_stratagus_StatBoxWidget_getPercent00(), tolua_stratagus_StatBoxWidget_new00(), tolua_stratagus_StatBoxWidget_new00_local(), tolua_stratagus_StatBoxWidget_setCaption00(), tolua_stratagus_StatBoxWidget_setPercent00(), tolua_stratagus_StaticParticle_new00(), tolua_stratagus_StaticParticle_new00_local(), tolua_stratagus_StopAllChannels00(), tolua_stratagus_StopChannel00(), tolua_stratagus_StopGame00(), tolua_stratagus_StopMusic00(), tolua_stratagus_SyncRand00(), tolua_stratagus_TextField_getText00(), tolua_stratagus_TextField_new00(), tolua_stratagus_TextField_new00_local(), tolua_stratagus_TextField_setText00(), tolua_stratagus_ToggleFullScreen00(), tolua_stratagus_Translate00(), tolua_stratagus_UnitTypeByIdent00(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CFiller___seti00(), tolua_stratagus_vector_CFiller__assign00(), tolua_stratagus_vector_CFiller__at00(), tolua_stratagus_vector_CFiller__at01(), tolua_stratagus_vector_CFiller__back00(), tolua_stratagus_vector_CFiller__back01(), tolua_stratagus_vector_CFiller__clear00(), tolua_stratagus_vector_CFiller__delete00(), tolua_stratagus_vector_CFiller__empty00(), tolua_stratagus_vector_CFiller__front00(), tolua_stratagus_vector_CFiller__front01(), tolua_stratagus_vector_CFiller__new00(), tolua_stratagus_vector_CFiller__new00_local(), tolua_stratagus_vector_CFiller__pop_back00(), tolua_stratagus_vector_CFiller__push_back00(), tolua_stratagus_vector_CFiller__size00(), tolua_stratagus_vector_CUIButton___geti00(), tolua_stratagus_vector_CUIButton___geti01(), tolua_stratagus_vector_CUIButton___seti00(), tolua_stratagus_vector_CUIButton__assign00(), tolua_stratagus_vector_CUIButton__at00(), tolua_stratagus_vector_CUIButton__at01(), tolua_stratagus_vector_CUIButton__back00(), tolua_stratagus_vector_CUIButton__back01(), tolua_stratagus_vector_CUIButton__clear00(), tolua_stratagus_vector_CUIButton__delete00(), tolua_stratagus_vector_CUIButton__empty00(), tolua_stratagus_vector_CUIButton__front00(), tolua_stratagus_vector_CUIButton__front01(), tolua_stratagus_vector_CUIButton__new00(), tolua_stratagus_vector_CUIButton__new00_local(), tolua_stratagus_vector_CUIButton__pop_back00(), tolua_stratagus_vector_CUIButton__push_back00(), tolua_stratagus_vector_CUIButton__size00(), tolua_stratagus_vector_string___geti00(), tolua_stratagus_vector_string___geti01(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__at00(), tolua_stratagus_vector_string__at01(), tolua_stratagus_vector_string__back00(), tolua_stratagus_vector_string__back01(), tolua_stratagus_vector_string__clear00(), tolua_stratagus_vector_string__delete00(), tolua_stratagus_vector_string__empty00(), tolua_stratagus_vector_string__front00(), tolua_stratagus_vector_string__front01(), tolua_stratagus_vector_string__new00(), tolua_stratagus_vector_string__new00_local(), tolua_stratagus_vector_string__pop_back00(), tolua_stratagus_vector_string__push_back00(), tolua_stratagus_vector_string__size00(), tolua_stratagus_Widget_addActionListener00(), tolua_stratagus_Widget_getBackgroundColor00(), tolua_stratagus_Widget_getBaseColor00(), tolua_stratagus_Widget_getBorderSize00(), tolua_stratagus_Widget_getDisabledColor00(), tolua_stratagus_Widget_getForegroundColor00(), tolua_stratagus_Widget_getHeight00(), tolua_stratagus_Widget_getHotKey00(), tolua_stratagus_Widget_getWidth00(), tolua_stratagus_Widget_getX00(), tolua_stratagus_Widget_getY00(), tolua_stratagus_Widget_isEnabled00(), tolua_stratagus_Widget_isVisible00(), tolua_stratagus_Widget_setBackgroundColor00(), tolua_stratagus_Widget_setBaseColor00(), tolua_stratagus_Widget_setBorderSize00(), tolua_stratagus_Widget_setDisabledColor00(), tolua_stratagus_Widget_setEnabled00(), tolua_stratagus_Widget_setFont00(), tolua_stratagus_Widget_setForegroundColor00(), tolua_stratagus_Widget_setGlobalFont00(), tolua_stratagus_Widget_setHeight00(), tolua_stratagus_Widget_setHotKey00(), tolua_stratagus_Widget_setHotKey01(), tolua_stratagus_Widget_setPosition00(), tolua_stratagus_Widget_setSize00(), tolua_stratagus_Widget_setVisible00(), tolua_stratagus_Widget_setWidth00(), tolua_stratagus_Widget_setX00(), tolua_stratagus_Widget_setY00(), tolua_stratagus_Window_getAlignment00(), tolua_stratagus_Window_getCaption00(), tolua_stratagus_Window_getContent00(), tolua_stratagus_Window_getPadding00(), tolua_stratagus_Window_getTitleBarHeight00(), tolua_stratagus_Window_isMovable00(), tolua_stratagus_Window_isOpaque00(), tolua_stratagus_Window_new00(), tolua_stratagus_Window_new00_local(), tolua_stratagus_Window_resizeToContent00(), tolua_stratagus_Window_setAlignment00(), tolua_stratagus_Window_setCaption00(), tolua_stratagus_Window_setContent00(), tolua_stratagus_Window_setMovable00(), tolua_stratagus_Window_setOpaque00(), tolua_stratagus_Window_setPadding00(), tolua_stratagus_Window_setTitleBarHeight00(), tolua_stratagus_Windows_add00(), tolua_stratagus_Windows_new00(), and tolua_stratagus_Windows_new00_local().
| TOLUA_API int tolua_fast_isa | ( | lua_State * | L, | |
| int | mt_indexa, | |||
| int | mt_indexb, | |||
| int | super_index | |||
| ) |
| TOLUA_API void tolua_function | ( | lua_State * | L, | |
| const char * | name, | |||
| lua_CFunction | func | |||
| ) |
Definition at line 579 of file tolua_map.cpp.
Referenced by tolua_open(), and tolua_stratagus_open().
| TOLUA_API int tolua_getfieldboolean | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| int | def | |||
| ) |
Definition at line 124 of file tolua_to.cpp.
| TOLUA_API int tolua_isboolean | ( | lua_State * | L, | |
| int | lo, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 224 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, and tolua_Error::type.
Referenced by tolua_set_AStarKnowUnseenTerrain(), tolua_set_CButtonPanel_ShowCommandKey(), tolua_set_CMinimap_ShowSelected(), tolua_set_CMinimap_Transparent(), tolua_set_CMinimap_WithTerrain(), tolua_set_CPreference_ShowAttackRange(), tolua_set_CPreference_ShowReactionRange(), tolua_set_CPreference_ShowSightRange(), tolua_set_CUserInterface_CompletedBarShadow(), tolua_set_CVideo_FullScreen(), tolua_set_GameObserve(), tolua_set_GamePaused(), tolua_set_GameRunning(), tolua_set_Settings_NoFogOfWar(), tolua_set_UseGLTextureCompression(), tolua_set_UseOpenGL(), tolua_stratagus_ActionSetTimer00(), tolua_stratagus_CheckBox_new01(), tolua_stratagus_CheckBox_new01_local(), tolua_stratagus_CheckBox_setMarked00(), tolua_stratagus_CMenuScreen_run00(), tolua_stratagus_CMenuScreen_setDrawMenusUnder00(), tolua_stratagus_Container_setOpaque00(), tolua_stratagus_ImageCheckBox_new01(), tolua_stratagus_ImageCheckBox_new01_local(), tolua_stratagus_ImageRadioButton_new01(), tolua_stratagus_ImageRadioButton_new01_local(), tolua_stratagus_RadioButton_new01(), tolua_stratagus_RadioButton_new01_local(), tolua_stratagus_RadioButton_setMarked00(), tolua_stratagus_SetEffectsEnabled00(), tolua_stratagus_SetGamePaused00(), tolua_stratagus_SetGrabMouse00(), tolua_stratagus_SetKeyScroll00(), tolua_stratagus_SetLeaveStops00(), tolua_stratagus_SetMouseScroll00(), tolua_stratagus_SetMusicEnabled00(), tolua_stratagus_StartMap00(), tolua_stratagus_StartReplay00(), tolua_stratagus_Widget_setEnabled00(), tolua_stratagus_Widget_setVisible00(), tolua_stratagus_Window_setMovable00(), and tolua_stratagus_Window_setOpaque00().
| TOLUA_API int tolua_isbooleanarray | ( | lua_State * | L, | |
| int | lo, | |||
| int | dim, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 319 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, tolua_istable(), and tolua_Error::type.
| TOLUA_API int tolua_isnoobj | ( | lua_State * | L, | |
| int | lo, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 205 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, and tolua_Error::type.
Referenced by tolua_stratagus__00(), tolua_stratagus_ActionDefeat00(), tolua_stratagus_ActionDraw00(), tolua_stratagus_ActionSetTimer00(), tolua_stratagus_ActionStartTimer00(), tolua_stratagus_ActionStopTimer00(), tolua_stratagus_ActionVictory00(), tolua_stratagus_AddTranslation00(), tolua_stratagus_ButtonWidget_adjustSize00(), tolua_stratagus_ButtonWidget_getCaption00(), tolua_stratagus_ButtonWidget_new00(), tolua_stratagus_ButtonWidget_new00_local(), tolua_stratagus_ButtonWidget_setCaption00(), tolua_stratagus_CChunkParticle_new00(), tolua_stratagus_CChunkParticle_new00_local(), tolua_stratagus_CColor_new00(), tolua_stratagus_CColor_new00_local(), tolua_stratagus_CFiller_new00(), tolua_stratagus_CFiller_new00_local(), tolua_stratagus_CFont_Get00(), tolua_stratagus_CFont_Height00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFont_Width00(), tolua_stratagus_CFontColor_Get00(), tolua_stratagus_CFontColor_New00(), tolua_stratagus_CGraphic_Free00(), tolua_stratagus_CGraphic_Load00(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CGraphic_Resize00(), tolua_stratagus_CheckBox_adjustSize00(), tolua_stratagus_CheckBox_getCaption00(), tolua_stratagus_CheckBox_isMarked00(), tolua_stratagus_CheckBox_new00(), tolua_stratagus_CheckBox_new00_local(), tolua_stratagus_CheckBox_new01(), tolua_stratagus_CheckBox_new01_local(), tolua_stratagus_CheckBox_setCaption00(), tolua_stratagus_CheckBox_setMarked00(), tolua_stratagus_CIcon_Get00(), tolua_stratagus_CIcon_New00(), tolua_stratagus_CMenuScreen_addLogicCallback00(), tolua_stratagus_CMenuScreen_getDrawMenusUnder00(), tolua_stratagus_CMenuScreen_new00(), tolua_stratagus_CMenuScreen_new00_local(), tolua_stratagus_CMenuScreen_run00(), tolua_stratagus_CMenuScreen_setDrawMenusUnder00(), tolua_stratagus_CMenuScreen_stop00(), tolua_stratagus_CMenuScreen_stopAll00(), tolua_stratagus_Color_new00(), tolua_stratagus_Color_new00_local(), tolua_stratagus_Container_add00(), tolua_stratagus_Container_clear00(), tolua_stratagus_Container_isOpaque00(), tolua_stratagus_Container_new00(), tolua_stratagus_Container_new00_local(), tolua_stratagus_Container_remove00(), tolua_stratagus_Container_setOpaque00(), tolua_stratagus_CParticle_clone00(), tolua_stratagus_CParticleManager_add00(), tolua_stratagus_CParticleManager_delete00(), tolua_stratagus_CParticleManager_new00(), tolua_stratagus_CParticleManager_new00_local(), tolua_stratagus_CPatch_getType00(), tolua_stratagus_CPatch_getX00(), tolua_stratagus_CPatch_getY00(), tolua_stratagus_CPatch_setPos00(), tolua_stratagus_CPatch_setX00(), tolua_stratagus_CPatch_setY00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_getPatch00(), tolua_stratagus_CPatchManager_getPatchTypeNames00(), tolua_stratagus_CPatchManager_moveToBottom00(), tolua_stratagus_CPatchManager_moveToTop00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPatchType_getFlag00(), tolua_stratagus_CPatchType_getGraphic00(), tolua_stratagus_CPatchType_getTileHeight00(), tolua_stratagus_CPatchType_getTileWidth00(), tolua_stratagus_CPieMenu_SetRadius00(), tolua_stratagus_CPlayer_IsAllied00(), tolua_stratagus_CPlayer_IsAllied01(), tolua_stratagus_CPlayer_IsBothSharedVision00(), tolua_stratagus_CPlayer_IsBothSharedVision01(), tolua_stratagus_CPlayer_IsEnemy00(), tolua_stratagus_CPlayer_IsEnemy01(), tolua_stratagus_CPlayer_IsSharedVision00(), tolua_stratagus_CPlayer_IsSharedVision01(), tolua_stratagus_CPlayer_IsTeamed00(), tolua_stratagus_CPlayer_IsTeamed01(), tolua_stratagus_CPlayer_SetStartView00(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CPosition_new00(), tolua_stratagus_CPosition_new00_local(), tolua_stratagus_CStatusLine_Clear00(), tolua_stratagus_CStatusLine_Get00(), tolua_stratagus_CStatusLine_Set00(), tolua_stratagus_CUIButton_delete00(), tolua_stratagus_CUIButton_new00(), tolua_stratagus_CUIButton_new00_local(), tolua_stratagus_CVideo_ResizeScreen00(), tolua_stratagus_CViewport_Viewport2MapX00(), tolua_stratagus_CViewport_Viewport2MapY00(), tolua_stratagus_DropDown_getListBox00(), tolua_stratagus_DropDown_getScrollArea00(), tolua_stratagus_DropDown_getSelected00(), tolua_stratagus_DropDown_setListBox00(), tolua_stratagus_DropDown_setScrollArea00(), tolua_stratagus_DropDown_setSelected00(), tolua_stratagus_DropDownWidget_getListBox00(), tolua_stratagus_DropDownWidget_new00(), tolua_stratagus_DropDownWidget_new00_local(), tolua_stratagus_DropDownWidget_setList00(), tolua_stratagus_DropDownWidget_setSize00(), tolua_stratagus_EditorSaveMap00(), tolua_stratagus_Exit00(), tolua_stratagus_ExitNetwork100(), tolua_stratagus_FindButtonStyle00(), tolua_stratagus_GetDoubleClickDelay00(), tolua_stratagus_GetEffectsVolume00(), tolua_stratagus_GetGamePaused00(), tolua_stratagus_GetGameSpeed00(), tolua_stratagus_GetGrabMouse00(), tolua_stratagus_GetHoldClickDelay00(), tolua_stratagus_GetKeyScroll00(), tolua_stratagus_GetLeaveStops00(), tolua_stratagus_GetMouseScroll00(), tolua_stratagus_GetMusicVolume00(), tolua_stratagus_GetNetworkState00(), tolua_stratagus_GetNumOpponents00(), tolua_stratagus_GetTimer00(), tolua_stratagus_GraphicAnimation_clone00(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageButton_new00(), tolua_stratagus_ImageButton_new00_local(), tolua_stratagus_ImageButton_new01(), tolua_stratagus_ImageButton_new01_local(), tolua_stratagus_ImageButton_setDisabledImage00(), tolua_stratagus_ImageButton_setNormalImage00(), tolua_stratagus_ImageButton_setPressedImage00(), tolua_stratagus_ImageCheckBox_new00(), tolua_stratagus_ImageCheckBox_new00_local(), tolua_stratagus_ImageCheckBox_new01(), tolua_stratagus_ImageCheckBox_new01_local(), tolua_stratagus_ImageCheckBox_setCheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setCheckedPressedImage00(), tolua_stratagus_ImageCheckBox_setUncheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setUncheckedPressedImage00(), tolua_stratagus_ImageRadioButton_new00(), tolua_stratagus_ImageRadioButton_new00_local(), tolua_stratagus_ImageRadioButton_new01(), tolua_stratagus_ImageRadioButton_new01_local(), tolua_stratagus_ImageRadioButton_setCheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setCheckedPressedImage00(), tolua_stratagus_ImageRadioButton_setUncheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setUncheckedPressedImage00(), tolua_stratagus_ImageSlider_new00(), tolua_stratagus_ImageSlider_new00_local(), tolua_stratagus_ImageSlider_new01(), tolua_stratagus_ImageSlider_new01_local(), tolua_stratagus_ImageSlider_setBackgroundImage00(), tolua_stratagus_ImageSlider_setMarkerImage00(), tolua_stratagus_ImageWidget_new00(), tolua_stratagus_ImageWidget_new00_local(), tolua_stratagus_InitNetwork100(), tolua_stratagus_InitVideo00(), tolua_stratagus_IsEffectsEnabled00(), tolua_stratagus_IsMusicEnabled00(), tolua_stratagus_IsNetworkGame00(), tolua_stratagus_IsReplayGame00(), tolua_stratagus_Label_adjustSize00(), tolua_stratagus_Label_getAlignment00(), tolua_stratagus_Label_getCaption00(), tolua_stratagus_Label_new00(), tolua_stratagus_Label_new00_local(), tolua_stratagus_Label_setAlignment00(), tolua_stratagus_Label_setCaption00(), tolua_stratagus_ListBoxWidget_getSelected00(), tolua_stratagus_ListBoxWidget_new00(), tolua_stratagus_ListBoxWidget_new00_local(), tolua_stratagus_ListBoxWidget_setList00(), tolua_stratagus_ListBoxWidget_setSelected00(), tolua_stratagus_LoadPO00(), tolua_stratagus_LuaActionListener_new00(), tolua_stratagus_LuaActionListener_new00_local(), tolua_stratagus_MultiLineLabel_adjustSize00(), tolua_stratagus_MultiLineLabel_draw00(), tolua_stratagus_MultiLineLabel_getAlignment00(), tolua_stratagus_MultiLineLabel_getCaption00(), tolua_stratagus_MultiLineLabel_getLineWidth00(), tolua_stratagus_MultiLineLabel_getVerticalAlignment00(), tolua_stratagus_MultiLineLabel_new00(), tolua_stratagus_MultiLineLabel_new00_local(), tolua_stratagus_MultiLineLabel_new01(), tolua_stratagus_MultiLineLabel_new01_local(), tolua_stratagus_MultiLineLabel_setAlignment00(), tolua_stratagus_MultiLineLabel_setCaption00(), tolua_stratagus_MultiLineLabel_setLineWidth00(), tolua_stratagus_MultiLineLabel_setVerticalAlignment00(), tolua_stratagus_NetworkDetachFromServer00(), tolua_stratagus_NetworkGamePrepareGameSettings00(), tolua_stratagus_NetworkInitClientConnect00(), tolua_stratagus_NetworkInitServerConnect00(), tolua_stratagus_NetworkProcessClientRequest00(), tolua_stratagus_NetworkServerResyncClients00(), tolua_stratagus_NetworkServerStartGame00(), tolua_stratagus_NetworkSetupServerAddress00(), tolua_stratagus_PlayFile00(), tolua_stratagus_PlayMusic00(), tolua_stratagus_RadioButton_adjustSize00(), tolua_stratagus_RadioButton_getCaption00(), tolua_stratagus_RadioButton_getGroup00(), tolua_stratagus_RadioButton_isMarked00(), tolua_stratagus_RadioButton_new00(), tolua_stratagus_RadioButton_new00_local(), tolua_stratagus_RadioButton_new01(), tolua_stratagus_RadioButton_new01_local(), tolua_stratagus_RadioButton_setCaption00(), tolua_stratagus_RadioButton_setGroup00(), tolua_stratagus_RadioButton_setMarked00(), tolua_stratagus_SaveGame00(), tolua_stratagus_SaveReplay00(), tolua_stratagus_ScrollArea_getContent00(), tolua_stratagus_ScrollArea_getScrollbarWidth00(), tolua_stratagus_ScrollArea_new00(), tolua_stratagus_ScrollArea_new00_local(), tolua_stratagus_ScrollArea_setContent00(), tolua_stratagus_ScrollArea_setScrollbarWidth00(), tolua_stratagus_ScrollingWidget_add00(), tolua_stratagus_ScrollingWidget_getSpeed00(), tolua_stratagus_ScrollingWidget_new00(), tolua_stratagus_ScrollingWidget_new00_local(), tolua_stratagus_ScrollingWidget_restart00(), tolua_stratagus_ScrollingWidget_setSpeed00(), tolua_stratagus_SetChannelStereo00(), tolua_stratagus_SetChannelVolume00(), tolua_stratagus_SetDoubleClickDelay00(), tolua_stratagus_SetEditorPatchIcon00(), tolua_stratagus_SetEditorSelectIcon00(), tolua_stratagus_SetEditorStartUnit00(), tolua_stratagus_SetEditorUnitsIcon00(), tolua_stratagus_SetEffectsEnabled00(), tolua_stratagus_SetEffectsVolume00(), tolua_stratagus_SetGamePaused00(), tolua_stratagus_SetGameSpeed00(), tolua_stratagus_SetGrabMouse00(), tolua_stratagus_SetHoldClickDelay00(), tolua_stratagus_SetKeyScroll00(), tolua_stratagus_SetLeaveStops00(), tolua_stratagus_SetMouseScroll00(), tolua_stratagus_SetMusicEnabled00(), tolua_stratagus_SetMusicVolume00(), tolua_stratagus_SetTranslationsFiles00(), tolua_stratagus_SetTrigger00(), tolua_stratagus_Slider_getMarkerLength00(), tolua_stratagus_Slider_getOrientation00(), tolua_stratagus_Slider_getScaleEnd00(), tolua_stratagus_Slider_getScaleStart00(), tolua_stratagus_Slider_getStepLength00(), tolua_stratagus_Slider_getValue00(), tolua_stratagus_Slider_new00(), tolua_stratagus_Slider_new00_local(), tolua_stratagus_Slider_new01(), tolua_stratagus_Slider_new01_local(), tolua_stratagus_Slider_setMarkerLength00(), tolua_stratagus_Slider_setOrientation00(), tolua_stratagus_Slider_setScale00(), tolua_stratagus_Slider_setScaleEnd00(), tolua_stratagus_Slider_setScaleStart00(), tolua_stratagus_Slider_setStepLength00(), tolua_stratagus_Slider_setValue00(), tolua_stratagus_StartEditor00(), tolua_stratagus_StartMap00(), tolua_stratagus_StartPatchEditor00(), tolua_stratagus_StartReplay00(), tolua_stratagus_StartSavedGame00(), tolua_stratagus_StatBoxWidget_getCaption00(), tolua_stratagus_StatBoxWidget_getPercent00(), tolua_stratagus_StatBoxWidget_new00(), tolua_stratagus_StatBoxWidget_new00_local(), tolua_stratagus_StatBoxWidget_setCaption00(), tolua_stratagus_StatBoxWidget_setPercent00(), tolua_stratagus_StaticParticle_new00(), tolua_stratagus_StaticParticle_new00_local(), tolua_stratagus_StopAllChannels00(), tolua_stratagus_StopChannel00(), tolua_stratagus_StopGame00(), tolua_stratagus_StopMusic00(), tolua_stratagus_SyncRand00(), tolua_stratagus_SyncRand01(), tolua_stratagus_TextField_getText00(), tolua_stratagus_TextField_new00(), tolua_stratagus_TextField_new00_local(), tolua_stratagus_TextField_setText00(), tolua_stratagus_ToggleFullScreen00(), tolua_stratagus_Translate00(), tolua_stratagus_UnitTypeByIdent00(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CFiller___seti00(), tolua_stratagus_vector_CFiller__assign00(), tolua_stratagus_vector_CFiller__at00(), tolua_stratagus_vector_CFiller__at01(), tolua_stratagus_vector_CFiller__back00(), tolua_stratagus_vector_CFiller__back01(), tolua_stratagus_vector_CFiller__clear00(), tolua_stratagus_vector_CFiller__delete00(), tolua_stratagus_vector_CFiller__empty00(), tolua_stratagus_vector_CFiller__front00(), tolua_stratagus_vector_CFiller__front01(), tolua_stratagus_vector_CFiller__new00(), tolua_stratagus_vector_CFiller__new00_local(), tolua_stratagus_vector_CFiller__pop_back00(), tolua_stratagus_vector_CFiller__push_back00(), tolua_stratagus_vector_CFiller__size00(), tolua_stratagus_vector_CUIButton___geti00(), tolua_stratagus_vector_CUIButton___geti01(), tolua_stratagus_vector_CUIButton___seti00(), tolua_stratagus_vector_CUIButton__assign00(), tolua_stratagus_vector_CUIButton__at00(), tolua_stratagus_vector_CUIButton__at01(), tolua_stratagus_vector_CUIButton__back00(), tolua_stratagus_vector_CUIButton__back01(), tolua_stratagus_vector_CUIButton__clear00(), tolua_stratagus_vector_CUIButton__delete00(), tolua_stratagus_vector_CUIButton__empty00(), tolua_stratagus_vector_CUIButton__front00(), tolua_stratagus_vector_CUIButton__front01(), tolua_stratagus_vector_CUIButton__new00(), tolua_stratagus_vector_CUIButton__new00_local(), tolua_stratagus_vector_CUIButton__pop_back00(), tolua_stratagus_vector_CUIButton__push_back00(), tolua_stratagus_vector_CUIButton__size00(), tolua_stratagus_vector_string___geti00(), tolua_stratagus_vector_string___geti01(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__at00(), tolua_stratagus_vector_string__at01(), tolua_stratagus_vector_string__back00(), tolua_stratagus_vector_string__back01(), tolua_stratagus_vector_string__clear00(), tolua_stratagus_vector_string__delete00(), tolua_stratagus_vector_string__empty00(), tolua_stratagus_vector_string__front00(), tolua_stratagus_vector_string__front01(), tolua_stratagus_vector_string__new00(), tolua_stratagus_vector_string__new00_local(), tolua_stratagus_vector_string__pop_back00(), tolua_stratagus_vector_string__push_back00(), tolua_stratagus_vector_string__size00(), tolua_stratagus_Widget_addActionListener00(), tolua_stratagus_Widget_getBackgroundColor00(), tolua_stratagus_Widget_getBaseColor00(), tolua_stratagus_Widget_getBorderSize00(), tolua_stratagus_Widget_getDisabledColor00(), tolua_stratagus_Widget_getForegroundColor00(), tolua_stratagus_Widget_getHeight00(), tolua_stratagus_Widget_getHotKey00(), tolua_stratagus_Widget_getWidth00(), tolua_stratagus_Widget_getX00(), tolua_stratagus_Widget_getY00(), tolua_stratagus_Widget_isEnabled00(), tolua_stratagus_Widget_isVisible00(), tolua_stratagus_Widget_setBackgroundColor00(), tolua_stratagus_Widget_setBaseColor00(), tolua_stratagus_Widget_setBorderSize00(), tolua_stratagus_Widget_setDisabledColor00(), tolua_stratagus_Widget_setEnabled00(), tolua_stratagus_Widget_setFont00(), tolua_stratagus_Widget_setForegroundColor00(), tolua_stratagus_Widget_setGlobalFont00(), tolua_stratagus_Widget_setHeight00(), tolua_stratagus_Widget_setHotKey00(), tolua_stratagus_Widget_setHotKey01(), tolua_stratagus_Widget_setPosition00(), tolua_stratagus_Widget_setSize00(), tolua_stratagus_Widget_setVisible00(), tolua_stratagus_Widget_setWidth00(), tolua_stratagus_Widget_setX00(), tolua_stratagus_Widget_setY00(), tolua_stratagus_Window_getAlignment00(), tolua_stratagus_Window_getCaption00(), tolua_stratagus_Window_getContent00(), tolua_stratagus_Window_getPadding00(), tolua_stratagus_Window_getTitleBarHeight00(), tolua_stratagus_Window_isMovable00(), tolua_stratagus_Window_isOpaque00(), tolua_stratagus_Window_new00(), tolua_stratagus_Window_new00_local(), tolua_stratagus_Window_new01(), tolua_stratagus_Window_new01_local(), tolua_stratagus_Window_new02(), tolua_stratagus_Window_new02_local(), tolua_stratagus_Window_resizeToContent00(), tolua_stratagus_Window_setAlignment00(), tolua_stratagus_Window_setCaption00(), tolua_stratagus_Window_setContent00(), tolua_stratagus_Window_setMovable00(), tolua_stratagus_Window_setOpaque00(), tolua_stratagus_Window_setPadding00(), tolua_stratagus_Window_setTitleBarHeight00(), tolua_stratagus_Windows_add00(), tolua_stratagus_Windows_new00(), and tolua_stratagus_Windows_new00_local().
| TOLUA_API int tolua_isnumber | ( | lua_State * | L, | |
| int | lo, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 236 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, and tolua_Error::type.
Referenced by tolua_get_stratagus_AlliedUnitRecyclingEfficiency(), tolua_get_stratagus_CFontColor_Colors(), tolua_get_stratagus_CMapInfo_PlayerType(), tolua_get_stratagus_CPieMenu_X(), tolua_get_stratagus_CPieMenu_Y(), tolua_get_stratagus_CPlayer_Units(), tolua_get_stratagus_CPlayer_UnitTypesCount(), tolua_get_stratagus_CServerSetup_CompOpt(), tolua_get_stratagus_CServerSetup_LastFrame(), tolua_get_stratagus_CServerSetup_Ready(), tolua_get_stratagus_CUserInterface_Resources(), tolua_get_stratagus_EnemyUnitRecyclingEfficiency(), tolua_get_stratagus_Hosts(), tolua_get_stratagus_Players(), tolua_get_stratagus_Settings_Presets(), tolua_set_AStarFixedUnitCrossingCost(), tolua_set_AStarMovingUnitCrossingCost(), tolua_set_AStarUnknownTerrainCost(), tolua_set_CButtonPanel_X(), tolua_set_CButtonPanel_Y(), tolua_set_CColor_unsigned_A(), tolua_set_CColor_unsigned_B(), tolua_set_CColor_unsigned_G(), tolua_set_CColor_unsigned_R(), tolua_set_CEditor_Running(), tolua_set_CFiller_X(), tolua_set_CFiller_Y(), tolua_set_CIcon_Frame(), tolua_set_CInfoPanel_X(), tolua_set_CInfoPanel_Y(), tolua_set_CMapArea_EndX(), tolua_set_CMapArea_EndY(), tolua_set_CMapArea_ScrollPaddingBottom(), tolua_set_CMapArea_ScrollPaddingLeft(), tolua_set_CMapArea_ScrollPaddingRight(), tolua_set_CMapArea_ScrollPaddingTop(), tolua_set_CMapArea_X(), tolua_set_CMapArea_Y(), tolua_set_CMapInfo_MapHeight(), tolua_set_CMapInfo_MapWidth(), tolua_set_CMinimap_H(), tolua_set_CMinimap_W(), tolua_set_CMinimap_X(), tolua_set_CMinimap_Y(), tolua_set_CNetworkHost_unsigned_Host(), tolua_set_CNetworkHost_unsigned_PlyNr(), tolua_set_CNetworkHost_unsigned_Port(), tolua_set_Color_a(), tolua_set_Color_b(), tolua_set_Color_g(), tolua_set_Color_r(), tolua_set_CPieMenu_MouseButton(), tolua_set_CPlayer_AiEnabled(), tolua_set_CPlayer_BuildingLimit(), tolua_set_CPlayer_EnergyProductionRate(), tolua_set_CPlayer_EnergyStorageCapacity(), tolua_set_CPlayer_EnergyStored(), tolua_set_CPlayer_Index(), tolua_set_CPlayer_MagmaProductionRate(), tolua_set_CPlayer_MagmaStorageCapacity(), tolua_set_CPlayer_MagmaStored(), tolua_set_CPlayer_NumBuildings(), tolua_set_CPlayer_Score(), tolua_set_CPlayer_StartX(), tolua_set_CPlayer_StartY(), tolua_set_CPlayer_TotalBuildings(), tolua_set_CPlayer_TotalEnergy(), tolua_set_CPlayer_TotalKills(), tolua_set_CPlayer_TotalMagma(), tolua_set_CPlayer_TotalNumUnits(), tolua_set_CPlayer_TotalRazings(), tolua_set_CPlayer_TotalUnitLimit(), tolua_set_CPlayer_TotalUnits(), tolua_set_CPlayer_Type(), tolua_set_CPlayer_UnitLimit(), tolua_set_CPosition_x(), tolua_set_CPosition_y(), tolua_set_CPreference_unsigned_ShowOrders(), tolua_set_CResourceInfo_IconFrame(), tolua_set_CResourceInfo_IconX(), tolua_set_CResourceInfo_IconY(), tolua_set_CResourceInfo_TextX(), tolua_set_CResourceInfo_TextY(), tolua_set_CServerSetup_unsigned_Difficulty(), tolua_set_CServerSetup_unsigned_FogOfWar(), tolua_set_CServerSetup_unsigned_GameTypeOption(), tolua_set_CServerSetup_unsigned_MapRichness(), tolua_set_CServerSetup_unsigned_ResourcesOption(), tolua_set_CServerSetup_unsigned_RevealMap(), tolua_set_CServerSetup_unsigned_UnitsOption(), tolua_set_CStatusLine_TextX(), tolua_set_CStatusLine_TextY(), tolua_set_CStatusLine_Width(), tolua_set_CUIButton_X(), tolua_set_CUIButton_Y(), tolua_set_CUITimer_X(), tolua_set_CUITimer_Y(), tolua_set_CUnit_X(), tolua_set_CUnit_Y(), tolua_set_CUnitType_EnergyProductionRate(), tolua_set_CUnitType_EnergyStorageCapacity(), tolua_set_CUnitType_EnergyValue(), tolua_set_CUnitType_MagmaProductionRate(), tolua_set_CUnitType_MagmaStorageCapacity(), tolua_set_CUnitType_MagmaValue(), tolua_set_CUnitType_MaxEnergyUtilizationRate(), tolua_set_CUnitType_MaxMagmaUtilizationRate(), tolua_set_CUnitType_MinAttackRange(), tolua_set_CursorX(), tolua_set_CursorY(), tolua_set_CUserInterface_MaxSelectedTextX(), tolua_set_CUserInterface_MaxSelectedTextY(), tolua_set_CUserInterface_MessageScrollSpeed(), tolua_set_CVideo_Depth(), tolua_set_CVideo_Height(), tolua_set_CVideo_Width(), tolua_set_GameResult(), tolua_set_GameSpeed(), tolua_set_NetLocalHostsSlot(), tolua_set_Settings_Difficulty(), tolua_set_Settings_GameType(), tolua_set_Settings_MapRichness(), tolua_set_Settings_NetGameType(), tolua_set_Settings_NumUnits(), tolua_set_Settings_Opponents(), tolua_set_Settings_Resources(), tolua_set_Settings_RevealMap(), tolua_set_SettingsPresets_Team(), tolua_set_SettingsPresets_Type(), tolua_set_stratagus_AlliedUnitRecyclingEfficiency(), tolua_set_stratagus_CFontColor_Colors(), tolua_set_stratagus_CMapInfo_PlayerType(), tolua_set_stratagus_CPieMenu_X(), tolua_set_stratagus_CPieMenu_Y(), tolua_set_stratagus_CPlayer_Units(), tolua_set_stratagus_CServerSetup_CompOpt(), tolua_set_stratagus_CServerSetup_LastFrame(), tolua_set_stratagus_CServerSetup_Ready(), tolua_set_stratagus_CUserInterface_Resources(), tolua_set_stratagus_EnemyUnitRecyclingEfficiency(), tolua_set_stratagus_Hosts(), tolua_set_stratagus_Players(), tolua_set_stratagus_Settings_Presets(), tolua_set_unsigned_GameCycle(), tolua_stratagus_ActionSetTimer00(), tolua_stratagus_CColor_new00(), tolua_stratagus_CColor_new00_local(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CGraphic_Resize00(), tolua_stratagus_CMenuScreen_stop00(), tolua_stratagus_CMenuScreen_stopAll00(), tolua_stratagus_Color_new00(), tolua_stratagus_Color_new00_local(), tolua_stratagus_Container_add00(), tolua_stratagus_CPatch_setPos00(), tolua_stratagus_CPatch_setX00(), tolua_stratagus_CPatch_setY00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_getPatch00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPatchType_getFlag00(), tolua_stratagus_CPieMenu_SetRadius00(), tolua_stratagus_CPlayer_SetStartView00(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CPosition_new00(), tolua_stratagus_CPosition_new00_local(), tolua_stratagus_CVideo_ResizeScreen00(), tolua_stratagus_CViewport_Viewport2MapX00(), tolua_stratagus_CViewport_Viewport2MapY00(), tolua_stratagus_DropDown_setSelected00(), tolua_stratagus_DropDownWidget_setSize00(), tolua_stratagus_Exit00(), tolua_stratagus_GetNumOpponents00(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageSlider_new00(), tolua_stratagus_ImageSlider_new00_local(), tolua_stratagus_ImageSlider_new01(), tolua_stratagus_ImageSlider_new01_local(), tolua_stratagus_Label_setAlignment00(), tolua_stratagus_ListBoxWidget_new00(), tolua_stratagus_ListBoxWidget_new00_local(), tolua_stratagus_ListBoxWidget_setSelected00(), tolua_stratagus_MultiLineLabel_setAlignment00(), tolua_stratagus_MultiLineLabel_setLineWidth00(), tolua_stratagus_MultiLineLabel_setVerticalAlignment00(), tolua_stratagus_NetworkInitServerConnect00(), tolua_stratagus_ScrollArea_setScrollbarWidth00(), tolua_stratagus_ScrollingWidget_add00(), tolua_stratagus_ScrollingWidget_new00(), tolua_stratagus_ScrollingWidget_new00_local(), tolua_stratagus_ScrollingWidget_setSpeed00(), tolua_stratagus_SetChannelStereo00(), tolua_stratagus_SetChannelVolume00(), tolua_stratagus_SetDoubleClickDelay00(), tolua_stratagus_SetEffectsVolume00(), tolua_stratagus_SetGameSpeed00(), tolua_stratagus_SetHoldClickDelay00(), tolua_stratagus_SetMusicVolume00(), tolua_stratagus_SetTrigger00(), tolua_stratagus_Slider_new00(), tolua_stratagus_Slider_new00_local(), tolua_stratagus_Slider_new01(), tolua_stratagus_Slider_new01_local(), tolua_stratagus_Slider_setMarkerLength00(), tolua_stratagus_Slider_setOrientation00(), tolua_stratagus_Slider_setScale00(), tolua_stratagus_Slider_setScaleEnd00(), tolua_stratagus_Slider_setScaleStart00(), tolua_stratagus_Slider_setStepLength00(), tolua_stratagus_Slider_setValue00(), tolua_stratagus_StatBoxWidget_new00(), tolua_stratagus_StatBoxWidget_new00_local(), tolua_stratagus_StatBoxWidget_setPercent00(), tolua_stratagus_StopChannel00(), tolua_stratagus_StopGame00(), tolua_stratagus_SyncRand01(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CFiller___seti00(), tolua_stratagus_vector_CFiller__assign00(), tolua_stratagus_vector_CFiller__at00(), tolua_stratagus_vector_CFiller__at01(), tolua_stratagus_vector_CUIButton___geti00(), tolua_stratagus_vector_CUIButton___geti01(), tolua_stratagus_vector_CUIButton___seti00(), tolua_stratagus_vector_CUIButton__assign00(), tolua_stratagus_vector_CUIButton__at00(), tolua_stratagus_vector_CUIButton__at01(), tolua_stratagus_vector_string___geti00(), tolua_stratagus_vector_string___geti01(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__at00(), tolua_stratagus_vector_string__at01(), tolua_stratagus_Widget_setBorderSize00(), tolua_stratagus_Widget_setHeight00(), tolua_stratagus_Widget_setHotKey00(), tolua_stratagus_Widget_setPosition00(), tolua_stratagus_Widget_setSize00(), tolua_stratagus_Widget_setWidth00(), tolua_stratagus_Widget_setX00(), tolua_stratagus_Widget_setY00(), tolua_stratagus_Window_setAlignment00(), tolua_stratagus_Window_setPadding00(), tolua_stratagus_Window_setTitleBarHeight00(), tolua_stratagus_Windows_add00(), tolua_stratagus_Windows_new00(), and tolua_stratagus_Windows_new00_local().
| TOLUA_API int tolua_isnumberarray | ( | lua_State * | L, | |
| int | lo, | |||
| int | dim, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 346 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, tolua_istable(), and tolua_Error::type.
Referenced by tolua_stratagus_CPatchManager_newPatchType00().
| TOLUA_API int tolua_isstring | ( | lua_State * | L, | |
| int | lo, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 248 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, and tolua_Error::type.
Referenced by tolua_stratagus__00(), tolua_stratagus_Translate00(), and tolua_stratagus_Widget_setHotKey01().
| TOLUA_API int tolua_isstringarray | ( | lua_State * | L, | |
| int | lo, | |||
| int | dim, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 373 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, tolua_istable(), and tolua_Error::type.
| TOLUA_API int tolua_istable | ( | lua_State * | L, | |
| int | lo, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 260 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, and tolua_Error::type.
Referenced by tolua_isbooleanarray(), tolua_isnumberarray(), tolua_isstringarray(), tolua_istablearray(), tolua_isuserdataarray(), tolua_isusertypearray(), tolua_isvaluearray(), tolua_set_CNetworkHost_PlyName(), and tolua_stratagus_CPatchManager_newPatchType00().
| TOLUA_API int tolua_istablearray | ( | lua_State * | L, | |
| int | lo, | |||
| int | dim, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 400 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, tolua_istable(), and tolua_Error::type.
| TOLUA_API int tolua_isuserdata | ( | lua_State * | L, | |
| int | lo, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 285 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, and tolua_Error::type.
| TOLUA_API int tolua_isuserdataarray | ( | lua_State * | L, | |
| int | lo, | |||
| int | dim, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 427 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, tolua_istable(), and tolua_Error::type.
| TOLUA_API int tolua_isusertable | ( | lua_State * | L, | |
| int | lo, | |||
| const char * | type, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 272 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, lua_isusertable(), and tolua_Error::type.
Referenced by tolua_stratagus_ButtonWidget_new00(), tolua_stratagus_ButtonWidget_new00_local(), tolua_stratagus_CChunkParticle_new00(), tolua_stratagus_CChunkParticle_new00_local(), tolua_stratagus_CColor_new00(), tolua_stratagus_CColor_new00_local(), tolua_stratagus_CFiller_new00(), tolua_stratagus_CFiller_new00_local(), tolua_stratagus_CFont_Get00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFontColor_Get00(), tolua_stratagus_CFontColor_New00(), tolua_stratagus_CGraphic_Free00(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CheckBox_new00(), tolua_stratagus_CheckBox_new00_local(), tolua_stratagus_CheckBox_new01(), tolua_stratagus_CheckBox_new01_local(), tolua_stratagus_CIcon_Get00(), tolua_stratagus_CIcon_New00(), tolua_stratagus_CMenuScreen_new00(), tolua_stratagus_CMenuScreen_new00_local(), tolua_stratagus_Color_new00(), tolua_stratagus_Color_new00_local(), tolua_stratagus_Container_new00(), tolua_stratagus_Container_new00_local(), tolua_stratagus_CParticleManager_new00(), tolua_stratagus_CParticleManager_new00_local(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CPosition_new00(), tolua_stratagus_CPosition_new00_local(), tolua_stratagus_CUIButton_new00(), tolua_stratagus_CUIButton_new00_local(), tolua_stratagus_DropDownWidget_new00(), tolua_stratagus_DropDownWidget_new00_local(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageButton_new00(), tolua_stratagus_ImageButton_new00_local(), tolua_stratagus_ImageButton_new01(), tolua_stratagus_ImageButton_new01_local(), tolua_stratagus_ImageCheckBox_new00(), tolua_stratagus_ImageCheckBox_new00_local(), tolua_stratagus_ImageCheckBox_new01(), tolua_stratagus_ImageCheckBox_new01_local(), tolua_stratagus_ImageRadioButton_new00(), tolua_stratagus_ImageRadioButton_new00_local(), tolua_stratagus_ImageRadioButton_new01(), tolua_stratagus_ImageRadioButton_new01_local(), tolua_stratagus_ImageSlider_new00(), tolua_stratagus_ImageSlider_new00_local(), tolua_stratagus_ImageSlider_new01(), tolua_stratagus_ImageSlider_new01_local(), tolua_stratagus_ImageWidget_new00(), tolua_stratagus_ImageWidget_new00_local(), tolua_stratagus_Label_new00(), tolua_stratagus_Label_new00_local(), tolua_stratagus_ListBoxWidget_new00(), tolua_stratagus_ListBoxWidget_new00_local(), tolua_stratagus_LuaActionListener_new00(), tolua_stratagus_LuaActionListener_new00_local(), tolua_stratagus_MultiLineLabel_new00(), tolua_stratagus_MultiLineLabel_new00_local(), tolua_stratagus_MultiLineLabel_new01(), tolua_stratagus_MultiLineLabel_new01_local(), tolua_stratagus_RadioButton_new00(), tolua_stratagus_RadioButton_new00_local(), tolua_stratagus_RadioButton_new01(), tolua_stratagus_RadioButton_new01_local(), tolua_stratagus_ScrollArea_new00(), tolua_stratagus_ScrollArea_new00_local(), tolua_stratagus_ScrollingWidget_new00(), tolua_stratagus_ScrollingWidget_new00_local(), tolua_stratagus_Slider_new00(), tolua_stratagus_Slider_new00_local(), tolua_stratagus_Slider_new01(), tolua_stratagus_Slider_new01_local(), tolua_stratagus_StatBoxWidget_new00(), tolua_stratagus_StatBoxWidget_new00_local(), tolua_stratagus_StaticParticle_new00(), tolua_stratagus_StaticParticle_new00_local(), tolua_stratagus_TextField_new00(), tolua_stratagus_TextField_new00_local(), tolua_stratagus_vector_CFiller__new00(), tolua_stratagus_vector_CFiller__new00_local(), tolua_stratagus_vector_CUIButton__new00(), tolua_stratagus_vector_CUIButton__new00_local(), tolua_stratagus_vector_string__new00(), tolua_stratagus_vector_string__new00_local(), tolua_stratagus_Widget_setGlobalFont00(), tolua_stratagus_Window_new00(), tolua_stratagus_Window_new00_local(), tolua_stratagus_Window_new01(), tolua_stratagus_Window_new01_local(), tolua_stratagus_Window_new02(), tolua_stratagus_Window_new02_local(), tolua_stratagus_Windows_new00(), and tolua_stratagus_Windows_new00_local().
| TOLUA_API int tolua_isusertype | ( | lua_State * | L, | |
| int | lo, | |||
| const char * | type, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 297 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, lua_isusertype(), and tolua_Error::type.
Referenced by tolua_set_CButtonPanel_AutoCastBorderColorRGB(), tolua_set_CButtonPanel_Buttons(), tolua_set_CEditor_UnitTypes(), tolua_set_CFiller_G_ptr(), tolua_set_CIcon_G_ptr(), tolua_set_CMap_Info(), tolua_set_CMap_PatchManager(), tolua_set_CPieMenu_G_ptr(), tolua_set_CResourceInfo_G_ptr(), tolua_set_CStatusLine_Font_ptr(), tolua_set_CUIButton_Callback_ptr(), tolua_set_CUIButton_Style_ptr(), tolua_set_CUITimer_Font_ptr(), tolua_set_CUnit_Player_ptr(), tolua_set_CUnit_Type_ptr(), tolua_set_CUserInterface_ButtonPanel(), tolua_set_CUserInterface_CompletedBarColorRGB(), tolua_set_CUserInterface_Fillers(), tolua_set_CUserInterface_InfoPanel(), tolua_set_CUserInterface_MapArea(), tolua_set_CUserInterface_MaxSelectedFont_ptr(), tolua_set_CUserInterface_MenuButton(), tolua_set_CUserInterface_MessageFont_ptr(), tolua_set_CUserInterface_Minimap(), tolua_set_CUserInterface_MouseViewport_ptr(), tolua_set_CUserInterface_NetworkDiplomacyButton(), tolua_set_CUserInterface_NetworkMenuButton(), tolua_set_CUserInterface_PieMenu(), tolua_set_CUserInterface_SelectedButtons(), tolua_set_CUserInterface_SingleSelectedButton_ptr(), tolua_set_CUserInterface_SingleTrainingButton_ptr(), tolua_set_CUserInterface_StatusLine(), tolua_set_CUserInterface_Timer(), tolua_set_CUserInterface_TrainingButtons(), tolua_set_CUserInterface_TransportingButtons(), tolua_set_Editor(), tolua_set_GameSettings(), tolua_set_LocalSetupState(), tolua_set_Map(), tolua_set_ParticleManager(), tolua_set_Preference(), tolua_set_ServerSetupState(), tolua_set_ThisPlayer_ptr(), tolua_set_UI(), tolua_set_Video(), tolua_stratagus_ButtonWidget_adjustSize00(), tolua_stratagus_ButtonWidget_getCaption00(), tolua_stratagus_ButtonWidget_setCaption00(), tolua_stratagus_CChunkParticle_new00(), tolua_stratagus_CChunkParticle_new00_local(), tolua_stratagus_CFont_Height00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFont_Width00(), tolua_stratagus_CGraphic_Free00(), tolua_stratagus_CGraphic_Load00(), tolua_stratagus_CGraphic_Resize00(), tolua_stratagus_CheckBox_adjustSize00(), tolua_stratagus_CheckBox_getCaption00(), tolua_stratagus_CheckBox_isMarked00(), tolua_stratagus_CheckBox_setCaption00(), tolua_stratagus_CheckBox_setMarked00(), tolua_stratagus_CMenuScreen_addLogicCallback00(), tolua_stratagus_CMenuScreen_getDrawMenusUnder00(), tolua_stratagus_CMenuScreen_run00(), tolua_stratagus_CMenuScreen_setDrawMenusUnder00(), tolua_stratagus_CMenuScreen_stop00(), tolua_stratagus_CMenuScreen_stopAll00(), tolua_stratagus_Container_add00(), tolua_stratagus_Container_clear00(), tolua_stratagus_Container_isOpaque00(), tolua_stratagus_Container_remove00(), tolua_stratagus_Container_setOpaque00(), tolua_stratagus_CParticle_clone00(), tolua_stratagus_CParticleManager_add00(), tolua_stratagus_CParticleManager_delete00(), tolua_stratagus_CPatch_getType00(), tolua_stratagus_CPatch_getX00(), tolua_stratagus_CPatch_getY00(), tolua_stratagus_CPatch_setPos00(), tolua_stratagus_CPatch_setX00(), tolua_stratagus_CPatch_setY00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_getPatch00(), tolua_stratagus_CPatchManager_getPatchTypeNames00(), tolua_stratagus_CPatchManager_moveToBottom00(), tolua_stratagus_CPatchManager_moveToTop00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPatchType_getFlag00(), tolua_stratagus_CPatchType_getGraphic00(), tolua_stratagus_CPatchType_getTileHeight00(), tolua_stratagus_CPatchType_getTileWidth00(), tolua_stratagus_CPieMenu_SetRadius00(), tolua_stratagus_CPlayer_IsAllied00(), tolua_stratagus_CPlayer_IsAllied01(), tolua_stratagus_CPlayer_IsBothSharedVision00(), tolua_stratagus_CPlayer_IsBothSharedVision01(), tolua_stratagus_CPlayer_IsEnemy00(), tolua_stratagus_CPlayer_IsEnemy01(), tolua_stratagus_CPlayer_IsSharedVision00(), tolua_stratagus_CPlayer_IsSharedVision01(), tolua_stratagus_CPlayer_IsTeamed00(), tolua_stratagus_CPlayer_IsTeamed01(), tolua_stratagus_CPlayer_SetStartView00(), tolua_stratagus_CStatusLine_Clear00(), tolua_stratagus_CStatusLine_Get00(), tolua_stratagus_CStatusLine_Set00(), tolua_stratagus_CUIButton_delete00(), tolua_stratagus_CVideo_ResizeScreen00(), tolua_stratagus_CViewport_Viewport2MapX00(), tolua_stratagus_CViewport_Viewport2MapY00(), tolua_stratagus_DropDown_getListBox00(), tolua_stratagus_DropDown_getScrollArea00(), tolua_stratagus_DropDown_getSelected00(), tolua_stratagus_DropDown_setListBox00(), tolua_stratagus_DropDown_setScrollArea00(), tolua_stratagus_DropDown_setSelected00(), tolua_stratagus_DropDownWidget_getListBox00(), tolua_stratagus_DropDownWidget_setList00(), tolua_stratagus_DropDownWidget_setSize00(), tolua_stratagus_GraphicAnimation_clone00(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageButton_setDisabledImage00(), tolua_stratagus_ImageButton_setNormalImage00(), tolua_stratagus_ImageButton_setPressedImage00(), tolua_stratagus_ImageCheckBox_setCheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setCheckedPressedImage00(), tolua_stratagus_ImageCheckBox_setUncheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setUncheckedPressedImage00(), tolua_stratagus_ImageRadioButton_setCheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setCheckedPressedImage00(), tolua_stratagus_ImageRadioButton_setUncheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setUncheckedPressedImage00(), tolua_stratagus_ImageSlider_setBackgroundImage00(), tolua_stratagus_ImageSlider_setMarkerImage00(), tolua_stratagus_ImageWidget_new00(), tolua_stratagus_ImageWidget_new00_local(), tolua_stratagus_Label_adjustSize00(), tolua_stratagus_Label_getAlignment00(), tolua_stratagus_Label_getCaption00(), tolua_stratagus_Label_setAlignment00(), tolua_stratagus_Label_setCaption00(), tolua_stratagus_ListBoxWidget_getSelected00(), tolua_stratagus_ListBoxWidget_setList00(), tolua_stratagus_ListBoxWidget_setSelected00(), tolua_stratagus_MultiLineLabel_adjustSize00(), tolua_stratagus_MultiLineLabel_draw00(), tolua_stratagus_MultiLineLabel_getAlignment00(), tolua_stratagus_MultiLineLabel_getCaption00(), tolua_stratagus_MultiLineLabel_getLineWidth00(), tolua_stratagus_MultiLineLabel_getVerticalAlignment00(), tolua_stratagus_MultiLineLabel_setAlignment00(), tolua_stratagus_MultiLineLabel_setCaption00(), tolua_stratagus_MultiLineLabel_setLineWidth00(), tolua_stratagus_MultiLineLabel_setVerticalAlignment00(), tolua_stratagus_PlayFile00(), tolua_stratagus_RadioButton_adjustSize00(), tolua_stratagus_RadioButton_getCaption00(), tolua_stratagus_RadioButton_getGroup00(), tolua_stratagus_RadioButton_isMarked00(), tolua_stratagus_RadioButton_setCaption00(), tolua_stratagus_RadioButton_setGroup00(), tolua_stratagus_RadioButton_setMarked00(), tolua_stratagus_ScrollArea_getContent00(), tolua_stratagus_ScrollArea_getScrollbarWidth00(), tolua_stratagus_ScrollArea_setContent00(), tolua_stratagus_ScrollArea_setScrollbarWidth00(), tolua_stratagus_ScrollingWidget_add00(), tolua_stratagus_ScrollingWidget_getSpeed00(), tolua_stratagus_ScrollingWidget_restart00(), tolua_stratagus_ScrollingWidget_setSpeed00(), tolua_stratagus_Slider_getMarkerLength00(), tolua_stratagus_Slider_getOrientation00(), tolua_stratagus_Slider_getScaleEnd00(), tolua_stratagus_Slider_getScaleStart00(), tolua_stratagus_Slider_getStepLength00(), tolua_stratagus_Slider_getValue00(), tolua_stratagus_Slider_setMarkerLength00(), tolua_stratagus_Slider_setOrientation00(), tolua_stratagus_Slider_setScale00(), tolua_stratagus_Slider_setScaleEnd00(), tolua_stratagus_Slider_setScaleStart00(), tolua_stratagus_Slider_setStepLength00(), tolua_stratagus_Slider_setValue00(), tolua_stratagus_StatBoxWidget_getCaption00(), tolua_stratagus_StatBoxWidget_getPercent00(), tolua_stratagus_StatBoxWidget_setCaption00(), tolua_stratagus_StatBoxWidget_setPercent00(), tolua_stratagus_StaticParticle_new00(), tolua_stratagus_StaticParticle_new00_local(), tolua_stratagus_TextField_getText00(), tolua_stratagus_TextField_setText00(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CFiller___seti00(), tolua_stratagus_vector_CFiller__assign00(), tolua_stratagus_vector_CFiller__at00(), tolua_stratagus_vector_CFiller__at01(), tolua_stratagus_vector_CFiller__back00(), tolua_stratagus_vector_CFiller__back01(), tolua_stratagus_vector_CFiller__clear00(), tolua_stratagus_vector_CFiller__delete00(), tolua_stratagus_vector_CFiller__empty00(), tolua_stratagus_vector_CFiller__front00(), tolua_stratagus_vector_CFiller__front01(), tolua_stratagus_vector_CFiller__pop_back00(), tolua_stratagus_vector_CFiller__push_back00(), tolua_stratagus_vector_CFiller__size00(), tolua_stratagus_vector_CUIButton___geti00(), tolua_stratagus_vector_CUIButton___geti01(), tolua_stratagus_vector_CUIButton___seti00(), tolua_stratagus_vector_CUIButton__assign00(), tolua_stratagus_vector_CUIButton__at00(), tolua_stratagus_vector_CUIButton__at01(), tolua_stratagus_vector_CUIButton__back00(), tolua_stratagus_vector_CUIButton__back01(), tolua_stratagus_vector_CUIButton__clear00(), tolua_stratagus_vector_CUIButton__delete00(), tolua_stratagus_vector_CUIButton__empty00(), tolua_stratagus_vector_CUIButton__front00(), tolua_stratagus_vector_CUIButton__front01(), tolua_stratagus_vector_CUIButton__pop_back00(), tolua_stratagus_vector_CUIButton__push_back00(), tolua_stratagus_vector_CUIButton__size00(), tolua_stratagus_vector_string___geti00(), tolua_stratagus_vector_string___geti01(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__at00(), tolua_stratagus_vector_string__at01(), tolua_stratagus_vector_string__back00(), tolua_stratagus_vector_string__back01(), tolua_stratagus_vector_string__clear00(), tolua_stratagus_vector_string__delete00(), tolua_stratagus_vector_string__empty00(), tolua_stratagus_vector_string__front00(), tolua_stratagus_vector_string__front01(), tolua_stratagus_vector_string__pop_back00(), tolua_stratagus_vector_string__push_back00(), tolua_stratagus_vector_string__size00(), tolua_stratagus_Widget_addActionListener00(), tolua_stratagus_Widget_getBackgroundColor00(), tolua_stratagus_Widget_getBaseColor00(), tolua_stratagus_Widget_getBorderSize00(), tolua_stratagus_Widget_getDisabledColor00(), tolua_stratagus_Widget_getForegroundColor00(), tolua_stratagus_Widget_getHeight00(), tolua_stratagus_Widget_getHotKey00(), tolua_stratagus_Widget_getWidth00(), tolua_stratagus_Widget_getX00(), tolua_stratagus_Widget_getY00(), tolua_stratagus_Widget_isEnabled00(), tolua_stratagus_Widget_isVisible00(), tolua_stratagus_Widget_setBackgroundColor00(), tolua_stratagus_Widget_setBaseColor00(), tolua_stratagus_Widget_setBorderSize00(), tolua_stratagus_Widget_setDisabledColor00(), tolua_stratagus_Widget_setEnabled00(), tolua_stratagus_Widget_setFont00(), tolua_stratagus_Widget_setForegroundColor00(), tolua_stratagus_Widget_setGlobalFont00(), tolua_stratagus_Widget_setHeight00(), tolua_stratagus_Widget_setHotKey00(), tolua_stratagus_Widget_setHotKey01(), tolua_stratagus_Widget_setPosition00(), tolua_stratagus_Widget_setSize00(), tolua_stratagus_Widget_setVisible00(), tolua_stratagus_Widget_setWidth00(), tolua_stratagus_Widget_setX00(), tolua_stratagus_Widget_setY00(), tolua_stratagus_Window_getAlignment00(), tolua_stratagus_Window_getCaption00(), tolua_stratagus_Window_getContent00(), tolua_stratagus_Window_getPadding00(), tolua_stratagus_Window_getTitleBarHeight00(), tolua_stratagus_Window_isMovable00(), tolua_stratagus_Window_isOpaque00(), tolua_stratagus_Window_new02(), tolua_stratagus_Window_new02_local(), tolua_stratagus_Window_resizeToContent00(), tolua_stratagus_Window_setAlignment00(), tolua_stratagus_Window_setCaption00(), tolua_stratagus_Window_setContent00(), tolua_stratagus_Window_setMovable00(), tolua_stratagus_Window_setOpaque00(), tolua_stratagus_Window_setPadding00(), tolua_stratagus_Window_setTitleBarHeight00(), and tolua_stratagus_Windows_add00().
| TOLUA_API int tolua_isusertypearray | ( | lua_State * | L, | |
| int | lo, | |||
| const char * | type, | |||
| int | dim, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 454 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, tolua_istable(), and tolua_Error::type.
| TOLUA_API int tolua_isvalue | ( | lua_State * | L, | |
| int | lo, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
Definition at line 214 of file tolua_is.cpp.
References tolua_Error::array, tolua_Error::index, and tolua_Error::type.
| TOLUA_API int tolua_isvaluearray | ( | lua_State * | L, | |
| int | lo, | |||
| int | dim, | |||
| int | def, | |||
| tolua_Error * | err | |||
| ) |
| TOLUA_API void tolua_module | ( | lua_State * | L, | |
| const char * | name, | |||
| int | hasvar | |||
| ) |
Definition at line 428 of file tolua_map.cpp.
References tolua_ismodulemetatable(), and tolua_moduleevents().
Referenced by tolua_open(), and tolua_stratagus_open().
| TOLUA_API void tolua_open | ( | lua_State * | L | ) |
Definition at line 284 of file tolua_map.cpp.
References class_gc_event(), tolua_beginmodule(), tolua_bnd_cast(), tolua_bnd_inherit(), tolua_bnd_releaseownership(), tolua_bnd_takeownership(), tolua_bnd_type(), tolua_endmodule(), tolua_function(), tolua_module(), and tolua_newmetatable().
Referenced by tolua_stratagus_open().
| TOLUA_API void tolua_pushboolean | ( | lua_State * | L, | |
| int | value | |||
| ) |
Definition at line 24 of file tolua_push.cpp.
Referenced by tolua_get_AStarKnowUnseenTerrain(), tolua_get_CButtonPanel_ShowCommandKey(), tolua_get_CMinimap_ShowSelected(), tolua_get_CMinimap_Transparent(), tolua_get_CMinimap_WithTerrain(), tolua_get_CPreference_ShowAttackRange(), tolua_get_CPreference_ShowReactionRange(), tolua_get_CPreference_ShowSightRange(), tolua_get_CUserInterface_CompletedBarShadow(), tolua_get_CVideo_FullScreen(), tolua_get_GameObserve(), tolua_get_GamePaused(), tolua_get_GameRunning(), tolua_get_Settings_NoFogOfWar(), tolua_get_UseGLTextureCompression(), tolua_get_UseOpenGL(), tolua_stratagus_CheckBox_isMarked00(), tolua_stratagus_CMenuScreen_getDrawMenusUnder00(), tolua_stratagus_Container_isOpaque00(), tolua_stratagus_CPlayer_IsAllied00(), tolua_stratagus_CPlayer_IsAllied01(), tolua_stratagus_CPlayer_IsBothSharedVision00(), tolua_stratagus_CPlayer_IsBothSharedVision01(), tolua_stratagus_CPlayer_IsEnemy00(), tolua_stratagus_CPlayer_IsEnemy01(), tolua_stratagus_CPlayer_IsSharedVision00(), tolua_stratagus_CPlayer_IsSharedVision01(), tolua_stratagus_CPlayer_IsTeamed00(), tolua_stratagus_CPlayer_IsTeamed01(), tolua_stratagus_CVideo_ResizeScreen00(), tolua_stratagus_GetGamePaused00(), tolua_stratagus_GetGrabMouse00(), tolua_stratagus_GetKeyScroll00(), tolua_stratagus_GetLeaveStops00(), tolua_stratagus_GetMouseScroll00(), tolua_stratagus_IsEffectsEnabled00(), tolua_stratagus_IsMusicEnabled00(), tolua_stratagus_IsNetworkGame00(), tolua_stratagus_IsReplayGame00(), tolua_stratagus_RadioButton_isMarked00(), tolua_stratagus_vector_CFiller__empty00(), tolua_stratagus_vector_CUIButton__empty00(), tolua_stratagus_vector_string__empty00(), tolua_stratagus_Widget_isEnabled00(), tolua_stratagus_Widget_isVisible00(), tolua_stratagus_Window_isMovable00(), and tolua_stratagus_Window_isOpaque00().
| TOLUA_API void tolua_pushfieldboolean | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| int | v | |||
| ) |
Definition at line 127 of file tolua_push.cpp.
| TOLUA_API void tolua_pushfieldnumber | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| double | v | |||
| ) |
Definition at line 135 of file tolua_push.cpp.
References tolua_pushnumber().
Referenced by tolua_stratagus_CPatchManager_newPatchType00().
| TOLUA_API void tolua_pushfieldstring | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| const char * | v | |||
| ) |
| TOLUA_API void tolua_pushfielduserdata | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| void * | v | |||
| ) |
| TOLUA_API void tolua_pushfieldusertype | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| void * | v, | |||
| const char * | type | |||
| ) |
| TOLUA_API void tolua_pushfieldusertype_and_takeownership | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| void * | v, | |||
| const char * | type | |||
| ) |
Definition at line 163 of file tolua_push.cpp.
References tolua_pushusertype(), and tolua_register_gc().
| TOLUA_API void tolua_pushfieldvalue | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| int | v | |||
| ) |
Definition at line 120 of file tolua_push.cpp.
| TOLUA_API void tolua_pushnumber | ( | lua_State * | L, | |
| double | value | |||
| ) |
Definition at line 29 of file tolua_push.cpp.
Referenced by tolua_constant(), tolua_get_AStarFixedUnitCrossingCost(), tolua_get_AStarMovingUnitCrossingCost(), tolua_get_AStarUnknownTerrainCost(), tolua_get_CButtonPanel_X(), tolua_get_CButtonPanel_Y(), tolua_get_CColor_unsigned_A(), tolua_get_CColor_unsigned_B(), tolua_get_CColor_unsigned_G(), tolua_get_CColor_unsigned_R(), tolua_get_CEditor_Running(), tolua_get_CFiller_X(), tolua_get_CFiller_Y(), tolua_get_CIcon_Frame(), tolua_get_CInfoPanel_X(), tolua_get_CInfoPanel_Y(), tolua_get_CMapArea_EndX(), tolua_get_CMapArea_EndY(), tolua_get_CMapArea_ScrollPaddingBottom(), tolua_get_CMapArea_ScrollPaddingLeft(), tolua_get_CMapArea_ScrollPaddingRight(), tolua_get_CMapArea_ScrollPaddingTop(), tolua_get_CMapArea_X(), tolua_get_CMapArea_Y(), tolua_get_CMapInfo_MapHeight(), tolua_get_CMapInfo_MapWidth(), tolua_get_CMinimap_H(), tolua_get_CMinimap_W(), tolua_get_CMinimap_X(), tolua_get_CMinimap_Y(), tolua_get_CNetworkHost_unsigned_Host(), tolua_get_CNetworkHost_unsigned_PlyNr(), tolua_get_CNetworkHost_unsigned_Port(), tolua_get_Color_a(), tolua_get_Color_b(), tolua_get_Color_g(), tolua_get_Color_r(), tolua_get_CPieMenu_MouseButton(), tolua_get_CPlayer_AiEnabled(), tolua_get_CPlayer_BuildingLimit(), tolua_get_CPlayer_EnergyProductionRate(), tolua_get_CPlayer_EnergyStorageCapacity(), tolua_get_CPlayer_EnergyStored(), tolua_get_CPlayer_Index(), tolua_get_CPlayer_MagmaProductionRate(), tolua_get_CPlayer_MagmaStorageCapacity(), tolua_get_CPlayer_MagmaStored(), tolua_get_CPlayer_NumBuildings(), tolua_get_CPlayer_Score(), tolua_get_CPlayer_StartX(), tolua_get_CPlayer_StartY(), tolua_get_CPlayer_TotalBuildings(), tolua_get_CPlayer_TotalEnergy(), tolua_get_CPlayer_TotalKills(), tolua_get_CPlayer_TotalMagma(), tolua_get_CPlayer_TotalNumUnits(), tolua_get_CPlayer_TotalRazings(), tolua_get_CPlayer_TotalUnitLimit(), tolua_get_CPlayer_TotalUnits(), tolua_get_CPlayer_Type(), tolua_get_CPlayer_UnitLimit(), tolua_get_CPosition_x(), tolua_get_CPosition_y(), tolua_get_CPreference_unsigned_ShowOrders(), tolua_get_CResourceInfo_IconFrame(), tolua_get_CResourceInfo_IconX(), tolua_get_CResourceInfo_IconY(), tolua_get_CResourceInfo_TextX(), tolua_get_CResourceInfo_TextY(), tolua_get_CServerSetup_unsigned_Difficulty(), tolua_get_CServerSetup_unsigned_FogOfWar(), tolua_get_CServerSetup_unsigned_GameTypeOption(), tolua_get_CServerSetup_unsigned_MapRichness(), tolua_get_CServerSetup_unsigned_ResourcesOption(), tolua_get_CServerSetup_unsigned_RevealMap(), tolua_get_CServerSetup_unsigned_UnitsOption(), tolua_get_CStatusLine_TextX(), tolua_get_CStatusLine_TextY(), tolua_get_CStatusLine_Width(), tolua_get_CUIButton_X(), tolua_get_CUIButton_Y(), tolua_get_CUITimer_X(), tolua_get_CUITimer_Y(), tolua_get_CUnit_Slot(), tolua_get_CUnit_X(), tolua_get_CUnit_Y(), tolua_get_CUnitType_EnergyProductionRate(), tolua_get_CUnitType_EnergyStorageCapacity(), tolua_get_CUnitType_EnergyValue(), tolua_get_CUnitType_MagmaProductionRate(), tolua_get_CUnitType_MagmaStorageCapacity(), tolua_get_CUnitType_MagmaValue(), tolua_get_CUnitType_MaxEnergyUtilizationRate(), tolua_get_CUnitType_MaxMagmaUtilizationRate(), tolua_get_CUnitType_MinAttackRange(), tolua_get_CUnitType_Slot(), tolua_get_CursorX(), tolua_get_CursorY(), tolua_get_CUserInterface_MaxSelectedTextX(), tolua_get_CUserInterface_MaxSelectedTextY(), tolua_get_CUserInterface_MessageScrollSpeed(), tolua_get_CVideo_Depth(), tolua_get_CVideo_Height(), tolua_get_CVideo_Width(), tolua_get_GameResult(), tolua_get_GameSpeed(), tolua_get_NetLocalHostsSlot(), tolua_get_Settings_Difficulty(), tolua_get_Settings_GameType(), tolua_get_Settings_MapRichness(), tolua_get_Settings_NetGameType(), tolua_get_Settings_NumUnits(), tolua_get_Settings_Opponents(), tolua_get_Settings_Resources(), tolua_get_Settings_RevealMap(), tolua_get_SettingsPresets_Team(), tolua_get_SettingsPresets_Type(), tolua_get_stratagus_AlliedUnitRecyclingEfficiency(), tolua_get_stratagus_CMapInfo_PlayerType(), tolua_get_stratagus_CPieMenu_X(), tolua_get_stratagus_CPieMenu_Y(), tolua_get_stratagus_CPlayer_UnitTypesCount(), tolua_get_stratagus_CServerSetup_CompOpt(), tolua_get_stratagus_CServerSetup_LastFrame(), tolua_get_stratagus_CServerSetup_Ready(), tolua_get_stratagus_EnemyUnitRecyclingEfficiency(), tolua_get_unsigned_GameCycle(), tolua_pushfieldnumber(), tolua_stratagus_CFont_Height00(), tolua_stratagus_CFont_Width00(), tolua_stratagus_CMenuScreen_run00(), tolua_stratagus_CPatch_getX00(), tolua_stratagus_CPatch_getY00(), tolua_stratagus_CPatchType_getFlag00(), tolua_stratagus_CPatchType_getTileHeight00(), tolua_stratagus_CPatchType_getTileWidth00(), tolua_stratagus_CViewport_Viewport2MapX00(), tolua_stratagus_CViewport_Viewport2MapY00(), tolua_stratagus_DropDown_getSelected00(), tolua_stratagus_EditorSaveMap00(), tolua_stratagus_GetDoubleClickDelay00(), tolua_stratagus_GetEffectsVolume00(), tolua_stratagus_GetGameSpeed00(), tolua_stratagus_GetHoldClickDelay00(), tolua_stratagus_GetMusicVolume00(), tolua_stratagus_GetNetworkState00(), tolua_stratagus_GetNumOpponents00(), tolua_stratagus_GetTimer00(), tolua_stratagus_Label_getAlignment00(), tolua_stratagus_ListBoxWidget_getSelected00(), tolua_stratagus_MultiLineLabel_getAlignment00(), tolua_stratagus_MultiLineLabel_getLineWidth00(), tolua_stratagus_MultiLineLabel_getVerticalAlignment00(), tolua_stratagus_NetworkSetupServerAddress00(), tolua_stratagus_PlayFile00(), tolua_stratagus_PlayMusic00(), tolua_stratagus_SaveReplay00(), tolua_stratagus_ScrollArea_getScrollbarWidth00(), tolua_stratagus_ScrollingWidget_getSpeed00(), tolua_stratagus_SetChannelStereo00(), tolua_stratagus_SetChannelVolume00(), tolua_stratagus_Slider_getMarkerLength00(), tolua_stratagus_Slider_getOrientation00(), tolua_stratagus_Slider_getScaleEnd00(), tolua_stratagus_Slider_getScaleStart00(), tolua_stratagus_Slider_getStepLength00(), tolua_stratagus_Slider_getValue00(), tolua_stratagus_StatBoxWidget_getPercent00(), tolua_stratagus_SyncRand00(), tolua_stratagus_SyncRand01(), tolua_stratagus_vector_CFiller__size00(), tolua_stratagus_vector_CUIButton__size00(), tolua_stratagus_vector_string__size00(), tolua_stratagus_Widget_getBorderSize00(), tolua_stratagus_Widget_getHeight00(), tolua_stratagus_Widget_getHotKey00(), tolua_stratagus_Widget_getWidth00(), tolua_stratagus_Widget_getX00(), tolua_stratagus_Widget_getY00(), tolua_stratagus_Window_getAlignment00(), tolua_stratagus_Window_getPadding00(), and tolua_stratagus_Window_getTitleBarHeight00().
| TOLUA_API void tolua_pushstring | ( | lua_State * | L, | |
| const char * | value | |||
| ) |
Definition at line 34 of file tolua_push.cpp.
Referenced by tolua_get_CNetworkHost_PlyName(), tolua_pushfieldstring(), tolua_stratagus__00(), and tolua_stratagus_Translate00().
| TOLUA_API void tolua_pushuserdata | ( | lua_State * | L, | |
| void * | value | |||
| ) |
| TOLUA_API void tolua_pushusertype | ( | lua_State * | L, | |
| void * | value, | |||
| const char * | type | |||
| ) |
Definition at line 50 of file tolua_push.cpp.
References TOLUA_NOPEER.
Referenced by tolua_bnd_cast(), tolua_get_CButtonPanel_AutoCastBorderColorRGB(), tolua_get_CButtonPanel_Buttons(), tolua_get_CEditor_StartUnit_ptr(), tolua_get_CEditor_UnitTypes(), tolua_get_CFiller_G_ptr(), tolua_get_CIcon_G_ptr(), tolua_get_CMap_Info(), tolua_get_CMap_PatchManager(), tolua_get_CPieMenu_G_ptr(), tolua_get_CResourceInfo_G_ptr(), tolua_get_CStatusLine_Font_ptr(), tolua_get_CUIButton_Callback_ptr(), tolua_get_CUIButton_Style_ptr(), tolua_get_CUITimer_Font_ptr(), tolua_get_CUnit_Player_ptr(), tolua_get_CUnit_Type_ptr(), tolua_get_CUserInterface_ButtonPanel(), tolua_get_CUserInterface_CompletedBarColorRGB(), tolua_get_CUserInterface_Fillers(), tolua_get_CUserInterface_InfoPanel(), tolua_get_CUserInterface_MapArea(), tolua_get_CUserInterface_MaxSelectedFont_ptr(), tolua_get_CUserInterface_MenuButton(), tolua_get_CUserInterface_MessageFont_ptr(), tolua_get_CUserInterface_Minimap(), tolua_get_CUserInterface_MouseViewport_ptr(), tolua_get_CUserInterface_NetworkDiplomacyButton(), tolua_get_CUserInterface_NetworkMenuButton(), tolua_get_CUserInterface_PieMenu(), tolua_get_CUserInterface_SelectedButtons(), tolua_get_CUserInterface_SingleSelectedButton_ptr(), tolua_get_CUserInterface_SingleTrainingButton_ptr(), tolua_get_CUserInterface_StatusLine(), tolua_get_CUserInterface_Timer(), tolua_get_CUserInterface_TrainingButtons(), tolua_get_CUserInterface_TransportingButtons(), tolua_get_Editor(), tolua_get_GameSettings(), tolua_get_LocalSetupState(), tolua_get_Map(), tolua_get_ParticleManager(), tolua_get_Preference(), tolua_get_ServerSetupState(), tolua_get_stratagus_CFontColor_Colors(), tolua_get_stratagus_CPlayer_Units(), tolua_get_stratagus_CUserInterface_Resources(), tolua_get_stratagus_Hosts(), tolua_get_stratagus_Players(), tolua_get_stratagus_Settings_Presets(), tolua_get_ThisPlayer_ptr(), tolua_get_UI(), tolua_get_Video(), tolua_pushfieldusertype(), tolua_pushfieldusertype_and_takeownership(), tolua_pushusertype_and_takeownership(), tolua_stratagus_ButtonWidget_new00(), tolua_stratagus_CChunkParticle_new00(), tolua_stratagus_CColor_new00(), tolua_stratagus_CFiller_new00(), tolua_stratagus_CFont_Get00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFontColor_Get00(), tolua_stratagus_CFontColor_New00(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CheckBox_new00(), tolua_stratagus_CheckBox_new01(), tolua_stratagus_CIcon_Get00(), tolua_stratagus_CIcon_New00(), tolua_stratagus_CMenuScreen_new00(), tolua_stratagus_Color_new00(), tolua_stratagus_Container_new00(), tolua_stratagus_CParticle_clone00(), tolua_stratagus_CParticleManager_new00(), tolua_stratagus_CPatch_getType00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_getPatch00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPatchType_getGraphic00(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CPosition_new00(), tolua_stratagus_CUIButton_new00(), tolua_stratagus_DropDown_getListBox00(), tolua_stratagus_DropDown_getScrollArea00(), tolua_stratagus_DropDownWidget_getListBox00(), tolua_stratagus_DropDownWidget_new00(), tolua_stratagus_FindButtonStyle00(), tolua_stratagus_GraphicAnimation_clone00(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_ImageButton_new00(), tolua_stratagus_ImageButton_new01(), tolua_stratagus_ImageCheckBox_new00(), tolua_stratagus_ImageCheckBox_new01(), tolua_stratagus_ImageRadioButton_new00(), tolua_stratagus_ImageRadioButton_new01(), tolua_stratagus_ImageSlider_new00(), tolua_stratagus_ImageSlider_new01(), tolua_stratagus_ImageWidget_new00(), tolua_stratagus_Label_new00(), tolua_stratagus_ListBoxWidget_new00(), tolua_stratagus_LuaActionListener_new00(), tolua_stratagus_MultiLineLabel_new00(), tolua_stratagus_MultiLineLabel_new01(), tolua_stratagus_RadioButton_new00(), tolua_stratagus_RadioButton_new01(), tolua_stratagus_ScrollArea_getContent00(), tolua_stratagus_ScrollArea_new00(), tolua_stratagus_ScrollingWidget_new00(), tolua_stratagus_Slider_new00(), tolua_stratagus_Slider_new01(), tolua_stratagus_StatBoxWidget_new00(), tolua_stratagus_StaticParticle_new00(), tolua_stratagus_TextField_new00(), tolua_stratagus_UnitTypeByIdent00(), tolua_stratagus_vector_CFiller__at00(), tolua_stratagus_vector_CFiller__at01(), tolua_stratagus_vector_CFiller__back00(), tolua_stratagus_vector_CFiller__back01(), tolua_stratagus_vector_CFiller__front00(), tolua_stratagus_vector_CFiller__front01(), tolua_stratagus_vector_CFiller__new00(), tolua_stratagus_vector_CUIButton__at00(), tolua_stratagus_vector_CUIButton__at01(), tolua_stratagus_vector_CUIButton__back00(), tolua_stratagus_vector_CUIButton__back01(), tolua_stratagus_vector_CUIButton__front00(), tolua_stratagus_vector_CUIButton__front01(), tolua_stratagus_vector_CUIButton__new00(), tolua_stratagus_vector_string__new00(), tolua_stratagus_Widget_getBackgroundColor00(), tolua_stratagus_Widget_getBaseColor00(), tolua_stratagus_Widget_getDisabledColor00(), tolua_stratagus_Widget_getForegroundColor00(), tolua_stratagus_Window_getContent00(), tolua_stratagus_Window_new00(), tolua_stratagus_Window_new01(), tolua_stratagus_Window_new02(), and tolua_stratagus_Windows_new00().
| TOLUA_API void tolua_pushusertype_and_takeownership | ( | lua_State * | L, | |
| void * | value, | |||
| const char * | type | |||
| ) |
Definition at line 114 of file tolua_push.cpp.
References tolua_pushusertype(), and tolua_register_gc().
Referenced by tolua_stratagus_ButtonWidget_new00_local(), tolua_stratagus_CChunkParticle_new00_local(), tolua_stratagus_CColor_new00_local(), tolua_stratagus_CFiller_new00_local(), tolua_stratagus_CheckBox_new00_local(), tolua_stratagus_CheckBox_new01_local(), tolua_stratagus_CMenuScreen_new00_local(), tolua_stratagus_Color_new00_local(), tolua_stratagus_Container_new00_local(), tolua_stratagus_CParticleManager_new00_local(), tolua_stratagus_CPatchManager_getPatchTypeNames00(), tolua_stratagus_CPosition_new00_local(), tolua_stratagus_CUIButton_new00_local(), tolua_stratagus_DropDownWidget_new00_local(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageButton_new00_local(), tolua_stratagus_ImageButton_new01_local(), tolua_stratagus_ImageCheckBox_new00_local(), tolua_stratagus_ImageCheckBox_new01_local(), tolua_stratagus_ImageRadioButton_new00_local(), tolua_stratagus_ImageRadioButton_new01_local(), tolua_stratagus_ImageSlider_new00_local(), tolua_stratagus_ImageSlider_new01_local(), tolua_stratagus_ImageWidget_new00_local(), tolua_stratagus_Label_new00_local(), tolua_stratagus_ListBoxWidget_new00_local(), tolua_stratagus_LuaActionListener_new00_local(), tolua_stratagus_MultiLineLabel_new00_local(), tolua_stratagus_MultiLineLabel_new01_local(), tolua_stratagus_RadioButton_new00_local(), tolua_stratagus_RadioButton_new01_local(), tolua_stratagus_ScrollArea_new00_local(), tolua_stratagus_ScrollingWidget_new00_local(), tolua_stratagus_Slider_new00_local(), tolua_stratagus_Slider_new01_local(), tolua_stratagus_StatBoxWidget_new00_local(), tolua_stratagus_StaticParticle_new00_local(), tolua_stratagus_TextField_new00_local(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CFiller__new00_local(), tolua_stratagus_vector_CUIButton___geti00(), tolua_stratagus_vector_CUIButton___geti01(), tolua_stratagus_vector_CUIButton__new00_local(), tolua_stratagus_vector_string__new00_local(), tolua_stratagus_Window_new00_local(), tolua_stratagus_Window_new01_local(), tolua_stratagus_Window_new02_local(), and tolua_stratagus_Windows_new00_local().
| TOLUA_API void tolua_pushvalue | ( | lua_State * | L, | |
| int | lo | |||
| ) |
Definition at line 19 of file tolua_push.cpp.
Referenced by tolua_stratagus_DropDownWidget_setList00(), and tolua_stratagus_ListBoxWidget_setList00().
| TOLUA_API int tolua_register_gc | ( | lua_State * | L, | |
| int | lo | |||
| ) |
Definition at line 367 of file tolua_map.cpp.
Referenced by tolua_bnd_takeownership(), tolua_pushfieldusertype_and_takeownership(), and tolua_pushusertype_and_takeownership().
| TOLUA_API int tolua_toboolean | ( | lua_State * | L, | |
| int | narg, | |||
| int | def | |||
| ) |
Definition at line 68 of file tolua_to.cpp.
Referenced by tolua_set_AStarKnowUnseenTerrain(), tolua_set_CButtonPanel_ShowCommandKey(), tolua_set_CMinimap_ShowSelected(), tolua_set_CMinimap_Transparent(), tolua_set_CMinimap_WithTerrain(), tolua_set_CPreference_ShowAttackRange(), tolua_set_CPreference_ShowReactionRange(), tolua_set_CPreference_ShowSightRange(), tolua_set_CUserInterface_CompletedBarShadow(), tolua_set_CVideo_FullScreen(), tolua_set_GameObserve(), tolua_set_GamePaused(), tolua_set_GameRunning(), tolua_set_Settings_NoFogOfWar(), tolua_set_UseGLTextureCompression(), tolua_set_UseOpenGL(), tolua_stratagus_ActionSetTimer00(), tolua_stratagus_CheckBox_new01(), tolua_stratagus_CheckBox_new01_local(), tolua_stratagus_CheckBox_setMarked00(), tolua_stratagus_CMenuScreen_run00(), tolua_stratagus_CMenuScreen_setDrawMenusUnder00(), tolua_stratagus_Container_setOpaque00(), tolua_stratagus_ImageCheckBox_new01(), tolua_stratagus_ImageCheckBox_new01_local(), tolua_stratagus_ImageRadioButton_new01(), tolua_stratagus_ImageRadioButton_new01_local(), tolua_stratagus_RadioButton_new01(), tolua_stratagus_RadioButton_new01_local(), tolua_stratagus_RadioButton_setMarked00(), tolua_stratagus_SetEffectsEnabled00(), tolua_stratagus_SetGamePaused00(), tolua_stratagus_SetGrabMouse00(), tolua_stratagus_SetKeyScroll00(), tolua_stratagus_SetLeaveStops00(), tolua_stratagus_SetMouseScroll00(), tolua_stratagus_SetMusicEnabled00(), tolua_stratagus_StartMap00(), tolua_stratagus_StartReplay00(), tolua_stratagus_Widget_setEnabled00(), tolua_stratagus_Widget_setVisible00(), tolua_stratagus_Window_setMovable00(), and tolua_stratagus_Window_setOpaque00().
| TOLUA_API double tolua_tofieldnumber | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| double | def | |||
| ) |
Definition at line 73 of file tolua_to.cpp.
Referenced by tolua_stratagus_CPatchManager_newPatchType00().
| TOLUA_API const char* tolua_tofieldstring | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| const char * | def | |||
| ) |
Definition at line 84 of file tolua_to.cpp.
| TOLUA_API void* tolua_tofielduserdata | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| void * | def | |||
| ) |
Definition at line 94 of file tolua_to.cpp.
| TOLUA_API void* tolua_tofieldusertype | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| void * | def | |||
| ) |
Definition at line 104 of file tolua_to.cpp.
| TOLUA_API int tolua_tofieldvalue | ( | lua_State * | L, | |
| int | lo, | |||
| int | index, | |||
| int | def | |||
| ) |
Definition at line 114 of file tolua_to.cpp.
| TOLUA_API double tolua_tonumber | ( | lua_State * | L, | |
| int | narg, | |||
| double | def | |||
| ) |
Definition at line 19 of file tolua_to.cpp.
Referenced by tolua_get_stratagus_AlliedUnitRecyclingEfficiency(), tolua_get_stratagus_CFontColor_Colors(), tolua_get_stratagus_CMapInfo_PlayerType(), tolua_get_stratagus_CPieMenu_X(), tolua_get_stratagus_CPieMenu_Y(), tolua_get_stratagus_CPlayer_Units(), tolua_get_stratagus_CPlayer_UnitTypesCount(), tolua_get_stratagus_CServerSetup_CompOpt(), tolua_get_stratagus_CServerSetup_LastFrame(), tolua_get_stratagus_CServerSetup_Ready(), tolua_get_stratagus_CUserInterface_Resources(), tolua_get_stratagus_EnemyUnitRecyclingEfficiency(), tolua_get_stratagus_Hosts(), tolua_get_stratagus_Players(), tolua_get_stratagus_Settings_Presets(), tolua_set_AStarFixedUnitCrossingCost(), tolua_set_AStarMovingUnitCrossingCost(), tolua_set_AStarUnknownTerrainCost(), tolua_set_CButtonPanel_X(), tolua_set_CButtonPanel_Y(), tolua_set_CColor_unsigned_A(), tolua_set_CColor_unsigned_B(), tolua_set_CColor_unsigned_G(), tolua_set_CColor_unsigned_R(), tolua_set_CEditor_Running(), tolua_set_CFiller_X(), tolua_set_CFiller_Y(), tolua_set_CIcon_Frame(), tolua_set_CInfoPanel_X(), tolua_set_CInfoPanel_Y(), tolua_set_CMapArea_EndX(), tolua_set_CMapArea_EndY(), tolua_set_CMapArea_ScrollPaddingBottom(), tolua_set_CMapArea_ScrollPaddingLeft(), tolua_set_CMapArea_ScrollPaddingRight(), tolua_set_CMapArea_ScrollPaddingTop(), tolua_set_CMapArea_X(), tolua_set_CMapArea_Y(), tolua_set_CMapInfo_MapHeight(), tolua_set_CMapInfo_MapWidth(), tolua_set_CMinimap_H(), tolua_set_CMinimap_W(), tolua_set_CMinimap_X(), tolua_set_CMinimap_Y(), tolua_set_CNetworkHost_unsigned_Host(), tolua_set_CNetworkHost_unsigned_PlyNr(), tolua_set_CNetworkHost_unsigned_Port(), tolua_set_Color_a(), tolua_set_Color_b(), tolua_set_Color_g(), tolua_set_Color_r(), tolua_set_CPieMenu_MouseButton(), tolua_set_CPlayer_AiEnabled(), tolua_set_CPlayer_BuildingLimit(), tolua_set_CPlayer_EnergyProductionRate(), tolua_set_CPlayer_EnergyStorageCapacity(), tolua_set_CPlayer_EnergyStored(), tolua_set_CPlayer_Index(), tolua_set_CPlayer_MagmaProductionRate(), tolua_set_CPlayer_MagmaStorageCapacity(), tolua_set_CPlayer_MagmaStored(), tolua_set_CPlayer_NumBuildings(), tolua_set_CPlayer_Score(), tolua_set_CPlayer_StartX(), tolua_set_CPlayer_StartY(), tolua_set_CPlayer_TotalBuildings(), tolua_set_CPlayer_TotalEnergy(), tolua_set_CPlayer_TotalKills(), tolua_set_CPlayer_TotalMagma(), tolua_set_CPlayer_TotalNumUnits(), tolua_set_CPlayer_TotalRazings(), tolua_set_CPlayer_TotalUnitLimit(), tolua_set_CPlayer_TotalUnits(), tolua_set_CPlayer_Type(), tolua_set_CPlayer_UnitLimit(), tolua_set_CPosition_x(), tolua_set_CPosition_y(), tolua_set_CPreference_unsigned_ShowOrders(), tolua_set_CResourceInfo_IconFrame(), tolua_set_CResourceInfo_IconX(), tolua_set_CResourceInfo_IconY(), tolua_set_CResourceInfo_TextX(), tolua_set_CResourceInfo_TextY(), tolua_set_CServerSetup_unsigned_Difficulty(), tolua_set_CServerSetup_unsigned_FogOfWar(), tolua_set_CServerSetup_unsigned_GameTypeOption(), tolua_set_CServerSetup_unsigned_MapRichness(), tolua_set_CServerSetup_unsigned_ResourcesOption(), tolua_set_CServerSetup_unsigned_RevealMap(), tolua_set_CServerSetup_unsigned_UnitsOption(), tolua_set_CStatusLine_TextX(), tolua_set_CStatusLine_TextY(), tolua_set_CStatusLine_Width(), tolua_set_CUIButton_X(), tolua_set_CUIButton_Y(), tolua_set_CUITimer_X(), tolua_set_CUITimer_Y(), tolua_set_CUnit_X(), tolua_set_CUnit_Y(), tolua_set_CUnitType_EnergyProductionRate(), tolua_set_CUnitType_EnergyStorageCapacity(), tolua_set_CUnitType_EnergyValue(), tolua_set_CUnitType_MagmaProductionRate(), tolua_set_CUnitType_MagmaStorageCapacity(), tolua_set_CUnitType_MagmaValue(), tolua_set_CUnitType_MaxEnergyUtilizationRate(), tolua_set_CUnitType_MaxMagmaUtilizationRate(), tolua_set_CUnitType_MinAttackRange(), tolua_set_CursorX(), tolua_set_CursorY(), tolua_set_CUserInterface_MaxSelectedTextX(), tolua_set_CUserInterface_MaxSelectedTextY(), tolua_set_CUserInterface_MessageScrollSpeed(), tolua_set_CVideo_Depth(), tolua_set_CVideo_Height(), tolua_set_CVideo_Width(), tolua_set_GameResult(), tolua_set_GameSpeed(), tolua_set_NetLocalHostsSlot(), tolua_set_Settings_Difficulty(), tolua_set_Settings_GameType(), tolua_set_Settings_MapRichness(), tolua_set_Settings_NetGameType(), tolua_set_Settings_NumUnits(), tolua_set_Settings_Opponents(), tolua_set_Settings_Resources(), tolua_set_Settings_RevealMap(), tolua_set_SettingsPresets_Team(), tolua_set_SettingsPresets_Type(), tolua_set_stratagus_AlliedUnitRecyclingEfficiency(), tolua_set_stratagus_CFontColor_Colors(), tolua_set_stratagus_CMapInfo_PlayerType(), tolua_set_stratagus_CPieMenu_X(), tolua_set_stratagus_CPieMenu_Y(), tolua_set_stratagus_CPlayer_Units(), tolua_set_stratagus_CServerSetup_CompOpt(), tolua_set_stratagus_CServerSetup_LastFrame(), tolua_set_stratagus_CServerSetup_Ready(), tolua_set_stratagus_CUserInterface_Resources(), tolua_set_stratagus_EnemyUnitRecyclingEfficiency(), tolua_set_stratagus_Hosts(), tolua_set_stratagus_Players(), tolua_set_stratagus_Settings_Presets(), tolua_set_unsigned_GameCycle(), tolua_stratagus_ActionSetTimer00(), tolua_stratagus_CColor_new00(), tolua_stratagus_CColor_new00_local(), tolua_stratagus_CGraphic_New00(), tolua_stratagus_CGraphic_Resize00(), tolua_stratagus_CMenuScreen_stop00(), tolua_stratagus_CMenuScreen_stopAll00(), tolua_stratagus_Color_new00(), tolua_stratagus_Color_new00_local(), tolua_stratagus_Container_add00(), tolua_stratagus_CPatch_setPos00(), tolua_stratagus_CPatch_setX00(), tolua_stratagus_CPatch_setY00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_getPatch00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPatchType_getFlag00(), tolua_stratagus_CPieMenu_SetRadius00(), tolua_stratagus_CPlayer_SetStartView00(), tolua_stratagus_CPlayerColorGraphic_New00(), tolua_stratagus_CPosition_new00(), tolua_stratagus_CPosition_new00_local(), tolua_stratagus_CVideo_ResizeScreen00(), tolua_stratagus_CViewport_Viewport2MapX00(), tolua_stratagus_CViewport_Viewport2MapY00(), tolua_stratagus_DropDown_setSelected00(), tolua_stratagus_DropDownWidget_setSize00(), tolua_stratagus_Exit00(), tolua_stratagus_GetNumOpponents00(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageSlider_new00(), tolua_stratagus_ImageSlider_new00_local(), tolua_stratagus_ImageSlider_new01(), tolua_stratagus_ImageSlider_new01_local(), tolua_stratagus_Label_setAlignment00(), tolua_stratagus_ListBoxWidget_new00(), tolua_stratagus_ListBoxWidget_new00_local(), tolua_stratagus_ListBoxWidget_setSelected00(), tolua_stratagus_MultiLineLabel_setAlignment00(), tolua_stratagus_MultiLineLabel_setLineWidth00(), tolua_stratagus_MultiLineLabel_setVerticalAlignment00(), tolua_stratagus_NetworkInitServerConnect00(), tolua_stratagus_ScrollArea_setScrollbarWidth00(), tolua_stratagus_ScrollingWidget_add00(), tolua_stratagus_ScrollingWidget_new00(), tolua_stratagus_ScrollingWidget_new00_local(), tolua_stratagus_ScrollingWidget_setSpeed00(), tolua_stratagus_SetChannelStereo00(), tolua_stratagus_SetChannelVolume00(), tolua_stratagus_SetDoubleClickDelay00(), tolua_stratagus_SetEffectsVolume00(), tolua_stratagus_SetGameSpeed00(), tolua_stratagus_SetHoldClickDelay00(), tolua_stratagus_SetMusicVolume00(), tolua_stratagus_SetTrigger00(), tolua_stratagus_Slider_new00(), tolua_stratagus_Slider_new00_local(), tolua_stratagus_Slider_new01(), tolua_stratagus_Slider_new01_local(), tolua_stratagus_Slider_setMarkerLength00(), tolua_stratagus_Slider_setOrientation00(), tolua_stratagus_Slider_setScale00(), tolua_stratagus_Slider_setScaleEnd00(), tolua_stratagus_Slider_setScaleStart00(), tolua_stratagus_Slider_setStepLength00(), tolua_stratagus_Slider_setValue00(), tolua_stratagus_StatBoxWidget_new00(), tolua_stratagus_StatBoxWidget_new00_local(), tolua_stratagus_StatBoxWidget_setPercent00(), tolua_stratagus_StopChannel00(), tolua_stratagus_StopGame00(), tolua_stratagus_SyncRand01(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CFiller___seti00(), tolua_stratagus_vector_CFiller__assign00(), tolua_stratagus_vector_CFiller__at00(), tolua_stratagus_vector_CFiller__at01(), tolua_stratagus_vector_CUIButton___geti00(), tolua_stratagus_vector_CUIButton___geti01(), tolua_stratagus_vector_CUIButton___seti00(), tolua_stratagus_vector_CUIButton__assign00(), tolua_stratagus_vector_CUIButton__at00(), tolua_stratagus_vector_CUIButton__at01(), tolua_stratagus_vector_string___geti00(), tolua_stratagus_vector_string___geti01(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__at00(), tolua_stratagus_vector_string__at01(), tolua_stratagus_Widget_setBorderSize00(), tolua_stratagus_Widget_setHeight00(), tolua_stratagus_Widget_setHotKey00(), tolua_stratagus_Widget_setPosition00(), tolua_stratagus_Widget_setSize00(), tolua_stratagus_Widget_setWidth00(), tolua_stratagus_Widget_setX00(), tolua_stratagus_Widget_setY00(), tolua_stratagus_Window_setAlignment00(), tolua_stratagus_Window_setPadding00(), tolua_stratagus_Window_setTitleBarHeight00(), tolua_stratagus_Windows_add00(), tolua_stratagus_Windows_new00(), and tolua_stratagus_Windows_new00_local().
| TOLUA_API const char* tolua_tostring | ( | lua_State * | L, | |
| int | narg, | |||
| const char * | def | |||
| ) |
Definition at line 24 of file tolua_to.cpp.
Referenced by tolua_bnd_cast(), tolua_set_CNetworkHost_PlyName(), tolua_stratagus__00(), tolua_stratagus_Translate00(), and tolua_stratagus_Widget_setHotKey01().
| TOLUA_API void* tolua_touserdata | ( | lua_State * | L, | |
| int | narg, | |||
| void * | def | |||
| ) |
Definition at line 29 of file tolua_to.cpp.
References tolua_tousertype().
Referenced by tolua_bnd_cast().
| TOLUA_API void* tolua_tousertype | ( | lua_State * | L, | |
| int | narg, | |||
| void * | def | |||
| ) |
Definition at line 48 of file tolua_to.cpp.
References push_table_instance().
Referenced by tolua_bnd_cast(), tolua_default_collect(), tolua_get_CButtonPanel_AutoCastBorderColorRGB(), tolua_get_CButtonPanel_Buttons(), tolua_get_CButtonPanel_ShowCommandKey(), tolua_get_CButtonPanel_X(), tolua_get_CButtonPanel_Y(), tolua_get_CColor_unsigned_A(), tolua_get_CColor_unsigned_B(), tolua_get_CColor_unsigned_G(), tolua_get_CColor_unsigned_R(), tolua_get_CEditor_Running(), tolua_get_CEditor_StartUnit_ptr(), tolua_get_CEditor_UnitTypes(), tolua_get_CFiller_G_ptr(), tolua_get_CFiller_X(), tolua_get_CFiller_Y(), tolua_get_CIcon_Frame(), tolua_get_CIcon_G_ptr(), tolua_get_CIcon_Ident(), tolua_get_CInfoPanel_X(), tolua_get_CInfoPanel_Y(), tolua_get_CMap_Info(), tolua_get_CMap_PatchManager(), tolua_get_CMapArea_EndX(), tolua_get_CMapArea_EndY(), tolua_get_CMapArea_ScrollPaddingBottom(), tolua_get_CMapArea_ScrollPaddingLeft(), tolua_get_CMapArea_ScrollPaddingRight(), tolua_get_CMapArea_ScrollPaddingTop(), tolua_get_CMapArea_X(), tolua_get_CMapArea_Y(), tolua_get_CMapInfo_Description(), tolua_get_CMapInfo_MapHeight(), tolua_get_CMapInfo_MapWidth(), tolua_get_CMinimap_H(), tolua_get_CMinimap_ShowSelected(), tolua_get_CMinimap_Transparent(), tolua_get_CMinimap_W(), tolua_get_CMinimap_WithTerrain(), tolua_get_CMinimap_X(), tolua_get_CMinimap_Y(), tolua_get_CNetworkHost_PlyName(), tolua_get_CNetworkHost_unsigned_Host(), tolua_get_CNetworkHost_unsigned_PlyNr(), tolua_get_CNetworkHost_unsigned_Port(), tolua_get_Color_a(), tolua_get_Color_b(), tolua_get_Color_g(), tolua_get_Color_r(), tolua_get_CPieMenu_G_ptr(), tolua_get_CPieMenu_MouseButton(), tolua_get_CPlayer_AiEnabled(), tolua_get_CPlayer_AiName(), tolua_get_CPlayer_BuildingLimit(), tolua_get_CPlayer_EnergyProductionRate(), tolua_get_CPlayer_EnergyStorageCapacity(), tolua_get_CPlayer_EnergyStored(), tolua_get_CPlayer_Index(), tolua_get_CPlayer_MagmaProductionRate(), tolua_get_CPlayer_MagmaStorageCapacity(), tolua_get_CPlayer_MagmaStored(), tolua_get_CPlayer_Name(), tolua_get_CPlayer_NumBuildings(), tolua_get_CPlayer_Score(), tolua_get_CPlayer_StartX(), tolua_get_CPlayer_StartY(), tolua_get_CPlayer_TotalBuildings(), tolua_get_CPlayer_TotalEnergy(), tolua_get_CPlayer_TotalKills(), tolua_get_CPlayer_TotalMagma(), tolua_get_CPlayer_TotalNumUnits(), tolua_get_CPlayer_TotalRazings(), tolua_get_CPlayer_TotalUnitLimit(), tolua_get_CPlayer_TotalUnits(), tolua_get_CPlayer_Type(), tolua_get_CPlayer_UnitLimit(), tolua_get_CPosition_x(), tolua_get_CPosition_y(), tolua_get_CPreference_ShowAttackRange(), tolua_get_CPreference_ShowReactionRange(), tolua_get_CPreference_ShowSightRange(), tolua_get_CPreference_unsigned_ShowOrders(), tolua_get_CResourceInfo_G_ptr(), tolua_get_CResourceInfo_IconFrame(), tolua_get_CResourceInfo_IconX(), tolua_get_CResourceInfo_IconY(), tolua_get_CResourceInfo_TextX(), tolua_get_CResourceInfo_TextY(), tolua_get_CServerSetup_unsigned_Difficulty(), tolua_get_CServerSetup_unsigned_FogOfWar(), tolua_get_CServerSetup_unsigned_GameTypeOption(), tolua_get_CServerSetup_unsigned_MapRichness(), tolua_get_CServerSetup_unsigned_ResourcesOption(), tolua_get_CServerSetup_unsigned_RevealMap(), tolua_get_CServerSetup_unsigned_UnitsOption(), tolua_get_CStatusLine_Font_ptr(), tolua_get_CStatusLine_TextX(), tolua_get_CStatusLine_TextY(), tolua_get_CStatusLine_Width(), tolua_get_CUIButton_Callback_ptr(), tolua_get_CUIButton_Style_ptr(), tolua_get_CUIButton_Text(), tolua_get_CUIButton_X(), tolua_get_CUIButton_Y(), tolua_get_CUITimer_Font_ptr(), tolua_get_CUITimer_X(), tolua_get_CUITimer_Y(), tolua_get_CUnit_Player_ptr(), tolua_get_CUnit_Slot(), tolua_get_CUnit_Type_ptr(), tolua_get_CUnit_X(), tolua_get_CUnit_Y(), tolua_get_CUnitType_EnergyProductionRate(), tolua_get_CUnitType_EnergyStorageCapacity(), tolua_get_CUnitType_EnergyValue(), tolua_get_CUnitType_Ident(), tolua_get_CUnitType_MagmaProductionRate(), tolua_get_CUnitType_MagmaStorageCapacity(), tolua_get_CUnitType_MagmaValue(), tolua_get_CUnitType_MaxEnergyUtilizationRate(), tolua_get_CUnitType_MaxMagmaUtilizationRate(), tolua_get_CUnitType_MinAttackRange(), tolua_get_CUnitType_Name(), tolua_get_CUnitType_Slot(), tolua_get_CUserInterface_ButtonPanel(), tolua_get_CUserInterface_CompletedBarColorRGB(), tolua_get_CUserInterface_CompletedBarShadow(), tolua_get_CUserInterface_Fillers(), tolua_get_CUserInterface_InfoPanel(), tolua_get_CUserInterface_MapArea(), tolua_get_CUserInterface_MaxSelectedFont_ptr(), tolua_get_CUserInterface_MaxSelectedTextX(), tolua_get_CUserInterface_MaxSelectedTextY(), tolua_get_CUserInterface_MenuButton(), tolua_get_CUserInterface_MessageFont_ptr(), tolua_get_CUserInterface_MessageScrollSpeed(), tolua_get_CUserInterface_Minimap(), tolua_get_CUserInterface_MouseViewport_ptr(), tolua_get_CUserInterface_NetworkDiplomacyButton(), tolua_get_CUserInterface_NetworkMenuButton(), tolua_get_CUserInterface_NormalFontColor(), tolua_get_CUserInterface_PieMenu(), tolua_get_CUserInterface_ReverseFontColor(), tolua_get_CUserInterface_SelectedButtons(), tolua_get_CUserInterface_SingleSelectedButton_ptr(), tolua_get_CUserInterface_SingleTrainingButton_ptr(), tolua_get_CUserInterface_StatusLine(), tolua_get_CUserInterface_Timer(), tolua_get_CUserInterface_TrainingButtons(), tolua_get_CUserInterface_TransportingButtons(), tolua_get_CVideo_Depth(), tolua_get_CVideo_FullScreen(), tolua_get_CVideo_Height(), tolua_get_CVideo_Width(), tolua_get_Settings_Difficulty(), tolua_get_Settings_GameType(), tolua_get_Settings_MapRichness(), tolua_get_Settings_NetGameType(), tolua_get_Settings_NoFogOfWar(), tolua_get_Settings_NumUnits(), tolua_get_Settings_Opponents(), tolua_get_Settings_Resources(), tolua_get_Settings_RevealMap(), tolua_get_SettingsPresets_Team(), tolua_get_SettingsPresets_Type(), tolua_set_CButtonPanel_AutoCastBorderColorRGB(), tolua_set_CButtonPanel_Buttons(), tolua_set_CButtonPanel_ShowCommandKey(), tolua_set_CButtonPanel_X(), tolua_set_CButtonPanel_Y(), tolua_set_CColor_unsigned_A(), tolua_set_CColor_unsigned_B(), tolua_set_CColor_unsigned_G(), tolua_set_CColor_unsigned_R(), tolua_set_CEditor_Running(), tolua_set_CEditor_UnitTypes(), tolua_set_CFiller_G_ptr(), tolua_set_CFiller_X(), tolua_set_CFiller_Y(), tolua_set_CIcon_Frame(), tolua_set_CIcon_G_ptr(), tolua_set_CInfoPanel_X(), tolua_set_CInfoPanel_Y(), tolua_set_CMap_Info(), tolua_set_CMap_PatchManager(), tolua_set_CMapArea_EndX(), tolua_set_CMapArea_EndY(), tolua_set_CMapArea_ScrollPaddingBottom(), tolua_set_CMapArea_ScrollPaddingLeft(), tolua_set_CMapArea_ScrollPaddingRight(), tolua_set_CMapArea_ScrollPaddingTop(), tolua_set_CMapArea_X(), tolua_set_CMapArea_Y(), tolua_set_CMapInfo_Description(), tolua_set_CMapInfo_MapHeight(), tolua_set_CMapInfo_MapWidth(), tolua_set_CMinimap_H(), tolua_set_CMinimap_ShowSelected(), tolua_set_CMinimap_Transparent(), tolua_set_CMinimap_W(), tolua_set_CMinimap_WithTerrain(), tolua_set_CMinimap_X(), tolua_set_CMinimap_Y(), tolua_set_CNetworkHost_PlyName(), tolua_set_CNetworkHost_unsigned_Host(), tolua_set_CNetworkHost_unsigned_PlyNr(), tolua_set_CNetworkHost_unsigned_Port(), tolua_set_Color_a(), tolua_set_Color_b(), tolua_set_Color_g(), tolua_set_Color_r(), tolua_set_CPieMenu_G_ptr(), tolua_set_CPieMenu_MouseButton(), tolua_set_CPlayer_AiEnabled(), tolua_set_CPlayer_AiName(), tolua_set_CPlayer_BuildingLimit(), tolua_set_CPlayer_EnergyProductionRate(), tolua_set_CPlayer_EnergyStorageCapacity(), tolua_set_CPlayer_EnergyStored(), tolua_set_CPlayer_Index(), tolua_set_CPlayer_MagmaProductionRate(), tolua_set_CPlayer_MagmaStorageCapacity(), tolua_set_CPlayer_MagmaStored(), tolua_set_CPlayer_Name(), tolua_set_CPlayer_NumBuildings(), tolua_set_CPlayer_Score(), tolua_set_CPlayer_StartX(), tolua_set_CPlayer_StartY(), tolua_set_CPlayer_TotalBuildings(), tolua_set_CPlayer_TotalEnergy(), tolua_set_CPlayer_TotalKills(), tolua_set_CPlayer_TotalMagma(), tolua_set_CPlayer_TotalNumUnits(), tolua_set_CPlayer_TotalRazings(), tolua_set_CPlayer_TotalUnitLimit(), tolua_set_CPlayer_TotalUnits(), tolua_set_CPlayer_Type(), tolua_set_CPlayer_UnitLimit(), tolua_set_CPosition_x(), tolua_set_CPosition_y(), tolua_set_CPreference_ShowAttackRange(), tolua_set_CPreference_ShowReactionRange(), tolua_set_CPreference_ShowSightRange(), tolua_set_CPreference_unsigned_ShowOrders(), tolua_set_CResourceInfo_G_ptr(), tolua_set_CResourceInfo_IconFrame(), tolua_set_CResourceInfo_IconX(), tolua_set_CResourceInfo_IconY(), tolua_set_CResourceInfo_TextX(), tolua_set_CResourceInfo_TextY(), tolua_set_CServerSetup_unsigned_Difficulty(), tolua_set_CServerSetup_unsigned_FogOfWar(), tolua_set_CServerSetup_unsigned_GameTypeOption(), tolua_set_CServerSetup_unsigned_MapRichness(), tolua_set_CServerSetup_unsigned_ResourcesOption(), tolua_set_CServerSetup_unsigned_RevealMap(), tolua_set_CServerSetup_unsigned_UnitsOption(), tolua_set_CStatusLine_Font_ptr(), tolua_set_CStatusLine_TextX(), tolua_set_CStatusLine_TextY(), tolua_set_CStatusLine_Width(), tolua_set_CUIButton_Callback_ptr(), tolua_set_CUIButton_Style_ptr(), tolua_set_CUIButton_Text(), tolua_set_CUIButton_X(), tolua_set_CUIButton_Y(), tolua_set_CUITimer_Font_ptr(), tolua_set_CUITimer_X(), tolua_set_CUITimer_Y(), tolua_set_CUnit_Player_ptr(), tolua_set_CUnit_Type_ptr(), tolua_set_CUnit_X(), tolua_set_CUnit_Y(), tolua_set_CUnitType_EnergyProductionRate(), tolua_set_CUnitType_EnergyStorageCapacity(), tolua_set_CUnitType_EnergyValue(), tolua_set_CUnitType_Ident(), tolua_set_CUnitType_MagmaProductionRate(), tolua_set_CUnitType_MagmaStorageCapacity(), tolua_set_CUnitType_MagmaValue(), tolua_set_CUnitType_MaxEnergyUtilizationRate(), tolua_set_CUnitType_MaxMagmaUtilizationRate(), tolua_set_CUnitType_MinAttackRange(), tolua_set_CUnitType_Name(), tolua_set_CUserInterface_ButtonPanel(), tolua_set_CUserInterface_CompletedBarColorRGB(), tolua_set_CUserInterface_CompletedBarShadow(), tolua_set_CUserInterface_Fillers(), tolua_set_CUserInterface_InfoPanel(), tolua_set_CUserInterface_MapArea(), tolua_set_CUserInterface_MaxSelectedFont_ptr(), tolua_set_CUserInterface_MaxSelectedTextX(), tolua_set_CUserInterface_MaxSelectedTextY(), tolua_set_CUserInterface_MenuButton(), tolua_set_CUserInterface_MessageFont_ptr(), tolua_set_CUserInterface_MessageScrollSpeed(), tolua_set_CUserInterface_Minimap(), tolua_set_CUserInterface_MouseViewport_ptr(), tolua_set_CUserInterface_NetworkDiplomacyButton(), tolua_set_CUserInterface_NetworkMenuButton(), tolua_set_CUserInterface_NormalFontColor(), tolua_set_CUserInterface_PieMenu(), tolua_set_CUserInterface_ReverseFontColor(), tolua_set_CUserInterface_SelectedButtons(), tolua_set_CUserInterface_SingleSelectedButton_ptr(), tolua_set_CUserInterface_SingleTrainingButton_ptr(), tolua_set_CUserInterface_StatusLine(), tolua_set_CUserInterface_Timer(), tolua_set_CUserInterface_TrainingButtons(), tolua_set_CUserInterface_TransportingButtons(), tolua_set_CVideo_Depth(), tolua_set_CVideo_FullScreen(), tolua_set_CVideo_Height(), tolua_set_CVideo_Width(), tolua_set_Editor(), tolua_set_GameSettings(), tolua_set_LocalSetupState(), tolua_set_Map(), tolua_set_ParticleManager(), tolua_set_Preference(), tolua_set_ServerSetupState(), tolua_set_Settings_Difficulty(), tolua_set_Settings_GameType(), tolua_set_Settings_MapRichness(), tolua_set_Settings_NetGameType(), tolua_set_Settings_NoFogOfWar(), tolua_set_Settings_NumUnits(), tolua_set_Settings_Opponents(), tolua_set_Settings_Resources(), tolua_set_Settings_RevealMap(), tolua_set_SettingsPresets_Team(), tolua_set_SettingsPresets_Type(), tolua_set_stratagus_CFontColor_Colors(), tolua_set_stratagus_CPlayer_Units(), tolua_set_stratagus_CUserInterface_Resources(), tolua_set_stratagus_Hosts(), tolua_set_stratagus_Players(), tolua_set_stratagus_Settings_Presets(), tolua_set_ThisPlayer_ptr(), tolua_set_UI(), tolua_set_Video(), tolua_stratagus_ButtonWidget_adjustSize00(), tolua_stratagus_ButtonWidget_getCaption00(), tolua_stratagus_ButtonWidget_setCaption00(), tolua_stratagus_CChunkParticle_new00(), tolua_stratagus_CChunkParticle_new00_local(), tolua_stratagus_CFont_Height00(), tolua_stratagus_CFont_New00(), tolua_stratagus_CFont_Width00(), tolua_stratagus_CGraphic_Free00(), tolua_stratagus_CGraphic_Load00(), tolua_stratagus_CGraphic_Resize00(), tolua_stratagus_CheckBox_adjustSize00(), tolua_stratagus_CheckBox_getCaption00(), tolua_stratagus_CheckBox_isMarked00(), tolua_stratagus_CheckBox_setCaption00(), tolua_stratagus_CheckBox_setMarked00(), tolua_stratagus_CMenuScreen_addLogicCallback00(), tolua_stratagus_CMenuScreen_getDrawMenusUnder00(), tolua_stratagus_CMenuScreen_run00(), tolua_stratagus_CMenuScreen_setDrawMenusUnder00(), tolua_stratagus_CMenuScreen_stop00(), tolua_stratagus_CMenuScreen_stopAll00(), tolua_stratagus_Container_add00(), tolua_stratagus_Container_clear00(), tolua_stratagus_Container_isOpaque00(), tolua_stratagus_Container_remove00(), tolua_stratagus_Container_setOpaque00(), tolua_stratagus_CParticle_clone00(), tolua_stratagus_CParticleManager_add00(), tolua_stratagus_CParticleManager_delete00(), tolua_stratagus_CPatch_getType00(), tolua_stratagus_CPatch_getX00(), tolua_stratagus_CPatch_getY00(), tolua_stratagus_CPatch_setPos00(), tolua_stratagus_CPatch_setX00(), tolua_stratagus_CPatch_setY00(), tolua_stratagus_CPatchManager_add00(), tolua_stratagus_CPatchManager_getPatch00(), tolua_stratagus_CPatchManager_getPatchTypeNames00(), tolua_stratagus_CPatchManager_moveToBottom00(), tolua_stratagus_CPatchManager_moveToTop00(), tolua_stratagus_CPatchManager_newPatchType00(), tolua_stratagus_CPatchType_getFlag00(), tolua_stratagus_CPatchType_getGraphic00(), tolua_stratagus_CPatchType_getTileHeight00(), tolua_stratagus_CPatchType_getTileWidth00(), tolua_stratagus_CPieMenu_SetRadius00(), tolua_stratagus_CPlayer_IsAllied00(), tolua_stratagus_CPlayer_IsAllied01(), tolua_stratagus_CPlayer_IsBothSharedVision00(), tolua_stratagus_CPlayer_IsBothSharedVision01(), tolua_stratagus_CPlayer_IsEnemy00(), tolua_stratagus_CPlayer_IsEnemy01(), tolua_stratagus_CPlayer_IsSharedVision00(), tolua_stratagus_CPlayer_IsSharedVision01(), tolua_stratagus_CPlayer_IsTeamed00(), tolua_stratagus_CPlayer_IsTeamed01(), tolua_stratagus_CPlayer_SetStartView00(), tolua_stratagus_CStatusLine_Clear00(), tolua_stratagus_CStatusLine_Get00(), tolua_stratagus_CStatusLine_Set00(), tolua_stratagus_CUIButton_delete00(), tolua_stratagus_CVideo_ResizeScreen00(), tolua_stratagus_CViewport_Viewport2MapX00(), tolua_stratagus_CViewport_Viewport2MapY00(), tolua_stratagus_DropDown_getListBox00(), tolua_stratagus_DropDown_getScrollArea00(), tolua_stratagus_DropDown_getSelected00(), tolua_stratagus_DropDown_setListBox00(), tolua_stratagus_DropDown_setScrollArea00(), tolua_stratagus_DropDown_setSelected00(), tolua_stratagus_DropDownWidget_getListBox00(), tolua_stratagus_DropDownWidget_setList00(), tolua_stratagus_DropDownWidget_setSize00(), tolua_stratagus_GraphicAnimation_clone00(), tolua_stratagus_GraphicAnimation_new00(), tolua_stratagus_GraphicAnimation_new00_local(), tolua_stratagus_ImageButton_setDisabledImage00(), tolua_stratagus_ImageButton_setNormalImage00(), tolua_stratagus_ImageButton_setPressedImage00(), tolua_stratagus_ImageCheckBox_setCheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setCheckedPressedImage00(), tolua_stratagus_ImageCheckBox_setUncheckedNormalImage00(), tolua_stratagus_ImageCheckBox_setUncheckedPressedImage00(), tolua_stratagus_ImageRadioButton_setCheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setCheckedPressedImage00(), tolua_stratagus_ImageRadioButton_setUncheckedNormalImage00(), tolua_stratagus_ImageRadioButton_setUncheckedPressedImage00(), tolua_stratagus_ImageSlider_setBackgroundImage00(), tolua_stratagus_ImageSlider_setMarkerImage00(), tolua_stratagus_ImageWidget_new00(), tolua_stratagus_ImageWidget_new00_local(), tolua_stratagus_Label_adjustSize00(), tolua_stratagus_Label_getAlignment00(), tolua_stratagus_Label_getCaption00(), tolua_stratagus_Label_setAlignment00(), tolua_stratagus_Label_setCaption00(), tolua_stratagus_ListBoxWidget_getSelected00(), tolua_stratagus_ListBoxWidget_setList00(), tolua_stratagus_ListBoxWidget_setSelected00(), tolua_stratagus_MultiLineLabel_adjustSize00(), tolua_stratagus_MultiLineLabel_draw00(), tolua_stratagus_MultiLineLabel_getAlignment00(), tolua_stratagus_MultiLineLabel_getCaption00(), tolua_stratagus_MultiLineLabel_getLineWidth00(), tolua_stratagus_MultiLineLabel_getVerticalAlignment00(), tolua_stratagus_MultiLineLabel_setAlignment00(), tolua_stratagus_MultiLineLabel_setCaption00(), tolua_stratagus_MultiLineLabel_setLineWidth00(), tolua_stratagus_MultiLineLabel_setVerticalAlignment00(), tolua_stratagus_PlayFile00(), tolua_stratagus_RadioButton_adjustSize00(), tolua_stratagus_RadioButton_getCaption00(), tolua_stratagus_RadioButton_getGroup00(), tolua_stratagus_RadioButton_isMarked00(), tolua_stratagus_RadioButton_setCaption00(), tolua_stratagus_RadioButton_setGroup00(), tolua_stratagus_RadioButton_setMarked00(), tolua_stratagus_ScrollArea_getContent00(), tolua_stratagus_ScrollArea_getScrollbarWidth00(), tolua_stratagus_ScrollArea_setContent00(), tolua_stratagus_ScrollArea_setScrollbarWidth00(), tolua_stratagus_ScrollingWidget_add00(), tolua_stratagus_ScrollingWidget_getSpeed00(), tolua_stratagus_ScrollingWidget_restart00(), tolua_stratagus_ScrollingWidget_setSpeed00(), tolua_stratagus_Slider_getMarkerLength00(), tolua_stratagus_Slider_getOrientation00(), tolua_stratagus_Slider_getScaleEnd00(), tolua_stratagus_Slider_getScaleStart00(), tolua_stratagus_Slider_getStepLength00(), tolua_stratagus_Slider_getValue00(), tolua_stratagus_Slider_setMarkerLength00(), tolua_stratagus_Slider_setOrientation00(), tolua_stratagus_Slider_setScale00(), tolua_stratagus_Slider_setScaleEnd00(), tolua_stratagus_Slider_setScaleStart00(), tolua_stratagus_Slider_setStepLength00(), tolua_stratagus_Slider_setValue00(), tolua_stratagus_StatBoxWidget_getCaption00(), tolua_stratagus_StatBoxWidget_getPercent00(), tolua_stratagus_StatBoxWidget_setCaption00(), tolua_stratagus_StatBoxWidget_setPercent00(), tolua_stratagus_StaticParticle_new00(), tolua_stratagus_StaticParticle_new00_local(), tolua_stratagus_TextField_getText00(), tolua_stratagus_TextField_setText00(), tolua_stratagus_vector_CFiller___geti00(), tolua_stratagus_vector_CFiller___geti01(), tolua_stratagus_vector_CFiller___seti00(), tolua_stratagus_vector_CFiller__assign00(), tolua_stratagus_vector_CFiller__at00(), tolua_stratagus_vector_CFiller__at01(), tolua_stratagus_vector_CFiller__back00(), tolua_stratagus_vector_CFiller__back01(), tolua_stratagus_vector_CFiller__clear00(), tolua_stratagus_vector_CFiller__delete00(), tolua_stratagus_vector_CFiller__empty00(), tolua_stratagus_vector_CFiller__front00(), tolua_stratagus_vector_CFiller__front01(), tolua_stratagus_vector_CFiller__pop_back00(), tolua_stratagus_vector_CFiller__push_back00(), tolua_stratagus_vector_CFiller__size00(), tolua_stratagus_vector_CUIButton___geti00(), tolua_stratagus_vector_CUIButton___geti01(), tolua_stratagus_vector_CUIButton___seti00(), tolua_stratagus_vector_CUIButton__assign00(), tolua_stratagus_vector_CUIButton__at00(), tolua_stratagus_vector_CUIButton__at01(), tolua_stratagus_vector_CUIButton__back00(), tolua_stratagus_vector_CUIButton__back01(), tolua_stratagus_vector_CUIButton__clear00(), tolua_stratagus_vector_CUIButton__delete00(), tolua_stratagus_vector_CUIButton__empty00(), tolua_stratagus_vector_CUIButton__front00(), tolua_stratagus_vector_CUIButton__front01(), tolua_stratagus_vector_CUIButton__pop_back00(), tolua_stratagus_vector_CUIButton__push_back00(), tolua_stratagus_vector_CUIButton__size00(), tolua_stratagus_vector_string___geti00(), tolua_stratagus_vector_string___geti01(), tolua_stratagus_vector_string___seti00(), tolua_stratagus_vector_string__assign00(), tolua_stratagus_vector_string__at00(), tolua_stratagus_vector_string__at01(), tolua_stratagus_vector_string__back00(), tolua_stratagus_vector_string__back01(), tolua_stratagus_vector_string__clear00(), tolua_stratagus_vector_string__delete00(), tolua_stratagus_vector_string__empty00(), tolua_stratagus_vector_string__front00(), tolua_stratagus_vector_string__front01(), tolua_stratagus_vector_string__pop_back00(), tolua_stratagus_vector_string__push_back00(), tolua_stratagus_vector_string__size00(), tolua_stratagus_Widget_addActionListener00(), tolua_stratagus_Widget_getBackgroundColor00(), tolua_stratagus_Widget_getBaseColor00(), tolua_stratagus_Widget_getBorderSize00(), tolua_stratagus_Widget_getDisabledColor00(), tolua_stratagus_Widget_getForegroundColor00(), tolua_stratagus_Widget_getHeight00(), tolua_stratagus_Widget_getHotKey00(), tolua_stratagus_Widget_getWidth00(), tolua_stratagus_Widget_getX00(), tolua_stratagus_Widget_getY00(), tolua_stratagus_Widget_isEnabled00(), tolua_stratagus_Widget_isVisible00(), tolua_stratagus_Widget_setBackgroundColor00(), tolua_stratagus_Widget_setBaseColor00(), tolua_stratagus_Widget_setBorderSize00(), tolua_stratagus_Widget_setDisabledColor00(), tolua_stratagus_Widget_setEnabled00(), tolua_stratagus_Widget_setFont00(), tolua_stratagus_Widget_setForegroundColor00(), tolua_stratagus_Widget_setGlobalFont00(), tolua_stratagus_Widget_setHeight00(), tolua_stratagus_Widget_setHotKey00(), tolua_stratagus_Widget_setHotKey01(), tolua_stratagus_Widget_setPosition00(), tolua_stratagus_Widget_setSize00(), tolua_stratagus_Widget_setVisible00(), tolua_stratagus_Widget_setWidth00(), tolua_stratagus_Widget_setX00(), tolua_stratagus_Widget_setY00(), tolua_stratagus_Window_getAlignment00(), tolua_stratagus_Window_getCaption00(), tolua_stratagus_Window_getContent00(), tolua_stratagus_Window_getPadding00(), tolua_stratagus_Window_getTitleBarHeight00(), tolua_stratagus_Window_isMovable00(), tolua_stratagus_Window_isOpaque00(), tolua_stratagus_Window_new02(), tolua_stratagus_Window_new02_local(), tolua_stratagus_Window_resizeToContent00(), tolua_stratagus_Window_setAlignment00(), tolua_stratagus_Window_setCaption00(), tolua_stratagus_Window_setContent00(), tolua_stratagus_Window_setMovable00(), tolua_stratagus_Window_setOpaque00(), tolua_stratagus_Window_setPadding00(), tolua_stratagus_Window_setTitleBarHeight00(), tolua_stratagus_Windows_add00(), and tolua_touserdata().
| TOLUA_API int tolua_tovalue | ( | lua_State * | L, | |
| int | narg, | |||
| int | def | |||
| ) |
Definition at line 63 of file tolua_to.cpp.
Referenced by tolua_stratagus_DropDownWidget_setList00(), tolua_stratagus_ListBoxWidget_setList00(), tolua_stratagus_LuaActionListener_new00(), and tolua_stratagus_LuaActionListener_new00_local().
| TOLUA_API const char* tolua_typename | ( | lua_State * | L, | |
| int | lo | |||
| ) |
| TOLUA_API void tolua_usertype | ( | lua_State * | L, | |
| const char * | type | |||
| ) |
Definition at line 391 of file tolua_map.cpp.
References mapsuper(), and tolua_newmetatable().
Referenced by tolua_reg_types().
| TOLUA_API void tolua_variable | ( | lua_State * | L, | |
| const char * | name, | |||
| lua_CFunction | get, | |||
| lua_CFunction | set | |||
| ) |
1.5.6