2015-12-03 00:37:02 +00:00
|
|
|
/************************************************************************
|
2015-12-03 00:37:37 +00:00
|
|
|
* Copyright (c) 2005-2007 tok@openlinux.org.uk *
|
2015-12-03 00:37:02 +00:00
|
|
|
* *
|
|
|
|
* This software is provided as-is, without any express or implied *
|
|
|
|
* warranty. In no event will the authors be held liable for any *
|
|
|
|
* damages arising from the use of this software. *
|
|
|
|
* *
|
|
|
|
* Permission is granted to anyone to use this software for any purpose, *
|
|
|
|
* including commercial applications, and to alter it and redistribute *
|
|
|
|
* it freely, subject to the following restrictions: *
|
|
|
|
* *
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must *
|
|
|
|
* not claim that you wrote the original software. If you use this *
|
|
|
|
* software in a product, an acknowledgment in the product documentation *
|
|
|
|
* would be appreciated but is not required. *
|
|
|
|
* *
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must *
|
|
|
|
* not be misrepresented as being the original software. *
|
|
|
|
* *
|
|
|
|
* 3. This notice may not be removed or altered from any source *
|
|
|
|
* distribution. *
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef STYLE_HOLDER_H
|
|
|
|
#define STYLE_HOLDER_H
|
|
|
|
#include <string>
|
|
|
|
#include "opengta.h"
|
|
|
|
#include "m_exceptions.h"
|
|
|
|
#include "Singleton.h"
|
|
|
|
|
|
|
|
namespace OpenGTA {
|
2015-12-03 00:37:37 +00:00
|
|
|
/** Wrapper around resource-holding classes.
|
|
|
|
* - you have to call 'load' before 'get'
|
|
|
|
*
|
|
|
|
* - you may call load repeatedly
|
|
|
|
*/
|
2015-12-03 00:37:02 +00:00
|
|
|
template <class T>
|
|
|
|
class ActiveData {
|
|
|
|
public:
|
|
|
|
ActiveData();
|
|
|
|
~ActiveData();
|
|
|
|
T & get();
|
|
|
|
void load(const std::string & file);
|
|
|
|
private:
|
|
|
|
void unload();
|
|
|
|
T* m_data;
|
|
|
|
};
|
|
|
|
|
2015-12-03 00:37:37 +00:00
|
|
|
/** The wrapper around the GRY/G24 data interface.
|
|
|
|
*/
|
2015-12-03 00:37:02 +00:00
|
|
|
typedef ActiveData< GraphicsBase > ActiveStyle;
|
2015-12-03 00:37:37 +00:00
|
|
|
/** The wrapper around the map data interface.
|
|
|
|
*/
|
2015-12-03 00:37:02 +00:00
|
|
|
typedef ActiveData< Map > ActiveMap;
|
2015-12-03 00:37:37 +00:00
|
|
|
/** The wrapper around the message-string data interface.
|
|
|
|
*/
|
|
|
|
typedef ActiveData< MessageDB > MainMsgLookup;
|
2015-12-03 00:37:02 +00:00
|
|
|
|
2015-12-03 00:37:37 +00:00
|
|
|
/** Singleton: Graphics
|
|
|
|
*/
|
2018-09-23 05:57:34 +00:00
|
|
|
typedef Loki::SingletonHolder< ActiveStyle> StyleHolder;
|
2015-12-03 00:37:37 +00:00
|
|
|
/** Singleton: Map
|
|
|
|
*/
|
2018-09-23 05:57:34 +00:00
|
|
|
typedef Loki::SingletonHolder< ActiveMap> MapHolder;
|
2015-12-03 00:37:37 +00:00
|
|
|
/** Singleton: Message strings
|
|
|
|
*/
|
2018-09-23 05:57:34 +00:00
|
|
|
typedef Loki::SingletonHolder< MainMsgLookup> MainMsgHolder;
|
2015-12-03 00:37:37 +00:00
|
|
|
|
|
|
|
|
2015-12-03 00:37:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|