Track command state in a structure
[neverball] / ball / game_client.c
1 /*
2  * Copyright (C) 2003 Robert Kooima
3  *
4  * NEVERBALL is  free software; you can redistribute  it and/or modify
5  * it under the  terms of the GNU General  Public License as published
6  * by the Free  Software Foundation; either version 2  of the License,
7  * or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
11  * MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
12  * General Public License for more details.
13  */
14
15 #include <SDL.h>
16 #include <math.h>
17 #include <assert.h>
18
19 #include "glext.h"
20 #include "vec3.h"
21 #include "geom.h"
22 #include "item.h"
23 #include "back.h"
24 #include "part.h"
25 #include "ball.h"
26 #include "image.h"
27 #include "audio.h"
28 #include "config.h"
29 #include "video.h"
30
31 #include "solid_draw.h"
32
33 #include "game_client.h"
34 #include "game_common.h"
35 #include "game_proxy.h"
36 #include "game_draw.h"
37
38 #include "cmd.h"
39
40 /*---------------------------------------------------------------------------*/
41
42 int game_compat_map;                    /* Client/server map compat flag     */
43
44 /*---------------------------------------------------------------------------*/
45
46 #define CURR 0
47 #define PREV 1
48
49 static struct game_draw gd;
50 static struct game_lerp gl;
51
52 static float timer  = 0.0f;             /* Clock time                        */
53 static int   status = GAME_NONE;        /* Outcome of the game               */
54 static int   coins  = 0;                /* Collected coins                   */
55
56 static struct cmd_state cs;             /* Command state                     */
57
58 struct
59 {
60     int x, y;
61 } version;                              /* Current map version               */
62
63 /*---------------------------------------------------------------------------*/
64
65 static void game_run_cmd(const union cmd *cmd)
66 {
67     if (gd.state)
68     {
69         struct game_view *view = &gl.view[CURR];
70         struct game_tilt *tilt = &gl.tilt[CURR];
71
72         struct s_vary *vary = &gd.file.vary;
73         struct v_item *hp;
74
75         float v[3];
76         float dt;
77
78         if (cs.next_update)
79         {
80             game_lerp_copy(&gl);
81             cs.next_update = 0;
82         }
83
84         switch (cmd->type)
85         {
86         case CMD_END_OF_UPDATE:
87             cs.got_tilt_axes = 0;
88             cs.next_update = 1;
89
90             if (cs.first_update)
91             {
92                 game_lerp_copy(&gl);
93                 /* Hack to sync state before the next update. */
94                 game_lerp_apply(&gl, &gd);
95                 cs.first_update = 0;
96                 break;
97             }
98
99             /* Compute gravity for particle effects. */
100
101             if (status == GAME_GOAL)
102                 game_tilt_grav(v, GRAVITY_UP, tilt);
103             else
104                 game_tilt_grav(v, GRAVITY_DN, tilt);
105
106             /* Step particle, goal and jump effects. */
107
108             if (cs.ups > 0)
109             {
110                 dt = 1.0f / cs.ups;
111
112                 if (gd.goal_e && gl.goal_k[CURR] < 1.0f)
113                     gl.goal_k[CURR] += dt;
114
115                 if (gd.jump_b)
116                 {
117                     gl.jump_dt[CURR] += dt;
118
119                     if (1.0f < gl.jump_dt[CURR])
120                         gd.jump_b = 0;
121                 }
122
123                 part_step(v, dt);
124             }
125
126             break;
127
128         case CMD_MAKE_BALL:
129             /* Allocate a new ball and mark it as the current ball. */
130
131             if (sol_lerp_cmd(&gl.lerp, &cs, cmd))
132                 cs.curr_ball = gl.lerp.uc - 1;
133
134             break;
135
136         case CMD_MAKE_ITEM:
137             /* Allocate and initialise a new item. */
138
139             if ((hp = realloc(vary->hv, sizeof (*hp) * (vary->hc + 1))))
140             {
141                 struct v_item h;
142
143                 v_cpy(h.p, cmd->mkitem.p);
144
145                 h.t = cmd->mkitem.t;
146                 h.n = cmd->mkitem.n;
147
148                 vary->hv = hp;
149                 vary->hv[vary->hc] = h;
150                 vary->hc++;
151             }
152
153             break;
154
155         case CMD_PICK_ITEM:
156             /* Set up particle effects and discard the item. */
157
158             assert(cmd->pkitem.hi < vary->hc);
159
160             hp = vary->hv + cmd->pkitem.hi;
161
162             item_color(hp, v);
163             part_burst(hp->p, v);
164
165             hp->t = ITEM_NONE;
166
167             break;
168
169         case CMD_TILT_ANGLES:
170             if (!cs.got_tilt_axes)
171             {
172                 /*
173                  * Neverball <= 1.5.1 does not send explicit tilt
174                  * axes, rotation happens directly around view
175                  * vectors.  So for compatibility if at the time of
176                  * receiving tilt angles we have not yet received the
177                  * tilt axes, we use the view vectors.
178                  */
179
180                 game_tilt_axes(tilt, view->e);
181             }
182
183             tilt->rx = cmd->tiltangles.x;
184             tilt->rz = cmd->tiltangles.z;
185             break;
186
187         case CMD_SOUND:
188             /* Play the sound. */
189
190             if (cmd->sound.n)
191                 audio_play(cmd->sound.n, cmd->sound.a);
192
193             break;
194
195         case CMD_TIMER:
196             timer = cmd->timer.t;
197             break;
198
199         case CMD_STATUS:
200             status = cmd->status.t;
201             break;
202
203         case CMD_COINS:
204             coins = cmd->coins.n;
205             break;
206
207         case CMD_JUMP_ENTER:
208             gd.jump_b  = 1;
209             gd.jump_e  = 0;
210             gl.jump_dt[CURR] = 0.0f;
211             break;
212
213         case CMD_JUMP_EXIT:
214             gd.jump_e = 1;
215             break;
216
217         case CMD_BODY_PATH:
218             sol_lerp_cmd(&gl.lerp, &cs, cmd);
219             break;
220
221         case CMD_BODY_TIME:
222             sol_lerp_cmd(&gl.lerp, &cs, cmd);
223             break;
224
225         case CMD_GOAL_OPEN:
226             /*
227              * Enable the goal and make sure it's fully visible if
228              * this is the first update.
229              */
230
231             if (!gd.goal_e)
232             {
233                 gd.goal_e = 1;
234                 gl.goal_k[CURR] = cs.first_update ? 1.0f : 0.0f;
235             }
236             break;
237
238         case CMD_SWCH_ENTER:
239             vary->xv[cmd->swchenter.xi].e = 1;
240             break;
241
242         case CMD_SWCH_TOGGLE:
243             vary->xv[cmd->swchtoggle.xi].f = !vary->xv[cmd->swchtoggle.xi].f;
244             break;
245
246         case CMD_SWCH_EXIT:
247             vary->xv[cmd->swchexit.xi].e = 0;
248             break;
249
250         case CMD_UPDATES_PER_SECOND:
251             cs.ups = cmd->ups.n;
252             break;
253
254         case CMD_BALL_RADIUS:
255             sol_lerp_cmd(&gl.lerp, &cs, cmd);
256             break;
257
258         case CMD_CLEAR_ITEMS:
259             if (vary->hv)
260             {
261                 free(vary->hv);
262                 vary->hv = NULL;
263             }
264             vary->hc = 0;
265             break;
266
267         case CMD_CLEAR_BALLS:
268             sol_lerp_cmd(&gl.lerp, &cs, cmd);
269             break;
270
271         case CMD_BALL_POSITION:
272             sol_lerp_cmd(&gl.lerp, &cs, cmd);
273             break;
274
275         case CMD_BALL_BASIS:
276             sol_lerp_cmd(&gl.lerp, &cs, cmd);
277             break;
278
279         case CMD_BALL_PEND_BASIS:
280             sol_lerp_cmd(&gl.lerp, &cs, cmd);
281             break;
282
283         case CMD_VIEW_POSITION:
284             v_cpy(view->p, cmd->viewpos.p);
285             break;
286
287         case CMD_VIEW_CENTER:
288             v_cpy(view->c, cmd->viewcenter.c);
289             break;
290
291         case CMD_VIEW_BASIS:
292             v_cpy(view->e[0], cmd->viewbasis.e[0]);
293             v_cpy(view->e[1], cmd->viewbasis.e[1]);
294             v_crs(view->e[2], view->e[0], view->e[1]);
295             break;
296
297         case CMD_CURRENT_BALL:
298             cs.curr_ball = cmd->currball.ui;
299             break;
300
301         case CMD_PATH_FLAG:
302             vary->pv[cmd->pathflag.pi].f = cmd->pathflag.f;
303             break;
304
305         case CMD_STEP_SIMULATION:
306             sol_lerp_cmd(&gl.lerp, &cs, cmd);
307             break;
308
309         case CMD_MAP:
310             /*
311              * Note a version (mis-)match between the loaded map and what
312              * the server has. (This doesn't actually load a map.)
313              */
314             game_compat_map = version.x == cmd->map.version.x;
315             break;
316
317         case CMD_TILT_AXES:
318             cs.got_tilt_axes = 1;
319             v_cpy(tilt->x, cmd->tiltaxes.x);
320             v_cpy(tilt->z, cmd->tiltaxes.z);
321             break;
322
323         case CMD_NONE:
324         case CMD_MAX:
325             break;
326         }
327     }
328 }
329
330 void game_client_sync(fs_file demo_fp)
331 {
332     union cmd *cmdp;
333
334     while ((cmdp = game_proxy_deq()))
335     {
336         if (demo_fp)
337             cmd_put(demo_fp, cmdp);
338
339         game_run_cmd(cmdp);
340
341         cmd_free(cmdp);
342     }
343 }
344
345 /*---------------------------------------------------------------------------*/
346
347 int  game_client_init(const char *file_name)
348 {
349     char *back_name = "", *grad_name = "";
350     int i;
351
352     coins  = 0;
353     status = GAME_NONE;
354
355     if (gd.state)
356         game_client_free();
357
358     if (!sol_load_full(&gd.file, file_name, config_get_d(CONFIG_SHADOW)))
359         return (gd.state = 0);
360
361     gd.state = 1;
362
363     /* Initialize game state. */
364
365     game_tilt_init(&gd.tilt);
366     game_view_init(&gd.view);
367
368     gd.jump_e  = 1;
369     gd.jump_b  = 0;
370     gd.jump_dt = 0.0f;
371
372     gd.goal_e = 0;
373     gd.goal_k = 0.0f;
374
375     /* Initialize interpolation. */
376
377     game_lerp_init(&gl, &gd);
378
379     /* Initialize fade. */
380
381     gd.fade_k =  1.0f;
382     gd.fade_d = -2.0f;
383
384     /* Load level info. */
385
386     version.x = 0;
387     version.y = 0;
388
389     for (i = 0; i < gd.file.base.dc; i++)
390     {
391         char *k = gd.file.base.av + gd.file.base.dv[i].ai;
392         char *v = gd.file.base.av + gd.file.base.dv[i].aj;
393
394         if (strcmp(k, "back") == 0) back_name = v;
395         if (strcmp(k, "grad") == 0) grad_name = v;
396
397         if (strcmp(k, "version") == 0)
398             sscanf(v, "%d.%d", &version.x, &version.y);
399     }
400
401     /*
402      * If the version of the loaded map is 1, assume we have a version
403      * match with the server.  In this way 1.5.0 replays don't trigger
404      * bogus map compatibility warnings.  Post-1.5.0 replays will have
405      * CMD_MAP override this.
406      */
407
408     game_compat_map = version.x == 1;
409
410     /* Initialize particles. */
411
412     part_reset(GOAL_HEIGHT, JUMP_HEIGHT);
413
414     /* Initialize command state. */
415
416     cmd_state_init(&cs);
417
418     /* Initialize background. */
419
420     back_init(grad_name);
421     sol_load_full(&gd.back, back_name, 0);
422
423     return gd.state;
424 }
425
426 void game_client_free(void)
427 {
428     if (gd.state)
429     {
430         game_proxy_clr();
431         game_lerp_free(&gl);
432         sol_free_full(&gd.file);
433         sol_free_full(&gd.back);
434         back_free();
435     }
436     gd.state = 0;
437 }
438
439 /*---------------------------------------------------------------------------*/
440
441 void game_client_blend(float a)
442 {
443     gl.alpha = a;
444 }
445
446 void game_client_draw(int pose, float t)
447 {
448     game_lerp_apply(&gl, &gd);
449     game_draw(&gd, pose, t);
450 }
451
452 /*---------------------------------------------------------------------------*/
453
454 int curr_clock(void)
455 {
456     return (int) (timer * 100.f);
457 }
458
459 int curr_coins(void)
460 {
461     return coins;
462 }
463
464 int curr_status(void)
465 {
466     return status;
467 }
468
469 /*---------------------------------------------------------------------------*/
470
471 void game_look(float phi, float theta)
472 {
473     struct game_view *view = &gl.view[CURR];
474
475     view->c[0] = view->p[0] + fsinf(V_RAD(theta)) * fcosf(V_RAD(phi));
476     view->c[1] = view->p[1] +                       fsinf(V_RAD(phi));
477     view->c[2] = view->p[2] - fcosf(V_RAD(theta)) * fcosf(V_RAD(phi));
478 }
479
480 /*---------------------------------------------------------------------------*/
481
482 void game_kill_fade(void)
483 {
484     gd.fade_k = 0.0f;
485     gd.fade_d = 0.0f;
486 }
487
488 void game_step_fade(float dt)
489 {
490     if ((gd.fade_k < 1.0f && gd.fade_d > 0.0f) ||
491         (gd.fade_k > 0.0f && gd.fade_d < 0.0f))
492         gd.fade_k += gd.fade_d * dt;
493
494     if (gd.fade_k < 0.0f)
495     {
496         gd.fade_k = 0.0f;
497         gd.fade_d = 0.0f;
498     }
499     if (gd.fade_k > 1.0f)
500     {
501         gd.fade_k = 1.0f;
502         gd.fade_d = 0.0f;
503     }
504 }
505
506 void game_fade(float d)
507 {
508     gd.fade_d = d;
509 }
510
511 /*---------------------------------------------------------------------------*/
512
513 void game_client_fly(float k)
514 {
515     game_view_fly(&gl.view[CURR], &gd.file.vary, k);
516 }
517
518 /*---------------------------------------------------------------------------*/