aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/mbb/modern_japanlocomotive.xcf
diff options
context:
space:
mode:
authorBlockhead <jbis1337@hotmail.com>2021-03-22 11:00:37 +0100
committerorwell96 <orwell@bleipb.de>2021-03-22 11:02:10 +0100
commit5b4f5491d26ae42419ecb036f79fa0040ce45975 (patch)
tree65cbc73ea064b8949c4838bfdf0d90ed88f86078 /assets/blender/mbb/modern_japanlocomotive.xcf
parent7e94650b8db63d5bbb93a539657337d323c98e3c (diff)
downloadadvtrains-5b4f5491d26ae42419ecb036f79fa0040ce45975.tar.gz
advtrains-5b4f5491d26ae42419ecb036f79fa0040ce45975.tar.bz2
advtrains-5b4f5491d26ae42419ecb036f79fa0040ce45975.zip
Do not return early after setting station info on stop rail
Solves Hemiptera#171
Diffstat (limited to 'assets/blender/mbb/modern_japanlocomotive.xcf')
0 files changed, 0 insertions, 0 deletions
id='n147' href='#n147'>147 148 149 150
/*
Minetest
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#ifndef LUAAPI_H_
#define LUAAPI_H_


class ModApiBasic : public ModApiBase {

public:
	ModApiBasic();

	bool Initialize(lua_State* L,int top);

private:
	// debug(text)
	// Writes a line to dstream
	static int l_debug(lua_State *L);

	// log([level,] text)
	// Writes a line to the logger.
	// The one-argument version logs to infostream.
	// The two-argument version accept a log level: error, action, info, or verbose.
	static int l_log(lua_State *L);

	// request_shutdown()
	static int l_request_shutdown(lua_State *L);

	// get_server_status()
	static int l_get_server_status(lua_State *L);

	// register_biome({lots of stuff})
	static int l_register_biome(lua_State *L);

	// setting_set(name, value)
	static int l_setting_set(lua_State *L);

	// setting_get(name)
	static int l_setting_get(lua_State *L);

	// setting_getbool(name)
	static int l_setting_getbool(lua_State *L);

	// setting_save()
	static int l_setting_save(lua_State *L);

	// chat_send_all(text)
	static int l_chat_send_all(lua_State *L);

	// chat_send_player(name, text)
	static int l_chat_send_player(lua_State *L);

	// get_player_privs(name, text)
	static int l_get_player_privs(lua_State *L);

	// get_player_ip()
	static int l_get_player_ip(lua_State *L);

	// get_ban_list()
	static int l_get_ban_list(lua_State *L);

	// get_ban_description()
	static int l_get_ban_description(lua_State *L);

	// ban_player()
	static int l_ban_player(lua_State *L);

	// unban_player_or_ip()
	static int l_unban_player_or_ip(lua_State *L);

	// show_formspec(playername,formname,formspec)
	static int l_show_formspec(lua_State *L);

	// get_dig_params(groups, tool_capabilities[, time_from_last_punch])
	static int l_get_dig_params(lua_State *L);

	// get_hit_params(groups, tool_capabilities[, time_from_last_punch])
	static int l_get_hit_params(lua_State *L);

	// get_current_modname()
	static int l_get_current_modname(lua_State *L);

	// get_modpath(modname)
	static int l_get_modpath(lua_State *L);