summaryrefslogtreecommitdiff
path: root/servers/physics_2d/physics_2d_server_wrap_mt.cpp
blob: c5f023f162ad5f66487f17fec510f60cc1a00ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#include "physics_2d_server_wrap_mt.h"

#include "os/os.h"

void Physics2DServerWrapMT::thread_exit() {

	exit=true;
}

void Physics2DServerWrapMT::thread_step(float p_delta) {

	physics_2d_server->step(p_delta);
	step_sem->post();

}

void Physics2DServerWrapMT::_thread_callback(void *_instance) {

	Physics2DServerWrapMT *vsmt = reinterpret_cast<Physics2DServerWrapMT*>(_instance);


	vsmt->thread_loop();
}

void Physics2DServerWrapMT::thread_loop() {

	server_thread=Thread::get_caller_ID();

	OS::get_singleton()->make_rendering_thread();

	physics_2d_server->init();

	exit=false;
	step_thread_up=true;
	while(!exit) {
		// flush commands one by one, until exit is requested
		command_queue.wait_and_flush_one();
	}

	command_queue.flush_all(); // flush all

	physics_2d_server->finish();

}


/* EVENT QUEUING */


void Physics2DServerWrapMT::step(float p_step) {

	if (create_thread) {

		command_queue.push( this, &Physics2DServerWrapMT::thread_step,p_step);
	} else {

		command_queue.flush_all(); //flush all pending from other threads
		physics_2d_server->step(p_step);
	}
}

void Physics2DServerWrapMT::sync() {

	if (step_sem) {
		if (first_frame)
			first_frame=false;
		else
			step_sem->wait(); //must not wait if a step was not issued
	}
	physics_2d_server->sync();;
}

void Physics2DServerWrapMT::flush_queries(){

	physics_2d_server->flush_queries();
}

void Physics2DServerWrapMT::end_sync() {

	physics_2d_server->end_sync();;
}

void Physics2DServerWrapMT::init() {

	if (create_thread) {

		step_sem = Semaphore::create();
		print_line("CREATING PHYSICS 2D THREAD");
		//OS::get_singleton()->release_rendering_thread();
		if (create_thread) {
			thread = Thread::create( _thread_callback, this );
			print_line("STARTING PHYISICS 2D THREAD");
		}
		while(!step_thread_up) {
			OS::get_singleton()->delay_usec(1000);
		}
		print_line("DONE PHYSICS 2D THREAD");
	} else {

		physics_2d_server->init();
	}

}

void Physics2DServerWrapMT::finish() {


	if (thread) {

		command_queue.push( this, &Physics2DServerWrapMT::thread_exit);
		Thread::wait_to_finish( thread );
		memdelete(thread);

/*
		shape_free_cached_ids();
		area_free_cached_ids();
		body_free_cached_ids();
		pin_joint_free_cached_ids();
		groove_joint_free_cached_ids();
		damped_string_free_cached_ids();
*/
		thread=NULL;
	} else {
		physics_2d_server->finish();
	}

	if (step_sem)
		memdelete(step_sem);

}


Physics2DServerWrapMT::Physics2DServerWrapMT(Physics2DServer* p_contained,bool p_create_thread) : command_queue(p_create_thread) {

	physics_2d_server=p_contained;
	create_thread=p_create_thread;
	thread=NULL;
	step_sem=NULL;
	step_pending=0;
	step_thread_up=false;
	alloc_mutex=Mutex::create();

	shape_pool_max_size=GLOBAL_DEF("core/thread_rid_pool_prealloc",20);
	area_pool_max_size=GLOBAL_DEF("core/thread_rid_pool_prealloc",20);
	body_pool_max_size=GLOBAL_DEF("core/thread_rid_pool_prealloc",20);
	pin_joint_pool_max_size=GLOBAL_DEF("core/thread_rid_pool_prealloc",20);
	groove_joint_pool_max_size=GLOBAL_DEF("core/thread_rid_pool_prealloc",20);
	damped_spring_joint_pool_max_size=GLOBAL_DEF("core/thread_rid_pool_prealloc",20);

	if (!p_create_thread) {
		server_thread=Thread::get_caller_ID();
	} else {
		server_thread=0;
	}

	main_thread = Thread::get_caller_ID();
	first_frame=true;
}


Physics2DServerWrapMT::~Physics2DServerWrapMT() {

	memdelete(physics_2d_server);
	memdelete(alloc_mutex);
	//finish();

}