InterfaceManager now loads themes.

svn-id: r32800
This commit is contained in:
Vicent Marti 2008-06-26 13:50:16 +00:00
parent 3ae28530ef
commit 0cd183b94b
10 changed files with 116 additions and 70 deletions

View file

@ -72,8 +72,6 @@ static bool launcherDialog(OSystem &system) {
#if 1 #if 1
GUI::ThemeParser parser;
parser.debug_testEval();
g_InterfaceManager.runGUI(); g_InterfaceManager.runGUI();
return true; return true;

View file

@ -34,25 +34,6 @@ namespace Common {
using namespace Graphics; using namespace Graphics;
void XMLParser::debug_testEval() {
static const char *debugConfigText =
"<render_info>\n"
"<palette>\n"
"<color name = \"red\" rgb = \"255, 255, 255\"/>\n"
"</palette>\n"
"<drawdata id = \"mainmenu_bg\" cache = true>\n"
"<drawstep func = \"roundedsq\" radius = 23 fill = \"none\" color = \"0, 1, 2\" size = \"auto\" />\n"
"<drawstep func = \"roundedsq\" radius = 15 fill = \"none\" color = \"red\" size = \"auto\"/>\n"
"</drawdata>/* lol this is just a simple test*/\n"
"</render_info>";
loadBuffer(debugConfigText);
_fileName = "test_parse.xml";
parse();
}
bool XMLParser::parserError(const char *errorString, ...) { bool XMLParser::parserError(const char *errorString, ...) {
_state = kParserError; _state = kParserError;

View file

@ -120,23 +120,45 @@ public:
int depth; int depth;
}; };
/**
* Loads a file into the parser.
* Used for the loading of Theme Description files
* straight from the filesystem.
*
* @param filename Name of the file to load.
*/
virtual bool loadFile(Common::String filename) { virtual bool loadFile(Common::String filename) {
Common::File *f = new Common::File; Common::File *f = new Common::File;
if (!f->open(filename, Common::File::kFileReadMode)) if (!f->open(filename, Common::File::kFileReadMode))
return false; return false;
_fileName = filename;
_text.loadStream(f); _text.loadStream(f);
return true; return true;
} }
/**
* Loads a memory buffer into the parser.
* Used for loading the default theme fallback directly
* from memory if no themes can be found.
*
* @param buffer Pointer to the buffer.
* @param disposable Sets if the XMLParser owns the buffer,
* i.e. if it can be freed safely after it's
* no longer needed by the parser.
*/
virtual bool loadBuffer(const char *buffer, bool disposable = false) { virtual bool loadBuffer(const char *buffer, bool disposable = false) {
_text.loadStream(new MemoryReadStream((const byte*)buffer, strlen(buffer), disposable)); _text.loadStream(new MemoryReadStream((const byte*)buffer, strlen(buffer), disposable));
_fileName = "Memory Stream";
return true; return true;
} }
/**
* The actual parsing function.
* Parses the loaded data stream, returns true if successful.
*/
virtual bool parse(); virtual bool parse();
void debug_testEval();
/** /**
* Returns the active node being parsed (the one on top of * Returns the active node being parsed (the one on top of

View file

@ -1224,6 +1224,10 @@
RelativePath="..\..\gui\ThemeClassic.cpp" RelativePath="..\..\gui\ThemeClassic.cpp"
> >
</File> </File>
<File
RelativePath="..\..\gui\ThemeDefaultXML.cpp"
>
</File>
<File <File
RelativePath="..\..\gui\ThemeModern.cpp" RelativePath="..\..\gui\ThemeModern.cpp"
> >
@ -1231,13 +1235,6 @@
<File <File
RelativePath="..\..\gui\ThemeParser.cpp" RelativePath="..\..\gui\ThemeParser.cpp"
> >
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File> </File>
<File <File
RelativePath="..\..\gui\ThemeParser.h" RelativePath="..\..\gui\ThemeParser.h"

View file

@ -132,10 +132,12 @@ bool InterfaceManager::addDrawData(DrawData data_id, bool cached) {
return true; return true;
} }
bool InterfaceManager::loadTheme(Common::String &themeName) { bool InterfaceManager::loadTheme(Common::String themeName) {
if (!loadThemeXML(themeName)) { if (!loadThemeXML(themeName)) {
warning("Could not parse custom theme '%s'.", themeName.c_str()); warning("Could not parse custom theme '%s'.\nFalling back to default theme", themeName.c_str());
return false;
if (!loadDefaultXML()) // if we can't load the embeded theme, this is a complete failure
error("Could not load default embeded theme.");
} }
for (int i = 0; i < kDrawDataMAX; ++i) { for (int i = 0; i < kDrawDataMAX; ++i) {
@ -153,7 +155,7 @@ bool InterfaceManager::loadTheme(Common::String &themeName) {
return true; return true;
} }
bool InterfaceManager::loadThemeXML(Common::String &themeName) { bool InterfaceManager::loadThemeXML(Common::String themeName) {
assert(_parser); assert(_parser);
if (ConfMan.hasKey("themepath")) if (ConfMan.hasKey("themepath"))
@ -254,57 +256,28 @@ void InterfaceManager::drawScrollbar(const Common::Rect &r, int sliderY, int sli
int InterfaceManager::runGUI() { int InterfaceManager::runGUI() {
Common::EventManager *eventMan = _system->getEventManager(); Common::EventManager *eventMan = _system->getEventManager();
loadTheme("modern_theme.xml");
_system->showOverlay(); _system->showOverlay();
Graphics::DrawStep *steps = new Graphics::DrawStep[5]; Graphics::DrawStep *steps = new Graphics::DrawStep[2];
steps[0].gradColor1.r = 214; steps[0].gradColor1.r = 214;
steps[0].gradColor1.g = 113; steps[0].gradColor1.g = 113;
steps[0].gradColor1.b = 8; steps[0].gradColor1.b = 8;
steps[0].gradColor1.set = true;
steps[0].gradColor2.r = 240; steps[0].gradColor2.r = 240;
steps[0].gradColor2.g = 200; steps[0].gradColor2.g = 200;
steps[0].gradColor2.b = 25; steps[0].gradColor2.b = 25;
steps[0].gradColor2.set = true;
steps[0].fillMode = VectorRenderer::kFillGradient; steps[0].fillMode = VectorRenderer::kFillGradient;
steps[0].drawingCall = &VectorRenderer::drawCallback_FILLSURFACE; steps[0].drawingCall = &VectorRenderer::drawCallback_FILLSURFACE;
steps[1].gradColor1.r = 206;
steps[1].gradColor1.g = 121;
steps[1].gradColor1.b = 99;
steps[1].gradColor2.r = 173;
steps[1].gradColor2.g = 40;
steps[1].gradColor2.b = 8;
steps[1].radius = 8; // radius
steps[1].fillArea = true;
steps[1].drawingCall = &VectorRenderer::drawCallback_ROUNDSQ;
steps[1].scale = (1 << 16);
steps[2].radius = 8; // radius
steps[2].fillArea = false;
steps[2].x.relative = true;
steps[2].x.pos = 32;
steps[2].y.relative = false;
steps[2].y.pos = 32;
steps[2].w = 128;
steps[2].h = 32;
steps[2].drawingCall = &VectorRenderer::drawCallback_ROUNDSQ;
steps[2].scale = (1 << 16);
steps[3].fgColor.r = 255;
steps[3].fgColor.g = 255;
steps[3].fgColor.b = 255;
steps[3].drawingCall = &VectorRenderer::drawCallback_VOID;
Common::Rect area = Common::Rect(32, 32, 256, 256);
bool running = true; bool running = true;
while (running) { // draw!! while (running) { // draw!!
_vectorRenderer->drawStep(Common::Rect(), steps[0]); _vectorRenderer->drawStep(Common::Rect(), steps[0]);
_vectorRenderer->drawStep(Common::Rect(), steps[3]);
_vectorRenderer->drawStep(area, steps[1]);
_vectorRenderer->drawStep(area, steps[2]);
// _vectorRenderer->drawStep(Common::Rect(32, 32, 256, 256), &steps[3]);
_vectorRenderer->copyFrame(_system); _vectorRenderer->copyFrame(_system);
Common::Event event; Common::Event event;

View file

@ -190,12 +190,13 @@ public:
return _initOk && _themeOk; return _initOk && _themeOk;
} }
bool loadTheme(Common::String &themeName); bool loadTheme(Common::String themeName);
protected: protected:
template<typename PixelType> void screenInit(); template<typename PixelType> void screenInit();
bool loadThemeXML(Common::String &themeName); bool loadThemeXML(Common::String themeName);
bool loadDefaultXML();
void freeRenderer() { void freeRenderer() {
delete _vectorRenderer; delete _vectorRenderer;
@ -232,6 +233,8 @@ protected:
bool _initOk; bool _initOk;
bool _themeOk; bool _themeOk;
bool _caching; bool _caching;
static const char *_defaultXML;
}; };
struct WidgetDrawData { struct WidgetDrawData {

57
gui/ThemeDefaultXML.cpp Normal file
View file

@ -0,0 +1,57 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU 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.
*
* $URL$
* $Id$
*
*/
#include "common/system.h"
#include "gui/InterfaceManager.h"
namespace GUI {
bool InterfaceManager::loadDefaultXML() {
const char *defaultXML =
/**
* Default theme description file. Work in progress.
* Newlines are not necessary, parser ignores them.
* You may use single quotes (') instead of scaped double quotes.
* Remember to indent properly the XML so it's easier to read and
* to maintain!
*/
"<render_info>"
"<palette>"
"<color name = 'red' rgb = '255, 0, 0' />"
"<color name = 'green' rgb = '0, 255, 0' />"
"<color name = 'blue' rgb = '0, 0, 255' />"
"</palette>"
"<drawdata id = 'mainmenu_bg' cache = false>"
"<drawstep func = 'roundedsq' radius = 8 fill = 'none' color = '0, 1, 2' size = 'auto' />"
"</drawdata>"
"</render_info>";
if (!parser()->loadBuffer(defaultXML, true))
return false;
return parser()->parse();
}
}

View file

@ -45,6 +45,7 @@ ThemeParser::ThemeParser() : XMLParser() {
_callbacks["palette"] = &ThemeParser::parserCallback_palette; _callbacks["palette"] = &ThemeParser::parserCallback_palette;
_callbacks["color"] = &ThemeParser::parserCallback_color; _callbacks["color"] = &ThemeParser::parserCallback_color;
_callbacks["render_info"] = &ThemeParser::parserCallback_renderInfo; _callbacks["render_info"] = &ThemeParser::parserCallback_renderInfo;
_callbacks["layout_info"] = &ThemeParser::parserCallback_layoutInfo;
_drawFunctions["circle"] = &Graphics::VectorRenderer::drawCallback_CIRCLE; _drawFunctions["circle"] = &Graphics::VectorRenderer::drawCallback_CIRCLE;
_drawFunctions["square"] = &Graphics::VectorRenderer::drawCallback_SQUARE; _drawFunctions["square"] = &Graphics::VectorRenderer::drawCallback_SQUARE;
@ -97,6 +98,17 @@ bool ThemeParser::parserCallback_renderInfo() {
return true; return true;
} }
bool ThemeParser::parserCallback_layoutInfo() {
ParserNode *layoutNode = getActiveNode();
assert(layoutNode->name == "layout_info");
if (getParentNode(layoutNode) != 0)
return parserError("<layout_info> keys must be root elements.");
return true;
}
bool ThemeParser::parserCallback_palette() { bool ThemeParser::parserCallback_palette() {
ParserNode *paletteNode = getActiveNode(); ParserNode *paletteNode = getActiveNode();

View file

@ -323,6 +323,8 @@ protected:
bool parserCallback_palette(); bool parserCallback_palette();
bool parserCallback_color(); bool parserCallback_color();
bool parserCallback_renderInfo(); bool parserCallback_renderInfo();
bool parserCallback_layoutInfo();
bool validateKeyIntSigned(const char *key) { bool validateKeyIntSigned(const char *key) {
if (!isdigit(*key) && *key != '+' && *key != '-') if (!isdigit(*key) && *key != '+' && *key != '-')

View file

@ -25,6 +25,7 @@ MODULE_OBJS := \
widget.o \ widget.o \
theme.o \ theme.o \
ThemeClassic.o \ ThemeClassic.o \
ThemeDefaultXML.o \
ThemeModern.o \ ThemeModern.o \
ThemeParser.o \ ThemeParser.o \
theme-config.o theme-config.o