2013-08-14 12:16:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "pugiXML/pugixml.hpp"
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include "GuiComponent.h"
|
2013-09-28 17:51:16 +00:00
|
|
|
#include <boost/date_time.hpp>
|
2013-08-14 12:16:49 +00:00
|
|
|
|
|
|
|
enum MetaDataType
|
|
|
|
{
|
|
|
|
//generic types
|
|
|
|
MD_STRING,
|
|
|
|
MD_INT,
|
|
|
|
MD_FLOAT,
|
|
|
|
|
|
|
|
//specialized types
|
2013-08-18 14:16:11 +00:00
|
|
|
MD_MULTILINE_STRING,
|
2013-08-14 12:16:49 +00:00
|
|
|
MD_IMAGE_PATH,
|
|
|
|
MD_RATING,
|
|
|
|
MD_TIME
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MetaDataDecl
|
|
|
|
{
|
|
|
|
std::string key;
|
|
|
|
MetaDataType type;
|
|
|
|
std::string defaultValue;
|
2013-09-28 17:51:16 +00:00
|
|
|
bool isStatistic; //if true, ignore scraper values for this metadata
|
2013-08-14 12:16:49 +00:00
|
|
|
};
|
|
|
|
|
2013-09-28 17:51:16 +00:00
|
|
|
boost::posix_time::ptime string_to_ptime(const std::string& str, const std::string& fmt);
|
|
|
|
|
2013-08-14 12:16:49 +00:00
|
|
|
class MetaDataList
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static std::vector<MetaDataDecl> getDefaultGameMDD();
|
|
|
|
|
|
|
|
static MetaDataList createFromXML(const std::vector<MetaDataDecl>& mdd, pugi::xml_node node);
|
|
|
|
|
|
|
|
//MetaDataDecl required to set our defaults.
|
|
|
|
MetaDataList(const std::vector<MetaDataDecl>& mdd);
|
|
|
|
|
|
|
|
void set(const std::string& key, const std::string& value);
|
2013-09-28 17:51:16 +00:00
|
|
|
void setTime(const std::string& key, const boost::posix_time::ptime& time);
|
|
|
|
|
2013-08-14 12:16:49 +00:00
|
|
|
const std::string& get(const std::string& key) const;
|
|
|
|
int getInt(const std::string& key) const;
|
|
|
|
float getFloat(const std::string& key) const;
|
2013-09-28 17:51:16 +00:00
|
|
|
boost::posix_time::ptime getTime(const std::string& key) const;
|
2013-08-14 12:16:49 +00:00
|
|
|
|
2013-08-18 14:16:11 +00:00
|
|
|
static GuiComponent* makeDisplay(Window* window, MetaDataType as);
|
|
|
|
static GuiComponent* makeEditor(Window* window, MetaDataType as);
|
2013-08-14 12:16:49 +00:00
|
|
|
|
|
|
|
void appendToXML(pugi::xml_node parent, const std::vector<MetaDataDecl>& ignoreDefaults = std::vector<MetaDataDecl>()) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
MetaDataList();
|
|
|
|
|
|
|
|
std::map<std::string, std::string> mMap;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//options for storing metadata...
|
|
|
|
//store internally everything as a string - this is all going to be read to/from XML anyway, after all
|
|
|
|
//store using individual get/set functions ala Settings - this is a fair amount of work but the most explicit, for better or worse
|
|
|
|
|
|
|
|
//let's think about some of the special types we would like to support...
|
|
|
|
//image paths, sound paths, ratings, play counts
|
|
|
|
//these get represented behind-the-scenes as strings, floats, and integers, and are eventually saved as strings
|
|
|
|
//the only specialty is how they're edited and viewed, really
|
|
|
|
|
|
|
|
//so we need...
|
|
|
|
//to be able to iterate through the available metadata
|
|
|
|
//create components designed to either DISPLAY or EDIT a given piece of metadata
|
|
|
|
//save and load metadata
|