| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  test_physics.cpp                                                     */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | #include "test_physics.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "map.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "math_funcs.h"
 | 
					
						
							|  |  |  | #include "os/main_loop.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "os/os.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "print_string.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "quick_hull.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "servers/physics_server.h"
 | 
					
						
							|  |  |  | #include "servers/visual_server.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class TestPhysicsMainLoop : public MainLoop { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(TestPhysicsMainLoop, MainLoop); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	enum { | 
					
						
							|  |  |  | 		LINK_COUNT = 20, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RID test_cube; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	RID plane; | 
					
						
							|  |  |  | 	RID sphere; | 
					
						
							|  |  |  | 	RID light; | 
					
						
							|  |  |  | 	RID camera; | 
					
						
							|  |  |  | 	RID mover; | 
					
						
							|  |  |  | 	RID scenario; | 
					
						
							|  |  |  | 	RID space; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RID character; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	float ofs_x, ofs_y; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Point2 joy_direction; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	List<RID> bodies; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Map<PhysicsServer::ShapeType, RID> type_shape_map; | 
					
						
							|  |  |  | 	Map<PhysicsServer::ShapeType, RID> type_mesh_map; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void body_changed_transform(Object *p_state, RID p_visual_instance) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		PhysicsDirectBodyState *state = (PhysicsDirectBodyState *)p_state; | 
					
						
							|  |  |  | 		VisualServer *vs = VisualServer::get_singleton(); | 
					
						
							|  |  |  | 		Transform t = state->get_transform(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//t.basis.scale( Vector3(1.0,0.5,0.2) );
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		vs->instance_set_transform(p_visual_instance, t); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool quit; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods() { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ClassDB::bind_method("body_changed_transform", &TestPhysicsMainLoop::body_changed_transform); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	RID create_body(PhysicsServer::ShapeType p_shape, PhysicsServer::BodyMode p_body, const Transform p_location, bool p_active_default = true, const Transform &p_shape_xform = Transform()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		VisualServer *vs = VisualServer::get_singleton(); | 
					
						
							|  |  |  | 		PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID mesh_instance = vs->instance_create2(type_mesh_map[p_shape], scenario); | 
					
						
							|  |  |  | 		RID body = ps->body_create(p_body, !p_active_default); | 
					
						
							|  |  |  | 		ps->body_set_space(body, space); | 
					
						
							|  |  |  | 		ps->body_set_param(body, PhysicsServer::BODY_PARAM_BOUNCE, 0.0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//todo set space
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->body_add_shape(body, type_shape_map[p_shape]); | 
					
						
							|  |  |  | 		ps->body_set_force_integration_callback(body, this, "body_changed_transform", mesh_instance); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->body_set_state(body, PhysicsServer::BODY_STATE_TRANSFORM, p_location); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		bodies.push_back(body); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (p_body == PhysicsServer::BODY_MODE_STATIC) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			vs->instance_set_transform(mesh_instance, p_location); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return body; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	RID create_static_plane(const Plane &p_plane) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-14 18:03:38 +01:00
										 |  |  | 		RID plane_shape = ps->shape_create(PhysicsServer::SHAPE_PLANE); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->shape_set_data(plane_shape, p_plane); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID b = ps->body_create(PhysicsServer::BODY_MODE_STATIC); | 
					
						
							|  |  |  | 		ps->body_set_space(b, space); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//todo set space
 | 
					
						
							|  |  |  | 		ps->body_add_shape(b, plane_shape); | 
					
						
							|  |  |  | 		return b; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void configure_body(RID p_body, float p_mass, float p_friction, float p_bounce) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							|  |  |  | 		ps->body_set_param(p_body, PhysicsServer::BODY_PARAM_MASS, p_mass); | 
					
						
							|  |  |  | 		ps->body_set_param(p_body, PhysicsServer::BODY_PARAM_FRICTION, p_friction); | 
					
						
							|  |  |  | 		ps->body_set_param(p_body, PhysicsServer::BODY_PARAM_BOUNCE, p_bounce); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void init_shapes() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		VisualServer *vs = VisualServer::get_singleton(); | 
					
						
							|  |  |  | 		PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* SPHERE SHAPE */ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID sphere_mesh = vs->make_sphere_mesh(10, 20, 0.5); | 
					
						
							|  |  |  | 		type_mesh_map[PhysicsServer::SHAPE_SPHERE] = sphere_mesh; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID sphere_shape = ps->shape_create(PhysicsServer::SHAPE_SPHERE); | 
					
						
							|  |  |  | 		ps->shape_set_data(sphere_shape, 0.5); | 
					
						
							|  |  |  | 		type_shape_map[PhysicsServer::SHAPE_SPHERE] = sphere_shape; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* BOX SHAPE */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		PoolVector<Plane> box_planes = Geometry::build_box_planes(Vector3(0.5, 0.5, 0.5)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID box_mesh = vs->mesh_create(); | 
					
						
							|  |  |  | 		Geometry::MeshData box_data = Geometry::build_convex_mesh(box_planes); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		vs->mesh_add_surface_from_mesh_data(box_mesh, box_data); | 
					
						
							|  |  |  | 		type_mesh_map[PhysicsServer::SHAPE_BOX] = box_mesh; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID box_shape = ps->shape_create(PhysicsServer::SHAPE_BOX); | 
					
						
							|  |  |  | 		ps->shape_set_data(box_shape, Vector3(0.5, 0.5, 0.5)); | 
					
						
							|  |  |  | 		type_shape_map[PhysicsServer::SHAPE_BOX] = box_shape; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* CAPSULE SHAPE */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		PoolVector<Plane> capsule_planes = Geometry::build_capsule_planes(0.5, 0.7, 12, Vector3::AXIS_Z); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		RID capsule_mesh = vs->mesh_create(); | 
					
						
							|  |  |  | 		Geometry::MeshData capsule_data = Geometry::build_convex_mesh(capsule_planes); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		vs->mesh_add_surface_from_mesh_data(capsule_mesh, capsule_data); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		type_mesh_map[PhysicsServer::SHAPE_CAPSULE] = capsule_mesh; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID capsule_shape = ps->shape_create(PhysicsServer::SHAPE_CAPSULE); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Dictionary capsule_params; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		capsule_params["radius"] = 0.5; | 
					
						
							|  |  |  | 		capsule_params["height"] = 1.4; | 
					
						
							|  |  |  | 		ps->shape_set_data(capsule_shape, capsule_params); | 
					
						
							|  |  |  | 		type_shape_map[PhysicsServer::SHAPE_CAPSULE] = capsule_shape; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* CONVEX SHAPE */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		PoolVector<Plane> convex_planes = Geometry::build_cylinder_planes(0.5, 0.7, 5, Vector3::AXIS_Z); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		RID convex_mesh = vs->mesh_create(); | 
					
						
							|  |  |  | 		Geometry::MeshData convex_data = Geometry::build_convex_mesh(convex_planes); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		QuickHull::build(convex_data.vertices, convex_data); | 
					
						
							|  |  |  | 		vs->mesh_add_surface_from_mesh_data(convex_mesh, convex_data); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		type_mesh_map[PhysicsServer::SHAPE_CONVEX_POLYGON] = convex_mesh; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID convex_shape = ps->shape_create(PhysicsServer::SHAPE_CONVEX_POLYGON); | 
					
						
							|  |  |  | 		ps->shape_set_data(convex_shape, convex_data.vertices); | 
					
						
							|  |  |  | 		type_shape_map[PhysicsServer::SHAPE_CONVEX_POLYGON] = convex_shape; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void make_trimesh(Vector<Vector3> p_faces, const Transform &p_xform = Transform()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		VisualServer *vs = VisualServer::get_singleton(); | 
					
						
							|  |  |  | 		PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID trimesh_shape = ps->shape_create(PhysicsServer::SHAPE_CONCAVE_POLYGON); | 
					
						
							|  |  |  | 		ps->shape_set_data(trimesh_shape, p_faces); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		p_faces = ps->shape_get_data(trimesh_shape); // optimized one
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Vector<Vector3> normals; // for drawing
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < p_faces.size() / 3; i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Plane p(p_faces[i * 3 + 0], p_faces[i * 3 + 1], p_faces[i * 3 + 2]); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			normals.push_back(p.normal); | 
					
						
							|  |  |  | 			normals.push_back(p.normal); | 
					
						
							|  |  |  | 			normals.push_back(p.normal); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		RID trimesh_mesh = vs->mesh_create(); | 
					
						
							|  |  |  | 		Array d; | 
					
						
							|  |  |  | 		d.resize(VS::ARRAY_MAX); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		d[VS::ARRAY_VERTEX] = p_faces; | 
					
						
							|  |  |  | 		d[VS::ARRAY_NORMAL] = normals; | 
					
						
							|  |  |  | 		vs->mesh_add_surface_from_arrays(trimesh_mesh, VS::PRIMITIVE_TRIANGLES, d); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//vs->material_set_flag( trimesh_mat, VisualServer::MATERIAL_FLAG_UNSHADED,true);
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID triins = vs->instance_create2(trimesh_mesh, scenario); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID tribody = ps->body_create(PhysicsServer::BODY_MODE_STATIC); | 
					
						
							|  |  |  | 		ps->body_set_space(tribody, space); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//todo set space
 | 
					
						
							|  |  |  | 		ps->body_add_shape(tribody, trimesh_shape); | 
					
						
							|  |  |  | 		Transform tritrans = p_xform; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->body_set_state(tribody, PhysicsServer::BODY_STATE_TRANSFORM, tritrans); | 
					
						
							|  |  |  | 		vs->instance_set_transform(triins, tritrans); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//RID trimesh_material = vs->fixed_material_create();
 | 
					
						
							|  |  |  | 		//vs->material_generate( trimesh_material, Color(0.2,0.4,0.6) );
 | 
					
						
							|  |  |  | 		//vs->mesh_surface_set_material( trimesh_mesh, 0, trimesh_material );
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void make_grid(int p_width, int p_height, float p_cellsize, float p_cellheight, const Transform &p_xform = Transform()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Vector<Vector<float> > grid; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		grid.resize(p_width); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < p_width; i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			grid[i].resize(p_height); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int j = 0; j < p_height; j++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				grid[i][j] = 1.0 + Math::random(-p_cellheight, p_cellheight); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Vector<Vector3> faces; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 1; i < p_width; i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int j = 1; j < p_height; j++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define MAKE_VERTEX(m_x, m_z) \
 | 
					
						
							|  |  |  | 	faces.push_back(Vector3((m_x - p_width / 2) * p_cellsize, grid[m_x][m_z], (m_z - p_height / 2) * p_cellsize)) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				MAKE_VERTEX(i, j - 1); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i, j); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i - 1, j); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				MAKE_VERTEX(i - 1, j - 1); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i, j - 1); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i - 1, j); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		make_trimesh(faces, p_xform); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void input_event(const InputEvent &p_event) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (p_event.type == InputEvent::MOUSE_MOTION && p_event.mouse_motion.button_mask & 4) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			ofs_y -= p_event.mouse_motion.relative_y / 200.0; | 
					
						
							|  |  |  | 			ofs_x += p_event.mouse_motion.relative_x / 200.0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (p_event.type == InputEvent::MOUSE_MOTION && p_event.mouse_motion.button_mask & 1) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			float y = -p_event.mouse_motion.relative_y / 20.0; | 
					
						
							|  |  |  | 			float x = p_event.mouse_motion.relative_x / 20.0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (mover.is_valid()) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							|  |  |  | 				Transform t = ps->body_get_state(mover, PhysicsServer::BODY_STATE_TRANSFORM); | 
					
						
							|  |  |  | 				t.origin += Vector3(x, y, 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				ps->body_set_state(mover, PhysicsServer::BODY_STATE_TRANSFORM, t); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 17:05:51 -03:00
										 |  |  | 		if (p_event.type == InputEvent::JOYPAD_MOTION) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (p_event.joy_motion.axis == 0) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				joy_direction.x = p_event.joy_motion.axis_value; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (p_event.joy_motion.axis == 1) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				joy_direction.y = p_event.joy_motion.axis_value; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void request_quit() { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		quit = true; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	virtual void init() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ofs_x = ofs_y = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		init_shapes(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		space = ps->space_create(); | 
					
						
							|  |  |  | 		ps->space_set_active(space, true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		VisualServer *vs = VisualServer::get_singleton(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* LIGHT */ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID lightaux = vs->light_create(VisualServer::LIGHT_DIRECTIONAL); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//vs->light_set_color( lightaux, VisualServer::LIGHT_COLOR_AMBIENT, Color(0.0,0.0,0.0) );
 | 
					
						
							|  |  |  | 		scenario = vs->scenario_create(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		vs->light_set_shadow(lightaux, true); | 
					
						
							|  |  |  | 		light = vs->instance_create2(lightaux, scenario); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Transform t; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		t.rotate(Vector3(1.0, 0, 0), 0.6); | 
					
						
							|  |  |  | 		vs->instance_set_transform(light, t); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* CAMERA */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		camera = vs->camera_create(); | 
					
						
							| 
									
										
										
										
											2017-01-15 09:49:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID viewport = vs->viewport_create(); | 
					
						
							| 
									
										
										
										
											2017-01-15 09:49:58 -03:00
										 |  |  | 		Size2i screen_size = OS::get_singleton()->get_window_size(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		vs->viewport_set_size(viewport, screen_size.x, screen_size.y); | 
					
						
							|  |  |  | 		vs->viewport_attach_to_screen(viewport, Rect2(Vector2(), screen_size)); | 
					
						
							|  |  |  | 		vs->viewport_set_active(viewport, true); | 
					
						
							|  |  |  | 		vs->viewport_attach_camera(viewport, camera); | 
					
						
							|  |  |  | 		vs->viewport_set_scenario(viewport, scenario); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		vs->camera_set_perspective(camera, 60, 0.1, 40.0); | 
					
						
							|  |  |  | 		vs->camera_set_transform(camera, Transform(Basis(), Vector3(0, 9, 12))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//vs->scenario_set_debug(scenario,VS::SCENARIO_DEBUG_WIREFRAME);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Transform gxf; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		gxf.basis.scale(Vector3(1.4, 0.4, 1.4)); | 
					
						
							|  |  |  | 		gxf.origin = Vector3(-2, 1, -2); | 
					
						
							|  |  |  | 		make_grid(5, 5, 2.5, 1, gxf); | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 		//create_body(PhysicsServer::SHAPE_BOX,PhysicsServer::BODY_MODE_STATIC,gxf);
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//create_static_plane( Plane( Vector3(0,1,0), -2) );
 | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 		//test_joint();
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		test_fall(); | 
					
						
							|  |  |  | 		//test_joint();
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		/*
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Vector<Vector3> faces; | 
					
						
							|  |  |  | 		faces.push_back( Vector3(10,0,-5) ); | 
					
						
							|  |  |  | 		faces.push_back( Vector3(0,0,10) ); | 
					
						
							|  |  |  | 		faces.push_back( Vector3(-10,-0.2,-5) ); | 
					
						
							|  |  |  | 		make_trimesh(faces); | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 		/* Make Trimesh */ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		quit = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | #define GRID_SIZE 5
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		float grid[GRID_SIZE][GRID_SIZE]; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		for (int i=0;i<GRID_SIZE;i++) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			for (int j=0;j<GRID_SIZE;j++) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				grid[j][i]=Math::random(0.0, 1.0 ); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Vector<Vector3> faces; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		for (int i=1;i<GRID_SIZE;i++) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			for (int j=1;j<GRID_SIZE;j++) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define MAKE_VERTEX(m_x, m_z) \
 | 
					
						
							|  |  |  | 	faces.push_back(Vector3(m_x - GRID_SIZE / 2.0, grid[m_x][m_z], m_z - GRID_SIZE / 2.0) * 3.0) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				MAKE_VERTEX(i,j-1); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i,j); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i-1,j); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				MAKE_VERTEX(i-1,j-1); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i,j-1); | 
					
						
							|  |  |  | 				MAKE_VERTEX(i-1,j); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		/*
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 		faces.clear(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		faces.push_back( Vector3(0,0,-5) ); | 
					
						
							|  |  |  | 		faces.push_back( Vector3(1,0,-1) ); | 
					
						
							|  |  |  | 		faces.push_back( Vector3(-1,-0,-1) ); | 
					
						
							|  |  |  | 		*/ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID trimesh_shape = ps->shape_create(); | 
					
						
							|  |  |  | 		ps->shape_set_data(trimesh_shape, PhysicsServer::SHAPE_CONCAVE_POLYGON,faces); | 
					
						
							|  |  |  | 		faces=ps->shape_get_shape(trimesh_shape, 0); | 
					
						
							|  |  |  | 		Vector<Vector3> normals; // for drawing
 | 
					
						
							|  |  |  | 		for (int i=0;i<faces.size()/3;i++) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			Plane p( faces[i*3+0],faces[i*3+1], faces[i*3+2] ); | 
					
						
							|  |  |  | 			normals.push_back(p.normal); | 
					
						
							|  |  |  | 			normals.push_back(p.normal); | 
					
						
							|  |  |  | 			normals.push_back(p.normal); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		RID trimesh_mesh = vs->mesh_create(); | 
					
						
							|  |  |  | 		vs->mesh_add_surface(trimesh_mesh, VS::PRIMITIVE_TRIANGLES, VS::ARRAY_FORMAT_VERTEX|VS::ARRAY_FORMAT_NORMAL, faces.size() ); | 
					
						
							|  |  |  | 		vs->mesh_surface_set_array(trimesh_mesh,0,VS::ARRAY_VERTEX, faces ); | 
					
						
							|  |  |  | 		vs->mesh_surface_set_array(trimesh_mesh,0,VS::ARRAY_NORMAL, normals ); | 
					
						
							|  |  |  | 		RID trimesh_mat = vs->fixed_material_create(); | 
					
						
							|  |  |  | 		vs->material_generate( trimesh_mat, Color(1.0,0.5,0.3) ); | 
					
						
							|  |  |  | 		vs->mesh_surface_set_material( trimesh_mesh, 0, trimesh_mat ); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID triins = vs->instance_create2(trimesh_mesh); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID tribody = ps->body_create( PhysicsServer::BODY_MODE_STATIC, trimesh_shape); | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		Transform tritrans = Transform( Basis(), Vector3(0,0,-2) ); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		ps->body_set_state( tribody, PhysicsServer::BODY_STATE_TRANSFORM, tritrans ); | 
					
						
							|  |  |  | 		vs->instance_set_transform( triins, tritrans ); | 
					
						
							|  |  |  | 		RID trimesh_material = vs->fixed_material_create(); | 
					
						
							|  |  |  | 		vs->material_generate( trimesh_material, Color(0.2,0.4,0.6) ); | 
					
						
							|  |  |  | 		vs->mesh_surface_set_material( trimesh_mesh, 0, trimesh_material ); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	virtual bool iteration(float p_time) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 		if (mover.is_valid()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			static float joy_speed = 10; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							|  |  |  | 			Transform t = ps->body_get_state(mover, PhysicsServer::BODY_STATE_TRANSFORM); | 
					
						
							|  |  |  | 			t.origin += Vector3(joy_speed * joy_direction.x * p_time, -joy_speed * joy_direction.y * p_time, 0); | 
					
						
							|  |  |  | 			ps->body_set_state(mover, PhysicsServer::BODY_STATE_TRANSFORM, t); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Transform cameratr; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		cameratr.rotate(Vector3(0, 1, 0), ofs_x); | 
					
						
							|  |  |  | 		cameratr.rotate(Vector3(1, 0, 0), -ofs_y); | 
					
						
							|  |  |  | 		cameratr.translate(Vector3(0, 2, 8)); | 
					
						
							|  |  |  | 		VisualServer *vs = VisualServer::get_singleton(); | 
					
						
							|  |  |  | 		vs->camera_set_transform(camera, cameratr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return quit; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	virtual void finish() { | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void test_joint() { | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 		PhysicsServer * ps = PhysicsServer::get_singleton(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		mover = create_body(PhysicsServer::SHAPE_BOX,PhysicsServer::BODY_MODE_STATIC,Transform(Basis(),Vector3(0,0,-24))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID b = create_body(PhysicsServer::SHAPE_CAPSULE,PhysicsServer::BODY_MODE_RIGID,Transform()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ps->joint_create_double_pin(b,Vector3(0,0,1.0),mover,Vector3(0,0,0)); | 
					
						
							|  |  |  | 		ps->body_add_collision_exception(mover,b); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		List<String> cmdline = OS::get_singleton()->get_cmdline_args(); | 
					
						
							|  |  |  | 		int link_count = LINK_COUNT; | 
					
						
							|  |  |  | 		if (cmdline.size() > 0 && cmdline[cmdline.size()-1].to_int()) { | 
					
						
							|  |  |  | 			link_count = cmdline[cmdline.size()-1].to_int(); | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for(int i=0;i<link_count;i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RID c = create_body(PhysicsServer::SHAPE_CAPSULE,PhysicsServer::BODY_MODE_RIGID,Transform()); | 
					
						
							|  |  |  | 			ps->joint_create_double_pin(b,Vector3(0,0,-0.7),c,Vector3(0,0,0.7)); | 
					
						
							|  |  |  | 			ps->body_add_collision_exception(c,b); | 
					
						
							|  |  |  | 			b=c; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		create_static_plane(Plane(Vector3(0,1,0),-8)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void test_hinge() { | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 		PhysicsServer * ps = PhysicsServer::get_singleton(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		mover = create_body(PhysicsServer::SHAPE_BOX,PhysicsServer::BODY_MODE_STATIC,Transform(Basis(),Vector3(0,0,-24))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RID b = create_body(PhysicsServer::SHAPE_BOX,PhysicsServer::BODY_MODE_RIGID,Transform()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		ps->joint_create_double_hinge(b,Transform(Basis(),Vector3(1,1,1.0)),mover,Transform(Basis(),Vector3(0,0,0))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		ps->body_add_collision_exception(mover,b); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  | 		for(int i=0;i<20;i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RID c = create_body(PhysicsServer::SHAPE_CAPSULE,PhysicsServer::BODY_MODE_RIGID,Transform()); | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 			ps->joint_create_double_hinge(b,Transform(Basis(),Vector3(0,0,-0.7)),c,Transform(Basis(),Vector3(0,0,0.7))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			ps->body_add_collision_exception(c,b); | 
					
						
							|  |  |  | 			b=c; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 		//create_static_plane(Plane(Vector3(0,1,0),-8));
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void test_character() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		VisualServer *vs = VisualServer::get_singleton(); | 
					
						
							|  |  |  | 		PhysicsServer *ps = PhysicsServer::get_singleton(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		PoolVector<Plane> capsule_planes = Geometry::build_capsule_planes(0.5, 1, 12, 5, Vector3::AXIS_Y); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		RID capsule_mesh = vs->mesh_create(); | 
					
						
							|  |  |  | 		Geometry::MeshData capsule_data = Geometry::build_convex_mesh(capsule_planes); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		vs->mesh_add_surface_from_mesh_data(capsule_mesh, capsule_data); | 
					
						
							|  |  |  | 		type_mesh_map[PhysicsServer::SHAPE_CAPSULE] = capsule_mesh; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID capsule_shape = ps->shape_create(PhysicsServer::SHAPE_CAPSULE); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Dictionary capsule_params; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		capsule_params["radius"] = 0.5; | 
					
						
							|  |  |  | 		capsule_params["height"] = 1; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Transform shape_xform; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		shape_xform.rotate(Vector3(1, 0, 0), Math_PI / 2.0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//shape_xform.origin=Vector3(1,1,1);
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->shape_set_data(capsule_shape, capsule_params); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		RID mesh_instance = vs->instance_create2(capsule_mesh, scenario); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		character = ps->body_create(PhysicsServer::BODY_MODE_CHARACTER); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->body_set_space(character, space); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		//todo add space
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->body_add_shape(character, capsule_shape); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->body_set_force_integration_callback(character, this, "body_changed_transform", mesh_instance); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ps->body_set_state(character, PhysicsServer::BODY_STATE_TRANSFORM, Transform(Basis(), Vector3(-2, 5, -2))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		bodies.push_back(character); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void test_fall() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < 35; i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			static const PhysicsServer::ShapeType shape_idx[] = { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				PhysicsServer::SHAPE_CAPSULE, | 
					
						
							|  |  |  | 				PhysicsServer::SHAPE_BOX, | 
					
						
							|  |  |  | 				PhysicsServer::SHAPE_SPHERE, | 
					
						
							|  |  |  | 				PhysicsServer::SHAPE_CONVEX_POLYGON | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			PhysicsServer::ShapeType type = shape_idx[i % 4]; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			//type=PhysicsServer::SHAPE_CONVEX_POLYGON;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 			Transform t; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			t.origin = Vector3(0.0 * i, 3.5 + 1.1 * i, 0.7 + 0.0 * i); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			//t.origin=Vector3(-0.7+0.0*i,0.5+4.1*i,0);
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			t.basis.rotate(Vector3(0.2, -1, 0), Math_PI / 2 * 0.6); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			//t.basis.rotate(Vector3(0,-1,0),Math_PI/4*i);
 | 
					
						
							|  |  |  | 			//t.basis.rotate(Vector3(0,-1,0),Math_PI/4*i);
 | 
					
						
							|  |  |  | 			//t.basis.rotate(Vector3(-1,0,0),Math_PI/4*i);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			create_body(type, PhysicsServer::BODY_MODE_RIGID, t); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			//RID b = create_body(type,i==0?PhysicsServer::BODY_MODE_STATIC:PhysicsServer::BODY_MODE_RIGID,t);
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		create_static_plane(Plane(Vector3(0, 1, 0), -1)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		/*
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		create_static_plane( Plane( Vector3(1,0,0), -2) ); | 
					
						
							|  |  |  | 		create_static_plane( Plane( Vector3(-1,0,0), -2) ); | 
					
						
							|  |  |  | 		create_static_plane( Plane( Vector3(0,0,1), -2) ); | 
					
						
							|  |  |  | 		create_static_plane( Plane( Vector3(0,0,-1), -2) ); | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void test_activate() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		create_body(PhysicsServer::SHAPE_BOX, PhysicsServer::BODY_MODE_RIGID, Transform(Basis(), Vector3(0, 2, 0)), true); | 
					
						
							| 
									
										
										
										
											2017-01-11 00:52:51 -03:00
										 |  |  | 		//create_body(PhysicsServer::SHAPE_SPHERE,PhysicsServer::BODY_MODE_RIGID,Transform(Basis(),Vector3(0,6,0)),true);
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		create_static_plane(Plane(Vector3(0, 1, 0), -1)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual bool idle(float p_time) { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TestPhysicsMainLoop() { | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace TestPhysics { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | MainLoop *test() { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return memnew(TestPhysicsMainLoop); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | } |