doc_data.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*************************************************************************/
  2. /* doc_data.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* http://www.godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  9. /* */
  10. /* Permission is hereby granted, free of charge, to any person obtaining */
  11. /* a copy of this software and associated documentation files (the */
  12. /* "Software"), to deal in the Software without restriction, including */
  13. /* without limitation the rights to use, copy, modify, merge, publish, */
  14. /* distribute, sublicense, and/or sell copies of the Software, and to */
  15. /* permit persons to whom the Software is furnished to do so, subject to */
  16. /* the following conditions: */
  17. /* */
  18. /* The above copyright notice and this permission notice shall be */
  19. /* included in all copies or substantial portions of the Software. */
  20. /* */
  21. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  22. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  23. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  24. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  25. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  26. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  27. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  28. /*************************************************************************/
  29. #ifndef DOC_DATA_H
  30. #define DOC_DATA_H
  31. #include "variant.h"
  32. #include "map.h"
  33. #include "io/xml_parser.h"
  34. class DocData {
  35. public:
  36. struct ArgumentDoc {
  37. String name;
  38. String type;
  39. String default_value;
  40. };
  41. struct MethodDoc {
  42. String name;
  43. String return_type;
  44. String qualifiers;
  45. String description;
  46. Vector<ArgumentDoc> arguments;
  47. };
  48. struct ConstantDoc {
  49. String name;
  50. String value;
  51. String description;
  52. };
  53. struct PropertyDoc {
  54. String name;
  55. String type;
  56. String description;
  57. };
  58. struct ClassDoc {
  59. String name;
  60. String inherits;
  61. String category;
  62. String brief_description;
  63. String description;
  64. Vector<MethodDoc> methods;
  65. Vector<MethodDoc> signals;
  66. Vector<ConstantDoc> constants;
  67. Vector<PropertyDoc> properties;
  68. };
  69. String version;
  70. Map<String,ClassDoc> class_list;
  71. Error _load(Ref<XMLParser> parser);
  72. public:
  73. void merge_from(const DocData& p_data);
  74. void generate(bool p_basic_types=false);
  75. Error load(const String& p_path);
  76. Error save(const String& p_path);
  77. Error load_compressed(const uint8_t *p_data, int p_compressed_size, int p_uncompressed_size);
  78. };
  79. #endif // DOC_DATA_H