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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUI_ENGINE_H_
|
|
|
|
#define GUI_ENGINE_H_
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* Includes */
|
|
|
|
/******************************************************************************/
|
|
|
|
#include "irrlichttypes.h"
|
|
|
|
#include "modalMenu.h"
|
|
|
|
#include "guiFormSpecMenu.h"
|
2013-07-28 23:14:42 +02:00
|
|
|
#include "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
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* Typedefs and macros */
|
|
|
|
/******************************************************************************/
|
|
|
|
/** texture layer ids */
|
|
|
|
typedef enum {
|
|
|
|
TEX_LAYER_BACKGROUND = 0,
|
|
|
|
TEX_LAYER_OVERLAY,
|
|
|
|
TEX_LAYER_HEADER,
|
|
|
|
TEX_LAYER_FOOTER,
|
|
|
|
TEX_LAYER_MAX
|
|
|
|
} texture_layer;
|
|
|
|
|
2014-05-17 12:06:36 +02:00
|
|
|
typedef struct {
|
|
|
|
video::ITexture* texture;
|
|
|
|
bool tile;
|
|
|
|
unsigned int minsize;
|
|
|
|
} image_definition;
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* forward declarations */
|
|
|
|
/******************************************************************************/
|
|
|
|
class GUIEngine;
|
2013-08-11 04:09:45 +02:00
|
|
|
class MainMenuScripting;
|
2013-08-20 22:38:14 +02:00
|
|
|
class Clouds;
|
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
|
|
|
|
*/
|
|
|
|
TextDestGuiEngine(GUIEngine* 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
|
|
|
|
*/
|
|
|
|
void gotText(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 */
|
|
|
|
GUIEngine* m_engine;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
MenuTextureSource(video::IVideoDriver *driver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
video::ITexture* getTexture(const std::string &name, u32 *id = NULL);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/** driver to get textures from */
|
|
|
|
video::IVideoDriver *m_driver;
|
|
|
|
/** set of texture names to delete */
|
|
|
|
std::set<std::string> m_to_delete;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 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
|
|
|
|
*/
|
2016-05-27 08:35:07 +02:00
|
|
|
GUIEngine(irr::IrrlichtDevice* dev,
|
|
|
|
JoystickController *joystick,
|
2014-05-17 12:06:36 +02:00
|
|
|
gui::IGUIElement* parent,
|
|
|
|
IMenuManager *menumgr,
|
|
|
|
scene::ISceneManager* smgr,
|
|
|
|
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
|
|
|
*/
|
2014-05-17 12:06:36 +02:00
|
|
|
MainMenuScripting* getScriptIface()
|
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
return m_script;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2013-11-26 18:15:31 +01:00
|
|
|
/** pass async callback to scriptengine **/
|
2014-04-15 21:10:30 +02:00
|
|
|
unsigned int queueAsync(std::string serialized_fct,std::string serialized_params);
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
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();
|
|
|
|
|
|
|
|
/** handler to limit frame rate within main menu */
|
|
|
|
void limitFrameRate();
|
|
|
|
|
2014-11-23 13:40:43 +01:00
|
|
|
/** update size of topleftext element */
|
|
|
|
void updateTopLeftTextSize();
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
/** device to draw at */
|
2014-05-17 12:06:36 +02:00
|
|
|
irr::IrrlichtDevice* m_device;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** parent gui element */
|
2014-05-17 12:06:36 +02:00
|
|
|
gui::IGUIElement* m_parent;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** manager to add menus to */
|
2014-05-17 12:06:36 +02:00
|
|
|
IMenuManager* m_menumanager;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** scene manager to add scene elements to */
|
2014-05-17 12:06:36 +02:00
|
|
|
scene::ISceneManager* m_smgr;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** pointer to data beeing transfered back to main game handling */
|
2014-05-17 12:06:36 +02:00
|
|
|
MainMenuData* m_data;
|
2013-08-20 22:38:14 +02:00
|
|
|
/** pointer to texture source */
|
2014-05-17 12:06:36 +02:00
|
|
|
ISimpleTextureSource* m_texture_source;
|
2013-07-28 23:14:42 +02:00
|
|
|
/** pointer to soundmanager*/
|
2014-05-17 12:06:36 +02:00
|
|
|
ISoundManager* m_sound_manager;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** representation of form source to be used in mainmenu formspec */
|
2014-05-17 12:06:36 +02:00
|
|
|
FormspecFormSource* m_formspecgui;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** formspec input receiver */
|
2014-05-17 12:06:36 +02:00
|
|
|
TextDestGuiEngine* m_buttonhandler;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** the formspec menu */
|
2014-05-17 12:06:36 +02:00
|
|
|
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 */
|
2014-05-17 12:06:36 +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 */
|
2014-05-17 12:06:36 +02:00
|
|
|
bool m_startgame;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
/** scripting interface */
|
2014-05-17 12:06:36 +02:00
|
|
|
MainMenuScripting* m_script;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/** script basefolder */
|
2014-05-17 12:06:36 +02:00
|
|
|
std::string m_scriptdir;
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* draw background layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
|
|
|
void drawBackground(video::IVideoDriver* driver);
|
|
|
|
/**
|
|
|
|
* draw overlay layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
|
|
|
void drawOverlay(video::IVideoDriver* driver);
|
|
|
|
/**
|
|
|
|
* draw header layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
|
|
|
void drawHeader(video::IVideoDriver* driver);
|
|
|
|
/**
|
|
|
|
* draw footer layer
|
|
|
|
* @param driver to use for drawing
|
|
|
|
*/
|
|
|
|
void drawFooter(video::IVideoDriver* driver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* load a texture for a specified layer
|
|
|
|
* @param layer draw layer to specify texture
|
|
|
|
* @param texturepath full path of texture to load
|
|
|
|
*/
|
2014-05-17 12:06:36 +02:00
|
|
|
bool setTexture(texture_layer layer, std::string texturepath,
|
|
|
|
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
|
|
|
|
*/
|
2013-11-26 18:15:31 +01:00
|
|
|
static bool downloadFile(std::string url,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
|
|
|
|
|
|
|
/** draw version string in topleft corner */
|
|
|
|
void drawVersion();
|
|
|
|
|
|
|
|
/**
|
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 */
|
|
|
|
irr::gui::IGUIStaticText* m_irr_toplefttext;
|
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 */
|
|
|
|
void cloudPostProcess();
|
|
|
|
|
|
|
|
/** internam data required for drawing clouds */
|
|
|
|
struct clouddata {
|
|
|
|
/** delta time since last cloud processing */
|
2014-05-17 12:06:36 +02:00
|
|
|
f32 dtime;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** absolute time of last cloud processing */
|
2014-05-17 12:06:36 +02:00
|
|
|
u32 lasttime;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** pointer to cloud class */
|
2014-05-17 12:06:36 +02:00
|
|
|
Clouds* clouds;
|
2013-06-23 18:30:21 +02:00
|
|
|
/** camera required for drawing clouds */
|
|
|
|
scene::ICameraSceneNode* camera;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** is drawing of clouds enabled atm */
|
2014-05-17 12:06:36 +02:00
|
|
|
bool m_clouds_enabled;
|
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 */
|
|
|
|
s32 playSound(SimpleSoundSpec spec, bool looped);
|
|
|
|
/** stop playing a sound started with playSound() */
|
|
|
|
void stopSound(s32 handle);
|
|
|
|
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GUI_ENGINE_H_ */
|