]> icculus.org git repositories - btb/d2x.git/blob - main/collide.c
Use PhysicsFS for making the hoard ham.
[btb/d2x.git] / main / collide.c
1 /* $Id: collide.c,v 1.14 2004-10-09 15:59:28 schaffner Exp $ */
2 /*
3 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
4 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
5 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
6 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
7 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
8 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
9 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
10 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
11 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
12 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
13 */
14
15 /*
16  *
17  * Routines to handle collisions
18  *
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include <conf.h>
23 #endif
24
25 #include <stdlib.h>
26 #include <stdio.h>
27
28 #include "rle.h"
29 #include "inferno.h"
30 #include "game.h"
31 #include "gr.h"
32 #include "stdlib.h"
33 #include "bm.h"
34 //#include "error.h"
35 #include "mono.h"
36 #include "3d.h"
37 #include "segment.h"
38 #include "texmap.h"
39 #include "laser.h"
40 #include "key.h"
41 #include "gameseg.h"
42 #include "object.h"
43 #include "physics.h"
44 #include "slew.h"               
45 #include "render.h"
46 #include "wall.h"
47 #include "vclip.h"
48 #include "polyobj.h"
49 #include "fireball.h"
50 #include "laser.h"
51 #include "error.h"
52 #include "ai.h"
53 #include "hostage.h"
54 #include "fuelcen.h"
55 #include "sounds.h"
56 #include "robot.h"
57 #include "weapon.h"
58 #include "player.h"
59 #include "gauges.h"
60 #include "powerup.h"
61 #ifdef NETWORK
62 #include "network.h"
63 #endif
64 #include "newmenu.h"
65 #include "scores.h"
66 #include "effects.h"
67 #include "textures.h"
68 #ifdef NETWORK
69 #include "multi.h"
70 #endif
71 #include "cntrlcen.h"
72 #include "newdemo.h"
73 #include "endlevel.h"
74 #include "multibot.h"
75 #include "piggy.h"
76 #include "text.h"
77 #include "automap.h"
78 #include "switch.h"
79 #include "palette.h"
80
81 #ifdef TACTILE
82 #include "tactile.h"
83 #endif 
84
85 #ifdef EDITOR
86 #include "editor/editor.h"
87 #endif
88
89 #include "collide.h"
90 #include "escort.h"
91
92 #define STANDARD_EXPL_DELAY (f1_0/4)
93
94 //##void collide_fireball_and_wall(object *fireball,fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)      {
95 //##    return; 
96 //##}
97
98 //      -------------------------------------------------------------------------------------------------------------
99 //      The only reason this routine is called (as of 10/12/94) is so Brain guys can open doors.
100 void collide_robot_and_wall( object * robot, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)
101 {
102         ai_local                *ailp = &Ai_local_info[robot-Objects];
103
104         if ((robot->id == ROBOT_BRAIN) || (robot->ctype.ai_info.behavior == AIB_RUN_FROM) || (Robot_info[robot->id].companion == 1) || (robot->ctype.ai_info.behavior == AIB_SNIPE)) {
105                 int     wall_num = Segments[hitseg].sides[hitwall].wall_num;
106                 if (wall_num != -1) {
107                         if ((Walls[wall_num].type == WALL_DOOR) && (Walls[wall_num].keys == KEY_NONE) && (Walls[wall_num].state == WALL_DOOR_CLOSED) && !(Walls[wall_num].flags & WALL_DOOR_LOCKED)) {
108                                 // -- mprintf((0, "Trying to open door at segment %i, side %i\n", hitseg, hitwall));
109                                 wall_open_door(&Segments[hitseg], hitwall);
110                         // -- Changed from this, 10/19/95, MK: Don't want buddy getting stranded from player
111                         //-- } else if ((Robot_info[robot->id].companion == 1) && (Walls[wall_num].type == WALL_DOOR) && (Walls[wall_num].keys != KEY_NONE) && (Walls[wall_num].state == WALL_DOOR_CLOSED) && !(Walls[wall_num].flags & WALL_DOOR_LOCKED)) {
112                         } else if ((Robot_info[robot->id].companion == 1) && (Walls[wall_num].type == WALL_DOOR)) {
113                                 if ((ailp->mode == AIM_GOTO_PLAYER) || (Escort_special_goal == ESCORT_GOAL_SCRAM)) {
114                                         if (Walls[wall_num].keys != KEY_NONE) {
115                                                 if (Walls[wall_num].keys & Players[Player_num].flags)
116                                                         wall_open_door(&Segments[hitseg], hitwall);
117                                         } else if (!(Walls[wall_num].flags & WALL_DOOR_LOCKED))
118                                                 wall_open_door(&Segments[hitseg], hitwall);
119                                 }
120                         } else if (Robot_info[robot->id].thief) {               //      Thief allowed to go through doors to which player has key.
121                                 if (Walls[wall_num].keys != KEY_NONE)
122                                         if (Walls[wall_num].keys & Players[Player_num].flags)
123                                                 wall_open_door(&Segments[hitseg], hitwall);
124                         }
125                 }
126         }
127
128         return;
129 }
130
131 //##void collide_hostage_and_wall( object * hostage, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)     {
132 //##    return;
133 //##}
134
135 //      -------------------------------------------------------------------------------------------------------------
136
137 int apply_damage_to_clutter(object *clutter, fix damage)
138 {
139         if ( clutter->flags&OF_EXPLODING) return 0;
140
141         if (clutter->shields < 0 ) return 0;    //clutter already dead...
142
143         clutter->shields -= damage;
144
145         if (clutter->shields < 0) {
146                 explode_object(clutter,0);
147                 return 1;
148         } else
149                 return 0;
150 }
151
152 char    Monster_mode = 0;               //      A cheat.  Do massive damage when collide.
153
154 //given the specified force, apply damage from that force to an object
155 void apply_force_damage(object *obj,fix force,object *other_obj)
156 {
157         int     result;
158         fix damage;
159
160         if (obj->flags & (OF_EXPLODING|OF_SHOULD_BE_DEAD))
161                 return;         //already exploding or dead
162
163         damage = fixdiv(force,obj->mtype.phys_info.mass) / 8;
164
165         if ((other_obj->type == OBJ_PLAYER) && Monster_mode)
166                 damage = 0x7fffffff;
167
168 //mprintf((0,"obj %d, damage=%x\n",obj-Objects,damage));
169
170         switch (obj->type) {
171
172                 case OBJ_ROBOT:
173
174                         if (Robot_info[obj->id].attack_type == 1) {
175                                 if (other_obj->type == OBJ_WEAPON)
176                                         result = apply_damage_to_robot(obj,damage/4, other_obj->ctype.laser_info.parent_num);
177                                 else
178                                         result = apply_damage_to_robot(obj,damage/4, other_obj-Objects);
179                         }
180                         else {
181                                 if (other_obj->type == OBJ_WEAPON)
182                                         result = apply_damage_to_robot(obj,damage/2, other_obj->ctype.laser_info.parent_num);
183                                 else
184                                         result = apply_damage_to_robot(obj,damage/2, other_obj-Objects);
185                         }               
186
187                         if (result && (other_obj->ctype.laser_info.parent_signature == ConsoleObject->signature))
188                                 add_points_to_score(Robot_info[obj->id].score_value);
189                         break;
190
191                 case OBJ_PLAYER:
192
193                         //      If colliding with a claw type robot, do damage proportional to FrameTime because you can collide with those
194                         //      bots every frame since they don't move.
195                         if ( (other_obj->type == OBJ_ROBOT) && (Robot_info[other_obj->id].attack_type) )
196                                 damage = fixmul(damage, FrameTime*2);
197
198                         //      Make trainee easier.
199                         if (Difficulty_level == 0)
200                                 damage /= 2;
201
202                         apply_damage_to_player(obj,other_obj,damage);
203                         break;
204
205                 case OBJ_CLUTTER:
206
207                         apply_damage_to_clutter(obj,damage);
208                         break;
209
210                 case OBJ_CNTRLCEN:
211
212                         apply_damage_to_controlcen(obj,damage, other_obj-Objects);
213                         break;
214
215                 case OBJ_WEAPON:
216
217                         break;          //weapons don't take damage
218
219                 default:
220
221                         Int3();
222
223         }
224 }
225
226 //      -----------------------------------------------------------------------------
227 void bump_this_object(object *objp, object *other_objp, vms_vector *force, int damage_flag)
228 {
229         fix force_mag;
230
231         if (! (objp->mtype.phys_info.flags & PF_PERSISTENT))
232         {
233                 if (objp->type == OBJ_PLAYER) {
234                         vms_vector force2;
235                         force2.x = force->x/4;
236                         force2.y = force->y/4;
237                         force2.z = force->z/4;
238                         phys_apply_force(objp,&force2);
239                         if (damage_flag && ((other_objp->type != OBJ_ROBOT) || !Robot_info[other_objp->id].companion)) {
240                                 force_mag = vm_vec_mag_quick(&force2);
241                                 apply_force_damage(objp, force_mag, other_objp);
242                         }
243                 } else if ((objp->type == OBJ_ROBOT) || (objp->type == OBJ_CLUTTER) || (objp->type == OBJ_CNTRLCEN)) {
244                         if (!Robot_info[objp->id].boss_flag) {
245                                 vms_vector force2;
246                                 force2.x = force->x/(4 + Difficulty_level);
247                                 force2.y = force->y/(4 + Difficulty_level);
248                                 force2.z = force->z/(4 + Difficulty_level);
249
250                                 phys_apply_force(objp, force);
251                                 phys_apply_rot(objp, &force2);
252                                 if (damage_flag) {
253                                         force_mag = vm_vec_mag_quick(force);
254                                         apply_force_damage(objp, force_mag, other_objp);
255                                 }
256                         }
257                 }
258         }
259 }
260
261 //      -----------------------------------------------------------------------------
262 //deal with two objects bumping into each other.  Apply force from collision
263 //to each robot.  The flags tells whether the objects should take damage from
264 //the collision.
265 void bump_two_objects(object *obj0,object *obj1,int damage_flag)
266 {
267         vms_vector      force;
268         object          *t=NULL;
269
270         if (obj0->movement_type != MT_PHYSICS)
271                 t=obj1;
272         else if (obj1->movement_type != MT_PHYSICS)
273                 t=obj0;
274
275         if (t) {
276                 Assert(t->movement_type == MT_PHYSICS);
277                 vm_vec_copy_scale(&force,&t->mtype.phys_info.velocity,-t->mtype.phys_info.mass);
278                 phys_apply_force(t,&force);
279                 return;
280         }
281
282         vm_vec_sub(&force,&obj0->mtype.phys_info.velocity,&obj1->mtype.phys_info.velocity);
283         vm_vec_scale2(&force,2*fixmul(obj0->mtype.phys_info.mass,obj1->mtype.phys_info.mass),(obj0->mtype.phys_info.mass+obj1->mtype.phys_info.mass));
284
285         bump_this_object(obj1, obj0, &force, damage_flag);
286         vm_vec_negate(&force);
287         bump_this_object(obj0, obj1, &force, damage_flag);
288
289 }
290
291 void bump_one_object(object *obj0, vms_vector *hit_dir, fix damage)
292 {
293         vms_vector      hit_vec;
294
295         hit_vec = *hit_dir;
296         vm_vec_scale(&hit_vec, damage);
297
298         phys_apply_force(obj0,&hit_vec);
299
300 }
301
302 #define DAMAGE_SCALE            128     //      Was 32 before 8:55 am on Thursday, September 15, changed by MK, walls were hurting me more than robots!
303 #define DAMAGE_THRESHOLD        (F1_0/3)
304 #define WALL_LOUDNESS_SCALE (20)
305
306 fix force_force = i2f(50);
307
308 void collide_player_and_wall( object * playerobj, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)
309 {
310         fix damage;
311         char ForceFieldHit=0;
312         int tmap_num,tmap_num2;
313
314         if (playerobj->id != Player_num) // Execute only for local player
315                 return;
316
317         tmap_num = Segments[hitseg].sides[hitwall].tmap_num;
318
319         //      If this wall does damage, don't make *BONK* sound, we'll be making another sound.
320         if (TmapInfo[tmap_num].damage > 0)
321                 return;
322
323         if (TmapInfo[tmap_num].flags & TMI_FORCE_FIELD) {
324                 vms_vector force;
325
326                 PALETTE_FLASH_ADD(0, 0, 60);    //flash blue
327
328                 //knock player around
329                 force.x = 40*(d_rand() - 16384);
330                 force.y = 40*(d_rand() - 16384);
331                 force.z = 40*(d_rand() - 16384);
332                 phys_apply_rot(playerobj, &force);
333
334 #ifdef TACTILE
335                 if (TactileStick)
336                  Tactile_apply_force (&force,&playerobj->orient);
337 #endif
338
339                 //make sound
340                 digi_link_sound_to_pos( SOUND_FORCEFIELD_BOUNCE_PLAYER, hitseg, 0, hitpt, 0, f1_0 );
341 #ifdef NETWORK
342                 if (Game_mode & GM_MULTI)
343                         multi_send_play_sound(SOUND_FORCEFIELD_BOUNCE_PLAYER, f1_0);
344 #endif
345                 ForceFieldHit=1;
346         } 
347         else {
348
349         #ifdef TACTILE
350                 vms_vector force;
351                 if (TactileStick) {
352                         force.x = -playerobj->mtype.phys_info.velocity.x;
353                         force.y = -playerobj->mtype.phys_info.velocity.y;
354                         force.z = -playerobj->mtype.phys_info.velocity.z;
355                         Tactile_do_collide(&force, &playerobj->orient);
356                 }
357         #endif
358
359         wall_hit_process( &Segments[hitseg], hitwall, 20, playerobj->id, playerobj );
360         }
361
362         //      ** Damage from hitting wall **
363         //      If the player has less than 10% shields, don't take damage from bump
364         // Note: Does quad damage if hit a force field - JL
365         damage = (hitspeed / DAMAGE_SCALE) * (ForceFieldHit*8 + 1);
366
367         tmap_num2 = Segments[hitseg].sides[hitwall].tmap_num2;
368
369         //don't do wall damage and sound if hit lava or water
370         if ((TmapInfo[tmap_num].flags & (TMI_WATER|TMI_VOLATILE)) || (tmap_num2 && (TmapInfo[tmap_num2&0x3fff].flags & (TMI_WATER|TMI_VOLATILE))))
371                 damage = 0;
372
373         if (damage >= DAMAGE_THRESHOLD) {
374                 int     volume;
375                 volume = (hitspeed-(DAMAGE_SCALE*DAMAGE_THRESHOLD)) / WALL_LOUDNESS_SCALE ;
376
377                 create_awareness_event(playerobj, PA_WEAPON_WALL_COLLISION);
378
379                 if ( volume > F1_0 )
380                         volume = F1_0;
381                 if (volume > 0 && !ForceFieldHit) {  // uhhhgly hack
382                         digi_link_sound_to_pos( SOUND_PLAYER_HIT_WALL, hitseg, 0, hitpt, 0, volume );
383                         #ifdef NETWORK
384                         if (Game_mode & GM_MULTI)
385                                 multi_send_play_sound(SOUND_PLAYER_HIT_WALL, volume);   
386                         #endif
387                 }
388
389                 if (!(Players[Player_num].flags & PLAYER_FLAGS_INVULNERABLE))
390                         if ( Players[Player_num].shields > f1_0*10 || ForceFieldHit)
391                                 apply_damage_to_player( playerobj, playerobj, damage );
392
393                 // -- No point in doing this unless we compute a reasonable hitpt.  Currently it is just the player's position. --MK, 01/18/96
394                 // -- if (!(TmapInfo[Segments[hitseg].sides[hitwall].tmap_num].flags & TMI_FORCE_FIELD)) {
395                 // --   vms_vector      hitpt1;
396                 // --   int                     hitseg1;
397                 // --
398                 // --           vm_vec_avg(&hitpt1, hitpt, &Objects[Players[Player_num].objnum].pos);
399                 // --   hitseg1 = find_point_seg(&hitpt1, Objects[Players[Player_num].objnum].segnum);
400                 // --   if (hitseg1 != -1)
401                 // --           object_create_explosion( hitseg, hitpt, Weapon_info[0].impact_size, Weapon_info[0].wall_hit_vclip );
402                 // -- }
403
404         }
405
406         return;
407 }
408
409 fix     Last_volatile_scrape_sound_time = 0;
410
411 void collide_weapon_and_wall( object * weapon, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt);
412 void collide_debris_and_wall( object * debris, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt);
413
414 //see if wall is volatile or water
415 //if volatile, cause damage to player  
416 //returns 1=lava, 2=water
417 int check_volatile_wall(object *obj,int segnum,int sidenum,vms_vector *hitpt)
418 {
419         fix tmap_num,d,water;
420
421         Assert(obj->type==OBJ_PLAYER);
422
423         tmap_num = Segments[segnum].sides[sidenum].tmap_num;
424
425         d = TmapInfo[tmap_num].damage;
426         water = (TmapInfo[tmap_num].flags & TMI_WATER);
427
428         if (d > 0 || water) {
429
430                 if (obj->id == Player_num) {
431
432                         if (d > 0) {
433                                 fix damage = fixmul(d,FrameTime);
434
435                                 if (Difficulty_level == 0)
436                                         damage /= 2;
437
438                                 if (!(Players[Player_num].flags & PLAYER_FLAGS_INVULNERABLE))
439                                         apply_damage_to_player( obj, obj, damage );
440
441 #ifdef TACTILE
442                                 if (TactileStick)
443                                  Tactile_Xvibrate (50,25);
444 #endif
445
446                                 PALETTE_FLASH_ADD(f2i(damage*4), 0, 0); //flash red
447                         }
448
449                         obj->mtype.phys_info.rotvel.x = (d_rand() - 16384)/2;
450                         obj->mtype.phys_info.rotvel.z = (d_rand() - 16384)/2;
451                 }
452
453                 return (d>0)?1:2;
454         }
455         else
456          {
457 #ifdef TACTILE
458                 if (TactileStick && !(FrameCount & 15))
459                  Tactile_Xvibrate_clear ();
460 #endif
461
462                 return 0;
463          }
464 }
465
466 //this gets called when an object is scraping along the wall
467 void scrape_object_on_wall(object *obj, short hitseg, short hitside, vms_vector * hitpt )
468 {
469         switch (obj->type) {
470
471                 case OBJ_PLAYER:
472
473                         if (obj->id==Player_num) {
474                                 int type;
475
476                                 //mprintf((0, "Scraped segment #%3i, side #%i\n", hitseg, hitside));
477
478                                 if ((type=check_volatile_wall(obj,hitseg,hitside,hitpt))!=0) {
479                                         vms_vector      hit_dir, rand_vec;
480
481                                         if ((GameTime > Last_volatile_scrape_sound_time + F1_0/4) || (GameTime < Last_volatile_scrape_sound_time)) {
482                                                 int sound = (type==1)?SOUND_VOLATILE_WALL_HISS:SOUND_SHIP_IN_WATER;
483
484                                                 Last_volatile_scrape_sound_time = GameTime;
485
486                                                 digi_link_sound_to_pos( sound, hitseg, 0, hitpt, 0, F1_0 );
487 #ifdef NETWORK
488                                                 if (Game_mode & GM_MULTI)
489                                                         multi_send_play_sound(sound, F1_0);
490 #endif
491                                         }
492
493                                         #ifdef COMPACT_SEGS
494                                                 get_side_normal(&Segments[hitseg], higside, 0, &hit_dir );      
495                                         #else
496                                                 hit_dir = Segments[hitseg].sides[hitside].normals[0];
497                                         #endif
498                         
499                                         make_random_vector(&rand_vec);
500                                         vm_vec_scale_add2(&hit_dir, &rand_vec, F1_0/8);
501                                         vm_vec_normalize_quick(&hit_dir);
502                                         bump_one_object(obj, &hit_dir, F1_0*8);
503                                 }
504
505                                 //@@} else {
506                                 //@@    //what scrape sound
507                                 //@@    //PLAY_SOUND( SOUND_PLAYER_SCRAPE_WALL );
508                                 //@@}
509                 
510                         }
511
512                         break;
513
514                 //these two kinds of objects below shouldn't really slide, so
515                 //if this scrape routine gets called (which it might if the
516                 //object (such as a fusion blob) was created already poking
517                 //through the wall) call the collide routine.
518
519                 case OBJ_WEAPON:
520                         collide_weapon_and_wall(obj,0,hitseg,hitside,hitpt); 
521                         break;
522
523                 case OBJ_DEBRIS:                
524                         collide_debris_and_wall(obj,0,hitseg,hitside,hitpt); 
525                         break;
526         }
527
528 }
529
530 //if an effect is hit, and it can blow up, then blow it up
531 //returns true if it blew up
532 int check_effect_blowup(segment *seg,int side,vms_vector *pnt, object *blower, int force_blowup_flag)
533 {
534         int tm,tmf,ec,db;
535
536         db=0;
537
538         //      If this wall has a trigger and the blower-upper is not the player or the buddy, abort!
539         {
540                 int     ok_to_blow = 0;
541
542                 if (blower->ctype.laser_info.parent_type == OBJ_ROBOT)
543                         if (Robot_info[Objects[blower->ctype.laser_info.parent_num].id].companion)
544                                 ok_to_blow = 1;
545
546                 if (!(ok_to_blow || (blower->ctype.laser_info.parent_type == OBJ_PLAYER))) {
547                         int     trigger_num, wall_num;
548
549                         wall_num = seg->sides[side].wall_num;
550                         if ( wall_num != -1 ) {
551                                 trigger_num = Walls[wall_num].trigger;
552
553                                 if (trigger_num != -1)
554                                         return 0;
555                         }
556                 }
557         }
558
559
560         if ((tm=seg->sides[side].tmap_num2) != 0) {
561
562                 tmf = tm&0xc000;                //tm flags
563                 tm &= 0x3fff;                   //tm without flags
564
565                 //check if it's an animation (monitor) or casts light
566                 if ((((ec=TmapInfo[tm].eclip_num)!=-1) && ((db=Effects[ec].dest_bm_num)!=-1 && !(Effects[ec].flags&EF_ONE_SHOT))) ||    (ec==-1 && (TmapInfo[tm].destroyed!=-1))) {
567                         fix u,v;
568                         grs_bitmap *bm = &GameBitmaps[Textures[tm].index];
569                         int x=0,y=0,t;
570
571                         PIGGY_PAGE_IN(Textures[tm]);
572
573                         //this can be blown up...did we hit it?
574
575                         if (!force_blowup_flag) {
576                                 find_hitpoint_uv(&u,&v,NULL,pnt,seg,side,0);    //evil: always say face zero
577
578                                 x = ((unsigned) f2i(u*bm->bm_w)) % bm->bm_w;
579                                 y = ((unsigned) f2i(v*bm->bm_h)) % bm->bm_h;
580
581                                 switch (tmf) {          //adjust for orientation of paste-on
582                                         case 0x0000:    break;
583                                         case 0x4000:    t=y; y=x; x=bm->bm_w-t-1; break;
584                                         case 0x8000:    y=bm->bm_h-y-1; x=bm->bm_w-x-1; break;
585                                         case 0xc000:    t=x; x=y; y=bm->bm_h-t-1; break;
586                                 }
587
588                                 //mprintf((0,"u,v = %x,%x   x,y=%x,%x",u,v,x,y));
589                         
590                                 if (bm->bm_flags & BM_FLAG_RLE)
591                                         bm = rle_expand_texture(bm);
592                         }
593
594                         if (force_blowup_flag || (bm->bm_data[y*bm->bm_w+x] != TRANSPARENCY_COLOR)) {           //not trans, thus on effect
595                                 int vc,sound_num;
596                                 fix dest_size;
597
598
599 #ifdef NETWORK
600                                 if ((Game_mode & GM_MULTI) && Netgame.AlwaysLighting)
601                                 if (!(ec!=-1 && db!=-1 && !(Effects[ec].flags&EF_ONE_SHOT)))
602                                         return(0);
603 #endif
604
605                                 //mprintf((0,"  HIT!\n"));
606
607                                 //note: this must get called before the texture changes, 
608                                 //because we use the light value of the texture to change
609                                 //the static light in the segment
610                                 subtract_light(seg-Segments,side);
611
612                                 if (Newdemo_state == ND_STATE_RECORDING)
613                                         newdemo_record_effect_blowup( seg-Segments, side, pnt);
614
615                                 if (ec!=-1) {
616                                         dest_size = Effects[ec].dest_size;
617                                         vc = Effects[ec].dest_vclip;
618                                 } else {
619                                         dest_size = i2f(20);
620                                         vc = 3;
621                                 }
622
623                                 object_create_explosion( seg-Segments, pnt, dest_size, vc );
624
625                                 if (ec!=-1 && db!=-1 && !(Effects[ec].flags&EF_ONE_SHOT)) {
626
627                                         if ((sound_num = Vclip[vc].sound_num) != -1)
628                                                 digi_link_sound_to_pos( sound_num, seg-Segments, 0, pnt,  0, F1_0 );
629
630                                         if ((sound_num=Effects[ec].sound_num)!=-1)              //kill sound
631                                                 digi_kill_sound_linked_to_segment(seg-Segments,side,sound_num);
632
633                                         if (Effects[ec].dest_eclip!=-1 && Effects[Effects[ec].dest_eclip].segnum==-1) {
634                                                 int bm_num;
635                                                 eclip *new_ec;
636                                         
637                                                 new_ec = &Effects[Effects[ec].dest_eclip];
638                                                 bm_num = new_ec->changing_wall_texture;
639
640                                                 mprintf((0,"bm_num = %d\n",bm_num));
641
642                                                 new_ec->time_left = new_ec->vc.frame_time;
643                                                 new_ec->frame_count = 0;
644                                                 new_ec->segnum = seg-Segments;
645                                                 new_ec->sidenum = side;
646                                                 new_ec->flags |= EF_ONE_SHOT;
647                                                 new_ec->dest_bm_num = Effects[ec].dest_bm_num;
648
649                                                 Assert(bm_num!=0 && seg->sides[side].tmap_num2!=0);
650                                                 seg->sides[side].tmap_num2 = bm_num | tmf;              //replace with destoyed
651
652                                         }
653                                         else {
654                                                 Assert(db!=0 && seg->sides[side].tmap_num2!=0);
655                                                 seg->sides[side].tmap_num2 = db | tmf;          //replace with destoyed
656                                         }
657                                 }
658                                 else {
659                                         seg->sides[side].tmap_num2 = TmapInfo[tm].destroyed | tmf;
660
661                                         //assume this is a light, and play light sound
662                                         digi_link_sound_to_pos( SOUND_LIGHT_BLOWNUP, seg-Segments, 0, pnt,  0, F1_0 );
663                                 }
664
665
666                                 return 1;               //blew up!
667                         }
668                 }
669         }
670
671         return 0;               //didn't blow up
672 }
673
674 //      Copied from laser.c!
675 #define MIN_OMEGA_BLOBS         3                               //      No matter how close the obstruction, at this many blobs created.
676 #define MIN_OMEGA_DIST                  (F1_0*3)                //      At least this distance between blobs, unless doing so would violate MIN_OMEGA_BLOBS
677 #define DESIRED_OMEGA_DIST      (F1_0*5)                //      This is the desired distance between blobs.  For distances > MIN_OMEGA_BLOBS*DESIRED_OMEGA_DIST, but not very large, this will apply.
678 #define MAX_OMEGA_BLOBS         16                              //      No matter how far away the obstruction, this is the maximum number of blobs.
679 #define MAX_OMEGA_DIST                  (MAX_OMEGA_BLOBS * DESIRED_OMEGA_DIST)          //      Maximum extent of lightning blobs.
680
681 //      -------------------------------------------------
682 //      Return true if ok to do Omega damage.
683 int ok_to_do_omega_damage(object *weapon)
684 {
685         int     parent_sig = weapon->ctype.laser_info.parent_signature;
686         int     parent_num = weapon->ctype.laser_info.parent_num;
687
688         if (!(Game_mode & GM_MULTI))
689                 return 1;
690
691         if (Objects[parent_num].signature != parent_sig)
692                 mprintf((0, "Parent of omega blob not consistent with object information.\n"));
693         else {
694                 fix     dist = vm_vec_dist_quick(&Objects[parent_num].pos, &weapon->pos);
695
696                 if (dist > MAX_OMEGA_DIST) {
697                         // -- mprintf((0, "Not doing damage in frame %i, too far away.\n", FrameCount));
698                         return 0;
699                 } else
700                         ; // -- mprintf((0, "*** Doing damage in frame %i ***\n", FrameCount));
701         }
702
703         return 1;
704 }
705
706 //these gets added to the weapon's values when the weapon hits a volitle wall
707 #define VOLATILE_WALL_EXPL_STRENGTH i2f(10)
708 #define VOLATILE_WALL_IMPACT_SIZE       i2f(3)
709 #define VOLATILE_WALL_DAMAGE_FORCE      i2f(5)
710 #define VOLATILE_WALL_DAMAGE_RADIUS     i2f(30)
711
712 // int Show_seg_and_side = 0;
713
714 void collide_weapon_and_wall( object * weapon, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)
715 {
716         segment *seg = &Segments[hitseg];
717         int blew_up;
718         int wall_type;
719         int playernum;
720         int     robot_escort;
721
722         if (weapon->id == OMEGA_ID)
723                 if (!ok_to_do_omega_damage(weapon))
724                         return;
725
726         //      If this is a guided missile and it strikes fairly directly, clear bounce flag.
727         if (weapon->id == GUIDEDMISS_ID) {
728                 fix     dot;
729
730                 dot = vm_vec_dot(&weapon->orient.fvec, &Segments[hitseg].sides[hitwall].normals[0]);
731                 mprintf((0, "Guided missile dot = %7.3f\n", f2fl(dot)));
732                 if (dot < -F1_0/6) {
733                         mprintf((0, "Guided missile loses bounciness.\n"));
734                         weapon->mtype.phys_info.flags &= ~PF_BOUNCE;
735                 }
736         }
737
738         //if an energy weapon hits a forcefield, let it bounce
739         if ((TmapInfo[seg->sides[hitwall].tmap_num].flags & TMI_FORCE_FIELD) &&
740                  !(weapon->type == OBJ_WEAPON && Weapon_info[weapon->id].energy_usage==0)) {
741
742                 //make sound
743                 digi_link_sound_to_pos( SOUND_FORCEFIELD_BOUNCE_WEAPON, hitseg, 0, hitpt, 0, f1_0 );
744 #ifdef NETWORK
745                 if (Game_mode & GM_MULTI)
746                         multi_send_play_sound(SOUND_FORCEFIELD_BOUNCE_WEAPON, f1_0);
747 #endif
748
749                 return; //bail here. physics code will bounce this object
750         }
751
752         #ifndef NDEBUG
753         if (keyd_pressed[KEY_LAPOSTRO])
754                 if (weapon->ctype.laser_info.parent_num == Players[Player_num].objnum) {
755                         //      MK: Real pain when you need to know a seg:side and you've got quad lasers.
756                         mprintf((0, "Your laser hit at segment = %i, side = %i\n", hitseg, hitwall));
757                         HUD_init_message("Hit at segment = %i, side = %i", hitseg, hitwall);
758                         if (weapon->id < 4)
759                                 subtract_light(hitseg, hitwall);
760                         else if (weapon->id == FLARE_ID)
761                                 add_light(hitseg, hitwall);
762                 }
763
764                 //@@#ifdef EDITOR
765                 //@@Cursegp = &Segments[hitseg];
766                 //@@Curside = hitwall;
767                 //@@#endif
768         #endif
769
770         if ((weapon->mtype.phys_info.velocity.x == 0) && (weapon->mtype.phys_info.velocity.y == 0) && (weapon->mtype.phys_info.velocity.z == 0)) {
771                 Int3(); //      Contact Matt: This is impossible.  A weapon with 0 velocity hit a wall, which doesn't move.
772                 return;
773         }
774
775         blew_up = check_effect_blowup(seg,hitwall,hitpt, weapon, 0);
776
777         //if ((seg->sides[hitwall].tmap_num2==0) && (TmapInfo[seg->sides[hitwall].tmap_num].flags & TMI_VOLATILE)) {
778
779         if ((weapon->ctype.laser_info.parent_type == OBJ_ROBOT) && (Robot_info[Objects[weapon->ctype.laser_info.parent_num].id].companion==1)) {
780                 robot_escort = 1;
781
782                 if (Game_mode & GM_MULTI)
783                  {
784                          Int3();  // Get Jason!
785                     return;
786             }   
787
788
789                 playernum = Player_num;         //if single player, he's the player's buddy
790         }
791         else {
792                 robot_escort = 0;
793
794                 if (Objects[weapon->ctype.laser_info.parent_num].type == OBJ_PLAYER)
795                         playernum = Objects[weapon->ctype.laser_info.parent_num].id;
796                 else
797                         playernum = -1;         //not a player (thus a robot)
798         }
799
800         if (blew_up) {          //could be a wall switch
801                 //for wall triggers, always say that the player shot it out.  This is
802                 //because robots can shoot out wall triggers, and so the trigger better
803                 //take effect  
804                 //      NO -- Changed by MK, 10/18/95.  We don't want robots blowing puzzles.  Only player or buddy can open!
805                 check_trigger(seg,hitwall,weapon->ctype.laser_info.parent_num,1);
806         }
807
808         if (weapon->id == EARTHSHAKER_ID)
809                 smega_rock_stuff();
810
811         wall_type = wall_hit_process( seg, hitwall, weapon->shields, playernum, weapon );
812
813         // Wall is volatile if either tmap 1 or 2 is volatile
814         if ((TmapInfo[seg->sides[hitwall].tmap_num].flags & TMI_VOLATILE) || (seg->sides[hitwall].tmap_num2 && (TmapInfo[seg->sides[hitwall].tmap_num2&0x3fff].flags & TMI_VOLATILE))) {
815                 weapon_info *wi = &Weapon_info[weapon->id];
816                 int vclip;
817
818                 //we've hit a volatile wall
819
820                 digi_link_sound_to_pos( SOUND_VOLATILE_WALL_HIT,hitseg, 0, hitpt, 0, F1_0 );
821
822                 //for most weapons, use volatile wall hit.  For mega, use its special vclip
823                 vclip = (weapon->id == MEGA_ID)?Weapon_info[weapon->id].robot_hit_vclip:VCLIP_VOLATILE_WALL_HIT;
824
825                 //      New by MK: If powerful badass, explode as badass, not due to lava, fixes megas being wimpy in lava.
826                 if (wi->damage_radius >= VOLATILE_WALL_DAMAGE_RADIUS/2) {
827                         // -- mprintf((0, "Big weapon doing badass in lava instead.\n"));
828                         explode_badass_weapon(weapon,hitpt);
829                 } else {
830                         object_create_badass_explosion( weapon, hitseg, hitpt, 
831                                 wi->impact_size + VOLATILE_WALL_IMPACT_SIZE,
832                                 vclip,
833                                 wi->strength[Difficulty_level]/4+VOLATILE_WALL_EXPL_STRENGTH,   //      diminished by mk on 12/08/94, i was doing 70 damage hitting lava on lvl 1.
834                                 wi->damage_radius+VOLATILE_WALL_DAMAGE_RADIUS,
835                                 wi->strength[Difficulty_level]/2+VOLATILE_WALL_DAMAGE_FORCE,
836                                 weapon->ctype.laser_info.parent_num );
837                 }
838
839                 weapon->flags |= OF_SHOULD_BE_DEAD;             //make flares die in lava
840
841         }
842         else if ((TmapInfo[seg->sides[hitwall].tmap_num].flags & TMI_WATER) || (seg->sides[hitwall].tmap_num2 && (TmapInfo[seg->sides[hitwall].tmap_num2&0x3fff].flags & TMI_WATER))) {
843                 weapon_info *wi = &Weapon_info[weapon->id];
844
845                 //we've hit water
846
847                 //      MK: 09/13/95: Badass in water is 1/2 normal intensity.
848                 if ( Weapon_info[weapon->id].matter ) {
849
850                         digi_link_sound_to_pos( SOUND_MISSILE_HIT_WATER,hitseg, 0, hitpt, 0, F1_0 );
851
852                         if ( Weapon_info[weapon->id].damage_radius ) {
853
854                                 digi_link_sound_to_object(SOUND_BADASS_EXPLOSION, weapon-Objects, 0, F1_0);
855
856                                 //      MK: 09/13/95: Badass in water is 1/2 normal intensity.
857                                 object_create_badass_explosion( weapon, hitseg, hitpt, 
858                                         wi->impact_size/2,
859                                         wi->robot_hit_vclip, 
860                                         wi->strength[Difficulty_level]/4,
861                                         wi->damage_radius,
862                                         wi->strength[Difficulty_level]/2,
863                                         weapon->ctype.laser_info.parent_num );
864                         }
865                         else
866                                 object_create_explosion( weapon->segnum, &weapon->pos, Weapon_info[weapon->id].impact_size, Weapon_info[weapon->id].wall_hit_vclip );
867
868                 } else {
869                         digi_link_sound_to_pos( SOUND_LASER_HIT_WATER,hitseg, 0, hitpt, 0, F1_0 );
870                         object_create_explosion( weapon->segnum, &weapon->pos, Weapon_info[weapon->id].impact_size, VCLIP_WATER_HIT );
871                 }
872
873                 weapon->flags |= OF_SHOULD_BE_DEAD;             //make flares die in water
874
875         }
876         else {
877
878                 if (weapon->mtype.phys_info.flags & PF_BOUNCE) {
879
880                         //do special bound sound & effect
881
882                 }
883                 else {
884
885                         //if it's not the player's weapon, or it is the player's and there
886                         //is no wall, and no blowing up monitor, then play sound
887                         if ((weapon->ctype.laser_info.parent_type != OBJ_PLAYER) ||     ((seg->sides[hitwall].wall_num == -1 || wall_type==WHP_NOT_SPECIAL) && !blew_up))
888                                 if ((Weapon_info[weapon->id].wall_hit_sound > -1 ) && (!(weapon->flags & OF_SILENT)))
889                                 digi_link_sound_to_pos( Weapon_info[weapon->id].wall_hit_sound,weapon->segnum, 0, &weapon->pos, 0, F1_0 );
890                 
891                         if ( Weapon_info[weapon->id].wall_hit_vclip > -1 )      {
892                                 if ( Weapon_info[weapon->id].damage_radius )
893                                         explode_badass_weapon(weapon,hitpt);
894                                 else
895                                         object_create_explosion( weapon->segnum, &weapon->pos, Weapon_info[weapon->id].impact_size, Weapon_info[weapon->id].wall_hit_vclip );
896                         }
897                 }
898         }
899
900         //      If weapon fired by player or companion...
901         if (( weapon->ctype.laser_info.parent_type== OBJ_PLAYER ) || robot_escort) {
902
903                 if (!(weapon->flags & OF_SILENT) && (weapon->ctype.laser_info.parent_num == Players[Player_num].objnum))
904                         create_awareness_event(weapon, PA_WEAPON_WALL_COLLISION);                       // object "weapon" can attract attention to player
905         
906 //              if (weapon->id != FLARE_ID) {
907 //      We now allow flares to open doors.
908                 {
909
910                         if (((weapon->id != FLARE_ID) || (weapon->ctype.laser_info.parent_type != OBJ_PLAYER)) && !(weapon->mtype.phys_info.flags & PF_BOUNCE))
911                                 weapon->flags |= OF_SHOULD_BE_DEAD;
912
913                         //don't let flares stick in force fields
914                         if ((weapon->id == FLARE_ID) && (TmapInfo[seg->sides[hitwall].tmap_num].flags & TMI_FORCE_FIELD))
915                                 weapon->flags |= OF_SHOULD_BE_DEAD;
916
917                         if (!(weapon->flags & OF_SILENT)) {
918                                 switch (wall_type) {
919
920                                         case WHP_NOT_SPECIAL:
921                                                 //should be handled above
922                                                 //digi_link_sound_to_pos( Weapon_info[weapon->id].wall_hit_sound, weapon->segnum, 0, &weapon->pos, 0, F1_0 );
923                                                 break;
924
925                                         case WHP_NO_KEY:
926                                                 //play special hit door sound (if/when we get it)
927                                                 digi_link_sound_to_pos( SOUND_WEAPON_HIT_DOOR, weapon->segnum, 0, &weapon->pos, 0, F1_0 );
928 #ifdef NETWORK
929                                  if (Game_mode & GM_MULTI)
930                                                         multi_send_play_sound( SOUND_WEAPON_HIT_DOOR, F1_0 );
931 #endif
932
933                                                 break;
934
935                                         case WHP_BLASTABLE:
936                                                 //play special blastable wall sound (if/when we get it)
937                                                 if ((Weapon_info[weapon->id].wall_hit_sound > -1 ) && (!(weapon->flags & OF_SILENT)))
938                                                         digi_link_sound_to_pos( SOUND_WEAPON_HIT_BLASTABLE, weapon->segnum, 0, &weapon->pos, 0, F1_0 );
939                                                 break;
940
941                                         case WHP_DOOR:
942                                                 //don't play anything, since door open sound will play
943                                                 break;
944                                 }
945                         } // else
946                                 //mprintf((0, "Weapon %i hits wall, but has silent bit set.\n", weapon-Objects));
947                 } // else {
948                         //      if (weapon->lifeleft <= 0)
949                         //      weapon->flags |= OF_SHOULD_BE_DEAD;
950                 // }
951
952         } else {
953                 // This is a robot's laser
954                 if (!(weapon->mtype.phys_info.flags & PF_BOUNCE))
955                         weapon->flags |= OF_SHOULD_BE_DEAD;
956         }
957
958         return;
959 }
960
961 //##void collide_camera_and_wall( object * camera, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)       {
962 //##    return;
963 //##}
964
965 //##void collide_powerup_and_wall( object * powerup, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)     {
966 //##    return;
967 //##}
968
969 void collide_debris_and_wall( object * debris, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt)   {       
970         explode_object(debris,0);
971         return;
972 }
973
974 //##void collide_fireball_and_fireball( object * fireball1, object * fireball2, vms_vector *collision_point ) {
975 //##    return; 
976 //##}
977
978 //##void collide_fireball_and_robot( object * fireball, object * robot, vms_vector *collision_point ) {
979 //##    return; 
980 //##}
981
982 //##void collide_fireball_and_hostage( object * fireball, object * hostage, vms_vector *collision_point ) {
983 //##    return; 
984 //##}
985
986 //##void collide_fireball_and_player( object * fireball, object * player, vms_vector *collision_point ) {
987 //##    return; 
988 //##}
989
990 //##void collide_fireball_and_weapon( object * fireball, object * weapon, vms_vector *collision_point ) { 
991 //##    //weapon->flags |= OF_SHOULD_BE_DEAD;
992 //##    return; 
993 //##}
994
995 //##void collide_fireball_and_camera( object * fireball, object * camera, vms_vector *collision_point ) { 
996 //##    return; 
997 //##}
998
999 //##void collide_fireball_and_powerup( object * fireball, object * powerup, vms_vector *collision_point ) { 
1000 //##    return; 
1001 //##}
1002
1003 //##void collide_fireball_and_debris( object * fireball, object * debris, vms_vector *collision_point ) { 
1004 //##    return; 
1005 //##}
1006
1007 //      -------------------------------------------------------------------------------------------------------------------
1008 void collide_robot_and_robot( object * robot1, object * robot2, vms_vector *collision_point ) { 
1009 //      mprintf((0, "Coll: [%2i %4i %4i %4i] [%2i %4i %4i %4i] at [%4i %4i %4i]", 
1010 //              robot1-Objects, f2i(robot1->pos.x), f2i(robot1->pos.y), f2i(robot1->pos.z),
1011 //              robot2-Objects, f2i(robot2->pos.x), f2i(robot2->pos.y), f2i(robot2->pos.z),
1012 //              f2i(collision_point->x), f2i(collision_point->y), f2i(collision_point->z)));
1013
1014         bump_two_objects(robot1, robot2, 1);
1015         return; 
1016 }
1017
1018 void collide_robot_and_controlcen( object * obj1, object * obj2, vms_vector *collision_point )
1019 {
1020
1021         if (obj1->type == OBJ_ROBOT) {
1022                 vms_vector      hitvec;
1023                 vm_vec_normalize_quick(vm_vec_sub(&hitvec, &obj2->pos, &obj1->pos));
1024                 bump_one_object(obj1, &hitvec, 0);
1025         } else {
1026                 vms_vector      hitvec;
1027                 vm_vec_normalize_quick(vm_vec_sub(&hitvec, &obj1->pos, &obj2->pos));
1028                 bump_one_object(obj2, &hitvec, 0);
1029         }
1030
1031 }
1032
1033 //##void collide_robot_and_hostage( object * robot, object * hostage, vms_vector *collision_point ) { 
1034 //##    return; 
1035 //##}
1036
1037 fix Last_thief_hit_time;
1038
1039 void collide_robot_and_player( object * robot, object * playerobj, vms_vector *collision_point )
1040
1041         int     steal_attempt = 0;
1042         int     collision_seg;
1043
1044         if (robot->flags&OF_EXPLODING)
1045                 return;
1046
1047         collision_seg = find_point_seg(collision_point, playerobj->segnum);
1048         if (collision_seg != -1)
1049                 object_create_explosion( collision_seg, collision_point, Weapon_info[0].impact_size, Weapon_info[0].wall_hit_vclip );
1050
1051         if (playerobj->id == Player_num) {
1052                 if (Robot_info[robot->id].companion)    //      Player and companion don't collide.
1053                         return;
1054                 if (Robot_info[robot->id].kamikaze) {
1055                         apply_damage_to_robot(robot, robot->shields+1, playerobj-Objects);
1056                         if (playerobj == ConsoleObject)
1057                                 add_points_to_score(Robot_info[robot->id].score_value);
1058                 }
1059
1060                 if (Robot_info[robot->id].thief) {
1061                         if (Ai_local_info[robot-Objects].mode == AIM_THIEF_ATTACK) {
1062                                 Last_thief_hit_time = GameTime;
1063                                 attempt_to_steal_item(robot, playerobj->id);
1064                                 steal_attempt = 1;
1065                         } else if (GameTime - Last_thief_hit_time < F1_0*2)
1066                                 return;         //      ZOUNDS!  BRILLIANT!  Thief not collide with player if not stealing!
1067                                                                 // NO!  VERY DUMB!  makes thief look very stupid if player hits him while cloaked! -AP
1068                         else
1069                                 Last_thief_hit_time = GameTime;
1070                 }
1071
1072                 create_awareness_event(playerobj, PA_PLAYER_COLLISION);                 // object robot can attract attention to player
1073                 do_ai_robot_hit_attack(robot, playerobj, collision_point);
1074                 do_ai_robot_hit(robot, PA_WEAPON_ROBOT_COLLISION);
1075         } 
1076 #ifdef NETWORK
1077         else
1078                 multi_robot_request_change(robot, playerobj->id);
1079 #endif
1080
1081         // added this if to remove the bump sound if it's the thief.
1082         // A "steal" sound was added and it was getting obscured by the bump. -AP 10/3/95
1083         //      Changed by MK to make this sound unless the robot stole.
1084         if ((!steal_attempt) && !Robot_info[robot->id].energy_drain)
1085                 digi_link_sound_to_pos( SOUND_ROBOT_HIT_PLAYER, playerobj->segnum, 0, collision_point, 0, F1_0 );
1086
1087         bump_two_objects(robot, playerobj, 1);
1088         return; 
1089 }
1090
1091 // Provide a way for network message to instantly destroy the control center
1092 // without awarding points or anything.
1093
1094 //      if controlcen == NULL, that means don't do the explosion because the control center
1095 //      was actually in another object.
1096 void net_destroy_controlcen(object *controlcen)
1097 {
1098         if (Control_center_destroyed != 1) {
1099
1100                 do_controlcen_destroyed_stuff(controlcen);
1101
1102                 if ((controlcen != NULL) && !(controlcen->flags&(OF_EXPLODING|OF_DESTROYED))) {
1103                         digi_link_sound_to_pos( SOUND_CONTROL_CENTER_DESTROYED, controlcen->segnum, 0, &controlcen->pos, 0, F1_0 );
1104                         explode_object(controlcen,0);
1105                 }
1106         }
1107
1108 }
1109
1110 //      -----------------------------------------------------------------------------
1111 void apply_damage_to_controlcen(object *controlcen, fix damage, short who)
1112 {
1113         int     whotype;
1114
1115         //      Only allow a player to damage the control center.
1116
1117         if ((who < 0) || (who > Highest_object_index))
1118                 return;
1119
1120         whotype = Objects[who].type;
1121         if (whotype != OBJ_PLAYER) {
1122                 mprintf((0, "Damage to control center by object of type %i prevented by MK!\n", whotype));
1123                 return;
1124         }
1125
1126         #ifdef NETWORK
1127         if ((Game_mode & GM_MULTI) && !(Game_mode & GM_MULTI_COOP) && (Players[Player_num].time_level < Netgame.control_invul_time))
1128         {
1129                 if (Objects[who].id == Player_num) {
1130                         int secs = f2i(Netgame.control_invul_time-Players[Player_num].time_level) % 60;
1131                         int mins = f2i(Netgame.control_invul_time-Players[Player_num].time_level) / 60;
1132                         HUD_init_message("%s %d:%02d.", TXT_CNTRLCEN_INVUL, mins, secs);
1133                 }
1134                 return;
1135         }
1136         #endif
1137
1138         if (Objects[who].id == Player_num) {
1139                 Control_center_been_hit = 1;
1140                 ai_do_cloak_stuff();
1141         }
1142
1143         if ( controlcen->shields >= 0 )
1144                 controlcen->shields -= damage;
1145
1146         if ( (controlcen->shields < 0) && !(controlcen->flags&(OF_EXPLODING|OF_DESTROYED)) ) {
1147
1148                 do_controlcen_destroyed_stuff(controlcen);
1149
1150                 #ifdef NETWORK
1151                 if (Game_mode & GM_MULTI) {
1152                         if (who == Players[Player_num].objnum)
1153                                 add_points_to_score(CONTROL_CEN_SCORE);
1154                         multi_send_destroy_controlcen((ushort)(controlcen-Objects), Objects[who].id );
1155                 }
1156                 #endif
1157
1158                 if (!(Game_mode & GM_MULTI))
1159                         add_points_to_score(CONTROL_CEN_SCORE);
1160
1161                 digi_link_sound_to_pos( SOUND_CONTROL_CENTER_DESTROYED, controlcen->segnum, 0, &controlcen->pos, 0, F1_0 );
1162
1163                 explode_object(controlcen,0);
1164         }
1165 }
1166
1167 void collide_player_and_controlcen( object * controlcen, object * playerobj, vms_vector *collision_point )
1168
1169         if (playerobj->id == Player_num) {
1170                 Control_center_been_hit = 1;
1171                 ai_do_cloak_stuff();                            //      In case player cloaked, make control center know where he is.
1172         }
1173
1174         digi_link_sound_to_pos( SOUND_ROBOT_HIT_PLAYER, playerobj->segnum, 0, collision_point, 0, F1_0 );
1175         bump_two_objects(controlcen, playerobj, 1);
1176
1177         return; 
1178 }
1179
1180 void collide_player_and_marker( object * marker, object * playerobj, vms_vector *collision_point )
1181
1182    mprintf ((0,"Collided with marker %d!\n",marker->id));
1183
1184         if (playerobj->id==Player_num) {
1185                 int drawn;
1186
1187                 if (Game_mode & GM_MULTI)
1188                 {
1189                         drawn = HUD_init_message ("MARKER %s: %s",Players[marker->id/2].callsign,MarkerMessage[marker->id]);
1190                 }
1191                 else
1192                 {
1193                         if (MarkerMessage[marker->id][0])
1194                                 drawn = HUD_init_message("MARKER %d: %s", marker->id+1,MarkerMessage[marker->id]);
1195                         else
1196                                 drawn = HUD_init_message("MARKER %d", marker->id+1);
1197            }
1198
1199                 if (drawn)
1200                         digi_play_sample( SOUND_MARKER_HIT, F1_0 );
1201
1202                 detect_escort_goal_accomplished(marker-Objects);
1203    }
1204 }
1205
1206 //      If a persistent weapon and other object is not a weapon, weaken it, else kill it.
1207 //      If both objects are weapons, weaken the weapon.
1208 void maybe_kill_weapon(object *weapon, object *other_obj)
1209 {
1210         if ((weapon->id == PROXIMITY_ID) || (weapon->id == SUPERPROX_ID) || (weapon->id == PMINE_ID)) {
1211                 weapon->flags |= OF_SHOULD_BE_DEAD;
1212                 return;
1213         }
1214
1215         //      Changed, 10/12/95, MK: Make weapon-weapon collisions always kill both weapons if not persistent.
1216         //      Reason: Otherwise you can't use proxbombs to detonate incoming homing missiles (or mega missiles).
1217         if (weapon->mtype.phys_info.flags & PF_PERSISTENT) {
1218                 //      Weapons do a lot of damage to weapons, other objects do much less.
1219                 if (!(weapon->mtype.phys_info.flags & PF_PERSISTENT)) {
1220                         if (other_obj->type == OBJ_WEAPON)
1221                                 weapon->shields -= other_obj->shields/2;
1222                         else
1223                                 weapon->shields -= other_obj->shields/4;
1224
1225                         if (weapon->shields <= 0) {
1226                                 weapon->shields = 0;
1227                                 weapon->flags |= OF_SHOULD_BE_DEAD;     // weapon->lifeleft = 1;
1228                         }
1229                 }
1230         } else
1231                 weapon->flags |= OF_SHOULD_BE_DEAD;     // weapon->lifeleft = 1;
1232
1233 // --   if ((weapon->mtype.phys_info.flags & PF_PERSISTENT) || (other_obj->type == OBJ_WEAPON)) {
1234 // --           //      Weapons do a lot of damage to weapons, other objects do much less.
1235 // --           if (!(weapon->mtype.phys_info.flags & PF_PERSISTENT)) {
1236 // --                   if (other_obj->type == OBJ_WEAPON)
1237 // --                           weapon->shields -= other_obj->shields/2;
1238 // --                   else
1239 // --                           weapon->shields -= other_obj->shields/4;
1240 // -- 
1241 // --                   if (weapon->shields <= 0) {
1242 // --                           weapon->shields = 0;
1243 // --                           weapon->flags |= OF_SHOULD_BE_DEAD;
1244 // --                   }
1245 // --           }
1246 // --   } else
1247 // --           weapon->flags |= OF_SHOULD_BE_DEAD;
1248 }
1249
1250 void collide_weapon_and_controlcen( object * weapon, object *controlcen, vms_vector *collision_point  )
1251 {
1252
1253         if (weapon->id == OMEGA_ID)
1254                 if (!ok_to_do_omega_damage(weapon))
1255                         return;
1256
1257         if (weapon->ctype.laser_info.parent_type == OBJ_PLAYER) {
1258                 fix     damage = weapon->shields;
1259
1260                 if (Objects[weapon->ctype.laser_info.parent_num].id == Player_num)
1261                         Control_center_been_hit = 1;
1262
1263                 if ( Weapon_info[weapon->id].damage_radius )
1264                         explode_badass_weapon(weapon,collision_point);
1265                 else
1266                         object_create_explosion( controlcen->segnum, collision_point, controlcen->size*3/20, VCLIP_SMALL_EXPLOSION );
1267
1268                 digi_link_sound_to_pos( SOUND_CONTROL_CENTER_HIT, controlcen->segnum, 0, collision_point, 0, F1_0 );
1269
1270                 damage = fixmul(damage, weapon->ctype.laser_info.multiplier);
1271
1272                 apply_damage_to_controlcen(controlcen, damage, weapon->ctype.laser_info.parent_num);
1273
1274                 maybe_kill_weapon(weapon,controlcen);
1275         } else {        //      If robot weapon hits control center, blow it up, make it go away, but do no damage to control center.
1276                 object_create_explosion( controlcen->segnum, collision_point, controlcen->size*3/20, VCLIP_SMALL_EXPLOSION );
1277                 maybe_kill_weapon(weapon,controlcen);
1278         }
1279
1280 }
1281
1282 void collide_weapon_and_clutter( object * weapon, object *clutter, vms_vector *collision_point  )       {
1283         short exp_vclip = VCLIP_SMALL_EXPLOSION;
1284
1285         if ( clutter->shields >= 0 )
1286                 clutter->shields -= weapon->shields;
1287
1288         digi_link_sound_to_pos( SOUND_LASER_HIT_CLUTTER, weapon->segnum, 0, collision_point, 0, F1_0 );
1289  
1290         object_create_explosion( clutter->segnum, collision_point, ((clutter->size/3)*3)/4, exp_vclip );
1291
1292         if ( (clutter->shields < 0) && !(clutter->flags&(OF_EXPLODING|OF_DESTROYED)))
1293                 explode_object(clutter,STANDARD_EXPL_DELAY);
1294
1295         maybe_kill_weapon(weapon,clutter);
1296 }
1297
1298 //--mk, 121094 -- extern void spin_robot(object *robot, vms_vector *collision_point);
1299
1300 extern object *explode_badass_object(object *objp, fix damage, fix distance, fix force);
1301
1302 int     Final_boss_is_dead = 0;
1303 fix     Final_boss_countdown_time = 0;
1304
1305 //      ------------------------------------------------------------------------------------------------------
1306 void do_final_boss_frame(void)
1307 {
1308
1309         if (!Final_boss_is_dead)
1310                 return;
1311
1312         if (!Control_center_destroyed)
1313                 return;
1314
1315         if (Final_boss_countdown_time == 0)
1316                 Final_boss_countdown_time = F1_0*2;
1317
1318         Final_boss_countdown_time -= FrameTime;
1319         if (Final_boss_countdown_time > 0)
1320                 return;
1321
1322         gr_palette_fade_out( gr_palette, 256, 0 );
1323         start_endlevel_sequence();              //pretend we hit the exit trigger
1324
1325 }
1326
1327 //      ------------------------------------------------------------------------------------------------------
1328 //      This is all the ugly stuff we do when you kill the final boss so that you don't die or something
1329 //      which would ruin the logic of the cut sequence.
1330 void do_final_boss_hacks(void)
1331 {
1332         if (Player_is_dead) {
1333                 Int3();         //      Uh-oh, player is dead.  Try to rescue him.
1334                 Player_is_dead = 0;
1335         }
1336
1337         if (Players[Player_num].shields <= 0)
1338                 Players[Player_num].shields = 1;
1339
1340         //      If you're not invulnerable, get invulnerable!
1341         if (!(Players[Player_num].flags & PLAYER_FLAGS_INVULNERABLE)) {
1342                 Players[Player_num].invulnerable_time = GameTime;
1343                 Players[Player_num].flags |= PLAYER_FLAGS_INVULNERABLE;
1344         }
1345         if (!(Game_mode & GM_MULTI))
1346                 buddy_message("Nice job, %s!", Players[Player_num].callsign);
1347
1348         Final_boss_is_dead = 1;
1349 }
1350
1351 extern int Buddy_dude_cheat;
1352 extern int multi_all_players_alive();
1353 void multi_send_finish_game ();
1354
1355 //      ------------------------------------------------------------------------------------------------------
1356 //      Return 1 if robot died, else return 0
1357 int apply_damage_to_robot(object *robot, fix damage, int killer_objnum)
1358 {
1359 #ifdef NETWORK
1360    char isthief;
1361         char i,temp_stolen[MAX_STOLEN_ITEMS];   
1362 #endif
1363         
1364         if ( robot->flags&OF_EXPLODING) return 0;
1365
1366         if (robot->shields < 0 ) return 0;      //robot already dead...
1367
1368         if (Robot_info[robot->id].boss_flag)
1369                 Boss_hit_time = GameTime;
1370
1371         //      Buddy invulnerable on level 24 so he can give you his important messages.  Bah.
1372         //      Also invulnerable if his cheat for firing weapons is in effect.
1373         if (Robot_info[robot->id].companion) {
1374 //              if ((PLAYING_BUILTIN_MISSION && Current_level_num == Last_level) || Buddy_dude_cheat)
1375 #ifdef NETWORK
1376                 if (PLAYING_BUILTIN_MISSION && Current_level_num == Last_level)
1377                         return 0;
1378 #endif
1379         }
1380
1381 //      if (robot->control_type == CT_REMOTE)
1382 //              return 0; // Can't damange a robot controlled by another player
1383
1384 // -- MK, 10/21/95, unused! --  if (Robot_info[robot->id].boss_flag)
1385 //              Boss_been_hit = 1;
1386
1387         robot->shields -= damage;
1388
1389         //      Do unspeakable hacks to make sure player doesn't die after killing boss.  Or before, sort of.
1390         if (Robot_info[robot->id].boss_flag)
1391 #ifdef NETWORK
1392                 if (PLAYING_BUILTIN_MISSION && Current_level_num == Last_level)
1393 #endif
1394                         if (robot->shields < 0)
1395                          {
1396 #ifdef NETWORK
1397                                 if (Game_mode & GM_MULTI)
1398                                   {
1399                                          if (!multi_all_players_alive()) // everyones gotta be alive
1400                                            robot->shields=1;
1401                                          else
1402                                           {
1403                                             multi_send_finish_game();
1404                                             do_final_boss_hacks();
1405                                           }             
1406                                   
1407                                         }               
1408                                 else
1409 #endif
1410                                   {     // NOTE LINK TO ABOVE!!!
1411                                         if ((Players[Player_num].shields < 0) || Player_is_dead)
1412                                                 robot->shields = 1;             //      Sorry, we can't allow you to kill the final boss after you've died.  Rough luck.
1413                                         else
1414                                                 do_final_boss_hacks();
1415                                   }
1416                           }
1417
1418         if (robot->shields < 0) {
1419 #ifdef NETWORK
1420                 if (Game_mode & GM_MULTI) {
1421                  if (Robot_info[robot->id].thief)       
1422                         isthief=1;
1423                  else
1424                         isthief=0;
1425
1426                  if (isthief)
1427                         for (i=0;i<MAX_STOLEN_ITEMS;i++)
1428                          temp_stolen[(int)i]=Stolen_items[(int)i];
1429                                 
1430                         if (multi_explode_robot_sub(robot-Objects, killer_objnum,Robot_info[robot->id].thief))
1431                         {
1432                          if (isthief)   
1433                         for (i=0;i<MAX_STOLEN_ITEMS;i++)
1434                                   Stolen_items[(int)i]=temp_stolen[(int)i];
1435                                         
1436                                 multi_send_robot_explode(robot-Objects, killer_objnum,Robot_info[robot->id].thief);
1437
1438                    if (isthief) 
1439                                 for (i=0;i<MAX_STOLEN_ITEMS;i++)
1440                                           Stolen_items[(int)i]=255;
1441
1442                                 return 1;
1443                         }
1444                         else
1445                                 return 0;
1446                 }
1447 #endif
1448
1449                 Players[Player_num].num_kills_level++;
1450                 Players[Player_num].num_kills_total++;
1451
1452                 if (Robot_info[robot->id].boss_flag) {
1453                         start_boss_death_sequence(robot);       //do_controlcen_destroyed_stuff(NULL);
1454                 } else if (Robot_info[robot->id].death_roll) {
1455                         start_robot_death_sequence(robot);      //do_controlcen_destroyed_stuff(NULL);
1456                 } else {
1457                         if (robot->id == SPECIAL_REACTOR_ROBOT)
1458                                 special_reactor_stuff();
1459                         //if (Robot_info[robot->id].smart_blobs)
1460                         //      create_smart_children(robot, Robot_info[robot->id].smart_blobs);
1461                         //if (Robot_info[robot->id].badass)
1462                         //      explode_badass_object(robot, F1_0*Robot_info[robot->id].badass, F1_0*40, F1_0*150);
1463                         if (Robot_info[robot->id].kamikaze)
1464                                 explode_object(robot,1);                //      Kamikaze, explode right away, IN YOUR FACE!
1465                         else
1466                                 explode_object(robot,STANDARD_EXPL_DELAY);
1467                 }
1468                 return 1;
1469         } else
1470                 return 0;
1471 }
1472
1473 extern int boss_spew_robot(object *objp, vms_vector *pos);
1474
1475 //--ubyte       Boss_teleports[NUM_D2_BOSSES] =                                 {1,1,1,1,1,1};          // Set byte if this boss can teleport
1476 //--ubyte       Boss_cloaks[NUM_D2_BOSSES] =                                    {1,1,1,1,1,1};          // Set byte if this boss can cloak
1477 //--ubyte       Boss_spews_bots_energy[NUM_D2_BOSSES] =         {1,1,0,0,1,1};          //      Set byte if boss spews bots when hit by energy weapon.
1478 //--ubyte       Boss_spews_bots_matter[NUM_D2_BOSSES] =         {0,0,1,0,1,1};          //      Set byte if boss spews bots when hit by matter weapon.
1479 //--ubyte       Boss_invulnerable_energy[NUM_D2_BOSSES] = {0,0,1,1,0,0};                //      Set byte if boss is invulnerable to energy weapons.
1480 //--ubyte       Boss_invulnerable_matter[NUM_D2_BOSSES] = {0,0,0,1,0,0};                //      Set byte if boss is invulnerable to matter weapons.
1481 //--ubyte       Boss_invulnerable_spot[NUM_D2_BOSSES] =         {0,0,0,0,1,1};          //      Set byte if boss is invulnerable in all but a certain spot.  (Dot product fvec|vec_to_collision < BOSS_INVULNERABLE_DOT)
1482
1483 //#define       BOSS_INVULNERABLE_DOT   0               //      If a boss is invulnerable over most of his body, fvec(dot)vec_to_collision must be less than this for damage to occur.
1484 int     Boss_invulnerable_dot = 0;
1485
1486 int     Buddy_gave_hint_count = 5;
1487 fix     Last_time_buddy_gave_hint = 0;
1488
1489 //      ------------------------------------------------------------------------------------------------------
1490 //      Return true if damage done to boss, else return false.
1491 int do_boss_weapon_collision(object *robot, object *weapon, vms_vector *collision_point)
1492 {
1493         int     d2_boss_index;
1494         int     damage_flag;
1495
1496         damage_flag = 1;
1497
1498         d2_boss_index = Robot_info[robot->id].boss_flag - BOSS_D2;
1499
1500         Assert((d2_boss_index >= 0) && (d2_boss_index < NUM_D2_BOSSES));
1501
1502         //      See if should spew a bot.
1503         if (weapon->ctype.laser_info.parent_type == OBJ_PLAYER)
1504                 if ((Weapon_info[weapon->id].matter && Boss_spews_bots_matter[d2_boss_index]) || (!Weapon_info[weapon->id].matter && Boss_spews_bots_energy[d2_boss_index])) {
1505                         if (Boss_spew_more[d2_boss_index])
1506                                 if (d_rand() > 16384) {
1507                                         if (boss_spew_robot(robot, collision_point) != -1)
1508                                                 Last_gate_time = GameTime - Gate_interval - 1;  //      Force allowing spew of another bot.
1509                                 }
1510                         boss_spew_robot(robot, collision_point);
1511                 }
1512
1513         if (Boss_invulnerable_spot[d2_boss_index]) {
1514                 fix                     dot;
1515                 vms_vector      tvec1;
1516
1517                 //      Boss only vulnerable in back.  See if hit there.
1518                 vm_vec_sub(&tvec1, collision_point, &robot->pos);
1519                 vm_vec_normalize_quick(&tvec1); //      Note, if BOSS_INVULNERABLE_DOT is close to F1_0 (in magnitude), then should probably use non-quick version.
1520                 dot = vm_vec_dot(&tvec1, &robot->orient.fvec);
1521                 mprintf((0, "Boss hit vec dot = %7.3f\n", f2fl(dot)));
1522
1523                 if (dot > Boss_invulnerable_dot) {
1524                         int     new_obj;
1525                         int     segnum;
1526
1527                         segnum = find_point_seg(collision_point, robot->segnum);
1528                         digi_link_sound_to_pos( SOUND_WEAPON_HIT_DOOR, segnum, 0, collision_point, 0, F1_0);
1529                         damage_flag = 0;
1530
1531                         if (Last_time_buddy_gave_hint == 0)
1532                                 Last_time_buddy_gave_hint = d_rand()*32 + F1_0*16;
1533
1534                         if (Buddy_gave_hint_count) {
1535                                 if (Last_time_buddy_gave_hint + F1_0*20 < GameTime) {
1536                                         int     sval;
1537
1538                                         Buddy_gave_hint_count--;
1539                                         Last_time_buddy_gave_hint = GameTime;
1540                                         sval = (d_rand()*4) >> 15;
1541                                         switch (sval) {
1542                                                 case 0: buddy_message("Hit him in the back!");  break;
1543                                                 case 1: buddy_message("He's invulnerable there!");      break;
1544                                                 case 2: buddy_message("Get behind him and fire!");      break;
1545                                                 case 3:
1546                                                 default:
1547                                                                         buddy_message("Hit the glowing spot!"); break;
1548                                         }
1549                                 }
1550                         }
1551
1552                         //      Cause weapon to bounce.
1553                         //      Make a copy of this weapon, because the physics wants to destroy it.
1554                         if (!Weapon_info[weapon->id].matter) {
1555                                 new_obj = obj_create(weapon->type, weapon->id, weapon->segnum, &weapon->pos,
1556                                         &weapon->orient, weapon->size, weapon->control_type, weapon->movement_type, weapon->render_type);
1557
1558                                 if (new_obj != -1) {
1559                                         vms_vector      vec_to_point;
1560                                         vms_vector      weap_vec;
1561                                         fix                     speed;
1562
1563                                         if (weapon->render_type == RT_POLYOBJ) {
1564                                                 Objects[new_obj].rtype.pobj_info.model_num = Weapon_info[Objects[new_obj].id].model_num;
1565                                                 Objects[new_obj].size = fixdiv(Polygon_models[Objects[new_obj].rtype.pobj_info.model_num].rad,Weapon_info[Objects[new_obj].id].po_len_to_width_ratio);
1566                                         }
1567
1568                                         Objects[new_obj].mtype.phys_info.mass = Weapon_info[weapon->type].mass;
1569                                         Objects[new_obj].mtype.phys_info.drag = Weapon_info[weapon->type].drag;
1570                                         vm_vec_zero(&Objects[new_obj].mtype.phys_info.thrust);
1571
1572                                         vm_vec_sub(&vec_to_point, collision_point, &robot->pos);
1573                                         vm_vec_normalize_quick(&vec_to_point);
1574                                         weap_vec = weapon->mtype.phys_info.velocity;
1575                                         speed = vm_vec_normalize_quick(&weap_vec);
1576                                         vm_vec_scale_add2(&vec_to_point, &weap_vec, -F1_0*2);
1577                                         vm_vec_scale(&vec_to_point, speed/4);
1578                                         Objects[new_obj].mtype.phys_info.velocity = vec_to_point;
1579                                 }
1580                         }
1581                 }
1582         } else if ((Weapon_info[weapon->id].matter && Boss_invulnerable_matter[d2_boss_index]) || (!Weapon_info[weapon->id].matter && Boss_invulnerable_energy[d2_boss_index])) {
1583                 int     segnum;
1584
1585                 segnum = find_point_seg(collision_point, robot->segnum);
1586                 digi_link_sound_to_pos( SOUND_WEAPON_HIT_DOOR, segnum, 0, collision_point, 0, F1_0);
1587                 damage_flag = 0;
1588         }
1589
1590         return damage_flag;
1591 }
1592
1593 extern int Robots_kill_robots_cheat;
1594
1595 //      ------------------------------------------------------------------------------------------------------
1596 void collide_robot_and_weapon( object * robot, object * weapon, vms_vector *collision_point )
1597
1598         int     damage_flag=1;
1599         int     boss_invul_flag=0;
1600
1601         if (weapon->id == OMEGA_ID)
1602                 if (!ok_to_do_omega_damage(weapon))
1603                         return;
1604
1605         if (Robot_info[robot->id].boss_flag) {
1606                 Boss_hit_time = GameTime;
1607                 if (Robot_info[robot->id].boss_flag >= BOSS_D2) {
1608                         damage_flag = do_boss_weapon_collision(robot, weapon, collision_point);
1609                         boss_invul_flag = !damage_flag;
1610                 }
1611         }
1612
1613         //      Put in at request of Jasen (and Adam) because the Buddy-Bot gets in their way.
1614         //      MK has so much fun whacking his butt around the mine he never cared...
1615         if ((Robot_info[robot->id].companion) && ((weapon->ctype.laser_info.parent_type != OBJ_ROBOT) && !Robots_kill_robots_cheat))
1616                 return;
1617
1618         if (weapon->id == EARTHSHAKER_ID)
1619                 smega_rock_stuff();
1620
1621         //      If a persistent weapon hit robot most recently, quick abort, else we cream the same robot many times,
1622         //      depending on frame rate.
1623         if (weapon->mtype.phys_info.flags & PF_PERSISTENT) {
1624                 if (weapon->ctype.laser_info.last_hitobj == robot-Objects)
1625                         return;
1626                 else
1627                         weapon->ctype.laser_info.last_hitobj = robot-Objects;
1628
1629                 // mprintf((0, "weapon #%i with power %i hits robot #%i.\n", weapon - Objects, f2i(weapon->shields), robot - Objects));
1630         }
1631
1632         if (weapon->ctype.laser_info.parent_signature == robot->signature)
1633                 return;
1634
1635         //      Changed, 10/04/95, put out blobs based on skill level and power of weapon doing damage.
1636         //      Also, only a weapon hit from a player weapon causes smart blobs.
1637         if ((weapon->ctype.laser_info.parent_type == OBJ_PLAYER) && (Robot_info[robot->id].energy_blobs))
1638                 if ((robot->shields > 0) && Weapon_is_energy[weapon->id]) {
1639                         fix     probval;
1640                         int     num_blobs;
1641
1642                         probval = (Difficulty_level+2) * min(weapon->shields, robot->shields);
1643                         probval = Robot_info[robot->id].energy_blobs * probval/(NDL*32);
1644
1645                         num_blobs = probval >> 16;
1646                         if (2*d_rand() < (probval & 0xffff))
1647                                 num_blobs++;
1648
1649                         if (num_blobs)
1650                                 create_smart_children(robot, num_blobs);
1651                 }
1652
1653         //      Note: If weapon hits an invulnerable boss, it will still do badass damage, including to the boss,
1654         //      unless this is trapped elsewhere.
1655         if ( Weapon_info[weapon->id].damage_radius )
1656         {
1657                 if (boss_invul_flag) {                  //don't make badass sound
1658                         weapon_info *wi = &Weapon_info[weapon->id];
1659
1660                         //this code copied from explode_badass_weapon()
1661                 
1662                         object_create_badass_explosion( weapon, weapon->segnum, collision_point, 
1663                                                         wi->impact_size, 
1664                                                         wi->robot_hit_vclip, 
1665                                                         wi->strength[Difficulty_level], 
1666                                                         wi->damage_radius,wi->strength[Difficulty_level],
1667                                                         weapon->ctype.laser_info.parent_num );
1668                 
1669                 }
1670                 else            //normal badass explosion
1671                         explode_badass_weapon(weapon,collision_point);
1672         }
1673
1674         if ( ((weapon->ctype.laser_info.parent_type==OBJ_PLAYER) || Robots_kill_robots_cheat) && !(robot->flags & OF_EXPLODING) )       {       
1675                 object *expl_obj=NULL;
1676
1677                 if (weapon->ctype.laser_info.parent_num == Players[Player_num].objnum) {
1678                         create_awareness_event(weapon, PA_WEAPON_ROBOT_COLLISION);                      // object "weapon" can attract attention to player
1679                         do_ai_robot_hit(robot, PA_WEAPON_ROBOT_COLLISION);
1680                 }
1681 #ifdef NETWORK
1682                 else
1683                         multi_robot_request_change(robot, Objects[weapon->ctype.laser_info.parent_num].id);
1684 #endif
1685
1686                 if ( Robot_info[robot->id].exp1_vclip_num > -1 )
1687                         expl_obj = object_create_explosion( weapon->segnum, collision_point, (robot->size/2*3)/4, Robot_info[robot->id].exp1_vclip_num );
1688                 else if ( Weapon_info[weapon->id].robot_hit_vclip > -1 )
1689                         expl_obj = object_create_explosion( weapon->segnum, collision_point, Weapon_info[weapon->id].impact_size, Weapon_info[weapon->id].robot_hit_vclip );
1690
1691                 if (expl_obj)
1692                         obj_attach(robot,expl_obj);
1693
1694                 if ( damage_flag && (Robot_info[robot->id].exp1_sound_num > -1 ))
1695                         digi_link_sound_to_pos( Robot_info[robot->id].exp1_sound_num, robot->segnum, 0, collision_point, 0, F1_0 );
1696
1697                 if (!(weapon->flags & OF_HARMLESS)) {
1698                         fix     damage = weapon->shields;
1699
1700                         if (damage_flag)
1701                                 damage = fixmul(damage, weapon->ctype.laser_info.multiplier);
1702                         else
1703                                 damage = 0;
1704
1705                         //      Cut Gauss damage on bosses because it just breaks the game.  Bosses are so easy to
1706                         //      hit, and missing a robot is what prevents the Gauss from being game-breaking.
1707                         if (weapon->id == GAUSS_ID)
1708                                 if (Robot_info[robot->id].boss_flag)
1709                                         damage = damage * (2*NDL-Difficulty_level)/(2*NDL);
1710
1711                         if (! apply_damage_to_robot(robot, damage, weapon->ctype.laser_info.parent_num))
1712                                 bump_two_objects(robot, weapon, 0);             //only bump if not dead. no damage from bump
1713                         else if (weapon->ctype.laser_info.parent_signature == ConsoleObject->signature) {
1714                                 add_points_to_score(Robot_info[robot->id].score_value);
1715                                 detect_escort_goal_accomplished(robot-Objects);
1716                         }
1717                 }
1718
1719
1720                 //      If Gauss Cannon, spin robot.
1721                 if ((robot != NULL) && (!Robot_info[robot->id].companion) && (!Robot_info[robot->id].boss_flag) && (weapon->id == GAUSS_ID)) {
1722                         ai_static       *aip = &robot->ctype.ai_info;
1723
1724                         if (aip->SKIP_AI_COUNT * FrameTime < F1_0) {
1725                                 aip->SKIP_AI_COUNT++;
1726                                 robot->mtype.phys_info.rotthrust.x = fixmul((d_rand() - 16384), FrameTime * aip->SKIP_AI_COUNT);
1727                                 robot->mtype.phys_info.rotthrust.y = fixmul((d_rand() - 16384), FrameTime * aip->SKIP_AI_COUNT);
1728                                 robot->mtype.phys_info.rotthrust.z = fixmul((d_rand() - 16384), FrameTime * aip->SKIP_AI_COUNT);
1729                                 robot->mtype.phys_info.flags |= PF_USES_THRUST;
1730
1731                         }
1732                 }
1733
1734         }
1735
1736         maybe_kill_weapon(weapon,robot);
1737
1738         return; 
1739 }
1740
1741 //##void collide_robot_and_camera( object * robot, object * camera, vms_vector *collision_point ) { 
1742 //##    return; 
1743 //##}
1744
1745 //##void collide_robot_and_powerup( object * robot, object * powerup, vms_vector *collision_point ) { 
1746 //##    return; 
1747 //##}
1748
1749 //##void collide_robot_and_debris( object * robot, object * debris, vms_vector *collision_point ) { 
1750 //##    return; 
1751 //##}
1752
1753 //##void collide_hostage_and_hostage( object * hostage1, object * hostage2, vms_vector *collision_point ) { 
1754 //##    return; 
1755 //##}
1756
1757 void collide_hostage_and_player( object * hostage, object * player, vms_vector *collision_point ) { 
1758         // Give player points, etc.
1759         if ( player == ConsoleObject )  {
1760                 detect_escort_goal_accomplished(hostage-Objects);
1761                 add_points_to_score(HOSTAGE_SCORE);
1762
1763                 // Do effect
1764                 hostage_rescue(hostage->id);
1765
1766                 // Remove the hostage object.
1767                 hostage->flags |= OF_SHOULD_BE_DEAD;
1768
1769                 #ifdef NETWORK  
1770                 if (Game_mode & GM_MULTI)
1771                         multi_send_remobj(hostage-Objects);
1772                 #endif
1773         }
1774         return; 
1775 }
1776
1777 //--unused-- void collide_hostage_and_weapon( object * hostage, object * weapon, vms_vector *collision_point )
1778 //--unused-- { 
1779 //--unused--    //      Cannot kill hostages, as per Matt's edict!
1780 //--unused--    //      (A fine edict, but in contradiction to the milestone: "Robots attack hostages.")
1781 //--unused--    hostage->shields -= weapon->shields/2;
1782 //--unused-- 
1783 //--unused--    create_awareness_event(weapon, PA_WEAPON_ROBOT_COLLISION);                      // object "weapon" can attract attention to player
1784 //--unused-- 
1785 //--unused--    //PLAY_SOUND_3D( SOUND_HOSTAGE_KILLED, collision_point, hostage->segnum );
1786 //--unused--    digi_link_sound_to_pos( SOUND_HOSTAGE_KILLED, hostage->segnum , 0, collision_point, 0, F1_0 );
1787 //--unused-- 
1788 //--unused-- 
1789 //--unused--    if (hostage->shields <= 0) {
1790 //--unused--            explode_object(hostage,0);
1791 //--unused--            hostage->flags |= OF_SHOULD_BE_DEAD;
1792 //--unused--    }
1793 //--unused-- 
1794 //--unused--    if ( Weapon_info[weapon->id].damage_radius )
1795 //--unused--            explode_badass_weapon(weapon);
1796 //--unused-- 
1797 //--unused--    maybe_kill_weapon(weapon,hostage);
1798 //--unused-- 
1799 //--unused-- }
1800
1801 //##void collide_hostage_and_camera( object * hostage, object * camera, vms_vector *collision_point ) { 
1802 //##    return; 
1803 //##}
1804
1805 //##void collide_hostage_and_powerup( object * hostage, object * powerup, vms_vector *collision_point ) { 
1806 //##    return; 
1807 //##}
1808
1809 //##void collide_hostage_and_debris( object * hostage, object * debris, vms_vector *collision_point ) { 
1810 //##    return; 
1811 //##}
1812
1813 void collide_player_and_player( object * player1, object * player2, vms_vector *collision_point ) { 
1814         digi_link_sound_to_pos( SOUND_ROBOT_HIT_PLAYER, player1->segnum, 0, collision_point, 0, F1_0 );
1815         bump_two_objects(player1, player2, 1);
1816         return;
1817 }
1818
1819 int maybe_drop_primary_weapon_egg(object *playerobj, int weapon_index)
1820 {
1821         int weapon_flag = HAS_FLAG(weapon_index);
1822         int powerup_num;
1823
1824         powerup_num = Primary_weapon_to_powerup[weapon_index];
1825
1826         if (Players[playerobj->id].primary_weapon_flags & weapon_flag)
1827                 return call_object_create_egg(playerobj, 1, OBJ_POWERUP, powerup_num);
1828         else
1829                 return -1;
1830 }
1831
1832 void maybe_drop_secondary_weapon_egg(object *playerobj, int weapon_index, int count)
1833 {
1834         int weapon_flag = HAS_FLAG(weapon_index);
1835         int powerup_num;
1836
1837         powerup_num = Secondary_weapon_to_powerup[weapon_index];
1838
1839         if (Players[playerobj->id].secondary_weapon_flags & weapon_flag) {
1840                 int     i, max_count;
1841
1842                 max_count = min(count, 3);
1843                 for (i=0; i<max_count; i++)
1844                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, powerup_num);
1845         }
1846 }
1847
1848 void drop_missile_1_or_4(object *playerobj,int missile_index)
1849 {
1850         int num_missiles,powerup_id;
1851
1852         num_missiles = Players[playerobj->id].secondary_ammo[missile_index];
1853         powerup_id = Secondary_weapon_to_powerup[missile_index];
1854
1855         if (num_missiles > 10)
1856                 num_missiles = 10;
1857
1858         call_object_create_egg(playerobj, num_missiles/4, OBJ_POWERUP, powerup_id+1);
1859         call_object_create_egg(playerobj, num_missiles%4, OBJ_POWERUP, powerup_id);
1860 }
1861
1862 // -- int       Items_destroyed = 0;
1863
1864 void drop_player_eggs(object *playerobj)
1865 {
1866 //      mprintf((0, "In drop_player_eggs...\n"));
1867
1868         if ((playerobj->type == OBJ_PLAYER) || (playerobj->type == OBJ_GHOST)) {
1869                 int     rthresh;
1870                 int     pnum = playerobj->id;
1871                 int     objnum;
1872                 int     vulcan_ammo=0;
1873                 vms_vector      randvec;
1874
1875                 // -- Items_destroyed = 0;
1876
1877                 // Seed the random number generator so in net play the eggs will always
1878                 // drop the same way
1879                 #ifdef NETWORK
1880                 if (Game_mode & GM_MULTI) 
1881                 {
1882                         Net_create_loc = 0;
1883                         d_srand(5483L);
1884                 }
1885                 #endif
1886
1887                 //      If the player had smart mines, maybe arm one of them.
1888                 rthresh = 30000;
1889                 while ((Players[playerobj->id].secondary_ammo[SMART_MINE_INDEX]%4==1) && (d_rand() < rthresh)) {
1890                         int                     newseg;
1891                         vms_vector      tvec;
1892
1893                         make_random_vector(&randvec);
1894                         rthresh /= 2;
1895                         vm_vec_add(&tvec, &playerobj->pos, &randvec);
1896                         newseg = find_point_seg(&tvec, playerobj->segnum);
1897                         if (newseg != -1)
1898                                 Laser_create_new(&randvec, &tvec, newseg, playerobj-Objects, SUPERPROX_ID, 0);
1899                 }
1900
1901                 //      If the player had proximity bombs, maybe arm one of them.
1902
1903                 if ((Game_mode & GM_MULTI) && !(Game_mode & GM_HOARD))
1904                 {
1905                         rthresh = 30000;
1906                         while ((Players[playerobj->id].secondary_ammo[PROXIMITY_INDEX]%4==1) && (d_rand() < rthresh)) {
1907                                 int                     newseg;
1908                                 vms_vector      tvec;
1909         
1910                                 make_random_vector(&randvec);
1911                                 rthresh /= 2;
1912                                 vm_vec_add(&tvec, &playerobj->pos, &randvec);
1913                                 newseg = find_point_seg(&tvec, playerobj->segnum);
1914                                 if (newseg != -1)
1915                                         Laser_create_new(&randvec, &tvec, newseg, playerobj-Objects, PROXIMITY_ID, 0);
1916         
1917                         }
1918                 }
1919
1920                 //      If the player dies and he has powerful lasers, create the powerups here.
1921
1922                 if (Players[pnum].laser_level > MAX_LASER_LEVEL)
1923                         call_object_create_egg(playerobj, Players[pnum].laser_level-MAX_LASER_LEVEL, OBJ_POWERUP, POW_SUPER_LASER);
1924                 else if (Players[pnum].laser_level >= 1)
1925                         call_object_create_egg(playerobj, Players[pnum].laser_level, OBJ_POWERUP, POW_LASER);   // Note: laser_level = 0 for laser level 1.
1926
1927                 //      Drop quad laser if appropos
1928                 if (Players[pnum].flags & PLAYER_FLAGS_QUAD_LASERS)
1929                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_QUAD_FIRE);
1930
1931                 if (Players[pnum].flags & PLAYER_FLAGS_CLOAKED)
1932                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_CLOAK);
1933
1934                 if (Players[pnum].flags & PLAYER_FLAGS_MAP_ALL)
1935                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_FULL_MAP);
1936
1937                 if (Players[pnum].flags & PLAYER_FLAGS_AFTERBURNER)
1938                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_AFTERBURNER);
1939
1940                 if (Players[pnum].flags & PLAYER_FLAGS_AMMO_RACK)
1941                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_AMMO_RACK);
1942
1943                 if (Players[pnum].flags & PLAYER_FLAGS_CONVERTER)
1944                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_CONVERTER);
1945
1946                 if (Players[pnum].flags & PLAYER_FLAGS_HEADLIGHT)
1947                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_HEADLIGHT);
1948
1949                 // drop the other enemies flag if you have it
1950
1951 #ifdef NETWORK
1952                 if ((Game_mode & GM_CAPTURE) && (Players[pnum].flags & PLAYER_FLAGS_FLAG))
1953                 {
1954                  if ((get_team (pnum)==TEAM_RED))
1955                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_FLAG_BLUE);
1956                  else
1957                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_FLAG_RED);
1958                 }
1959
1960         
1961                 if (Game_mode & GM_HOARD)
1962                 {
1963                         // Drop hoard orbs
1964                         
1965                         int max_count,i;
1966
1967                         mprintf ((0,"HOARD MODE: Dropping %d orbs\n",Players[pnum].secondary_ammo[PROXIMITY_INDEX]));
1968         
1969                         max_count = min(Players[pnum].secondary_ammo[PROXIMITY_INDEX], 12);
1970                         for (i=0; i<max_count; i++)
1971                                 call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_HOARD_ORB);
1972                 }
1973 #endif
1974
1975                 //Drop the vulcan, gauss, and ammo
1976                 vulcan_ammo = Players[pnum].primary_ammo[VULCAN_INDEX];
1977                 if ((Players[pnum].primary_weapon_flags & HAS_FLAG(VULCAN_INDEX)) && (Players[pnum].primary_weapon_flags & HAS_FLAG(GAUSS_INDEX)))
1978                         vulcan_ammo /= 2;               //if both vulcan & gauss, each gets half
1979                 if (vulcan_ammo < VULCAN_AMMO_AMOUNT)
1980                         vulcan_ammo = VULCAN_AMMO_AMOUNT;       //make sure gun has at least as much as a powerup
1981                 objnum = maybe_drop_primary_weapon_egg(playerobj, VULCAN_INDEX);
1982                 if (objnum!=-1)
1983                         Objects[objnum].ctype.powerup_info.count = vulcan_ammo;
1984                 objnum = maybe_drop_primary_weapon_egg(playerobj, GAUSS_INDEX);
1985                 if (objnum!=-1)
1986                         Objects[objnum].ctype.powerup_info.count = vulcan_ammo;
1987
1988                 //      Drop the rest of the primary weapons
1989                 maybe_drop_primary_weapon_egg(playerobj, SPREADFIRE_INDEX);
1990                 maybe_drop_primary_weapon_egg(playerobj, PLASMA_INDEX);
1991                 maybe_drop_primary_weapon_egg(playerobj, FUSION_INDEX);
1992
1993                 maybe_drop_primary_weapon_egg(playerobj, HELIX_INDEX);
1994                 maybe_drop_primary_weapon_egg(playerobj, PHOENIX_INDEX);
1995
1996                 objnum = maybe_drop_primary_weapon_egg(playerobj, OMEGA_INDEX);
1997                 if (objnum!=-1)
1998                         Objects[objnum].ctype.powerup_info.count = (playerobj->id==Player_num)?Omega_charge:MAX_OMEGA_CHARGE;
1999
2000                 //      Drop the secondary weapons
2001                 //      Note, proximity weapon only comes in packets of 4.  So drop n/2, but a max of 3 (handled inside maybe_drop..)  Make sense?
2002                 
2003                 if (!(Game_mode & GM_HOARD))
2004                         maybe_drop_secondary_weapon_egg(playerobj, PROXIMITY_INDEX, (Players[playerobj->id].secondary_ammo[PROXIMITY_INDEX])/4);
2005
2006                 maybe_drop_secondary_weapon_egg(playerobj, SMART_INDEX, Players[playerobj->id].secondary_ammo[SMART_INDEX]);
2007                 maybe_drop_secondary_weapon_egg(playerobj, MEGA_INDEX, Players[playerobj->id].secondary_ammo[MEGA_INDEX]);
2008
2009                 maybe_drop_secondary_weapon_egg(playerobj, SMART_MINE_INDEX,(Players[playerobj->id].secondary_ammo[SMART_MINE_INDEX])/4);
2010                 maybe_drop_secondary_weapon_egg(playerobj, SMISSILE5_INDEX, Players[playerobj->id].secondary_ammo[SMISSILE5_INDEX]);
2011
2012                 //      Drop the player's missiles in packs of 1 and/or 4
2013                 drop_missile_1_or_4(playerobj,HOMING_INDEX);
2014                 drop_missile_1_or_4(playerobj,GUIDED_INDEX);
2015                 drop_missile_1_or_4(playerobj,CONCUSSION_INDEX);
2016                 drop_missile_1_or_4(playerobj,SMISSILE1_INDEX);
2017                 drop_missile_1_or_4(playerobj,SMISSILE4_INDEX);
2018
2019                 //      If player has vulcan ammo, but no vulcan cannon, drop the ammo.
2020                 if (!(Players[playerobj->id].primary_weapon_flags & HAS_VULCAN_FLAG)) {
2021                         int     amount = Players[playerobj->id].primary_ammo[VULCAN_INDEX];
2022                         if (amount > 200) {
2023                                 mprintf((0, "Surprising amount of vulcan ammo: %i bullets.\n", amount));
2024                                 amount = 200;
2025                         }
2026                         while (amount > 0) {
2027                                 call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_VULCAN_AMMO);
2028                                 amount -= VULCAN_AMMO_AMOUNT;
2029                         }
2030                 }
2031
2032                 //      Always drop a shield and energy powerup.
2033                 if (Game_mode & GM_MULTI) {
2034                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_SHIELD_BOOST);
2035                         call_object_create_egg(playerobj, 1, OBJ_POWERUP, POW_ENERGY);
2036                 }
2037
2038 //--            //      Drop all the keys.
2039 //--            if (Players[Player_num].flags & PLAYER_FLAGS_BLUE_KEY) {
2040 //--                    playerobj->contains_count = 1;
2041 //--                    playerobj->contains_type = OBJ_POWERUP;
2042 //--                    playerobj->contains_id = POW_KEY_BLUE;
2043 //--                    object_create_egg(playerobj);
2044 //--            }
2045 //--            if (Players[Player_num].flags & PLAYER_FLAGS_RED_KEY) {
2046 //--                    playerobj->contains_count = 1;
2047 //--                    playerobj->contains_type = OBJ_POWERUP;
2048 //--                    playerobj->contains_id = POW_KEY_RED;
2049 //--                    object_create_egg(playerobj);
2050 //--            }
2051 //--            if (Players[Player_num].flags & PLAYER_FLAGS_GOLD_KEY) {
2052 //--                    playerobj->contains_count = 1;
2053 //--                    playerobj->contains_type = OBJ_POWERUP;
2054 //--                    playerobj->contains_id = POW_KEY_GOLD;
2055 //--                    object_create_egg(playerobj);
2056 //--            }
2057
2058 // --           if (Items_destroyed) {
2059 // --                   if (Items_destroyed == 1)
2060 // --                           HUD_init_message("%i item was destroyed.", Items_destroyed);
2061 // --                   else
2062 // --                           HUD_init_message("%i items were destroyed.", Items_destroyed);
2063 // --                   Items_destroyed = 0;
2064 // --           }
2065         }
2066
2067 }
2068
2069 // -- removed, 09/06/95, MK -- void destroy_primary_weapon(int weapon_index)
2070 // -- removed, 09/06/95, MK -- {
2071 // -- removed, 09/06/95, MK --  if (weapon_index == MAX_PRIMARY_WEAPONS) {
2072 // -- removed, 09/06/95, MK --          HUD_init_message("Quad lasers destroyed!");
2073 // -- removed, 09/06/95, MK --          Players[Player_num].flags &= ~PLAYER_FLAGS_QUAD_LASERS;
2074 // -- removed, 09/06/95, MK --          update_laser_weapon_info();
2075 // -- removed, 09/06/95, MK --  } else if (weapon_index == 0) {
2076 // -- removed, 09/06/95, MK --          Assert(Players[Player_num].laser_level > 0);
2077 // -- removed, 09/06/95, MK --          HUD_init_message("%s degraded!", Text_string[104+weapon_index]);                //      Danger! Danger! Use of literal!  Danger!
2078 // -- removed, 09/06/95, MK --          Players[Player_num].laser_level--;
2079 // -- removed, 09/06/95, MK --          update_laser_weapon_info();
2080 // -- removed, 09/06/95, MK --  } else {
2081 // -- removed, 09/06/95, MK --          HUD_init_message("%s destroyed!", Text_string[104+weapon_index]);               //      Danger! Danger! Use of literal!  Danger!
2082 // -- removed, 09/06/95, MK --          Players[Player_num].primary_weapon_flags &= ~(1 << weapon_index);
2083 // -- removed, 09/06/95, MK --          auto_select_weapon(0);
2084 // -- removed, 09/06/95, MK --  }
2085 // -- removed, 09/06/95, MK -- 
2086 // -- removed, 09/06/95, MK -- }
2087 // -- removed, 09/06/95, MK -- 
2088 // -- removed, 09/06/95, MK -- void destroy_secondary_weapon(int weapon_index)
2089 // -- removed, 09/06/95, MK -- {
2090 // -- removed, 09/06/95, MK --  if (Players[Player_num].secondary_ammo <= 0)
2091 // -- removed, 09/06/95, MK --          return;
2092 // -- removed, 09/06/95, MK -- 
2093 // -- removed, 09/06/95, MK --  HUD_init_message("%s destroyed!", Text_string[114+weapon_index]);               //      Danger! Danger! Use of literal!  Danger!
2094 // -- removed, 09/06/95, MK --  if (--Players[Player_num].secondary_ammo[weapon_index] == 0)
2095 // -- removed, 09/06/95, MK --          auto_select_weapon(1);
2096 // -- removed, 09/06/95, MK -- 
2097 // -- removed, 09/06/95, MK -- }
2098 // -- removed, 09/06/95, MK -- 
2099 // -- removed, 09/06/95, MK -- #define  LOSE_WEAPON_THRESHOLD   (F1_0*30)
2100
2101 extern fix Buddy_sorry_time;
2102
2103 void apply_damage_to_player(object *playerobj, object *killer, fix damage)
2104 {
2105         if (Player_is_dead)
2106                 return;
2107
2108         if (Players[Player_num].flags & PLAYER_FLAGS_INVULNERABLE)
2109                 return;
2110
2111         if (Endlevel_sequence)
2112                 return;
2113
2114         //for the player, the 'real' shields are maintained in the Players[]
2115         //array.  The shields value in the player's object are, I think, not
2116         //used anywhere.  This routine, however, sets the objects shields to
2117         //be a mirror of the value in the Player structure. 
2118
2119         if (playerobj->id == Player_num) {              //is this the local player?
2120
2121                 //      MK: 08/14/95: This code can never be reached.  See the return about 12 lines up.
2122 // --           if (Players[Player_num].flags & PLAYER_FLAGS_INVULNERABLE) {
2123 // -- 
2124 // --                   //invincible, so just do blue flash
2125 // -- 
2126 // --                   PALETTE_FLASH_ADD(0,0,f2i(damage)*4);   //flash blue
2127 // -- 
2128 // --           } 
2129 // --           else {          //take damage, do red flash
2130
2131                         Players[Player_num].shields -= damage;
2132
2133                         PALETTE_FLASH_ADD(f2i(damage)*4,-f2i(damage/2),-f2i(damage/2)); //flash red
2134
2135 // --           }
2136
2137                 if (Players[Player_num].shields < 0)    {
2138
2139                         Players[Player_num].killer_objnum = killer-Objects;
2140                         
2141 //                      if ( killer && (killer->type == OBJ_PLAYER))
2142 //                              Players[Player_num].killer_objnum = killer-Objects;
2143
2144                         playerobj->flags |= OF_SHOULD_BE_DEAD;
2145
2146                         if (Buddy_objnum != -1)
2147                                 if (killer && (killer->type == OBJ_ROBOT) && (Robot_info[killer->id].companion))
2148                                         Buddy_sorry_time = GameTime;
2149                 }
2150 // -- removed, 09/06/95, MK --  else if (Players[Player_num].shields < LOSE_WEAPON_THRESHOLD) {
2151 // -- removed, 09/06/95, MK --                  int     randnum = d_rand();
2152 // -- removed, 09/06/95, MK -- 
2153 // -- removed, 09/06/95, MK --                  if (fixmul(Players[Player_num].shields, randnum) < damage/4) {
2154 // -- removed, 09/06/95, MK --                          if (d_rand() > 20000) {
2155 // -- removed, 09/06/95, MK --                                  destroy_secondary_weapon(Secondary_weapon);
2156 // -- removed, 09/06/95, MK --                          } else if (Primary_weapon == 0) {
2157 // -- removed, 09/06/95, MK --                                  if (Players[Player_num].flags & PLAYER_FLAGS_QUAD_LASERS)
2158 // -- removed, 09/06/95, MK --                                          destroy_primary_weapon(MAX_PRIMARY_WEAPONS);    //      This means to destroy quad laser.
2159 // -- removed, 09/06/95, MK --                                  else if (Players[Player_num].laser_level > 0)
2160 // -- removed, 09/06/95, MK --                                          destroy_primary_weapon(Primary_weapon);
2161 // -- removed, 09/06/95, MK --                          } else
2162 // -- removed, 09/06/95, MK --                                  destroy_primary_weapon(Primary_weapon);
2163 // -- removed, 09/06/95, MK --                  } else
2164 // -- removed, 09/06/95, MK --                          ; // mprintf((0, "%8x > %8x, so don't lose weapon.\n", fixmul(Players[Player_num].shields, randnum), damage/4));
2165 // -- removed, 09/06/95, MK --          }
2166
2167                 playerobj->shields = Players[Player_num].shields;               //mirror
2168
2169         }
2170 }
2171
2172 void collide_player_and_weapon( object * playerobj, object * weapon, vms_vector *collision_point )
2173 {
2174         fix             damage = weapon->shields;
2175         object * killer=NULL;
2176
2177         //      In multiplayer games, only do damage to another player if in first frame.
2178         //      This is necessary because in multiplayer, due to varying framerates, omega blobs actually
2179         //      have a bit of a lifetime.  But they start out with a lifetime of ONE_FRAME_TIME, and this
2180         //      gets bashed to 1/4 second in laser_do_weapon_sequence.  This bashing occurs for visual purposes only.
2181         if (weapon->id == OMEGA_ID)
2182                 if (!ok_to_do_omega_damage(weapon))
2183                         return;
2184
2185         //      Don't collide own smart mines unless direct hit.
2186         if (weapon->id == SUPERPROX_ID)
2187                 if (playerobj-Objects == weapon->ctype.laser_info.parent_num)
2188                         if (vm_vec_dist_quick(collision_point, &playerobj->pos) > playerobj->size)
2189                                 return;
2190
2191         if (weapon->id == EARTHSHAKER_ID)
2192                 smega_rock_stuff();
2193
2194         damage = fixmul(damage, weapon->ctype.laser_info.multiplier);
2195 #ifndef SHAREWARE
2196         if (Game_mode & GM_MULTI)
2197                 damage = fixmul(damage, Weapon_info[weapon->id].multi_damage_scale);
2198 #endif
2199
2200         if (weapon->mtype.phys_info.flags & PF_PERSISTENT)
2201         {
2202                 if (weapon->ctype.laser_info.last_hitobj == playerobj-Objects)
2203                         return;
2204                 else
2205                         weapon->ctype.laser_info.last_hitobj = playerobj-Objects;
2206         }
2207
2208         if (playerobj->id == Player_num)
2209         {
2210                 if (!(Players[Player_num].flags & PLAYER_FLAGS_INVULNERABLE))
2211                 {
2212                         digi_link_sound_to_pos( SOUND_PLAYER_GOT_HIT, playerobj->segnum, 0, collision_point, 0, F1_0 );
2213                         #ifdef NETWORK
2214                         if (Game_mode & GM_MULTI)
2215                                 multi_send_play_sound(SOUND_PLAYER_GOT_HIT, F1_0);
2216                         #endif
2217                 }
2218                 else
2219                 {
2220                         digi_link_sound_to_pos( SOUND_WEAPON_HIT_DOOR, playerobj->segnum, 0, collision_point, 0, F1_0);
2221                         #ifdef NETWORK
2222                         if (Game_mode & GM_MULTI)
2223                                 multi_send_play_sound(SOUND_WEAPON_HIT_DOOR, F1_0);
2224                         #endif
2225                 }
2226         }
2227
2228         object_create_explosion( playerobj->segnum, collision_point, i2f(10)/2, VCLIP_PLAYER_HIT );
2229         if ( Weapon_info[weapon->id].damage_radius )
2230                 explode_badass_weapon(weapon,collision_point);
2231
2232         maybe_kill_weapon(weapon,playerobj);
2233
2234         bump_two_objects(playerobj, weapon, 0); //no damage from bump
2235
2236         if ( !Weapon_info[weapon->id].damage_radius ) {
2237                 if ( weapon->ctype.laser_info.parent_num > -1 )
2238                         killer = &Objects[weapon->ctype.laser_info.parent_num];
2239
2240 //              if (weapon->id == SMART_HOMING_ID)
2241 //                      damage /= 4;
2242
2243                 if (!(weapon->flags & OF_HARMLESS))
2244                         apply_damage_to_player( playerobj, killer, damage);
2245         }
2246
2247         //      Robots become aware of you if you get hit.
2248         ai_do_cloak_stuff();
2249
2250         return; 
2251 }
2252
2253 //      Nasty robots are the ones that attack you by running into you and doing lots of damage.
2254 void collide_player_and_nasty_robot( object * playerobj, object * robot, vms_vector *collision_point )
2255 {
2256 //      if (!(Robot_info[robot->id].energy_drain && Players[playerobj->id].energy))
2257                 digi_link_sound_to_pos( Robot_info[robot->id].claw_sound, playerobj->segnum, 0, collision_point, 0, F1_0 );
2258
2259         object_create_explosion( playerobj->segnum, collision_point, i2f(10)/2, VCLIP_PLAYER_HIT );
2260
2261         bump_two_objects(playerobj, robot, 0);  //no damage from bump
2262
2263         apply_damage_to_player( playerobj, robot, F1_0*(Difficulty_level+1));
2264
2265         return; 
2266 }
2267
2268 void collide_player_and_materialization_center(object *objp)
2269 {
2270         int     side;
2271         vms_vector      exit_dir;
2272         segment *segp = &Segments[objp->segnum];
2273
2274         digi_link_sound_to_pos(SOUND_PLAYER_GOT_HIT, objp->segnum, 0, &objp->pos, 0, F1_0);
2275 //      digi_play_sample( SOUND_PLAYER_GOT_HIT, F1_0 );
2276
2277         object_create_explosion( objp->segnum, &objp->pos, i2f(10)/2, VCLIP_PLAYER_HIT );
2278
2279         if (objp->id != Player_num)
2280                 return;
2281
2282         for (side=0; side<MAX_SIDES_PER_SEGMENT; side++)
2283                 if (WALL_IS_DOORWAY(segp, side) & WID_FLY_FLAG) {
2284                         vms_vector      exit_point, rand_vec;
2285
2286                         compute_center_point_on_side(&exit_point, segp, side);
2287                         vm_vec_sub(&exit_dir, &exit_point, &objp->pos);
2288                         vm_vec_normalize_quick(&exit_dir);
2289                         make_random_vector(&rand_vec);
2290                         rand_vec.x /= 4;        rand_vec.y /= 4;        rand_vec.z /= 4;
2291                         vm_vec_add2(&exit_dir, &rand_vec);
2292                         vm_vec_normalize_quick(&exit_dir);
2293                 }
2294
2295         bump_one_object(objp, &exit_dir, 64*F1_0);
2296
2297         apply_damage_to_player( objp, objp, 4*F1_0);    //      Changed, MK, 2/19/96, make killer the player, so if you die in matcen, will say you killed yourself
2298
2299         return; 
2300
2301 }
2302
2303 void collide_robot_and_materialization_center(object *objp)
2304 {
2305         int     side;
2306         vms_vector      exit_dir;
2307         segment *segp=&Segments[objp->segnum];
2308
2309         digi_link_sound_to_pos(SOUND_ROBOT_HIT, objp->segnum, 0, &objp->pos, 0, F1_0);
2310 //      digi_play_sample( SOUND_ROBOT_HIT, F1_0 );
2311
2312         if ( Robot_info[objp->id].exp1_vclip_num > -1 )
2313                 object_create_explosion( objp->segnum, &objp->pos, (objp->size/2*3)/4, Robot_info[objp->id].exp1_vclip_num );
2314
2315         for (side=0; side<MAX_SIDES_PER_SEGMENT; side++)
2316                 if (WALL_IS_DOORWAY(segp, side) & WID_FLY_FLAG) {
2317                         vms_vector      exit_point;
2318
2319                         compute_center_point_on_side(&exit_point, segp, side);
2320                         vm_vec_sub(&exit_dir, &exit_point, &objp->pos);
2321                         vm_vec_normalize_quick(&exit_dir);
2322                 }
2323
2324         bump_one_object(objp, &exit_dir, 8*F1_0);
2325
2326         apply_damage_to_robot( objp, F1_0, -1);
2327
2328         return; 
2329
2330 }
2331
2332 //##void collide_player_and_camera( object * playerobj, object * camera, vms_vector *collision_point ) { 
2333 //##    return; 
2334 //##}
2335
2336 extern int Network_got_powerup; // HACK!!!
2337
2338 void collide_player_and_powerup( object * playerobj, object * powerup, vms_vector *collision_point ) { 
2339         if (!Endlevel_sequence && !Player_is_dead && (playerobj->id == Player_num )) {
2340                 int powerup_used;
2341
2342                 powerup_used = do_powerup(powerup);
2343                 
2344                 if (powerup_used)       {
2345                         powerup->flags |= OF_SHOULD_BE_DEAD;
2346                         #ifdef NETWORK
2347                         if (Game_mode & GM_MULTI)
2348                                 multi_send_remobj(powerup-Objects);
2349                         #endif
2350                 }
2351         }
2352 #ifndef SHAREWARE
2353         else if ((Game_mode & GM_MULTI_COOP) && (playerobj->id != Player_num))
2354         {
2355                 switch (powerup->id) {
2356                         case POW_KEY_BLUE:      
2357                                 Players[playerobj->id].flags |= PLAYER_FLAGS_BLUE_KEY;
2358                                 break;
2359                         case POW_KEY_RED:       
2360                                 Players[playerobj->id].flags |= PLAYER_FLAGS_RED_KEY;
2361                                 break;
2362                         case POW_KEY_GOLD:      
2363                                 Players[playerobj->id].flags |= PLAYER_FLAGS_GOLD_KEY;
2364                                 break;
2365                         default:
2366                                 break;
2367                 }
2368         }
2369 #endif
2370         return; 
2371 }
2372
2373 //##void collide_player_and_debris( object * playerobj, object * debris, vms_vector *collision_point ) { 
2374 //##    return; 
2375 //##}
2376
2377 void collide_player_and_clutter( object * playerobj, object * clutter, vms_vector *collision_point ) { 
2378         digi_link_sound_to_pos( SOUND_ROBOT_HIT_PLAYER, playerobj->segnum, 0, collision_point, 0, F1_0 );
2379         bump_two_objects(clutter, playerobj, 1);
2380         return; 
2381 }
2382
2383 //      See if weapon1 creates a badass explosion.  If so, create the explosion
2384 //      Return true if weapon does proximity (as opposed to only contact) damage when it explodes.
2385 int maybe_detonate_weapon(object *weapon1, object *weapon2, vms_vector *collision_point)
2386 {
2387         if ( Weapon_info[weapon1->id].damage_radius ) {
2388                 fix     dist;
2389
2390                 dist = vm_vec_dist_quick(&weapon1->pos, &weapon2->pos);
2391                 if (dist < F1_0*5) {
2392                         maybe_kill_weapon(weapon1,weapon2);
2393                         if (weapon1->flags & OF_SHOULD_BE_DEAD) {
2394                                 explode_badass_weapon(weapon1,collision_point);
2395                                 digi_link_sound_to_pos( Weapon_info[weapon1->id].robot_hit_sound, weapon1->segnum , 0, collision_point, 0, F1_0 );
2396                         }
2397                         return 1;
2398                 } else {
2399                         weapon1->lifeleft = min(dist/64, F1_0);
2400                         return 1;
2401                 }
2402         } else
2403                 return 0;
2404 }
2405
2406 void collide_weapon_and_weapon( object * weapon1, object * weapon2, vms_vector *collision_point )
2407
2408         // -- Does this look buggy??:  if (weapon1->id == PMINE_ID && weapon1->id == PMINE_ID)
2409         if (weapon1->id == PMINE_ID && weapon2->id == PMINE_ID)
2410                 return;         //these can't blow each other up  
2411
2412         if (weapon1->id == OMEGA_ID) {
2413                 if (!ok_to_do_omega_damage(weapon1))
2414                         return;
2415         } else if (weapon2->id == OMEGA_ID) {
2416                 if (!ok_to_do_omega_damage(weapon2))
2417                         return;
2418         }
2419
2420         if ((Weapon_info[weapon1->id].destroyable) || (Weapon_info[weapon2->id].destroyable)) {
2421
2422                 //      Bug reported by Adam Q. Pletcher on September 9, 1994, smart bomb homing missiles were toasting each other.
2423                 if ((weapon1->id == weapon2->id) && (weapon1->ctype.laser_info.parent_num == weapon2->ctype.laser_info.parent_num))
2424                         return;
2425
2426                 if (Weapon_info[weapon1->id].destroyable)
2427                         if (maybe_detonate_weapon(weapon1, weapon2, collision_point))
2428                                 maybe_detonate_weapon(weapon2,weapon1, collision_point);
2429
2430                 if (Weapon_info[weapon2->id].destroyable)
2431                         if (maybe_detonate_weapon(weapon2, weapon1, collision_point))
2432                                 maybe_detonate_weapon(weapon1,weapon2, collision_point);
2433
2434         }
2435
2436 }
2437
2438 //##void collide_weapon_and_camera( object * weapon, object * camera, vms_vector *collision_point ) { 
2439 //##    return; 
2440 //##}
2441
2442 //##void collide_weapon_and_powerup( object * weapon, object * powerup, vms_vector *collision_point ) { 
2443 //##    return; 
2444 //##}
2445
2446 void collide_weapon_and_debris( object * weapon, object * debris, vms_vector *collision_point ) { 
2447
2448         //      Hack!  Prevent debris from causing bombs spewed at player death to detonate!
2449         if ((weapon->id == PROXIMITY_ID) || (weapon->id == SUPERPROX_ID)) {
2450                 if (weapon->ctype.laser_info.creation_time + F1_0/2 > GameTime)
2451                         return;
2452         }
2453
2454         if ( (weapon->ctype.laser_info.parent_type==OBJ_PLAYER) && !(debris->flags & OF_EXPLODING) )    {       
2455                 digi_link_sound_to_pos( SOUND_ROBOT_HIT, weapon->segnum , 0, collision_point, 0, F1_0 );
2456
2457                 explode_object(debris,0);
2458                 if ( Weapon_info[weapon->id].damage_radius )
2459                         explode_badass_weapon(weapon,collision_point);
2460                 maybe_kill_weapon(weapon,debris);
2461                 weapon->flags |= OF_SHOULD_BE_DEAD;
2462         }
2463         return; 
2464 }
2465
2466 //##void collide_camera_and_camera( object * camera1, object * camera2, vms_vector *collision_point ) { 
2467 //##    return; 
2468 //##}
2469
2470 //##void collide_camera_and_powerup( object * camera, object * powerup, vms_vector *collision_point ) { 
2471 //##    return; 
2472 //##}
2473
2474 //##void collide_camera_and_debris( object * camera, object * debris, vms_vector *collision_point ) { 
2475 //##    return; 
2476 //##}
2477
2478 //##void collide_powerup_and_powerup( object * powerup1, object * powerup2, vms_vector *collision_point ) { 
2479 //##    return; 
2480 //##}
2481
2482 //##void collide_powerup_and_debris( object * powerup, object * debris, vms_vector *collision_point ) { 
2483 //##    return; 
2484 //##}
2485
2486 //##void collide_debris_and_debris( object * debris1, object * debris2, vms_vector *collision_point ) { 
2487 //##    return; 
2488 //##}
2489
2490
2491 /* DPH: Put these macros on one long line to avoid CR/LF problems on linux */
2492 #define COLLISION_OF(a,b) (((a)<<8) + (b))
2493
2494 #define DO_COLLISION(type1,type2,collision_function)    case COLLISION_OF( (type1), (type2) ):  (collision_function)( (A), (B), collision_point ); break;   case COLLISION_OF( (type2), (type1) ):  (collision_function)( (B), (A), collision_point );  break;
2495
2496 #define DO_SAME_COLLISION(type1,type2,collision_function)    case COLLISION_OF( (type1), (type1) ):  (collision_function)( (A), (B), collision_point ); break;
2497
2498 //these next two macros define a case that does nothing
2499 #define NO_COLLISION(type1,type2,collision_function)    case COLLISION_OF( (type1), (type2) ):  break;  case COLLISION_OF( (type2), (type1) ):  break;
2500
2501 #define NO_SAME_COLLISION(type1,type2,collision_function)    case COLLISION_OF( (type1), (type1) ):    break;
2502
2503 /* DPH: These ones are never used so I'm not going to bother */
2504 #ifndef __GNUC__
2505 #define IGNORE_COLLISION(type1,type2,collision_function)                                        \
2506         case COLLISION_OF( (type1), (type2) ):                                                                          \
2507                 break;                                                                                                                                                  \
2508         case COLLISION_OF( (type2), (type1) ):                                                                          \
2509                 break;
2510
2511 #define ERROR_COLLISION(type1,type2,collision_function)                                 \
2512         case COLLISION_OF( (type1), (type2) ):                                                                          \
2513                 Error( "Error in collision type!" );                                                                    \
2514                 break;                                                                                                                                                  \
2515         case COLLISION_OF( (type2), (type1) ):                                                                          \
2516                 Error( "Error in collision type!" );                                                                    \
2517                 break;
2518 #endif
2519
2520 void collide_two_objects( object * A, object * B, vms_vector *collision_point )
2521 {
2522         int collision_type;     
2523                 
2524         collision_type = COLLISION_OF(A->type,B->type);
2525
2526         //mprintf( (0, "Object %d of type %d collided with object %d of type %d\n", A-Objects,A->type, B-Objects, B->type ));
2527
2528         switch( collision_type )        {
2529         NO_SAME_COLLISION( OBJ_FIREBALL, OBJ_FIREBALL,   collide_fireball_and_fireball )
2530         DO_SAME_COLLISION( OBJ_ROBOT, OBJ_ROBOT, collide_robot_and_robot )
2531         NO_SAME_COLLISION( OBJ_HOSTAGE, OBJ_HOSTAGE,  collide_hostage_and_hostage )
2532         DO_SAME_COLLISION( OBJ_PLAYER, OBJ_PLAYER,  collide_player_and_player )
2533         DO_SAME_COLLISION( OBJ_WEAPON, OBJ_WEAPON,  collide_weapon_and_weapon )
2534         NO_SAME_COLLISION( OBJ_CAMERA, OBJ_CAMERA, collide_camera_and_camera )
2535         NO_SAME_COLLISION( OBJ_POWERUP, OBJ_POWERUP,  collide_powerup_and_powerup )
2536         NO_SAME_COLLISION( OBJ_DEBRIS, OBJ_DEBRIS,  collide_debris_and_debris )
2537         NO_SAME_COLLISION( OBJ_MARKER, OBJ_MARKER,  NULL )
2538         NO_COLLISION( OBJ_FIREBALL, OBJ_ROBOT,   collide_fireball_and_robot )
2539         NO_COLLISION( OBJ_FIREBALL, OBJ_HOSTAGE, collide_fireball_and_hostage )
2540         NO_COLLISION( OBJ_FIREBALL, OBJ_PLAYER,  collide_fireball_and_player )
2541         NO_COLLISION( OBJ_FIREBALL, OBJ_WEAPON,  collide_fireball_and_weapon )
2542         NO_COLLISION( OBJ_FIREBALL, OBJ_CAMERA,  collide_fireball_and_camera )
2543         NO_COLLISION( OBJ_FIREBALL, OBJ_POWERUP, collide_fireball_and_powerup )
2544         NO_COLLISION( OBJ_FIREBALL, OBJ_DEBRIS,  collide_fireball_and_debris )
2545         NO_COLLISION( OBJ_ROBOT, OBJ_HOSTAGE, collide_robot_and_hostage )
2546         DO_COLLISION( OBJ_ROBOT, OBJ_PLAYER,  collide_robot_and_player )
2547         DO_COLLISION( OBJ_ROBOT, OBJ_WEAPON,  collide_robot_and_weapon )
2548         NO_COLLISION( OBJ_ROBOT, OBJ_CAMERA,  collide_robot_and_camera )
2549         NO_COLLISION( OBJ_ROBOT, OBJ_POWERUP, collide_robot_and_powerup )
2550         NO_COLLISION( OBJ_ROBOT, OBJ_DEBRIS,  collide_robot_and_debris )
2551         DO_COLLISION( OBJ_HOSTAGE, OBJ_PLAYER,  collide_hostage_and_player )
2552         NO_COLLISION( OBJ_HOSTAGE, OBJ_WEAPON,  collide_hostage_and_weapon )
2553         NO_COLLISION( OBJ_HOSTAGE, OBJ_CAMERA,  collide_hostage_and_camera )
2554         NO_COLLISION( OBJ_HOSTAGE, OBJ_POWERUP, collide_hostage_and_powerup )
2555         NO_COLLISION( OBJ_HOSTAGE, OBJ_DEBRIS,  collide_hostage_and_debris )
2556         DO_COLLISION( OBJ_PLAYER, OBJ_WEAPON,  collide_player_and_weapon )
2557         NO_COLLISION( OBJ_PLAYER, OBJ_CAMERA,  collide_player_and_camera )
2558         DO_COLLISION( OBJ_PLAYER, OBJ_POWERUP, collide_player_and_powerup )
2559         NO_COLLISION( OBJ_PLAYER, OBJ_DEBRIS,  collide_player_and_debris )
2560         DO_COLLISION( OBJ_PLAYER, OBJ_CNTRLCEN, collide_player_and_controlcen )
2561         DO_COLLISION( OBJ_PLAYER, OBJ_CLUTTER, collide_player_and_clutter )
2562         NO_COLLISION( OBJ_WEAPON, OBJ_CAMERA,  collide_weapon_and_camera )
2563         NO_COLLISION( OBJ_WEAPON, OBJ_POWERUP, collide_weapon_and_powerup )
2564         DO_COLLISION( OBJ_WEAPON, OBJ_DEBRIS,  collide_weapon_and_debris )
2565         NO_COLLISION( OBJ_CAMERA, OBJ_POWERUP, collide_camera_and_powerup )
2566         NO_COLLISION( OBJ_CAMERA, OBJ_DEBRIS,  collide_camera_and_debris )
2567         NO_COLLISION( OBJ_POWERUP, OBJ_DEBRIS,  collide_powerup_and_debris )
2568         DO_COLLISION( OBJ_WEAPON, OBJ_CNTRLCEN, collide_weapon_and_controlcen )
2569         DO_COLLISION( OBJ_ROBOT, OBJ_CNTRLCEN, collide_robot_and_controlcen )
2570         DO_COLLISION( OBJ_WEAPON, OBJ_CLUTTER, collide_weapon_and_clutter )
2571
2572         DO_COLLISION( OBJ_MARKER, OBJ_PLAYER,  collide_player_and_marker)
2573         NO_COLLISION( OBJ_MARKER, OBJ_ROBOT,   NULL)
2574         NO_COLLISION( OBJ_MARKER, OBJ_HOSTAGE, NULL)
2575         NO_COLLISION( OBJ_MARKER, OBJ_WEAPON,  NULL)
2576         NO_COLLISION( OBJ_MARKER, OBJ_CAMERA,  NULL)
2577         NO_COLLISION( OBJ_MARKER, OBJ_POWERUP, NULL)
2578         NO_COLLISION( OBJ_MARKER, OBJ_DEBRIS,  NULL)
2579
2580         default:
2581                 Int3(); //Error( "Unhandled collision_type in collide.c!\n" );
2582         }
2583 }
2584
2585 #define ENABLE_COLLISION(type1,type2)                                   \
2586         CollisionResult[type1][type2] = RESULT_CHECK;   \
2587         CollisionResult[type2][type1] = RESULT_CHECK;
2588
2589 #define DISABLE_COLLISION(type1,type2)                                  \
2590         CollisionResult[type1][type2] = RESULT_NOTHING; \
2591         CollisionResult[type2][type1] = RESULT_NOTHING;
2592
2593 void collide_init()     {
2594         int i, j;
2595
2596         for (i=0; i < MAX_OBJECT_TYPES; i++ )
2597                 for (j=0; j < MAX_OBJECT_TYPES; j++ )
2598                         CollisionResult[i][j] = RESULT_NOTHING;
2599
2600         ENABLE_COLLISION( OBJ_WALL, OBJ_ROBOT );
2601         ENABLE_COLLISION( OBJ_WALL, OBJ_WEAPON );
2602         ENABLE_COLLISION( OBJ_WALL, OBJ_PLAYER  );
2603         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_FIREBALL );
2604
2605         ENABLE_COLLISION( OBJ_ROBOT, OBJ_ROBOT );
2606 //      DISABLE_COLLISION( OBJ_ROBOT, OBJ_ROBOT );      //      ALERT: WARNING: HACK: MK = RESPONSIBLE! TESTING!!
2607
2608         DISABLE_COLLISION( OBJ_HOSTAGE, OBJ_HOSTAGE );
2609         ENABLE_COLLISION( OBJ_PLAYER, OBJ_PLAYER );
2610         ENABLE_COLLISION( OBJ_WEAPON, OBJ_WEAPON );
2611         DISABLE_COLLISION( OBJ_CAMERA, OBJ_CAMERA );
2612         DISABLE_COLLISION( OBJ_POWERUP, OBJ_POWERUP );
2613         DISABLE_COLLISION( OBJ_DEBRIS, OBJ_DEBRIS );
2614         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_ROBOT );
2615         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_HOSTAGE );
2616         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_PLAYER );
2617         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_WEAPON );
2618         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_CAMERA );
2619         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_POWERUP );
2620         DISABLE_COLLISION( OBJ_FIREBALL, OBJ_DEBRIS );
2621         DISABLE_COLLISION( OBJ_ROBOT, OBJ_HOSTAGE );
2622         ENABLE_COLLISION( OBJ_ROBOT, OBJ_PLAYER );
2623         ENABLE_COLLISION( OBJ_ROBOT, OBJ_WEAPON );
2624         DISABLE_COLLISION( OBJ_ROBOT, OBJ_CAMERA );
2625         DISABLE_COLLISION( OBJ_ROBOT, OBJ_POWERUP );
2626         DISABLE_COLLISION( OBJ_ROBOT, OBJ_DEBRIS );
2627         ENABLE_COLLISION( OBJ_HOSTAGE, OBJ_PLAYER );
2628         ENABLE_COLLISION( OBJ_HOSTAGE, OBJ_WEAPON );
2629         DISABLE_COLLISION( OBJ_HOSTAGE, OBJ_CAMERA );
2630         DISABLE_COLLISION( OBJ_HOSTAGE, OBJ_POWERUP );
2631         DISABLE_COLLISION( OBJ_HOSTAGE, OBJ_DEBRIS );
2632         ENABLE_COLLISION( OBJ_PLAYER, OBJ_WEAPON );
2633         DISABLE_COLLISION( OBJ_PLAYER, OBJ_CAMERA );
2634         ENABLE_COLLISION( OBJ_PLAYER, OBJ_POWERUP );
2635         DISABLE_COLLISION( OBJ_PLAYER, OBJ_DEBRIS );
2636         DISABLE_COLLISION( OBJ_WEAPON, OBJ_CAMERA );
2637         DISABLE_COLLISION( OBJ_WEAPON, OBJ_POWERUP );
2638         ENABLE_COLLISION( OBJ_WEAPON, OBJ_DEBRIS );
2639         DISABLE_COLLISION( OBJ_CAMERA, OBJ_POWERUP );
2640         DISABLE_COLLISION( OBJ_CAMERA, OBJ_DEBRIS );
2641         DISABLE_COLLISION( OBJ_POWERUP, OBJ_DEBRIS );
2642         ENABLE_COLLISION( OBJ_POWERUP, OBJ_WALL );
2643         ENABLE_COLLISION( OBJ_WEAPON, OBJ_CNTRLCEN )
2644         ENABLE_COLLISION( OBJ_WEAPON, OBJ_CLUTTER )
2645         ENABLE_COLLISION( OBJ_PLAYER, OBJ_CNTRLCEN )
2646         ENABLE_COLLISION( OBJ_ROBOT, OBJ_CNTRLCEN )
2647         ENABLE_COLLISION( OBJ_PLAYER, OBJ_CLUTTER )
2648
2649         ENABLE_COLLISION( OBJ_PLAYER, OBJ_MARKER );
2650
2651 }
2652
2653 void collide_object_with_wall( object * A, fix hitspeed, short hitseg, short hitwall, vms_vector * hitpt )
2654 {
2655
2656         switch( A->type )       {
2657         case OBJ_NONE:
2658                 Error( "A object of type NONE hit a wall!\n");
2659                 break;
2660         case OBJ_PLAYER:                collide_player_and_wall(A,hitspeed,hitseg,hitwall,hitpt); break;
2661         case OBJ_WEAPON:                collide_weapon_and_wall(A,hitspeed,hitseg,hitwall,hitpt); break;
2662         case OBJ_DEBRIS:                collide_debris_and_wall(A,hitspeed,hitseg,hitwall,hitpt); break;
2663
2664         case OBJ_FIREBALL:      break;          //collide_fireball_and_wall(A,hitspeed,hitseg,hitwall,hitpt); 
2665         case OBJ_ROBOT:         collide_robot_and_wall(A,hitspeed,hitseg,hitwall,hitpt); break;
2666         case OBJ_HOSTAGE:               break;          //collide_hostage_and_wall(A,hitspeed,hitseg,hitwall,hitpt); 
2667         case OBJ_CAMERA:                break;          //collide_camera_and_wall(A,hitspeed,hitseg,hitwall,hitpt); 
2668         case OBJ_POWERUP:               break;          //collide_powerup_and_wall(A,hitspeed,hitseg,hitwall,hitpt); 
2669         case OBJ_GHOST:         break;  //do nothing
2670
2671         default:
2672                 Error( "Unhandled object type hit wall in collide.c\n" );
2673         }
2674 }
2675
2676