You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

195 line
6.5 KiB

  1. %{
  2. //
  3. // Lol Engine
  4. //
  5. // Copyright: (c) 2010-2013 Sam Hocevar <sam@hocevar.net>
  6. // (c) 2009-2013 Cédric Lecacheur <jordx@free.fr>
  7. // (c) 2009-2013 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
  8. // This program is free software; you can redistribute it and/or
  9. // modify it under the terms of the Do What The Fuck You Want To
  10. // Public License, Version 2, as published by Sam Hocevar. See
  11. // http://www.wtfpl.net/ for more details.
  12. //
  13. #if defined HAVE_CONFIG_H
  14. # include "config.h"
  15. #endif
  16. #include "core.h"
  17. #include "easymesh/easymesh.h"
  18. #include <string>
  19. %}
  20. %require "2.3"
  21. %debug
  22. %defines
  23. %skeleton "lalr1.cc"
  24. %name-prefix="lol"
  25. %define parser_class_name "EasyMeshParser"
  26. %locations
  27. %parse-param { class EasyMeshCompiler& mc }
  28. %error-verbose
  29. %union
  30. {
  31. float fval;
  32. /* Can't use uin32_t here for some reason */
  33. unsigned u32val;
  34. struct { float f0, f1, f2, f3, f4, f5, f6, f7, f8, f9; } args;
  35. }
  36. %start mesh_description
  37. %token T_COLOR T_BGCOLOR
  38. %token T_TRANSLATEX T_ROTATEX T_TAPERX T_SCALEX T_MIRRORX
  39. %token T_TRANSLATEY T_ROTATEY T_TAPERY T_SCALEY T_MIRRORY
  40. %token T_TRANSLATEZ T_ROTATEZ T_TAPERZ T_SCALEZ T_MIRRORZ
  41. %token T_TRANSLATE T_SCALE T_TOGGLESCALEWINDING T_RADIALJITTER
  42. %token T_CSGUNION T_CSGSUBSTRACT T_CSGAND T_CSGXOR
  43. %token T_CHAMFER
  44. %token T_CYLINDER T_BOX T_SMOOTHCHAMFBOX T_FLATCHAMFBOX T_SPHERE T_CAPSULE
  45. %token T_STAR T_EXPANDEDSTAR T_DISC T_TRIANGLE T_QUAD T_COG T_TORUS
  46. %token T_END 0
  47. %token T_ERROR
  48. %token <fval> NUMBER
  49. %token <u32val> COLOR
  50. %type <fval> number
  51. %type <args> args1 args2 args3 args4 args5 args6 args7 args8 args9 args10
  52. %{
  53. #include "easymesh/easymesh-compiler.h"
  54. #undef yylex
  55. #define yylex mc.m_lexer->lex
  56. %}
  57. %%
  58. mesh_description:
  59. mesh_expression_list T_END
  60. ;
  61. mesh_expression_list:
  62. mesh_expression
  63. | mesh_expression mesh_expression_list
  64. ;
  65. mesh_expression:
  66. mesh_command_list
  67. | mesh_open mesh_expression_list mesh_close
  68. ;
  69. mesh_open:
  70. '[' { mc.m_mesh.OpenBrace(); }
  71. ;
  72. mesh_close:
  73. ']' { mc.m_mesh.CloseBrace(); }
  74. ;
  75. mesh_command_list:
  76. mesh_command
  77. | mesh_command_list mesh_command
  78. ;
  79. mesh_command:
  80. color_command
  81. | transform_command
  82. | primitive_command
  83. ;
  84. color_command:
  85. T_COLOR args4 { mc.m_mesh.SetCurColor(vec4($2.f0, $2.f1, $2.f2, $2.f3)); }
  86. | T_COLOR COLOR { uint32_t x = $2;
  87. vec4 v(x >> 24, (x >> 16) & 0xff, (x >> 8) & 0xff, x & 0xff);
  88. mc.m_mesh.SetCurColor(vec4(v) * (1.f / 255)); }
  89. | T_BGCOLOR args4 { mc.m_mesh.SetCurColor2(vec4($2.f0, $2.f1, $2.f2, $2.f3)); }
  90. | T_BGCOLOR COLOR { uint32_t x = $2;
  91. vec4 v(x >> 24, (x >> 16) & 0xff, (x >> 8) & 0xff, x & 0xff);
  92. mc.m_mesh.SetCurColor2(vec4(v) * (1.f / 255)); }
  93. ;
  94. transform_command:
  95. T_CHAMFER args1 { mc.m_mesh.Chamfer($2.f0); }
  96. | T_TRANSLATEX args1 { mc.m_mesh.Translate(vec3($2.f0, 0, 0)); }
  97. | T_TRANSLATEY args1 { mc.m_mesh.Translate(vec3(0, $2.f0, 0)); }
  98. | T_TRANSLATEZ args1 { mc.m_mesh.Translate(vec3(0, 0, $2.f0)); }
  99. | T_TRANSLATE args3 { mc.m_mesh.Translate(vec3($2.f0, $2.f1, $2.f2)); }
  100. | T_ROTATEX args1 { mc.m_mesh.RotateX($2.f0); }
  101. | T_ROTATEY args1 { mc.m_mesh.RotateY($2.f0); }
  102. | T_ROTATEZ args1 { mc.m_mesh.RotateZ($2.f0); }
  103. | T_TAPERX args3 { mc.m_mesh.TaperX($2.f0, $2.f1, $2.f2); }
  104. | T_TAPERY args3 { mc.m_mesh.TaperY($2.f0, $2.f1, $2.f2); }
  105. | T_TAPERZ args3 { mc.m_mesh.TaperZ($2.f0, $2.f1, $2.f2); }
  106. | T_SCALEX args1 { mc.m_mesh.Scale(vec3($2.f0, 1.0, 1.0)); }
  107. | T_SCALEY args1 { mc.m_mesh.Scale(vec3(1.0, $2.f0, 1.0)); }
  108. | T_SCALEZ args1 { mc.m_mesh.Scale(vec3(1.0, 1.0, $2.f0)); }
  109. | T_SCALE args3 { mc.m_mesh.Scale(vec3($2.f0, $2.f1, $2.f2)); }
  110. | T_MIRRORX { mc.m_mesh.MirrorX(); }
  111. | T_MIRRORY { mc.m_mesh.MirrorY(); }
  112. | T_MIRRORZ { mc.m_mesh.MirrorZ(); }
  113. | T_RADIALJITTER args1 { mc.m_mesh.RadialJitter($2.f0); }
  114. | T_TOGGLESCALEWINDING { mc.m_mesh.ToggleScaleWinding(); }
  115. | T_CSGUNION { mc.m_mesh.CsgUnion(); }
  116. | T_CSGSUBSTRACT { mc.m_mesh.CsgSubstract(); }
  117. | T_CSGAND { mc.m_mesh.CsgAnd(); }
  118. | T_CSGXOR { mc.m_mesh.CsgXor(); }
  119. ;
  120. primitive_command:
  121. T_CYLINDER args6 { mc.m_mesh.AppendCylinder((int)$2.f0, $2.f1,
  122. $2.f2, $2.f3,
  123. (int)$2.f4, (int)$2.f5); }
  124. | T_BOX args3 { mc.m_mesh.AppendBox(vec3($2.f0, $2.f1, $2.f2)); }
  125. | T_SMOOTHCHAMFBOX args4 { mc.m_mesh.AppendSmoothChamfBox(vec3($2.f0, $2.f1,
  126. $2.f2), $2.f3); }
  127. | T_FLATCHAMFBOX args4 { mc.m_mesh.AppendFlatChamfBox(vec3($2.f0, $2.f1,
  128. $2.f2), $2.f3); }
  129. | T_SPHERE args4 { mc.m_mesh.AppendSphere($2.f0,
  130. vec3($2.f1, $2.f2, $2.f3)); }
  131. | T_CAPSULE args3 { mc.m_mesh.AppendCapsule($2.f0, $2.f1, $2.f2); }
  132. | T_TORUS args3 { mc.m_mesh.AppendTorus((int)$2.f0, $2.f1, $2.f2); }
  133. | T_STAR args5 { mc.m_mesh.AppendStar((int)$2.f0, $2.f1, $2.f2,
  134. (int)$2.f3, (int)$2.f4); }
  135. | T_EXPANDEDSTAR args4 { mc.m_mesh.AppendExpandedStar((int)$2.f0, $2.f1,
  136. $2.f2, $2.f3); }
  137. | T_DISC args3 { mc.m_mesh.AppendDisc((int)$2.f0, $2.f1, (int)$2.f2); }
  138. | T_TRIANGLE args2 { mc.m_mesh.AppendSimpleTriangle($2.f0, (int)$2.f1); }
  139. | T_QUAD args2 { mc.m_mesh.AppendSimpleQuad($2.f0, (int)$2.f1); }
  140. | T_COG args10 { mc.m_mesh.AppendCog((int)$2.f0, $2.f1,
  141. $2.f2, $2.f3, $2.f4, $2.f5, $2.f6,
  142. $2.f7, $2.f8, (int)$2.f9); }
  143. ;
  144. args1: number { $$.f0 = $1; } ;
  145. args2: args1 number { $$ = $1; $$.f1 = $2; } ;
  146. args3: args2 number { $$ = $1; $$.f2 = $2; } ;
  147. args4: args3 number { $$ = $1; $$.f3 = $2; } ;
  148. args5: args4 number { $$ = $1; $$.f4 = $2; } ;
  149. args6: args5 number { $$ = $1; $$.f5 = $2; } ;
  150. args7: args6 number { $$ = $1; $$.f6 = $2; } ;
  151. args8: args7 number { $$ = $1; $$.f7 = $2; } ;
  152. args9: args8 number { $$ = $1; $$.f8 = $2; } ;
  153. args10: args9 number { $$ = $1; $$.f9 = $2; } ;
  154. number:
  155. NUMBER { $$ = $1; }
  156. | '-' number { $$ = -$2; }
  157. ;
  158. %%
  159. void lol::EasyMeshParser::error(const EasyMeshParser::location_type& l,
  160. const std::string& m)
  161. {
  162. mc.Error(l, m);
  163. }