|
@@ -1,14 +1,14 @@
|
|
|
/**
|
|
|
* Copyright (c) 2006-2010 LOVE Development Team
|
|
|
-*
|
|
|
+*
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
* warranty. In no event will the authors be held liable for any damages
|
|
|
* arising from the use of this software.
|
|
|
-*
|
|
|
+*
|
|
|
* Permission is granted to anyone to use this software for any purpose,
|
|
|
* including commercial applications, and to alter it and redistribute it
|
|
|
* freely, subject to the following restrictions:
|
|
|
-*
|
|
|
+*
|
|
|
* 1. The origin of this software must not be misrepresented; you must not
|
|
|
* claim that you wrote the original software. If you use this software
|
|
|
* in a product, an acknowledgment in the product documentation would be
|
|
@@ -28,35 +28,35 @@ namespace audio
|
|
|
{
|
|
|
return luax_checktype<Source>(L, idx, "Source", AUDIO_SOURCE_T);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
int w_Source_play(lua_State * L)
|
|
|
{
|
|
|
Source * t = luax_checksource(L, 1);
|
|
|
t->play();
|
|
|
return 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
int w_Source_stop(lua_State * L)
|
|
|
{
|
|
|
Source * t = luax_checksource(L, 1);
|
|
|
t->stop();
|
|
|
return 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
int w_Source_pause(lua_State * L)
|
|
|
{
|
|
|
Source * t = luax_checksource(L, 1);
|
|
|
t->pause();
|
|
|
return 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
int w_Source_resume(lua_State * L)
|
|
|
{
|
|
|
Source * t = luax_checksource(L, 1);
|
|
|
t->resume();
|
|
|
return 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
int w_Source_rewind(lua_State * L)
|
|
|
{
|
|
|
Source * t = luax_checksource(L, 1);
|
|
@@ -181,13 +181,20 @@ namespace audio
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
+ int w_Source_isStatic(lua_State * L)
|
|
|
+ {
|
|
|
+ Source * t= luax_checksource(L, 1);
|
|
|
+ luax_pushboolean(L, t->isStatic());
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
static const luaL_Reg functions[] = {
|
|
|
{ "play", w_Source_play },
|
|
|
{ "stop", w_Source_stop },
|
|
|
{ "pause", w_Source_pause },
|
|
|
{ "resume", w_Source_resume },
|
|
|
{ "rewind", w_Source_rewind },
|
|
|
-
|
|
|
+
|
|
|
{ "setPitch", w_Source_setPitch },
|
|
|
{ "getPitch", w_Source_getPitch },
|
|
|
{ "setVolume", w_Source_setVolume },
|
|
@@ -195,6 +202,7 @@ namespace audio
|
|
|
{ "setLooping", w_Source_setLooping },
|
|
|
{ "isLooping", w_Source_isLooping },
|
|
|
{ "isStopped", w_Source_isStopped },
|
|
|
+ { "isStatic", w_Source_isStatic },
|
|
|
{ 0, 0 }
|
|
|
};
|
|
|
|