a4be40ed5177fe1a0fde9048a7c18d25740c9490
[carveJwlIkooP6JGAAIwe30JlM.git] / player_interface.h
1 #ifndef PLAYER_INTERFACE_H
2 #define PLAYER_INTERFACE_H
3
4 #include "model.h"
5 #include "camera.h"
6 #include "rigidbody.h"
7 #include "player_ragdoll.h"
8 #include "player_model.h"
9 #include "world.h"
10
11 typedef struct player_device player_device;
12 typedef struct player_interface player_interface;
13 typedef struct player_attachment player_attachment;
14 typedef mdl_keyframe player_pose[32];
15
16 struct player_interface
17 {
18 rigidbody rb;
19 camera cam;
20
21 struct player_attachment
22 {
23 player_device *device;
24 void *storage;
25 }
26 dev;
27
28 struct input_binding *input_js1h,
29 *input_js1v,
30 *input_js2h,
31 *input_js2v,
32 *input_jump,
33 *input_push,
34 *input_walk,
35 *input_walkh,
36 *input_walkv,
37 *input_use,
38 *input_reset,
39 *input_grab;
40
41 v3f prev_position;
42
43 struct player_avatar *playeravatar;
44 glmesh *playermesh;
45 struct player_ragdoll ragdoll;
46 };
47
48 /* FIXME: yo */
49 vg_tex2d tex_characters = { .path = "textures/ch_gradient.qoi" };
50
51 struct player_device
52 {
53 void (* bind ) ( player_interface *player, player_attachment *at );
54 void (* pre_update) ( player_interface *player, player_attachment *at );
55 void (* update) ( player_interface *player, player_attachment *at );
56 void (* post_update)( player_interface *player, player_attachment *at );
57 void (* pose) ( player_interface *player, player_attachment *at,
58 player_pose pose, m4x3f transform );
59
60 void (* get_camera) ( player_interface *player, player_attachment *at,
61 camera *cam );
62
63 void (* attatch ) ( player_interface *player, player_attachment *at,
64 void *storage );
65
66 void (* reset ) ( player_interface *player, player_attachment *at,
67 struct respawn_point *spawn );
68
69 void (* store_state)( player_interface *player, player_attachment *at );
70 void (* load_state) ( player_interface *player, player_attachment *at );
71 void (* debug_ui) ( player_interface *player, player_attachment *at );
72 void (* gate_transport)( player_interface *player, player_attachment *at,
73 teleport_gate *gate );
74 };
75
76 VG_STATIC void player_interface_create_player( player_interface *inst )
77 {
78 static int only_once = 0;
79 assert( only_once == 0 );
80 only_once ++;
81
82 inst->input_js1h = vg_create_named_input( "steer-h", k_input_type_axis );
83 inst->input_js1v = vg_create_named_input( "steer-v", k_input_type_axis );
84 inst->input_grab = vg_create_named_input( "grab", k_input_type_axis_norm);
85 inst->input_js2h = vg_create_named_input( "grab-h", k_input_type_axis );
86 inst->input_js2v = vg_create_named_input( "grab-v", k_input_type_axis );
87 inst->input_jump = vg_create_named_input( "jump", k_input_type_button );
88 inst->input_push = vg_create_named_input( "push", k_input_type_button );
89 inst->input_walk = vg_create_named_input( "walk", k_input_type_button );
90 inst->input_walkh= vg_create_named_input( "walk-h", k_input_type_axis );
91 inst->input_walkv= vg_create_named_input( "walk-v", k_input_type_axis );
92 inst->input_use = vg_create_named_input( "use", k_input_type_button );
93 inst->input_reset= vg_create_named_input( "reset", k_input_type_button );
94
95 const char *default_cfg[] =
96 {
97 "bind steer-h gp-ls-h",
98 "bind -steer-h a",
99 "bind +steer-h d",
100
101 "bind steer-v gp-ls-v",
102 "bind -steer-v w",
103 "bind +steer-v s",
104
105 "bind grab gp-rt",
106 "bind +grab shift",
107 "bind grab-h gp-rs-h",
108 "bind grab-v gp-rs-v",
109
110 "bind jump space",
111 "bind jump gp-a",
112
113 "bind push gp-b",
114 "bind push w",
115
116 "bind walk shift",
117 "bind walk gp-ls",
118
119 "bind walk-h gp-ls-h",
120 "bind walk-v -gp-ls-v",
121 "bind +walk-h d",
122 "bind -walk-h a",
123 "bind +walk-v w",
124 "bind -walk-v s",
125
126 "bind reset gp-lb",
127 "bind reset r",
128
129 "bind use gp-y",
130 "bind use e",
131 };
132
133 for( int i=0; i<vg_list_size(default_cfg); i++ )
134 vg_execute_console_input(default_cfg[i]);
135
136 v3_zero( inst->rb.co );
137 v3_zero( inst->rb.w );
138 v3_zero( inst->rb.v );
139 q_identity( inst->rb.q );
140 m4x3_identity( inst->rb.to_world );
141 m4x3_identity( inst->rb.to_local );
142 }
143
144 VG_STATIC void player_use_avatar( player_interface *player,
145 struct player_avatar *av )
146 {
147 player->playeravatar = av;
148 player_setup_ragdoll_from_avatar( &player->ragdoll, av );
149 }
150
151 VG_STATIC void player_use_mesh( player_interface *player, glmesh *mesh )
152 {
153 player->playermesh = mesh;
154 }
155
156 VG_STATIC void player_use_device( player_interface *player, player_device *dev,
157 void *storage )
158 {
159 player->dev.device = dev;
160 player->dev.storage = storage;
161
162 player->dev.device->bind( player, &player->dev );
163 }
164
165 VG_STATIC void player_pre_update( player_interface *player )
166 {
167 assert( player->dev.device );
168
169 v3_copy( player->rb.co, player->prev_position );
170
171 if( player->dev.device->pre_update )
172 player->dev.device->pre_update( player, &player->dev );
173 }
174
175 VG_STATIC void player_update( player_interface *player )
176 {
177 assert( player->dev.device );
178
179 if( player->dev.device->update )
180 player->dev.device->update( player, &player->dev );
181 }
182
183 VG_STATIC void player_post_update( player_interface *player,
184 camera *main_camera )
185 {
186 assert( player->dev.device );
187
188 if( player->dev.device->post_update )
189 player->dev.device->post_update( player, &player->dev );
190
191 /* FIXME: only need to test against the visible gate....
192 * OR... bvh */
193
194 for( int i=0; i<world.gate_count; i++ )
195 {
196 struct route_gate *rg = &world.gates[i];
197 teleport_gate *gate = &rg->gate;
198
199 if( gate_intersect( gate, player->rb.co, player->prev_position ) )
200 {
201 player->dev.device->gate_transport( player, &player->dev, gate );
202 v3_copy( player->rb.co, player->prev_position );
203
204 /* Pre-emptively edit the camera matrices so that the motion vectors
205 * are correct */
206 m4x3f transport_i;
207 m4x4f transport_4;
208 m4x3_invert_affine( gate->transport, transport_i );
209 m4x3_expand( transport_i, transport_4 );
210 m4x4_mul( main_camera->mtx.pv, transport_4, main_camera->mtx.pv );
211 m4x4_mul( main_camera->mtx.v, transport_4, main_camera->mtx.v );
212 }
213 }
214
215 #if 0
216 camera_update_transform( &player->cam );
217 camera_update_view( &player->cam );
218 camera_update_projection( &player->cam );
219 camera_finalize( &player->cam );
220 #endif
221 }
222
223 #if 0
224 VG_STATIC void player_pre_render( player_interface *player )
225 {
226 assert( player->dev.device );
227
228 if( player->dev.device->pre_render )
229 player->dev.device->pre_render( player );
230 }
231 #endif
232
233 VG_STATIC void player_pre_render( player_interface *player )
234 {
235 player_pose pose;
236 m4x3f transform;
237
238 player->dev.device->pose( player, &player->dev, pose, transform );
239
240 struct skeleton *sk = &player->playeravatar->sk;
241
242 skeleton_apply_pose( sk, pose, k_anim_apply_defer_ik );
243 skeleton_apply_ik_pass( sk );
244 skeleton_apply_pose( sk, pose, k_anim_apply_deffered_only );
245 skeleton_apply_inverses( sk );
246 skeleton_apply_transform( sk, transform );
247 skeleton_debug( sk );
248
249 player->dev.device->get_camera( player, &player->dev, &player->cam );
250 /* TODO: if dead copy ragdoll.. . */
251 }
252
253 VG_STATIC void player_render( camera *cam, player_interface *player )
254 {
255 shader_viewchar_use();
256 vg_tex2d_bind( &tex_characters, 0 );
257 shader_viewchar_uTexMain( 0 );
258 shader_viewchar_uCamera( cam->transform[3] );
259 shader_viewchar_uPv( cam->mtx.pv );
260 shader_link_standard_ub( _shader_viewchar.id, 2 );
261 glUniformMatrix4x3fv( _uniform_viewchar_uTransforms,
262 player->playeravatar->sk.bone_count,
263 0,
264 (float *)player->playeravatar->sk.final_mtx );
265
266 mesh_bind( player->playermesh );
267 mesh_draw( player->playermesh );
268 }
269
270 VG_STATIC void player_debugtext( int size, const char *fmt, ... )
271 {
272 char buffer[ 1024 ];
273
274 va_list args;
275 va_start( args, fmt );
276 vsnprintf( buffer, 1024, fmt, args );
277 va_end( args );
278
279 ui_text( vg_uictx.cursor, buffer, size, k_text_align_right );
280 vg_uictx.cursor[1] += 14*size;
281 }
282
283 VG_STATIC void player_ui( player_interface *player )
284 {
285 /* TODO: if debugger enabled */
286
287 if( player->dev.device->debug_ui )
288 {
289 vg_uictx.cursor[0] = vg.window_x - 200;
290 vg_uictx.cursor[1] = 0;
291 vg_uictx.cursor[2] = 200;
292 vg_uictx.cursor[3] = 200;
293
294 struct ui_vert *b = ui_fill_rect( vg_uictx.cursor, 0x70000000 );
295
296 vg_uictx.cursor[0] = vg.window_x;
297 player->dev.device->debug_ui( player, &player->dev );
298
299 b[2].co[1] = vg_uictx.cursor[1];
300 b[3].co[1] = vg_uictx.cursor[1];
301 }
302 }
303
304 VG_STATIC void player_spawn( player_interface *player,
305 struct respawn_point *rp )
306 {
307 v3_copy( rp->co, player->rb.co );
308 v3_copy( rp->co, player->prev_position );
309 v3_zero( player->rb.v );
310 v3_zero( player->rb.w );
311 q_identity( player->rb.q );
312 rb_update_transform( &player->rb );
313
314 if( player->dev.device->reset )
315 player->dev.device->reset( player, &player->dev, rp );
316 }
317
318 /*
319 * Apply per render-frame mouse look from player to angles
320 */
321 VG_STATIC void player_look( player_interface *player, v3f angles )
322 {
323 angles[2] = 0.0f;
324 v2_muladds( angles, vg.mouse_delta, 0.0025f, angles );
325
326 if( vg_input.controller_should_use_trackpad_look )
327 {
328 static v2f last_input;
329 static v2f vel;
330 static v2f vel_smooth;
331
332 v2f input = { player->input_js2h->axis.value,
333 player->input_js2v->axis.value };
334
335 if( (v2_length2(last_input) > 0.001f) && (v2_length2(input) > 0.001f) )
336 {
337 v2_sub( input, last_input, vel );
338 v2_muls( vel, 1.0f/vg.time_delta, vel );
339 }
340 else
341 {
342 v2_zero( vel );
343 }
344
345 v2_lerp( vel_smooth, vel, vg.time_delta*8.0f, vel_smooth );
346
347 v2_muladds( angles, vel_smooth, vg.time_delta, angles );
348 v2_copy( input, last_input );
349 }
350 else
351 {
352 angles[0] += player->input_js2h->axis.value * vg.time_delta * 4.0f;
353 angles[1] += player->input_js2v->axis.value * vg.time_delta * 4.0f;
354 }
355
356 angles[1] = vg_clampf( angles[1], -VG_PIf*0.5f, VG_PIf*0.5f );
357 }
358
359 #endif /* PLAYER_INTERFACE_H */