csg_shape.cpp 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. /*************************************************************************/
  2. /* csg_shape.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "csg_shape.h"
  31. #include "scene/3d/path.h"
  32. void CSGShape::set_use_collision(bool p_enable) {
  33. if (use_collision == p_enable)
  34. return;
  35. use_collision = p_enable;
  36. if (!is_inside_tree() || !is_root_shape())
  37. return;
  38. if (use_collision) {
  39. root_collision_shape.instance();
  40. root_collision_instance = PhysicsServer::get_singleton()->body_create(PhysicsServer::BODY_MODE_STATIC);
  41. PhysicsServer::get_singleton()->body_set_state(root_collision_instance, PhysicsServer::BODY_STATE_TRANSFORM, get_global_transform());
  42. PhysicsServer::get_singleton()->body_add_shape(root_collision_instance, root_collision_shape->get_rid());
  43. PhysicsServer::get_singleton()->body_set_space(root_collision_instance, get_world()->get_space());
  44. _make_dirty(); //force update
  45. } else {
  46. PhysicsServer::get_singleton()->free(root_collision_instance);
  47. root_collision_instance = RID();
  48. root_collision_shape.unref();
  49. }
  50. }
  51. bool CSGShape::is_using_collision() const {
  52. return use_collision;
  53. }
  54. bool CSGShape::is_root_shape() const {
  55. return !parent;
  56. }
  57. void CSGShape::set_snap(float p_snap) {
  58. snap = p_snap;
  59. }
  60. float CSGShape::get_snap() const {
  61. return snap;
  62. }
  63. void CSGShape::_make_dirty() {
  64. if (!is_inside_tree())
  65. return;
  66. if (dirty) {
  67. return;
  68. }
  69. dirty = true;
  70. if (parent) {
  71. parent->_make_dirty();
  72. } else {
  73. //only parent will do
  74. call_deferred("_update_shape");
  75. }
  76. }
  77. CSGBrush *CSGShape::_get_brush() {
  78. if (dirty) {
  79. if (brush) {
  80. memdelete(brush);
  81. }
  82. brush = NULL;
  83. CSGBrush *n = _build_brush();
  84. for (int i = 0; i < get_child_count(); i++) {
  85. CSGShape *child = Object::cast_to<CSGShape>(get_child(i));
  86. if (!child)
  87. continue;
  88. if (!child->is_visible_in_tree())
  89. continue;
  90. CSGBrush *n2 = child->_get_brush();
  91. if (!n2)
  92. continue;
  93. if (!n) {
  94. n = memnew(CSGBrush);
  95. n->copy_from(*n2, child->get_transform());
  96. } else {
  97. CSGBrush *nn = memnew(CSGBrush);
  98. CSGBrush *nn2 = memnew(CSGBrush);
  99. nn2->copy_from(*n2, child->get_transform());
  100. CSGBrushOperation bop;
  101. switch (child->get_operation()) {
  102. case CSGShape::OPERATION_UNION: bop.merge_brushes(CSGBrushOperation::OPERATION_UNION, *n, *nn2, *nn, snap); break;
  103. case CSGShape::OPERATION_INTERSECTION: bop.merge_brushes(CSGBrushOperation::OPERATION_INTERSECTION, *n, *nn2, *nn, snap); break;
  104. case CSGShape::OPERATION_SUBTRACTION: bop.merge_brushes(CSGBrushOperation::OPERATION_SUBSTRACTION, *n, *nn2, *nn, snap); break;
  105. }
  106. memdelete(n);
  107. memdelete(nn2);
  108. n = nn;
  109. }
  110. }
  111. if (n) {
  112. AABB aabb;
  113. for (int i = 0; i < n->faces.size(); i++) {
  114. for (int j = 0; j < 3; j++) {
  115. if (i == 0 && j == 0)
  116. aabb.position = n->faces[i].vertices[j];
  117. else
  118. aabb.expand_to(n->faces[i].vertices[j]);
  119. }
  120. }
  121. node_aabb = aabb;
  122. } else {
  123. node_aabb = AABB();
  124. }
  125. brush = n;
  126. dirty = false;
  127. }
  128. return brush;
  129. }
  130. int CSGShape::mikktGetNumFaces(const SMikkTSpaceContext *pContext) {
  131. ShapeUpdateSurface &surface = *((ShapeUpdateSurface *)pContext->m_pUserData);
  132. return surface.vertices.size() / 3;
  133. }
  134. int CSGShape::mikktGetNumVerticesOfFace(const SMikkTSpaceContext *pContext, const int iFace) {
  135. // always 3
  136. return 3;
  137. }
  138. void CSGShape::mikktGetPosition(const SMikkTSpaceContext *pContext, float fvPosOut[], const int iFace, const int iVert) {
  139. ShapeUpdateSurface &surface = *((ShapeUpdateSurface *)pContext->m_pUserData);
  140. Vector3 v = surface.verticesw[iFace * 3 + iVert];
  141. fvPosOut[0] = v.x;
  142. fvPosOut[1] = v.y;
  143. fvPosOut[2] = v.z;
  144. }
  145. void CSGShape::mikktGetNormal(const SMikkTSpaceContext *pContext, float fvNormOut[], const int iFace, const int iVert) {
  146. ShapeUpdateSurface &surface = *((ShapeUpdateSurface *)pContext->m_pUserData);
  147. Vector3 n = surface.normalsw[iFace * 3 + iVert];
  148. fvNormOut[0] = n.x;
  149. fvNormOut[1] = n.y;
  150. fvNormOut[2] = n.z;
  151. }
  152. void CSGShape::mikktGetTexCoord(const SMikkTSpaceContext *pContext, float fvTexcOut[], const int iFace, const int iVert) {
  153. ShapeUpdateSurface &surface = *((ShapeUpdateSurface *)pContext->m_pUserData);
  154. Vector2 t = surface.uvsw[iFace * 3 + iVert];
  155. fvTexcOut[0] = t.x;
  156. fvTexcOut[1] = t.y;
  157. }
  158. void CSGShape::mikktSetTSpaceBasic(const SMikkTSpaceContext *pContext, const float fvTangent[], const float fSign, const int iFace, const int iVert) {
  159. ShapeUpdateSurface &surface = *((ShapeUpdateSurface *)pContext->m_pUserData);
  160. int i = (iFace * 3 + iVert) * 4;
  161. surface.tansw[i++] = fvTangent[0];
  162. surface.tansw[i++] = fvTangent[1];
  163. surface.tansw[i++] = fvTangent[2];
  164. surface.tansw[i++] = fSign;
  165. }
  166. void CSGShape::mikktSetTSpaceDefault(const SMikkTSpaceContext *pContext, const float fvTangent[], const float fvBiTangent[], const float fMagS, const float fMagT,
  167. const tbool bIsOrientationPreserving, const int iFace, const int iVert) {
  168. ShapeUpdateSurface &surface = *((ShapeUpdateSurface *)pContext->m_pUserData);
  169. int i = iFace * 3 + iVert;
  170. Vector3 normal = surface.normalsw[i];
  171. Vector3 tangent = Vector3(fvTangent[0], fvTangent[1], fvTangent[2]);
  172. Vector3 bitangent = Vector3(fvBiTangent[0], fvBiTangent[1], fvBiTangent[2]);
  173. float d = bitangent.dot(normal.cross(tangent));
  174. i *= 4;
  175. surface.tansw[i++] = tangent.x;
  176. surface.tansw[i++] = tangent.y;
  177. surface.tansw[i++] = tangent.z;
  178. surface.tansw[i++] = d < 0 ? -1 : 1;
  179. }
  180. void CSGShape::_update_shape() {
  181. if (parent)
  182. return;
  183. set_base(RID());
  184. root_mesh.unref(); //byebye root mesh
  185. CSGBrush *n = _get_brush();
  186. ERR_FAIL_COND(!n);
  187. OAHashMap<Vector3, Vector3> vec_map;
  188. Vector<int> face_count;
  189. face_count.resize(n->materials.size() + 1);
  190. for (int i = 0; i < face_count.size(); i++) {
  191. face_count.write[i] = 0;
  192. }
  193. for (int i = 0; i < n->faces.size(); i++) {
  194. int mat = n->faces[i].material;
  195. ERR_CONTINUE(mat < -1 || mat >= face_count.size());
  196. int idx = mat == -1 ? face_count.size() - 1 : mat;
  197. if (n->faces[i].smooth) {
  198. Plane p(n->faces[i].vertices[0], n->faces[i].vertices[1], n->faces[i].vertices[2]);
  199. for (int j = 0; j < 3; j++) {
  200. Vector3 v = n->faces[i].vertices[j];
  201. Vector3 add;
  202. if (vec_map.lookup(v, add)) {
  203. add += p.normal;
  204. } else {
  205. add = p.normal;
  206. }
  207. vec_map.set(v, add);
  208. }
  209. }
  210. face_count.write[idx]++;
  211. }
  212. Vector<ShapeUpdateSurface> surfaces;
  213. surfaces.resize(face_count.size());
  214. //create arrays
  215. for (int i = 0; i < surfaces.size(); i++) {
  216. surfaces.write[i].vertices.resize(face_count[i] * 3);
  217. surfaces.write[i].normals.resize(face_count[i] * 3);
  218. surfaces.write[i].uvs.resize(face_count[i] * 3);
  219. if (calculate_tangents) {
  220. surfaces.write[i].tans.resize(face_count[i] * 3 * 4);
  221. }
  222. surfaces.write[i].last_added = 0;
  223. if (i != surfaces.size() - 1) {
  224. surfaces.write[i].material = n->materials[i];
  225. }
  226. surfaces.write[i].verticesw = surfaces.write[i].vertices.write();
  227. surfaces.write[i].normalsw = surfaces.write[i].normals.write();
  228. surfaces.write[i].uvsw = surfaces.write[i].uvs.write();
  229. if (calculate_tangents) {
  230. surfaces.write[i].tansw = surfaces.write[i].tans.write();
  231. }
  232. }
  233. //fill arrays
  234. PoolVector<Vector3> physics_faces;
  235. bool fill_physics_faces = false;
  236. if (root_collision_shape.is_valid()) {
  237. physics_faces.resize(n->faces.size() * 3);
  238. fill_physics_faces = true;
  239. }
  240. {
  241. PoolVector<Vector3>::Write physicsw;
  242. if (fill_physics_faces) {
  243. physicsw = physics_faces.write();
  244. }
  245. for (int i = 0; i < n->faces.size(); i++) {
  246. int order[3] = { 0, 1, 2 };
  247. if (n->faces[i].invert) {
  248. SWAP(order[1], order[2]);
  249. }
  250. if (fill_physics_faces) {
  251. physicsw[i * 3 + 0] = n->faces[i].vertices[order[0]];
  252. physicsw[i * 3 + 1] = n->faces[i].vertices[order[1]];
  253. physicsw[i * 3 + 2] = n->faces[i].vertices[order[2]];
  254. }
  255. int mat = n->faces[i].material;
  256. ERR_CONTINUE(mat < -1 || mat >= face_count.size());
  257. int idx = mat == -1 ? face_count.size() - 1 : mat;
  258. int last = surfaces[idx].last_added;
  259. Plane p(n->faces[i].vertices[0], n->faces[i].vertices[1], n->faces[i].vertices[2]);
  260. for (int j = 0; j < 3; j++) {
  261. Vector3 v = n->faces[i].vertices[j];
  262. Vector3 normal = p.normal;
  263. if (n->faces[i].smooth && vec_map.lookup(v, normal)) {
  264. normal.normalize();
  265. }
  266. if (n->faces[i].invert) {
  267. normal = -normal;
  268. }
  269. int k = last + order[j];
  270. surfaces[idx].verticesw[k] = v;
  271. surfaces[idx].uvsw[k] = n->faces[i].uvs[j];
  272. surfaces[idx].normalsw[k] = normal;
  273. if (calculate_tangents) {
  274. // zero out our tangents for now
  275. k *= 4;
  276. surfaces[idx].tansw[k++] = 0.0;
  277. surfaces[idx].tansw[k++] = 0.0;
  278. surfaces[idx].tansw[k++] = 0.0;
  279. surfaces[idx].tansw[k++] = 0.0;
  280. }
  281. }
  282. surfaces.write[idx].last_added += 3;
  283. }
  284. }
  285. root_mesh.instance();
  286. //create surfaces
  287. for (int i = 0; i < surfaces.size(); i++) {
  288. // calculate tangents for this surface
  289. bool have_tangents = calculate_tangents;
  290. if (have_tangents) {
  291. SMikkTSpaceInterface mkif;
  292. mkif.m_getNormal = mikktGetNormal;
  293. mkif.m_getNumFaces = mikktGetNumFaces;
  294. mkif.m_getNumVerticesOfFace = mikktGetNumVerticesOfFace;
  295. mkif.m_getPosition = mikktGetPosition;
  296. mkif.m_getTexCoord = mikktGetTexCoord;
  297. mkif.m_setTSpace = mikktSetTSpaceDefault;
  298. mkif.m_setTSpaceBasic = NULL;
  299. SMikkTSpaceContext msc;
  300. msc.m_pInterface = &mkif;
  301. msc.m_pUserData = &surfaces.write[i];
  302. have_tangents = genTangSpaceDefault(&msc);
  303. }
  304. // unset write access
  305. surfaces.write[i].verticesw = PoolVector<Vector3>::Write();
  306. surfaces.write[i].normalsw = PoolVector<Vector3>::Write();
  307. surfaces.write[i].uvsw = PoolVector<Vector2>::Write();
  308. surfaces.write[i].tansw = PoolVector<float>::Write();
  309. if (surfaces[i].last_added == 0)
  310. continue;
  311. // and convert to surface array
  312. Array array;
  313. array.resize(Mesh::ARRAY_MAX);
  314. array[Mesh::ARRAY_VERTEX] = surfaces[i].vertices;
  315. array[Mesh::ARRAY_NORMAL] = surfaces[i].normals;
  316. array[Mesh::ARRAY_TEX_UV] = surfaces[i].uvs;
  317. if (have_tangents) {
  318. array[Mesh::ARRAY_TANGENT] = surfaces[i].tans;
  319. }
  320. int idx = root_mesh->get_surface_count();
  321. root_mesh->add_surface_from_arrays(Mesh::PRIMITIVE_TRIANGLES, array);
  322. root_mesh->surface_set_material(idx, surfaces[i].material);
  323. }
  324. if (root_collision_shape.is_valid()) {
  325. root_collision_shape->set_faces(physics_faces);
  326. }
  327. set_base(root_mesh->get_rid());
  328. }
  329. AABB CSGShape::get_aabb() const {
  330. return node_aabb;
  331. }
  332. PoolVector<Vector3> CSGShape::get_brush_faces() {
  333. ERR_FAIL_COND_V(!is_inside_tree(), PoolVector<Vector3>());
  334. CSGBrush *b = _get_brush();
  335. if (!b) {
  336. return PoolVector<Vector3>();
  337. }
  338. PoolVector<Vector3> faces;
  339. int fc = b->faces.size();
  340. faces.resize(fc * 3);
  341. {
  342. PoolVector<Vector3>::Write w = faces.write();
  343. for (int i = 0; i < fc; i++) {
  344. w[i * 3 + 0] = b->faces[i].vertices[0];
  345. w[i * 3 + 1] = b->faces[i].vertices[1];
  346. w[i * 3 + 2] = b->faces[i].vertices[2];
  347. }
  348. }
  349. return faces;
  350. }
  351. PoolVector<Face3> CSGShape::get_faces(uint32_t p_usage_flags) const {
  352. return PoolVector<Face3>();
  353. }
  354. void CSGShape::_notification(int p_what) {
  355. if (p_what == NOTIFICATION_ENTER_TREE) {
  356. Node *parentn = get_parent();
  357. if (parentn) {
  358. parent = Object::cast_to<CSGShape>(parentn);
  359. if (parent) {
  360. set_base(RID());
  361. root_mesh.unref();
  362. }
  363. }
  364. if (use_collision && is_root_shape()) {
  365. root_collision_shape.instance();
  366. root_collision_instance = PhysicsServer::get_singleton()->body_create(PhysicsServer::BODY_MODE_STATIC);
  367. PhysicsServer::get_singleton()->body_set_state(root_collision_instance, PhysicsServer::BODY_STATE_TRANSFORM, get_global_transform());
  368. PhysicsServer::get_singleton()->body_add_shape(root_collision_instance, root_collision_shape->get_rid());
  369. PhysicsServer::get_singleton()->body_set_space(root_collision_instance, get_world()->get_space());
  370. }
  371. _make_dirty();
  372. }
  373. if (p_what == NOTIFICATION_LOCAL_TRANSFORM_CHANGED) {
  374. if (parent) {
  375. parent->_make_dirty();
  376. }
  377. }
  378. if (p_what == NOTIFICATION_EXIT_TREE) {
  379. if (parent)
  380. parent->_make_dirty();
  381. parent = NULL;
  382. if (use_collision && is_root_shape()) {
  383. PhysicsServer::get_singleton()->free(root_collision_instance);
  384. root_collision_instance = RID();
  385. root_collision_shape.unref();
  386. }
  387. _make_dirty();
  388. }
  389. }
  390. void CSGShape::set_operation(Operation p_operation) {
  391. operation = p_operation;
  392. _make_dirty();
  393. }
  394. CSGShape::Operation CSGShape::get_operation() const {
  395. return operation;
  396. }
  397. void CSGShape::set_calculate_tangents(bool p_calculate_tangents) {
  398. calculate_tangents = p_calculate_tangents;
  399. _make_dirty();
  400. }
  401. bool CSGShape::is_calculating_tangents() const {
  402. return calculate_tangents;
  403. }
  404. void CSGShape::_validate_property(PropertyInfo &property) const {
  405. if (is_inside_tree() && property.name.begins_with("use_collision") && !is_root_shape()) {
  406. //hide collision if not root
  407. property.usage = PROPERTY_USAGE_NOEDITOR;
  408. }
  409. }
  410. void CSGShape::_bind_methods() {
  411. ClassDB::bind_method(D_METHOD("_update_shape"), &CSGShape::_update_shape);
  412. ClassDB::bind_method(D_METHOD("is_root_shape"), &CSGShape::is_root_shape);
  413. ClassDB::bind_method(D_METHOD("set_operation", "operation"), &CSGShape::set_operation);
  414. ClassDB::bind_method(D_METHOD("get_operation"), &CSGShape::get_operation);
  415. ClassDB::bind_method(D_METHOD("set_use_collision", "operation"), &CSGShape::set_use_collision);
  416. ClassDB::bind_method(D_METHOD("is_using_collision"), &CSGShape::is_using_collision);
  417. ClassDB::bind_method(D_METHOD("set_snap", "snap"), &CSGShape::set_snap);
  418. ClassDB::bind_method(D_METHOD("get_snap"), &CSGShape::get_snap);
  419. ClassDB::bind_method(D_METHOD("set_calculate_tangents", "enabled"), &CSGShape::set_calculate_tangents);
  420. ClassDB::bind_method(D_METHOD("is_calculating_tangents"), &CSGShape::is_calculating_tangents);
  421. ADD_PROPERTY(PropertyInfo(Variant::INT, "operation", PROPERTY_HINT_ENUM, "Union,Intersection,Subtraction"), "set_operation", "get_operation");
  422. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "use_collision"), "set_use_collision", "is_using_collision");
  423. ADD_PROPERTY(PropertyInfo(Variant::REAL, "snap", PROPERTY_HINT_RANGE, "0.0001,1,0.001"), "set_snap", "get_snap");
  424. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "calculate_tangents"), "set_calculate_tangents", "is_calculating_tangents");
  425. BIND_ENUM_CONSTANT(OPERATION_UNION);
  426. BIND_ENUM_CONSTANT(OPERATION_INTERSECTION);
  427. BIND_ENUM_CONSTANT(OPERATION_SUBTRACTION);
  428. }
  429. CSGShape::CSGShape() {
  430. brush = NULL;
  431. set_notify_local_transform(true);
  432. dirty = false;
  433. parent = NULL;
  434. use_collision = false;
  435. operation = OPERATION_UNION;
  436. snap = 0.001;
  437. calculate_tangents = true;
  438. }
  439. CSGShape::~CSGShape() {
  440. if (brush) {
  441. memdelete(brush);
  442. brush = NULL;
  443. }
  444. }
  445. //////////////////////////////////
  446. CSGBrush *CSGCombiner::_build_brush() {
  447. return NULL; //does not build anything
  448. }
  449. CSGCombiner::CSGCombiner() {
  450. }
  451. /////////////////////
  452. CSGBrush *CSGPrimitive::_create_brush_from_arrays(const PoolVector<Vector3> &p_vertices, const PoolVector<Vector2> &p_uv, const PoolVector<bool> &p_smooth, const PoolVector<Ref<Material> > &p_materials) {
  453. CSGBrush *brush = memnew(CSGBrush);
  454. PoolVector<bool> invert;
  455. invert.resize(p_vertices.size() / 3);
  456. {
  457. int ic = invert.size();
  458. PoolVector<bool>::Write w = invert.write();
  459. for (int i = 0; i < ic; i++) {
  460. w[i] = invert_faces;
  461. }
  462. }
  463. brush->build_from_faces(p_vertices, p_uv, p_smooth, p_materials, invert);
  464. return brush;
  465. }
  466. void CSGPrimitive::_bind_methods() {
  467. ClassDB::bind_method(D_METHOD("set_invert_faces", "invert_faces"), &CSGPrimitive::set_invert_faces);
  468. ClassDB::bind_method(D_METHOD("is_inverting_faces"), &CSGPrimitive::is_inverting_faces);
  469. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "invert_faces"), "set_invert_faces", "is_inverting_faces");
  470. }
  471. void CSGPrimitive::set_invert_faces(bool p_invert) {
  472. if (invert_faces == p_invert)
  473. return;
  474. invert_faces = p_invert;
  475. _make_dirty();
  476. }
  477. bool CSGPrimitive::is_inverting_faces() {
  478. return invert_faces;
  479. }
  480. CSGPrimitive::CSGPrimitive() {
  481. invert_faces = false;
  482. }
  483. /////////////////////
  484. CSGBrush *CSGMesh::_build_brush() {
  485. if (!mesh.is_valid())
  486. return NULL;
  487. PoolVector<Vector3> vertices;
  488. PoolVector<bool> smooth;
  489. PoolVector<Ref<Material> > materials;
  490. PoolVector<Vector2> uvs;
  491. for (int i = 0; i < mesh->get_surface_count(); i++) {
  492. if (mesh->surface_get_primitive_type(i) != Mesh::PRIMITIVE_TRIANGLES) {
  493. continue;
  494. }
  495. Array arrays = mesh->surface_get_arrays(i);
  496. if (arrays.size() == 0) {
  497. _make_dirty();
  498. ERR_FAIL_COND_V(arrays.size() == 0, NULL);
  499. }
  500. PoolVector<Vector3> avertices = arrays[Mesh::ARRAY_VERTEX];
  501. if (avertices.size() == 0)
  502. continue;
  503. PoolVector<Vector3>::Read vr = avertices.read();
  504. PoolVector<Vector3> anormals = arrays[Mesh::ARRAY_NORMAL];
  505. PoolVector<Vector3>::Read nr;
  506. bool nr_used = false;
  507. if (anormals.size()) {
  508. nr = anormals.read();
  509. nr_used = true;
  510. }
  511. PoolVector<Vector2> auvs = arrays[Mesh::ARRAY_TEX_UV];
  512. PoolVector<Vector2>::Read uvr;
  513. bool uvr_used = false;
  514. if (auvs.size()) {
  515. uvr = auvs.read();
  516. uvr_used = true;
  517. }
  518. Ref<Material> mat = mesh->surface_get_material(i);
  519. PoolVector<int> aindices = arrays[Mesh::ARRAY_INDEX];
  520. if (aindices.size()) {
  521. int as = vertices.size();
  522. int is = aindices.size();
  523. vertices.resize(as + is);
  524. smooth.resize((as + is) / 3);
  525. materials.resize((as + is) / 3);
  526. uvs.resize(as + is);
  527. PoolVector<Vector3>::Write vw = vertices.write();
  528. PoolVector<bool>::Write sw = smooth.write();
  529. PoolVector<Vector2>::Write uvw = uvs.write();
  530. PoolVector<Ref<Material> >::Write mw = materials.write();
  531. PoolVector<int>::Read ir = aindices.read();
  532. for (int j = 0; j < is; j += 3) {
  533. Vector3 vertex[3];
  534. Vector3 normal[3];
  535. Vector2 uv[3];
  536. for (int k = 0; k < 3; k++) {
  537. int idx = ir[j + k];
  538. vertex[k] = vr[idx];
  539. if (nr_used) {
  540. normal[k] = nr[idx];
  541. }
  542. if (uvr_used) {
  543. uv[k] = uvr[idx];
  544. }
  545. }
  546. bool flat = normal[0].distance_to(normal[1]) < CMP_EPSILON && normal[0].distance_to(normal[2]) < CMP_EPSILON;
  547. vw[as + j + 0] = vertex[0];
  548. vw[as + j + 1] = vertex[1];
  549. vw[as + j + 2] = vertex[2];
  550. uvw[as + j + 0] = uv[0];
  551. uvw[as + j + 1] = uv[1];
  552. uvw[as + j + 2] = uv[2];
  553. sw[j / 3] = !flat;
  554. mw[j / 3] = mat;
  555. }
  556. } else {
  557. int as = vertices.size();
  558. int is = avertices.size();
  559. vertices.resize(as + is);
  560. smooth.resize((as + is) / 3);
  561. uvs.resize(as + is);
  562. materials.resize((as + is) / 3);
  563. PoolVector<Vector3>::Write vw = vertices.write();
  564. PoolVector<bool>::Write sw = smooth.write();
  565. PoolVector<Vector2>::Write uvw = uvs.write();
  566. PoolVector<Ref<Material> >::Write mw = materials.write();
  567. for (int j = 0; j < is; j += 3) {
  568. Vector3 vertex[3];
  569. Vector3 normal[3];
  570. Vector2 uv[3];
  571. for (int k = 0; k < 3; k++) {
  572. vertex[k] = vr[j + k];
  573. if (nr_used) {
  574. normal[k] = nr[j + k];
  575. }
  576. if (uvr_used) {
  577. uv[k] = uvr[j + k];
  578. }
  579. }
  580. bool flat = normal[0].distance_to(normal[1]) < CMP_EPSILON && normal[0].distance_to(normal[2]) < CMP_EPSILON;
  581. vw[as + j + 0] = vertex[0];
  582. vw[as + j + 1] = vertex[1];
  583. vw[as + j + 2] = vertex[2];
  584. uvw[as + j + 0] = uv[0];
  585. uvw[as + j + 1] = uv[1];
  586. uvw[as + j + 2] = uv[2];
  587. sw[j / 3] = !flat;
  588. mw[j / 3] = mat;
  589. }
  590. }
  591. }
  592. if (vertices.size() == 0)
  593. return NULL;
  594. return _create_brush_from_arrays(vertices, uvs, smooth, materials);
  595. }
  596. void CSGMesh::_mesh_changed() {
  597. _make_dirty();
  598. update_gizmo();
  599. }
  600. void CSGMesh::_bind_methods() {
  601. ClassDB::bind_method(D_METHOD("set_mesh", "mesh"), &CSGMesh::set_mesh);
  602. ClassDB::bind_method(D_METHOD("get_mesh"), &CSGMesh::get_mesh);
  603. ClassDB::bind_method(D_METHOD("_mesh_changed"), &CSGMesh::_mesh_changed);
  604. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "mesh", PROPERTY_HINT_RESOURCE_TYPE, "Mesh"), "set_mesh", "get_mesh");
  605. }
  606. void CSGMesh::set_mesh(const Ref<Mesh> &p_mesh) {
  607. if (mesh == p_mesh)
  608. return;
  609. if (mesh.is_valid()) {
  610. mesh->disconnect("changed", this, "_mesh_changed");
  611. }
  612. mesh = p_mesh;
  613. if (mesh.is_valid()) {
  614. mesh->connect("changed", this, "_mesh_changed");
  615. }
  616. _make_dirty();
  617. }
  618. Ref<Mesh> CSGMesh::get_mesh() {
  619. return mesh;
  620. }
  621. ////////////////////////////////
  622. CSGBrush *CSGSphere::_build_brush() {
  623. // set our bounding box
  624. CSGBrush *brush = memnew(CSGBrush);
  625. int face_count = rings * radial_segments * 2 - radial_segments * 2;
  626. bool invert_val = is_inverting_faces();
  627. Ref<Material> material = get_material();
  628. PoolVector<Vector3> faces;
  629. PoolVector<Vector2> uvs;
  630. PoolVector<bool> smooth;
  631. PoolVector<Ref<Material> > materials;
  632. PoolVector<bool> invert;
  633. faces.resize(face_count * 3);
  634. uvs.resize(face_count * 3);
  635. smooth.resize(face_count);
  636. materials.resize(face_count);
  637. invert.resize(face_count);
  638. {
  639. PoolVector<Vector3>::Write facesw = faces.write();
  640. PoolVector<Vector2>::Write uvsw = uvs.write();
  641. PoolVector<bool>::Write smoothw = smooth.write();
  642. PoolVector<Ref<Material> >::Write materialsw = materials.write();
  643. PoolVector<bool>::Write invertw = invert.write();
  644. int face = 0;
  645. for (int i = 1; i <= rings; i++) {
  646. double lat0 = Math_PI * (-0.5 + (double)(i - 1) / rings);
  647. double z0 = Math::sin(lat0);
  648. double zr0 = Math::cos(lat0);
  649. double u0 = double(i - 1) / rings;
  650. double lat1 = Math_PI * (-0.5 + (double)i / rings);
  651. double z1 = Math::sin(lat1);
  652. double zr1 = Math::cos(lat1);
  653. double u1 = double(i) / rings;
  654. for (int j = radial_segments; j >= 1; j--) {
  655. double lng0 = 2 * Math_PI * (double)(j - 1) / radial_segments;
  656. double x0 = Math::cos(lng0);
  657. double y0 = Math::sin(lng0);
  658. double v0 = double(i - 1) / radial_segments;
  659. double lng1 = 2 * Math_PI * (double)(j) / radial_segments;
  660. double x1 = Math::cos(lng1);
  661. double y1 = Math::sin(lng1);
  662. double v1 = double(i) / radial_segments;
  663. Vector3 v[4] = {
  664. Vector3(x1 * zr0, z0, y1 * zr0) * radius,
  665. Vector3(x1 * zr1, z1, y1 * zr1) * radius,
  666. Vector3(x0 * zr1, z1, y0 * zr1) * radius,
  667. Vector3(x0 * zr0, z0, y0 * zr0) * radius
  668. };
  669. Vector2 u[4] = {
  670. Vector2(v1, u0),
  671. Vector2(v1, u1),
  672. Vector2(v0, u1),
  673. Vector2(v0, u0),
  674. };
  675. if (i < rings) {
  676. //face 1
  677. facesw[face * 3 + 0] = v[0];
  678. facesw[face * 3 + 1] = v[1];
  679. facesw[face * 3 + 2] = v[2];
  680. uvsw[face * 3 + 0] = u[0];
  681. uvsw[face * 3 + 1] = u[1];
  682. uvsw[face * 3 + 2] = u[2];
  683. smoothw[face] = smooth_faces;
  684. invertw[face] = invert_val;
  685. materialsw[face] = material;
  686. face++;
  687. }
  688. if (i > 1) {
  689. //face 2
  690. facesw[face * 3 + 0] = v[2];
  691. facesw[face * 3 + 1] = v[3];
  692. facesw[face * 3 + 2] = v[0];
  693. uvsw[face * 3 + 0] = u[2];
  694. uvsw[face * 3 + 1] = u[3];
  695. uvsw[face * 3 + 2] = u[0];
  696. smoothw[face] = smooth_faces;
  697. invertw[face] = invert_val;
  698. materialsw[face] = material;
  699. face++;
  700. }
  701. }
  702. }
  703. if (face != face_count) {
  704. ERR_PRINT("Face mismatch bug! fix code");
  705. }
  706. }
  707. brush->build_from_faces(faces, uvs, smooth, materials, invert);
  708. return brush;
  709. }
  710. void CSGSphere::_bind_methods() {
  711. ClassDB::bind_method(D_METHOD("set_radius", "radius"), &CSGSphere::set_radius);
  712. ClassDB::bind_method(D_METHOD("get_radius"), &CSGSphere::get_radius);
  713. ClassDB::bind_method(D_METHOD("set_radial_segments", "radial_segments"), &CSGSphere::set_radial_segments);
  714. ClassDB::bind_method(D_METHOD("get_radial_segments"), &CSGSphere::get_radial_segments);
  715. ClassDB::bind_method(D_METHOD("set_rings", "rings"), &CSGSphere::set_rings);
  716. ClassDB::bind_method(D_METHOD("get_rings"), &CSGSphere::get_rings);
  717. ClassDB::bind_method(D_METHOD("set_smooth_faces", "smooth_faces"), &CSGSphere::set_smooth_faces);
  718. ClassDB::bind_method(D_METHOD("get_smooth_faces"), &CSGSphere::get_smooth_faces);
  719. ClassDB::bind_method(D_METHOD("set_material", "material"), &CSGSphere::set_material);
  720. ClassDB::bind_method(D_METHOD("get_material"), &CSGSphere::get_material);
  721. ADD_PROPERTY(PropertyInfo(Variant::REAL, "radius", PROPERTY_HINT_RANGE, "0.001,100.0,0.001"), "set_radius", "get_radius");
  722. ADD_PROPERTY(PropertyInfo(Variant::INT, "radial_segments", PROPERTY_HINT_RANGE, "1,100,1"), "set_radial_segments", "get_radial_segments");
  723. ADD_PROPERTY(PropertyInfo(Variant::INT, "rings", PROPERTY_HINT_RANGE, "1,100,1"), "set_rings", "get_rings");
  724. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "smooth_faces"), "set_smooth_faces", "get_smooth_faces");
  725. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "material", PROPERTY_HINT_RESOURCE_TYPE, "SpatialMaterial,ShaderMaterial"), "set_material", "get_material");
  726. }
  727. void CSGSphere::set_radius(const float p_radius) {
  728. ERR_FAIL_COND(p_radius <= 0);
  729. radius = p_radius;
  730. _make_dirty();
  731. update_gizmo();
  732. }
  733. float CSGSphere::get_radius() const {
  734. return radius;
  735. }
  736. void CSGSphere::set_radial_segments(const int p_radial_segments) {
  737. radial_segments = p_radial_segments > 4 ? p_radial_segments : 4;
  738. _make_dirty();
  739. update_gizmo();
  740. }
  741. int CSGSphere::get_radial_segments() const {
  742. return radial_segments;
  743. }
  744. void CSGSphere::set_rings(const int p_rings) {
  745. rings = p_rings > 1 ? p_rings : 1;
  746. _make_dirty();
  747. update_gizmo();
  748. }
  749. int CSGSphere::get_rings() const {
  750. return rings;
  751. }
  752. void CSGSphere::set_smooth_faces(const bool p_smooth_faces) {
  753. smooth_faces = p_smooth_faces;
  754. _make_dirty();
  755. }
  756. bool CSGSphere::get_smooth_faces() const {
  757. return smooth_faces;
  758. }
  759. void CSGSphere::set_material(const Ref<Material> &p_material) {
  760. material = p_material;
  761. _make_dirty();
  762. }
  763. Ref<Material> CSGSphere::get_material() const {
  764. return material;
  765. }
  766. CSGSphere::CSGSphere() {
  767. // defaults
  768. radius = 1.0;
  769. radial_segments = 12;
  770. rings = 6;
  771. smooth_faces = true;
  772. }
  773. ///////////////
  774. CSGBrush *CSGBox::_build_brush() {
  775. // set our bounding box
  776. CSGBrush *brush = memnew(CSGBrush);
  777. int face_count = 12; //it's a cube..
  778. bool invert_val = is_inverting_faces();
  779. Ref<Material> material = get_material();
  780. PoolVector<Vector3> faces;
  781. PoolVector<Vector2> uvs;
  782. PoolVector<bool> smooth;
  783. PoolVector<Ref<Material> > materials;
  784. PoolVector<bool> invert;
  785. faces.resize(face_count * 3);
  786. uvs.resize(face_count * 3);
  787. smooth.resize(face_count);
  788. materials.resize(face_count);
  789. invert.resize(face_count);
  790. {
  791. PoolVector<Vector3>::Write facesw = faces.write();
  792. PoolVector<Vector2>::Write uvsw = uvs.write();
  793. PoolVector<bool>::Write smoothw = smooth.write();
  794. PoolVector<Ref<Material> >::Write materialsw = materials.write();
  795. PoolVector<bool>::Write invertw = invert.write();
  796. int face = 0;
  797. Vector3 vertex_mul(width * 0.5, height * 0.5, depth * 0.5);
  798. {
  799. for (int i = 0; i < 6; i++) {
  800. Vector3 face_points[4];
  801. float uv_points[8] = { 0, 0, 0, 1, 1, 1, 1, 0 };
  802. for (int j = 0; j < 4; j++) {
  803. float v[3];
  804. v[0] = 1.0;
  805. v[1] = 1 - 2 * ((j >> 1) & 1);
  806. v[2] = v[1] * (1 - 2 * (j & 1));
  807. for (int k = 0; k < 3; k++) {
  808. if (i < 3)
  809. face_points[j][(i + k) % 3] = v[k] * (i >= 3 ? -1 : 1);
  810. else
  811. face_points[3 - j][(i + k) % 3] = v[k] * (i >= 3 ? -1 : 1);
  812. }
  813. }
  814. Vector2 u[4];
  815. for (int j = 0; j < 4; j++) {
  816. u[j] = Vector2(uv_points[j * 2 + 0], uv_points[j * 2 + 1]);
  817. }
  818. //face 1
  819. facesw[face * 3 + 0] = face_points[0] * vertex_mul;
  820. facesw[face * 3 + 1] = face_points[1] * vertex_mul;
  821. facesw[face * 3 + 2] = face_points[2] * vertex_mul;
  822. uvsw[face * 3 + 0] = u[0];
  823. uvsw[face * 3 + 1] = u[1];
  824. uvsw[face * 3 + 2] = u[2];
  825. smoothw[face] = false;
  826. invertw[face] = invert_val;
  827. materialsw[face] = material;
  828. face++;
  829. //face 1
  830. facesw[face * 3 + 0] = face_points[2] * vertex_mul;
  831. facesw[face * 3 + 1] = face_points[3] * vertex_mul;
  832. facesw[face * 3 + 2] = face_points[0] * vertex_mul;
  833. uvsw[face * 3 + 0] = u[2];
  834. uvsw[face * 3 + 1] = u[3];
  835. uvsw[face * 3 + 2] = u[0];
  836. smoothw[face] = false;
  837. invertw[face] = invert_val;
  838. materialsw[face] = material;
  839. face++;
  840. }
  841. }
  842. if (face != face_count) {
  843. ERR_PRINT("Face mismatch bug! fix code");
  844. }
  845. }
  846. brush->build_from_faces(faces, uvs, smooth, materials, invert);
  847. return brush;
  848. }
  849. void CSGBox::_bind_methods() {
  850. ClassDB::bind_method(D_METHOD("set_width", "width"), &CSGBox::set_width);
  851. ClassDB::bind_method(D_METHOD("get_width"), &CSGBox::get_width);
  852. ClassDB::bind_method(D_METHOD("set_height", "height"), &CSGBox::set_height);
  853. ClassDB::bind_method(D_METHOD("get_height"), &CSGBox::get_height);
  854. ClassDB::bind_method(D_METHOD("set_depth", "depth"), &CSGBox::set_depth);
  855. ClassDB::bind_method(D_METHOD("get_depth"), &CSGBox::get_depth);
  856. ClassDB::bind_method(D_METHOD("set_material", "material"), &CSGBox::set_material);
  857. ClassDB::bind_method(D_METHOD("get_material"), &CSGBox::get_material);
  858. ADD_PROPERTY(PropertyInfo(Variant::REAL, "width", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_width", "get_width");
  859. ADD_PROPERTY(PropertyInfo(Variant::REAL, "height", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_height", "get_height");
  860. ADD_PROPERTY(PropertyInfo(Variant::REAL, "depth", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_depth", "get_depth");
  861. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "material", PROPERTY_HINT_RESOURCE_TYPE, "SpatialMaterial,ShaderMaterial"), "set_material", "get_material");
  862. }
  863. void CSGBox::set_width(const float p_width) {
  864. width = p_width;
  865. _make_dirty();
  866. update_gizmo();
  867. }
  868. float CSGBox::get_width() const {
  869. return width;
  870. }
  871. void CSGBox::set_height(const float p_height) {
  872. height = p_height;
  873. _make_dirty();
  874. update_gizmo();
  875. }
  876. float CSGBox::get_height() const {
  877. return height;
  878. }
  879. void CSGBox::set_depth(const float p_depth) {
  880. depth = p_depth;
  881. _make_dirty();
  882. update_gizmo();
  883. }
  884. float CSGBox::get_depth() const {
  885. return depth;
  886. }
  887. void CSGBox::set_material(const Ref<Material> &p_material) {
  888. material = p_material;
  889. _make_dirty();
  890. update_gizmo();
  891. }
  892. Ref<Material> CSGBox::get_material() const {
  893. return material;
  894. }
  895. CSGBox::CSGBox() {
  896. // defaults
  897. width = 2.0;
  898. height = 2.0;
  899. depth = 2.0;
  900. }
  901. ///////////////
  902. CSGBrush *CSGCylinder::_build_brush() {
  903. // set our bounding box
  904. CSGBrush *brush = memnew(CSGBrush);
  905. int face_count = sides * (cone ? 1 : 2) + sides + (cone ? 0 : sides);
  906. bool invert_val = is_inverting_faces();
  907. Ref<Material> material = get_material();
  908. PoolVector<Vector3> faces;
  909. PoolVector<Vector2> uvs;
  910. PoolVector<bool> smooth;
  911. PoolVector<Ref<Material> > materials;
  912. PoolVector<bool> invert;
  913. faces.resize(face_count * 3);
  914. uvs.resize(face_count * 3);
  915. smooth.resize(face_count);
  916. materials.resize(face_count);
  917. invert.resize(face_count);
  918. {
  919. PoolVector<Vector3>::Write facesw = faces.write();
  920. PoolVector<Vector2>::Write uvsw = uvs.write();
  921. PoolVector<bool>::Write smoothw = smooth.write();
  922. PoolVector<Ref<Material> >::Write materialsw = materials.write();
  923. PoolVector<bool>::Write invertw = invert.write();
  924. int face = 0;
  925. Vector3 vertex_mul(radius, height * 0.5, radius);
  926. {
  927. for (int i = 0; i < sides; i++) {
  928. float inc = float(i) / sides;
  929. float inc_n = float((i + 1)) / sides;
  930. float ang = inc * Math_PI * 2.0;
  931. float ang_n = inc_n * Math_PI * 2.0;
  932. Vector3 base(Math::cos(ang), 0, Math::sin(ang));
  933. Vector3 base_n(Math::cos(ang_n), 0, Math::sin(ang_n));
  934. Vector3 face_points[4] = {
  935. base + Vector3(0, -1, 0),
  936. base_n + Vector3(0, -1, 0),
  937. base_n * (cone ? 0.0 : 1.0) + Vector3(0, 1, 0),
  938. base * (cone ? 0.0 : 1.0) + Vector3(0, 1, 0),
  939. };
  940. Vector2 u[4] = {
  941. Vector2(inc, 0),
  942. Vector2(inc_n, 0),
  943. Vector2(inc_n, 1),
  944. Vector2(inc, 1),
  945. };
  946. //side face 1
  947. facesw[face * 3 + 0] = face_points[0] * vertex_mul;
  948. facesw[face * 3 + 1] = face_points[1] * vertex_mul;
  949. facesw[face * 3 + 2] = face_points[2] * vertex_mul;
  950. uvsw[face * 3 + 0] = u[0];
  951. uvsw[face * 3 + 1] = u[1];
  952. uvsw[face * 3 + 2] = u[2];
  953. smoothw[face] = smooth_faces;
  954. invertw[face] = invert_val;
  955. materialsw[face] = material;
  956. face++;
  957. if (!cone) {
  958. //side face 2
  959. facesw[face * 3 + 0] = face_points[2] * vertex_mul;
  960. facesw[face * 3 + 1] = face_points[3] * vertex_mul;
  961. facesw[face * 3 + 2] = face_points[0] * vertex_mul;
  962. uvsw[face * 3 + 0] = u[2];
  963. uvsw[face * 3 + 1] = u[3];
  964. uvsw[face * 3 + 2] = u[0];
  965. smoothw[face] = smooth_faces;
  966. invertw[face] = invert_val;
  967. materialsw[face] = material;
  968. face++;
  969. }
  970. //bottom face 1
  971. facesw[face * 3 + 0] = face_points[1] * vertex_mul;
  972. facesw[face * 3 + 1] = face_points[0] * vertex_mul;
  973. facesw[face * 3 + 2] = Vector3(0, -1, 0) * vertex_mul;
  974. uvsw[face * 3 + 0] = Vector2(face_points[1].x, face_points[1].y) * 0.5 + Vector2(0.5, 0.5);
  975. uvsw[face * 3 + 1] = Vector2(face_points[0].x, face_points[0].y) * 0.5 + Vector2(0.5, 0.5);
  976. uvsw[face * 3 + 2] = Vector2(0.5, 0.5);
  977. smoothw[face] = false;
  978. invertw[face] = invert_val;
  979. materialsw[face] = material;
  980. face++;
  981. if (!cone) {
  982. //top face 1
  983. facesw[face * 3 + 0] = face_points[3] * vertex_mul;
  984. facesw[face * 3 + 1] = face_points[2] * vertex_mul;
  985. facesw[face * 3 + 2] = Vector3(0, 1, 0) * vertex_mul;
  986. uvsw[face * 3 + 0] = Vector2(face_points[1].x, face_points[1].y) * 0.5 + Vector2(0.5, 0.5);
  987. uvsw[face * 3 + 1] = Vector2(face_points[0].x, face_points[0].y) * 0.5 + Vector2(0.5, 0.5);
  988. uvsw[face * 3 + 2] = Vector2(0.5, 0.5);
  989. smoothw[face] = false;
  990. invertw[face] = invert_val;
  991. materialsw[face] = material;
  992. face++;
  993. }
  994. }
  995. }
  996. if (face != face_count) {
  997. ERR_PRINT("Face mismatch bug! fix code");
  998. }
  999. }
  1000. brush->build_from_faces(faces, uvs, smooth, materials, invert);
  1001. return brush;
  1002. }
  1003. void CSGCylinder::_bind_methods() {
  1004. ClassDB::bind_method(D_METHOD("set_radius", "radius"), &CSGCylinder::set_radius);
  1005. ClassDB::bind_method(D_METHOD("get_radius"), &CSGCylinder::get_radius);
  1006. ClassDB::bind_method(D_METHOD("set_height", "height"), &CSGCylinder::set_height);
  1007. ClassDB::bind_method(D_METHOD("get_height"), &CSGCylinder::get_height);
  1008. ClassDB::bind_method(D_METHOD("set_sides", "sides"), &CSGCylinder::set_sides);
  1009. ClassDB::bind_method(D_METHOD("get_sides"), &CSGCylinder::get_sides);
  1010. ClassDB::bind_method(D_METHOD("set_cone", "cone"), &CSGCylinder::set_cone);
  1011. ClassDB::bind_method(D_METHOD("is_cone"), &CSGCylinder::is_cone);
  1012. ClassDB::bind_method(D_METHOD("set_material", "material"), &CSGCylinder::set_material);
  1013. ClassDB::bind_method(D_METHOD("get_material"), &CSGCylinder::get_material);
  1014. ClassDB::bind_method(D_METHOD("set_smooth_faces", "smooth_faces"), &CSGCylinder::set_smooth_faces);
  1015. ClassDB::bind_method(D_METHOD("get_smooth_faces"), &CSGCylinder::get_smooth_faces);
  1016. ADD_PROPERTY(PropertyInfo(Variant::REAL, "radius", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_radius", "get_radius");
  1017. ADD_PROPERTY(PropertyInfo(Variant::REAL, "height", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_height", "get_height");
  1018. ADD_PROPERTY(PropertyInfo(Variant::INT, "sides", PROPERTY_HINT_RANGE, "3,64,1"), "set_sides", "get_sides");
  1019. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cone"), "set_cone", "is_cone");
  1020. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "smooth_faces"), "set_smooth_faces", "get_smooth_faces");
  1021. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "material", PROPERTY_HINT_RESOURCE_TYPE, "SpatialMaterial,ShaderMaterial"), "set_material", "get_material");
  1022. }
  1023. void CSGCylinder::set_radius(const float p_radius) {
  1024. radius = p_radius;
  1025. _make_dirty();
  1026. update_gizmo();
  1027. }
  1028. float CSGCylinder::get_radius() const {
  1029. return radius;
  1030. }
  1031. void CSGCylinder::set_height(const float p_height) {
  1032. height = p_height;
  1033. _make_dirty();
  1034. update_gizmo();
  1035. }
  1036. float CSGCylinder::get_height() const {
  1037. return height;
  1038. }
  1039. void CSGCylinder::set_sides(const int p_sides) {
  1040. ERR_FAIL_COND(p_sides < 3);
  1041. sides = p_sides;
  1042. _make_dirty();
  1043. update_gizmo();
  1044. }
  1045. int CSGCylinder::get_sides() const {
  1046. return sides;
  1047. }
  1048. void CSGCylinder::set_cone(const bool p_cone) {
  1049. cone = p_cone;
  1050. _make_dirty();
  1051. update_gizmo();
  1052. }
  1053. bool CSGCylinder::is_cone() const {
  1054. return cone;
  1055. }
  1056. void CSGCylinder::set_smooth_faces(const bool p_smooth_faces) {
  1057. smooth_faces = p_smooth_faces;
  1058. _make_dirty();
  1059. }
  1060. bool CSGCylinder::get_smooth_faces() const {
  1061. return smooth_faces;
  1062. }
  1063. void CSGCylinder::set_material(const Ref<Material> &p_material) {
  1064. material = p_material;
  1065. _make_dirty();
  1066. }
  1067. Ref<Material> CSGCylinder::get_material() const {
  1068. return material;
  1069. }
  1070. CSGCylinder::CSGCylinder() {
  1071. // defaults
  1072. radius = 1.0;
  1073. height = 1.0;
  1074. sides = 8;
  1075. cone = false;
  1076. smooth_faces = true;
  1077. }
  1078. ///////////////
  1079. CSGBrush *CSGTorus::_build_brush() {
  1080. // set our bounding box
  1081. float min_radius = inner_radius;
  1082. float max_radius = outer_radius;
  1083. if (min_radius == max_radius)
  1084. return NULL; //sorry, can't
  1085. if (min_radius > max_radius) {
  1086. SWAP(min_radius, max_radius);
  1087. }
  1088. float radius = (max_radius - min_radius) * 0.5;
  1089. CSGBrush *brush = memnew(CSGBrush);
  1090. int face_count = ring_sides * sides * 2;
  1091. bool invert_val = is_inverting_faces();
  1092. Ref<Material> material = get_material();
  1093. PoolVector<Vector3> faces;
  1094. PoolVector<Vector2> uvs;
  1095. PoolVector<bool> smooth;
  1096. PoolVector<Ref<Material> > materials;
  1097. PoolVector<bool> invert;
  1098. faces.resize(face_count * 3);
  1099. uvs.resize(face_count * 3);
  1100. smooth.resize(face_count);
  1101. materials.resize(face_count);
  1102. invert.resize(face_count);
  1103. {
  1104. PoolVector<Vector3>::Write facesw = faces.write();
  1105. PoolVector<Vector2>::Write uvsw = uvs.write();
  1106. PoolVector<bool>::Write smoothw = smooth.write();
  1107. PoolVector<Ref<Material> >::Write materialsw = materials.write();
  1108. PoolVector<bool>::Write invertw = invert.write();
  1109. int face = 0;
  1110. {
  1111. for (int i = 0; i < sides; i++) {
  1112. float inci = float(i) / sides;
  1113. float inci_n = float((i + 1)) / sides;
  1114. float angi = inci * Math_PI * 2.0;
  1115. float angi_n = inci_n * Math_PI * 2.0;
  1116. Vector3 normali = Vector3(Math::cos(angi), 0, Math::sin(angi));
  1117. Vector3 normali_n = Vector3(Math::cos(angi_n), 0, Math::sin(angi_n));
  1118. for (int j = 0; j < ring_sides; j++) {
  1119. float incj = float(j) / ring_sides;
  1120. float incj_n = float((j + 1)) / ring_sides;
  1121. float angj = incj * Math_PI * 2.0;
  1122. float angj_n = incj_n * Math_PI * 2.0;
  1123. Vector2 normalj = Vector2(Math::cos(angj), Math::sin(angj)) * radius + Vector2(min_radius + radius, 0);
  1124. Vector2 normalj_n = Vector2(Math::cos(angj_n), Math::sin(angj_n)) * radius + Vector2(min_radius + radius, 0);
  1125. Vector3 face_points[4] = {
  1126. Vector3(normali.x * normalj.x, normalj.y, normali.z * normalj.x),
  1127. Vector3(normali.x * normalj_n.x, normalj_n.y, normali.z * normalj_n.x),
  1128. Vector3(normali_n.x * normalj_n.x, normalj_n.y, normali_n.z * normalj_n.x),
  1129. Vector3(normali_n.x * normalj.x, normalj.y, normali_n.z * normalj.x)
  1130. };
  1131. Vector2 u[4] = {
  1132. Vector2(inci, incj),
  1133. Vector2(inci, incj_n),
  1134. Vector2(inci_n, incj_n),
  1135. Vector2(inci_n, incj),
  1136. };
  1137. // face 1
  1138. facesw[face * 3 + 0] = face_points[0];
  1139. facesw[face * 3 + 1] = face_points[2];
  1140. facesw[face * 3 + 2] = face_points[1];
  1141. uvsw[face * 3 + 0] = u[0];
  1142. uvsw[face * 3 + 1] = u[2];
  1143. uvsw[face * 3 + 2] = u[1];
  1144. smoothw[face] = smooth_faces;
  1145. invertw[face] = invert_val;
  1146. materialsw[face] = material;
  1147. face++;
  1148. //face 2
  1149. facesw[face * 3 + 0] = face_points[3];
  1150. facesw[face * 3 + 1] = face_points[2];
  1151. facesw[face * 3 + 2] = face_points[0];
  1152. uvsw[face * 3 + 0] = u[3];
  1153. uvsw[face * 3 + 1] = u[2];
  1154. uvsw[face * 3 + 2] = u[0];
  1155. smoothw[face] = smooth_faces;
  1156. invertw[face] = invert_val;
  1157. materialsw[face] = material;
  1158. face++;
  1159. }
  1160. }
  1161. }
  1162. if (face != face_count) {
  1163. ERR_PRINT("Face mismatch bug! fix code");
  1164. }
  1165. }
  1166. brush->build_from_faces(faces, uvs, smooth, materials, invert);
  1167. return brush;
  1168. }
  1169. void CSGTorus::_bind_methods() {
  1170. ClassDB::bind_method(D_METHOD("set_inner_radius", "radius"), &CSGTorus::set_inner_radius);
  1171. ClassDB::bind_method(D_METHOD("get_inner_radius"), &CSGTorus::get_inner_radius);
  1172. ClassDB::bind_method(D_METHOD("set_outer_radius", "radius"), &CSGTorus::set_outer_radius);
  1173. ClassDB::bind_method(D_METHOD("get_outer_radius"), &CSGTorus::get_outer_radius);
  1174. ClassDB::bind_method(D_METHOD("set_sides", "sides"), &CSGTorus::set_sides);
  1175. ClassDB::bind_method(D_METHOD("get_sides"), &CSGTorus::get_sides);
  1176. ClassDB::bind_method(D_METHOD("set_ring_sides", "sides"), &CSGTorus::set_ring_sides);
  1177. ClassDB::bind_method(D_METHOD("get_ring_sides"), &CSGTorus::get_ring_sides);
  1178. ClassDB::bind_method(D_METHOD("set_material", "material"), &CSGTorus::set_material);
  1179. ClassDB::bind_method(D_METHOD("get_material"), &CSGTorus::get_material);
  1180. ClassDB::bind_method(D_METHOD("set_smooth_faces", "smooth_faces"), &CSGTorus::set_smooth_faces);
  1181. ClassDB::bind_method(D_METHOD("get_smooth_faces"), &CSGTorus::get_smooth_faces);
  1182. ADD_PROPERTY(PropertyInfo(Variant::REAL, "inner_radius", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_inner_radius", "get_inner_radius");
  1183. ADD_PROPERTY(PropertyInfo(Variant::REAL, "outer_radius", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_outer_radius", "get_outer_radius");
  1184. ADD_PROPERTY(PropertyInfo(Variant::INT, "sides", PROPERTY_HINT_RANGE, "3,64,1"), "set_sides", "get_sides");
  1185. ADD_PROPERTY(PropertyInfo(Variant::INT, "ring_sides", PROPERTY_HINT_RANGE, "3,64,1"), "set_ring_sides", "get_ring_sides");
  1186. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "smooth_faces"), "set_smooth_faces", "get_smooth_faces");
  1187. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "material", PROPERTY_HINT_RESOURCE_TYPE, "SpatialMaterial,ShaderMaterial"), "set_material", "get_material");
  1188. }
  1189. void CSGTorus::set_inner_radius(const float p_inner_radius) {
  1190. inner_radius = p_inner_radius;
  1191. _make_dirty();
  1192. update_gizmo();
  1193. }
  1194. float CSGTorus::get_inner_radius() const {
  1195. return inner_radius;
  1196. }
  1197. void CSGTorus::set_outer_radius(const float p_outer_radius) {
  1198. outer_radius = p_outer_radius;
  1199. _make_dirty();
  1200. update_gizmo();
  1201. }
  1202. float CSGTorus::get_outer_radius() const {
  1203. return outer_radius;
  1204. }
  1205. void CSGTorus::set_sides(const int p_sides) {
  1206. ERR_FAIL_COND(p_sides < 3);
  1207. sides = p_sides;
  1208. _make_dirty();
  1209. update_gizmo();
  1210. }
  1211. int CSGTorus::get_sides() const {
  1212. return sides;
  1213. }
  1214. void CSGTorus::set_ring_sides(const int p_ring_sides) {
  1215. ERR_FAIL_COND(p_ring_sides < 3);
  1216. ring_sides = p_ring_sides;
  1217. _make_dirty();
  1218. update_gizmo();
  1219. }
  1220. int CSGTorus::get_ring_sides() const {
  1221. return ring_sides;
  1222. }
  1223. void CSGTorus::set_smooth_faces(const bool p_smooth_faces) {
  1224. smooth_faces = p_smooth_faces;
  1225. _make_dirty();
  1226. }
  1227. bool CSGTorus::get_smooth_faces() const {
  1228. return smooth_faces;
  1229. }
  1230. void CSGTorus::set_material(const Ref<Material> &p_material) {
  1231. material = p_material;
  1232. _make_dirty();
  1233. }
  1234. Ref<Material> CSGTorus::get_material() const {
  1235. return material;
  1236. }
  1237. CSGTorus::CSGTorus() {
  1238. // defaults
  1239. inner_radius = 2.0;
  1240. outer_radius = 3.0;
  1241. sides = 8;
  1242. ring_sides = 6;
  1243. smooth_faces = true;
  1244. }
  1245. ///////////////
  1246. CSGBrush *CSGPolygon::_build_brush() {
  1247. // set our bounding box
  1248. if (polygon.size() < 3)
  1249. return NULL;
  1250. Vector<Point2> final_polygon = polygon;
  1251. if (Triangulate::get_area(final_polygon) > 0) {
  1252. final_polygon.invert();
  1253. }
  1254. Vector<int> triangles = Geometry::triangulate_polygon(final_polygon);
  1255. if (triangles.size() < 3)
  1256. return NULL;
  1257. Path *path = NULL;
  1258. Ref<Curve3D> curve;
  1259. if (mode == MODE_PATH) {
  1260. if (!has_node(path_node))
  1261. return NULL;
  1262. Node *n = get_node(path_node);
  1263. if (!n)
  1264. return NULL;
  1265. path = Object::cast_to<Path>(n);
  1266. if (!path)
  1267. return NULL;
  1268. if (path != path_cache) {
  1269. if (path_cache) {
  1270. path_cache->disconnect("tree_exited", this, "_path_exited");
  1271. path_cache->disconnect("curve_changed", this, "_path_changed");
  1272. path_cache = NULL;
  1273. }
  1274. path_cache = path;
  1275. if (path_cache) {
  1276. path_cache->connect("tree_exited", this, "_path_exited");
  1277. path_cache->connect("curve_changed", this, "_path_changed");
  1278. path_cache = NULL;
  1279. }
  1280. }
  1281. curve = path->get_curve();
  1282. if (curve.is_null())
  1283. return NULL;
  1284. if (curve->get_baked_length() <= 0)
  1285. return NULL;
  1286. }
  1287. CSGBrush *brush = memnew(CSGBrush);
  1288. int face_count = 0;
  1289. switch (mode) {
  1290. case MODE_DEPTH: face_count = triangles.size() * 2 / 3 + (final_polygon.size()) * 2; break;
  1291. case MODE_SPIN: face_count = (spin_degrees < 360 ? triangles.size() * 2 / 3 : 0) + (final_polygon.size()) * 2 * spin_sides; break;
  1292. case MODE_PATH: {
  1293. float bl = curve->get_baked_length();
  1294. int splits = MAX(2, Math::ceil(bl / path_interval));
  1295. if (path_joined) {
  1296. face_count = splits * final_polygon.size() * 2;
  1297. } else {
  1298. face_count = triangles.size() * 2 / 3 + splits * final_polygon.size() * 2;
  1299. }
  1300. } break;
  1301. }
  1302. bool invert_val = is_inverting_faces();
  1303. Ref<Material> material = get_material();
  1304. PoolVector<Vector3> faces;
  1305. PoolVector<Vector2> uvs;
  1306. PoolVector<bool> smooth;
  1307. PoolVector<Ref<Material> > materials;
  1308. PoolVector<bool> invert;
  1309. faces.resize(face_count * 3);
  1310. uvs.resize(face_count * 3);
  1311. smooth.resize(face_count);
  1312. materials.resize(face_count);
  1313. invert.resize(face_count);
  1314. AABB aabb; //must be computed
  1315. {
  1316. PoolVector<Vector3>::Write facesw = faces.write();
  1317. PoolVector<Vector2>::Write uvsw = uvs.write();
  1318. PoolVector<bool>::Write smoothw = smooth.write();
  1319. PoolVector<Ref<Material> >::Write materialsw = materials.write();
  1320. PoolVector<bool>::Write invertw = invert.write();
  1321. int face = 0;
  1322. switch (mode) {
  1323. case MODE_DEPTH: {
  1324. //add triangles, front and back
  1325. for (int i = 0; i < 2; i++) {
  1326. for (int j = 0; j < triangles.size(); j += 3) {
  1327. for (int k = 0; k < 3; k++) {
  1328. int src[3] = { 0, i == 0 ? 1 : 2, i == 0 ? 2 : 1 };
  1329. Vector2 p = final_polygon[triangles[j + src[k]]];
  1330. Vector3 v = Vector3(p.x, p.y, 0);
  1331. if (i == 0) {
  1332. v.z -= depth;
  1333. }
  1334. facesw[face * 3 + k] = v;
  1335. }
  1336. smoothw[face] = false;
  1337. materialsw[face] = material;
  1338. invertw[face] = invert_val;
  1339. face++;
  1340. }
  1341. }
  1342. //add triangles for depth
  1343. for (int i = 0; i < final_polygon.size(); i++) {
  1344. int i_n = (i + 1) % final_polygon.size();
  1345. Vector3 v[4] = {
  1346. Vector3(final_polygon[i].x, final_polygon[i].y, -depth),
  1347. Vector3(final_polygon[i_n].x, final_polygon[i_n].y, -depth),
  1348. Vector3(final_polygon[i_n].x, final_polygon[i_n].y, 0),
  1349. Vector3(final_polygon[i].x, final_polygon[i].y, 0),
  1350. };
  1351. Vector2 u[4] = {
  1352. Vector2(0, 0),
  1353. Vector2(0, 1),
  1354. Vector2(1, 1),
  1355. Vector2(1, 0)
  1356. };
  1357. // face 1
  1358. facesw[face * 3 + 0] = v[0];
  1359. facesw[face * 3 + 1] = v[1];
  1360. facesw[face * 3 + 2] = v[2];
  1361. uvsw[face * 3 + 0] = u[0];
  1362. uvsw[face * 3 + 1] = u[1];
  1363. uvsw[face * 3 + 2] = u[2];
  1364. smoothw[face] = smooth_faces;
  1365. invertw[face] = invert_val;
  1366. materialsw[face] = material;
  1367. face++;
  1368. // face 2
  1369. facesw[face * 3 + 0] = v[2];
  1370. facesw[face * 3 + 1] = v[3];
  1371. facesw[face * 3 + 2] = v[0];
  1372. uvsw[face * 3 + 0] = u[2];
  1373. uvsw[face * 3 + 1] = u[3];
  1374. uvsw[face * 3 + 2] = u[0];
  1375. smoothw[face] = smooth_faces;
  1376. invertw[face] = invert_val;
  1377. materialsw[face] = material;
  1378. face++;
  1379. }
  1380. } break;
  1381. case MODE_SPIN: {
  1382. for (int i = 0; i < spin_sides; i++) {
  1383. float inci = float(i) / spin_sides;
  1384. float inci_n = float((i + 1)) / spin_sides;
  1385. float angi = -(inci * spin_degrees / 360.0) * Math_PI * 2.0;
  1386. float angi_n = -(inci_n * spin_degrees / 360.0) * Math_PI * 2.0;
  1387. Vector3 normali = Vector3(Math::cos(angi), 0, Math::sin(angi));
  1388. Vector3 normali_n = Vector3(Math::cos(angi_n), 0, Math::sin(angi_n));
  1389. //add triangles for depth
  1390. for (int j = 0; j < final_polygon.size(); j++) {
  1391. int j_n = (j + 1) % final_polygon.size();
  1392. Vector3 v[4] = {
  1393. Vector3(normali.x * final_polygon[j].x, final_polygon[j].y, normali.z * final_polygon[j].x),
  1394. Vector3(normali.x * final_polygon[j_n].x, final_polygon[j_n].y, normali.z * final_polygon[j_n].x),
  1395. Vector3(normali_n.x * final_polygon[j_n].x, final_polygon[j_n].y, normali_n.z * final_polygon[j_n].x),
  1396. Vector3(normali_n.x * final_polygon[j].x, final_polygon[j].y, normali_n.z * final_polygon[j].x),
  1397. };
  1398. Vector2 u[4] = {
  1399. Vector2(0, 0),
  1400. Vector2(0, 1),
  1401. Vector2(1, 1),
  1402. Vector2(1, 0)
  1403. };
  1404. // face 1
  1405. facesw[face * 3 + 0] = v[0];
  1406. facesw[face * 3 + 1] = v[2];
  1407. facesw[face * 3 + 2] = v[1];
  1408. uvsw[face * 3 + 0] = u[0];
  1409. uvsw[face * 3 + 1] = u[2];
  1410. uvsw[face * 3 + 2] = u[1];
  1411. smoothw[face] = smooth_faces;
  1412. invertw[face] = invert_val;
  1413. materialsw[face] = material;
  1414. face++;
  1415. // face 2
  1416. facesw[face * 3 + 0] = v[2];
  1417. facesw[face * 3 + 1] = v[0];
  1418. facesw[face * 3 + 2] = v[3];
  1419. uvsw[face * 3 + 0] = u[2];
  1420. uvsw[face * 3 + 1] = u[0];
  1421. uvsw[face * 3 + 2] = u[3];
  1422. smoothw[face] = smooth_faces;
  1423. invertw[face] = invert_val;
  1424. materialsw[face] = material;
  1425. face++;
  1426. }
  1427. if (i == 0 && spin_degrees < 360) {
  1428. for (int j = 0; j < triangles.size(); j += 3) {
  1429. for (int k = 0; k < 3; k++) {
  1430. int src[3] = { 0, 2, 1 };
  1431. Vector2 p = final_polygon[triangles[j + src[k]]];
  1432. Vector3 v = Vector3(p.x, p.y, 0);
  1433. facesw[face * 3 + k] = v;
  1434. }
  1435. smoothw[face] = false;
  1436. materialsw[face] = material;
  1437. invertw[face] = invert_val;
  1438. face++;
  1439. }
  1440. }
  1441. if (i == spin_sides - 1 && spin_degrees < 360) {
  1442. for (int j = 0; j < triangles.size(); j += 3) {
  1443. for (int k = 0; k < 3; k++) {
  1444. int src[3] = { 0, 1, 2 };
  1445. Vector2 p = final_polygon[triangles[j + src[k]]];
  1446. Vector3 v = Vector3(normali_n.x * p.x, p.y, normali_n.z * p.x);
  1447. facesw[face * 3 + k] = v;
  1448. }
  1449. smoothw[face] = false;
  1450. materialsw[face] = material;
  1451. invertw[face] = invert_val;
  1452. face++;
  1453. }
  1454. }
  1455. }
  1456. } break;
  1457. case MODE_PATH: {
  1458. float bl = curve->get_baked_length();
  1459. int splits = MAX(2, Math::ceil(bl / path_interval));
  1460. float u1 = 0.0;
  1461. float u2 = path_continuous_u ? 0.0 : 1.0;
  1462. Transform path_to_this;
  1463. if (!path_local) {
  1464. // center on paths origin
  1465. path_to_this = get_global_transform().affine_inverse() * path->get_global_transform();
  1466. }
  1467. Transform prev_xf;
  1468. Vector3 lookat_dir;
  1469. if (path_rotation == PATH_ROTATION_POLYGON) {
  1470. lookat_dir = (path->get_global_transform().affine_inverse() * get_global_transform()).xform(Vector3(0, 0, -1));
  1471. } else {
  1472. Vector3 p1, p2;
  1473. p1 = curve->interpolate_baked(0);
  1474. p2 = curve->interpolate_baked(0.1);
  1475. lookat_dir = (p2 - p1).normalized();
  1476. }
  1477. for (int i = 0; i <= splits; i++) {
  1478. float ofs = i * path_interval;
  1479. if (i == splits && path_joined) {
  1480. ofs = 0.0;
  1481. }
  1482. Transform xf;
  1483. xf.origin = curve->interpolate_baked(ofs);
  1484. Vector3 local_dir;
  1485. if (path_rotation == PATH_ROTATION_PATH_FOLLOW && ofs > 0) {
  1486. //before end
  1487. Vector3 p1 = curve->interpolate_baked(ofs - 0.1);
  1488. Vector3 p2 = curve->interpolate_baked(ofs);
  1489. local_dir = (p2 - p1).normalized();
  1490. } else {
  1491. local_dir = lookat_dir;
  1492. }
  1493. xf = xf.looking_at(xf.origin + local_dir, Vector3(0, 1, 0));
  1494. Basis rot(Vector3(0, 0, 1), curve->interpolate_baked_tilt(ofs));
  1495. xf = xf * rot; //post mult
  1496. xf = path_to_this * xf;
  1497. if (i > 0) {
  1498. if (path_continuous_u) {
  1499. u1 = u2;
  1500. u2 += (prev_xf.origin - xf.origin).length();
  1501. };
  1502. //put triangles where they belong
  1503. //add triangles for depth
  1504. for (int j = 0; j < final_polygon.size(); j++) {
  1505. int j_n = (j + 1) % final_polygon.size();
  1506. Vector3 v[4] = {
  1507. prev_xf.xform(Vector3(final_polygon[j].x, final_polygon[j].y, 0)),
  1508. prev_xf.xform(Vector3(final_polygon[j_n].x, final_polygon[j_n].y, 0)),
  1509. xf.xform(Vector3(final_polygon[j_n].x, final_polygon[j_n].y, 0)),
  1510. xf.xform(Vector3(final_polygon[j].x, final_polygon[j].y, 0)),
  1511. };
  1512. Vector2 u[4] = {
  1513. Vector2(u1, 0),
  1514. Vector2(u1, 1),
  1515. Vector2(u2, 1),
  1516. Vector2(u2, 0)
  1517. };
  1518. // face 1
  1519. facesw[face * 3 + 0] = v[0];
  1520. facesw[face * 3 + 1] = v[1];
  1521. facesw[face * 3 + 2] = v[2];
  1522. uvsw[face * 3 + 0] = u[0];
  1523. uvsw[face * 3 + 1] = u[1];
  1524. uvsw[face * 3 + 2] = u[2];
  1525. smoothw[face] = smooth_faces;
  1526. invertw[face] = invert_val;
  1527. materialsw[face] = material;
  1528. face++;
  1529. // face 2
  1530. facesw[face * 3 + 0] = v[2];
  1531. facesw[face * 3 + 1] = v[3];
  1532. facesw[face * 3 + 2] = v[0];
  1533. uvsw[face * 3 + 0] = u[2];
  1534. uvsw[face * 3 + 1] = u[3];
  1535. uvsw[face * 3 + 2] = u[0];
  1536. smoothw[face] = smooth_faces;
  1537. invertw[face] = invert_val;
  1538. materialsw[face] = material;
  1539. face++;
  1540. }
  1541. }
  1542. if (i == 0 && !path_joined) {
  1543. for (int j = 0; j < triangles.size(); j += 3) {
  1544. for (int k = 0; k < 3; k++) {
  1545. int src[3] = { 0, 1, 2 };
  1546. Vector2 p = final_polygon[triangles[j + src[k]]];
  1547. Vector3 v = Vector3(p.x, p.y, 0);
  1548. facesw[face * 3 + k] = xf.xform(v);
  1549. }
  1550. smoothw[face] = false;
  1551. materialsw[face] = material;
  1552. invertw[face] = invert_val;
  1553. face++;
  1554. }
  1555. }
  1556. if (i == splits && !path_joined) {
  1557. for (int j = 0; j < triangles.size(); j += 3) {
  1558. for (int k = 0; k < 3; k++) {
  1559. int src[3] = { 0, 2, 1 };
  1560. Vector2 p = final_polygon[triangles[j + src[k]]];
  1561. Vector3 v = Vector3(p.x, p.y, 0);
  1562. facesw[face * 3 + k] = xf.xform(v);
  1563. }
  1564. smoothw[face] = false;
  1565. materialsw[face] = material;
  1566. invertw[face] = invert_val;
  1567. face++;
  1568. }
  1569. }
  1570. prev_xf = xf;
  1571. }
  1572. } break;
  1573. }
  1574. if (face != face_count) {
  1575. ERR_PRINT("Face mismatch bug! fix code");
  1576. }
  1577. for (int i = 0; i < face_count * 3; i++) {
  1578. if (i == 0) {
  1579. aabb.position = facesw[i];
  1580. } else {
  1581. aabb.expand_to(facesw[i]);
  1582. }
  1583. }
  1584. }
  1585. brush->build_from_faces(faces, uvs, smooth, materials, invert);
  1586. return brush;
  1587. }
  1588. void CSGPolygon::_notification(int p_what) {
  1589. if (p_what == NOTIFICATION_EXIT_TREE) {
  1590. if (path_cache) {
  1591. path_cache->disconnect("tree_exited", this, "_path_exited");
  1592. path_cache->disconnect("curve_changed", this, "_path_changed");
  1593. path_cache = NULL;
  1594. }
  1595. }
  1596. }
  1597. void CSGPolygon::_validate_property(PropertyInfo &property) const {
  1598. if (property.name.begins_with("spin") && mode != MODE_SPIN) {
  1599. property.usage = 0;
  1600. }
  1601. if (property.name.begins_with("path") && mode != MODE_PATH) {
  1602. property.usage = 0;
  1603. }
  1604. if (property.name == "depth" && mode != MODE_DEPTH) {
  1605. property.usage = 0;
  1606. }
  1607. CSGShape::_validate_property(property);
  1608. }
  1609. void CSGPolygon::_path_changed() {
  1610. _make_dirty();
  1611. update_gizmo();
  1612. }
  1613. void CSGPolygon::_path_exited() {
  1614. path_cache = NULL;
  1615. }
  1616. void CSGPolygon::_bind_methods() {
  1617. ClassDB::bind_method(D_METHOD("set_polygon", "polygon"), &CSGPolygon::set_polygon);
  1618. ClassDB::bind_method(D_METHOD("get_polygon"), &CSGPolygon::get_polygon);
  1619. ClassDB::bind_method(D_METHOD("set_mode", "mode"), &CSGPolygon::set_mode);
  1620. ClassDB::bind_method(D_METHOD("get_mode"), &CSGPolygon::get_mode);
  1621. ClassDB::bind_method(D_METHOD("set_depth", "depth"), &CSGPolygon::set_depth);
  1622. ClassDB::bind_method(D_METHOD("get_depth"), &CSGPolygon::get_depth);
  1623. ClassDB::bind_method(D_METHOD("set_spin_degrees", "degrees"), &CSGPolygon::set_spin_degrees);
  1624. ClassDB::bind_method(D_METHOD("get_spin_degrees"), &CSGPolygon::get_spin_degrees);
  1625. ClassDB::bind_method(D_METHOD("set_spin_sides", "spin_sides"), &CSGPolygon::set_spin_sides);
  1626. ClassDB::bind_method(D_METHOD("get_spin_sides"), &CSGPolygon::get_spin_sides);
  1627. ClassDB::bind_method(D_METHOD("set_path_node", "path"), &CSGPolygon::set_path_node);
  1628. ClassDB::bind_method(D_METHOD("get_path_node"), &CSGPolygon::get_path_node);
  1629. ClassDB::bind_method(D_METHOD("set_path_interval", "distance"), &CSGPolygon::set_path_interval);
  1630. ClassDB::bind_method(D_METHOD("get_path_interval"), &CSGPolygon::get_path_interval);
  1631. ClassDB::bind_method(D_METHOD("set_path_rotation", "mode"), &CSGPolygon::set_path_rotation);
  1632. ClassDB::bind_method(D_METHOD("get_path_rotation"), &CSGPolygon::get_path_rotation);
  1633. ClassDB::bind_method(D_METHOD("set_path_local", "enable"), &CSGPolygon::set_path_local);
  1634. ClassDB::bind_method(D_METHOD("is_path_local"), &CSGPolygon::is_path_local);
  1635. ClassDB::bind_method(D_METHOD("set_path_continuous_u", "enable"), &CSGPolygon::set_path_continuous_u);
  1636. ClassDB::bind_method(D_METHOD("is_path_continuous_u"), &CSGPolygon::is_path_continuous_u);
  1637. ClassDB::bind_method(D_METHOD("set_path_joined", "enable"), &CSGPolygon::set_path_joined);
  1638. ClassDB::bind_method(D_METHOD("is_path_joined"), &CSGPolygon::is_path_joined);
  1639. ClassDB::bind_method(D_METHOD("set_material", "material"), &CSGPolygon::set_material);
  1640. ClassDB::bind_method(D_METHOD("get_material"), &CSGPolygon::get_material);
  1641. ClassDB::bind_method(D_METHOD("set_smooth_faces", "smooth_faces"), &CSGPolygon::set_smooth_faces);
  1642. ClassDB::bind_method(D_METHOD("get_smooth_faces"), &CSGPolygon::get_smooth_faces);
  1643. ClassDB::bind_method(D_METHOD("_is_editable_3d_polygon"), &CSGPolygon::_is_editable_3d_polygon);
  1644. ClassDB::bind_method(D_METHOD("_has_editable_3d_polygon_no_depth"), &CSGPolygon::_has_editable_3d_polygon_no_depth);
  1645. ClassDB::bind_method(D_METHOD("_path_exited"), &CSGPolygon::_path_exited);
  1646. ClassDB::bind_method(D_METHOD("_path_changed"), &CSGPolygon::_path_changed);
  1647. ADD_PROPERTY(PropertyInfo(Variant::POOL_VECTOR2_ARRAY, "polygon"), "set_polygon", "get_polygon");
  1648. ADD_PROPERTY(PropertyInfo(Variant::INT, "mode", PROPERTY_HINT_ENUM, "Depth,Spin,Path"), "set_mode", "get_mode");
  1649. ADD_PROPERTY(PropertyInfo(Variant::REAL, "depth", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_depth", "get_depth");
  1650. ADD_PROPERTY(PropertyInfo(Variant::REAL, "spin_degrees", PROPERTY_HINT_RANGE, "1,360,0.1"), "set_spin_degrees", "get_spin_degrees");
  1651. ADD_PROPERTY(PropertyInfo(Variant::INT, "spin_sides", PROPERTY_HINT_RANGE, "3,64,1"), "set_spin_sides", "get_spin_sides");
  1652. ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH, "path_node", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "Path"), "set_path_node", "get_path_node");
  1653. ADD_PROPERTY(PropertyInfo(Variant::REAL, "path_interval", PROPERTY_HINT_EXP_RANGE, "0.001,1000.0,0.001,or_greater"), "set_path_interval", "get_path_interval");
  1654. ADD_PROPERTY(PropertyInfo(Variant::INT, "path_rotation", PROPERTY_HINT_ENUM, "Polygon,Path,PathFollow"), "set_path_rotation", "get_path_rotation");
  1655. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "path_local"), "set_path_local", "is_path_local");
  1656. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "path_continuous_u"), "set_path_continuous_u", "is_path_continuous_u");
  1657. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "path_joined"), "set_path_joined", "is_path_joined");
  1658. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "smooth_faces"), "set_smooth_faces", "get_smooth_faces");
  1659. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "material", PROPERTY_HINT_RESOURCE_TYPE, "SpatialMaterial,ShaderMaterial"), "set_material", "get_material");
  1660. BIND_ENUM_CONSTANT(MODE_DEPTH);
  1661. BIND_ENUM_CONSTANT(MODE_SPIN);
  1662. BIND_ENUM_CONSTANT(MODE_PATH);
  1663. BIND_ENUM_CONSTANT(PATH_ROTATION_POLYGON);
  1664. BIND_ENUM_CONSTANT(PATH_ROTATION_PATH);
  1665. BIND_ENUM_CONSTANT(PATH_ROTATION_PATH_FOLLOW);
  1666. }
  1667. void CSGPolygon::set_polygon(const Vector<Vector2> &p_polygon) {
  1668. polygon = p_polygon;
  1669. _make_dirty();
  1670. update_gizmo();
  1671. }
  1672. Vector<Vector2> CSGPolygon::get_polygon() const {
  1673. return polygon;
  1674. }
  1675. void CSGPolygon::set_mode(Mode p_mode) {
  1676. mode = p_mode;
  1677. _make_dirty();
  1678. update_gizmo();
  1679. _change_notify();
  1680. }
  1681. CSGPolygon::Mode CSGPolygon::get_mode() const {
  1682. return mode;
  1683. }
  1684. void CSGPolygon::set_depth(const float p_depth) {
  1685. ERR_FAIL_COND(p_depth < 0.001);
  1686. depth = p_depth;
  1687. _make_dirty();
  1688. update_gizmo();
  1689. }
  1690. float CSGPolygon::get_depth() const {
  1691. return depth;
  1692. }
  1693. void CSGPolygon::set_path_continuous_u(bool p_enable) {
  1694. path_continuous_u = p_enable;
  1695. _make_dirty();
  1696. }
  1697. bool CSGPolygon::is_path_continuous_u() const {
  1698. return path_continuous_u;
  1699. }
  1700. void CSGPolygon::set_spin_degrees(const float p_spin_degrees) {
  1701. ERR_FAIL_COND(p_spin_degrees < 0.01 || p_spin_degrees > 360);
  1702. spin_degrees = p_spin_degrees;
  1703. _make_dirty();
  1704. update_gizmo();
  1705. }
  1706. float CSGPolygon::get_spin_degrees() const {
  1707. return spin_degrees;
  1708. }
  1709. void CSGPolygon::set_spin_sides(const int p_spin_sides) {
  1710. ERR_FAIL_COND(p_spin_sides < 3);
  1711. spin_sides = p_spin_sides;
  1712. _make_dirty();
  1713. update_gizmo();
  1714. }
  1715. int CSGPolygon::get_spin_sides() const {
  1716. return spin_sides;
  1717. }
  1718. void CSGPolygon::set_path_node(const NodePath &p_path) {
  1719. path_node = p_path;
  1720. _make_dirty();
  1721. update_gizmo();
  1722. }
  1723. NodePath CSGPolygon::get_path_node() const {
  1724. return path_node;
  1725. }
  1726. void CSGPolygon::set_path_interval(float p_interval) {
  1727. ERR_FAIL_COND(p_interval < 0.001);
  1728. path_interval = p_interval;
  1729. _make_dirty();
  1730. update_gizmo();
  1731. }
  1732. float CSGPolygon::get_path_interval() const {
  1733. return path_interval;
  1734. }
  1735. void CSGPolygon::set_path_rotation(PathRotation p_rotation) {
  1736. path_rotation = p_rotation;
  1737. _make_dirty();
  1738. update_gizmo();
  1739. }
  1740. CSGPolygon::PathRotation CSGPolygon::get_path_rotation() const {
  1741. return path_rotation;
  1742. }
  1743. void CSGPolygon::set_path_local(bool p_enable) {
  1744. path_local = p_enable;
  1745. _make_dirty();
  1746. update_gizmo();
  1747. }
  1748. bool CSGPolygon::is_path_local() const {
  1749. return path_local;
  1750. }
  1751. void CSGPolygon::set_path_joined(bool p_enable) {
  1752. path_joined = p_enable;
  1753. _make_dirty();
  1754. update_gizmo();
  1755. }
  1756. bool CSGPolygon::is_path_joined() const {
  1757. return path_joined;
  1758. }
  1759. void CSGPolygon::set_smooth_faces(const bool p_smooth_faces) {
  1760. smooth_faces = p_smooth_faces;
  1761. _make_dirty();
  1762. }
  1763. bool CSGPolygon::get_smooth_faces() const {
  1764. return smooth_faces;
  1765. }
  1766. void CSGPolygon::set_material(const Ref<Material> &p_material) {
  1767. material = p_material;
  1768. _make_dirty();
  1769. }
  1770. Ref<Material> CSGPolygon::get_material() const {
  1771. return material;
  1772. }
  1773. bool CSGPolygon::_is_editable_3d_polygon() const {
  1774. return true;
  1775. }
  1776. bool CSGPolygon::_has_editable_3d_polygon_no_depth() const {
  1777. return true;
  1778. }
  1779. CSGPolygon::CSGPolygon() {
  1780. // defaults
  1781. mode = MODE_DEPTH;
  1782. polygon.push_back(Vector2(0, 0));
  1783. polygon.push_back(Vector2(0, 1));
  1784. polygon.push_back(Vector2(1, 1));
  1785. polygon.push_back(Vector2(1, 0));
  1786. depth = 1.0;
  1787. spin_degrees = 360;
  1788. spin_sides = 8;
  1789. smooth_faces = false;
  1790. path_interval = 1;
  1791. path_rotation = PATH_ROTATION_PATH;
  1792. path_local = false;
  1793. path_continuous_u = false;
  1794. path_joined = false;
  1795. path_cache = NULL;
  1796. }