2003-01-20 16:03:09 +00:00
|
|
|
// new_gui.hxx - XML-configured GUI subsystem.
|
2002-11-08 16:33:00 +00:00
|
|
|
|
2002-11-07 16:27:47 +00:00
|
|
|
#ifndef __NEW_GUI_HXX
|
|
|
|
#define __NEW_GUI_HXX 1
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
2004-04-29 09:36:27 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2002-11-07 16:27:47 +00:00
|
|
|
#include <plib/pu.h>
|
|
|
|
|
|
|
|
#include <simgear/compiler.h> // for SG_USING_STD
|
2003-05-06 23:46:24 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
2005-07-18 09:18:24 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2002-11-07 16:27:47 +00:00
|
|
|
|
2008-06-06 19:02:17 +00:00
|
|
|
#include <functional>
|
2002-11-07 22:59:46 +00:00
|
|
|
#include <vector>
|
2002-11-07 16:27:47 +00:00
|
|
|
#include <map>
|
2005-07-18 09:18:24 +00:00
|
|
|
|
2008-07-27 16:25:13 +00:00
|
|
|
using std::vector;
|
|
|
|
using std::map;
|
|
|
|
using std::string;
|
2002-11-07 16:27:47 +00:00
|
|
|
|
2002-12-22 19:52:26 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2002-11-07 16:27:47 +00:00
|
|
|
|
2007-01-04 13:22:27 +00:00
|
|
|
class SGBinding;
|
|
|
|
|
2003-01-16 18:06:27 +00:00
|
|
|
class FGMenuBar;
|
2003-01-18 15:16:34 +00:00
|
|
|
class FGDialog;
|
2005-07-07 21:28:15 +00:00
|
|
|
class FGColor;
|
2005-07-18 09:18:24 +00:00
|
|
|
class FGFontCache;
|
2002-11-07 16:27:47 +00:00
|
|
|
|
2002-11-08 15:24:14 +00:00
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* XML-configured GUI subsystem.
|
|
|
|
*
|
|
|
|
* This subsystem manages the graphical user interface for FlightGear.
|
|
|
|
* It creates a menubar from the XML configuration file in
|
|
|
|
* $FG_ROOT/gui/menubar.xml, then stores the configuration properties
|
2003-02-04 22:28:48 +00:00
|
|
|
* for XML-configured dialog boxes found in $FG_ROOT/gui/dialogs/. It
|
2003-01-20 16:03:09 +00:00
|
|
|
* can show or hide the menubar, and can display any dialog by name.
|
|
|
|
*/
|
2003-09-24 17:20:55 +00:00
|
|
|
class NewGUI : public SGSubsystem
|
2002-11-08 15:24:14 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
2002-11-08 15:24:14 +00:00
|
|
|
NewGUI ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor.
|
|
|
|
*/
|
2002-11-08 15:24:14 +00:00
|
|
|
virtual ~NewGUI ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the GUI subsystem.
|
|
|
|
*/
|
2002-11-08 15:24:14 +00:00
|
|
|
virtual void init ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
2003-01-21 02:09:27 +00:00
|
|
|
/**
|
2005-11-09 17:16:59 +00:00
|
|
|
* Reinitialize the GUI subsystem. Reloads all XML dialogs.
|
2003-01-21 02:09:27 +00:00
|
|
|
*/
|
|
|
|
virtual void reinit ();
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Bind properties for the GUI subsystem.
|
|
|
|
*
|
|
|
|
* Currently, this method binds the properties for showing and
|
|
|
|
* hiding the menu.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual void bind ();
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unbind properties for the GUI subsystem.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual void unbind ();
|
2002-11-08 15:24:14 +00:00
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Update the GUI subsystem.
|
|
|
|
*
|
|
|
|
* Currently, this method is a no-op, because nothing the GUI
|
|
|
|
* subsystem does is time-dependent.
|
|
|
|
*/
|
|
|
|
virtual void update (double delta_time_sec);
|
2002-12-22 19:52:26 +00:00
|
|
|
|
2005-11-09 17:16:59 +00:00
|
|
|
/**
|
|
|
|
* Redraw the GUI picking up new GUI colors.
|
|
|
|
*/
|
|
|
|
virtual void redraw ();
|
|
|
|
|
2003-12-08 02:05:10 +00:00
|
|
|
/**
|
|
|
|
* Creates a new dialog box, using the same property format as the
|
|
|
|
* gui/dialogs configuration files. Does not display the
|
|
|
|
* resulting dialog. If a pre-existing dialog of the same name
|
|
|
|
* exists, it will be deleted. The node argument will be stored
|
|
|
|
* in the GUI subsystem using SGPropertNode_ptr reference counting.
|
|
|
|
* It should not be deleted by user code.
|
|
|
|
*
|
|
|
|
* @param node A property node containing the dialog definition
|
|
|
|
*/
|
|
|
|
virtual void newDialog (SGPropertyNode* node);
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Display a dialog box.
|
|
|
|
*
|
|
|
|
* At initialization time, the subsystem reads all of the XML
|
2003-02-04 22:28:48 +00:00
|
|
|
* configuration files from the directory $FG_ROOT/gui/dialogs/.
|
|
|
|
* The configuration for each dialog specifies a name, and this
|
|
|
|
* method invokes the dialog with the name specified (if it
|
|
|
|
* exists).
|
2003-01-20 16:03:09 +00:00
|
|
|
*
|
|
|
|
* @param name The name of the dialog box.
|
|
|
|
* @return true if the dialog exists, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool showDialog (const string &name);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-12-08 02:05:10 +00:00
|
|
|
* Close the currenty active dialog. This function is intended to
|
|
|
|
* be called from code (pui callbacks, for instance) that registers
|
|
|
|
* its dialog object as active via setActiveDialog(). Other
|
|
|
|
* user-level code should use the closeDialog(name) API.
|
2003-01-20 16:03:09 +00:00
|
|
|
*
|
2003-12-08 02:05:10 +00:00
|
|
|
* @return true if a dialog was active, false otherwise
|
2003-01-20 16:03:09 +00:00
|
|
|
*/
|
|
|
|
virtual bool closeActiveDialog ();
|
|
|
|
|
2003-12-08 02:05:10 +00:00
|
|
|
/**
|
|
|
|
* Close a named dialog, if it is open.
|
|
|
|
*
|
|
|
|
* @param name The name of the dialog box.
|
|
|
|
* @return true if the dialog was active, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool closeDialog (const string &name);
|
2003-01-20 16:03:09 +00:00
|
|
|
|
2005-10-20 11:15:00 +00:00
|
|
|
/**
|
|
|
|
* Get dialog property tree's root node.
|
|
|
|
* @param name The name of the dialog box.
|
|
|
|
* @return node pointer if the dialog was found, zero otherwise.
|
|
|
|
*/
|
2006-04-28 09:59:31 +00:00
|
|
|
virtual SGPropertyNode_ptr getDialogProperties (const string &name);
|
2005-10-20 11:15:00 +00:00
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Return a pointer to the current menubar.
|
|
|
|
*/
|
2003-01-16 18:06:27 +00:00
|
|
|
virtual FGMenuBar * getMenuBar ();
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Ignore this method.
|
|
|
|
*
|
|
|
|
* This method is for internal use only, but it has to be public
|
|
|
|
* so that a non-class callback can see it.
|
|
|
|
*/
|
|
|
|
virtual void setActiveDialog (FGDialog * dialog);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the dialog currently active, if any.
|
|
|
|
*
|
|
|
|
* @return The active dialog, or 0 if none is active.
|
|
|
|
*/
|
|
|
|
virtual FGDialog * getActiveDialog ();
|
|
|
|
|
2006-04-28 10:27:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the named dialog if active.
|
|
|
|
*
|
|
|
|
* @return The named dialog, or 0 if it isn't active.
|
|
|
|
*/
|
|
|
|
virtual FGDialog * getDialog (const string &name);
|
|
|
|
|
|
|
|
|
2005-07-18 09:18:24 +00:00
|
|
|
virtual FGColor *getColor (const char * name) const {
|
2005-10-14 16:25:14 +00:00
|
|
|
_citt_t it = _colors.find(name);
|
2005-07-18 10:00:02 +00:00
|
|
|
return (it != _colors.end()) ? it->second : NULL;
|
2005-07-18 09:18:24 +00:00
|
|
|
}
|
|
|
|
virtual FGColor *getColor (const string &name) const {
|
2005-10-14 16:25:14 +00:00
|
|
|
_citt_t it = _colors.find(name.c_str());
|
2005-07-18 10:00:02 +00:00
|
|
|
return (it != _colors.end()) ? it->second : NULL;
|
2005-07-18 09:18:24 +00:00
|
|
|
}
|
2005-07-08 20:12:06 +00:00
|
|
|
|
2006-01-26 21:40:37 +00:00
|
|
|
virtual puFont *getDefaultFont() { return _font; }
|
2005-07-07 21:28:15 +00:00
|
|
|
|
2005-07-18 09:18:24 +00:00
|
|
|
|
2003-01-18 21:11:51 +00:00
|
|
|
protected:
|
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
/**
|
|
|
|
* Test if the menubar is visible.
|
|
|
|
*
|
|
|
|
* This method exists only for binding.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual bool getMenuBarVisible () const;
|
2003-01-20 16:03:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show or hide the menubar.
|
|
|
|
*
|
|
|
|
* This method exists only for binding.
|
|
|
|
*/
|
2003-01-18 21:11:51 +00:00
|
|
|
virtual void setMenuBarVisible (bool visible);
|
|
|
|
|
2005-07-07 21:28:15 +00:00
|
|
|
virtual void setStyle ();
|
2005-07-13 10:16:42 +00:00
|
|
|
virtual void setupFont (SGPropertyNode *);
|
2002-12-22 19:52:26 +00:00
|
|
|
|
2005-11-09 17:16:59 +00:00
|
|
|
/**
|
|
|
|
* Used by reinit() and redraw() to close all dialogs and to apply
|
|
|
|
* current GUI colors. If "reload" is false, reopens all dialogs.
|
|
|
|
* Otherwise reloads all XML dialog files from disk and reopens all
|
|
|
|
* but Nasal * generated dialogs, omitting dynamic widgets. (This
|
|
|
|
* is only useful for GUI development.)
|
|
|
|
*/
|
|
|
|
virtual void reset (bool reload);
|
|
|
|
|
2002-11-08 15:24:14 +00:00
|
|
|
private:
|
2005-07-18 11:55:39 +00:00
|
|
|
struct ltstr
|
|
|
|
{
|
|
|
|
bool operator()(const char* s1, const char* s2) const {
|
|
|
|
return strcmp(s1, s2) < 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-01-26 21:40:37 +00:00
|
|
|
puFont *_font;
|
2005-07-18 11:55:39 +00:00
|
|
|
map<const char*,FGColor*, ltstr> _colors;
|
2005-10-14 16:25:14 +00:00
|
|
|
typedef map<const char*,FGColor*, ltstr>::iterator _itt_t;
|
|
|
|
typedef map<const char*,FGColor*, ltstr>::const_iterator _citt_t;
|
2002-11-08 15:24:14 +00:00
|
|
|
|
2005-11-09 17:16:59 +00:00
|
|
|
void clear_colors();
|
2003-01-21 15:44:21 +00:00
|
|
|
|
2003-01-20 16:03:09 +00:00
|
|
|
// Read all the configuration files in a directory.
|
2002-11-08 15:24:14 +00:00
|
|
|
void readDir (const char * path);
|
|
|
|
|
2003-01-16 18:06:27 +00:00
|
|
|
FGMenuBar * _menubar;
|
2003-01-20 16:03:09 +00:00
|
|
|
FGDialog * _active_dialog;
|
2003-12-08 02:05:10 +00:00
|
|
|
map<string,FGDialog *> _active_dialogs;
|
|
|
|
map<string,SGPropertyNode_ptr> _dialog_props;
|
2002-11-08 15:24:14 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2002-12-22 19:52:26 +00:00
|
|
|
|
2005-07-07 21:28:15 +00:00
|
|
|
class FGColor {
|
|
|
|
public:
|
2005-07-09 13:53:25 +00:00
|
|
|
FGColor() { clear(); }
|
|
|
|
FGColor(float r, float g, float b, float a = 1.0f) { set(r, g, b, a); }
|
|
|
|
FGColor(const SGPropertyNode *prop) { set(prop); }
|
2005-07-18 10:00:02 +00:00
|
|
|
FGColor(FGColor *c) {
|
|
|
|
if (c) set(c->_red, c->_green, c->_blue, c->_alpha);
|
|
|
|
}
|
2005-07-09 13:53:25 +00:00
|
|
|
|
|
|
|
inline void clear() { _red = _green = _blue = _alpha = -1.0f; }
|
|
|
|
// merges in non-negative components from property with children <red> etc.
|
2005-07-11 08:01:28 +00:00
|
|
|
bool merge(const SGPropertyNode *prop);
|
2005-07-18 10:00:02 +00:00
|
|
|
bool merge(const FGColor *color);
|
2005-07-09 13:53:25 +00:00
|
|
|
|
2005-07-11 08:01:28 +00:00
|
|
|
bool set(const SGPropertyNode *prop) { clear(); return merge(prop); };
|
2005-07-18 10:00:02 +00:00
|
|
|
bool set(const FGColor *color) { clear(); return merge(color); }
|
2005-07-11 08:01:28 +00:00
|
|
|
bool set(float r, float g, float b, float a = 1.0f) {
|
2005-07-12 16:48:16 +00:00
|
|
|
_red = r, _green = g, _blue = b, _alpha = a;
|
2005-07-11 08:01:28 +00:00
|
|
|
return true;
|
2005-07-09 13:53:25 +00:00
|
|
|
}
|
|
|
|
bool isValid() const {
|
2005-07-13 06:37:39 +00:00
|
|
|
return _red >= 0.0 && _green >= 0.0 && _blue >= 0.0;
|
2005-07-09 13:53:25 +00:00
|
|
|
}
|
2008-06-02 21:07:35 +00:00
|
|
|
void print() const;
|
2005-07-09 13:53:25 +00:00
|
|
|
|
2005-07-12 16:48:16 +00:00
|
|
|
inline void setRed(float red) { _red = red; }
|
|
|
|
inline void setGreen(float green) { _green = green; }
|
|
|
|
inline void setBlue(float blue) { _blue = blue; }
|
|
|
|
inline void setAlpha(float alpha) { _alpha = alpha; }
|
2005-07-09 13:53:25 +00:00
|
|
|
|
2005-07-12 16:48:16 +00:00
|
|
|
inline float red() const { return clamp(_red); }
|
|
|
|
inline float green() const { return clamp(_green); }
|
|
|
|
inline float blue() const { return clamp(_blue); }
|
2005-07-13 06:37:39 +00:00
|
|
|
inline float alpha() const { return _alpha < 0.0 ? 1.0 : clamp(_alpha); }
|
2005-07-07 21:28:15 +00:00
|
|
|
|
|
|
|
protected:
|
2005-07-09 13:53:25 +00:00
|
|
|
float _red, _green, _blue, _alpha;
|
2005-07-07 21:28:15 +00:00
|
|
|
|
|
|
|
private:
|
2005-07-12 16:48:16 +00:00
|
|
|
float clamp(float f) const { return f < 0.0 ? 0.0 : f > 1.0 ? 1.0 : f; }
|
2005-07-07 21:28:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-07-18 09:18:24 +00:00
|
|
|
|
|
|
|
/**
|
2008-06-06 19:02:17 +00:00
|
|
|
* A class to keep all fonts available for future use.
|
2005-07-18 09:18:24 +00:00
|
|
|
* This also assures a font isn't resident more than once.
|
|
|
|
*/
|
|
|
|
class FGFontCache {
|
|
|
|
private:
|
2008-06-06 19:02:17 +00:00
|
|
|
// The parameters of a request to the cache.
|
|
|
|
struct FntParams
|
|
|
|
{
|
|
|
|
const std::string name;
|
|
|
|
const float size;
|
|
|
|
const float slant;
|
|
|
|
FntParams() : size(0.0f), slant(0.0f) {}
|
|
|
|
FntParams(const FntParams& rhs)
|
|
|
|
: name(rhs.name), size(rhs.size), slant(rhs.slant)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
FntParams(const std::string& name_, float size_, float slant_)
|
|
|
|
: name(name_), size(size_), slant(slant_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct FntParamsLess
|
|
|
|
: public std::binary_function<const FntParams, const FntParams, bool>
|
|
|
|
{
|
|
|
|
bool operator() (const FntParams& f1, const FntParams& f2) const;
|
|
|
|
};
|
2006-01-26 21:40:37 +00:00
|
|
|
struct fnt {
|
|
|
|
fnt(puFont *pu = 0) : pufont(pu), texfont(0) {}
|
2006-06-22 08:35:50 +00:00
|
|
|
~fnt() { if (texfont) { delete pufont; delete texfont; } }
|
2008-06-06 19:02:17 +00:00
|
|
|
// Font used by plib GUI code
|
2006-01-26 21:40:37 +00:00
|
|
|
puFont *pufont;
|
2008-06-06 19:02:17 +00:00
|
|
|
// TXF font
|
2006-01-26 21:40:37 +00:00
|
|
|
fntTexFont *texfont;
|
|
|
|
};
|
2008-06-06 19:02:17 +00:00
|
|
|
// Path to the font directory
|
2005-07-18 09:18:24 +00:00
|
|
|
SGPath _path;
|
|
|
|
|
2008-06-06 19:02:17 +00:00
|
|
|
typedef map<const string, fntTexFont*> TexFontMap;
|
|
|
|
typedef map<const FntParams, fnt*, FntParamsLess> PuFontMap;
|
|
|
|
TexFontMap _texFonts;
|
|
|
|
PuFontMap _puFonts;
|
|
|
|
|
2006-06-05 20:23:56 +00:00
|
|
|
bool _initialized;
|
2006-06-06 12:49:42 +00:00
|
|
|
struct fnt *getfnt(const char *name, float size, float slant);
|
2008-06-06 19:02:17 +00:00
|
|
|
void init();
|
2005-07-18 09:18:24 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
FGFontCache();
|
|
|
|
~FGFontCache();
|
|
|
|
|
|
|
|
puFont *get(const char *name, float size=15.0, float slant=0.0);
|
|
|
|
puFont *get(SGPropertyNode *node);
|
2006-06-06 12:49:42 +00:00
|
|
|
|
|
|
|
fntTexFont *getTexFont(const char *name, float size=15.0, float slant=0.0);
|
2007-05-03 18:12:29 +00:00
|
|
|
|
|
|
|
SGPath getfntpath(const char *name);
|
2008-06-06 19:02:17 +00:00
|
|
|
/**
|
|
|
|
* Preload all the fonts in the FlightGear font directory. It is
|
|
|
|
* important to load the font textures early, with the proper
|
|
|
|
* graphics context current, so that no plib (or our own) code
|
|
|
|
* tries to load a font from disk when there's no current graphics
|
|
|
|
* context.
|
|
|
|
*/
|
|
|
|
bool initializeFonts();
|
2005-07-18 09:18:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-11-07 16:27:47 +00:00
|
|
|
#endif // __NEW_GUI_HXX
|
2002-11-08 16:33:00 +00:00
|
|
|
|