2013-06-23 18:30:21 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 sapier
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* Includes */
|
|
|
|
/******************************************************************************/
|
|
|
|
#include "irrlichttypes.h"
|
|
|
|
#include "guiFormSpecMenu.h"
|
2023-04-10 18:43:58 +02:00
|
|
|
#include "client/clouds.h"
|
2018-03-24 15:45:25 +01:00
|
|
|
#include "client/sound.h"
|
2015-03-05 11:52:57 +01:00
|
|
|
#include "client/tile.h"
|
2016-05-31 17:30:11 +02:00
|
|
|
#include "util/enriched_string.h"
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
2020-11-26 22:19:46 +01:00
|
|
|
/* Structs and macros */
|
2013-06-23 18:30:21 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/** texture layer ids */
|
2020-11-26 22:19:46 +01:00
|
|
|
enum texture_layer {
|
2013-06-23 18:30:21 +02:00
|
|
|
TEX_LAYER_BACKGROUND = 0,
|
|
|
|
TEX_LAYER_OVERLAY,
|
|
|
|
TEX_LAYER_HEADER,
|
|
|
|
TEX_LAYER_FOOTER,
|
|
|
|
TEX_LAYER_MAX
|
2020-11-26 22:19:46 +01:00
|
|
|
};
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2020-11-26 22:19:46 +01:00
|
|
|
struct image_definition {
|
2017-06-24 13:41:30 +02:00
|
|
|
video::ITexture *texture = nullptr;
|
2014-05-17 12:06:36 +02:00
|
|
|
bool tile;
|
|
|
|
unsigned int minsize;
|
2020-11-26 22:19:46 +01:00
|
|
|
};
|
2014-05-17 12:06:36 +02:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* forward declarations */
|
|
|
|
/******************************************************************************/
|
|
|
|
class GUIEngine;
|
2021-04-28 12:48:13 +02:00
|
|
|
class RenderingEngine;
|
2013-08-11 04:09:45 +02:00
|
|
|
class MainMenuScripting;
|
2013-06-23 18:30:21 +02:00
|
|
|
struct MainMenuData;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* declarations */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
/** GUIEngine specific implementation of TextDest used within guiFormSpecMenu */
|
|
|
|
class TextDestGuiEngine : public TextDest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* default constructor
|
|
|
|
* @param engine the engine data is transmitted for further processing
|
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
TextDestGuiEngine(GUIEngine* engine) : m_engine(engine) {};
|
2013-08-20 22:38:14 +02:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
/**
|
|
|
|
* receive fields transmitted by guiFormSpecMenu
|
|
|
|
* @param fields map containing formspec field elements currently active
|
|
|
|
*/
|
2015-05-19 08:24:14 +02:00
|
|
|
void gotText(const StringMap &fields);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* receive text/events transmitted by guiFormSpecMenu
|
|
|
|
* @param text textual representation of event
|
|
|
|
*/
|
2017-04-21 10:06:08 +02:00
|
|
|
void gotText(const std::wstring &text);
|
2013-08-20 22:38:14 +02:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
private:
|
|
|
|
/** target to transmit data to */
|
2017-06-24 13:41:30 +02:00
|
|
|
GUIEngine *m_engine = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
};
|
|
|
|
|
2013-08-20 22:38:14 +02:00
|
|
|
/** GUIEngine specific implementation of ISimpleTextureSource */
|
|
|
|
class MenuTextureSource : public ISimpleTextureSource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* default constructor
|
|
|
|
* @param driver the video driver to load textures from
|
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
MenuTextureSource(video::IVideoDriver *driver) : m_driver(driver) {};
|
2013-08-20 22:38:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* destructor, removes all loaded textures
|
|
|
|
*/
|
|
|
|
virtual ~MenuTextureSource();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get a texture, loading it if required
|
|
|
|
* @param name path to the texture
|
|
|
|
* @param id receives the texture ID, always 0 in this implementation
|
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
video::ITexture *getTexture(const std::string &name, u32 *id = NULL);
|
2013-08-20 22:38:14 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
/** driver to get textures from */
|
2017-06-24 13:41:30 +02:00
|
|
|
video::IVideoDriver *m_driver = nullptr;
|
2023-03-05 15:10:44 +01:00
|
|
|
/** set of textures to delete */
|
|
|
|
std::vector<video::ITexture*> m_to_delete;
|
2013-08-20 22:38:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/** GUIEngine specific implementation of OnDemandSoundFetcher */
|
2013-07-28 23:14:42 +02:00
|
|
|
class MenuMusicFetcher: public OnDemandSoundFetcher
|
|
|
|
{
|
|
|
|
public:
|
2013-08-20 22:38:14 +02:00
|
|
|
/**
|
|
|
|
* get sound file paths according to sound name
|
|
|
|
* @param name sound name
|
|
|
|
* @param dst_paths receives possible paths to sound files
|
|
|
|
* @param dst_datas receives binary sound data (not used here)
|
|
|
|
*/
|
2013-07-28 23:14:42 +02:00
|
|
|
void fetchSounds(const std::string &name,
|
|
|
|
std::set<std::string> &dst_paths,
|
2013-08-11 04:09:45 +02:00
|
|
|
std::set<std::string> &dst_datas);
|
2013-08-20 22:38:14 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
/** set of fetched sound names */
|
|
|
|
std::set<std::string> m_fetched;
|
2013-07-28 23:14:42 +02:00
|
|
|
};
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** implementation of main menu based uppon formspecs */
|
|
|
|
class GUIEngine {
|
2013-08-11 04:09:45 +02:00
|
|
|
/** grant ModApiMainMenu access to private members */
|
|
|
|
friend class ModApiMainMenu;
|
2017-01-22 11:17:41 +01:00
|
|
|
friend class ModApiSound;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
public:
|
2013-06-23 18:30:21 +02:00
|
|
|
/**
|
|
|
|
* default constructor
|
|
|
|
* @param dev device to draw at
|
|
|
|
* @param parent parent gui element
|
|
|
|
* @param menumgr manager to add menus to
|
|
|
|
* @param smgr scene manager to add scene elements to
|
|
|
|
* @param data struct to transfer data to main game handling
|
|
|
|
*/
|
2017-06-26 20:11:17 +02:00
|
|
|
GUIEngine(JoystickController *joystick,
|
2017-06-24 13:41:30 +02:00
|
|
|
gui::IGUIElement *parent,
|
2021-04-28 12:48:13 +02:00
|
|
|
RenderingEngine *rendering_engine,
|
2014-05-17 12:06:36 +02:00
|
|
|
IMenuManager *menumgr,
|
2017-06-24 13:41:30 +02:00
|
|
|
MainMenuData *data,
|
|
|
|
bool &kill);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** default destructor */
|
|
|
|
virtual ~GUIEngine();
|
|
|
|
|
|
|
|
/**
|
2013-08-11 04:09:45 +02:00
|
|
|
* return MainMenuScripting interface
|
2013-06-23 18:30:21 +02:00
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
MainMenuScripting *getScriptIface()
|
2014-05-17 12:06:36 +02:00
|
|
|
{
|
2023-04-10 18:43:58 +02:00
|
|
|
return m_script.get();
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* return dir of current menuscript
|
|
|
|
*/
|
2014-05-17 12:06:36 +02:00
|
|
|
std::string getScriptDir()
|
|
|
|
{
|
2013-06-23 18:30:21 +02:00
|
|
|
return m_scriptdir;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
/** find and run the main menu script */
|
|
|
|
bool loadMainMenuScript();
|
|
|
|
|
|
|
|
/** run main menu loop */
|
2013-06-23 18:30:21 +02:00
|
|
|
void run();
|
|
|
|
|
2014-11-23 13:40:43 +01:00
|
|
|
/** update size of topleftext element */
|
|
|
|
void updateTopLeftTextSize();
|
|
|
|
|
2023-04-10 18:43:58 +02:00
|
|
|
RenderingEngine *m_rendering_engine = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** parent gui element */
|
2023-04-10 18:43:58 +02:00
|
|
|
gui::IGUIElement *m_parent = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** manager to add menus to */
|
2023-04-10 18:43:58 +02:00
|
|
|
IMenuManager *m_menumanager = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** scene manager to add scene elements to */
|
2023-04-10 18:43:58 +02:00
|
|
|
scene::ISceneManager *m_smgr = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** pointer to data beeing transfered back to main game handling */
|
2023-04-10 18:43:58 +02:00
|
|
|
MainMenuData *m_data = nullptr;
|
|
|
|
/** texture source */
|
|
|
|
std::unique_ptr<ISimpleTextureSource> m_texture_source;
|
|
|
|
/** sound fetcher, used by sound manager*/
|
|
|
|
MenuMusicFetcher m_soundfetcher{};
|
|
|
|
/** sound manager*/
|
|
|
|
std::unique_ptr<ISoundManager> m_sound_manager;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** representation of form source to be used in mainmenu formspec */
|
2023-04-10 18:43:58 +02:00
|
|
|
FormspecFormSource *m_formspecgui = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** formspec input receiver */
|
2023-04-10 18:43:58 +02:00
|
|
|
TextDestGuiEngine *m_buttonhandler = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** the formspec menu */
|
2023-04-10 18:43:58 +02:00
|
|
|
irr_ptr<GUIFormSpecMenu> m_menu;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-08-19 14:55:38 +02:00
|
|
|
/** reference to kill variable managed by SIGINT handler */
|
2023-04-10 18:43:58 +02:00
|
|
|
bool &m_kill;
|
2013-08-19 14:55:38 +02:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
/** variable used to abort menu and return back to main game handling */
|
2023-04-10 18:43:58 +02:00
|
|
|
bool m_startgame = false;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
/** scripting interface */
|
2023-04-10 18:43:58 +02:00
|
|
|
std::unique_ptr<MainMenuScripting> m_script;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** script basefolder */
|
2023-04-10 18:43:58 +02:00
|
|
|
std::string m_scriptdir = "";
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2019-08-12 19:16:35 +02:00
|
|
|
void setFormspecPrepend(const std::string &fs);
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
/**
|
|
|
|
* draw background layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
void drawBackground(video::IVideoDriver *driver);
|
2013-06-23 18:30:21 +02:00
|
|
|
/**
|
|
|
|
* draw overlay layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
void drawOverlay(video::IVideoDriver *driver);
|
2013-06-23 18:30:21 +02:00
|
|
|
/**
|
|
|
|
* draw header layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
void drawHeader(video::IVideoDriver *driver);
|
2013-06-23 18:30:21 +02:00
|
|
|
/**
|
|
|
|
* draw footer layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
2017-06-24 13:41:30 +02:00
|
|
|
void drawFooter(video::IVideoDriver *driver);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* load a texture for a specified layer
|
|
|
|
* @param layer draw layer to specify texture
|
|
|
|
* @param texturepath full path of texture to load
|
|
|
|
*/
|
Optimize string (mis)handling (#8128)
* Optimize statbar drawing
The texture name of the statbar is a string passed by value.
That slows down the client and creates litter in the heap
as the content of the string is allocated there. Convert the
offending parameter to a const reference to avoid the
performance hit.
* Optimize texture cache
There is an unnecessary temporary created when the texture
path is being generated. This slows down the cache each time
a new texture is encountered and it needs to be loaded into
the cache. Additionally, the heap litter created by this
unnecessary temporary is particularly troublesome here as
the following code then piles another string (the resulting
full path of the texture) on top of it, followed by the
texture itself, which both are quite long term objects as
they are subsequently inserted into the cache where they can
remain for quite a while (especially if the texture turns
out to be a common one like dirt, grass or stone).
Use std::string.append to get rid of the temporary which
solves both issues (speed and heap fragmentation).
* Optimize animations in client
Each time an animated node is updated, an unnecessary copy of
the texture name is created, littering the heap with lots of
fragments. This can be specifically troublesome when looking
at oceans or large lava lakes as both of these nodes are
usually animated (the lava animation is pretty visible).
Convert the parameter of GenericCAO::updateTextures to a
const reference to get rid of the unnecessary copy.
There is a comment stating "std::string copy is mandatory as
mod can be a class member and there is a swap on those class
members ... do NOT pass by reference", reinforcing the
belief that the unnecessary copy is in fact necessary.
However one of the first things the code of the method does
is to assign the parameter to its class member, creating
another copy. By rearranging the code a little bit this
"another copy" can then be used by the subsequent code,
getting rid of the need to pass the parameter by value and
thus saving that copying effort.
* Optimize chat console history handling
The GUIChatConsole::replaceAndAddToHistory was getting the
line to work on by value which turns out to be unnecessary.
Get rid of that unnecessary copy by converting the parameter
to a const reference.
* Optimize gui texture setting
The code used to set the texture for GUI components was
getting the name of the texture by value, creating
unnecessary performance bottleneck for mods/games with
heavily textured GUIs. Get rid of the bottleneck by passing
the texture name as a const reference.
* Optimize sound playing code in GUIEngine
The GUIEngine's code receives the specification of the sound
to be played by value, which turns out to be most likely a
mistake as the underlying sound manager interface receives
the same thing by reference. Convert the offending parameter
to a const reference to get rid of the rather bulky copying
effort and the associated performance hit.
* Silence CLANG TIDY warnings for unit tests
Change "std::string" to "const std::string &" to avoid an
unnecessary local value copy, silencing the CLANG TIDY
process.
* Optimize formspec handling
The "formspec prepend" parameter was passed to the formspec
handling code by value, creating unnecessary copy of
std::string and slowing down the game if mods add things like
textured backgrounds for the player inventory and/or other
forms. Get rid of that performance bottleneck by converting
the parameter to a const reference.
* Optimize hotbar image handling
The code that sets the background images for the hotbar is
getting the name of the image by value, creating an
unnecessary std::string copying effort. Fix that by
converting the relevant parameters to const references.
* Optimize inventory deserialization
The inventory manager deserialization code gets the
serialized version of the inventory by value, slowing the
server and the client down when there are inventory updates.
This can get particularly troublesome with pipeworks which
adds nodes that can mess around with inventories
automatically or with mods that have mobs with inventories
that actively use them.
* Optimize texture scaling cache
There is an io::path parameter passed by value in the
procedure used to add images converted from textures,
leading to slowdown when the image is not yet created and
the conversion is thus needed. The performance hit is
quite significant as io::path is similar to std::string
so convert the parameter to a const reference to get rid of
it.
* Optimize translation file loader
Use "std::string::append" when calculating the final index
for the translation table to avoid unnecessary temporary
strings. This speeds the translation file loader up
significantly as std::string uses heap allocation which
tends to be rather slow. Additionally, the heap is no
longer being littered by these unnecessary string
temporaries, increasing performance of code that gets
executed after the translation file loader finishes.
* Optimize server map saving
When the directory structure for the world data is created
during server map saving, an unnecessary value passing of
the directory name slows things down. Remove that overhead
by converting the offending parameter to a const reference.
2019-05-18 17:19:13 +02:00
|
|
|
bool setTexture(texture_layer layer, const std::string &texturepath,
|
2014-05-17 12:06:36 +02:00
|
|
|
bool tile_image, unsigned int minsize);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* download a file using curl
|
|
|
|
* @param url url to download
|
|
|
|
* @param target file to store to
|
|
|
|
*/
|
2017-04-21 10:06:08 +02:00
|
|
|
static bool downloadFile(const std::string &url, const std::string &target);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** array containing pointers to current specified texture layers */
|
2014-05-17 12:06:36 +02:00
|
|
|
image_definition m_textures[TEX_LAYER_MAX];
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
2016-07-03 19:36:51 +02:00
|
|
|
* specify text to appear as top left string
|
2013-06-23 18:30:21 +02:00
|
|
|
* @param text to set
|
|
|
|
*/
|
2016-07-03 19:36:51 +02:00
|
|
|
void setTopleftText(const std::string &text);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** pointer to gui element shown at topleft corner */
|
2017-06-16 11:25:52 +02:00
|
|
|
irr::gui::IGUIStaticText *m_irr_toplefttext = nullptr;
|
2016-05-31 17:30:11 +02:00
|
|
|
/** and text that is in it */
|
|
|
|
EnrichedString m_toplefttext;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** initialize cloud subsystem */
|
|
|
|
void cloudInit();
|
|
|
|
/** do preprocessing for cloud subsystem */
|
|
|
|
void cloudPreProcess();
|
|
|
|
/** do postprocessing for cloud subsystem */
|
2020-10-03 18:33:51 +02:00
|
|
|
void cloudPostProcess(u32 frametime_min, IrrlichtDevice *device);
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** internam data required for drawing clouds */
|
|
|
|
struct clouddata {
|
|
|
|
/** delta time since last cloud processing */
|
2023-04-10 18:43:58 +02:00
|
|
|
f32 dtime;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** absolute time of last cloud processing */
|
2023-04-10 18:43:58 +02:00
|
|
|
u32 lasttime;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** pointer to cloud class */
|
2023-04-10 18:43:58 +02:00
|
|
|
irr_ptr<Clouds> clouds;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** camera required for drawing clouds */
|
2017-06-24 13:41:30 +02:00
|
|
|
scene::ICameraSceneNode *camera = nullptr;
|
2013-06-23 18:30:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/** is drawing of clouds enabled atm */
|
2017-06-16 11:25:52 +02:00
|
|
|
bool m_clouds_enabled = true;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** data used to draw clouds */
|
2014-05-17 12:06:36 +02:00
|
|
|
clouddata m_cloud;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
/** start playing a sound and return handle */
|
2022-06-20 21:56:12 +02:00
|
|
|
s32 playSound(const SimpleSoundSpec &spec);
|
2013-08-11 04:09:45 +02:00
|
|
|
/** stop playing a sound started with playSound() */
|
|
|
|
void stopSound(s32 handle);
|
|
|
|
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
};
|