2024-10-28 15:57:39 +01:00
|
|
|
// Luanti
|
|
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// Copyright (C) 2013 sapier
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "lua_api/l_base.h"
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-11-26 18:15:31 +01:00
|
|
|
class AsyncEngine;
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
/** Implementation of lua api support for mainmenu */
|
2017-01-22 11:17:41 +01:00
|
|
|
class ModApiMainMenu: public ModApiBase
|
|
|
|
{
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* read a text variable from gamedata table within lua stack
|
|
|
|
* @param L stack to read variable from
|
|
|
|
* @param name name of variable to read
|
|
|
|
* @return string value of requested variable
|
|
|
|
*/
|
2023-12-23 13:02:17 +01:00
|
|
|
static std::string getTextData(lua_State *L, const std::string &name);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
2022-11-09 17:57:19 +01:00
|
|
|
* read an integer variable from gamedata table within lua stack
|
2013-06-23 18:30:21 +02:00
|
|
|
* @param L stack to read variable from
|
|
|
|
* @param name name of variable to read
|
|
|
|
* @return integer value of requested variable
|
|
|
|
*/
|
2023-12-23 13:02:17 +01:00
|
|
|
static int getIntegerData(lua_State *L, const std::string &name, bool& valid);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* read a bool variable from gamedata table within lua stack
|
|
|
|
* @param L stack to read variable from
|
|
|
|
* @param name name of variable to read
|
|
|
|
* @return bool value of requested variable
|
|
|
|
*/
|
2023-12-23 13:02:17 +01:00
|
|
|
static int getBoolData(lua_State *L, const std::string &name ,bool& valid);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
//api calls
|
|
|
|
|
|
|
|
static int l_start(lua_State *L);
|
|
|
|
|
|
|
|
static int l_close(lua_State *L);
|
|
|
|
|
|
|
|
static int l_create_world(lua_State *L);
|
|
|
|
|
|
|
|
static int l_delete_world(lua_State *L);
|
|
|
|
|
|
|
|
static int l_get_worlds(lua_State *L);
|
|
|
|
|
2014-12-29 21:23:51 -05:00
|
|
|
static int l_get_mapgen_names(lua_State *L);
|
|
|
|
|
2024-02-25 22:09:52 +00:00
|
|
|
static int l_get_language(lua_State *L);
|
|
|
|
|
2018-03-28 22:14:16 +01:00
|
|
|
//packages
|
|
|
|
|
|
|
|
static int l_get_games(lua_State *L);
|
|
|
|
|
2018-04-17 14:54:50 +01:00
|
|
|
static int l_get_content_info(lua_State *L);
|
2018-03-28 22:14:16 +01:00
|
|
|
|
2022-05-07 16:45:17 +01:00
|
|
|
static int l_check_mod_configuration(lua_State *L);
|
|
|
|
|
2024-02-24 19:13:07 +00:00
|
|
|
static int l_get_content_translation(lua_State *L);
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
//gui
|
|
|
|
|
2024-11-24 11:33:39 +01:00
|
|
|
static int l_show_touchscreen_layout(lua_State *L);
|
|
|
|
|
2017-06-11 08:43:31 +01:00
|
|
|
static int l_show_path_select_dialog(lua_State *L);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
static int l_set_topleft_text(lua_State *L);
|
|
|
|
|
|
|
|
static int l_set_clouds(lua_State *L);
|
|
|
|
|
|
|
|
static int l_get_textlist_index(lua_State *L);
|
2013-08-23 12:24:11 +02:00
|
|
|
|
|
|
|
static int l_get_table_index(lua_State *L);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
static int l_set_background(lua_State *L);
|
|
|
|
|
|
|
|
static int l_update_formspec(lua_State *L);
|
|
|
|
|
2019-08-12 18:16:35 +01:00
|
|
|
static int l_set_formspec_prepend(lua_State *L);
|
|
|
|
|
2023-02-27 22:58:41 +00:00
|
|
|
static int l_get_window_info(lua_State *L);
|
|
|
|
|
|
|
|
static int l_get_active_renderer(lua_State *L);
|
2014-04-05 14:12:36 +02:00
|
|
|
|
2023-07-17 20:44:54 +02:00
|
|
|
static int l_get_active_irrlicht_device(lua_State *L);
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
//filesystem
|
|
|
|
|
2014-04-27 17:55:49 -04:00
|
|
|
static int l_get_mainmenu_path(lua_State *L);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2020-12-19 13:27:15 +00:00
|
|
|
static int l_get_user_path(lua_State *L);
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
static int l_get_modpath(lua_State *L);
|
2017-06-06 05:34:31 -07:00
|
|
|
|
2021-10-06 22:19:41 +00:00
|
|
|
static int l_get_modpaths(lua_State *L);
|
|
|
|
|
2017-06-06 05:34:31 -07:00
|
|
|
static int l_get_clientmodpath(lua_State *L);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
static int l_get_gamepath(lua_State *L);
|
2014-12-29 21:23:51 -05:00
|
|
|
|
2013-08-02 15:18:48 +02:00
|
|
|
static int l_get_texturepath(lua_State *L);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-12-13 20:35:57 +04:00
|
|
|
static int l_get_texturepath_share(lua_State *L);
|
|
|
|
|
2019-01-31 16:35:55 +00:00
|
|
|
static int l_get_cache_path(lua_State *L);
|
|
|
|
|
2021-02-07 15:27:24 +00:00
|
|
|
static int l_get_temp_path(lua_State *L);
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
static int l_create_dir(lua_State *L);
|
|
|
|
|
|
|
|
static int l_delete_dir(lua_State *L);
|
|
|
|
|
|
|
|
static int l_copy_dir(lua_State *L);
|
|
|
|
|
2021-01-04 15:18:31 +00:00
|
|
|
static int l_is_dir(lua_State *L);
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
static int l_extract_zip(lua_State *L);
|
|
|
|
|
2019-03-05 07:12:58 +00:00
|
|
|
static int l_may_modify_path(lua_State *L);
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
static int l_download_file(lua_State *L);
|
|
|
|
|
2015-02-17 01:37:14 +01:00
|
|
|
//version compatibility
|
|
|
|
static int l_get_min_supp_proto(lua_State *L);
|
|
|
|
|
|
|
|
static int l_get_max_supp_proto(lua_State *L);
|
|
|
|
|
2024-03-31 19:24:27 +01:00
|
|
|
static int l_get_formspec_version(lua_State *L);
|
|
|
|
|
2020-05-17 19:09:10 +01:00
|
|
|
// other
|
|
|
|
static int l_open_url(lua_State *L);
|
|
|
|
|
2024-03-31 19:24:27 +01:00
|
|
|
static int l_open_url_dialog(lua_State *L);
|
|
|
|
|
2020-12-19 13:27:15 +00:00
|
|
|
static int l_open_dir(lua_State *L);
|
|
|
|
|
2022-06-05 17:42:09 +01:00
|
|
|
static int l_share_file(lua_State *L);
|
|
|
|
|
2013-11-26 18:15:31 +01:00
|
|
|
// async
|
|
|
|
static int l_do_async_callback(lua_State *L);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
public:
|
2014-12-12 14:49:19 -05:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
/**
|
|
|
|
* initialize this API module
|
|
|
|
* @param L lua stack to initialize
|
|
|
|
* @param top index (in lua stack) of global API table
|
|
|
|
*/
|
|
|
|
static void Initialize(lua_State *L, int top);
|
|
|
|
|
2014-12-12 14:49:19 -05:00
|
|
|
static void InitializeAsync(lua_State *L, int top);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
};
|