aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/graphicengine_script.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-06 10:59:50 +0000
committerEugene Sandulenko2010-10-12 22:30:57 +0000
commita17ec87b7dd09e7b251a3f578d1f788917550451 (patch)
treec77bdbb06d39d9a200b5e0514d2aedc7f43c8e28 /engines/sword25/gfx/graphicengine_script.cpp
parent6dcf9f0ee557e692df3c70a263ca35068ff45380 (diff)
downloadscummvm-rg350-a17ec87b7dd09e7b251a3f578d1f788917550451.tar.gz
scummvm-rg350-a17ec87b7dd09e7b251a3f578d1f788917550451.tar.bz2
scummvm-rg350-a17ec87b7dd09e7b251a3f578d1f788917550451.zip
SWORD25: Number of compilation and warning fixes
svn-id: r53219
Diffstat (limited to 'engines/sword25/gfx/graphicengine_script.cpp')
-rw-r--r--engines/sword25/gfx/graphicengine_script.cpp220
1 files changed, 110 insertions, 110 deletions
diff --git a/engines/sword25/gfx/graphicengine_script.cpp b/engines/sword25/gfx/graphicengine_script.cpp
index 3ce41f34e7..74a008d1fc 100644
--- a/engines/sword25/gfx/graphicengine_script.cpp
+++ b/engines/sword25/gfx/graphicengine_script.cpp
@@ -96,9 +96,9 @@ namespace
{
CallbackfunctionRegisterer()
{
- BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaLoopPointCB", AnimationLoopPointCallback);
- BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaActionCB", AnimationActionCallback);
- BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaDeleteCB", AnimationDeleteCallback);
+ BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaLoopPointCB", (void (*)(int))AnimationLoopPointCallback);
+ BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaActionCB", (void (*)(int))AnimationActionCallback);
+ BS_CallbackRegistry::GetInstance().RegisterCallbackFunction("LuaDeleteCB", (void (*)(int))AnimationDeleteCallback);
}
};
static CallbackfunctionRegisterer Instance;
@@ -275,12 +275,12 @@ static int AT_Finalize(lua_State * L)
static const luaL_reg ANIMATION_TEMPLATE_METHODS[] =
{
- "AddFrame", AT_AddFrame,
- "SetFrame", AT_SetFrame,
- "SetAnimationType", AT_SetAnimationType,
- "SetFPS", AT_SetFPS,
- "__gc", AT_Finalize,
- 0, 0,
+ {"AddFrame", AT_AddFrame},
+ {"SetFrame", AT_SetFrame},
+ {"SetAnimationType", AT_SetAnimationType},
+ {"SetFPS", AT_SetFPS},
+ {"__gc", AT_Finalize},
+ {0, 0}
};
// -----------------------------------------------------------------------------
@@ -546,26 +546,26 @@ static int GetRepaintedPixels(lua_State * L)
static const luaL_reg GFX_FUNCTIONS[] =
{
- "Init", Init,
- "StartFrame", StartFrame,
- "EndFrame", EndFrame,
- "DrawDebugLine", DrawDebugLine,
- "SetVsync", SetVsync,
- "GetDisplayWidth", GetDisplayWidth,
- "GetDisplayHeight", GetDisplayHeight,
- "GetBitDepth", GetBitDepth,
- "IsVsync", IsVsync,
- "IsWindowed", IsWindowed,
- "GetFPSCount", GetFPSCount,
- "GetLastFrameDuration", GetLastFrameDuration,
- "StopMainTimer", StopMainTimer,
- "ResumeMainTimer", ResumeMainTimer,
- "GetSecondaryFrameDuration", GetSecondaryFrameDuration,
- "SaveScreenshot", SaveScreenshot,
- "NewAnimationTemplate", NewAnimationTemplate,
- "GetRepaintedPixels", GetRepaintedPixels,
- "SaveThumbnailScreenshot", SaveThumbnailScreenshot,
- 0, 0,
+ {"Init", Init},
+ {"StartFrame", StartFrame},
+ {"EndFrame", EndFrame},
+ {"DrawDebugLine", DrawDebugLine},
+ {"SetVsync", SetVsync},
+ {"GetDisplayWidth", GetDisplayWidth},
+ {"GetDisplayHeight", GetDisplayHeight},
+ {"GetBitDepth", GetBitDepth},
+ {"IsVsync", IsVsync},
+ {"IsWindowed", IsWindowed},
+ {"GetFPSCount", GetFPSCount},
+ {"GetLastFrameDuration", GetLastFrameDuration},
+ {"StopMainTimer", StopMainTimer},
+ {"ResumeMainTimer", ResumeMainTimer},
+ {"GetSecondaryFrameDuration", GetSecondaryFrameDuration},
+ {"SaveScreenshot", SaveScreenshot},
+ {"NewAnimationTemplate", NewAnimationTemplate},
+ {"GetRepaintedPixels", GetRepaintedPixels},
+ {"SaveThumbnailScreenshot", SaveThumbnailScreenshot},
+ {0, 0}
};
// -----------------------------------------------------------------------------
@@ -850,24 +850,24 @@ static int RO_Remove(lua_State * L)
static const luaL_reg RENDEROBJECT_METHODS[] =
{
- "AddAnimation", RO_AddAnimation,
- "AddText", RO_AddText,
- "AddBitmap", RO_AddBitmap,
- "AddPanel", RO_AddPanel,
- "SetPos", RO_SetPos,
- "SetX", RO_SetX,
- "SetY", RO_SetY,
- "SetZ", RO_SetZ,
- "SetVisible", RO_SetVisible,
- "GetX", RO_GetX,
- "GetY", RO_GetY,
- "GetZ", RO_GetZ,
- "GetAbsoluteX", RO_GetAbsoluteX,
- "GetAbsoluteY", RO_GetAbsoluteY,
- "GetWidth", RO_GetWidth,
- "GetHeight", RO_GetHeight,
- "IsVisible", RO_IsVisible,
- 0, 0,
+ {"AddAnimation", RO_AddAnimation},
+ {"AddText", RO_AddText},
+ {"AddBitmap", RO_AddBitmap},
+ {"AddPanel", RO_AddPanel},
+ {"SetPos", RO_SetPos},
+ {"SetX", RO_SetX},
+ {"SetY", RO_SetY},
+ {"SetZ", RO_SetZ},
+ {"SetVisible", RO_SetVisible},
+ {"GetX", RO_GetX},
+ {"GetY", RO_GetY},
+ {"GetZ", RO_GetZ},
+ {"GetAbsoluteX", RO_GetAbsoluteX},
+ {"GetAbsoluteY", RO_GetAbsoluteY},
+ {"GetWidth", RO_GetWidth},
+ {"GetHeight", RO_GetHeight},
+ {"IsVisible", RO_IsVisible},
+ {0, 0}
};
// -----------------------------------------------------------------------------
@@ -929,10 +929,10 @@ static int P_Remove(lua_State * L)
static const luaL_reg PANEL_METHODS[] =
{
- "GetColor", P_GetColor,
- "SetColor", P_SetColor,
- "Remove", P_Remove,
- 0, 0,
+ {"GetColor", P_GetColor},
+ {"SetColor", P_SetColor},
+ {"Remove", P_Remove},
+ {0, 0}
};
// -----------------------------------------------------------------------------
@@ -1144,25 +1144,25 @@ static int B_Remove(lua_State * L)
static const luaL_reg BITMAP_METHODS[] =
{
- "SetAlpha", B_SetAlpha,
- "SetTintColor", B_SetTintColor,
- "SetScaleFactor", B_SetScaleFactor,
- "SetScaleFactorX", B_SetScaleFactorX,
- "SetScaleFactorY", B_SetScaleFactorY,
- "SetFlipH", B_SetFlipH,
- "SetFlipV", B_SetFlipV,
- "GetAlpha", B_GetAlpha,
- "GetTintColor", B_GetTintColor,
- "GetScaleFactorX", B_GetScaleFactorX,
- "GetScaleFactorY", B_GetScaleFactorY,
- "IsFlipH", B_IsFlipH,
- "IsFlipV", B_IsFlipV,
- "GetPixel", B_GetPixel,
- "IsScalingAllowed", B_IsScalingAllowed,
- "IsAlphaAllowed", B_IsAlphaAllowed,
- "IsTintingAllowed", B_IsTintingAllowed,
- "Remove", B_Remove,
- 0, 0,
+ {"SetAlpha", B_SetAlpha},
+ {"SetTintColor", B_SetTintColor},
+ {"SetScaleFactor", B_SetScaleFactor},
+ {"SetScaleFactorX", B_SetScaleFactorX},
+ {"SetScaleFactorY", B_SetScaleFactorY},
+ {"SetFlipH", B_SetFlipH},
+ {"SetFlipV", B_SetFlipV},
+ {"GetAlpha", B_GetAlpha},
+ {"GetTintColor", B_GetTintColor},
+ {"GetScaleFactorX", B_GetScaleFactorX},
+ {"GetScaleFactorY", B_GetScaleFactorY},
+ {"IsFlipH", B_IsFlipH},
+ {"IsFlipV", B_IsFlipV},
+ {"GetPixel", B_GetPixel},
+ {"IsScalingAllowed", B_IsScalingAllowed},
+ {"IsAlphaAllowed", B_IsAlphaAllowed},
+ {"IsTintingAllowed", B_IsTintingAllowed},
+ {"Remove", B_Remove},
+ {0, 0}
};
// -----------------------------------------------------------------------------
@@ -1507,32 +1507,32 @@ static int A_Remove(lua_State * L)
static const luaL_reg ANIMATION_METHODS[] =
{
- "Play", A_Play,
- "Pause", A_Pause,
- "Stop", A_Stop,
- "SetFrame", A_SetFrame,
- "SetAlpha", A_SetAlpha,
- "SetTintColor", A_SetTintColor,
- "SetScaleFactor", A_SetScaleFactor,
- "SetScaleFactorX", A_SetScaleFactorX,
- "SetScaleFactorY", A_SetScaleFactorY,
- "GetScaleFactorX", A_GetScaleFactorX,
- "GetScaleFactorY", A_GetScaleFactorY,
- "GetAnimationType", A_GetAnimationType,
- "GetFPS", A_GetFPS,
- "GetFrameCount", A_GetFrameCount,
- "IsScalingAllowed", A_IsScalingAllowed,
- "IsAlphaAllowed", A_IsAlphaAllowed,
- "IsTintingAllowed", A_IsTintingAllowed,
- "GetCurrentFrame", A_GetCurrentFrame,
- "GetCurrentAction", A_GetCurrentAction,
- "IsPlaying", A_IsPlaying,
- "RegisterLoopPointCallback", A_RegisterLoopPointCallback,
- "UnregisterLoopPointCallback", A_UnregisterLoopPointCallback,
- "RegisterActionCallback", A_RegisterActionCallback,
- "UnregisterActionCallback", A_UnregisterActionCallback,
- "Remove", A_Remove,
- 0, 0,
+ {"Play", A_Play},
+ {"Pause", A_Pause},
+ {"Stop", A_Stop},
+ {"SetFrame", A_SetFrame},
+ {"SetAlpha", A_SetAlpha},
+ {"SetTintColor", A_SetTintColor},
+ {"SetScaleFactor", A_SetScaleFactor},
+ {"SetScaleFactorX", A_SetScaleFactorX},
+ {"SetScaleFactorY", A_SetScaleFactorY},
+ {"GetScaleFactorX", A_GetScaleFactorX},
+ {"GetScaleFactorY", A_GetScaleFactorY},
+ {"GetAnimationType", A_GetAnimationType},
+ {"GetFPS", A_GetFPS},
+ {"GetFrameCount", A_GetFrameCount},
+ {"IsScalingAllowed", A_IsScalingAllowed},
+ {"IsAlphaAllowed", A_IsAlphaAllowed},
+ {"IsTintingAllowed", A_IsTintingAllowed},
+ {"GetCurrentFrame", A_GetCurrentFrame},
+ {"GetCurrentAction", A_GetCurrentAction},
+ {"IsPlaying", A_IsPlaying},
+ {"RegisterLoopPointCallback", A_RegisterLoopPointCallback},
+ {"UnregisterLoopPointCallback", A_UnregisterLoopPointCallback},
+ {"RegisterActionCallback", A_RegisterActionCallback},
+ {"UnregisterActionCallback", A_UnregisterActionCallback},
+ {"Remove", A_Remove},
+ {0, 0}
};
// -----------------------------------------------------------------------------
@@ -1691,20 +1691,20 @@ static int T_Remove(lua_State * L)
static const luaL_reg TEXT_METHODS[] =
{
- "SetFont", T_SetFont,
- "SetText", T_SetText,
- "SetAlpha", T_SetAlpha,
- "SetColor", T_SetColor,
- "SetAutoWrap", T_SetAutoWrap,
- "SetAutoWrapThreshold", T_SetAutoWrapThreshold,
- "GetText", T_GetText,
- "GetFont", T_GetFont,
- "GetAlpha", T_GetAlpha,
- "GetColor", T_GetColor,
- "IsAutoWrap", T_IsAutoWrap,
- "GetAutoWrapThreshold", T_GetAutoWrapThreshold,
- "Remove", T_Remove,
- 0, 0,
+ {"SetFont", T_SetFont},
+ {"SetText", T_SetText},
+ {"SetAlpha", T_SetAlpha},
+ {"SetColor", T_SetColor},
+ {"SetAutoWrap", T_SetAutoWrap},
+ {"SetAutoWrapThreshold", T_SetAutoWrapThreshold},
+ {"GetText", T_GetText},
+ {"GetFont", T_GetFont},
+ {"GetAlpha", T_GetAlpha},
+ {"GetColor", T_GetColor},
+ {"IsAutoWrap", T_IsAutoWrap},
+ {"GetAutoWrapThreshold", T_GetAutoWrapThreshold},
+ {"Remove", T_Remove},
+ {0, 0}
};
// -----------------------------------------------------------------------------