summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorTeTpaAka <TeTpaAka@users.noreply.github.com>2015-06-22 23:21:14 +0200
committerest31 <MTest31@outlook.com>2015-07-18 07:57:20 +0200
commitdd2e08e11764e045f4eb7a25475a8ecaa77b58de (patch)
tree0e6f303cd8afc8ed1daa2e186e6278a24cfd0d0c /src/script
parent162af5fe32f694d598ee36b3e5e96c946a8a1ad7 (diff)
downloadminetest-dd2e08e11764e045f4eb7a25475a8ecaa77b58de.tar.gz
minetest-dd2e08e11764e045f4eb7a25475a8ecaa77b58de.tar.bz2
minetest-dd2e08e11764e045f4eb7a25475a8ecaa77b58de.zip
Make acc and vel deprecated in add_particle and search for acceleration and velocity instead
The doc and the actual behaviour differed.
Diffstat (limited to 'src/script')
-rw-r--r--src/script/lua_api/l_particles.cpp57
1 files changed, 34 insertions, 23 deletions
diff --git a/src/script/lua_api/l_particles.cpp b/src/script/lua_api/l_particles.cpp
index 6769f5c23..adb682e72 100644
--- a/src/script/lua_api/l_particles.cpp
+++ b/src/script/lua_api/l_particles.cpp
@@ -34,17 +34,20 @@ int ModApiParticles::l_add_particle(lua_State *L)
{
// Get parameters
v3f pos, vel, acc;
- pos= vel= acc= v3f(0, 0, 0);
+ pos = vel = acc = v3f(0, 0, 0);
+
float expirationtime, size;
- expirationtime= size= 1;
+ expirationtime = size = 1;
+
bool collisiondetection, vertical;
- collisiondetection= vertical= false;
+ collisiondetection = vertical = false;
+
std::string texture = "";
const char *playername = "";
if (lua_gettop(L) > 1) // deprecated
{
- log_deprecated(L,"Deprecated add_particle call with individual parameters instead of definition");
+ log_deprecated(L, "Deprecated add_particle call with individual parameters instead of definition");
pos = check_v3f(L, 1);
vel = check_v3f(L, 2);
acc = check_v3f(L, 3);
@@ -62,29 +65,37 @@ int ModApiParticles::l_add_particle(lua_State *L)
while (lua_next(L, table) != 0)
{
const char *key = lua_tostring(L, -2);
- if(strcmp(key,"pos")==0){
- pos=check_v3f(L, -1);
- }else if(strcmp(key,"vel")==0){
- vel=check_v3f(L, -1);
- }else if(strcmp(key,"acc")==0){
- acc=check_v3f(L, -1);
- }else if(strcmp(key,"expirationtime")==0){
- expirationtime=luaL_checknumber(L, -1);
- }else if(strcmp(key,"size")==0){
- size=luaL_checknumber(L, -1);
- }else if(strcmp(key,"collisiondetection")==0){
- collisiondetection=lua_toboolean(L, -1);
- }else if(strcmp(key,"vertical")==0){
- vertical=lua_toboolean(L, -1);
- }else if(strcmp(key,"texture")==0){
- texture=luaL_checkstring(L, -1);
- }else if(strcmp(key,"playername")==0){
- playername=luaL_checkstring(L, -1);
+ if (strcmp(key, "pos") == 0) {
+ pos = check_v3f(L, -1);
+ } else if (strcmp(key,"vel") == 0) {
+ vel = check_v3f(L, -1);
+ log_deprecated(L, "The use of vel is deprecated. "
+ "Use velocity instead");
+ } else if (strcmp(key,"velocity") == 0) {
+ vel = check_v3f(L, -1);
+ } else if (strcmp(key,"acc") == 0) {
+ acc = check_v3f(L, -1);
+ log_deprecated(L, "The use of acc is deprecated. "
+ "Use acceleration instead");
+ } else if (strcmp(key,"acceleration") == 0) {
+ acc = check_v3f(L, -1);
+ } else if (strcmp(key,"expirationtime") == 0) {
+ expirationtime = luaL_checknumber(L, -1);
+ } else if (strcmp(key,"size") == 0) {
+ size = luaL_checknumber(L, -1);
+ } else if (strcmp(key,"collisiondetection") == 0) {
+ collisiondetection = lua_toboolean(L, -1);
+ } else if (strcmp(key,"vertical") == 0) {
+ vertical = lua_toboolean(L, -1);
+ } else if (strcmp(key,"texture") == 0) {
+ texture = luaL_checkstring(L, -1);
+ } else if (strcmp(key,"playername") == 0) {
+ playername = luaL_checkstring(L, -1);
}
lua_pop(L, 1);
}
}
- if (strcmp(playername, "")==0) // spawn for all players
+ if (strcmp(playername, "") == 0) // spawn for all players
{
getServer(L)->spawnParticleAll(pos, vel, acc,
expirationtime, size, collisiondetection, vertical, texture);