parser.h
上传用户:qccn516
上传日期:2013-05-02
资源大小:3382k
文件大小:2k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /* Parser
  2.  *
  3.  * Copyright (C) 2003-2004, Alexander Zaprjagaev <frustum@frustum.org>
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  */
  19. #ifndef __PARSER_H__
  20. #define __PARSER_H__
  21. #include <string>
  22. #include <map>
  23. class Parser {
  24. public:
  25. Parser(const char *name);
  26. ~Parser();
  27. char *get(const char *name);
  28. static int read_string(const char *str,char *dest);
  29. static float expression(const char *str,const char *variable = NULL,float value = 0.0);
  30. static const char *interpret(const char *src);
  31. protected:
  32. static int  priority(char op);
  33. static int read_token(const char *src,char *dest);
  34. static int interpret_eq(const char *src);
  35. static int interpret_if(const char *src,char **dest);
  36. static int interpret_for(const char *src,char **dest);
  37. static int interpret_main(const char *src,char **dest);
  38. char *data;
  39. struct Block {
  40. char *pointer;
  41. int use;
  42. };
  43. std::map<std::string,Block> blocks;
  44. static float variables[26];
  45. };
  46. #endif /* __PARSER_H__ */