2008-06-12 19:06:37 +00:00
|
|
|
/* 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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef THEME_PARSER_H
|
|
|
|
#define THEME_PARSER_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "graphics/surface.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
|
2008-06-12 23:13:58 +00:00
|
|
|
#include "common/hashmap.h"
|
|
|
|
#include "common/hash-str.h"
|
|
|
|
#include "common/stack.h"
|
|
|
|
|
2008-06-12 19:06:37 +00:00
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
class ThemeParser {
|
|
|
|
|
2008-06-13 17:47:56 +00:00
|
|
|
static const int kParserMaxDepth = 4;
|
|
|
|
typedef void (ThemeParser::*ParserCallback)();
|
2008-06-13 09:24:41 +00:00
|
|
|
|
2008-06-12 23:13:58 +00:00
|
|
|
public:
|
2008-06-13 09:24:41 +00:00
|
|
|
ThemeParser() {
|
|
|
|
_callbacks["drawdata"] = &ThemeParser::parserCallback_DRAWDATA;
|
|
|
|
_callbacks["draw"] = &ThemeParser::parserCallback_DRAW;
|
|
|
|
}
|
|
|
|
|
2008-06-12 19:06:37 +00:00
|
|
|
~ThemeParser() {}
|
|
|
|
|
|
|
|
enum ParserState {
|
|
|
|
kParserNeedKey,
|
2008-06-13 09:39:13 +00:00
|
|
|
kParserNeedKeyName,
|
2008-06-13 22:05:21 +00:00
|
|
|
|
|
|
|
kParserNeedPropertyName,
|
|
|
|
kParserNeedPropertyOperator,
|
|
|
|
kParserNeedPropertyValue,
|
|
|
|
|
2008-06-13 09:39:13 +00:00
|
|
|
kParserError
|
2008-06-12 19:06:37 +00:00
|
|
|
};
|
|
|
|
|
2008-06-13 09:24:41 +00:00
|
|
|
bool parse();
|
2008-06-12 23:13:58 +00:00
|
|
|
void debug_testEval();
|
2008-06-12 19:06:37 +00:00
|
|
|
|
|
|
|
protected:
|
2008-06-13 09:24:41 +00:00
|
|
|
void parserCallback_DRAW();
|
|
|
|
void parserCallback_DRAWDATA();
|
|
|
|
|
2008-06-14 17:45:26 +00:00
|
|
|
bool parseKeyValue(Common::String keyName);
|
2008-06-13 22:05:21 +00:00
|
|
|
void parseActiveKey(bool closed);
|
2008-06-14 17:45:26 +00:00
|
|
|
void parserError(const char *errorString);
|
2008-06-13 22:05:21 +00:00
|
|
|
|
|
|
|
inline bool skipSpaces() {
|
|
|
|
if (!isspace(_text[_pos]))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
while (_text[_pos] && isspace(_text[_pos]))
|
2008-06-13 09:39:13 +00:00
|
|
|
_pos++;
|
2008-06-13 22:05:21 +00:00
|
|
|
|
|
|
|
return true;
|
2008-06-13 09:39:13 +00:00
|
|
|
}
|
|
|
|
|
2008-06-13 17:47:56 +00:00
|
|
|
inline bool skipComments() {
|
2008-06-13 09:39:13 +00:00
|
|
|
if (_text[_pos] == '/' && _text[_pos + 1] == '*') {
|
|
|
|
_pos += 2;
|
|
|
|
while (_text[_pos++]) {
|
|
|
|
if (_text[_pos - 2] == '*' && _text[_pos - 1] == '/')
|
|
|
|
break;
|
|
|
|
}
|
2008-06-13 17:47:56 +00:00
|
|
|
return true;
|
2008-06-13 09:39:13 +00:00
|
|
|
}
|
2008-06-13 17:47:56 +00:00
|
|
|
return false;
|
2008-06-13 09:39:13 +00:00
|
|
|
}
|
|
|
|
|
2008-06-13 22:05:21 +00:00
|
|
|
inline bool isValidNameChar(char c) {
|
|
|
|
return isalnum(c) || c == '_';
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool parseToken() {
|
|
|
|
_token.clear();
|
|
|
|
while (isValidNameChar(_text[_pos]))
|
|
|
|
_token += _text[_pos++];
|
|
|
|
|
2008-06-14 16:14:50 +00:00
|
|
|
return isspace(_text[_pos]) != 0 || _text[_pos] == '>';
|
2008-06-13 22:05:21 +00:00
|
|
|
}
|
|
|
|
|
2008-06-12 19:06:37 +00:00
|
|
|
int _pos;
|
|
|
|
char *_text;
|
|
|
|
|
|
|
|
ParserState _state;
|
|
|
|
|
|
|
|
Common::String _error;
|
|
|
|
Common::String _token;
|
2008-06-12 23:13:58 +00:00
|
|
|
|
2008-06-13 17:47:56 +00:00
|
|
|
Common::FixedStack<Common::String, kParserMaxDepth> _activeKey;
|
|
|
|
Common::FixedStack<Common::StringMap, kParserMaxDepth> _keyValues;
|
2008-06-13 09:24:41 +00:00
|
|
|
|
2008-06-13 17:47:56 +00:00
|
|
|
Common::HashMap<Common::String, ParserCallback, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> _callbacks;
|
2008-06-12 19:06:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-06-12 23:13:58 +00:00
|
|
|
#endif
|