home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 2 / Quaaake_2.iso / Quake / vbot / SRC.ZIP / DOORS.QC < prev    next >
Encoding:
Text File  |  1996-08-31  |  18.9 KB  |  790 lines

  1.  
  2. float DOOR_START_OPEN = 1;
  3. float DOOR_DONT_LINK = 4;
  4. float DOOR_GOLD_KEY = 8;
  5. float DOOR_SILVER_KEY = 16;
  6. float DOOR_TOGGLE = 32;
  7.  
  8. /*
  9.  
  10. Doors are similar to buttons, but can spawn a fat trigger field around them
  11. to open without a touch, and they link together to form simultanious
  12. double/quad doors.
  13.  
  14. Door.owner is the master door.  If there is only one door, it points to itself.
  15. If multiple doors, all will point to a single one.
  16.  
  17. Door.enemy chains from the master door through all doors linked in the chain.
  18.  
  19. */
  20.  
  21. /*
  22. =============================================================================
  23.  
  24. THINK FUNCTIONS
  25.  
  26. =============================================================================
  27. */
  28.  
  29. void() door_go_down;
  30. void() door_go_up;
  31.  
  32. void() door_blocked =
  33. {
  34.     T_Damage (other, self, self, self.dmg);
  35.     
  36. // if a door has a negative wait, it would never come back if blocked,
  37. // so let it just squash the object to death real fast
  38.     if (self.wait >= 0)
  39.     {
  40.         if (self.state == STATE_DOWN)
  41.             door_go_up ();
  42.         else
  43.             door_go_down ();
  44.     }
  45. };
  46.  
  47.  
  48. void() door_hit_top =
  49. {
  50.     sound (self, CHAN_VOICE, self.noise1, 1, ATTN_NORM);
  51.     self.state = STATE_TOP;
  52.     if (self.spawnflags & DOOR_TOGGLE)
  53.         return;        // don't come down automatically
  54.     self.think = door_go_down;
  55.     self.nextthink = self.ltime + self.wait;
  56. };
  57.  
  58. void() door_hit_bottom =
  59. {
  60.     sound (self, CHAN_VOICE, self.noise1, 1, ATTN_NORM);
  61.     self.state = STATE_BOTTOM;
  62. };
  63.  
  64. void() door_go_down =
  65. {
  66.     sound (self, CHAN_VOICE, self.noise2, 1, ATTN_NORM);
  67.     if (self.max_health)
  68.     {
  69.         self.takedamage = DAMAGE_YES;
  70.         self.health = self.max_health;
  71.     }
  72.     
  73.     self.state = STATE_DOWN;
  74.     SUB_CalcMove (self.pos1, self.speed, door_hit_bottom);
  75. };
  76.  
  77. void() door_go_up =
  78. {
  79.     if (self.state == STATE_UP)
  80.         return;        // allready going up
  81.  
  82.     if (self.state == STATE_TOP)
  83.     {    // reset top wait time
  84.         self.nextthink = self.ltime + self.wait;
  85.         return;
  86.     }
  87.     
  88.     sound (self, CHAN_VOICE, self.noise2, 1, ATTN_NORM);
  89.     self.state = STATE_UP;
  90.     SUB_CalcMove (self.pos2, self.speed, door_hit_top);
  91.  
  92.     SUB_UseTargets();
  93. };
  94.  
  95.  
  96. /*
  97. =============================================================================
  98.  
  99. ACTIVATION FUNCTIONS
  100.  
  101. =============================================================================
  102. */
  103.  
  104. void() door_fire =
  105. {
  106.     local entity     oself;
  107.     local entity    starte;
  108.  
  109.     if (self.owner != self)
  110.         objerror ("door_fire: self.owner != self");
  111.  
  112. // play use key sound
  113.  
  114.     if (self.items)
  115.         sound (self, CHAN_VOICE, self.noise4, 1, ATTN_NORM);
  116.  
  117.     self.message = string_null;        // no more message
  118.     oself = self;
  119.  
  120.     if (self.spawnflags & DOOR_TOGGLE)
  121.     {
  122.         if (self.state == STATE_UP || self.state == STATE_TOP)
  123.         {
  124.             starte = self;
  125.             do
  126.             {
  127.                 door_go_down ();
  128.                 self = self.enemy;
  129.             } while ( (self != starte) && (self != world) );
  130.             self = oself;
  131.             return;
  132.         }
  133.     }
  134.     
  135. // trigger all paired doors
  136.     starte = self;
  137.     do
  138.     {
  139.         door_go_up ();
  140.         self = self.enemy;
  141.     } while ( (self != starte) && (self != world) );
  142.     self = oself;
  143. };
  144.  
  145.  
  146. void() door_use =
  147. {
  148.     local entity oself;
  149.  
  150.     self.message = "";            // door message are for touch only
  151.     self.owner.message = "";    
  152.     self.enemy.message = "";
  153.     oself = self;
  154.     self = self.owner;
  155.     door_fire ();
  156.     self = oself;
  157. };
  158.  
  159.  
  160. void() door_trigger_touch =
  161. {
  162.     if (other.health <= 0)
  163.         return;
  164.  
  165.     if (time < self.attack_finished)
  166.         return;
  167.     self.attack_finished = time + 1;
  168.  
  169.     activator = other;
  170.  
  171.     self = self.owner;
  172.     door_use ();
  173. };
  174.  
  175.  
  176. void() door_killed =
  177. {
  178.     local entity oself;
  179.     
  180.     oself = self;
  181.     self = self.owner;
  182.     self.health = self.max_health;
  183.     self.takedamage = DAMAGE_NO;    // wil be reset upon return
  184.     door_use ();
  185.     self = oself;
  186. };
  187.  
  188.  
  189. /*
  190. ================
  191. door_touch
  192.  
  193. Prints messages and opens key doors
  194. ================
  195. */
  196. void() door_touch =
  197. {
  198.         if ((other.classname != "player") && (other.classname != "bot"))
  199.         return;
  200.     if (self.owner.attack_finished > time)
  201.         return;
  202.  
  203.     self.owner.attack_finished = time + 2;
  204.  
  205.         if (other.classname == "player")
  206.         {
  207.                 if (self.owner.message != "")
  208.                 {
  209.                         centerprint (other, self.owner.message);
  210.                         sound (other, CHAN_VOICE, "misc/talk.wav", 1, ATTN_NORM);
  211.                 }
  212.         }
  213.  
  214. // key door stuff
  215.     if (!self.items)
  216.         return;
  217.  
  218. // FIXME: blink key on player's status bar
  219.     if ( (self.items & other.items) != self.items )
  220.     {
  221.         if (self.owner.items == IT_KEY1)
  222.         {
  223.                         if (other.classname == "player")
  224.                         {
  225.                                 if (world.worldtype == 2)
  226.                                 {
  227.                                         centerprint (other, "You need the silver keycard");
  228.                                         sound (self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  229.                                 }
  230.                                 else if (world.worldtype == 1)
  231.                                 {
  232.                                         centerprint (other, "You need the silver runekey");
  233.                                         sound (self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  234.                                 }
  235.                                 else if (world.worldtype == 0)
  236.                                 {
  237.                                         centerprint (other, "You need the silver key");
  238.                                         sound (self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  239.                                 }
  240.                         }
  241.                 }
  242.         else
  243.         {
  244.                         if (other.classname == "player")
  245.                         {
  246.                                 if (world.worldtype == 2)
  247.                                 {
  248.                                         centerprint (other, "You need the gold keycard");
  249.                                         sound (self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  250.                                 }
  251.                                 else if (world.worldtype == 1)
  252.                                 {
  253.                                         centerprint (other, "You need the gold runekey");
  254.                                         sound (self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);             
  255.                                 }
  256.                                 else if (world.worldtype == 0)
  257.                                 {
  258.                                         centerprint (other, "You need the gold key");
  259.                                         sound (self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  260.                                 }
  261.                         }
  262.         }
  263.         return;
  264.     }
  265.  
  266.     other.items = other.items - self.items;
  267.     self.touch = SUB_Null;
  268.     if (self.enemy)
  269.         self.enemy.touch = SUB_Null;    // get paired door
  270.     door_use ();
  271. };
  272.  
  273. /*
  274. =============================================================================
  275.  
  276. SPAWNING FUNCTIONS
  277.  
  278. =============================================================================
  279. */
  280.  
  281.  
  282. entity(vector fmins, vector fmaxs) spawn_field =
  283. {
  284.     local entity    trigger;
  285.     local    vector    t1, t2;
  286.  
  287.     trigger = spawn();
  288.     trigger.movetype = MOVETYPE_NONE;
  289.     trigger.solid = SOLID_TRIGGER;
  290.     trigger.owner = self;
  291.     trigger.touch = door_trigger_touch;
  292.  
  293.     t1 = fmins;
  294.     t2 = fmaxs;
  295.     setsize (trigger, t1 - '60 60 8', t2 + '60 60 8');
  296.     return (trigger);
  297. };
  298.  
  299.  
  300. float (entity e1, entity e2) EntitiesTouching =
  301. {
  302.     if (e1.mins_x > e2.maxs_x)
  303.         return FALSE;
  304.     if (e1.mins_y > e2.maxs_y)
  305.         return FALSE;
  306.     if (e1.mins_z > e2.maxs_z)
  307.         return FALSE;
  308.     if (e1.maxs_x < e2.mins_x)
  309.         return FALSE;
  310.     if (e1.maxs_y < e2.mins_y)
  311.         return FALSE;
  312.     if (e1.maxs_z < e2.mins_z)
  313.         return FALSE;
  314.     return TRUE;
  315. };
  316.  
  317.  
  318. /*
  319. =============
  320. LinkDoors
  321.  
  322.  
  323. =============
  324. */
  325. void() LinkDoors =
  326. {
  327.     local entity    t, starte;
  328.     local vector    cmins, cmaxs;
  329.  
  330.     if (self.enemy)
  331.         return;        // already linked by another door
  332.     if (self.spawnflags & 4)
  333.     {
  334.         self.owner = self.enemy = self;
  335.         return;        // don't want to link this door
  336.     }
  337.  
  338.     cmins = self.mins;
  339.     cmaxs = self.maxs;
  340.     
  341.     starte = self;
  342.     t = self;
  343.     
  344.     do
  345.     {
  346.         self.owner = starte;            // master door
  347.  
  348.         if (self.health)
  349.             starte.health = self.health;
  350.         if (self.targetname)
  351.             starte.targetname = self.targetname;
  352.         if (self.message != "")
  353.             starte.message = self.message;
  354.  
  355.         t = find (t, classname, self.classname);    
  356.         if (!t)
  357.         {
  358.             self.enemy = starte;        // make the chain a loop
  359.  
  360.         // shootable, fired, or key doors just needed the owner/enemy links,
  361.         // they don't spawn a field
  362.     
  363.             self = self.owner;
  364.  
  365.             if (self.health)
  366.                 return;
  367.             if (self.targetname)
  368.                 return;
  369.             if (self.items)
  370.                 return;
  371.  
  372.             self.owner.trigger_field = spawn_field(cmins, cmaxs);
  373.  
  374.             return;
  375.         }
  376.  
  377.         if (EntitiesTouching(self,t))
  378.         {
  379.             if (t.enemy)
  380.                 objerror ("cross connected doors");
  381.             
  382.             self.enemy = t;
  383.             self = t;
  384.  
  385.             if (t.mins_x < cmins_x)
  386.                 cmins_x = t.mins_x;
  387.             if (t.mins_y < cmins_y)
  388.                 cmins_y = t.mins_y;
  389.             if (t.mins_z < cmins_z)
  390.                 cmins_z = t.mins_z;
  391.             if (t.maxs_x > cmaxs_x)
  392.                 cmaxs_x = t.maxs_x;
  393.             if (t.maxs_y > cmaxs_y)
  394.                 cmaxs_y = t.maxs_y;
  395.             if (t.maxs_z > cmaxs_z)
  396.                 cmaxs_z = t.maxs_z;
  397.         }
  398.     } while (1 );
  399.  
  400. };
  401.  
  402.  
  403. /*QUAKED func_door (0 .5 .8) ? START_OPEN x DOOR_DONT_LINK GOLD_KEY SILVER_KEY TOGGLE
  404. if two doors touch, they are assumed to be connected and operate as a unit.
  405.  
  406. TOGGLE causes the door to wait in both the start and end states for a trigger event.
  407.  
  408. START_OPEN causes the door to move to its destination when spawned, and operate in reverse.  It is used to temporarily or permanently close off an area when triggered (not usefull for touch or takedamage doors).
  409.  
  410. Key doors are allways wait -1.
  411.  
  412. "message"    is printed when the door is touched if it is a trigger door and it hasn't been fired yet
  413. "angle"        determines the opening direction
  414. "targetname" if set, no touch field will be spawned and a remote button or trigger field activates the door.
  415. "health"    if set, door must be shot open
  416. "speed"        movement speed (100 default)
  417. "wait"        wait before returning (3 default, -1 = never return)
  418. "lip"        lip remaining at end of move (8 default)
  419. "dmg"        damage to inflict when blocked (2 default)
  420. "sounds"
  421. 0)    no sound
  422. 1)    stone
  423. 2)    base
  424. 3)    stone chain
  425. 4)    screechy metal
  426. */
  427.  
  428. void() func_door =
  429.  
  430. {
  431.  
  432.     if (world.worldtype == 0)
  433.     {
  434.         precache_sound ("doors/medtry.wav");
  435.         precache_sound ("doors/meduse.wav");
  436.         self.noise3 = "doors/medtry.wav";
  437.         self.noise4 = "doors/meduse.wav";
  438.     }
  439.     else if (world.worldtype == 1)
  440.     {
  441.         precache_sound ("doors/runetry.wav");
  442.         precache_sound ("doors/runeuse.wav");
  443.         self.noise3 = "doors/runetry.wav";
  444.         self.noise4 = "doors/runeuse.wav";
  445.     }
  446.     else if (world.worldtype == 2)
  447.     {
  448.         precache_sound ("doors/basetry.wav");
  449.         precache_sound ("doors/baseuse.wav");
  450.         self.noise3 = "doors/basetry.wav";
  451.         self.noise4 = "doors/baseuse.wav";
  452.     }
  453.     else
  454.     {
  455.         dprint ("no worldtype set!\n");
  456.     }
  457.     if (self.sounds == 0)
  458.     {
  459.         precache_sound ("misc/null.wav");
  460.         precache_sound ("misc/null.wav");
  461.         self.noise1 = "misc/null.wav";
  462.         self.noise2 = "misc/null.wav";
  463.     }
  464.     if (self.sounds == 1)
  465.     {
  466.         precache_sound ("doors/drclos4.wav");
  467.         precache_sound ("doors/doormv1.wav");
  468.         self.noise1 = "doors/drclos4.wav";
  469.         self.noise2 = "doors/doormv1.wav";
  470.     }
  471.     if (self.sounds == 2)
  472.     {
  473.         precache_sound ("doors/hydro1.wav");
  474.         precache_sound ("doors/hydro2.wav");
  475.         self.noise2 = "doors/hydro1.wav";
  476.         self.noise1 = "doors/hydro2.wav";
  477.     }
  478.     if (self.sounds == 3)
  479.     {
  480.         precache_sound ("doors/stndr1.wav");
  481.         precache_sound ("doors/stndr2.wav");
  482.         self.noise2 = "doors/stndr1.wav";
  483.         self.noise1 = "doors/stndr2.wav";
  484.     }
  485.     if (self.sounds == 4)
  486.     {
  487.         precache_sound ("doors/ddoor1.wav");
  488.         precache_sound ("doors/ddoor2.wav");
  489.         self.noise1 = "doors/ddoor2.wav";
  490.         self.noise2 = "doors/ddoor1.wav";
  491.     }
  492.  
  493.  
  494.     SetMovedir ();
  495.  
  496.     self.max_health = self.health;
  497.     self.solid = SOLID_BSP;
  498.     self.movetype = MOVETYPE_PUSH;
  499.     setorigin (self, self.origin);    
  500.     setmodel (self, self.model);
  501.     self.classname = "door";
  502.  
  503.     self.blocked = door_blocked;
  504.     self.use = door_use;
  505.     
  506.     if (self.spawnflags & DOOR_SILVER_KEY)
  507.         self.items = IT_KEY1;
  508.     if (self.spawnflags & DOOR_GOLD_KEY)
  509.         self.items = IT_KEY2;
  510.     
  511.     if (!self.speed)
  512.         self.speed = 100;
  513.     if (!self.wait)
  514.         self.wait = 3;
  515.     if (!self.lip)
  516.         self.lip = 8;
  517.     if (!self.dmg)
  518.         self.dmg = 2;
  519.  
  520.     self.pos1 = self.origin;
  521.     self.pos2 = self.pos1 + self.movedir*(fabs(self.movedir*self.size) - self.lip);
  522.  
  523. // DOOR_START_OPEN is to allow an entity to be lighted in the closed position
  524. // but spawn in the open position
  525.     if (self.spawnflags & DOOR_START_OPEN)
  526.     {
  527.         setorigin (self, self.pos2);
  528.         self.pos2 = self.pos1;
  529.         self.pos1 = self.origin;
  530.     }
  531.  
  532.     self.state = STATE_BOTTOM;
  533.  
  534.     if (self.health)
  535.     {
  536.         self.takedamage = DAMAGE_YES;
  537.         self.th_die = door_killed;
  538.     }
  539.     
  540.     if (self.items)
  541.         self.wait = -1;
  542.         
  543.     self.touch = door_touch;
  544.  
  545. // LinkDoors can't be done until all of the doors have been spawned, so
  546. // the sizes can be detected properly.
  547.     self.think = LinkDoors;
  548.     self.nextthink = self.ltime + 0.1;
  549. };
  550.  
  551. /*
  552. =============================================================================
  553.  
  554. SECRET DOORS
  555.  
  556. =============================================================================
  557. */
  558.  
  559. void() fd_secret_move1;
  560. void() fd_secret_move2;
  561. void() fd_secret_move3;
  562. void() fd_secret_move4;
  563. void() fd_secret_move5;
  564. void() fd_secret_move6;
  565. void() fd_secret_done;
  566.  
  567. float SECRET_OPEN_ONCE = 1;        // stays open
  568. float SECRET_1ST_LEFT = 2;        // 1st move is left of arrow
  569. float SECRET_1ST_DOWN = 4;        // 1st move is down from arrow
  570. float SECRET_NO_SHOOT = 8;        // only opened by trigger
  571. float SECRET_YES_SHOOT = 16;    // shootable even if targeted
  572.  
  573.  
  574. void () fd_secret_use =
  575. {
  576.     local float temp;
  577.     
  578.     self.health = 10000;
  579.  
  580.     // exit if still moving around...
  581.     if (self.origin != self.oldorigin)
  582.         return;
  583.     
  584.     self.message = string_null;        // no more message
  585.  
  586.     SUB_UseTargets();                // fire all targets / killtargets
  587.     
  588.     if (!(self.spawnflags & SECRET_NO_SHOOT))
  589.     {
  590.         self.th_pain = SUB_Null;
  591.         self.takedamage = DAMAGE_NO;
  592.     }
  593.     self.velocity = '0 0 0';
  594.  
  595.     // Make a sound, wait a little...
  596.     
  597.     sound(self, CHAN_VOICE, self.noise1, 1, ATTN_NORM);
  598.     self.nextthink = self.ltime + 0.1;
  599.  
  600.     temp = 1 - (self.spawnflags & SECRET_1ST_LEFT);    // 1 or -1
  601.     makevectors(self.mangle);
  602.     
  603.     if (!self.t_width)
  604.     {
  605.         if (self.spawnflags & SECRET_1ST_DOWN)
  606.             self. t_width = fabs(v_up * self.size);
  607.         else
  608.             self. t_width = fabs(v_right * self.size);
  609.     }
  610.         
  611.     if (!self.t_length)
  612.         self. t_length = fabs(v_forward * self.size);
  613.  
  614.     if (self.spawnflags & SECRET_1ST_DOWN)
  615.         self.dest1 = self.origin - v_up * self.t_width;
  616.     else
  617.         self.dest1 = self.origin + v_right * (self.t_width * temp);
  618.         
  619.     self.dest2 = self.dest1 + v_forward * self.t_length;
  620.     SUB_CalcMove(self.dest1, self.speed, fd_secret_move1);
  621.     sound(self, CHAN_VOICE, self.noise2, 1, ATTN_NORM);
  622. };
  623.  
  624. // Wait after first movement...
  625. void () fd_secret_move1 = 
  626. {
  627.     self.nextthink = self.ltime + 1.0;
  628.     self.think = fd_secret_move2;
  629.     sound(self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  630. };
  631.  
  632. // Start moving sideways w/sound...
  633. void () fd_secret_move2 =
  634. {
  635.     sound(self, CHAN_VOICE, self.noise2, 1, ATTN_NORM);
  636.     SUB_CalcMove(self.dest2, self.speed, fd_secret_move3);
  637. };
  638.  
  639. // Wait here until time to go back...
  640. void () fd_secret_move3 =
  641. {
  642.     sound(self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  643.     if (!(self.spawnflags & SECRET_OPEN_ONCE))
  644.     {
  645.         self.nextthink = self.ltime + self.wait;
  646.         self.think = fd_secret_move4;
  647.     }
  648. };
  649.  
  650. // Move backward...
  651. void () fd_secret_move4 =
  652. {
  653.     sound(self, CHAN_VOICE, self.noise2, 1, ATTN_NORM);
  654.     SUB_CalcMove(self.dest1, self.speed, fd_secret_move5);        
  655. };
  656.  
  657. // Wait 1 second...
  658. void () fd_secret_move5 = 
  659. {
  660.     self.nextthink = self.ltime + 1.0;
  661.     self.think = fd_secret_move6;
  662.     sound(self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  663. };
  664.  
  665. void () fd_secret_move6 =
  666. {
  667.     sound(self, CHAN_VOICE, self.noise2, 1, ATTN_NORM);
  668.     SUB_CalcMove(self.oldorigin, self.speed, fd_secret_done);
  669. };
  670.  
  671. void () fd_secret_done =
  672. {
  673.     if (!self.targetname || self.spawnflags&SECRET_YES_SHOOT)
  674.     {
  675.         self.health = 10000;
  676.         self.takedamage = DAMAGE_YES;
  677.         self.th_pain = fd_secret_use;    
  678.     }
  679.     sound(self, CHAN_VOICE, self.noise3, 1, ATTN_NORM);
  680. };
  681.  
  682. void () secret_blocked =
  683. {
  684.     if (time < self.attack_finished)
  685.         return;
  686.     self.attack_finished = time + 0.5;
  687.     T_Damage (other, self, self, self.dmg);
  688. };
  689.  
  690. /*
  691. ================
  692. secret_touch
  693.  
  694. Prints messages
  695. ================
  696. */
  697. void() secret_touch =
  698. {
  699.         if ((other.classname != "player") && (other.classname != "bot"))
  700.         return;
  701.     if (self.attack_finished > time)
  702.         return;
  703.  
  704.     self.attack_finished = time + 2;
  705.     
  706.         if (other.classname == "player")
  707.         {
  708.                 if (self.message)
  709.                 {
  710.                         centerprint (other, self.message);
  711.                         sound (other, CHAN_BODY, "misc/talk.wav", 1, ATTN_NORM);
  712.                 }
  713.         }                
  714. };
  715.  
  716.  
  717. /*QUAKED func_door_secret (0 .5 .8) ? open_once 1st_left 1st_down no_shoot always_shoot
  718. Basic secret door. Slides back, then to the side. Angle determines direction.
  719. wait  = # of seconds before coming back
  720. 1st_left = 1st move is left of arrow
  721. 1st_down = 1st move is down from arrow
  722. always_shoot = even if targeted, keep shootable
  723. t_width = override WIDTH to move back (or height if going down)
  724. t_length = override LENGTH to move sideways
  725. "dmg"        damage to inflict when blocked (2 default)
  726.  
  727. If a secret door has a targetname, it will only be opened by it's botton or trigger, not by damage.
  728. "sounds"
  729. 1) medieval
  730. 2) metal
  731. 3) base
  732. */
  733.  
  734. void () func_door_secret =
  735. {
  736.     if (self.sounds == 0)
  737.         self.sounds = 3;
  738.     if (self.sounds == 1)
  739.     {
  740.         precache_sound ("doors/latch2.wav");
  741.         precache_sound ("doors/winch2.wav");
  742.         precache_sound ("doors/drclos4.wav");
  743.         self.noise1 = "doors/latch2.wav";
  744.         self.noise2 = "doors/winch2.wav";
  745.         self.noise3 = "doors/drclos4.wav";
  746.     }
  747.     if (self.sounds == 2)
  748.     {
  749.         precache_sound ("doors/airdoor1.wav");
  750.         precache_sound ("doors/airdoor2.wav");
  751.         self.noise2 = "doors/airdoor1.wav";
  752.         self.noise1 = "doors/airdoor2.wav";
  753.         self.noise3 = "doors/airdoor2.wav";
  754.     }
  755.     if (self.sounds == 3)
  756.     {
  757.         precache_sound ("doors/basesec1.wav");
  758.         precache_sound ("doors/basesec2.wav");
  759.         self.noise2 = "doors/basesec1.wav";
  760.         self.noise1 = "doors/basesec2.wav";
  761.         self.noise3 = "doors/basesec2.wav";
  762.     }
  763.  
  764.     if (!self.dmg)
  765.         self.dmg = 2;
  766.         
  767.     // Magic formula...
  768.     self.mangle = self.angles;
  769.     self.angles = '0 0 0';
  770.     self.solid = SOLID_BSP;
  771.     self.movetype = MOVETYPE_PUSH;
  772.     self.classname = "door";
  773.     setmodel (self, self.model);
  774.     setorigin (self, self.origin);    
  775.     
  776.     self.touch = secret_touch;
  777.     self.blocked = secret_blocked;
  778.     self.speed = 50;
  779.     self.use = fd_secret_use;
  780.     if ( !self.targetname || self.spawnflags&SECRET_YES_SHOOT)
  781.     {
  782.         self.health = 10000;
  783.         self.takedamage = DAMAGE_YES;
  784.         self.th_pain = fd_secret_use;
  785.     }
  786.     self.oldorigin = self.origin;
  787.     if (!self.wait)
  788.         self.wait = 5;        // 5 seconds before closing
  789. };
  790.