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-12 23:13:58 +00:00
|
|
|
public:
|
2008-06-12 19:06:37 +00:00
|
|
|
ThemeParser() {}
|
|
|
|
~ThemeParser() {}
|
|
|
|
|
|
|
|
enum ParserState {
|
|
|
|
kParserKeyNeedName,
|
|
|
|
kParserKeyNeedToken,
|
|
|
|
kParserKeyNeedSubkey,
|
|
|
|
kParserNeedKey,
|
|
|
|
kParserInComment,
|
2008-06-12 23:13:58 +00:00
|
|
|
kParserError,
|
|
|
|
kParserSuccess
|
2008-06-12 19:06:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool parseDrawData();
|
2008-06-12 23:13:58 +00:00
|
|
|
void parseKeyValue(Common::String &key_name);
|
|
|
|
void parseActiveKey(bool closed);
|
2008-06-12 19:06:37 +00:00
|
|
|
void parserError(const char *error_string);
|
2008-06-12 23:13:58 +00:00
|
|
|
|
|
|
|
void debug_testEval();
|
2008-06-12 19:06:37 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
int _pos;
|
|
|
|
char *_text;
|
|
|
|
|
|
|
|
ParserState _state;
|
|
|
|
|
|
|
|
Common::String _error;
|
|
|
|
Common::String _token;
|
2008-06-12 23:13:58 +00:00
|
|
|
|
|
|
|
Common::FixedStack<Common::String, 5> _activeKey;
|
|
|
|
Common::StringMap _keyValues;
|
2008-06-12 19:06:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-06-12 23:13:58 +00:00
|
|
|
#endif
|